@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
package/.turbo/turbo-build.log
CHANGED
|
@@ -11,6 +11,8 @@ Building entry point '@getflip/swirl-components-angular'
|
|
|
11
11
|
- Copying assets
|
|
12
12
|
✔ Copying assets
|
|
13
13
|
- Writing package manifest
|
|
14
|
+
✔ Writing package manifest
|
|
15
|
+
✔ Built @getflip/swirl-components-angular
|
|
14
16
|
|
|
15
17
|
------------------------------------------------------------------------------
|
|
16
18
|
Built Angular Package
|
|
@@ -18,7 +20,5 @@ Built Angular Package
|
|
|
18
20
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
19
21
|
------------------------------------------------------------------------------
|
|
20
22
|
|
|
21
|
-
Build at: 2025-10-
|
|
23
|
+
Build at: 2025-10-01T10:17:38.105Z - Time: 14210ms
|
|
22
24
|
|
|
23
|
-
✔ Writing package manifest
|
|
24
|
-
✔ Built @getflip/swirl-components-angular
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.389.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1260](https://github.com/getflip/swirl/pull/1260)
|
|
8
|
+
[`231f55085`](https://github.com/getflip/swirl/commit/231f550854f5a418f2fe803f6f1f9120b2e2a82b)
|
|
9
|
+
Thanks [@danizep](https://github.com/danizep)! - Add semantics prop to
|
|
10
|
+
separator and fix a11y issue on SwirlResourceListSection with separator
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
[[`231f55085`](https://github.com/getflip/swirl/commit/231f550854f5a418f2fe803f6f1f9120b2e2a82b)]:
|
|
13
|
+
- @getflip/swirl-components@0.389.1
|
|
14
|
+
|
|
3
15
|
## 0.389.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -8521,11 +8521,11 @@ let SwirlSeparator = class SwirlSeparator {
|
|
|
8521
8521
|
this.el = r.nativeElement;
|
|
8522
8522
|
}
|
|
8523
8523
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
8524
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSeparator, isStandalone: false, selector: "swirl-separator", inputs: { borderColor: "borderColor", color: "color", label: "label", orientation: "orientation", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8524
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSeparator, isStandalone: false, selector: "swirl-separator", inputs: { borderColor: "borderColor", color: "color", label: "label", orientation: "orientation", semantics: "semantics", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8525
8525
|
};
|
|
8526
8526
|
SwirlSeparator = __decorate([
|
|
8527
8527
|
ProxyCmp({
|
|
8528
|
-
inputs: ['borderColor', 'color', 'label', 'orientation', 'spacing']
|
|
8528
|
+
inputs: ['borderColor', 'color', 'label', 'orientation', 'semantics', 'spacing']
|
|
8529
8529
|
})
|
|
8530
8530
|
], SwirlSeparator);
|
|
8531
8531
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlSeparator, decorators: [{
|
|
@@ -8535,7 +8535,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
8535
8535
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8536
8536
|
template: '<ng-content></ng-content>',
|
|
8537
8537
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8538
|
-
inputs: ['borderColor', 'color', 'label', 'orientation', 'spacing'],
|
|
8538
|
+
inputs: ['borderColor', 'color', 'label', 'orientation', 'semantics', 'spacing'],
|
|
8539
8539
|
standalone: false
|
|
8540
8540
|
}]
|
|
8541
8541
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|