@breadstone/mosaik-elements-angular 0.1.9 → 0.1.10
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,10 @@
|
|
|
1
|
+
## 0.1.10 (2026-06-13)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **stepper:** enhance stepper component with slot handling and styling improvements ([b11dd29f63](https://github.com/RueDeRennes/mosaik/commit/b11dd29f63))
|
|
6
|
+
- **empty-state:** update slots for header and content in EmptyStateElement ([491a61d272](https://github.com/RueDeRennes/mosaik/commit/491a61d272))
|
|
7
|
+
|
|
1
8
|
## 0.1.9 (2026-06-10)
|
|
2
9
|
|
|
3
10
|
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
@@ -7033,6 +7033,7 @@ const STEPPER_DEFAULT_PROPS = new InjectionToken('MOSAIK_STEPPER_DEFAULT_PROPS')
|
|
|
7033
7033
|
/**
|
|
7034
7034
|
* @public
|
|
7035
7035
|
*
|
|
7036
|
+
* @slot ${`step-${index}`} - The ${`step-${index}`} slot.
|
|
7036
7037
|
* @slot footer - Custom footer content below the stepper content
|
|
7037
7038
|
* @slot steps - The stepper item elements (mosaik-stepper-item)
|
|
7038
7039
|
* @slot - Default slot for selector item elements
|
|
@@ -7233,7 +7234,7 @@ StepperComponent = __decorate$4x([
|
|
|
7233
7234
|
ProxyCmp({
|
|
7234
7235
|
defineCustomElementFn: () => defineCustomElement('mosaik-stepper', StepperElement),
|
|
7235
7236
|
inputs: ['activeIndex', 'isFirstStep', 'isLastStep', 'themeName', 'fit', 'disabled', 'orientation', 'items', 'selectedItem', 'dir', 'lang'],
|
|
7236
|
-
methods: ['
|
|
7237
|
+
methods: ['onSlotChanges', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'select', 'deselect', 'resetSelection', 'selectNext', 'selectPrevious', 'selectFirst', 'selectLast']
|
|
7237
7238
|
}),
|
|
7238
7239
|
__metadata$4x("design:paramtypes", [])
|
|
7239
7240
|
], StepperComponent);
|
|
@@ -23875,8 +23876,9 @@ const BUSY_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_BUSY_STATE_DEFAULT_P
|
|
|
23875
23876
|
/**
|
|
23876
23877
|
* @public
|
|
23877
23878
|
*
|
|
23878
|
-
* @slot -
|
|
23879
|
+
* @slot - The default slot.
|
|
23879
23880
|
* @slot actions - Action buttons or controls available during loading (e.g., cancel operation, dismiss)
|
|
23881
|
+
* @slot header - The header slot.
|
|
23880
23882
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
23881
23883
|
*/
|
|
23882
23884
|
let BusyStateComponent = class BusyStateComponent {
|
|
@@ -45459,8 +45461,9 @@ const EMPTY_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_EMPTY_STATE_DEFAULT
|
|
|
45459
45461
|
/**
|
|
45460
45462
|
* @public
|
|
45461
45463
|
*
|
|
45462
|
-
* @slot -
|
|
45464
|
+
* @slot - The default slot.
|
|
45463
45465
|
* @slot actions - Action buttons or links for user guidance and next steps
|
|
45466
|
+
* @slot header - The header slot.
|
|
45464
45467
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
45465
45468
|
*/
|
|
45466
45469
|
let EmptyStateComponent = class EmptyStateComponent {
|
|
@@ -45487,6 +45490,12 @@ let EmptyStateComponent = class EmptyStateComponent {
|
|
|
45487
45490
|
get elementRef() {
|
|
45488
45491
|
return this._elementRef;
|
|
45489
45492
|
}
|
|
45493
|
+
/**
|
|
45494
|
+
* Signal input for the `iconSize` property.
|
|
45495
|
+
*
|
|
45496
|
+
* @public
|
|
45497
|
+
*/
|
|
45498
|
+
iconSize = input(...(ngDevMode ? [undefined, { debugName: "iconSize" }] : /* istanbul ignore next */ []));
|
|
45490
45499
|
/**
|
|
45491
45500
|
* Signal input for the `icon` property.
|
|
45492
45501
|
*
|
|
@@ -45538,6 +45547,10 @@ let EmptyStateComponent = class EmptyStateComponent {
|
|
|
45538
45547
|
*/
|
|
45539
45548
|
initInputSyncEffect() {
|
|
45540
45549
|
effect(() => {
|
|
45550
|
+
const iconSizeValue = this.iconSize();
|
|
45551
|
+
if (iconSizeValue !== undefined) {
|
|
45552
|
+
this._elementRef.nativeElement.iconSize = iconSizeValue;
|
|
45553
|
+
}
|
|
45541
45554
|
const iconValue = this.icon();
|
|
45542
45555
|
if (iconValue !== undefined) {
|
|
45543
45556
|
this._elementRef.nativeElement.icon = iconValue;
|
|
@@ -45614,12 +45627,12 @@ let EmptyStateComponent = class EmptyStateComponent {
|
|
|
45614
45627
|
this._elementRef.nativeElement[property] = value;
|
|
45615
45628
|
}
|
|
45616
45629
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: EmptyStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
45617
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: EmptyStateComponent, isStandalone: true, selector: "mosaik-empty-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 });
|
|
45630
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: EmptyStateComponent, isStandalone: true, selector: "mosaik-empty-state", inputs: { iconSize: { classPropertyName: "iconSize", publicName: "iconSize", isSignal: true, isRequired: false, transformFunction: null }, 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 });
|
|
45618
45631
|
};
|
|
45619
45632
|
EmptyStateComponent = __decorate$2J([
|
|
45620
45633
|
ProxyCmp({
|
|
45621
45634
|
defineCustomElementFn: () => defineCustomElement('mosaik-empty-state', EmptyStateElement),
|
|
45622
|
-
inputs: ['icon', 'header', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
45635
|
+
inputs: ['iconSize', 'icon', 'header', 'themeName', 'content', 'formatter', 'dir', 'lang'],
|
|
45623
45636
|
methods: ['assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
|
|
45624
45637
|
}),
|
|
45625
45638
|
__metadata$2J("design:paramtypes", [])
|
|
@@ -45632,7 +45645,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
45632
45645
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
45633
45646
|
template: '<ng-content></ng-content>'
|
|
45634
45647
|
}]
|
|
45635
|
-
}], 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"] }] } });
|
|
45648
|
+
}], ctorParameters: () => [], propDecorators: { iconSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconSize", required: false }] }], 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"] }] } });
|
|
45636
45649
|
/**
|
|
45637
45650
|
* @public
|
|
45638
45651
|
*/
|
|
@@ -46496,8 +46509,9 @@ const ERROR_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_ERROR_STATE_DEFAULT
|
|
|
46496
46509
|
/**
|
|
46497
46510
|
* @public
|
|
46498
46511
|
*
|
|
46499
|
-
* @slot -
|
|
46512
|
+
* @slot - The default slot.
|
|
46500
46513
|
* @slot actions - Action buttons for error recovery (retry, refresh, contact support, go back, etc.)
|
|
46514
|
+
* @slot header - The header slot.
|
|
46501
46515
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
46502
46516
|
*/
|
|
46503
46517
|
let ErrorStateComponent = class ErrorStateComponent {
|
|
@@ -76977,8 +76991,9 @@ const SUCCESS_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_SUCCESS_STATE_DEF
|
|
|
76977
76991
|
/**
|
|
76978
76992
|
* @public
|
|
76979
76993
|
*
|
|
76980
|
-
* @slot -
|
|
76994
|
+
* @slot - The default slot.
|
|
76981
76995
|
* @slot actions - Action buttons for next steps or related operations after success
|
|
76996
|
+
* @slot header - The header slot.
|
|
76982
76997
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
76983
76998
|
*/
|
|
76984
76999
|
let SuccessStateComponent = class SuccessStateComponent {
|