@getflip/swirl-components-angular 0.65.0 → 0.66.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 +14 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- 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 +2 -2
|
@@ -1711,7 +1711,7 @@ export declare class SwirlOptionList {
|
|
|
1711
1711
|
protected el: HTMLElement;
|
|
1712
1712
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1713
1713
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlOptionList, never>;
|
|
1714
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionList, "swirl-option-list", never, { "allowDrag": "allowDrag"; "assistiveTextItemGrabbed": "assistiveTextItemGrabbed"; "assistiveTextItemMoved": "assistiveTextItemMoved"; "assistiveTextItemMoving": "assistiveTextItemMoving"; "disabled": "disabled"; "label": "label"; "multiSelect": "multiSelect"; "optionListId": "optionListId"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1714
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionList, "swirl-option-list", never, { "allowDeselect": "allowDeselect"; "allowDrag": "allowDrag"; "assistiveTextItemGrabbed": "assistiveTextItemGrabbed"; "assistiveTextItemMoved": "assistiveTextItemMoved"; "assistiveTextItemMoving": "assistiveTextItemMoving"; "disabled": "disabled"; "label": "label"; "multiSelect": "multiSelect"; "optionListId": "optionListId"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1715
1715
|
}
|
|
1716
1716
|
export declare interface SwirlOptionListItem extends Components.SwirlOptionListItem {
|
|
1717
1717
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.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.67.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3838,13 +3838,13 @@ export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
|
3838
3838
|
|
|
3839
3839
|
@ProxyCmp({
|
|
3840
3840
|
defineCustomElementFn: undefined,
|
|
3841
|
-
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
3841
|
+
inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
3842
3842
|
})
|
|
3843
3843
|
@Component({
|
|
3844
3844
|
selector: 'swirl-option-list',
|
|
3845
3845
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3846
3846
|
template: '<ng-content></ng-content>',
|
|
3847
|
-
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
3847
|
+
inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
3848
3848
|
})
|
|
3849
3849
|
export class SwirlOptionList {
|
|
3850
3850
|
protected el: HTMLElement;
|