@breadstone/mosaik-elements-angular 0.0.147 → 0.0.148

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.
@@ -324,7 +324,7 @@ const ABSOLUTE_DEFAULT_PROPS = new InjectionToken('MOSAIK_ABSOLUTE_DEFAULT_PROPS
324
324
  /**
325
325
  * @public
326
326
  *
327
- * @slot - The default slot for placing child elements.
327
+ * @slot - The default slot for placing absolutely positioned child elements.
328
328
  */
329
329
  let AbsoluteComponent = class AbsoluteComponent {
330
330
  _element;
@@ -485,7 +485,7 @@ const ANCHOR_DEFAULT_PROPS = new InjectionToken('MOSAIK_ANCHOR_DEFAULT_PROPS');
485
485
  /**
486
486
  * @public
487
487
  *
488
- * @slot label - The slot for the label or text content of the Anchor.
488
+ * @slot label - The text content or elements to display as the link text
489
489
  */
490
490
  let AnchorComponent = class AnchorComponent {
491
491
  _element;
@@ -893,12 +893,12 @@ const APP_DEFAULT_PROPS = new InjectionToken('MOSAIK_APP_DEFAULT_PROPS');
893
893
  /**
894
894
  * @public
895
895
  *
896
- * @slot nav - The slot for navigation elements.
897
- * @slot menu - The slot for menu items.
898
- * @slot logo - The slot for the application logo or branding.
899
- * @slot actions - The slot for action buttons or icons.
900
- * @slot content - The main content area of the App.
901
- * @slot footer - The footer area of the App, typically used for additional information or links.
896
+ * @slot nav - Navigation drawer content area for primary navigation links and menu items
897
+ * @slot menu - Menu area for contextual actions and secondary navigation
898
+ * @slot logo - Application branding area for logos, titles, and identity elements
899
+ * @slot actions - Action buttons area for global application actions and controls
900
+ * @slot content - Main content area for primary application content and views
901
+ * @slot footer - Footer area for secondary information, links, and application metadata
902
902
  */
903
903
  let AppComponent = class AppComponent {
904
904
  _element;
@@ -2155,8 +2155,8 @@ const AVATAR_DEFAULT_PROPS = new InjectionToken('MOSAIK_AVATAR_DEFAULT_PROPS');
2155
2155
  /**
2156
2156
  * @public
2157
2157
  *
2158
- * @slot - The default slot for avatar text, commonly a name or initials.
2159
- * @slot badge - Used to provide a badge, such as a status badge.
2158
+ * @slot - Default content for avatar display (overrides automatic text/icon generation)
2159
+ * @slot badge - Status indicator or notification badge positioned on the avatar
2160
2160
  */
2161
2161
  let AvatarComponent = class AvatarComponent {
2162
2162
  _element;
@@ -4646,8 +4646,8 @@ const BUSY_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_BUSY_STATE_DEFAULT_P
4646
4646
  /**
4647
4647
  * @public
4648
4648
  *
4649
- * @slot - The default slot for placing additional content or elements related to the busy state.
4650
- * @slot actions - The actions slot for placing actionable elements such as buttons or links for user interaction.
4649
+ * @slot - Default content area for additional loading state information
4650
+ * @slot actions - Action buttons or controls available during loading (e.g., cancel operation)
4651
4651
  */
4652
4652
  let BusyStateComponent = class BusyStateComponent {
4653
4653
  _element;
@@ -5017,9 +5017,9 @@ const BUTTON_DEFAULT_PROPS = new InjectionToken('MOSAIK_BUTTON_DEFAULT_PROPS');
5017
5017
  /**
5018
5018
  * @public
5019
5019
  *
5020
- * @slot label - The label slot.
5021
- * @slot icon - The icon slot.
5022
- * @slot overlay - The overlay slot (useful for badge).
5020
+ * @slot label - The text content or label displayed on the button
5021
+ * @slot icon - The icon displayed alongside or instead of the label
5022
+ * @slot overlay - Additional overlay content such as badges or indicators
5023
5023
  */
5024
5024
  let ButtonComponent = class ButtonComponent {
5025
5025
  _element;
@@ -5659,6 +5659,46 @@ let CalendarItemComponent = class CalendarItemComponent {
5659
5659
  this._element.markers = value;
5660
5660
  });
5661
5661
  }
5662
+ get isRangeStart() {
5663
+ // @ts-ignore - temporary fix for the type error
5664
+ return this._element.isRangeStart;
5665
+ }
5666
+ set isRangeStart(value) {
5667
+ this._zone.runOutsideAngular(() => {
5668
+ // @ts-ignore - temporary fix for the type error
5669
+ this._element.isRangeStart = value;
5670
+ });
5671
+ }
5672
+ get isRangeMiddle() {
5673
+ // @ts-ignore - temporary fix for the type error
5674
+ return this._element.isRangeMiddle;
5675
+ }
5676
+ set isRangeMiddle(value) {
5677
+ this._zone.runOutsideAngular(() => {
5678
+ // @ts-ignore - temporary fix for the type error
5679
+ this._element.isRangeMiddle = value;
5680
+ });
5681
+ }
5682
+ get isRangeEnd() {
5683
+ // @ts-ignore - temporary fix for the type error
5684
+ return this._element.isRangeEnd;
5685
+ }
5686
+ set isRangeEnd(value) {
5687
+ this._zone.runOutsideAngular(() => {
5688
+ // @ts-ignore - temporary fix for the type error
5689
+ this._element.isRangeEnd = value;
5690
+ });
5691
+ }
5692
+ get isRangePreview() {
5693
+ // @ts-ignore - temporary fix for the type error
5694
+ return this._element.isRangePreview;
5695
+ }
5696
+ set isRangePreview(value) {
5697
+ this._zone.runOutsideAngular(() => {
5698
+ // @ts-ignore - temporary fix for the type error
5699
+ this._element.isRangePreview = value;
5700
+ });
5701
+ }
5662
5702
  get text() {
5663
5703
  // @ts-ignore - temporary fix for the type error
5664
5704
  return this._element.text;
@@ -5770,12 +5810,12 @@ let CalendarItemComponent = class CalendarItemComponent {
5770
5810
  }
5771
5811
  }
5772
5812
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: CalendarItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5773
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CalendarItemComponent, isStandalone: true, selector: "mosaik-calendar-item", inputs: { isSelected: "isSelected", isBlackout: "isBlackout", isSpecial: "isSpecial", isToday: "isToday", isWeekend: "isWeekend", isAdjacent: "isAdjacent", markers: "markers", text: "text", themeName: "themeName", appearance: "appearance", variant: "variant", disabled: "disabled", value: "value", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
5813
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CalendarItemComponent, isStandalone: true, selector: "mosaik-calendar-item", inputs: { isSelected: "isSelected", isBlackout: "isBlackout", isSpecial: "isSpecial", isToday: "isToday", isWeekend: "isWeekend", isAdjacent: "isAdjacent", markers: "markers", isRangeStart: "isRangeStart", isRangeMiddle: "isRangeMiddle", isRangeEnd: "isRangeEnd", isRangePreview: "isRangePreview", text: "text", themeName: "themeName", appearance: "appearance", variant: "variant", disabled: "disabled", value: "value", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
5774
5814
  };
5775
5815
  CalendarItemComponent = __decorate$3h([
5776
5816
  ProxyCmp({
5777
5817
  defineCustomElementFn: () => customElements.define('mosaik-calendar-item', CalendarItemElement),
5778
- inputs: ['isSelected', 'isBlackout', 'isSpecial', 'isToday', 'isWeekend', 'isAdjacent', 'markers', 'text', 'themeName', 'appearance', 'variant', 'disabled', 'value', 'isFocused', 'dir', 'lang'],
5818
+ inputs: ['isSelected', 'isBlackout', 'isSpecial', 'isToday', 'isWeekend', 'isAdjacent', 'markers', 'isRangeStart', 'isRangeMiddle', 'isRangeEnd', 'isRangePreview', 'text', 'themeName', 'appearance', 'variant', 'disabled', 'value', 'isFocused', 'dir', 'lang'],
5779
5819
  methods: ['hasVisibleFocusInTree', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
5780
5820
  }),
5781
5821
  __metadata$3h("design:paramtypes", [])
@@ -5787,7 +5827,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
5787
5827
  standalone: true,
5788
5828
  changeDetection: ChangeDetectionStrategy.OnPush,
5789
5829
  template: '<ng-content></ng-content>',
5790
- inputs: ['isSelected', 'isBlackout', 'isSpecial', 'isToday', 'isWeekend', 'isAdjacent', 'markers', 'text', 'themeName', 'appearance', 'variant', 'disabled', 'value', 'isFocused', 'dir', 'lang'],
5830
+ inputs: ['isSelected', 'isBlackout', 'isSpecial', 'isToday', 'isWeekend', 'isAdjacent', 'markers', 'isRangeStart', 'isRangeMiddle', 'isRangeEnd', 'isRangePreview', 'text', 'themeName', 'appearance', 'variant', 'disabled', 'value', 'isFocused', 'dir', 'lang'],
5791
5831
  outputs: ['connected', 'disconnected', 'changed']
5792
5832
  }]
5793
5833
  }], ctorParameters: () => [], propDecorators: { isSelected: [{
@@ -5804,6 +5844,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
5804
5844
  type: Input
5805
5845
  }], markers: [{
5806
5846
  type: Input
5847
+ }], isRangeStart: [{
5848
+ type: Input
5849
+ }], isRangeMiddle: [{
5850
+ type: Input
5851
+ }], isRangeEnd: [{
5852
+ type: Input
5853
+ }], isRangePreview: [{
5854
+ type: Input
5807
5855
  }], text: [{
5808
5856
  type: Input
5809
5857
  }], themeName: [{
@@ -6049,6 +6097,16 @@ let CalendarComponent = class CalendarComponent {
6049
6097
  this._element.on('changed', (e) => this.onEmit(this._changed, e));
6050
6098
  applyDefaults(this._element, inject(CALENDAR_DEFAULT_PROPS, { optional: true }) ?? {});
6051
6099
  }
6100
+ get sheets() {
6101
+ // @ts-ignore - temporary fix for the type error
6102
+ return this._element.sheets;
6103
+ }
6104
+ set sheets(value) {
6105
+ this._zone.runOutsideAngular(() => {
6106
+ // @ts-ignore - temporary fix for the type error
6107
+ this._element.sheets = value;
6108
+ });
6109
+ }
6052
6110
  get intl() {
6053
6111
  // @ts-ignore - temporary fix for the type error
6054
6112
  return this._element.intl;
@@ -6375,7 +6433,7 @@ let CalendarComponent = class CalendarComponent {
6375
6433
  }
6376
6434
  }
6377
6435
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: CalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6378
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CalendarComponent, isStandalone: true, selector: "mosaik-calendar", inputs: { intl: "intl", displayDate: "displayDate", displayDateStart: "displayDateStart", displayDateEnd: "displayDateEnd", header: "header", values: "values", view: "view", selectionMode: "selectionMode", blackoutDates: "blackoutDates", specialDates: "specialDates", minDate: "minDate", maxDate: "maxDate", firstDayOfWeek: "firstDayOfWeek", isTodayHighlighted: "isTodayHighlighted", isWeekendHighlighted: "isWeekendHighlighted", showWeekNumbers: "showWeekNumbers", showAdjacent: "showAdjacent", markerHandler: "markerHandler", themeName: "themeName", locale: "locale", appearance: "appearance", disabled: "disabled", invalid: "invalid", value: "value", orientation: "orientation", variant: "variant", fit: "fit", dir: "dir", lang: "lang" }, outputs: { dateChanged: "dateChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, providers: [
6436
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CalendarComponent, isStandalone: true, selector: "mosaik-calendar", inputs: { sheets: "sheets", intl: "intl", displayDate: "displayDate", displayDateStart: "displayDateStart", displayDateEnd: "displayDateEnd", header: "header", values: "values", view: "view", selectionMode: "selectionMode", blackoutDates: "blackoutDates", specialDates: "specialDates", minDate: "minDate", maxDate: "maxDate", firstDayOfWeek: "firstDayOfWeek", isTodayHighlighted: "isTodayHighlighted", isWeekendHighlighted: "isWeekendHighlighted", showWeekNumbers: "showWeekNumbers", showAdjacent: "showAdjacent", markerHandler: "markerHandler", themeName: "themeName", locale: "locale", appearance: "appearance", disabled: "disabled", invalid: "invalid", value: "value", orientation: "orientation", variant: "variant", fit: "fit", dir: "dir", lang: "lang" }, outputs: { dateChanged: "dateChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, providers: [
6379
6437
  {
6380
6438
  provide: NG_VALUE_ACCESSOR,
6381
6439
  useExisting: forwardRef(() => CalendarComponent),
@@ -6390,7 +6448,7 @@ let CalendarComponent = class CalendarComponent {
6390
6448
  CalendarComponent = __decorate$3f([
6391
6449
  ProxyCmp({
6392
6450
  defineCustomElementFn: () => customElements.define('mosaik-calendar', CalendarElement),
6393
- inputs: ['intl', 'displayDate', 'displayDateStart', 'displayDateEnd', 'header', 'values', 'view', 'selectionMode', 'blackoutDates', 'specialDates', 'minDate', 'maxDate', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'showWeekNumbers', 'showAdjacent', 'markerHandler', 'themeName', 'locale', 'appearance', 'disabled', 'invalid', 'value', 'orientation', 'variant', 'fit', 'dir', 'lang'],
6451
+ inputs: ['sheets', 'intl', 'displayDate', 'displayDateStart', 'displayDateEnd', 'header', 'values', 'view', 'selectionMode', 'blackoutDates', 'specialDates', 'minDate', 'maxDate', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'showWeekNumbers', 'showAdjacent', 'markerHandler', 'themeName', 'locale', 'appearance', 'disabled', 'invalid', 'value', 'orientation', 'variant', 'fit', 'dir', 'lang'],
6394
6452
  methods: ['reset', 'checkValidity', 'navigatePrevious', 'navigateNext', 'navigateToday', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
6395
6453
  }),
6396
6454
  __metadata$3f("design:paramtypes", [])
@@ -6402,7 +6460,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
6402
6460
  standalone: true,
6403
6461
  changeDetection: ChangeDetectionStrategy.OnPush,
6404
6462
  template: '<ng-content></ng-content>',
6405
- inputs: ['intl', 'displayDate', 'displayDateStart', 'displayDateEnd', 'header', 'values', 'view', 'selectionMode', 'blackoutDates', 'specialDates', 'minDate', 'maxDate', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'showWeekNumbers', 'showAdjacent', 'markerHandler', 'themeName', 'locale', 'appearance', 'disabled', 'invalid', 'value', 'orientation', 'variant', 'fit', 'dir', 'lang'],
6463
+ inputs: ['sheets', 'intl', 'displayDate', 'displayDateStart', 'displayDateEnd', 'header', 'values', 'view', 'selectionMode', 'blackoutDates', 'specialDates', 'minDate', 'maxDate', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'showWeekNumbers', 'showAdjacent', 'markerHandler', 'themeName', 'locale', 'appearance', 'disabled', 'invalid', 'value', 'orientation', 'variant', 'fit', 'dir', 'lang'],
6406
6464
  outputs: ['dateChanged', 'connected', 'disconnected', 'changed'],
6407
6465
  hostDirectives: [FormStatusDirective],
6408
6466
  providers: [
@@ -6417,7 +6475,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
6417
6475
  }
6418
6476
  ]
6419
6477
  }]
6420
- }], ctorParameters: () => [], propDecorators: { intl: [{
6478
+ }], ctorParameters: () => [], propDecorators: { sheets: [{
6479
+ type: Input
6480
+ }], intl: [{
6421
6481
  type: Input
6422
6482
  }], displayDate: [{
6423
6483
  type: Input
@@ -7831,12 +7891,12 @@ const CARD_DEFAULT_PROPS = new InjectionToken('MOSAIK_CARD_DEFAULT_PROPS');
7831
7891
  /**
7832
7892
  * @public
7833
7893
  *
7834
- * @slot cover - The slot for placing a cover image or graphic at the top of the card.
7835
- * @slot media - The slot for placing media content, such as images or videos.
7836
- * @slot header - The slot for placing header content, typically containing the title.
7837
- * @slot content - The slot for placing the main content of the card.
7838
- * @slot actions - The slot for placing action buttons related to the card.
7839
- * @slot footer - The slot for placing footer content, often for additional information or links.
7894
+ * @slot cover - Primary visual content like hero images or graphics positioned at the top
7895
+ * @slot media - Additional media content such as images, videos, or rich content
7896
+ * @slot header - Header section typically containing titles and navigation elements
7897
+ * @slot content - Main content body for text, descriptions, or detailed information
7898
+ * @slot actions - Action buttons or interactive elements for user engagement
7899
+ * @slot footer - Footer section for supplementary information, links, or metadata
7840
7900
  */
7841
7901
  let CardComponent = class CardComponent {
7842
7902
  _element;
@@ -8575,7 +8635,7 @@ const CAROUSEL_ITEM_DEFAULT_PROPS = new InjectionToken('MOSAIK_CAROUSEL_ITEM_DEF
8575
8635
  /**
8576
8636
  * @public
8577
8637
  *
8578
- *
8638
+ * @slot - Default content area for the carousel item's content
8579
8639
  */
8580
8640
  let CarouselItemComponent = class CarouselItemComponent {
8581
8641
  _element;
@@ -8776,7 +8836,7 @@ const CAROUSEL_DEFAULT_PROPS = new InjectionToken('MOSAIK_CAROUSEL_DEFAULT_PROPS
8776
8836
  /**
8777
8837
  * @public
8778
8838
  *
8779
- *
8839
+ * @slot - Default content area for carousel items and navigation elements
8780
8840
  */
8781
8841
  let CarouselComponent = class CarouselComponent {
8782
8842
  _element;
@@ -9037,8 +9097,8 @@ const CELL_GROUP_DEFAULT_PROPS = new InjectionToken('MOSAIK_CELL_GROUP_DEFAULT_P
9037
9097
  /**
9038
9098
  * @public
9039
9099
  *
9040
- * @slot header - Slot for the group header.
9041
- * @slot - Slot for the default content, typically cells.
9100
+ * @slot header - Header content area for group titles, descriptions, or section labels
9101
+ * @slot - Default content area for cell components and related content
9042
9102
  */
9043
9103
  let CellGroupComponent = class CellGroupComponent {
9044
9104
  _element;
@@ -9187,10 +9247,10 @@ const CELL_DEFAULT_PROPS = new InjectionToken('MOSAIK_CELL_DEFAULT_PROPS');
9187
9247
  /**
9188
9248
  * @public
9189
9249
  *
9190
- * @slot start - Slot for content to be displayed at the start of the cell.
9191
- * @slot label - Slot for the primary label content of the cell.
9192
- * @slot subLabel - Slot for additional label content or description.
9193
- * @slot end - Slot for content to be displayed at the end of the cell.
9250
+ * @slot start - Leading content area for icons, avatars, thumbnails, or visual indicators
9251
+ * @slot label - Primary content area for main text, titles, or primary information
9252
+ * @slot subLabel - Secondary content area for descriptions, metadata, or supplementary text
9253
+ * @slot end - Trailing content area for actions, status indicators, or secondary controls
9194
9254
  */
9195
9255
  let CellComponent = class CellComponent {
9196
9256
  _element;
@@ -9375,7 +9435,9 @@ const CHART_DEFAULT_PROPS = new InjectionToken('MOSAIK_CHART_DEFAULT_PROPS');
9375
9435
  /**
9376
9436
  * @public
9377
9437
  *
9378
- *
9438
+ * @slot - Default content area for chart data configuration and custom elements
9439
+ * @slot toolbar - Chart toolbar area for controls and actions
9440
+ * @slot legend - Custom legend area for chart series labels
9379
9441
  */
9380
9442
  let ChartComponent = class ChartComponent {
9381
9443
  _element;
@@ -12095,7 +12157,9 @@ const CHECKBOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_CHECKBOX_DEFAULT_PROPS
12095
12157
  /**
12096
12158
  * @public
12097
12159
  *
12098
- *
12160
+ * @slot checkmark - The checkmark slot.
12161
+ * @slot label - The label slot.
12162
+ * @slot hint - The hint slot.
12099
12163
  */
12100
12164
  let CheckboxComponent = class CheckboxComponent {
12101
12165
  _element;
@@ -12953,7 +13017,8 @@ const CHIP_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_CHIP_BOX_DEFAULT_PROPS
12953
13017
  /**
12954
13018
  * @public
12955
13019
  *
12956
- *
13020
+ * @slot prefix - Content placed before the chip collection.
13021
+ * @slot suffix - Content placed after the chip collection.
12957
13022
  */
12958
13023
  let ChipBoxComponent = class ChipBoxComponent {
12959
13024
  _element;
@@ -15451,7 +15516,8 @@ const COLOR_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_COLOR_BOX_DEFAULT_PRO
15451
15516
  /**
15452
15517
  * @public
15453
15518
  *
15454
- *
15519
+ * @slot prefix - Content placed before the input field.
15520
+ * @slot suffix - Content placed after the input field.
15455
15521
  */
15456
15522
  let ColorBoxComponent = class ColorBoxComponent {
15457
15523
  _element;
@@ -15957,7 +16023,9 @@ const COMBO_ITEM_DEFAULT_PROPS = new InjectionToken('MOSAIK_COMBO_ITEM_DEFAULT_P
15957
16023
  /**
15958
16024
  * @public
15959
16025
  *
15960
- *
16026
+ * @slot - Default content area for the option label and description
16027
+ * @slot prefix - Leading content (icons, avatars, indicators)
16028
+ * @slot suffix - Trailing content (checkmarks, badges, secondary actions)
15961
16029
  */
15962
16030
  let ComboItemComponent = class ComboItemComponent {
15963
16031
  _element;
@@ -16242,7 +16310,11 @@ const COMBO_DEFAULT_PROPS = new InjectionToken('MOSAIK_COMBO_DEFAULT_PROPS');
16242
16310
  /**
16243
16311
  * @public
16244
16312
  *
16245
- *
16313
+ * @slot - Default content area for combo items and options
16314
+ * @slot prefix - Leading content before the input (icons, labels)
16315
+ * @slot suffix - Trailing content after the input (actions, indicators)
16316
+ * @slot dropdown-header - Header content at the top of the dropdown
16317
+ * @slot dropdown-footer - Footer content at the bottom of the dropdown
16246
16318
  */
16247
16319
  let ComboComponent = class ComboComponent {
16248
16320
  _element;
@@ -16882,17 +16954,20 @@ const COMPOUND_BUTTON_DEFAULT_PROPS = new InjectionToken('MOSAIK_COMPOUND_BUTTON
16882
16954
  /**
16883
16955
  * @public
16884
16956
  *
16885
- * @slot icon - The slot for the button icon.
16886
- * @slot label - The slot for the button label.
16887
- * @slot overlay - The slot for the overlay content (useful for badges or additional information).
16888
- * @slot - The default slot for additional button content.
16889
- * @slot prefix - The slot for the prefix content.
16890
- * @slot suffix - The slot for the suffix content.
16891
- * @slot subLabel - The slot for the sub label content.
16957
+ * @slot icon - Primary icon content area for visual button identification
16958
+ * @slot label - Primary text content area for main button labeling
16959
+ * @slot overlay - Overlay content area for badges, notifications, or status indicators
16960
+ * @slot - Default content area for additional button content and elements
16961
+ * @slot prefix - Leading content area before the main label
16962
+ * @slot suffix - Trailing content area after the main label
16963
+ * @slot subLabel - Secondary text content area for descriptions or additional information
16892
16964
  */
16893
16965
  let CompoundButtonComponent = class CompoundButtonComponent {
16894
16966
  _element;
16895
16967
  _zone;
16968
+ _click;
16969
+ _focus;
16970
+ _blur;
16896
16971
  _connected;
16897
16972
  _disconnected;
16898
16973
  _changed;
@@ -16900,6 +16975,12 @@ let CompoundButtonComponent = class CompoundButtonComponent {
16900
16975
  inject(ChangeDetectorRef).detach();
16901
16976
  this._element = inject(ElementRef).nativeElement;
16902
16977
  this._zone = inject(NgZone);
16978
+ this._click = new EventEmitter();
16979
+ this._element.on('click', (e) => this.onEmit(this._click, e));
16980
+ this._focus = new EventEmitter();
16981
+ this._element.on('focus', (e) => this.onEmit(this._focus, e));
16982
+ this._blur = new EventEmitter();
16983
+ this._element.on('blur', (e) => this.onEmit(this._blur, e));
16903
16984
  this._connected = new EventEmitter();
16904
16985
  this._element.on('connected', (e) => this.onEmit(this._connected, e));
16905
16986
  this._disconnected = new EventEmitter();
@@ -17128,6 +17209,15 @@ let CompoundButtonComponent = class CompoundButtonComponent {
17128
17209
  this._element.lang = value;
17129
17210
  });
17130
17211
  }
17212
+ get click() {
17213
+ return this._click;
17214
+ }
17215
+ get focus() {
17216
+ return this._focus;
17217
+ }
17218
+ get blur() {
17219
+ return this._blur;
17220
+ }
17131
17221
  get connected() {
17132
17222
  return this._connected;
17133
17223
  }
@@ -17149,7 +17239,7 @@ let CompoundButtonComponent = class CompoundButtonComponent {
17149
17239
  }
17150
17240
  }
17151
17241
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: CompoundButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
17152
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CompoundButtonComponent, isStandalone: true, selector: "mosaik-compound-button", inputs: { subLabel: "subLabel", isNavigation: "isNavigation", themeName: "themeName", reverse: "reverse", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", fit: "fit", isBusy: "isBusy", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
17242
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: CompoundButtonComponent, isStandalone: true, selector: "mosaik-compound-button", inputs: { subLabel: "subLabel", isNavigation: "isNavigation", themeName: "themeName", reverse: "reverse", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", fit: "fit", isBusy: "isBusy", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { click: "click", focus: "focus", blur: "blur", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
17153
17243
  };
17154
17244
  CompoundButtonComponent = __decorate$2z([
17155
17245
  ProxyCmp({
@@ -17167,7 +17257,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
17167
17257
  changeDetection: ChangeDetectionStrategy.OnPush,
17168
17258
  template: '<ng-content></ng-content>',
17169
17259
  inputs: ['subLabel', 'isNavigation', 'themeName', 'reverse', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'fit', 'isBusy', 'label', 'icon', 'iconPosition', 'iconSize', 'type', 'variant', 'appearance', 'size', 'value', 'disabled', 'isFocused', 'dir', 'lang'],
17170
- outputs: ['connected', 'disconnected', 'changed']
17260
+ outputs: ['click', 'focus', 'blur', 'connected', 'disconnected', 'changed']
17171
17261
  }]
17172
17262
  }], ctorParameters: () => [], propDecorators: { subLabel: [{
17173
17263
  type: Input
@@ -17213,6 +17303,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
17213
17303
  type: Input
17214
17304
  }], lang: [{
17215
17305
  type: Input
17306
+ }], click: [{
17307
+ type: Output
17308
+ }], focus: [{
17309
+ type: Output
17310
+ }], blur: [{
17311
+ type: Output
17216
17312
  }], connected: [{
17217
17313
  type: Output
17218
17314
  }], disconnected: [{
@@ -17695,7 +17791,9 @@ const DATA_TABLE_DEFAULT_PROPS = new InjectionToken('MOSAIK_DATA_TABLE_DEFAULT_P
17695
17791
  /**
17696
17792
  * @public
17697
17793
  *
17698
- *
17794
+ * @slot - Default content area for custom table content and additional elements
17795
+ * @slot header - Table header area for titles, filters, and actions
17796
+ * @slot footer - Table footer area for pagination, totals, and summary information
17699
17797
  */
17700
17798
  let DataTableComponent = class DataTableComponent {
17701
17799
  _element;
@@ -17916,7 +18014,8 @@ const DATE_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_DATE_BOX_DEFAULT_PROPS
17916
18014
  /**
17917
18015
  * @public
17918
18016
  *
17919
- *
18017
+ * @slot prefix - Content placed before the input field.
18018
+ * @slot suffix - Content placed after the input field.
17920
18019
  */
17921
18020
  let DateBoxComponent = class DateBoxComponent {
17922
18021
  _element;
@@ -20294,11 +20393,11 @@ const DIALOG_DEFAULT_PROPS = new InjectionToken('MOSAIK_DIALOG_DEFAULT_PROPS');
20294
20393
  /**
20295
20394
  * @public
20296
20395
  *
20297
- * @slot - The default content slot.
20298
- * @slot header - The header slot.
20299
- * @slot footer - The footer slot.
20300
- * @slot content - The content slot.
20301
- * @slot actions - The actions slot.
20396
+ * @slot - Default content area for main dialog body
20397
+ * @slot header - Dialog header section for titles and controls
20398
+ * @slot footer - Dialog footer section for additional information
20399
+ * @slot content - Main content area for dialog body content
20400
+ * @slot actions - Action buttons and controls area
20302
20401
  */
20303
20402
  let DialogComponent = class DialogComponent {
20304
20403
  _element;
@@ -21165,7 +21264,7 @@ const DOCK_PANEL_DEFAULT_PROPS = new InjectionToken('MOSAIK_DOCK_PANEL_DEFAULT_P
21165
21264
  /**
21166
21265
  * @public
21167
21266
  *
21168
- * @slot - The default slot for child elements to be docked.
21267
+ * @slot - The default slot for child elements with dock positioning attributes.
21169
21268
  */
21170
21269
  let DockPanelComponent = class DockPanelComponent {
21171
21270
  _element;
@@ -23239,8 +23338,8 @@ const EMPTY_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_EMPTY_STATE_DEFAULT
23239
23338
  /**
23240
23339
  * @public
23241
23340
  *
23242
- * @slot - The default slot for placing additional content or elements related to the empty state.
23243
- * @slot actions - The actions slot for placing actionable elements such as buttons or links for user interaction.
23341
+ * @slot - Default content area for additional empty state information
23342
+ * @slot actions - Action buttons or links for user guidance and next steps
23244
23343
  */
23245
23344
  let EmptyStateComponent = class EmptyStateComponent {
23246
23345
  _element;
@@ -24276,8 +24375,8 @@ const ERROR_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_ERROR_STATE_DEFAULT
24276
24375
  /**
24277
24376
  * @public
24278
24377
  *
24279
- * @slot - The default slot for placing additional content or elements related to the error.
24280
- * @slot actions - The actions slot for placing actionable elements such as buttons or links for error resolution.
24378
+ * @slot - Default content area for additional error information or custom content
24379
+ * @slot actions - Action buttons for error recovery (retry, refresh, contact support, etc.)
24281
24380
  */
24282
24381
  let ErrorStateComponent = class ErrorStateComponent {
24283
24382
  _element;
@@ -25930,13 +26029,16 @@ const FLOATING_ACTION_BUTTON_DEFAULT_PROPS = new InjectionToken('MOSAIK_FLOATING
25930
26029
  /**
25931
26030
  * @public
25932
26031
  *
25933
- * @slot icon - The icon part.
25934
- * @slot label - The label part.
25935
- * @slot overlay - The overlay slot (useful for badges).
26032
+ * @slot icon - Icon content area for the primary visual indicator
26033
+ * @slot label - Optional text label for extended floating action buttons
26034
+ * @slot overlay - Overlay content area for badges, notifications, or status indicators
25936
26035
  */
25937
26036
  let FloatingActionButtonComponent = class FloatingActionButtonComponent {
25938
26037
  _element;
25939
26038
  _zone;
26039
+ _click;
26040
+ _focus;
26041
+ _blur;
25940
26042
  _connected;
25941
26043
  _disconnected;
25942
26044
  _changed;
@@ -25944,6 +26046,12 @@ let FloatingActionButtonComponent = class FloatingActionButtonComponent {
25944
26046
  inject(ChangeDetectorRef).detach();
25945
26047
  this._element = inject(ElementRef).nativeElement;
25946
26048
  this._zone = inject(NgZone);
26049
+ this._click = new EventEmitter();
26050
+ this._element.on('click', (e) => this.onEmit(this._click, e));
26051
+ this._focus = new EventEmitter();
26052
+ this._element.on('focus', (e) => this.onEmit(this._focus, e));
26053
+ this._blur = new EventEmitter();
26054
+ this._element.on('blur', (e) => this.onEmit(this._blur, e));
25947
26055
  this._connected = new EventEmitter();
25948
26056
  this._element.on('connected', (e) => this.onEmit(this._connected, e));
25949
26057
  this._disconnected = new EventEmitter();
@@ -26102,6 +26210,15 @@ let FloatingActionButtonComponent = class FloatingActionButtonComponent {
26102
26210
  this._element.lang = value;
26103
26211
  });
26104
26212
  }
26213
+ get click() {
26214
+ return this._click;
26215
+ }
26216
+ get focus() {
26217
+ return this._focus;
26218
+ }
26219
+ get blur() {
26220
+ return this._blur;
26221
+ }
26105
26222
  get connected() {
26106
26223
  return this._connected;
26107
26224
  }
@@ -26123,7 +26240,7 @@ let FloatingActionButtonComponent = class FloatingActionButtonComponent {
26123
26240
  }
26124
26241
  }
26125
26242
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: FloatingActionButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
26126
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: FloatingActionButtonComponent, isStandalone: true, selector: "mosaik-fab", inputs: { themeName: "themeName", isBusy: "isBusy", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26243
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: FloatingActionButtonComponent, isStandalone: true, selector: "mosaik-fab", inputs: { themeName: "themeName", isBusy: "isBusy", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { click: "click", focus: "focus", blur: "blur", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26127
26244
  };
26128
26245
  FloatingActionButtonComponent = __decorate$1_([
26129
26246
  ProxyCmp({
@@ -26141,7 +26258,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
26141
26258
  changeDetection: ChangeDetectionStrategy.OnPush,
26142
26259
  template: '<ng-content></ng-content>',
26143
26260
  inputs: ['themeName', 'isBusy', 'label', 'icon', 'iconPosition', 'iconSize', 'type', 'variant', 'appearance', 'size', 'value', 'disabled', 'isFocused', 'dir', 'lang'],
26144
- outputs: ['connected', 'disconnected', 'changed']
26261
+ outputs: ['click', 'focus', 'blur', 'connected', 'disconnected', 'changed']
26145
26262
  }]
26146
26263
  }], ctorParameters: () => [], propDecorators: { themeName: [{
26147
26264
  type: Input
@@ -26173,6 +26290,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
26173
26290
  type: Input
26174
26291
  }], lang: [{
26175
26292
  type: Input
26293
+ }], click: [{
26294
+ type: Output
26295
+ }], focus: [{
26296
+ type: Output
26297
+ }], blur: [{
26298
+ type: Output
26176
26299
  }], connected: [{
26177
26300
  type: Output
26178
26301
  }], disconnected: [{
@@ -26580,7 +26703,7 @@ const FILE_UPLOAD_DEFAULT_PROPS = new InjectionToken('MOSAIK_FILE_UPLOAD_DEFAULT
26580
26703
  /**
26581
26704
  * @public
26582
26705
  *
26583
- * @slot - The default slot for custom UI, such as buttons, instructions, or drop zones.
26706
+ * @slot - Default slot for custom UI elements like buttons or instructions.
26584
26707
  */
26585
26708
  let FileUploadComponent = class FileUploadComponent {
26586
26709
  _element;
@@ -28782,7 +28905,7 @@ const FORM_DEFAULT_PROPS = new InjectionToken('MOSAIK_FORM_DEFAULT_PROPS');
28782
28905
  /**
28783
28906
  * @public
28784
28907
  *
28785
- * @slot - The default slot where form controls can be placed.
28908
+ * @slot - Default content area for form controls and layout elements
28786
28909
  */
28787
28910
  let FormComponent = class FormComponent {
28788
28911
  _element;
@@ -29156,7 +29279,7 @@ const GRID_DEFAULT_PROPS = new InjectionToken('MOSAIK_GRID_DEFAULT_PROPS');
29156
29279
  /**
29157
29280
  * @public
29158
29281
  *
29159
- * @slot - The default slot.
29282
+ * @slot - The default slot for grid items.
29160
29283
  */
29161
29284
  let GridComponent = class GridComponent {
29162
29285
  _element;
@@ -29920,11 +30043,11 @@ const IMAGE_DEFAULT_PROPS = new InjectionToken('MOSAIK_IMAGE_DEFAULT_PROPS');
29920
30043
  /**
29921
30044
  * @public
29922
30045
  *
29923
- * @slot - The default content slot.
29924
- * @slot empty - The empty state slot.
29925
- * @slot failed - The empty state slot.
29926
- * @slot pending - The empty state slot.
29927
- * @slot legend - The legend slot.
30046
+ * @slot - Default content overlaid on the image
30047
+ * @slot empty - Content shown when no image source is provided
30048
+ * @slot failed - Content displayed when image loading fails
30049
+ * @slot pending - Content shown while image is loading
30050
+ * @slot legend - Caption or description content positioned around the image
29928
30051
  */
29929
30052
  let ImageComponent = class ImageComponent {
29930
30053
  _element;
@@ -31928,9 +32051,11 @@ const LIST_DEFAULT_PROPS = new InjectionToken('MOSAIK_LIST_DEFAULT_PROPS');
31928
32051
  /**
31929
32052
  * @public
31930
32053
  *
31931
- * @slot - The default slot.
31932
- * @slot filter - The filter slot.
31933
- * @slot empty - The empty slot.
32054
+ * @slot - Default content area for list items and groups
32055
+ * @slot filter - Filter controls and search functionality area
32056
+ * @slot empty - Empty state content when no items are available
32057
+ * @slot header - Header content above the list items
32058
+ * @slot footer - Footer content below the list items
31934
32059
  */
31935
32060
  let ListComponent = class ListComponent {
31936
32061
  _element;
@@ -32609,7 +32734,7 @@ const MASONRY_DEFAULT_PROPS = new InjectionToken('MOSAIK_MASONRY_DEFAULT_PROPS')
32609
32734
  /**
32610
32735
  * @public
32611
32736
  *
32612
- * @slot - The default slot.
32737
+ * @slot - The default slot for elements to be arranged in masonry layout.
32613
32738
  */
32614
32739
  let MasonryComponent = class MasonryComponent {
32615
32740
  _element;
@@ -34756,8 +34881,8 @@ const NUMBER_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_NUMBER_BOX_DEFAULT_P
34756
34881
  /**
34757
34882
  * @public
34758
34883
  *
34759
- * @slot prefix - The prefix slot.
34760
- * @slot suffix - The suffix slot.
34884
+ * @slot prefix - Content placed before the input field.
34885
+ * @slot suffix - Content placed after the input field.
34761
34886
  */
34762
34887
  let NumberBoxComponent = class NumberBoxComponent {
34763
34888
  _element;
@@ -35943,11 +36068,11 @@ const PAGE_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_DEFAULT_PROPS');
35943
36068
  /**
35944
36069
  * @public
35945
36070
  *
35946
- * @slot preHeader - The header of the page.
35947
- * @slot header - The header of the page.
35948
- * @slot preContent - The pre content of the page.
35949
- * @slot content - The content of the page.
35950
- * @slot footer - The footer of the page.
36071
+ * @slot preHeader - Content displayed before the main header (e.g., notifications, alerts)
36072
+ * @slot header - Primary page header content (e.g., navigation, title, actions)
36073
+ * @slot preContent - Content between header and main content (e.g., breadcrumbs, filters)
36074
+ * @slot content - Main page content area
36075
+ * @slot footer - Page footer content (e.g., copyright, links)
35951
36076
  */
35952
36077
  let PageComponent = class PageComponent {
35953
36078
  _element;
@@ -36490,7 +36615,8 @@ const PASSWORD_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_PASSWORD_BOX_DEFAU
36490
36615
  /**
36491
36616
  * @public
36492
36617
  *
36493
- *
36618
+ * @slot prefix - Content placed before the input field.
36619
+ * @slot suffix - Content placed after the input field.
36494
36620
  */
36495
36621
  let PasswordBoxComponent = class PasswordBoxComponent {
36496
36622
  _element;
@@ -37153,8 +37279,8 @@ const PERSONA_DEFAULT_PROPS = new InjectionToken('MOSAIK_PERSONA_DEFAULT_PROPS')
37153
37279
  /**
37154
37280
  * @public
37155
37281
  *
37156
- * @slot - The default slot for avatar text, commonly a name or initials.
37157
- * @slot badge - Used to provide a badge, such as a status badge.
37282
+ * @slot - Default content for avatar display (overrides automatic text/icon generation)
37283
+ * @slot badge - Status indicator or notification badge positioned on the avatar
37158
37284
  */
37159
37285
  let PersonaComponent = class PersonaComponent {
37160
37286
  _element;
@@ -39215,8 +39341,8 @@ const PROGRESS_RING_DEFAULT_PROPS = new InjectionToken('MOSAIK_PROGRESS_RING_DEF
39215
39341
  /**
39216
39342
  * @public
39217
39343
  *
39218
- * @slot label - The label slot.
39219
- * @slot hint - The hint slot.
39344
+ * @slot label - Text label content area for progress description or percentage display
39345
+ * @slot hint - Secondary text content area for additional progress information or status
39220
39346
  */
39221
39347
  let ProgressRingComponent = class ProgressRingComponent {
39222
39348
  _element;
@@ -39968,7 +40094,9 @@ const RADIO_DEFAULT_PROPS = new InjectionToken('MOSAIK_RADIO_DEFAULT_PROPS');
39968
40094
  /**
39969
40095
  * @public
39970
40096
  *
39971
- *
40097
+ * @slot checkmark - The checkmark slot.
40098
+ * @slot label - The label slot.
40099
+ * @slot hint - The hint slot.
39972
40100
  */
39973
40101
  let RadioComponent = class RadioComponent {
39974
40102
  _element;
@@ -42028,7 +42156,7 @@ const RIPPLE_DEFAULT_PROPS = new InjectionToken('MOSAIK_RIPPLE_DEFAULT_PROPS');
42028
42156
  /**
42029
42157
  * @public
42030
42158
  *
42031
- *
42159
+ * @slot - Default content area (typically empty as ripple is a visual effect overlay)
42032
42160
  */
42033
42161
  let RippleComponent = class RippleComponent {
42034
42162
  _element;
@@ -43021,8 +43149,8 @@ const SEARCH_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_SEARCH_BOX_DEFAULT_P
43021
43149
  /**
43022
43150
  * @public
43023
43151
  *
43024
- * @slot prefix - The prefix slot.
43025
- * @slot suffix - The suffix slot.
43152
+ * @slot prefix - Content placed before the search input.
43153
+ * @slot suffix - Content placed after the search input.
43026
43154
  */
43027
43155
  let SearchBoxComponent = class SearchBoxComponent {
43028
43156
  _element;
@@ -44392,10 +44520,10 @@ const SELECT_DEFAULT_PROPS = new InjectionToken('MOSAIK_SELECT_DEFAULT_PROPS');
44392
44520
  /**
44393
44521
  * @public
44394
44522
  *
44395
- * @slot - The default menu slot.
44396
- * @slot prefix - The prefix slot.
44397
- * @slot suffix - The suffix slot.
44398
- * @slot filter - The filter slot.
44523
+ * @slot prefix - Content placed before the input value.
44524
+ * @slot suffix - Content placed after the input value.
44525
+ * @slot filter - Custom filter input for the dropdown.
44526
+ * @slot - Default slot for select items and groups.
44399
44527
  */
44400
44528
  let SelectComponent = class SelectComponent {
44401
44529
  _element;
@@ -45556,8 +45684,8 @@ const SLIDER_DEFAULT_PROPS = new InjectionToken('MOSAIK_SLIDER_DEFAULT_PROPS');
45556
45684
  /**
45557
45685
  * @public
45558
45686
  *
45559
- * @slot prefix - The prefix slot.
45560
- * @slot suffix - The suffix slot.
45687
+ * @slot prefix - Content displayed before the slider track (e.g., min value label)
45688
+ * @slot suffix - Content displayed after the slider track (e.g., max value label)
45561
45689
  */
45562
45690
  let SliderComponent = class SliderComponent {
45563
45691
  _element;
@@ -47074,9 +47202,9 @@ const SPLIT_DEFAULT_PROPS = new InjectionToken('MOSAIK_SPLIT_DEFAULT_PROPS');
47074
47202
  /**
47075
47203
  * @public
47076
47204
  *
47077
- * @slot start - The start part.
47078
- * @slot end - The end part.
47079
- * @slot divider - The divider part.
47205
+ * @slot start - The primary content panel positioned at the beginning of the split
47206
+ * @slot end - The secondary content panel positioned at the end of the split
47207
+ * @slot thumb - Custom grip icon for the draggable divider (defaults to three dots icon)
47080
47208
  */
47081
47209
  let SplitComponent = class SplitComponent {
47082
47210
  _element;
@@ -47353,7 +47481,7 @@ const STACK_DEFAULT_PROPS = new InjectionToken('MOSAIK_STACK_DEFAULT_PROPS');
47353
47481
  /**
47354
47482
  * @public
47355
47483
  *
47356
- * @slot - The default slot.
47484
+ * @slot - Default content area for child elements to be arranged in stack layout
47357
47485
  */
47358
47486
  let StackComponent = class StackComponent {
47359
47487
  _element;
@@ -47735,8 +47863,8 @@ const SUCCESS_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_SUCCESS_STATE_DEF
47735
47863
  /**
47736
47864
  * @public
47737
47865
  *
47738
- * @slot - The default slot, used for displaying the success state content.
47739
- * @slot actions - The actions slot, used for displaying action buttons or links related to the success state.
47866
+ * @slot - Default content area for additional success information or custom content
47867
+ * @slot actions - Action buttons for next steps or related operations after success
47740
47868
  */
47741
47869
  let SuccessStateComponent = class SuccessStateComponent {
47742
47870
  _element;
@@ -50678,7 +50806,8 @@ const TEXT_DEFAULT_PROPS = new InjectionToken('MOSAIK_TEXT_DEFAULT_PROPS');
50678
50806
  /**
50679
50807
  * @public
50680
50808
  *
50681
- * @slot text - The text slot.
50809
+ * @slot text - Primary text content area for displaying formatted text
50810
+ * @slot - Default content area for text and inline elements
50682
50811
  */
50683
50812
  let TextComponent = class TextComponent {
50684
50813
  _element;
@@ -50949,6 +51078,8 @@ const TEXT_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_TEXT_BOX_DEFAULT_PROPS
50949
51078
  *
50950
51079
  * @slot prefix - The prefix slot.
50951
51080
  * @slot suffix - The suffix slot.
51081
+ * @slot label - The label slot.
51082
+ * @slot hint - The hint slot.
50952
51083
  */
50953
51084
  let TextBoxComponent = class TextBoxComponent {
50954
51085
  _element;
@@ -52439,7 +52570,8 @@ const TIME_BOX_DEFAULT_PROPS = new InjectionToken('MOSAIK_TIME_BOX_DEFAULT_PROPS
52439
52570
  /**
52440
52571
  * @public
52441
52572
  *
52442
- *
52573
+ * @slot prefix - Content placed before the input field.
52574
+ * @slot suffix - Content placed after the input field.
52443
52575
  */
52444
52576
  let TimeBoxComponent = class TimeBoxComponent {
52445
52577
  _element;
@@ -53362,7 +53494,7 @@ const TOGGLE_BUTTON_GROUP_DEFAULT_PROPS = new InjectionToken('MOSAIK_TOGGLE_BUTT
53362
53494
  /**
53363
53495
  * @public
53364
53496
  *
53365
- *
53497
+ * @slot - The default slot for toggle buttons.
53366
53498
  */
53367
53499
  let ToggleButtonGroupComponent = class ToggleButtonGroupComponent {
53368
53500
  _element;
@@ -53579,16 +53711,18 @@ const TOGGLE_BUTTON_DEFAULT_PROPS = new InjectionToken('MOSAIK_TOGGLE_BUTTON_DEF
53579
53711
  /**
53580
53712
  * @public
53581
53713
  *
53582
- * @slot label - The label slot.
53583
- * @slot icon - The icon slot.
53584
- * @slot overlay - The overlay slot (useful for badge).
53714
+ * @slot label - Text label content area for button identification
53715
+ * @slot icon - Icon content area for visual state representation
53716
+ * @slot overlay - Overlay content area for badges, notifications, or state indicators
53585
53717
  */
53586
53718
  let ToggleButtonComponent = class ToggleButtonComponent {
53587
53719
  _element;
53588
53720
  _zone;
53589
53721
  _accessor;
53722
+ _change;
53590
53723
  _checked;
53591
53724
  _unchecked;
53725
+ _click;
53592
53726
  _connected;
53593
53727
  _disconnected;
53594
53728
  _changed;
@@ -53598,10 +53732,14 @@ let ToggleButtonComponent = class ToggleButtonComponent {
53598
53732
  this._zone = inject(NgZone);
53599
53733
  this._accessor = toggleButtonElementValueAccessor(this._element);
53600
53734
  this._element.addController(this._accessor);
53735
+ this._change = new EventEmitter();
53736
+ this._element.on('change', (e) => this.onEmit(this._change, e));
53601
53737
  this._checked = new EventEmitter();
53602
53738
  this._element.on('checked', (e) => this.onEmit(this._checked, e));
53603
53739
  this._unchecked = new EventEmitter();
53604
53740
  this._element.on('unchecked', (e) => this.onEmit(this._unchecked, e));
53741
+ this._click = new EventEmitter();
53742
+ this._element.on('click', (e) => this.onEmit(this._click, e));
53605
53743
  this._connected = new EventEmitter();
53606
53744
  this._element.on('connected', (e) => this.onEmit(this._connected, e));
53607
53745
  this._disconnected = new EventEmitter();
@@ -53820,12 +53958,18 @@ let ToggleButtonComponent = class ToggleButtonComponent {
53820
53958
  this._element.lang = value;
53821
53959
  });
53822
53960
  }
53961
+ get change() {
53962
+ return this._change;
53963
+ }
53823
53964
  get checked() {
53824
53965
  return this._checked;
53825
53966
  }
53826
53967
  get unchecked() {
53827
53968
  return this._unchecked;
53828
53969
  }
53970
+ get click() {
53971
+ return this._click;
53972
+ }
53829
53973
  get connected() {
53830
53974
  return this._connected;
53831
53975
  }
@@ -53859,7 +54003,7 @@ let ToggleButtonComponent = class ToggleButtonComponent {
53859
54003
  }
53860
54004
  }
53861
54005
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ToggleButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53862
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ToggleButtonComponent, isStandalone: true, selector: "mosaik-toggle-button", inputs: { themeName: "themeName", reverse: "reverse", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", fit: "fit", isBusy: "isBusy", isChecked: "isChecked", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { checked: "checked", unchecked: "unchecked", connected: "connected", disconnected: "disconnected", changed: "changed" }, providers: [
54006
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ToggleButtonComponent, isStandalone: true, selector: "mosaik-toggle-button", inputs: { themeName: "themeName", reverse: "reverse", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", fit: "fit", isBusy: "isBusy", isChecked: "isChecked", label: "label", icon: "icon", iconPosition: "iconPosition", iconSize: "iconSize", type: "type", variant: "variant", appearance: "appearance", size: "size", value: "value", disabled: "disabled", isFocused: "isFocused", dir: "dir", lang: "lang" }, outputs: { change: "change", checked: "checked", unchecked: "unchecked", click: "click", connected: "connected", disconnected: "disconnected", changed: "changed" }, providers: [
53863
54007
  {
53864
54008
  provide: NG_VALUE_ACCESSOR,
53865
54009
  useExisting: forwardRef(() => ToggleButtonComponent),
@@ -53887,7 +54031,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
53887
54031
  changeDetection: ChangeDetectionStrategy.OnPush,
53888
54032
  template: '<ng-content></ng-content>',
53889
54033
  inputs: ['themeName', 'reverse', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'fit', 'isBusy', 'isChecked', 'label', 'icon', 'iconPosition', 'iconSize', 'type', 'variant', 'appearance', 'size', 'value', 'disabled', 'isFocused', 'dir', 'lang'],
53890
- outputs: ['checked', 'unchecked', 'connected', 'disconnected', 'changed'],
54034
+ outputs: ['change', 'checked', 'unchecked', 'click', 'connected', 'disconnected', 'changed'],
53891
54035
  hostDirectives: [FormStatusDirective],
53892
54036
  providers: [
53893
54037
  {
@@ -53943,10 +54087,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
53943
54087
  type: Input
53944
54088
  }], lang: [{
53945
54089
  type: Input
54090
+ }], change: [{
54091
+ type: Output
53946
54092
  }], checked: [{
53947
54093
  type: Output
53948
54094
  }], unchecked: [{
53949
54095
  type: Output
54096
+ }], click: [{
54097
+ type: Output
53950
54098
  }], connected: [{
53951
54099
  type: Output
53952
54100
  }], disconnected: [{
@@ -53987,8 +54135,10 @@ const TOGGLE_SWITCH_DEFAULT_PROPS = new InjectionToken('MOSAIK_TOGGLE_SWITCH_DEF
53987
54135
  /**
53988
54136
  * @public
53989
54137
  *
53990
- * @slot prefix - A slot for prefix content, typically used for icons or labels.
53991
- * @slot suffix - A slot for suffix content, typically used for additional information or icons.
54138
+ * @slot prefix - Content placed before the switch control.
54139
+ * @slot suffix - Content placed after the switch control.
54140
+ * @slot checkmark - Custom checkmark/switch indicator content.
54141
+ * @slot label - Custom label content.
53992
54142
  */
53993
54143
  let ToggleSwitchComponent = class ToggleSwitchComponent {
53994
54144
  _element;
@@ -54623,11 +54773,11 @@ const TOOLBAR_DEFAULT_PROPS = new InjectionToken('MOSAIK_TOOLBAR_DEFAULT_PROPS')
54623
54773
  /**
54624
54774
  * @public
54625
54775
  *
54626
- * @slot start - The content placed at the start of the toolbar.
54627
- * @slot - The default content in the toolbar.
54628
- * @slot title - The title of the toolbar.
54629
- * @slot subTitle - The subtitle of the toolbar.
54630
- * @slot end - The content placed at the end of the toolbar.
54776
+ * @slot start - Leading content area for navigation or primary actions
54777
+ * @slot - Default content slot for main toolbar controls
54778
+ * @slot title - Primary toolbar title or heading
54779
+ * @slot subTitle - Secondary title or subtitle text
54780
+ * @slot end - Trailing content area for secondary actions or controls
54631
54781
  */
54632
54782
  let ToolbarComponent = class ToolbarComponent {
54633
54783
  _element;
@@ -57268,7 +57418,7 @@ const WRAP_DEFAULT_PROPS = new InjectionToken('MOSAIK_WRAP_DEFAULT_PROPS');
57268
57418
  /**
57269
57419
  * @public
57270
57420
  *
57271
- *
57421
+ * @slot - The default slot for elements that will wrap based on available space.
57272
57422
  */
57273
57423
  let WrapComponent = class WrapComponent {
57274
57424
  _element;