diff --git a/packages/angular/package.json b/packages/angular/package.json
index 85d2553..01fa423 100644
--- a/packages/angular/package.json
+++ b/packages/angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@anywhere-ui/angular",
- "version": "0.4.0+22",
+ "version": "0.4.0+23",
"license": "MIT",
"keywords": [
"anywhere-ui",
@@ -66,5 +66,5 @@
"tslint": "~6.1.3",
"typescript": "4.9.5"
},
- "buildnum": "22"
+ "buildnum": "23"
}
\ No newline at end of file
diff --git a/packages/angular/projects/anywhere-ui/package.json b/packages/angular/projects/anywhere-ui/package.json
index ae46e6f..b317896 100644
--- a/packages/angular/projects/anywhere-ui/package.json
+++ b/packages/angular/projects/anywhere-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@anywhere-ui/angular",
- "version": "0.4.0+22",
+ "version": "0.4.0+23",
"license": "MIT",
"keywords": [
"anywhere-ui",
@@ -33,5 +33,5 @@
"@anywhere-ui/core": "^0.3.0",
"@anywhere-ui/flex": "^1.0.2"
},
- "buildnum": "22"
+ "buildnum": "23"
}
\ No newline at end of file
diff --git a/packages/angular/projects/anywhere-ui/src/lib/directives/proxies.ts b/packages/angular/projects/anywhere-ui/src/lib/directives/proxies.ts
index b946c97..772ca26 100644
--- a/packages/angular/projects/anywhere-ui/src/lib/directives/proxies.ts
+++ b/packages/angular/projects/anywhere-ui/src/lib/directives/proxies.ts
@@ -1171,13 +1171,14 @@ export declare interface InputTextBasic extends Components.InputTextBasic {}
@ProxyCmp({
+ inputs: ['textId', 'textTitle']
})
@Component({
selector: 'input-text-disabled',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [],
+ inputs: ['textId', 'textTitle'],
})
export class InputTextDisabled {
protected el: HTMLElement;
@@ -1192,13 +1193,14 @@ export declare interface InputTextDisabled extends Components.InputTextDisabled
@ProxyCmp({
+ inputs: ['textId', 'textTitle']
})
@Component({
selector: 'input-text-float-label',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
- inputs: [],
+ inputs: ['textId', 'textTitle'],
})
export class InputTextFloatLabel {
protected el: HTMLElement;
diff --git a/packages/core/package.json b/packages/core/package.json
index f458874..775e30d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@anywhere-ui/core",
- "version": "0.4.0+22",
+ "version": "0.4.0+23",
"description": "Base components for AnywhereUI",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
@@ -85,5 +85,5 @@
"build": "^0.1.4",
"run": "^1.4.0"
},
- "buildnum": "22"
+ "buildnum": "23"
}
\ No newline at end of file
diff --git a/packages/core/src/components/app-showcase/doc/app-code/readme.md b/packages/core/src/components/app-showcase/doc/app-code/readme.md
index e47819c..ec320a5 100644
--- a/packages/core/src/components/app-showcase/doc/app-code/readme.md
+++ b/packages/core/src/components/app-showcase/doc/app-code/readme.md
@@ -38,6 +38,8 @@
- [input-switch-disabled](../../pages/input-switch/input-switch-disabled)
- [input-switch-preselection](../../pages/input-switch/input-switch-preselection)
- [input-text-basic](../../pages/input-text/input-text-basic)
+ - [input-text-disabled](../../pages/input-text/input-text-disabled)
+ - [input-text-float-label](../../pages/input-text/input-text-float-label)
- [input-text-icons](../../pages/input-text/input-text-icons)
### Depends on
@@ -65,6 +67,8 @@ graph TD;
input-switch-disabled --> app-code
input-switch-preselection --> app-code
input-text-basic --> app-code
+ input-text-disabled --> app-code
+ input-text-float-label --> app-code
input-text-icons --> app-code
style app-code fill:#f9f,stroke:#333,stroke-width:4px
```
diff --git a/packages/core/src/components/app-showcase/doc/app-docsectiontext/readme.md b/packages/core/src/components/app-showcase/doc/app-docsectiontext/readme.md
index f75bb13..27e1810 100644
--- a/packages/core/src/components/app-showcase/doc/app-docsectiontext/readme.md
+++ b/packages/core/src/components/app-showcase/doc/app-docsectiontext/readme.md
@@ -38,6 +38,8 @@
- [input-switch-disabled](../../pages/input-switch/input-switch-disabled)
- [input-switch-preselection](../../pages/input-switch/input-switch-preselection)
- [input-text-basic](../../pages/input-text/input-text-basic)
+ - [input-text-disabled](../../pages/input-text/input-text-disabled)
+ - [input-text-float-label](../../pages/input-text/input-text-float-label)
- [input-text-icons](../../pages/input-text/input-text-icons)
### Graph
@@ -59,6 +61,8 @@ graph TD;
input-switch-disabled --> app-docsectiontext
input-switch-preselection --> app-docsectiontext
input-text-basic --> app-docsectiontext
+ input-text-disabled --> app-docsectiontext
+ input-text-float-label --> app-docsectiontext
input-text-icons --> app-docsectiontext
style app-docsectiontext fill:#f9f,stroke:#333,stroke-width:4px
```
diff --git a/packages/core/src/components/app-showcase/pages/input-text/input-text-disabled/readme.md b/packages/core/src/components/app-showcase/pages/input-text/input-text-disabled/readme.md
index 93780f9..24ed4ee 100644
--- a/packages/core/src/components/app-showcase/pages/input-text/input-text-disabled/readme.md
+++ b/packages/core/src/components/app-showcase/pages/input-text/input-text-disabled/readme.md
@@ -5,6 +5,34 @@
+## Properties
+
+| Property | Attribute | Description | Type | Default |
+| ----------- | ------------ | ----------- | -------- | ----------- |
+| `textId` | `text-id` | | `string` | `undefined` |
+| `textTitle` | `text-title` | | `string` | `undefined` |
+
+
+## Dependencies
+
+### Depends on
+
+- [app-docsectiontext](../../../doc/app-docsectiontext)
+- [any-input-text](../../../../input-text)
+- [app-code](../../../doc/app-code)
+
+### Graph
+```mermaid
+graph TD;
+ input-text-disabled --> app-docsectiontext
+ input-text-disabled --> any-input-text
+ input-text-disabled --> app-code
+ app-code --> any-button
+ any-button --> any-badge
+ any-button --> any-ripple-effect
+ style input-text-disabled fill:#f9f,stroke:#333,stroke-width:4px
+```
+
----------------------------------------------
*Built with love by **AdaleksTech!***
diff --git a/packages/core/src/components/app-showcase/pages/input-text/input-text-float-label/readme.md b/packages/core/src/components/app-showcase/pages/input-text/input-text-float-label/readme.md
index d2a9616..c22d39e 100644
--- a/packages/core/src/components/app-showcase/pages/input-text/input-text-float-label/readme.md
+++ b/packages/core/src/components/app-showcase/pages/input-text/input-text-float-label/readme.md
@@ -5,6 +5,34 @@
+## Properties
+
+| Property | Attribute | Description | Type | Default |
+| ----------- | ------------ | ----------- | -------- | ----------- |
+| `textId` | `text-id` | | `string` | `undefined` |
+| `textTitle` | `text-title` | | `string` | `undefined` |
+
+
+## Dependencies
+
+### Depends on
+
+- [app-docsectiontext](../../../doc/app-docsectiontext)
+- [any-input-text](../../../../input-text)
+- [app-code](../../../doc/app-code)
+
+### Graph
+```mermaid
+graph TD;
+ input-text-float-label --> app-docsectiontext
+ input-text-float-label --> any-input-text
+ input-text-float-label --> app-code
+ app-code --> any-button
+ any-button --> any-badge
+ any-button --> any-ripple-effect
+ style input-text-float-label fill:#f9f,stroke:#333,stroke-width:4px
+```
+
----------------------------------------------
*Built with love by **AdaleksTech!***
diff --git a/packages/core/src/components/input-text/readme.md b/packages/core/src/components/input-text/readme.md
index 3f3b22d..7447fea 100644
--- a/packages/core/src/components/input-text/readme.md
+++ b/packages/core/src/components/input-text/readme.md
@@ -46,7 +46,7 @@ functionality.
## Methods
-### `getInputRef() => Promise`
+### `getInputRef() => Promise`
Retrieves a reference to the input element within the component.
@@ -101,6 +101,8 @@ The input element, or null if not found.
- [any-input-number](../input-number)
- [any-listbox](../listbox)
- [input-text-basic](../app-showcase/pages/input-text/input-text-basic)
+ - [input-text-disabled](../app-showcase/pages/input-text/input-text-disabled)
+ - [input-text-float-label](../app-showcase/pages/input-text/input-text-float-label)
- [input-text-icons](../app-showcase/pages/input-text/input-text-icons)
### Graph
@@ -109,6 +111,8 @@ graph TD;
any-input-number --> any-input-text
any-listbox --> any-input-text
input-text-basic --> any-input-text
+ input-text-disabled --> any-input-text
+ input-text-float-label --> any-input-text
input-text-icons --> any-input-text
style any-input-text fill:#f9f,stroke:#333,stroke-width:4px
```
diff --git a/packages/core/src/doc/docs.json b/packages/core/src/doc/docs.json
index f972d06..f807802 100644
--- a/packages/core/src/doc/docs.json
+++ b/packages/core/src/doc/docs.json
@@ -1,5 +1,5 @@
{
- "timestamp": "2023-11-11T19:05:08",
+ "timestamp": "2023-11-11T23:16:25",
"compiler": {
"name": "@stencil/core",
"version": "4.7.0",
@@ -3699,7 +3699,7 @@
"docs": "The input element, or null if not found."
},
"complexType": {
- "signature": "() => Promise",
+ "signature": "() => Promise",
"parameters": [],
"references": {
"Promise": {
@@ -3713,7 +3713,7 @@
},
"return": "Promise"
},
- "signature": "getInputRef() => Promise",
+ "signature": "getInputRef() => Promise",
"parameters": [],
"docs": "Retrieves a reference to the input element within the component.",
"docsTags": [
@@ -3845,6 +3845,8 @@
"any-input-number",
"any-listbox",
"input-text-basic",
+ "input-text-disabled",
+ "input-text-float-label",
"input-text-icons"
],
"dependencies": [],
@@ -3858,6 +3860,12 @@
"input-text-basic": [
"any-input-text"
],
+ "input-text-disabled": [
+ "any-input-text"
+ ],
+ "input-text-float-label": [
+ "any-input-text"
+ ],
"input-text-icons": [
"any-input-text"
]
@@ -7416,6 +7424,8 @@
"input-switch-disabled",
"input-switch-preselection",
"input-text-basic",
+ "input-text-disabled",
+ "input-text-float-label",
"input-text-icons"
],
"dependencies": [
@@ -7474,6 +7484,12 @@
"input-text-basic": [
"app-code"
],
+ "input-text-disabled": [
+ "app-code"
+ ],
+ "input-text-float-label": [
+ "app-code"
+ ],
"input-text-icons": [
"app-code"
]
@@ -8290,6 +8306,8 @@
"input-switch-disabled",
"input-switch-preselection",
"input-text-basic",
+ "input-text-disabled",
+ "input-text-float-label",
"input-text-icons"
],
"dependencies": [],
@@ -8342,6 +8360,12 @@
"input-text-basic": [
"app-docsectiontext"
],
+ "input-text-disabled": [
+ "app-docsectiontext"
+ ],
+ "input-text-float-label": [
+ "app-docsectiontext"
+ ],
"input-text-icons": [
"app-docsectiontext"
]
@@ -9679,13 +9703,56 @@
},
{
"filePath": "src/components/app-showcase/pages/input-text/input-text-disabled/input-text-disabled.tsx",
- "encapsulation": "shadow",
+ "encapsulation": "scoped",
"tag": "input-text-disabled",
"readme": "# input-text-disabled\n\n\n",
"docs": "",
"docsTags": [],
"usage": {},
- "props": [],
+ "props": [
+ {
+ "name": "textId",
+ "type": "string",
+ "complexType": {
+ "original": "string",
+ "resolved": "string",
+ "references": {}
+ },
+ "mutable": false,
+ "attr": "text-id",
+ "reflectToAttr": false,
+ "docs": "",
+ "docsTags": [],
+ "values": [
+ {
+ "type": "string"
+ }
+ ],
+ "optional": false,
+ "required": false
+ },
+ {
+ "name": "textTitle",
+ "type": "string",
+ "complexType": {
+ "original": "string",
+ "resolved": "string",
+ "references": {}
+ },
+ "mutable": false,
+ "attr": "text-title",
+ "reflectToAttr": false,
+ "docs": "",
+ "docsTags": [],
+ "values": [
+ {
+ "type": "string"
+ }
+ ],
+ "optional": false,
+ "required": false
+ }
+ ],
"methods": [],
"events": [],
"listeners": [],
@@ -9693,18 +9760,78 @@
"slots": [],
"parts": [],
"dependents": [],
- "dependencies": [],
- "dependencyGraph": {}
+ "dependencies": [
+ "app-docsectiontext",
+ "any-input-text",
+ "app-code"
+ ],
+ "dependencyGraph": {
+ "input-text-disabled": [
+ "app-docsectiontext",
+ "any-input-text",
+ "app-code"
+ ],
+ "app-code": [
+ "any-button"
+ ],
+ "any-button": [
+ "any-badge",
+ "any-ripple-effect"
+ ]
+ }
},
{
"filePath": "src/components/app-showcase/pages/input-text/input-text-float-label/input-text-float-label.tsx",
- "encapsulation": "shadow",
+ "encapsulation": "scoped",
"tag": "input-text-float-label",
"readme": "# input-text-float-label\n\n\n",
"docs": "",
"docsTags": [],
"usage": {},
- "props": [],
+ "props": [
+ {
+ "name": "textId",
+ "type": "string",
+ "complexType": {
+ "original": "string",
+ "resolved": "string",
+ "references": {}
+ },
+ "mutable": false,
+ "attr": "text-id",
+ "reflectToAttr": false,
+ "docs": "",
+ "docsTags": [],
+ "values": [
+ {
+ "type": "string"
+ }
+ ],
+ "optional": false,
+ "required": false
+ },
+ {
+ "name": "textTitle",
+ "type": "string",
+ "complexType": {
+ "original": "string",
+ "resolved": "string",
+ "references": {}
+ },
+ "mutable": false,
+ "attr": "text-title",
+ "reflectToAttr": false,
+ "docs": "",
+ "docsTags": [],
+ "values": [
+ {
+ "type": "string"
+ }
+ ],
+ "optional": false,
+ "required": false
+ }
+ ],
"methods": [],
"events": [],
"listeners": [],
@@ -9712,8 +9839,25 @@
"slots": [],
"parts": [],
"dependents": [],
- "dependencies": [],
- "dependencyGraph": {}
+ "dependencies": [
+ "app-docsectiontext",
+ "any-input-text",
+ "app-code"
+ ],
+ "dependencyGraph": {
+ "input-text-float-label": [
+ "app-docsectiontext",
+ "any-input-text",
+ "app-code"
+ ],
+ "app-code": [
+ "any-button"
+ ],
+ "any-button": [
+ "any-badge",
+ "any-ripple-effect"
+ ]
+ }
},
{
"filePath": "src/components/app-showcase/pages/input-text/input-text-icons/input-text-icons.tsx",
diff --git a/packages/core/src/index.html b/packages/core/src/index.html
index 65b0e29..c4ea47a 100644
--- a/packages/core/src/index.html
+++ b/packages/core/src/index.html
@@ -111,7 +111,7 @@