@magmonium/one 0.1.17 → 0.1.19

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.
@@ -2,17 +2,17 @@ import { HttpEvent, HttpRequest, HttpHandlerFn } from '@angular/common/http';
2
2
  import * as rxjs from 'rxjs';
3
3
  import { Observable } from 'rxjs';
4
4
  import * as _angular_core from '@angular/core';
5
- import { Type, Binding, ComponentRef, PipeTransform, OnDestroy, InjectionToken, Signal, WritableSignal, Injector, Provider, AfterViewChecked, ElementRef, ChangeDetectorRef, EnvironmentProviders, ApplicationConfig, OnInit, InputSignal, ModelSignal, TemplateRef, EventEmitter, AfterViewInit, ViewContainerRef, AfterContentInit, StaticProvider } from '@angular/core';
5
+ import { Type, Binding, ComponentRef, PipeTransform, OnDestroy, InjectionToken, Signal, WritableSignal, Injector, Provider, AfterViewChecked, ElementRef, ChangeDetectorRef, EnvironmentProviders, ApplicationConfig, InputSignal, ModelSignal, TemplateRef, OnInit, EventEmitter, AfterViewInit, ViewContainerRef, AfterContentInit, StaticProvider } from '@angular/core';
6
6
  import * as _magmonium_cli from '@magmonium/cli';
7
- import { ThemeColor, Theme, WebComponentConfig as WebComponentConfig$1, ThemeList } from '@magmonium/cli';
7
+ import { ThemeColor, Theme, ThemeList, WebComponentConfig as WebComponentConfig$1 } from '@magmonium/cli';
8
8
  import * as _ngrx_signals from '@ngrx/signals';
9
9
  import * as _ngrx_signals_rxjs_interop from '@ngrx/signals/rxjs-interop';
10
10
  import * as _angular_router from '@angular/router';
11
11
  import { Router, Route, Routes, RouterStateSnapshot, UrlSerializer, UrlTree, ActivatedRouteSnapshot } from '@angular/router';
12
12
  import * as dist_libs_cli_src from 'dist/libs/cli/src';
13
+ import * as _magmonium_one from '@magmonium/one';
13
14
  import * as _angular_forms_signals from '@angular/forms/signals';
14
15
  import { WithOptionalField, ValidationError, FormValueControl, FormCheckboxControl, FieldTree, SchemaOrSchemaFn, SchemaPath } from '@angular/forms/signals';
15
- import * as _magmonium_one from '@magmonium/one';
16
16
  import { SafeStyle } from '@angular/platform-browser';
17
17
 
18
18
  /**
@@ -1200,11 +1200,14 @@ declare const ThemeStore: _angular_core.Type<{
1200
1200
  themeMap: _angular_core.Signal<Record<string, Theme>>;
1201
1201
  selected: _angular_core.Signal<string>;
1202
1202
  userAdopted: _angular_core.Signal<true>;
1203
+ configDefault: _angular_core.Signal<string>;
1203
1204
  sources: _angular_core.Signal<string[]>;
1204
1205
  isReady: _angular_core.Signal<boolean>;
1205
1206
  theme: _angular_core.Signal<Theme>;
1206
1207
  color: _angular_core.Signal<_magmonium_cli.ThemeColor>;
1207
1208
  osTheme: _angular_core.Signal<OsTheme>;
1209
+ applyTheme: (colors: Record<string, string>) => void;
1210
+ setConfigDefault: (name: string | undefined) => void;
1208
1211
  setTheme: _ngrx_signals_rxjs_interop.RxMethod<string>;
1209
1212
  addSource: _ngrx_signals_rxjs_interop.RxMethod<string>;
1210
1213
  init$: () => rxjs.Observable<Record<string, Theme & {
@@ -1215,10 +1218,22 @@ declare const ThemeStore: _angular_core.Type<{
1215
1218
  themeMap: Record<string, Theme>;
1216
1219
  selected: string | undefined;
1217
1220
  userAdopted: true | undefined;
1221
+ configDefault: string | undefined;
1218
1222
  sources: string[];
1219
1223
  isReady: boolean;
1220
1224
  }>>;
1221
1225
 
1226
+ declare class ThemeDataService {
1227
+ private readonly assetStore;
1228
+ fetchThemeList: (source: "one" | "host") => rxjs.Observable<ThemeList>;
1229
+ fetchThemes: () => rxjs.Observable<Record<string, Theme & {
1230
+ sources: string[];
1231
+ }>>;
1232
+ fetchTheme: (theme: Theme, isOne?: boolean) => rxjs.Observable<Theme>;
1233
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeDataService, never>;
1234
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<ThemeDataService>;
1235
+ }
1236
+
1222
1237
  interface ColorPallet {
1223
1238
  color: string;
1224
1239
  contrastColor: string;
@@ -1361,11 +1376,14 @@ declare class ConfigComponent<T extends Config = Config> {
1361
1376
  themeMap: _angular_core.Signal<Record<string, dist_libs_cli_src.Theme>>;
1362
1377
  selected: _angular_core.Signal<string>;
1363
1378
  userAdopted: _angular_core.Signal<true>;
1379
+ configDefault: _angular_core.Signal<string>;
1364
1380
  sources: _angular_core.Signal<string[]>;
1365
1381
  isReady: _angular_core.Signal<boolean>;
1366
1382
  theme: _angular_core.Signal<dist_libs_cli_src.Theme>;
1367
1383
  color: _angular_core.Signal<dist_libs_cli_src.ThemeColor>;
1368
1384
  osTheme: _angular_core.Signal<OsTheme>;
1385
+ applyTheme: (colors: Record<string, string>) => void;
1386
+ setConfigDefault: (name: string | undefined) => void;
1369
1387
  setTheme: _ngrx_signals_rxjs_interop.RxMethod<string>;
1370
1388
  addSource: _ngrx_signals_rxjs_interop.RxMethod<string>;
1371
1389
  init$: () => rxjs.Observable<Record<string, dist_libs_cli_src.Theme & {
@@ -1376,6 +1394,7 @@ declare class ConfigComponent<T extends Config = Config> {
1376
1394
  themeMap: Record<string, dist_libs_cli_src.Theme>;
1377
1395
  selected: string | undefined;
1378
1396
  userAdopted: true | undefined;
1397
+ configDefault: string | undefined;
1379
1398
  sources: string[];
1380
1399
  isReady: boolean;
1381
1400
  }>;
@@ -1669,7 +1688,7 @@ type Button = Config & {
1669
1688
  imgSrc?: string;
1670
1689
  nonClickable?: boolean;
1671
1690
  inverted?: boolean;
1672
- type?: 'submit' | 'button';
1691
+ isSubmit?: boolean;
1673
1692
  tabindex?: number;
1674
1693
  };
1675
1694
  type ButtonGroup = Config & {
@@ -1710,7 +1729,7 @@ declare class ButtonComponent extends ReactiveElementComponent<Button> {
1710
1729
  imgSrc: _angular_core.InputSignal<string>;
1711
1730
  nonClickable: _angular_core.InputSignal<string | boolean>;
1712
1731
  inverted: _angular_core.InputSignal<string | boolean>;
1713
- type: _angular_core.InputSignal<"button" | "submit">;
1732
+ isSubmit: _angular_core.InputSignal<string | boolean>;
1714
1733
  tabindex: _angular_core.InputSignal<string | number>;
1715
1734
  readonly clicked: _angular_core.OutputEmitterRef<Button>;
1716
1735
  button: _angular_core.Signal<ElementRef<any>>;
@@ -1718,7 +1737,6 @@ declare class ButtonComponent extends ReactiveElementComponent<Button> {
1718
1737
  protected readonly className: _angular_core.Signal<string>;
1719
1738
  private readonly navRef;
1720
1739
  private readonly sectionForm;
1721
- private readonly buttonGroup;
1722
1740
  protected readonly isFormSubmit: _angular_core.Signal<boolean>;
1723
1741
  protected readonly isDisabled: _angular_core.Signal<boolean>;
1724
1742
  private readonly isMurlActive;
@@ -1737,7 +1755,7 @@ declare class ButtonComponent extends ReactiveElementComponent<Button> {
1737
1755
  onClick(): void;
1738
1756
  protected readonly formatBadgeCount: (count: number, max?: number) => string;
1739
1757
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonComponent, never>;
1740
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "m-button,m-one-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "labelClass": { "alias": "labelClass"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "nav": { "alias": "nav"; "required": false; "isSignal": true; }; "navParams": { "alias": "navParams"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "one": { "alias": "one"; "required": false; "isSignal": true; }; "remote": { "alias": "remote"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "noTranslate": { "alias": "noTranslate"; "required": false; "isSignal": true; }; "noNative": { "alias": "noNative"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "isRightIcon": { "alias": "isRightIcon"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "stacked": { "alias": "stacked"; "required": false; "isSignal": true; }; "imgSrc": { "alias": "imgSrc"; "required": false; "isSignal": true; }; "nonClickable": { "alias": "nonClickable"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, { "config": "configChange"; "clicked": "clicked"; }, never, never, true, never>;
1758
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "m-button,m-one-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "labelClass": { "alias": "labelClass"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "nav": { "alias": "nav"; "required": false; "isSignal": true; }; "navParams": { "alias": "navParams"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "one": { "alias": "one"; "required": false; "isSignal": true; }; "remote": { "alias": "remote"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "noTranslate": { "alias": "noTranslate"; "required": false; "isSignal": true; }; "noNative": { "alias": "noNative"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "isRightIcon": { "alias": "isRightIcon"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "stacked": { "alias": "stacked"; "required": false; "isSignal": true; }; "imgSrc": { "alias": "imgSrc"; "required": false; "isSignal": true; }; "nonClickable": { "alias": "nonClickable"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; "isSubmit": { "alias": "isSubmit"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, { "config": "configChange"; "clicked": "clicked"; }, never, never, true, never>;
1741
1759
  }
1742
1760
 
1743
1761
  type CustomIcon = {
@@ -2031,58 +2049,13 @@ type Header = Config & {
2031
2049
  level?: HeaderLevel;
2032
2050
  };
2033
2051
 
2034
- type SectionAccordion = Config & {
2035
- icon?: string;
2036
- toggleIcon?: string;
2037
- };
2038
-
2039
- interface SectionAccordionRef {
2040
- setOpen(value: boolean): void;
2041
- readonly isOpen: () => boolean;
2042
- }
2043
- interface SectionAccordionGroupContext {
2044
- register(accordion: SectionAccordionRef): void;
2045
- unregister(accordion: SectionAccordionRef): void;
2046
- onOpened(accordion: SectionAccordionRef): void;
2047
- }
2048
- declare const SECTION_ACCORDION_GROUP: InjectionToken<SectionAccordionGroupContext>;
2049
-
2050
- /**
2051
- * Makes an `<m-section>` collapse — a toggle button renders at the start of
2052
- * its projected `m-section-header` (nothing renders, and the Section never
2053
- * collapses, if it has no header) and everything below the header collapses
2054
- * as one region. Ungrouped, starts open; inside an `mAccordionGroup`, only
2055
- * the first-registered member starts open (CONTEXT.md SectionAccordion).
2056
- */
2057
- declare class SectionAccordionDirective implements SectionAccordionRef, OnInit, OnDestroy {
2058
- readonly mAccordion: _angular_core.InputSignal<string | Partial<SectionAccordion>>;
2059
- private readonly elementRef;
2060
- private readonly assetStore;
2061
- private readonly isDesignMode;
2062
- private readonly group;
2063
- private readonly groupDirective;
2064
- private readonly configResource;
2065
- private readonly resolvedConfig;
2066
- readonly icon: _angular_core.Signal<string>;
2067
- readonly toggleIcon: _angular_core.Signal<string>;
2068
- private readonly _open;
2069
- readonly isOpen: _angular_core.Signal<boolean>;
2070
- readonly sectionAccordionId: string;
2071
- readonly headerId: string;
2072
- readonly bodyId: string;
2073
- ngOnInit(): void;
2074
- ngOnDestroy(): void;
2075
- setOpen(value: boolean): void;
2076
- toggle(): void;
2077
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionAccordionDirective, never>;
2078
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SectionAccordionDirective, "m-section[mAccordion]", never, { "mAccordion": { "alias": "mAccordion"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2079
- }
2080
-
2081
2052
  declare class SectionHeaderComponent {
2082
2053
  readonly sticky: _angular_core.InputSignal<boolean>;
2083
2054
  readonly level: _angular_core.InputSignal<HeaderLevel>;
2084
2055
  readonly label: _angular_core.InputSignal<string>;
2085
2056
  readonly subLabel: _angular_core.InputSignal<string>;
2057
+ readonly noTranslate: _angular_core.InputSignal<boolean>;
2058
+ readonly reverse: _angular_core.InputSignal<boolean>;
2086
2059
  readonly icon: _angular_core.InputSignal<string>;
2087
2060
  readonly menu: _angular_core.InputSignal<ContextMenu>;
2088
2061
  readonly menuName: _angular_core.InputSignal<string>;
@@ -2099,6 +2072,8 @@ declare class SectionHeaderComponent {
2099
2072
  readonly actionClick: _angular_core.OutputEmitterRef<void>;
2100
2073
  readonly action: _angular_core.OutputEmitterRef<MenuItem>;
2101
2074
  readonly back: _angular_core.OutputEmitterRef<void>;
2075
+ private readonly translateService;
2076
+ protected readonly subText: _angular_core.Signal<string>;
2102
2077
  private readonly scrollSticky;
2103
2078
  private readonly sectionContext;
2104
2079
  protected readonly sidepanel: _angular_core.Signal<boolean>;
@@ -2106,12 +2081,12 @@ declare class SectionHeaderComponent {
2106
2081
  protected readonly isSticky: _angular_core.Signal<boolean>;
2107
2082
  protected readonly hasMenu: _angular_core.Signal<boolean>;
2108
2083
  protected readonly actionConfig: _angular_core.Signal<Button>;
2109
- protected readonly accordion: SectionAccordionDirective;
2084
+ protected readonly accordion: _angular_core.Signal<_magmonium_one.SectionAccordionDirective>;
2110
2085
  protected readonly toggleIconName: _angular_core.Signal<string>;
2111
2086
  protected readonly toggleRotates: _angular_core.Signal<boolean>;
2112
2087
  protected onToggleClick(): void;
2113
2088
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionHeaderComponent, never>;
2114
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionHeaderComponent, "m-section-header", never, { "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "menu": { "alias": "menu"; "required": false; "isSignal": true; }; "menuName": { "alias": "menuName"; "required": false; "isSignal": true; }; "visibilityRule": { "alias": "visibilityRule"; "required": false; "isSignal": true; }; "disableRule": { "alias": "disableRule"; "required": false; "isSignal": true; }; "extraData": { "alias": "extraData"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; "actionButton": { "alias": "actionButton"; "required": false; "isSignal": true; }; "actionLabel": { "alias": "actionLabel"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; "action": "action"; "back": "back"; }, never, ["*", "*"], true, never>;
2089
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionHeaderComponent, "m-section-header", never, { "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "noTranslate": { "alias": "noTranslate"; "required": false; "isSignal": true; }; "reverse": { "alias": "reverse"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "menu": { "alias": "menu"; "required": false; "isSignal": true; }; "menuName": { "alias": "menuName"; "required": false; "isSignal": true; }; "visibilityRule": { "alias": "visibilityRule"; "required": false; "isSignal": true; }; "disableRule": { "alias": "disableRule"; "required": false; "isSignal": true; }; "extraData": { "alias": "extraData"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; "actionButton": { "alias": "actionButton"; "required": false; "isSignal": true; }; "actionLabel": { "alias": "actionLabel"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; "action": "action"; "back": "back"; }, never, ["*", "[sub]"], true, never>;
2115
2090
  }
2116
2091
 
2117
2092
  declare class SectionBackComponent {
@@ -2677,6 +2652,56 @@ declare class CarouselComponent extends ReactiveElementComponent<Carousel> imple
2677
2652
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselComponent, "m-carousel, m-one-carousel", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "config": "configChange"; }, never, never, true, never>;
2678
2653
  }
2679
2654
 
2655
+ type SectionAccordion = Config & {
2656
+ icon?: string;
2657
+ toggleIcon?: string;
2658
+ };
2659
+
2660
+ interface SectionAccordionRef {
2661
+ setOpen(value: boolean): void;
2662
+ readonly isOpen: () => boolean;
2663
+ }
2664
+ interface SectionAccordionGroupContext {
2665
+ register(accordion: SectionAccordionRef): void;
2666
+ unregister(accordion: SectionAccordionRef): void;
2667
+ onOpened(accordion: SectionAccordionRef): void;
2668
+ }
2669
+ declare const SECTION_ACCORDION_GROUP: InjectionToken<SectionAccordionGroupContext>;
2670
+
2671
+ /**
2672
+ * Makes an `<m-section>` collapse — a toggle button renders at the start of
2673
+ * its projected `m-section-header` (nothing renders, and the Section never
2674
+ * collapses, if it has no header) and everything below the header collapses
2675
+ * as one region. Ungrouped, starts open; inside an `mAccordionGroup`, only
2676
+ * the first-registered member starts open (CONTEXT.md SectionAccordion).
2677
+ */
2678
+ declare class SectionAccordionDirective implements SectionAccordionRef, OnInit, OnDestroy {
2679
+ readonly mAccordion: _angular_core.InputSignal<string | Partial<SectionAccordion>>;
2680
+ private readonly elementRef;
2681
+ private readonly assetStore;
2682
+ private readonly isDesignMode;
2683
+ private readonly group;
2684
+ private readonly groupDirective;
2685
+ private readonly configResource;
2686
+ private readonly resolvedConfig;
2687
+ private readonly staticAttribute;
2688
+ readonly isActive: _angular_core.Signal<boolean>;
2689
+ private readonly activeGroup;
2690
+ readonly icon: _angular_core.Signal<string>;
2691
+ readonly toggleIcon: _angular_core.Signal<string>;
2692
+ private readonly _open;
2693
+ readonly isOpen: _angular_core.Signal<boolean>;
2694
+ readonly sectionAccordionId: string;
2695
+ readonly headerId: string;
2696
+ readonly bodyId: string;
2697
+ ngOnInit(): void;
2698
+ ngOnDestroy(): void;
2699
+ setOpen(value: boolean): void;
2700
+ toggle(): void;
2701
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionAccordionDirective, never>;
2702
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SectionAccordionDirective, "m-section[mAccordion]", never, { "mAccordion": { "alias": "mAccordion"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2703
+ }
2704
+
2680
2705
  type SectionHeightMode = 'full' | 'fixed';
2681
2706
  type SectionAlign = 'left' | 'right' | 'center';
2682
2707
  interface SectionConfig extends Config {
@@ -2690,7 +2715,8 @@ interface SectionConfig extends Config {
2690
2715
  }
2691
2716
  declare class SectionComponent extends ConfigComponent<SectionConfig> {
2692
2717
  subFolder: "sections";
2693
- protected readonly accordion: SectionAccordionDirective;
2718
+ private readonly accordionDirective;
2719
+ readonly accordion: _angular_core.Signal<SectionAccordionDirective>;
2694
2720
  protected readonly header: _angular_core.Signal<SectionHeaderComponent>;
2695
2721
  protected readonly badges: _angular_core.Signal<SectionBadgesComponent>;
2696
2722
  protected readonly toggle: _angular_core.Signal<SectionToggleComponent<any>>;
@@ -2870,6 +2896,8 @@ declare class SectionAccordionGroupDirective implements SectionAccordionGroupCon
2870
2896
  readonly mAccordionGroup: _angular_core.InputSignal<string | Partial<SectionAccordionGroup>>;
2871
2897
  private readonly elementRef;
2872
2898
  private readonly assetStore;
2899
+ private readonly staticAttribute;
2900
+ readonly isActive: _angular_core.Signal<boolean>;
2873
2901
  private readonly configResource;
2874
2902
  private readonly resolvedConfig;
2875
2903
  readonly icon: _angular_core.Signal<string>;
@@ -3948,17 +3976,10 @@ declare const patternsValidation: (schemaPath: SchemaPath<string>, rules: Patter
3948
3976
  * The form context carries form state and field registration for projected
3949
3977
  * items. Sizing is inherited through the section/form host CSS variables.
3950
3978
  *
3951
- * Projected Buttons read it too: a Button inside a Section Form is that form's
3952
- * submit control, so it locks on `blocked` and fires `submit` on click rather
3953
- * than relying on a native `type="submit"` — content projection puts a Button
3954
- * inside a `m-section-button-group` or an app wrapper, and the native path only
3955
- * works while the `<form>` element stays its DOM ancestor.
3956
- *
3957
- * That default holds for a Button standing on its own in the form. Inside a
3958
- * ButtonGroup or SectionButtonGroup it inverts — a group is a line of actions,
3959
- * and `back` submitting the form it is leaving is never what was meant — so
3960
- * there a Button submits only when it says `type="submit"`. See
3961
- * BUTTON_GROUP_CONTEXT.
3979
+ * Projected Buttons read it when their `isSubmit` flag is true. That Button
3980
+ * locks on `blocked` and fires `submit` on click rather than relying on a
3981
+ * native `type="submit"` — content projection can put it inside an app
3982
+ * wrapper, where the native path no longer reaches the `<form>` ancestor.
3962
3983
  */
3963
3984
  interface SectionFormContext {
3964
3985
  readonly form: Signal<FieldTree<Record<string, unknown>> | null>;
@@ -4266,11 +4287,14 @@ declare class LogoComponent {
4266
4287
  themeMap: _angular_core.Signal<Record<string, dist_libs_cli_src.Theme>>;
4267
4288
  selected: _angular_core.Signal<string>;
4268
4289
  userAdopted: _angular_core.Signal<true>;
4290
+ configDefault: _angular_core.Signal<string>;
4269
4291
  sources: _angular_core.Signal<string[]>;
4270
4292
  isReady: _angular_core.Signal<boolean>;
4271
4293
  theme: _angular_core.Signal<dist_libs_cli_src.Theme>;
4272
4294
  color: _angular_core.Signal<dist_libs_cli_src.ThemeColor>;
4273
4295
  osTheme: _angular_core.Signal<OsTheme>;
4296
+ applyTheme: (colors: Record<string, string>) => void;
4297
+ setConfigDefault: (name: string | undefined) => void;
4274
4298
  setTheme: _ngrx_signals_rxjs_interop.RxMethod<string>;
4275
4299
  addSource: _ngrx_signals_rxjs_interop.RxMethod<string>;
4276
4300
  init$: () => rxjs.Observable<Record<string, dist_libs_cli_src.Theme & {
@@ -4281,6 +4305,7 @@ declare class LogoComponent {
4281
4305
  themeMap: Record<string, dist_libs_cli_src.Theme>;
4282
4306
  selected: string | undefined;
4283
4307
  userAdopted: true | undefined;
4308
+ configDefault: string | undefined;
4284
4309
  sources: string[];
4285
4310
  isReady: boolean;
4286
4311
  }>;
@@ -7196,17 +7221,6 @@ declare class SettingsSearchBarComponent {
7196
7221
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsSearchBarComponent, "m-settings-search-bar", never, {}, {}, never, never, true, never>;
7197
7222
  }
7198
7223
 
7199
- declare class ThemeDataService {
7200
- private readonly assetStore;
7201
- fetchThemeList: (source: "one" | "host") => rxjs.Observable<ThemeList>;
7202
- fetchThemes: () => rxjs.Observable<Record<string, Theme & {
7203
- sources: string[];
7204
- }>>;
7205
- fetchTheme: (theme: Theme, isOne?: boolean) => rxjs.Observable<Theme>;
7206
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeDataService, never>;
7207
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ThemeDataService>;
7208
- }
7209
-
7210
7224
  declare class ThemeCardContentComponent {
7211
7225
  readonly selected: _angular_core.InputSignal<boolean>;
7212
7226
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -7222,11 +7236,14 @@ declare class ThemeComponent extends BaseWebComponent {
7222
7236
  themeMap: _angular_core.Signal<Record<string, Theme>>;
7223
7237
  selected: _angular_core.Signal<string>;
7224
7238
  userAdopted: _angular_core.Signal<true>;
7239
+ configDefault: _angular_core.Signal<string>;
7225
7240
  sources: _angular_core.Signal<string[]>;
7226
7241
  isReady: _angular_core.Signal<boolean>;
7227
7242
  theme: _angular_core.Signal<Theme>;
7228
7243
  color: _angular_core.Signal<_magmonium_cli.ThemeColor>;
7229
7244
  osTheme: _angular_core.Signal<OsTheme>;
7245
+ applyTheme: (colors: Record<string, string>) => void;
7246
+ setConfigDefault: (name: string | undefined) => void;
7230
7247
  setTheme: _ngrx_signals_rxjs_interop.RxMethod<string>;
7231
7248
  addSource: _ngrx_signals_rxjs_interop.RxMethod<string>;
7232
7249
  init$: () => rxjs.Observable<Record<string, Theme & {
@@ -7237,6 +7254,7 @@ declare class ThemeComponent extends BaseWebComponent {
7237
7254
  themeMap: Record<string, Theme>;
7238
7255
  selected: string | undefined;
7239
7256
  userAdopted: true | undefined;
7257
+ configDefault: string | undefined;
7240
7258
  sources: string[];
7241
7259
  isReady: boolean;
7242
7260
  }>;
@@ -7888,5 +7906,5 @@ interface AuthResult {
7888
7906
  }
7889
7907
  declare function injectAuthenticate(): () => Promise<AuthResult>;
7890
7908
 
7891
- export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionComponent, SectionFilterComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
7909
+ export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionComponent, SectionFilterComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeDataService, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
7892
7910
  export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AuthEmailCreate404Response, AuthEmailCreate422Response, AuthEmailCreateRequest, AuthEmailCreateResponse, AuthIdentitiesListResponse, AuthOtpCreateRequest, AuthOtpCreateResponse, AuthOtpUpdateRequest, AuthOtpUpdateResponse, AuthPasswordCreateRequest, AuthPasswordCreateResponse, AuthPasswordCreateResponseTokens, AuthPasswordCreateResponseUser, AuthPasswordUpdateRequest, AuthPasswordUpdateResponse, AuthPasswordUpdateResponseTokens, AuthPasswordUpdateResponseUser, AuthResult, AuthSignupCreateRequest, AuthSignupCreateRequestUser, AuthSignupCreateResponse, AuthSignupCreateResponseTokens, AuthState, AuthUser, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterOption, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavKind, NavMap, NavPresentation, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionFormConfig, SectionFormContext, SectionHero, SectionHeroVariant, SectionToggleItem, SectionToggleItemContext, SelectableCardContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, StatAlign, StatCornerEdge, StatCornerPosition, StatCornerSide, StatSurface, StatVariant, Step, Stepper, StepperResponsiveConfig, StepperStep, Steps, StickyBehavior, Summary, SummaryAction, SummaryRow, SummaryRowType, Svg, SvgGenOptions, SvgGeneratorCoreOptions, SvgGeneratorEditOptions, TabGroup, TableConfig, TableFilterDef, TextInput, TextNotification, TextOutputAlign, TextOutputConfig, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };