@breadstone/mosaik-elements-angular 0.0.147 → 0.0.149
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 +10 -0
- package/fesm2022/mosaik-elements-angular.mjs +274 -124
- package/fesm2022/mosaik-elements-angular.mjs.map +1 -1
- package/index.d.ts +168 -116
- package/index.d.ts.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -317,7 +317,7 @@ declare const ABSOLUTE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
317
317
|
/**
|
|
318
318
|
* @public
|
|
319
319
|
*
|
|
320
|
-
* @slot - The default slot for placing child elements.
|
|
320
|
+
* @slot - The default slot for placing absolutely positioned child elements.
|
|
321
321
|
*/
|
|
322
322
|
declare class AbsoluteComponent {
|
|
323
323
|
private readonly _element;
|
|
@@ -369,7 +369,7 @@ declare const ANCHOR_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
369
369
|
/**
|
|
370
370
|
* @public
|
|
371
371
|
*
|
|
372
|
-
* @slot label - The
|
|
372
|
+
* @slot label - The text content or elements to display as the link text
|
|
373
373
|
*/
|
|
374
374
|
declare class AnchorComponent {
|
|
375
375
|
private readonly _element;
|
|
@@ -489,12 +489,12 @@ declare const APP_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fou
|
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
491
491
|
*
|
|
492
|
-
* @slot nav -
|
|
493
|
-
* @slot menu -
|
|
494
|
-
* @slot logo -
|
|
495
|
-
* @slot actions -
|
|
496
|
-
* @slot content -
|
|
497
|
-
* @slot footer -
|
|
492
|
+
* @slot nav - Navigation drawer content area for primary navigation links and menu items
|
|
493
|
+
* @slot menu - Menu area for contextual actions and secondary navigation
|
|
494
|
+
* @slot logo - Application branding area for logos, titles, and identity elements
|
|
495
|
+
* @slot actions - Action buttons area for global application actions and controls
|
|
496
|
+
* @slot content - Main content area for primary application content and views
|
|
497
|
+
* @slot footer - Footer area for secondary information, links, and application metadata
|
|
498
498
|
*/
|
|
499
499
|
declare class AppComponent {
|
|
500
500
|
private readonly _element;
|
|
@@ -860,8 +860,8 @@ declare const AVATAR_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
860
860
|
/**
|
|
861
861
|
* @public
|
|
862
862
|
*
|
|
863
|
-
* @slot -
|
|
864
|
-
* @slot badge -
|
|
863
|
+
* @slot - Default content for avatar display (overrides automatic text/icon generation)
|
|
864
|
+
* @slot badge - Status indicator or notification badge positioned on the avatar
|
|
865
865
|
*/
|
|
866
866
|
declare class AvatarComponent implements ControlValueAccessor {
|
|
867
867
|
private readonly _element;
|
|
@@ -1560,8 +1560,8 @@ declare const BUSY_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
1560
1560
|
/**
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*
|
|
1563
|
-
* @slot -
|
|
1564
|
-
* @slot actions -
|
|
1563
|
+
* @slot - Default content area for additional loading state information
|
|
1564
|
+
* @slot actions - Action buttons or controls available during loading (e.g., cancel operation)
|
|
1565
1565
|
*/
|
|
1566
1566
|
declare class BusyStateComponent {
|
|
1567
1567
|
private readonly _element;
|
|
@@ -1673,9 +1673,9 @@ declare const BUTTON_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
1673
1673
|
/**
|
|
1674
1674
|
* @public
|
|
1675
1675
|
*
|
|
1676
|
-
* @slot label - The label
|
|
1677
|
-
* @slot icon - The icon
|
|
1678
|
-
* @slot overlay -
|
|
1676
|
+
* @slot label - The text content or label displayed on the button
|
|
1677
|
+
* @slot icon - The icon displayed alongside or instead of the label
|
|
1678
|
+
* @slot overlay - Additional overlay content such as badges or indicators
|
|
1679
1679
|
*/
|
|
1680
1680
|
declare class ButtonComponent {
|
|
1681
1681
|
private readonly _element;
|
|
@@ -1840,6 +1840,14 @@ declare class CalendarItemComponent {
|
|
|
1840
1840
|
set isAdjacent(value: CalendarItemElement['isAdjacent']);
|
|
1841
1841
|
get markers(): CalendarItemElement['markers'];
|
|
1842
1842
|
set markers(value: CalendarItemElement['markers']);
|
|
1843
|
+
get isRangeStart(): CalendarItemElement['isRangeStart'];
|
|
1844
|
+
set isRangeStart(value: CalendarItemElement['isRangeStart']);
|
|
1845
|
+
get isRangeMiddle(): CalendarItemElement['isRangeMiddle'];
|
|
1846
|
+
set isRangeMiddle(value: CalendarItemElement['isRangeMiddle']);
|
|
1847
|
+
get isRangeEnd(): CalendarItemElement['isRangeEnd'];
|
|
1848
|
+
set isRangeEnd(value: CalendarItemElement['isRangeEnd']);
|
|
1849
|
+
get isRangePreview(): CalendarItemElement['isRangePreview'];
|
|
1850
|
+
set isRangePreview(value: CalendarItemElement['isRangePreview']);
|
|
1843
1851
|
get text(): CalendarItemElement['text'];
|
|
1844
1852
|
set text(value: CalendarItemElement['text']);
|
|
1845
1853
|
get themeName(): CalendarItemElement['themeName'];
|
|
@@ -1864,7 +1872,7 @@ declare class CalendarItemComponent {
|
|
|
1864
1872
|
invoke<TMethod extends CalendarItemMethodNames>(method: TMethod, ...args: Parameters<CalendarItemComponentMethods[TMethod]>): ReturnType<CalendarItemComponentMethods[TMethod]>;
|
|
1865
1873
|
private onEmit;
|
|
1866
1874
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarItemComponent, never>;
|
|
1867
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarItemComponent, "mosaik-calendar-item", never, { "isSelected": { "alias": "isSelected"; "required": false; }; "isBlackout": { "alias": "isBlackout"; "required": false; }; "isSpecial": { "alias": "isSpecial"; "required": false; }; "isToday": { "alias": "isToday"; "required": false; }; "isWeekend": { "alias": "isWeekend"; "required": false; }; "isAdjacent": { "alias": "isAdjacent"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "text": { "alias": "text"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
1875
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarItemComponent, "mosaik-calendar-item", never, { "isSelected": { "alias": "isSelected"; "required": false; }; "isBlackout": { "alias": "isBlackout"; "required": false; }; "isSpecial": { "alias": "isSpecial"; "required": false; }; "isToday": { "alias": "isToday"; "required": false; }; "isWeekend": { "alias": "isWeekend"; "required": false; }; "isAdjacent": { "alias": "isAdjacent"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "isRangeStart": { "alias": "isRangeStart"; "required": false; }; "isRangeMiddle": { "alias": "isRangeMiddle"; "required": false; }; "isRangeEnd": { "alias": "isRangeEnd"; "required": false; }; "isRangePreview": { "alias": "isRangePreview"; "required": false; }; "text": { "alias": "text"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
1868
1876
|
}
|
|
1869
1877
|
/**
|
|
1870
1878
|
* Declares the methods available on CalendarItemComponent.
|
|
@@ -1954,6 +1962,8 @@ declare class CalendarComponent implements ControlValueAccessor {
|
|
|
1954
1962
|
private readonly _disconnected;
|
|
1955
1963
|
private readonly _changed;
|
|
1956
1964
|
constructor();
|
|
1965
|
+
get sheets(): CalendarElement['sheets'];
|
|
1966
|
+
set sheets(value: CalendarElement['sheets']);
|
|
1957
1967
|
get intl(): CalendarElement['intl'];
|
|
1958
1968
|
set intl(value: CalendarElement['intl']);
|
|
1959
1969
|
get displayDate(): CalendarElement['displayDate'];
|
|
@@ -2023,7 +2033,7 @@ declare class CalendarComponent implements ControlValueAccessor {
|
|
|
2023
2033
|
invoke<TMethod extends CalendarMethodNames>(method: TMethod, ...args: Parameters<CalendarComponentMethods[TMethod]>): ReturnType<CalendarComponentMethods[TMethod]>;
|
|
2024
2034
|
private onEmit;
|
|
2025
2035
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
2026
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "mosaik-calendar", never, { "intl": { "alias": "intl"; "required": false; }; "displayDate": { "alias": "displayDate"; "required": false; }; "displayDateStart": { "alias": "displayDateStart"; "required": false; }; "displayDateEnd": { "alias": "displayDateEnd"; "required": false; }; "header": { "alias": "header"; "required": false; }; "values": { "alias": "values"; "required": false; }; "view": { "alias": "view"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "blackoutDates": { "alias": "blackoutDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "isTodayHighlighted": { "alias": "isTodayHighlighted"; "required": false; }; "isWeekendHighlighted": { "alias": "isWeekendHighlighted"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "showAdjacent": { "alias": "showAdjacent"; "required": false; }; "markerHandler": { "alias": "markerHandler"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "value": { "alias": "value"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "dateChanged": "dateChanged"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, [{ directive: typeof FormStatusDirective; inputs: {}; outputs: {}; }]>;
|
|
2036
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "mosaik-calendar", never, { "sheets": { "alias": "sheets"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "displayDate": { "alias": "displayDate"; "required": false; }; "displayDateStart": { "alias": "displayDateStart"; "required": false; }; "displayDateEnd": { "alias": "displayDateEnd"; "required": false; }; "header": { "alias": "header"; "required": false; }; "values": { "alias": "values"; "required": false; }; "view": { "alias": "view"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "blackoutDates": { "alias": "blackoutDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "isTodayHighlighted": { "alias": "isTodayHighlighted"; "required": false; }; "isWeekendHighlighted": { "alias": "isWeekendHighlighted"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "showAdjacent": { "alias": "showAdjacent"; "required": false; }; "markerHandler": { "alias": "markerHandler"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "value": { "alias": "value"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "dateChanged": "dateChanged"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, [{ directive: typeof FormStatusDirective; inputs: {}; outputs: {}; }]>;
|
|
2027
2037
|
}
|
|
2028
2038
|
/**
|
|
2029
2039
|
* Declares the methods available on CalendarComponent.
|
|
@@ -2455,12 +2465,12 @@ declare const CARD_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
2455
2465
|
/**
|
|
2456
2466
|
* @public
|
|
2457
2467
|
*
|
|
2458
|
-
* @slot cover -
|
|
2459
|
-
* @slot media -
|
|
2460
|
-
* @slot header -
|
|
2461
|
-
* @slot content -
|
|
2462
|
-
* @slot actions -
|
|
2463
|
-
* @slot footer -
|
|
2468
|
+
* @slot cover - Primary visual content like hero images or graphics positioned at the top
|
|
2469
|
+
* @slot media - Additional media content such as images, videos, or rich content
|
|
2470
|
+
* @slot header - Header section typically containing titles and navigation elements
|
|
2471
|
+
* @slot content - Main content body for text, descriptions, or detailed information
|
|
2472
|
+
* @slot actions - Action buttons or interactive elements for user engagement
|
|
2473
|
+
* @slot footer - Footer section for supplementary information, links, or metadata
|
|
2464
2474
|
*/
|
|
2465
2475
|
declare class CardComponent {
|
|
2466
2476
|
private readonly _element;
|
|
@@ -2662,7 +2672,7 @@ declare const CAROUSEL_ITEM_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
|
|
|
2662
2672
|
/**
|
|
2663
2673
|
* @public
|
|
2664
2674
|
*
|
|
2665
|
-
*
|
|
2675
|
+
* @slot - Default content area for the carousel item's content
|
|
2666
2676
|
*/
|
|
2667
2677
|
declare class CarouselItemComponent {
|
|
2668
2678
|
private readonly _element;
|
|
@@ -2722,7 +2732,7 @@ declare const CAROUSEL_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
2722
2732
|
/**
|
|
2723
2733
|
* @public
|
|
2724
2734
|
*
|
|
2725
|
-
*
|
|
2735
|
+
* @slot - Default content area for carousel items and navigation elements
|
|
2726
2736
|
*/
|
|
2727
2737
|
declare class CarouselComponent {
|
|
2728
2738
|
private readonly _element;
|
|
@@ -2792,8 +2802,8 @@ declare const CELL_GROUP_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
2792
2802
|
/**
|
|
2793
2803
|
* @public
|
|
2794
2804
|
*
|
|
2795
|
-
* @slot header -
|
|
2796
|
-
* @slot -
|
|
2805
|
+
* @slot header - Header content area for group titles, descriptions, or section labels
|
|
2806
|
+
* @slot - Default content area for cell components and related content
|
|
2797
2807
|
*/
|
|
2798
2808
|
declare class CellGroupComponent {
|
|
2799
2809
|
private readonly _element;
|
|
@@ -2843,10 +2853,10 @@ declare const CELL_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
2843
2853
|
/**
|
|
2844
2854
|
* @public
|
|
2845
2855
|
*
|
|
2846
|
-
* @slot start -
|
|
2847
|
-
* @slot label -
|
|
2848
|
-
* @slot subLabel -
|
|
2849
|
-
* @slot end -
|
|
2856
|
+
* @slot start - Leading content area for icons, avatars, thumbnails, or visual indicators
|
|
2857
|
+
* @slot label - Primary content area for main text, titles, or primary information
|
|
2858
|
+
* @slot subLabel - Secondary content area for descriptions, metadata, or supplementary text
|
|
2859
|
+
* @slot end - Trailing content area for actions, status indicators, or secondary controls
|
|
2850
2860
|
*/
|
|
2851
2861
|
declare class CellComponent {
|
|
2852
2862
|
private readonly _element;
|
|
@@ -2902,7 +2912,9 @@ declare const CHART_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
2902
2912
|
/**
|
|
2903
2913
|
* @public
|
|
2904
2914
|
*
|
|
2905
|
-
*
|
|
2915
|
+
* @slot - Default content area for chart data configuration and custom elements
|
|
2916
|
+
* @slot toolbar - Chart toolbar area for controls and actions
|
|
2917
|
+
* @slot legend - Custom legend area for chart series labels
|
|
2906
2918
|
*/
|
|
2907
2919
|
declare class ChartComponent {
|
|
2908
2920
|
private readonly _element;
|
|
@@ -3639,7 +3651,9 @@ declare const CHECKBOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
3639
3651
|
/**
|
|
3640
3652
|
* @public
|
|
3641
3653
|
*
|
|
3642
|
-
*
|
|
3654
|
+
* @slot checkmark - The checkmark slot.
|
|
3655
|
+
* @slot label - The label slot.
|
|
3656
|
+
* @slot hint - The hint slot.
|
|
3643
3657
|
*/
|
|
3644
3658
|
declare class CheckboxComponent implements ControlValueAccessor {
|
|
3645
3659
|
private readonly _element;
|
|
@@ -3862,7 +3876,8 @@ declare const CHIP_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
3862
3876
|
/**
|
|
3863
3877
|
* @public
|
|
3864
3878
|
*
|
|
3865
|
-
*
|
|
3879
|
+
* @slot prefix - Content placed before the chip collection.
|
|
3880
|
+
* @slot suffix - Content placed after the chip collection.
|
|
3866
3881
|
*/
|
|
3867
3882
|
declare class ChipBoxComponent implements ControlValueAccessor {
|
|
3868
3883
|
private readonly _element;
|
|
@@ -4559,7 +4574,8 @@ declare const COLOR_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elemen
|
|
|
4559
4574
|
/**
|
|
4560
4575
|
* @public
|
|
4561
4576
|
*
|
|
4562
|
-
*
|
|
4577
|
+
* @slot prefix - Content placed before the input field.
|
|
4578
|
+
* @slot suffix - Content placed after the input field.
|
|
4563
4579
|
*/
|
|
4564
4580
|
declare class ColorBoxComponent implements ControlValueAccessor {
|
|
4565
4581
|
private readonly _element;
|
|
@@ -4668,7 +4684,9 @@ declare const COMBO_ITEM_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
4668
4684
|
/**
|
|
4669
4685
|
* @public
|
|
4670
4686
|
*
|
|
4671
|
-
*
|
|
4687
|
+
* @slot - Default content area for the option label and description
|
|
4688
|
+
* @slot prefix - Leading content (icons, avatars, indicators)
|
|
4689
|
+
* @slot suffix - Trailing content (checkmarks, badges, secondary actions)
|
|
4672
4690
|
*/
|
|
4673
4691
|
declare class ComboItemComponent {
|
|
4674
4692
|
private readonly _element;
|
|
@@ -4742,7 +4760,11 @@ declare const COMBO_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
4742
4760
|
/**
|
|
4743
4761
|
* @public
|
|
4744
4762
|
*
|
|
4745
|
-
*
|
|
4763
|
+
* @slot - Default content area for combo items and options
|
|
4764
|
+
* @slot prefix - Leading content before the input (icons, labels)
|
|
4765
|
+
* @slot suffix - Trailing content after the input (actions, indicators)
|
|
4766
|
+
* @slot dropdown-header - Header content at the top of the dropdown
|
|
4767
|
+
* @slot dropdown-footer - Footer content at the bottom of the dropdown
|
|
4746
4768
|
*/
|
|
4747
4769
|
declare class ComboComponent implements ControlValueAccessor {
|
|
4748
4770
|
private readonly _element;
|
|
@@ -4904,17 +4926,20 @@ declare const COMPOUND_BUTTON_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_
|
|
|
4904
4926
|
/**
|
|
4905
4927
|
* @public
|
|
4906
4928
|
*
|
|
4907
|
-
* @slot icon -
|
|
4908
|
-
* @slot label -
|
|
4909
|
-
* @slot overlay -
|
|
4910
|
-
* @slot -
|
|
4911
|
-
* @slot prefix -
|
|
4912
|
-
* @slot suffix -
|
|
4913
|
-
* @slot subLabel -
|
|
4929
|
+
* @slot icon - Primary icon content area for visual button identification
|
|
4930
|
+
* @slot label - Primary text content area for main button labeling
|
|
4931
|
+
* @slot overlay - Overlay content area for badges, notifications, or status indicators
|
|
4932
|
+
* @slot - Default content area for additional button content and elements
|
|
4933
|
+
* @slot prefix - Leading content area before the main label
|
|
4934
|
+
* @slot suffix - Trailing content area after the main label
|
|
4935
|
+
* @slot subLabel - Secondary text content area for descriptions or additional information
|
|
4914
4936
|
*/
|
|
4915
4937
|
declare class CompoundButtonComponent {
|
|
4916
4938
|
private readonly _element;
|
|
4917
4939
|
private readonly _zone;
|
|
4940
|
+
private readonly _click;
|
|
4941
|
+
private readonly _focus;
|
|
4942
|
+
private readonly _blur;
|
|
4918
4943
|
private readonly _connected;
|
|
4919
4944
|
private readonly _disconnected;
|
|
4920
4945
|
private readonly _changed;
|
|
@@ -4963,13 +4988,16 @@ declare class CompoundButtonComponent {
|
|
|
4963
4988
|
set dir(value: CompoundButtonElement['dir']);
|
|
4964
4989
|
get lang(): CompoundButtonElement['lang'];
|
|
4965
4990
|
set lang(value: CompoundButtonElement['lang']);
|
|
4991
|
+
get click(): EventEmitter<unknown>;
|
|
4992
|
+
get focus(): EventEmitter<unknown>;
|
|
4993
|
+
get blur(): EventEmitter<unknown>;
|
|
4966
4994
|
get connected(): EventEmitter<unknown>;
|
|
4967
4995
|
get disconnected(): EventEmitter<unknown>;
|
|
4968
4996
|
get changed(): EventEmitter<unknown>;
|
|
4969
4997
|
invoke<TMethod extends CompoundButtonMethodNames>(method: TMethod, ...args: Parameters<CompoundButtonComponentMethods[TMethod]>): ReturnType<CompoundButtonComponentMethods[TMethod]>;
|
|
4970
4998
|
private onEmit;
|
|
4971
4999
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompoundButtonComponent, never>;
|
|
4972
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CompoundButtonComponent, "mosaik-compound-button", never, { "subLabel": { "alias": "subLabel"; "required": false; }; "isNavigation": { "alias": "isNavigation"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "horizontalContentAlignment": { "alias": "horizontalContentAlignment"; "required": false; }; "verticalContentAlignment": { "alias": "verticalContentAlignment"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
5000
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CompoundButtonComponent, "mosaik-compound-button", never, { "subLabel": { "alias": "subLabel"; "required": false; }; "isNavigation": { "alias": "isNavigation"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "horizontalContentAlignment": { "alias": "horizontalContentAlignment"; "required": false; }; "verticalContentAlignment": { "alias": "verticalContentAlignment"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "click": "click"; "focus": "focus"; "blur": "blur"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
4973
5001
|
}
|
|
4974
5002
|
/**
|
|
4975
5003
|
* Declares the methods available on CompoundButtonComponent.
|
|
@@ -5122,7 +5150,9 @@ declare const DATA_TABLE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
5122
5150
|
/**
|
|
5123
5151
|
* @public
|
|
5124
5152
|
*
|
|
5125
|
-
*
|
|
5153
|
+
* @slot - Default content area for custom table content and additional elements
|
|
5154
|
+
* @slot header - Table header area for titles, filters, and actions
|
|
5155
|
+
* @slot footer - Table footer area for pagination, totals, and summary information
|
|
5126
5156
|
*/
|
|
5127
5157
|
declare class DataTableComponent {
|
|
5128
5158
|
private readonly _element;
|
|
@@ -5184,7 +5214,8 @@ declare const DATE_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
5184
5214
|
/**
|
|
5185
5215
|
* @public
|
|
5186
5216
|
*
|
|
5187
|
-
*
|
|
5217
|
+
* @slot prefix - Content placed before the input field.
|
|
5218
|
+
* @slot suffix - Content placed after the input field.
|
|
5188
5219
|
*/
|
|
5189
5220
|
declare class DateBoxComponent implements ControlValueAccessor {
|
|
5190
5221
|
private readonly _element;
|
|
@@ -5786,11 +5817,11 @@ declare const DIALOG_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
5786
5817
|
/**
|
|
5787
5818
|
* @public
|
|
5788
5819
|
*
|
|
5789
|
-
* @slot -
|
|
5790
|
-
* @slot header -
|
|
5791
|
-
* @slot footer -
|
|
5792
|
-
* @slot content -
|
|
5793
|
-
* @slot actions -
|
|
5820
|
+
* @slot - Default content area for main dialog body
|
|
5821
|
+
* @slot header - Dialog header section for titles and controls
|
|
5822
|
+
* @slot footer - Dialog footer section for additional information
|
|
5823
|
+
* @slot content - Main content area for dialog body content
|
|
5824
|
+
* @slot actions - Action buttons and controls area
|
|
5794
5825
|
*/
|
|
5795
5826
|
declare class DialogComponent {
|
|
5796
5827
|
private readonly _element;
|
|
@@ -6039,7 +6070,7 @@ declare const DOCK_PANEL_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
6039
6070
|
/**
|
|
6040
6071
|
* @public
|
|
6041
6072
|
*
|
|
6042
|
-
* @slot - The default slot for child elements
|
|
6073
|
+
* @slot - The default slot for child elements with dock positioning attributes.
|
|
6043
6074
|
*/
|
|
6044
6075
|
declare class DockPanelComponent {
|
|
6045
6076
|
private readonly _element;
|
|
@@ -6618,8 +6649,8 @@ declare const EMPTY_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elem
|
|
|
6618
6649
|
/**
|
|
6619
6650
|
* @public
|
|
6620
6651
|
*
|
|
6621
|
-
* @slot -
|
|
6622
|
-
* @slot actions -
|
|
6652
|
+
* @slot - Default content area for additional empty state information
|
|
6653
|
+
* @slot actions - Action buttons or links for user guidance and next steps
|
|
6623
6654
|
*/
|
|
6624
6655
|
declare class EmptyStateComponent {
|
|
6625
6656
|
private readonly _element;
|
|
@@ -6893,8 +6924,8 @@ declare const ERROR_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elem
|
|
|
6893
6924
|
/**
|
|
6894
6925
|
* @public
|
|
6895
6926
|
*
|
|
6896
|
-
* @slot -
|
|
6897
|
-
* @slot actions -
|
|
6927
|
+
* @slot - Default content area for additional error information or custom content
|
|
6928
|
+
* @slot actions - Action buttons for error recovery (retry, refresh, contact support, etc.)
|
|
6898
6929
|
*/
|
|
6899
6930
|
declare class ErrorStateComponent {
|
|
6900
6931
|
private readonly _element;
|
|
@@ -7381,13 +7412,16 @@ declare const FLOATING_ACTION_BUTTON_DEFAULT_PROPS: InjectionToken<Partial<libs_
|
|
|
7381
7412
|
/**
|
|
7382
7413
|
* @public
|
|
7383
7414
|
*
|
|
7384
|
-
* @slot icon -
|
|
7385
|
-
* @slot label -
|
|
7386
|
-
* @slot overlay -
|
|
7415
|
+
* @slot icon - Icon content area for the primary visual indicator
|
|
7416
|
+
* @slot label - Optional text label for extended floating action buttons
|
|
7417
|
+
* @slot overlay - Overlay content area for badges, notifications, or status indicators
|
|
7387
7418
|
*/
|
|
7388
7419
|
declare class FloatingActionButtonComponent {
|
|
7389
7420
|
private readonly _element;
|
|
7390
7421
|
private readonly _zone;
|
|
7422
|
+
private readonly _click;
|
|
7423
|
+
private readonly _focus;
|
|
7424
|
+
private readonly _blur;
|
|
7391
7425
|
private readonly _connected;
|
|
7392
7426
|
private readonly _disconnected;
|
|
7393
7427
|
private readonly _changed;
|
|
@@ -7422,13 +7456,16 @@ declare class FloatingActionButtonComponent {
|
|
|
7422
7456
|
set dir(value: FloatingActionButtonElement['dir']);
|
|
7423
7457
|
get lang(): FloatingActionButtonElement['lang'];
|
|
7424
7458
|
set lang(value: FloatingActionButtonElement['lang']);
|
|
7459
|
+
get click(): EventEmitter<unknown>;
|
|
7460
|
+
get focus(): EventEmitter<unknown>;
|
|
7461
|
+
get blur(): EventEmitter<unknown>;
|
|
7425
7462
|
get connected(): EventEmitter<unknown>;
|
|
7426
7463
|
get disconnected(): EventEmitter<unknown>;
|
|
7427
7464
|
get changed(): EventEmitter<unknown>;
|
|
7428
7465
|
invoke<TMethod extends FloatingActionButtonMethodNames>(method: TMethod, ...args: Parameters<FloatingActionButtonComponentMethods[TMethod]>): ReturnType<FloatingActionButtonComponentMethods[TMethod]>;
|
|
7429
7466
|
private onEmit;
|
|
7430
7467
|
static ɵfac: i0.ɵɵFactoryDeclaration<FloatingActionButtonComponent, never>;
|
|
7431
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FloatingActionButtonComponent, "mosaik-fab", never, { "themeName": { "alias": "themeName"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
7468
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FloatingActionButtonComponent, "mosaik-fab", never, { "themeName": { "alias": "themeName"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "click": "click"; "focus": "focus"; "blur": "blur"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
7432
7469
|
}
|
|
7433
7470
|
/**
|
|
7434
7471
|
* Declares the methods available on FloatingActionButtonComponent.
|
|
@@ -7568,7 +7605,7 @@ declare const FILE_UPLOAD_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elem
|
|
|
7568
7605
|
/**
|
|
7569
7606
|
* @public
|
|
7570
7607
|
*
|
|
7571
|
-
* @slot -
|
|
7608
|
+
* @slot - Default slot for custom UI elements like buttons or instructions.
|
|
7572
7609
|
*/
|
|
7573
7610
|
declare class FileUploadComponent implements ControlValueAccessor {
|
|
7574
7611
|
private readonly _element;
|
|
@@ -8171,7 +8208,7 @@ declare const FORM_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
8171
8208
|
/**
|
|
8172
8209
|
* @public
|
|
8173
8210
|
*
|
|
8174
|
-
* @slot -
|
|
8211
|
+
* @slot - Default content area for form controls and layout elements
|
|
8175
8212
|
*/
|
|
8176
8213
|
declare class FormComponent {
|
|
8177
8214
|
private readonly _element;
|
|
@@ -8285,7 +8322,7 @@ declare const GRID_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
8285
8322
|
/**
|
|
8286
8323
|
* @public
|
|
8287
8324
|
*
|
|
8288
|
-
* @slot - The default slot.
|
|
8325
|
+
* @slot - The default slot for grid items.
|
|
8289
8326
|
*/
|
|
8290
8327
|
declare class GridComponent {
|
|
8291
8328
|
private readonly _element;
|
|
@@ -8513,11 +8550,11 @@ declare const IMAGE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
8513
8550
|
/**
|
|
8514
8551
|
* @public
|
|
8515
8552
|
*
|
|
8516
|
-
* @slot -
|
|
8517
|
-
* @slot empty -
|
|
8518
|
-
* @slot failed -
|
|
8519
|
-
* @slot pending -
|
|
8520
|
-
* @slot legend -
|
|
8553
|
+
* @slot - Default content overlaid on the image
|
|
8554
|
+
* @slot empty - Content shown when no image source is provided
|
|
8555
|
+
* @slot failed - Content displayed when image loading fails
|
|
8556
|
+
* @slot pending - Content shown while image is loading
|
|
8557
|
+
* @slot legend - Caption or description content positioned around the image
|
|
8521
8558
|
*/
|
|
8522
8559
|
declare class ImageComponent {
|
|
8523
8560
|
private readonly _element;
|
|
@@ -9111,9 +9148,11 @@ declare const LIST_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
9111
9148
|
/**
|
|
9112
9149
|
* @public
|
|
9113
9150
|
*
|
|
9114
|
-
* @slot -
|
|
9115
|
-
* @slot filter -
|
|
9116
|
-
* @slot empty -
|
|
9151
|
+
* @slot - Default content area for list items and groups
|
|
9152
|
+
* @slot filter - Filter controls and search functionality area
|
|
9153
|
+
* @slot empty - Empty state content when no items are available
|
|
9154
|
+
* @slot header - Header content above the list items
|
|
9155
|
+
* @slot footer - Footer content below the list items
|
|
9117
9156
|
*/
|
|
9118
9157
|
declare class ListComponent {
|
|
9119
9158
|
private readonly _element;
|
|
@@ -9303,7 +9342,7 @@ declare const MASONRY_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements
|
|
|
9303
9342
|
/**
|
|
9304
9343
|
* @public
|
|
9305
9344
|
*
|
|
9306
|
-
* @slot - The default slot.
|
|
9345
|
+
* @slot - The default slot for elements to be arranged in masonry layout.
|
|
9307
9346
|
*/
|
|
9308
9347
|
declare class MasonryComponent {
|
|
9309
9348
|
private readonly _element;
|
|
@@ -9897,8 +9936,8 @@ declare const NUMBER_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
9897
9936
|
/**
|
|
9898
9937
|
* @public
|
|
9899
9938
|
*
|
|
9900
|
-
* @slot prefix -
|
|
9901
|
-
* @slot suffix -
|
|
9939
|
+
* @slot prefix - Content placed before the input field.
|
|
9940
|
+
* @slot suffix - Content placed after the input field.
|
|
9902
9941
|
*/
|
|
9903
9942
|
declare class NumberBoxComponent implements ControlValueAccessor {
|
|
9904
9943
|
private readonly _element;
|
|
@@ -10223,11 +10262,11 @@ declare const PAGE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
10223
10262
|
/**
|
|
10224
10263
|
* @public
|
|
10225
10264
|
*
|
|
10226
|
-
* @slot preHeader -
|
|
10227
|
-
* @slot header -
|
|
10228
|
-
* @slot preContent -
|
|
10229
|
-
* @slot content -
|
|
10230
|
-
* @slot footer -
|
|
10265
|
+
* @slot preHeader - Content displayed before the main header (e.g., notifications, alerts)
|
|
10266
|
+
* @slot header - Primary page header content (e.g., navigation, title, actions)
|
|
10267
|
+
* @slot preContent - Content between header and main content (e.g., breadcrumbs, filters)
|
|
10268
|
+
* @slot content - Main page content area
|
|
10269
|
+
* @slot footer - Page footer content (e.g., copyright, links)
|
|
10231
10270
|
*/
|
|
10232
10271
|
declare class PageComponent {
|
|
10233
10272
|
private readonly _element;
|
|
@@ -10397,7 +10436,8 @@ declare const PASSWORD_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_ele
|
|
|
10397
10436
|
/**
|
|
10398
10437
|
* @public
|
|
10399
10438
|
*
|
|
10400
|
-
*
|
|
10439
|
+
* @slot prefix - Content placed before the input field.
|
|
10440
|
+
* @slot suffix - Content placed after the input field.
|
|
10401
10441
|
*/
|
|
10402
10442
|
declare class PasswordBoxComponent implements ControlValueAccessor {
|
|
10403
10443
|
private readonly _element;
|
|
@@ -10558,8 +10598,8 @@ declare const PERSONA_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements
|
|
|
10558
10598
|
/**
|
|
10559
10599
|
* @public
|
|
10560
10600
|
*
|
|
10561
|
-
* @slot -
|
|
10562
|
-
* @slot badge -
|
|
10601
|
+
* @slot - Default content for avatar display (overrides automatic text/icon generation)
|
|
10602
|
+
* @slot badge - Status indicator or notification badge positioned on the avatar
|
|
10563
10603
|
*/
|
|
10564
10604
|
declare class PersonaComponent {
|
|
10565
10605
|
private readonly _element;
|
|
@@ -11106,8 +11146,8 @@ declare const PROGRESS_RING_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
|
|
|
11106
11146
|
/**
|
|
11107
11147
|
* @public
|
|
11108
11148
|
*
|
|
11109
|
-
* @slot label -
|
|
11110
|
-
* @slot hint -
|
|
11149
|
+
* @slot label - Text label content area for progress description or percentage display
|
|
11150
|
+
* @slot hint - Secondary text content area for additional progress information or status
|
|
11111
11151
|
*/
|
|
11112
11152
|
declare class ProgressRingComponent {
|
|
11113
11153
|
private readonly _element;
|
|
@@ -11308,7 +11348,9 @@ declare const RADIO_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
11308
11348
|
/**
|
|
11309
11349
|
* @public
|
|
11310
11350
|
*
|
|
11311
|
-
*
|
|
11351
|
+
* @slot checkmark - The checkmark slot.
|
|
11352
|
+
* @slot label - The label slot.
|
|
11353
|
+
* @slot hint - The hint slot.
|
|
11312
11354
|
*/
|
|
11313
11355
|
declare class RadioComponent implements ControlValueAccessor {
|
|
11314
11356
|
private readonly _element;
|
|
@@ -11831,7 +11873,7 @@ declare const RIPPLE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
11831
11873
|
/**
|
|
11832
11874
|
* @public
|
|
11833
11875
|
*
|
|
11834
|
-
*
|
|
11876
|
+
* @slot - Default content area (typically empty as ripple is a visual effect overlay)
|
|
11835
11877
|
*/
|
|
11836
11878
|
declare class RippleComponent {
|
|
11837
11879
|
private readonly _element;
|
|
@@ -12098,8 +12140,8 @@ declare const SEARCH_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_eleme
|
|
|
12098
12140
|
/**
|
|
12099
12141
|
* @public
|
|
12100
12142
|
*
|
|
12101
|
-
* @slot prefix -
|
|
12102
|
-
* @slot suffix -
|
|
12143
|
+
* @slot prefix - Content placed before the search input.
|
|
12144
|
+
* @slot suffix - Content placed after the search input.
|
|
12103
12145
|
*/
|
|
12104
12146
|
declare class SearchBoxComponent implements ControlValueAccessor {
|
|
12105
12147
|
private readonly _element;
|
|
@@ -12458,10 +12500,10 @@ declare const SELECT_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
12458
12500
|
/**
|
|
12459
12501
|
* @public
|
|
12460
12502
|
*
|
|
12461
|
-
* @slot
|
|
12462
|
-
* @slot
|
|
12463
|
-
* @slot
|
|
12464
|
-
* @slot
|
|
12503
|
+
* @slot prefix - Content placed before the input value.
|
|
12504
|
+
* @slot suffix - Content placed after the input value.
|
|
12505
|
+
* @slot filter - Custom filter input for the dropdown.
|
|
12506
|
+
* @slot - Default slot for select items and groups.
|
|
12465
12507
|
*/
|
|
12466
12508
|
declare class SelectComponent implements ControlValueAccessor {
|
|
12467
12509
|
private readonly _element;
|
|
@@ -12733,8 +12775,8 @@ declare const SLIDER_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_
|
|
|
12733
12775
|
/**
|
|
12734
12776
|
* @public
|
|
12735
12777
|
*
|
|
12736
|
-
* @slot prefix -
|
|
12737
|
-
* @slot suffix -
|
|
12778
|
+
* @slot prefix - Content displayed before the slider track (e.g., min value label)
|
|
12779
|
+
* @slot suffix - Content displayed after the slider track (e.g., max value label)
|
|
12738
12780
|
*/
|
|
12739
12781
|
declare class SliderComponent implements ControlValueAccessor {
|
|
12740
12782
|
private readonly _element;
|
|
@@ -13116,9 +13158,9 @@ declare const SPLIT_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
13116
13158
|
/**
|
|
13117
13159
|
* @public
|
|
13118
13160
|
*
|
|
13119
|
-
* @slot start - The
|
|
13120
|
-
* @slot end - The end
|
|
13121
|
-
* @slot
|
|
13161
|
+
* @slot start - The primary content panel positioned at the beginning of the split
|
|
13162
|
+
* @slot end - The secondary content panel positioned at the end of the split
|
|
13163
|
+
* @slot thumb - Custom grip icon for the draggable divider (defaults to three dots icon)
|
|
13122
13164
|
*/
|
|
13123
13165
|
declare class SplitComponent {
|
|
13124
13166
|
private readonly _element;
|
|
@@ -13190,7 +13232,7 @@ declare const STACK_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_f
|
|
|
13190
13232
|
/**
|
|
13191
13233
|
* @public
|
|
13192
13234
|
*
|
|
13193
|
-
* @slot -
|
|
13235
|
+
* @slot - Default content area for child elements to be arranged in stack layout
|
|
13194
13236
|
*/
|
|
13195
13237
|
declare class StackComponent {
|
|
13196
13238
|
private readonly _element;
|
|
@@ -13304,8 +13346,8 @@ declare const SUCCESS_STATE_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
|
|
|
13304
13346
|
/**
|
|
13305
13347
|
* @public
|
|
13306
13348
|
*
|
|
13307
|
-
* @slot -
|
|
13308
|
-
* @slot actions -
|
|
13349
|
+
* @slot - Default content area for additional success information or custom content
|
|
13350
|
+
* @slot actions - Action buttons for next steps or related operations after success
|
|
13309
13351
|
*/
|
|
13310
13352
|
declare class SuccessStateComponent {
|
|
13311
13353
|
private readonly _element;
|
|
@@ -14182,7 +14224,8 @@ declare const TEXT_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
14182
14224
|
/**
|
|
14183
14225
|
* @public
|
|
14184
14226
|
*
|
|
14185
|
-
* @slot text -
|
|
14227
|
+
* @slot text - Primary text content area for displaying formatted text
|
|
14228
|
+
* @slot - Default content area for text and inline elements
|
|
14186
14229
|
*/
|
|
14187
14230
|
declare class TextComponent {
|
|
14188
14231
|
private readonly _element;
|
|
@@ -14254,6 +14297,8 @@ declare const TEXT_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
14254
14297
|
*
|
|
14255
14298
|
* @slot prefix - The prefix slot.
|
|
14256
14299
|
* @slot suffix - The suffix slot.
|
|
14300
|
+
* @slot label - The label slot.
|
|
14301
|
+
* @slot hint - The hint slot.
|
|
14257
14302
|
*/
|
|
14258
14303
|
declare class TextBoxComponent implements ControlValueAccessor {
|
|
14259
14304
|
private readonly _element;
|
|
@@ -14652,7 +14697,8 @@ declare const TIME_BOX_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_element
|
|
|
14652
14697
|
/**
|
|
14653
14698
|
* @public
|
|
14654
14699
|
*
|
|
14655
|
-
*
|
|
14700
|
+
* @slot prefix - Content placed before the input field.
|
|
14701
|
+
* @slot suffix - Content placed after the input field.
|
|
14656
14702
|
*/
|
|
14657
14703
|
declare class TimeBoxComponent implements ControlValueAccessor {
|
|
14658
14704
|
private readonly _element;
|
|
@@ -14857,7 +14903,7 @@ declare const TOGGLE_BUTTON_GROUP_DEFAULT_PROPS: InjectionToken<Partial<libs_mos
|
|
|
14857
14903
|
/**
|
|
14858
14904
|
* @public
|
|
14859
14905
|
*
|
|
14860
|
-
*
|
|
14906
|
+
* @slot - The default slot for toggle buttons.
|
|
14861
14907
|
*/
|
|
14862
14908
|
declare class ToggleButtonGroupComponent {
|
|
14863
14909
|
private readonly _element;
|
|
@@ -14919,16 +14965,18 @@ declare const TOGGLE_BUTTON_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
|
|
|
14919
14965
|
/**
|
|
14920
14966
|
* @public
|
|
14921
14967
|
*
|
|
14922
|
-
* @slot label -
|
|
14923
|
-
* @slot icon -
|
|
14924
|
-
* @slot overlay -
|
|
14968
|
+
* @slot label - Text label content area for button identification
|
|
14969
|
+
* @slot icon - Icon content area for visual state representation
|
|
14970
|
+
* @slot overlay - Overlay content area for badges, notifications, or state indicators
|
|
14925
14971
|
*/
|
|
14926
14972
|
declare class ToggleButtonComponent implements ControlValueAccessor {
|
|
14927
14973
|
private readonly _element;
|
|
14928
14974
|
private readonly _zone;
|
|
14929
14975
|
private readonly _accessor;
|
|
14976
|
+
private readonly _change;
|
|
14930
14977
|
private readonly _checked;
|
|
14931
14978
|
private readonly _unchecked;
|
|
14979
|
+
private readonly _click;
|
|
14932
14980
|
private readonly _connected;
|
|
14933
14981
|
private readonly _disconnected;
|
|
14934
14982
|
private readonly _changed;
|
|
@@ -14975,8 +15023,10 @@ declare class ToggleButtonComponent implements ControlValueAccessor {
|
|
|
14975
15023
|
set dir(value: ToggleButtonElement['dir']);
|
|
14976
15024
|
get lang(): ToggleButtonElement['lang'];
|
|
14977
15025
|
set lang(value: ToggleButtonElement['lang']);
|
|
15026
|
+
get change(): EventEmitter<unknown>;
|
|
14978
15027
|
get checked(): EventEmitter<unknown>;
|
|
14979
15028
|
get unchecked(): EventEmitter<unknown>;
|
|
15029
|
+
get click(): EventEmitter<unknown>;
|
|
14980
15030
|
get connected(): EventEmitter<unknown>;
|
|
14981
15031
|
get disconnected(): EventEmitter<unknown>;
|
|
14982
15032
|
get changed(): EventEmitter<unknown>;
|
|
@@ -14987,7 +15037,7 @@ declare class ToggleButtonComponent implements ControlValueAccessor {
|
|
|
14987
15037
|
invoke<TMethod extends ToggleButtonMethodNames>(method: TMethod, ...args: Parameters<ToggleButtonComponentMethods[TMethod]>): ReturnType<ToggleButtonComponentMethods[TMethod]>;
|
|
14988
15038
|
private onEmit;
|
|
14989
15039
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
|
|
14990
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "mosaik-toggle-button", never, { "themeName": { "alias": "themeName"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "horizontalContentAlignment": { "alias": "horizontalContentAlignment"; "required": false; }; "verticalContentAlignment": { "alias": "verticalContentAlignment"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "checked": "checked"; "unchecked": "unchecked"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, [{ directive: typeof FormStatusDirective; inputs: {}; outputs: {}; }]>;
|
|
15040
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "mosaik-toggle-button", never, { "themeName": { "alias": "themeName"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "horizontalContentAlignment": { "alias": "horizontalContentAlignment"; "required": false; }; "verticalContentAlignment": { "alias": "verticalContentAlignment"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "isBusy": { "alias": "isBusy"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; }, { "change": "change"; "checked": "checked"; "unchecked": "unchecked"; "click": "click"; "connected": "connected"; "disconnected": "disconnected"; "changed": "changed"; }, never, ["*"], true, [{ directive: typeof FormStatusDirective; inputs: {}; outputs: {}; }]>;
|
|
14991
15041
|
}
|
|
14992
15042
|
/**
|
|
14993
15043
|
* Declares the methods available on ToggleButtonComponent.
|
|
@@ -15014,8 +15064,10 @@ declare const TOGGLE_SWITCH_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_el
|
|
|
15014
15064
|
/**
|
|
15015
15065
|
* @public
|
|
15016
15066
|
*
|
|
15017
|
-
* @slot prefix -
|
|
15018
|
-
* @slot suffix -
|
|
15067
|
+
* @slot prefix - Content placed before the switch control.
|
|
15068
|
+
* @slot suffix - Content placed after the switch control.
|
|
15069
|
+
* @slot checkmark - Custom checkmark/switch indicator content.
|
|
15070
|
+
* @slot label - Custom label content.
|
|
15019
15071
|
*/
|
|
15020
15072
|
declare class ToggleSwitchComponent implements ControlValueAccessor {
|
|
15021
15073
|
private readonly _element;
|
|
@@ -15172,11 +15224,11 @@ declare const TOOLBAR_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements
|
|
|
15172
15224
|
/**
|
|
15173
15225
|
* @public
|
|
15174
15226
|
*
|
|
15175
|
-
* @slot start -
|
|
15176
|
-
* @slot -
|
|
15177
|
-
* @slot title -
|
|
15178
|
-
* @slot subTitle -
|
|
15179
|
-
* @slot end -
|
|
15227
|
+
* @slot start - Leading content area for navigation or primary actions
|
|
15228
|
+
* @slot - Default content slot for main toolbar controls
|
|
15229
|
+
* @slot title - Primary toolbar title or heading
|
|
15230
|
+
* @slot subTitle - Secondary title or subtitle text
|
|
15231
|
+
* @slot end - Trailing content area for secondary actions or controls
|
|
15180
15232
|
*/
|
|
15181
15233
|
declare class ToolbarComponent {
|
|
15182
15234
|
private readonly _element;
|
|
@@ -15885,7 +15937,7 @@ declare const WRAP_DEFAULT_PROPS: InjectionToken<Partial<libs_mosaik_elements_fo
|
|
|
15885
15937
|
/**
|
|
15886
15938
|
* @public
|
|
15887
15939
|
*
|
|
15888
|
-
*
|
|
15940
|
+
* @slot - The default slot for elements that will wrap based on available space.
|
|
15889
15941
|
*/
|
|
15890
15942
|
declare class WrapComponent {
|
|
15891
15943
|
private readonly _element;
|