@ascentgl/ads-ui 20.0.32 → 20.0.34
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/index.d.ts
CHANGED
|
@@ -223,7 +223,7 @@ declare class AdsButtonModule {
|
|
|
223
223
|
|
|
224
224
|
declare class AdsButtonContainerComponent {
|
|
225
225
|
/** How buttons in the container should be placed */
|
|
226
|
-
justify: i0.InputSignal<"
|
|
226
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
227
227
|
/** The gap between elements */
|
|
228
228
|
gap: i0.InputSignal<number>;
|
|
229
229
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -380,6 +380,8 @@ declare class AdsCreateTagComponent implements OnChanges, OnDestroy {
|
|
|
380
380
|
* and total number of existing tags calculation */
|
|
381
381
|
tags: Tag[];
|
|
382
382
|
tagsChange: EventEmitter<Tag[]>;
|
|
383
|
+
tagCreate: EventEmitter<Tag>;
|
|
384
|
+
tagRemove: EventEmitter<string>;
|
|
383
385
|
/** The color palette for the tag background */
|
|
384
386
|
palette: i0.InputSignal<Colors[]>;
|
|
385
387
|
/** Reference to a tag which can be used for editing existing tags */
|
|
@@ -454,7 +456,7 @@ declare class AdsCreateTagComponent implements OnChanges, OnDestroy {
|
|
|
454
456
|
/** @ignore */
|
|
455
457
|
onTagRemove(id: string): void;
|
|
456
458
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCreateTagComponent, never>;
|
|
457
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCreateTagComponent, "ads-create-tag", never, { "limit": { "alias": "limit"; "required": false; "isSignal": true; }; "tags": { "alias": "tags"; "required": false; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "lowercase": { "alias": "lowercase"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "alphanumeric": { "alias": "alphanumeric"; "required": false; "isSignal": true; }; }, { "tagsChange": "tagsChange"; }, never, never, false, never>;
|
|
459
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCreateTagComponent, "ads-create-tag", never, { "limit": { "alias": "limit"; "required": false; "isSignal": true; }; "tags": { "alias": "tags"; "required": false; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "lowercase": { "alias": "lowercase"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "alphanumeric": { "alias": "alphanumeric"; "required": false; "isSignal": true; }; }, { "tagsChange": "tagsChange"; "tagCreate": "tagCreate"; "tagRemove": "tagRemove"; }, never, never, false, never>;
|
|
458
460
|
}
|
|
459
461
|
|
|
460
462
|
declare class AdsTagContainerComponent {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascentgl/ads-ui",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.34",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@ascentgl/ads-icons": ">=0.0.0",
|
|
6
6
|
"@ascentgl/ads-utils": ">=0.0.0",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"types": "./src/lib/components/footer/container/index.d.ts",
|
|
65
65
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs"
|
|
66
66
|
},
|
|
67
|
-
"./src/lib/components/logo/primary-logo": {
|
|
68
|
-
"types": "./src/lib/components/logo/primary-logo/index.d.ts",
|
|
69
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs"
|
|
70
|
-
},
|
|
71
67
|
"./src/lib/components/header/container": {
|
|
72
68
|
"types": "./src/lib/components/header/container/index.d.ts",
|
|
73
69
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs"
|
|
74
70
|
},
|
|
71
|
+
"./src/lib/components/logo/primary-logo": {
|
|
72
|
+
"types": "./src/lib/components/logo/primary-logo/index.d.ts",
|
|
73
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs"
|
|
74
|
+
},
|
|
75
75
|
"./src/lib/components/progress-indicators/progress-bar": {
|
|
76
76
|
"types": "./src/lib/components/progress-indicators/progress-bar/index.d.ts",
|
|
77
77
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs"
|