@getflip/swirl-components-angular 0.117.0 → 0.118.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 +1 -1
- package/CHANGELOG.md +26 -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
|
@@ -2009,7 +2009,7 @@ export declare class SwirlOptionListItem {
|
|
|
2009
2009
|
protected el: HTMLElement;
|
|
2010
2010
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2011
2011
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlOptionListItem, never>;
|
|
2012
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionListItem, "swirl-option-list-item", never, { "allowDrag": "allowDrag"; "context": "context"; "disabled": "disabled"; "dragHandleDescription": "dragHandleDescription"; "dragHandleLabel": "dragHandleLabel"; "dragging": "dragging"; "icon": "icon"; "label": "label"; "selected": "selected"; "swirlAriaRole": "swirlAriaRole"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2012
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionListItem, "swirl-option-list-item", never, { "allowDrag": "allowDrag"; "context": "context"; "description": "description"; "disabled": "disabled"; "dragHandleDescription": "dragHandleDescription"; "dragHandleLabel": "dragHandleLabel"; "dragging": "dragging"; "icon": "icon"; "label": "label"; "selected": "selected"; "swirlAriaRole": "swirlAriaRole"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2013
2013
|
}
|
|
2014
2014
|
export declare interface SwirlOptionListSection extends Components.SwirlOptionListSection {
|
|
2015
2015
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.118.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.118.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4498,13 +4498,13 @@ export declare interface SwirlOptionListItem extends Components.SwirlOptionListI
|
|
|
4498
4498
|
|
|
4499
4499
|
@ProxyCmp({
|
|
4500
4500
|
defineCustomElementFn: undefined,
|
|
4501
|
-
inputs: ['allowDrag', 'context', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'label', 'selected', 'swirlAriaRole', 'value']
|
|
4501
|
+
inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'label', 'selected', 'swirlAriaRole', 'value']
|
|
4502
4502
|
})
|
|
4503
4503
|
@Component({
|
|
4504
4504
|
selector: 'swirl-option-list-item',
|
|
4505
4505
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4506
4506
|
template: '<ng-content></ng-content>',
|
|
4507
|
-
inputs: ['allowDrag', 'context', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'label', 'selected', 'swirlAriaRole', 'value']
|
|
4507
|
+
inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'label', 'selected', 'swirlAriaRole', 'value']
|
|
4508
4508
|
})
|
|
4509
4509
|
export class SwirlOptionListItem {
|
|
4510
4510
|
protected el: HTMLElement;
|