@getflip/swirl-components-angular 0.388.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 +1 -1
- package/CHANGELOG.md +27 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2022/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
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-10-
|
|
23
|
+
Build at: 2025-10-01T10:17:38.105Z - Time: 14210ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
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
|
+
|
|
15
|
+
## 0.389.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#1259](https://github.com/getflip/swirl/pull/1259)
|
|
20
|
+
[`a1b0e6ee7`](https://github.com/getflip/swirl/commit/a1b0e6ee72fe5bcb71d3ed16a835e06cbca308ed)
|
|
21
|
+
Thanks [@AshleyBekemeier](https://github.com/AshleyBekemeier)! - Allow custom
|
|
22
|
+
Sizes for Shell Nav Items
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
[[`a1b0e6ee7`](https://github.com/getflip/swirl/commit/a1b0e6ee72fe5bcb71d3ed16a835e06cbca308ed)]:
|
|
28
|
+
- @getflip/swirl-components@0.389.0
|
|
29
|
+
|
|
3
30
|
## 0.388.0
|
|
4
31
|
|
|
5
32
|
### 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 }] });
|
|
@@ -8577,11 +8577,11 @@ let SwirlShellNavigationItem = class SwirlShellNavigationItem {
|
|
|
8577
8577
|
this.el = r.nativeElement;
|
|
8578
8578
|
}
|
|
8579
8579
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlShellNavigationItem, 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: SwirlShellNavigationItem, isStandalone: false, selector: "swirl-shell-navigation-item", inputs: { active: "active", badgeLabel: "badgeLabel", boxed: "boxed", description: "description", filled: "filled", hideLabel: "hideLabel", href: "href", inlineLabel: "inlineLabel", inlineLabelColor: "inlineLabelColor", label: "label", markAsNew: "markAsNew", markAsNewLabel: "markAsNewLabel", target: "target", variant: "variant", withGradient: "withGradient" }, 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: SwirlShellNavigationItem, isStandalone: false, selector: "swirl-shell-navigation-item", inputs: { active: "active", badgeLabel: "badgeLabel", boxed: "boxed", description: "description", filled: "filled", hideLabel: "hideLabel", href: "href", inlineLabel: "inlineLabel", inlineLabelColor: "inlineLabelColor", label: "label", markAsNew: "markAsNew", markAsNewLabel: "markAsNewLabel", target: "target", useCustomIconSize: "useCustomIconSize", variant: "variant", withGradient: "withGradient" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8581
8581
|
};
|
|
8582
8582
|
SwirlShellNavigationItem = __decorate([
|
|
8583
8583
|
ProxyCmp({
|
|
8584
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'markAsNew', 'markAsNewLabel', 'target', 'variant', 'withGradient']
|
|
8584
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'markAsNew', 'markAsNewLabel', 'target', 'useCustomIconSize', 'variant', 'withGradient']
|
|
8585
8585
|
})
|
|
8586
8586
|
], SwirlShellNavigationItem);
|
|
8587
8587
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlShellNavigationItem, decorators: [{
|
|
@@ -8591,7 +8591,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
8591
8591
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8592
8592
|
template: '<ng-content></ng-content>',
|
|
8593
8593
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8594
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', { name: 'label', required: true }, 'markAsNew', 'markAsNewLabel', 'target', 'variant', 'withGradient'],
|
|
8594
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', { name: 'label', required: true }, 'markAsNew', 'markAsNewLabel', 'target', 'useCustomIconSize', 'variant', 'withGradient'],
|
|
8595
8595
|
standalone: false
|
|
8596
8596
|
}]
|
|
8597
8597
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|