Skip to content

Commit

Permalink
Merge pull request #78 from gjovanovicst/main
Browse files Browse the repository at this point in the history
Bump build version number
  • Loading branch information
gjovanovicst authored Nov 11, 2023
2 parents ea6025a + 1f6f810 commit 274459f
Show file tree
Hide file tree
Showing 14 changed files with 247 additions and 27 deletions.
4 changes: 2 additions & 2 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anywhere-ui/angular",
"version": "0.4.0+22",
"version": "0.4.0+23",
"license": "MIT",
"keywords": [
"anywhere-ui",
Expand Down Expand Up @@ -66,5 +66,5 @@
"tslint": "~6.1.3",
"typescript": "4.9.5"
},
"buildnum": "22"
"buildnum": "23"
}
4 changes: 2 additions & 2 deletions packages/angular/projects/anywhere-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anywhere-ui/angular",
"version": "0.4.0+22",
"version": "0.4.0+23",
"license": "MIT",
"keywords": [
"anywhere-ui",
Expand Down Expand Up @@ -33,5 +33,5 @@
"@anywhere-ui/core": "^0.3.0",
"@anywhere-ui/flex": "^1.0.2"
},
"buildnum": "22"
"buildnum": "23"
}
Original file line number Diff line number Diff line change
Expand Up @@ -1171,13 +1171,14 @@ export declare interface InputTextBasic extends Components.InputTextBasic {}


@ProxyCmp({
inputs: ['textId', 'textTitle']
})
@Component({
selector: 'input-text-disabled',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: [],
inputs: ['textId', 'textTitle'],
})
export class InputTextDisabled {
protected el: HTMLElement;
Expand All @@ -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: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: [],
inputs: ['textId', 'textTitle'],
})
export class InputTextFloatLabel {
protected el: HTMLElement;
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -85,5 +85,5 @@
"build": "^0.1.4",
"run": "^1.4.0"
},
"buildnum": "22"
"buildnum": "23"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@
<!-- Auto Generated Below -->


## 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!***
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@
<!-- Auto Generated Below -->


## 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!***
6 changes: 5 additions & 1 deletion packages/core/src/components/input-text/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ functionality.

## Methods

### `getInputRef() => Promise<HTMLInputElement>`
### `getInputRef() => Promise<HTMLInputElement | null>`

Retrieves a reference to the input element within the component.

Expand Down Expand Up @@ -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
Expand All @@ -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
```
Expand Down
Loading

0 comments on commit 274459f

Please sign in to comment.