@breadstone/mosaik-elements-angular 0.1.9 → 0.1.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-angular",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Mosaik elements for Angular.",
5
5
  "license": "MIT",
6
6
  "author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
@@ -12,8 +12,8 @@
12
12
  "url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
13
13
  },
14
14
  "dependencies": {
15
- "@breadstone/mosaik-elements": "0.1.9",
16
- "@breadstone/mosaik-elements-foundation": "0.1.9",
15
+ "@breadstone/mosaik-elements": "0.1.11",
16
+ "@breadstone/mosaik-elements-foundation": "0.1.11",
17
17
  "tslib": "2.8.1"
18
18
  },
19
19
  "peerDependencies": {
@@ -3783,8 +3783,9 @@ declare const BUSY_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
3783
3783
  /**
3784
3784
  * @public
3785
3785
  *
3786
- * @slot - Default content area for additional loading state information or custom elements
3786
+ * @slot - The default slot.
3787
3787
  * @slot actions - Action buttons or controls available during loading (e.g., cancel operation, dismiss)
3788
+ * @slot header - The header slot.
3788
3789
  * @slot style - Custom styles injection slot for shadow DOM styling escape hatch
3789
3790
  */
3790
3791
  declare class BusyStateComponent {
@@ -18858,8 +18859,9 @@ declare const EMPTY_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elem
18858
18859
  /**
18859
18860
  * @public
18860
18861
  *
18861
- * @slot - Default content area for additional empty state information or custom elements
18862
+ * @slot - The default slot.
18862
18863
  * @slot actions - Action buttons or links for user guidance and next steps
18864
+ * @slot header - The header slot.
18863
18865
  * @slot style - Custom styles injection slot for shadow DOM styling escape hatch
18864
18866
  */
18865
18867
  declare class EmptyStateComponent {
@@ -18868,6 +18870,12 @@ declare class EmptyStateComponent {
18868
18870
  private readonly _outputSubscriptions;
18869
18871
  constructor();
18870
18872
  get elementRef(): ElementRef<EmptyStateElement>;
18873
+ /**
18874
+ * Signal input for the `iconSize` property.
18875
+ *
18876
+ * @public
18877
+ */
18878
+ readonly iconSize: InputSignal<EmptyStateElement['iconSize'] | undefined>;
18871
18879
  /**
18872
18880
  * Signal input for the `icon` property.
18873
18881
  *
@@ -18956,7 +18964,7 @@ declare class EmptyStateComponent {
18956
18964
  */
18957
18965
  setInput<TProperty extends keyof EmptyStateElement>(property: TProperty, value: EmptyStateElement[TProperty]): void;
18958
18966
  static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateComponent, never>;
18959
- static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "mosaik-empty-state", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "themeName": { "alias": "themeName"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "formatter": { "alias": "formatter"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
18967
+ static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "mosaik-empty-state", never, { "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "themeName": { "alias": "themeName"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "formatter": { "alias": "formatter"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
18960
18968
  }
18961
18969
  /**
18962
18970
  * Declares the methods available on EmptyStateComponent.
@@ -19498,8 +19506,9 @@ declare const ERROR_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elem
19498
19506
  /**
19499
19507
  * @public
19500
19508
  *
19501
- * @slot - Default content area for additional error information or custom content
19509
+ * @slot - The default slot.
19502
19510
  * @slot actions - Action buttons for error recovery (retry, refresh, contact support, go back, etc.)
19511
+ * @slot header - The header slot.
19503
19512
  * @slot style - Custom styles injection slot for shadow DOM styling escape hatch
19504
19513
  */
19505
19514
  declare class ErrorStateComponent {
@@ -39065,6 +39074,7 @@ declare const STEPPER_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements
39065
39074
  /**
39066
39075
  * @public
39067
39076
  *
39077
+ * @slot ${`step-${index}`} - The ${`step-${index}`} slot.
39068
39078
  * @slot footer - Custom footer content below the stepper content
39069
39079
  * @slot steps - The stepper item elements (mosaik-stepper-item)
39070
39080
  * @slot - Default slot for selector item elements
@@ -39211,7 +39221,7 @@ declare class StepperComponent {
39211
39221
  /**
39212
39222
  * Declares the methods available on StepperComponent.
39213
39223
  */
39214
- type StepperMethodNames = 'onStepInvoked' | 'assignToSlot' | 'getSlotAssignments' | 'getSlotAssignmentsOf' | 'getSlotContent' | 'hasSlotContent' | 'hasSlot' | 'onSlotChanges' | 'select' | 'deselect' | 'resetSelection' | 'selectNext' | 'selectPrevious' | 'selectFirst' | 'selectLast';
39224
+ type StepperMethodNames = 'onSlotChanges' | 'assignToSlot' | 'getSlotAssignments' | 'getSlotAssignmentsOf' | 'getSlotContent' | 'hasSlotContent' | 'hasSlot' | 'select' | 'deselect' | 'resetSelection' | 'selectNext' | 'selectPrevious' | 'selectFirst' | 'selectLast';
39215
39225
  /**
39216
39226
  * Declares the methods interface for StepperComponent.
39217
39227
  */
@@ -39336,8 +39346,9 @@ declare const SUCCESS_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
39336
39346
  /**
39337
39347
  * @public
39338
39348
  *
39339
- * @slot - Default content area for additional success information or custom content
39349
+ * @slot - The default slot.
39340
39350
  * @slot actions - Action buttons for next steps or related operations after success
39351
+ * @slot header - The header slot.
39341
39352
  * @slot style - Custom styles injection slot for shadow DOM styling escape hatch
39342
39353
  */
39343
39354
  declare class SuccessStateComponent {