@getflip/swirl-components-angular 0.71.0 → 0.73.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 +7 -7
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -4
|
@@ -225,7 +225,7 @@ export declare class SwirlCheckbox {
|
|
|
225
225
|
protected el: HTMLElement;
|
|
226
226
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
227
227
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlCheckbox, never>;
|
|
228
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlCheckbox, "swirl-checkbox", never, { "checked": "checked"; "description": "description"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "invalid": "invalid"; "label": "label"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "swirlAriaLabel": "swirlAriaLabel"; "value": "value"; }, {}, never, ["*"], false>;
|
|
228
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlCheckbox, "swirl-checkbox", never, { "checked": "checked"; "description": "description"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "invalid": "invalid"; "label": "label"; "labelWeight": "labelWeight"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "swirlAriaLabel": "swirlAriaLabel"; "value": "value"; }, {}, never, ["*"], false>;
|
|
229
229
|
}
|
|
230
230
|
export declare interface SwirlChip extends Components.SwirlChip {
|
|
231
231
|
}
|
|
@@ -1916,7 +1916,7 @@ export declare class SwirlSelect {
|
|
|
1916
1916
|
protected el: HTMLElement;
|
|
1917
1917
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1918
1918
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSelect, never>;
|
|
1919
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSelect, "swirl-select", never, { "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "label": "label"; "multiSelect": "multiSelect"; "required": "required"; "selectId": "selectId"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1919
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSelect, "swirl-select", never, { "allowDeselect": "allowDeselect"; "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "label": "label"; "multiSelect": "multiSelect"; "required": "required"; "selectId": "selectId"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1920
1920
|
}
|
|
1921
1921
|
export declare interface SwirlSeparator extends Components.SwirlSeparator {
|
|
1922
1922
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.73.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.74.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -457,13 +457,13 @@ export declare interface SwirlCheckbox extends Components.SwirlCheckbox {
|
|
|
457
457
|
|
|
458
458
|
@ProxyCmp({
|
|
459
459
|
defineCustomElementFn: undefined,
|
|
460
|
-
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
460
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'labelWeight', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
461
461
|
})
|
|
462
462
|
@Component({
|
|
463
463
|
selector: 'swirl-checkbox',
|
|
464
464
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
465
465
|
template: '<ng-content></ng-content>',
|
|
466
|
-
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
466
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'labelWeight', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
467
467
|
})
|
|
468
468
|
export class SwirlCheckbox {
|
|
469
469
|
protected el: HTMLElement;
|
|
@@ -4249,13 +4249,13 @@ export declare interface SwirlSelect extends Components.SwirlSelect {
|
|
|
4249
4249
|
|
|
4250
4250
|
@ProxyCmp({
|
|
4251
4251
|
defineCustomElementFn: undefined,
|
|
4252
|
-
inputs: ['disabled', 'inline', 'invalid', 'label', 'multiSelect', 'required', 'selectId', 'swirlAriaDescribedby', 'value']
|
|
4252
|
+
inputs: ['allowDeselect', 'disabled', 'inline', 'invalid', 'label', 'multiSelect', 'required', 'selectId', 'swirlAriaDescribedby', 'value']
|
|
4253
4253
|
})
|
|
4254
4254
|
@Component({
|
|
4255
4255
|
selector: 'swirl-select',
|
|
4256
4256
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4257
4257
|
template: '<ng-content></ng-content>',
|
|
4258
|
-
inputs: ['disabled', 'inline', 'invalid', 'label', 'multiSelect', 'required', 'selectId', 'swirlAriaDescribedby', 'value']
|
|
4258
|
+
inputs: ['allowDeselect', 'disabled', 'inline', 'invalid', 'label', 'multiSelect', 'required', 'selectId', 'swirlAriaDescribedby', 'value']
|
|
4259
4259
|
})
|
|
4260
4260
|
export class SwirlSelect {
|
|
4261
4261
|
protected el: HTMLElement;
|