@getflip/swirl-components-angular 0.353.1 → 0.355.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 +36 -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
package/.turbo/turbo-build.log
CHANGED
|
@@ -20,5 +20,5 @@ Built Angular Package
|
|
|
20
20
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
21
21
|
------------------------------------------------------------------------------
|
|
22
22
|
|
|
23
|
-
Build at: 2025-07-
|
|
23
|
+
Build at: 2025-07-29T06:49:55.673Z - Time: 12000ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.355.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/getflip/swirl/pull/1148)
|
|
8
|
+
[`96cd21e4`](https://github.com/getflip/swirl/commit/96cd21e45a0afc0e9abc1a498c430dd50517cb65)
|
|
9
|
+
Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add "empty" slot to swirl-table
|
|
10
|
+
used to override the default "emptyStateLabel"
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#1148](https://github.com/getflip/swirl/pull/1148)
|
|
15
|
+
[`96cd21e4`](https://github.com/getflip/swirl/commit/96cd21e45a0afc0e9abc1a498c430dd50517cb65)
|
|
16
|
+
Thanks [@Sqrrl](https://github.com/Sqrrl)! - Fix detection of empty
|
|
17
|
+
swirl-tables
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
[[`96cd21e4`](https://github.com/getflip/swirl/commit/96cd21e45a0afc0e9abc1a498c430dd50517cb65),
|
|
21
|
+
[`96cd21e4`](https://github.com/getflip/swirl/commit/96cd21e45a0afc0e9abc1a498c430dd50517cb65)]:
|
|
22
|
+
- @getflip/swirl-components@0.355.0
|
|
23
|
+
|
|
24
|
+
## 0.354.0
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- [#1146](https://github.com/getflip/swirl/pull/1146)
|
|
29
|
+
[`4441d50f`](https://github.com/getflip/swirl/commit/4441d50f3798985f9f24591faf6137ba08202749)
|
|
30
|
+
Thanks [@AshleyBekemeier](https://github.com/AshleyBekemeier)! - Add
|
|
31
|
+
description field to switchwq
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
[[`4441d50f`](https://github.com/getflip/swirl/commit/4441d50f3798985f9f24591faf6137ba08202749)]:
|
|
37
|
+
- @getflip/swirl-components@0.354.0
|
|
38
|
+
|
|
3
39
|
## 0.353.1
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -8577,11 +8577,11 @@ let SwirlSwitch = class SwirlSwitch {
|
|
|
8577
8577
|
proxyOutputs(this, this.el, ['valueChange']);
|
|
8578
8578
|
}
|
|
8579
8579
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
8580
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSwitch, isStandalone: false, selector: "swirl-switch", inputs: { checked: "checked", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", inputName: "inputName", label: "label", labelPosition: "labelPosition", swirlAriaLabel: "swirlAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8580
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSwitch, isStandalone: false, selector: "swirl-switch", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", inputName: "inputName", label: "label", labelPosition: "labelPosition", swirlAriaLabel: "swirlAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8581
8581
|
};
|
|
8582
8582
|
SwirlSwitch = __decorate([
|
|
8583
8583
|
ProxyCmp({
|
|
8584
|
-
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
8584
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
8585
8585
|
methods: ['toggle']
|
|
8586
8586
|
})
|
|
8587
8587
|
], SwirlSwitch);
|
|
@@ -8592,7 +8592,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
8592
8592
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8593
8593
|
template: '<ng-content></ng-content>',
|
|
8594
8594
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8595
|
-
inputs: ['checked', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
8595
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
8596
8596
|
standalone: false
|
|
8597
8597
|
}]
|
|
8598
8598
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|