@getflip/swirl-components-angular 0.422.0 → 0.423.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 +15 -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-12-
|
|
23
|
+
Build at: 2025-12-23T13:30:00.996Z - Time: 14066ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.423.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1363](https://github.com/getflip/swirl/pull/1363)
|
|
8
|
+
[`42de30cdb`](https://github.com/getflip/swirl/commit/42de30cdb7c6aeaeb8e586cde76d4e297c721987)
|
|
9
|
+
Thanks [@nunofaria11](https://github.com/nunofaria11)! - Add table column
|
|
10
|
+
sunken variant
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`42de30cdb`](https://github.com/getflip/swirl/commit/42de30cdb7c6aeaeb8e586cde76d4e297c721987)]:
|
|
16
|
+
- @getflip/swirl-components@0.423.0
|
|
17
|
+
|
|
3
18
|
## 0.422.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -12255,11 +12255,11 @@ let SwirlTableColumn = class SwirlTableColumn {
|
|
|
12255
12255
|
this.el = r.nativeElement;
|
|
12256
12256
|
}
|
|
12257
12257
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SwirlTableColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
12258
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", type: SwirlTableColumn, isStandalone: false, selector: "swirl-table-column", inputs: { maxWidth: "maxWidth", minWidth: "minWidth", sort: "sort", sortable: "sortable", sticky: "sticky", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12258
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", type: SwirlTableColumn, isStandalone: false, selector: "swirl-table-column", inputs: { maxWidth: "maxWidth", minWidth: "minWidth", sort: "sort", sortable: "sortable", sticky: "sticky", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12259
12259
|
};
|
|
12260
12260
|
SwirlTableColumn = __decorate([
|
|
12261
12261
|
ProxyCmp({
|
|
12262
|
-
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'width']
|
|
12262
|
+
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'variant', 'width']
|
|
12263
12263
|
})
|
|
12264
12264
|
], SwirlTableColumn);
|
|
12265
12265
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SwirlTableColumn, decorators: [{
|
|
@@ -12269,7 +12269,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
12269
12269
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
12270
12270
|
template: '<ng-content></ng-content>',
|
|
12271
12271
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
12272
|
-
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'width'],
|
|
12272
|
+
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'variant', 'width'],
|
|
12273
12273
|
standalone: false
|
|
12274
12274
|
}]
|
|
12275
12275
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|