@breadstone/mosaik-elements-angular 0.1.10 → 0.1.12
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.1.12 (2026-06-14)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **success-state:** add iconSize property to SuccessStateElement and related components ([15e6640e72](https://github.com/RueDeRennes/mosaik/commit/15e6640e72))
|
|
6
|
+
|
|
7
|
+
## 0.1.11 (2026-06-13)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
1
11
|
## 0.1.10 (2026-06-13)
|
|
2
12
|
|
|
3
13
|
### 🚀 Features
|
|
@@ -46544,6 +46544,12 @@ let ErrorStateComponent = class ErrorStateComponent {
|
|
|
46544
46544
|
* @public
|
|
46545
46545
|
*/
|
|
46546
46546
|
icon = input(...(ngDevMode ? [undefined, { debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
46547
|
+
/**
|
|
46548
|
+
* Signal input for the `iconSize` property.
|
|
46549
|
+
*
|
|
46550
|
+
* @public
|
|
46551
|
+
*/
|
|
46552
|
+
iconSize = input(...(ngDevMode ? [undefined, { debugName: "iconSize" }] : /* istanbul ignore next */ []));
|
|
46547
46553
|
/**
|
|
46548
46554
|
* Signal input for the `header` property.
|
|
46549
46555
|
*
|
|
@@ -46599,6 +46605,10 @@ let ErrorStateComponent = class ErrorStateComponent {
|
|
|
46599
46605
|
if (iconValue !== undefined) {
|
|
46600
46606
|
this._elementRef.nativeElement.icon = iconValue;
|
|
46601
46607
|
}
|
|
46608
|
+
const iconSizeValue = this.iconSize();
|
|
46609
|
+
if (iconSizeValue !== undefined) {
|
|
46610
|
+
this._elementRef.nativeElement.iconSize = iconSizeValue;
|
|
46611
|
+
}
|
|
46602
46612
|
const headerValue = this.header();
|
|
46603
46613
|
if (headerValue !== undefined) {
|
|
46604
46614
|
this._elementRef.nativeElement.header = headerValue;
|
|
@@ -46675,12 +46685,12 @@ let ErrorStateComponent = class ErrorStateComponent {
|
|
|
46675
46685
|
this._elementRef.nativeElement[property] = value;
|
|
46676
46686
|
}
|
|
46677
46687
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: ErrorStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
46678
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: ErrorStateComponent, isStandalone: true, selector: "mosaik-error-state", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, code: { classPropertyName: "code", publicName: "code", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
46688
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: ErrorStateComponent, isStandalone: true, selector: "mosaik-error-state", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconSize: { classPropertyName: "iconSize", publicName: "iconSize", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, code: { classPropertyName: "code", publicName: "code", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
46679
46689
|
};
|
|
46680
46690
|
ErrorStateComponent = __decorate$2F([
|
|
46681
46691
|
ProxyCmp({
|
|
46682
46692
|
defineCustomElementFn: () => defineCustomElement('mosaik-error-state', ErrorStateElement),
|
|
46683
|
-
inputs: ['icon', 'header', 'code', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
46693
|
+
inputs: ['icon', 'iconSize', 'header', 'code', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
46684
46694
|
methods: ['assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
|
|
46685
46695
|
}),
|
|
46686
46696
|
__metadata$2F("design:paramtypes", [])
|
|
@@ -46693,7 +46703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
46693
46703
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
46694
46704
|
template: '<ng-content></ng-content>'
|
|
46695
46705
|
}]
|
|
46696
|
-
}], ctorParameters: () => [], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], code: [{ type: i0.Input, args: [{ isSignal: true, alias: "code", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
46706
|
+
}], ctorParameters: () => [], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], iconSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconSize", required: false }] }], header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], code: [{ type: i0.Input, args: [{ isSignal: true, alias: "code", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
46697
46707
|
/**
|
|
46698
46708
|
* @public
|
|
46699
46709
|
*/
|
|
@@ -77026,6 +77036,12 @@ let SuccessStateComponent = class SuccessStateComponent {
|
|
|
77026
77036
|
* @public
|
|
77027
77037
|
*/
|
|
77028
77038
|
icon = input(...(ngDevMode ? [undefined, { debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
77039
|
+
/**
|
|
77040
|
+
* Signal input for the `iconSize` property.
|
|
77041
|
+
*
|
|
77042
|
+
* @public
|
|
77043
|
+
*/
|
|
77044
|
+
iconSize = input(...(ngDevMode ? [undefined, { debugName: "iconSize" }] : /* istanbul ignore next */ []));
|
|
77029
77045
|
/**
|
|
77030
77046
|
* Signal input for the `header` property.
|
|
77031
77047
|
*
|
|
@@ -77075,6 +77091,10 @@ let SuccessStateComponent = class SuccessStateComponent {
|
|
|
77075
77091
|
if (iconValue !== undefined) {
|
|
77076
77092
|
this._elementRef.nativeElement.icon = iconValue;
|
|
77077
77093
|
}
|
|
77094
|
+
const iconSizeValue = this.iconSize();
|
|
77095
|
+
if (iconSizeValue !== undefined) {
|
|
77096
|
+
this._elementRef.nativeElement.iconSize = iconSizeValue;
|
|
77097
|
+
}
|
|
77078
77098
|
const headerValue = this.header();
|
|
77079
77099
|
if (headerValue !== undefined) {
|
|
77080
77100
|
this._elementRef.nativeElement.header = headerValue;
|
|
@@ -77147,12 +77167,12 @@ let SuccessStateComponent = class SuccessStateComponent {
|
|
|
77147
77167
|
this._elementRef.nativeElement[property] = value;
|
|
77148
77168
|
}
|
|
77149
77169
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: SuccessStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
77150
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: SuccessStateComponent, isStandalone: true, selector: "mosaik-success-state", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
77170
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: SuccessStateComponent, isStandalone: true, selector: "mosaik-success-state", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconSize: { classPropertyName: "iconSize", publicName: "iconSize", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
77151
77171
|
};
|
|
77152
77172
|
SuccessStateComponent = __decorate$S([
|
|
77153
77173
|
ProxyCmp({
|
|
77154
77174
|
defineCustomElementFn: () => defineCustomElement('mosaik-success-state', SuccessStateElement),
|
|
77155
|
-
inputs: ['icon', 'header', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
77175
|
+
inputs: ['icon', 'iconSize', 'header', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
77156
77176
|
methods: ['assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
|
|
77157
77177
|
}),
|
|
77158
77178
|
__metadata$S("design:paramtypes", [])
|
|
@@ -77165,7 +77185,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
77165
77185
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77166
77186
|
template: '<ng-content></ng-content>'
|
|
77167
77187
|
}]
|
|
77168
|
-
}], ctorParameters: () => [], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
77188
|
+
}], ctorParameters: () => [], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], iconSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconSize", required: false }] }], header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
77169
77189
|
/**
|
|
77170
77190
|
* @public
|
|
77171
77191
|
*/
|