@getflip/swirl-components-angular 0.492.0 → 0.493.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 +21 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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
|
@@ -318,7 +318,7 @@ export declare class SwirlDialog {
|
|
|
318
318
|
protected el: HTMLSwirlDialogElement;
|
|
319
319
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
320
320
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDialog, never>;
|
|
321
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDialog, "swirl-dialog", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "primaryActionLabel": { "alias": "primaryActionLabel"; "required": false; }; "returnFocusTo": { "alias": "returnFocusTo"; "required": false; }; "secondaryActionLabel": { "alias": "secondaryActionLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
321
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDialog, "swirl-dialog", never, { "actionsOrientation": { "alias": "actionsOrientation"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "primaryActionLabel": { "alias": "primaryActionLabel"; "required": false; }; "returnFocusTo": { "alias": "returnFocusTo"; "required": false; }; "secondaryActionLabel": { "alias": "secondaryActionLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
322
322
|
}
|
|
323
323
|
export declare interface SwirlDialog extends Components.SwirlDialog {
|
|
324
324
|
dialogClose: EventEmitter<CustomEvent<void>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.493.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/getflip/swirl"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@angular/platform-browser": "19.2.19",
|
|
27
27
|
"@angular/platform-browser-dynamic": "19.2.19",
|
|
28
28
|
"@angular/router": "19.2.19",
|
|
29
|
-
"@getflip/swirl-components": "0.
|
|
29
|
+
"@getflip/swirl-components": "0.493.0",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -804,7 +804,7 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
|
|
|
804
804
|
|
|
805
805
|
|
|
806
806
|
@ProxyCmp({
|
|
807
|
-
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
|
|
807
|
+
inputs: ['actionsOrientation', 'hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel', 'size'],
|
|
808
808
|
methods: ['open', 'close']
|
|
809
809
|
})
|
|
810
810
|
@Component({
|
|
@@ -812,7 +812,7 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
|
|
|
812
812
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
813
813
|
template: '<ng-content></ng-content>',
|
|
814
814
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
815
|
-
inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
|
|
815
|
+
inputs: ['actionsOrientation', 'hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel', 'size'],
|
|
816
816
|
standalone: false
|
|
817
817
|
})
|
|
818
818
|
export class SwirlDialog {
|