@getflip/swirl-components-angular 0.122.2 → 0.124.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 +28 -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
|
@@ -2132,7 +2132,7 @@ export declare class SwirlResourceList {
|
|
|
2132
2132
|
protected el: HTMLElement;
|
|
2133
2133
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2134
2134
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlResourceList, never>;
|
|
2135
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlResourceList, "swirl-resource-list", never, { "allowDrag": "allowDrag"; "assistiveTextItemGrabbed": "assistiveTextItemGrabbed"; "assistiveTextItemMoved": "assistiveTextItemMoved"; "assistiveTextItemMoving": "assistiveTextItemMoving"; "label": "label"; }, {}, never, ["*"], false>;
|
|
2135
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlResourceList, "swirl-resource-list", never, { "allowDrag": "allowDrag"; "assistiveTextItemGrabbed": "assistiveTextItemGrabbed"; "assistiveTextItemMoved": "assistiveTextItemMoved"; "assistiveTextItemMoving": "assistiveTextItemMoving"; "controllingElement": "controllingElement"; "label": "label"; }, {}, never, ["*"], false>;
|
|
2136
2136
|
}
|
|
2137
2137
|
export declare interface SwirlResourceListFileItem extends Components.SwirlResourceListFileItem {
|
|
2138
2138
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.124.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.124.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4743,13 +4743,13 @@ export declare interface SwirlResourceList extends Components.SwirlResourceList
|
|
|
4743
4743
|
|
|
4744
4744
|
@ProxyCmp({
|
|
4745
4745
|
defineCustomElementFn: undefined,
|
|
4746
|
-
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'label']
|
|
4746
|
+
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'controllingElement', 'label']
|
|
4747
4747
|
})
|
|
4748
4748
|
@Component({
|
|
4749
4749
|
selector: 'swirl-resource-list',
|
|
4750
4750
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4751
4751
|
template: '<ng-content></ng-content>',
|
|
4752
|
-
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'label']
|
|
4752
|
+
inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'controllingElement', 'label']
|
|
4753
4753
|
})
|
|
4754
4754
|
export class SwirlResourceList {
|
|
4755
4755
|
protected el: HTMLElement;
|