@getflip/swirl-components-angular 0.94.1 → 0.95.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 +24 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +7 -7
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2020/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
|
@@ -1910,7 +1910,7 @@ export declare class SwirlModal {
|
|
|
1910
1910
|
protected el: HTMLElement;
|
|
1911
1911
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1912
1912
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlModal, never>;
|
|
1913
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closable": "closable"; "closeButtonLabel": "closeButtonLabel"; "hideCloseButton": "hideCloseButton"; "hideLabel": "hideLabel"; "label": "label"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "padded": "padded"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
1913
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closable": "closable"; "closeButtonLabel": "closeButtonLabel"; "height": "height"; "hideCloseButton": "hideCloseButton"; "hideLabel": "hideLabel"; "label": "label"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "padded": "padded"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
1914
1914
|
}
|
|
1915
1915
|
export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
1916
1916
|
/**
|
|
@@ -2212,7 +2212,7 @@ export declare class SwirlSwitch {
|
|
|
2212
2212
|
protected el: HTMLElement;
|
|
2213
2213
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2214
2214
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSwitch, never>;
|
|
2215
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "
|
|
2215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2216
2216
|
}
|
|
2217
2217
|
export declare interface SwirlSymbol extends Components.SwirlSymbol {
|
|
2218
2218
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.95.0",
|
|
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.95.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4303,14 +4303,14 @@ export declare interface SwirlModal extends Components.SwirlModal {
|
|
|
4303
4303
|
|
|
4304
4304
|
@ProxyCmp({
|
|
4305
4305
|
defineCustomElementFn: undefined,
|
|
4306
|
-
inputs: ['closable', 'closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant'],
|
|
4306
|
+
inputs: ['closable', 'closeButtonLabel', 'height', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant'],
|
|
4307
4307
|
methods: ['open', 'close']
|
|
4308
4308
|
})
|
|
4309
4309
|
@Component({
|
|
4310
4310
|
selector: 'swirl-modal',
|
|
4311
4311
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4312
4312
|
template: '<ng-content></ng-content>',
|
|
4313
|
-
inputs: ['closable', 'closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant']
|
|
4313
|
+
inputs: ['closable', 'closeButtonLabel', 'height', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant']
|
|
4314
4314
|
})
|
|
4315
4315
|
export class SwirlModal {
|
|
4316
4316
|
protected el: HTMLElement;
|
|
@@ -4923,13 +4923,13 @@ export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
|
4923
4923
|
|
|
4924
4924
|
@ProxyCmp({
|
|
4925
4925
|
defineCustomElementFn: undefined,
|
|
4926
|
-
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', '
|
|
4926
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'value']
|
|
4927
4927
|
})
|
|
4928
4928
|
@Component({
|
|
4929
4929
|
selector: 'swirl-switch',
|
|
4930
4930
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4931
4931
|
template: '<ng-content></ng-content>',
|
|
4932
|
-
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', '
|
|
4932
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'value']
|
|
4933
4933
|
})
|
|
4934
4934
|
export class SwirlSwitch {
|
|
4935
4935
|
protected el: HTMLElement;
|