@getflip/swirl-components-angular 0.42.2 → 0.43.1
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 +2 -2
- package/CHANGELOG.md +32 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +6 -5
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -3
|
@@ -1447,7 +1447,7 @@ export declare class SwirlModal {
|
|
|
1447
1447
|
protected el: HTMLElement;
|
|
1448
1448
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1449
1449
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlModal, never>;
|
|
1450
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closeButtonLabel": "closeButtonLabel"; "hideCloseButton": "hideCloseButton"; "hideLabel": "hideLabel"; "label": "label"; "maxWidth": "maxWidth"; "padded": "padded"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; }, {}, never, ["*"], false>;
|
|
1450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closeButtonLabel": "closeButtonLabel"; "hideCloseButton": "hideCloseButton"; "hideLabel": "hideLabel"; "label": "label"; "maxWidth": "maxWidth"; "padded": "padded"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
1451
1451
|
}
|
|
1452
1452
|
export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
1453
1453
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.44.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3246,14 +3246,14 @@ export declare interface SwirlModal extends Components.SwirlModal {
|
|
|
3246
3246
|
|
|
3247
3247
|
@ProxyCmp({
|
|
3248
3248
|
defineCustomElementFn: undefined,
|
|
3249
|
-
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
3249
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant'],
|
|
3250
3250
|
methods: ['open', 'close']
|
|
3251
3251
|
})
|
|
3252
3252
|
@Component({
|
|
3253
3253
|
selector: 'swirl-modal',
|
|
3254
3254
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3255
3255
|
template: '<ng-content></ng-content>',
|
|
3256
|
-
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel']
|
|
3256
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant']
|
|
3257
3257
|
})
|
|
3258
3258
|
export class SwirlModal {
|
|
3259
3259
|
protected el: HTMLElement;
|
|
@@ -3888,7 +3888,8 @@ export declare interface SwirlTable extends Components.SwirlTable {}
|
|
|
3888
3888
|
|
|
3889
3889
|
@ProxyCmp({
|
|
3890
3890
|
defineCustomElementFn: undefined,
|
|
3891
|
-
inputs: ['caption', 'emptyStateLabel', 'label']
|
|
3891
|
+
inputs: ['caption', 'emptyStateLabel', 'label'],
|
|
3892
|
+
methods: ['rerender']
|
|
3892
3893
|
})
|
|
3893
3894
|
@Component({
|
|
3894
3895
|
selector: 'swirl-table',
|