@getflip/swirl-components-angular 0.169.1 → 0.171.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 +33 -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
|
@@ -2097,7 +2097,7 @@ export declare class SwirlMenuItem {
|
|
|
2097
2097
|
protected el: HTMLElement;
|
|
2098
2098
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2099
2099
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlMenuItem, never>;
|
|
2100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlMenuItem, "swirl-menu-item", never, { "description": "description"; "disabled": "disabled"; "expanded": "expanded"; "icon": "icon"; "intent": "intent"; "label": "label"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlMenuItem, "swirl-menu-item", never, { "description": "description"; "disabled": "disabled"; "expanded": "expanded"; "icon": "icon"; "intent": "intent"; "label": "label"; "suffix": "suffix"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2101
2101
|
}
|
|
2102
2102
|
export declare interface SwirlModal extends Components.SwirlModal {
|
|
2103
2103
|
/**
|
|
@@ -2448,7 +2448,7 @@ export declare class SwirlSwitch {
|
|
|
2448
2448
|
protected el: HTMLElement;
|
|
2449
2449
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2450
2450
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSwitch, never>;
|
|
2451
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "hideLabel": "hideLabel"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2451
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "hideLabel": "hideLabel"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "labelPosition": "labelPosition"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2452
2452
|
}
|
|
2453
2453
|
export declare interface SwirlSymbol extends Components.SwirlSymbol {
|
|
2454
2454
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.171.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.171.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4730,14 +4730,14 @@ export declare interface SwirlMenuItem extends Components.SwirlMenuItem {}
|
|
|
4730
4730
|
|
|
4731
4731
|
@ProxyCmp({
|
|
4732
4732
|
defineCustomElementFn: undefined,
|
|
4733
|
-
inputs: ['description', 'disabled', 'expanded', 'icon', 'intent', 'label', 'value'],
|
|
4733
|
+
inputs: ['description', 'disabled', 'expanded', 'icon', 'intent', 'label', 'suffix', 'value'],
|
|
4734
4734
|
methods: ['getSubMenu', 'getParentMenu']
|
|
4735
4735
|
})
|
|
4736
4736
|
@Component({
|
|
4737
4737
|
selector: 'swirl-menu-item',
|
|
4738
4738
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4739
4739
|
template: '<ng-content></ng-content>',
|
|
4740
|
-
inputs: ['description', 'disabled', 'expanded', 'icon', 'intent', 'label', 'value']
|
|
4740
|
+
inputs: ['description', 'disabled', 'expanded', 'icon', 'intent', 'label', 'suffix', 'value']
|
|
4741
4741
|
})
|
|
4742
4742
|
export class SwirlMenuItem {
|
|
4743
4743
|
protected el: HTMLElement;
|
|
@@ -5420,13 +5420,13 @@ export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
|
5420
5420
|
|
|
5421
5421
|
@ProxyCmp({
|
|
5422
5422
|
defineCustomElementFn: undefined,
|
|
5423
|
-
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'value']
|
|
5423
|
+
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'value']
|
|
5424
5424
|
})
|
|
5425
5425
|
@Component({
|
|
5426
5426
|
selector: 'swirl-switch',
|
|
5427
5427
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5428
5428
|
template: '<ng-content></ng-content>',
|
|
5429
|
-
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'value']
|
|
5429
|
+
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'value']
|
|
5430
5430
|
})
|
|
5431
5431
|
export class SwirlSwitch {
|
|
5432
5432
|
protected el: HTMLElement;
|