@i-cell/ids-angular 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/breadcrumb/breadcrumb-defaults.d.ts +17 -0
- package/breadcrumb/breadcrumb.component.d.ts +35 -0
- package/breadcrumb/index.d.ts +5 -0
- package/breadcrumb/libs/breadcrumb-divider.component.d.ts +13 -0
- package/breadcrumb/libs/breadcrumb-link.directive.d.ts +10 -0
- package/breadcrumb/libs/breadcrumb-list.directive.d.ts +5 -0
- package/breadcrumb/libs/breadcrumb-page.directive.d.ts +5 -0
- package/breadcrumb/libs/breadcrumb-truncation.component.d.ts +15 -0
- package/breadcrumb/public-api.d.ts +5 -0
- package/breadcrumb/types/breadcrumb-divider.type.d.ts +5 -0
- package/breadcrumb/types/breadcrumb-hierarchy.type.d.ts +5 -0
- package/breadcrumb/types/breadcrumb-variant.type.d.ts +6 -0
- package/button/button.component.d.ts +7 -1
- package/fesm2022/i-cell-ids-angular-accordion.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-accordion.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-breadcrumb.mjs +313 -0
- package/fesm2022/i-cell-ids-angular-breadcrumb.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-button.mjs +40 -8
- package/fesm2022/i-cell-ids-angular-button.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-chip.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-chip.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-datepicker.mjs +2 -2
- package/fesm2022/i-cell-ids-angular-datepicker.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-dialog.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-dialog.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-forms.mjs +11 -9
- package/fesm2022/i-cell-ids-angular-forms.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-icon-button.mjs +40 -8
- package/fesm2022/i-cell-ids-angular-icon-button.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-notification.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-notification.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-select.mjs +12 -8
- package/fesm2022/i-cell-ids-angular-select.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-snackbar.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-snackbar.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-table.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-table.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-tooltip.mjs +1 -1
- package/fesm2022/i-cell-ids-angular-tooltip.mjs.map +1 -1
- package/forms/components/form-field/form-field-control.d.ts +2 -3
- package/forms/components/input/input.directive.d.ts +2 -2
- package/icon-button/icon-button.component.d.ts +7 -1
- package/package.json +27 -23
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { AbstractErrorStateMatcher, ErrorStateTracker } from '../../common/error/error-state';
|
|
2
2
|
import { AbstractSuccessStateMatcher, SuccessStateTracker } from '../../common/success/success-state';
|
|
3
|
-
import { ElementRef, Injector,
|
|
3
|
+
import { ElementRef, Injector, Signal } from '@angular/core';
|
|
4
4
|
import { FormGroupDirective, NgControl, NgForm } from '@angular/forms';
|
|
5
5
|
import { ComponentBaseWithDefaults } from '@i-cell/ids-angular/core';
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare const formFieldControlClass = "ids-form-field-control";
|
|
9
|
-
export declare abstract class IdsFormFieldControl<D = unknown> extends ComponentBaseWithDefaults<D>
|
|
9
|
+
export declare abstract class IdsFormFieldControl<D = unknown> extends ComponentBaseWithDefaults<D> {
|
|
10
10
|
protected readonly _injector: Injector;
|
|
11
11
|
protected readonly _parentForm: NgForm | null;
|
|
12
12
|
protected readonly _parentFormGroup: FormGroupDirective | null;
|
|
@@ -36,7 +36,6 @@ export declare abstract class IdsFormFieldControl<D = unknown> extends Component
|
|
|
36
36
|
protected _successStateTracker?: SuccessStateTracker;
|
|
37
37
|
private _successStateSubscription?;
|
|
38
38
|
constructor();
|
|
39
|
-
ngOnInit(): void;
|
|
40
39
|
setDescribedByIds(ids: string[]): void;
|
|
41
40
|
protected _initErrorStateTracker(): void;
|
|
42
41
|
protected _setSuccessStateTracker(canHandleSuccessState: boolean): void;
|
|
@@ -3,10 +3,10 @@ import { IdsInputType } from './types/input.type';
|
|
|
3
3
|
import { AbstractErrorStateMatcher } from '../../common/error/error-state';
|
|
4
4
|
import { AbstractSuccessStateMatcher } from '../../common/success/success-state';
|
|
5
5
|
import { IdsFormFieldControl } from '../form-field/form-field-control';
|
|
6
|
-
import { AfterViewInit, ElementRef
|
|
6
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
7
7
|
import { ControlEvent } from '@angular/forms';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class IdsInputDirective extends IdsFormFieldControl<IdsInputDefaultConfig> implements
|
|
9
|
+
export declare class IdsInputDirective extends IdsFormFieldControl<IdsInputDefaultConfig> implements AfterViewInit {
|
|
10
10
|
protected get _hostName(): string;
|
|
11
11
|
protected readonly _elementRef: ElementRef<HTMLInputElement> | ElementRef<HTMLTextAreaElement>;
|
|
12
12
|
protected readonly _defaultConfig: Required<IdsInputDefaultConfig>;
|
|
@@ -7,6 +7,8 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class IdsIconButtonComponent extends ComponentBaseWithDefaults<IdsIconButtonDefaultConfig> {
|
|
8
8
|
protected get _hostName(): string;
|
|
9
9
|
private readonly _parent;
|
|
10
|
+
private _hostElement;
|
|
11
|
+
private _routerLink;
|
|
10
12
|
protected readonly _defaultConfig: Required<IdsIconButtonDefaultConfig>;
|
|
11
13
|
appearance: import("@angular/core").InputSignal<IdsIconButtonAppearanceType>;
|
|
12
14
|
size: import("@angular/core").InputSignal<IdsSizeType>;
|
|
@@ -17,6 +19,10 @@ export declare class IdsIconButtonComponent extends ComponentBaseWithDefaults<Id
|
|
|
17
19
|
private _parentOrSelfVariant;
|
|
18
20
|
private _parentOrSelfDisabled;
|
|
19
21
|
protected _hostClasses: import("@angular/core").Signal<string>;
|
|
22
|
+
private get _buttonType();
|
|
23
|
+
constructor();
|
|
24
|
+
private _disableLink;
|
|
25
|
+
private _enableLink;
|
|
20
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<IdsIconButtonComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IdsIconButtonComponent, "button[idsIconButton]", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, ["_icons"], ["ids-icon"], true, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdsIconButtonComponent, "button[idsIconButton], a[idsIconButton]", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, ["_icons"], ["ids-icon"], true, never>;
|
|
22
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i-cell/ids-angular",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "i-Cell Design System UI Kit components for Angular",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@angular/forms": "^19.1.2",
|
|
33
33
|
"@angular/platform-browser": "^19.1.2",
|
|
34
34
|
"@angular/router": "^19.1.2",
|
|
35
|
-
"@i-cell/ids-styles": "^0.0.
|
|
35
|
+
"@i-cell/ids-styles": "^0.0.43"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.0"
|
|
@@ -52,13 +52,9 @@
|
|
|
52
52
|
"types": "./accordion/index.d.ts",
|
|
53
53
|
"default": "./fesm2022/i-cell-ids-angular-accordion.mjs"
|
|
54
54
|
},
|
|
55
|
-
"./
|
|
56
|
-
"types": "./
|
|
57
|
-
"default": "./fesm2022/i-cell-ids-angular-
|
|
58
|
-
},
|
|
59
|
-
"./avatar": {
|
|
60
|
-
"types": "./avatar/index.d.ts",
|
|
61
|
-
"default": "./fesm2022/i-cell-ids-angular-avatar.mjs"
|
|
55
|
+
"./breadcrumb": {
|
|
56
|
+
"types": "./breadcrumb/index.d.ts",
|
|
57
|
+
"default": "./fesm2022/i-cell-ids-angular-breadcrumb.mjs"
|
|
62
58
|
},
|
|
63
59
|
"./badge": {
|
|
64
60
|
"types": "./badge/index.d.ts",
|
|
@@ -68,14 +64,22 @@
|
|
|
68
64
|
"types": "./card/index.d.ts",
|
|
69
65
|
"default": "./fesm2022/i-cell-ids-angular-card.mjs"
|
|
70
66
|
},
|
|
71
|
-
"./
|
|
72
|
-
"types": "./
|
|
73
|
-
"default": "./fesm2022/i-cell-ids-angular-
|
|
67
|
+
"./avatar": {
|
|
68
|
+
"types": "./avatar/index.d.ts",
|
|
69
|
+
"default": "./fesm2022/i-cell-ids-angular-avatar.mjs"
|
|
70
|
+
},
|
|
71
|
+
"./button": {
|
|
72
|
+
"types": "./button/index.d.ts",
|
|
73
|
+
"default": "./fesm2022/i-cell-ids-angular-button.mjs"
|
|
74
74
|
},
|
|
75
75
|
"./checkbox": {
|
|
76
76
|
"types": "./checkbox/index.d.ts",
|
|
77
77
|
"default": "./fesm2022/i-cell-ids-angular-checkbox.mjs"
|
|
78
78
|
},
|
|
79
|
+
"./chip": {
|
|
80
|
+
"types": "./chip/index.d.ts",
|
|
81
|
+
"default": "./fesm2022/i-cell-ids-angular-chip.mjs"
|
|
82
|
+
},
|
|
79
83
|
"./core": {
|
|
80
84
|
"types": "./core/index.d.ts",
|
|
81
85
|
"default": "./fesm2022/i-cell-ids-angular-core.mjs"
|
|
@@ -128,10 +132,6 @@
|
|
|
128
132
|
"types": "./segmented-control/index.d.ts",
|
|
129
133
|
"default": "./fesm2022/i-cell-ids-angular-segmented-control.mjs"
|
|
130
134
|
},
|
|
131
|
-
"./segmented-control-toggle": {
|
|
132
|
-
"types": "./segmented-control-toggle/index.d.ts",
|
|
133
|
-
"default": "./fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs"
|
|
134
|
-
},
|
|
135
135
|
"./select": {
|
|
136
136
|
"types": "./select/index.d.ts",
|
|
137
137
|
"default": "./fesm2022/i-cell-ids-angular-select.mjs"
|
|
@@ -140,26 +140,30 @@
|
|
|
140
140
|
"types": "./snackbar/index.d.ts",
|
|
141
141
|
"default": "./fesm2022/i-cell-ids-angular-snackbar.mjs"
|
|
142
142
|
},
|
|
143
|
+
"./segmented-control-toggle": {
|
|
144
|
+
"types": "./segmented-control-toggle/index.d.ts",
|
|
145
|
+
"default": "./fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs"
|
|
146
|
+
},
|
|
143
147
|
"./spinner": {
|
|
144
148
|
"types": "./spinner/index.d.ts",
|
|
145
149
|
"default": "./fesm2022/i-cell-ids-angular-spinner.mjs"
|
|
146
150
|
},
|
|
147
|
-
"./switch": {
|
|
148
|
-
"types": "./switch/index.d.ts",
|
|
149
|
-
"default": "./fesm2022/i-cell-ids-angular-switch.mjs"
|
|
150
|
-
},
|
|
151
151
|
"./tab": {
|
|
152
152
|
"types": "./tab/index.d.ts",
|
|
153
153
|
"default": "./fesm2022/i-cell-ids-angular-tab.mjs"
|
|
154
154
|
},
|
|
155
|
-
"./
|
|
156
|
-
"types": "./
|
|
157
|
-
"default": "./fesm2022/i-cell-ids-angular-
|
|
155
|
+
"./switch": {
|
|
156
|
+
"types": "./switch/index.d.ts",
|
|
157
|
+
"default": "./fesm2022/i-cell-ids-angular-switch.mjs"
|
|
158
158
|
},
|
|
159
159
|
"./tag": {
|
|
160
160
|
"types": "./tag/index.d.ts",
|
|
161
161
|
"default": "./fesm2022/i-cell-ids-angular-tag.mjs"
|
|
162
162
|
},
|
|
163
|
+
"./table": {
|
|
164
|
+
"types": "./table/index.d.ts",
|
|
165
|
+
"default": "./fesm2022/i-cell-ids-angular-table.mjs"
|
|
166
|
+
},
|
|
163
167
|
"./tooltip": {
|
|
164
168
|
"types": "./tooltip/index.d.ts",
|
|
165
169
|
"default": "./fesm2022/i-cell-ids-angular-tooltip.mjs"
|