@getflip/swirl-components-angular 0.389.0 → 0.389.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 +3 -3
- package/CHANGELOG.md +12 -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
|
@@ -2909,7 +2909,7 @@ export declare class SwirlSeparator {
|
|
|
2909
2909
|
protected el: HTMLSwirlSeparatorElement;
|
|
2910
2910
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2911
2911
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSeparator, never>;
|
|
2912
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, { "borderColor": { "alias": "borderColor"; "required": false; }; "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2912
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, { "borderColor": { "alias": "borderColor"; "required": false; }; "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "semantics": { "alias": "semantics"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2913
2913
|
}
|
|
2914
2914
|
export declare interface SwirlSeparator extends Components.SwirlSeparator {
|
|
2915
2915
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.389.
|
|
3
|
+
"version": "0.389.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.3",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.3",
|
|
24
24
|
"@angular/router": "19.2.3",
|
|
25
|
-
"@getflip/swirl-components": "^0.389.
|
|
25
|
+
"@getflip/swirl-components": "^0.389.1",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "^2.3.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -7438,14 +7438,14 @@ export declare interface SwirlSelect extends Components.SwirlSelect {
|
|
|
7438
7438
|
|
|
7439
7439
|
|
|
7440
7440
|
@ProxyCmp({
|
|
7441
|
-
inputs: ['borderColor', 'color', 'label', 'orientation', 'spacing']
|
|
7441
|
+
inputs: ['borderColor', 'color', 'label', 'orientation', 'semantics', 'spacing']
|
|
7442
7442
|
})
|
|
7443
7443
|
@Component({
|
|
7444
7444
|
selector: 'swirl-separator',
|
|
7445
7445
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7446
7446
|
template: '<ng-content></ng-content>',
|
|
7447
7447
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7448
|
-
inputs: ['borderColor', 'color', 'label', 'orientation', 'spacing'],
|
|
7448
|
+
inputs: ['borderColor', 'color', 'label', 'orientation', 'semantics', 'spacing'],
|
|
7449
7449
|
standalone: false
|
|
7450
7450
|
})
|
|
7451
7451
|
export class SwirlSeparator {
|