@getflip/swirl-components-angular 0.194.1 → 0.196.0
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +30 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +7 -7
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -4
|
@@ -2257,7 +2257,7 @@ export declare class SwirlPopoverTrigger {
|
|
|
2257
2257
|
protected el: HTMLElement;
|
|
2258
2258
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2259
2259
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlPopoverTrigger, never>;
|
|
2260
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPopoverTrigger, "swirl-popover-trigger", never, { "hidePopoverWhenInvisible": { "alias": "hidePopoverWhenInvisible"; "required": false; }; "parentScrollContainer": { "alias": "parentScrollContainer"; "required": false; }; "setAriaAttributes": { "alias": "setAriaAttributes"; "required": false; }; "swirlPopover": { "alias": "swirlPopover"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2260
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPopoverTrigger, "swirl-popover-trigger", never, { "hidePopoverWhenInvisible": { "alias": "hidePopoverWhenInvisible"; "required": false; }; "parentScrollContainer": { "alias": "parentScrollContainer"; "required": false; }; "setAriaAttributes": { "alias": "setAriaAttributes"; "required": false; }; "swirlPopover": { "alias": "swirlPopover"; "required": false; }; "triggerOnHover": { "alias": "triggerOnHover"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2261
2261
|
}
|
|
2262
2262
|
export declare interface SwirlProgressIndicator extends Components.SwirlProgressIndicator {
|
|
2263
2263
|
}
|
|
@@ -3115,7 +3115,7 @@ export declare class SwirlTag {
|
|
|
3115
3115
|
protected el: HTMLElement;
|
|
3116
3116
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3117
3117
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTag, never>;
|
|
3118
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTag, "swirl-tag", never, { "bordered": { "alias": "bordered"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removalButtonLabel": { "alias": "removalButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
3118
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTag, "swirl-tag", never, { "bordered": { "alias": "bordered"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removalButtonLabel": { "alias": "removalButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
3119
3119
|
}
|
|
3120
3120
|
export declare interface SwirlText extends Components.SwirlText {
|
|
3121
3121
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.196.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.196.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -5027,13 +5027,13 @@ export declare interface SwirlPopoverTrigger extends Components.SwirlPopoverTrig
|
|
|
5027
5027
|
|
|
5028
5028
|
@ProxyCmp({
|
|
5029
5029
|
defineCustomElementFn: undefined,
|
|
5030
|
-
inputs: ['hidePopoverWhenInvisible', 'parentScrollContainer', 'setAriaAttributes', 'swirlPopover']
|
|
5030
|
+
inputs: ['hidePopoverWhenInvisible', 'parentScrollContainer', 'setAriaAttributes', 'swirlPopover', 'triggerOnHover']
|
|
5031
5031
|
})
|
|
5032
5032
|
@Component({
|
|
5033
5033
|
selector: 'swirl-popover-trigger',
|
|
5034
5034
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5035
5035
|
template: '<ng-content></ng-content>',
|
|
5036
|
-
inputs: ['hidePopoverWhenInvisible', 'parentScrollContainer', 'setAriaAttributes', 'swirlPopover']
|
|
5036
|
+
inputs: ['hidePopoverWhenInvisible', 'parentScrollContainer', 'setAriaAttributes', 'swirlPopover', 'triggerOnHover']
|
|
5037
5037
|
})
|
|
5038
5038
|
export class SwirlPopoverTrigger {
|
|
5039
5039
|
protected el: HTMLElement;
|
|
@@ -6949,13 +6949,13 @@ export declare interface SwirlTag extends Components.SwirlTag {
|
|
|
6949
6949
|
|
|
6950
6950
|
@ProxyCmp({
|
|
6951
6951
|
defineCustomElementFn: undefined,
|
|
6952
|
-
inputs: ['bordered', 'intent', 'label', 'removable', 'removalButtonLabel']
|
|
6952
|
+
inputs: ['bordered', 'intent', 'label', 'removable', 'removalButtonLabel', 'size']
|
|
6953
6953
|
})
|
|
6954
6954
|
@Component({
|
|
6955
6955
|
selector: 'swirl-tag',
|
|
6956
6956
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6957
6957
|
template: '<ng-content></ng-content>',
|
|
6958
|
-
inputs: ['bordered', 'intent', 'label', 'removable', 'removalButtonLabel']
|
|
6958
|
+
inputs: ['bordered', 'intent', 'label', 'removable', 'removalButtonLabel', 'size']
|
|
6959
6959
|
})
|
|
6960
6960
|
export class SwirlTag {
|
|
6961
6961
|
protected el: HTMLElement;
|