@getflip/swirl-components-angular 0.20.1 → 0.21.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 +2 -2
- 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
|
@@ -247,7 +247,7 @@ export declare class SwirlDescriptionListItem {
|
|
|
247
247
|
protected el: HTMLElement;
|
|
248
248
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
249
249
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDescriptionListItem, never>;
|
|
250
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDescriptionListItem, "swirl-description-list-item", never, { "term": "term"; }, {}, never, ["*"], false>;
|
|
250
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDescriptionListItem, "swirl-description-list-item", never, { "orientation": "orientation"; "term": "term"; }, {}, never, ["*"], false>;
|
|
251
251
|
}
|
|
252
252
|
export declare interface SwirlDialog extends Components.SwirlDialog {
|
|
253
253
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.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.22.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -518,13 +518,13 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
|
|
|
518
518
|
|
|
519
519
|
@ProxyCmp({
|
|
520
520
|
defineCustomElementFn: undefined,
|
|
521
|
-
inputs: ['term']
|
|
521
|
+
inputs: ['orientation', 'term']
|
|
522
522
|
})
|
|
523
523
|
@Component({
|
|
524
524
|
selector: 'swirl-description-list-item',
|
|
525
525
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
526
526
|
template: '<ng-content></ng-content>',
|
|
527
|
-
inputs: ['term']
|
|
527
|
+
inputs: ['orientation', 'term']
|
|
528
528
|
})
|
|
529
529
|
export class SwirlDescriptionListItem {
|
|
530
530
|
protected el: HTMLElement;
|