@magmonium/one 0.0.23 → 0.0.25

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.
@@ -1012,7 +1012,7 @@ declare class ConfigComponent<T extends Config = Config> {
1012
1012
  }>;
1013
1013
  private readonly http;
1014
1014
  private readonly previousName;
1015
- private readonly remoteBaseUrl;
1015
+ protected readonly remoteBaseUrl: _angular_core.Signal<string>;
1016
1016
  private readonly assetsPath;
1017
1017
  private readonly storedConfig;
1018
1018
  protected readonly declaredName: _angular_core.Signal<string>;
@@ -1179,6 +1179,7 @@ declare class IconComponent {
1179
1179
  config: _angular_core.ModelSignal<Partial<_magmonium_one.Config>>;
1180
1180
  readonly name: _angular_core.InputSignal<string>;
1181
1181
  readonly color: _angular_core.InputSignal<string>;
1182
+ readonly size: _angular_core.InputSignal<string | number>;
1182
1183
  readonly one: _angular_core.InputSignal<boolean>;
1183
1184
  readonly baseUrl: _angular_core.InputSignal<string>;
1184
1185
  readonly remote: _angular_core.InputSignal<string>;
@@ -1199,7 +1200,7 @@ declare class IconComponent {
1199
1200
  private readonly applySize;
1200
1201
  private readonly updateElement;
1201
1202
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
1202
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "m-icon, m-one-icon", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "one": { "alias": "one"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "remote": { "alias": "remote"; "required": false; "isSignal": true; }; }, { "config": "configChange"; }, never, ["*"], true, never>;
1203
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "m-icon, m-one-icon", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "one": { "alias": "one"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "remote": { "alias": "remote"; "required": false; "isSignal": true; }; }, { "config": "configChange"; }, never, ["*"], true, never>;
1203
1204
  }
1204
1205
 
1205
1206
  declare class CustomIconClass {
@@ -3079,6 +3080,17 @@ declare class WrapperInputComponent<T extends Input = Input> extends ConfigCompo
3079
3080
  protected readonly hasLabel: Signal<boolean>;
3080
3081
  private isDestroyed;
3081
3082
  private dynamicSeq;
3083
+ /**
3084
+ * What actually decides which component sits in the container: the input type
3085
+ * and whether there is a FieldTree node to bind directives against. Every
3086
+ * other config key rides on the `config` signal already bound into that
3087
+ * child, so a caller rebuilding an unrelated key (a `fieldConfigs` override
3088
+ * that arms a button, say) reaches the live input without going through a
3089
+ * teardown — which re-runs the async import and leaves the field empty for
3090
+ * as long as it takes, or lands the default text input when the override
3091
+ * that arrived carries no `type` of its own.
3092
+ */
3093
+ private readonly inputShape;
3082
3094
  constructor();
3083
3095
  ngOnDestroy(): void;
3084
3096
  protected onButtonClick(): void;
@@ -3394,6 +3406,20 @@ interface SectionFormConfig extends Form {
3394
3406
  align?: 'left' | 'right' | 'center';
3395
3407
  }
3396
3408
 
3409
+ type AssetMap = Record<string, Record<string, Record<string, unknown>>>;
3410
+ declare const AssetStore: _angular_core.Type<{
3411
+ map: _angular_core.Signal<AssetMap>;
3412
+ isCachingDisabled: _angular_core.Signal<boolean>;
3413
+ appLink: _angular_core.Signal<string>;
3414
+ setAppLink: (appLink: string) => void;
3415
+ setCachingDisabled: (isDisabled: boolean) => void;
3416
+ resolve: <T>(type: string, name: string, isOne?: boolean, remoteBaseUrl?: string) => Observable<T>;
3417
+ } & _ngrx_signals.StateSource<{
3418
+ map: AssetMap;
3419
+ isCachingDisabled: boolean;
3420
+ appLink: string | undefined;
3421
+ }>>;
3422
+
3397
3423
  /**
3398
3424
  * What one Field declares about the shapes its value may take: the rules
3399
3425
  * themselves, and the message that speaks for the Field when several rules
@@ -3402,6 +3428,13 @@ interface SectionFormConfig extends Form {
3402
3428
  type FieldPatterns = {
3403
3429
  rules: PatternRule[];
3404
3430
  message?: string;
3431
+ /**
3432
+ * The names on the tag are still being resolved. The Field is invalid while
3433
+ * this is true: `registerField` runs before the rules land, so a Field that
3434
+ * validated nothing in that window would be briefly valid over a value it is
3435
+ * about to reject — and a fast submit would carry it (libs/one ADR 0018).
3436
+ */
3437
+ pending?: boolean;
3405
3438
  };
3406
3439
  /**
3407
3440
  * Reads a resolved Field config into the pair the schema needs, or `undefined`
@@ -3410,6 +3443,24 @@ type FieldPatterns = {
3410
3443
  * written asset can put anything under `patterns`.
3411
3444
  */
3412
3445
  declare function readFieldPatterns(config: Partial<Input> | undefined | null): FieldPatterns | undefined;
3446
+ /**
3447
+ * The names a Field's `patterns` attribute holds. A list cannot be an array
3448
+ * literal in markup — that is a lint error and would put the same YAML in two
3449
+ * places — so the tag spells it as one scalar and this is what reads it back.
3450
+ * A bound `string[]` is accepted too, for a caller building the list in code.
3451
+ */
3452
+ declare function parsePatternNames(value: string | string[] | undefined | null): string[];
3453
+ /**
3454
+ * Resolves the names on a Field's tag into the rules it validates with.
3455
+ *
3456
+ * The app's own `patterns/<name>.json` is asked first and `@magmonium/one`'s
3457
+ * copy second, so an app that authors a shape of its own shadows the shipped
3458
+ * one — the same precedence FieldCompiler applies at build and the design
3459
+ * editor applies on its Canvas. A name neither tier answers is dropped rather
3460
+ * than failing the Field: a rule nobody can satisfy locks a form over a shape
3461
+ * that does not exist.
3462
+ */
3463
+ declare function resolvePatternRules(assetStore: InstanceType<typeof AssetStore>, names: string[], remoteBaseUrl?: string): Observable<PatternRule[]>;
3413
3464
  /**
3414
3465
  * Identity by content, not by reference. A Field re-registers from an effect on
3415
3466
  * every config change, and `config()` is a fresh object each time — comparing
@@ -3513,6 +3564,8 @@ declare class SectionFormItemComponent extends ConfigComponent<Input> implements
3513
3564
  readonly iconOnly: _angular_core.InputSignal<string | boolean>;
3514
3565
  readonly isCheckboxVisible: _angular_core.InputSignal<string | boolean>;
3515
3566
  readonly optionsAsset: _angular_core.InputSignal<string>;
3567
+ readonly patterns: _angular_core.InputSignal<string | string[]>;
3568
+ readonly patternMessage: _angular_core.InputSignal<string>;
3516
3569
  value: _angular_core.ModelSignal<InputValue>;
3517
3570
  readonly act: _angular_core.OutputEmitterRef<Record<string, unknown>>;
3518
3571
  readonly fieldKey: _angular_core.OutputEmitterRef<string>;
@@ -3523,7 +3576,8 @@ declare class SectionFormItemComponent extends ConfigComponent<Input> implements
3523
3576
  protected readonly modelKey: Signal<string>;
3524
3577
  protected readonly field: Signal<FieldTree<string, string>>;
3525
3578
  protected readonly isRequired: Signal<boolean>;
3526
- protected readonly fieldPatterns: Signal<_magmonium_one.FieldPatterns>;
3579
+ private readonly taggedPatterns;
3580
+ protected readonly fieldPatterns: Signal<FieldPatterns>;
3527
3581
  protected readonly isVisible: Signal<boolean>;
3528
3582
  protected readonly spanClass: Signal<string>;
3529
3583
  protected readonly itemClass: Signal<string>;
@@ -3539,7 +3593,7 @@ declare class SectionFormItemComponent extends ConfigComponent<Input> implements
3539
3593
  type?: InputType;
3540
3594
  label?: string;
3541
3595
  required?: true;
3542
- patterns?: _magmonium_one.PatternRule[];
3596
+ patterns?: PatternRule[];
3543
3597
  patternMessage?: string;
3544
3598
  icon?: string;
3545
3599
  placeholder?: string;
@@ -3564,7 +3618,7 @@ declare class SectionFormItemComponent extends ConfigComponent<Input> implements
3564
3618
  private readonly createDynamicComponent;
3565
3619
  private readonly createDynamicInput;
3566
3620
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionFormItemComponent, never>;
3567
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFormItemComponent, "m-section-form-item, m-one-section-form-item", never, { "span": { "alias": "span"; "required": false; "isSignal": true; }; "labelOrientation": { "alias": "labelOrientation"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "focused": { "alias": "focused"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "element": { "alias": "element"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "aclResolver": { "alias": "aclResolver"; "required": false; "isSignal": true; }; "formValues": { "alias": "formValues"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "button": { "alias": "button"; "required": false; "isSignal": true; }; "buttonAction": { "alias": "buttonAction"; "required": false; "isSignal": true; }; "buttonAcl": { "alias": "buttonAcl"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "acl": { "alias": "acl"; "required": false; "isSignal": true; }; "testid": { "alias": "testid"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "searchLabel": { "alias": "searchLabel"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "multiSelect": { "alias": "multiSelect"; "required": false; "isSignal": true; }; "equalWidth": { "alias": "equalWidth"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "isCheckboxVisible": { "alias": "isCheckboxVisible"; "required": false; "isSignal": true; }; "optionsAsset": { "alias": "optionsAsset"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "act": "act"; "fieldKey": "fieldKey"; }, never, never, true, never>;
3621
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFormItemComponent, "m-section-form-item, m-one-section-form-item", never, { "span": { "alias": "span"; "required": false; "isSignal": true; }; "labelOrientation": { "alias": "labelOrientation"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "focused": { "alias": "focused"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "element": { "alias": "element"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "aclResolver": { "alias": "aclResolver"; "required": false; "isSignal": true; }; "formValues": { "alias": "formValues"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "button": { "alias": "button"; "required": false; "isSignal": true; }; "buttonAction": { "alias": "buttonAction"; "required": false; "isSignal": true; }; "buttonAcl": { "alias": "buttonAcl"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "acl": { "alias": "acl"; "required": false; "isSignal": true; }; "testid": { "alias": "testid"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "searchLabel": { "alias": "searchLabel"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "multiSelect": { "alias": "multiSelect"; "required": false; "isSignal": true; }; "equalWidth": { "alias": "equalWidth"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "isCheckboxVisible": { "alias": "isCheckboxVisible"; "required": false; "isSignal": true; }; "optionsAsset": { "alias": "optionsAsset"; "required": false; "isSignal": true; }; "patterns": { "alias": "patterns"; "required": false; "isSignal": true; }; "patternMessage": { "alias": "patternMessage"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "act": "act"; "fieldKey": "fieldKey"; }, never, never, true, never>;
3568
3622
  }
3569
3623
 
3570
3624
  /**
@@ -3601,7 +3655,7 @@ declare const patternValidation: (schemaPath: SchemaPath<string>, regex: RegExp,
3601
3655
  * One rule speaks for itself; several cannot, so `message` names what the Field
3602
3656
  * as a whole wanted and is what shows.
3603
3657
  */
3604
- declare const patternsValidation: (schemaPath: SchemaPath<string>, rules: PatternRule[], message?: string) => void;
3658
+ declare const patternsValidation: (schemaPath: SchemaPath<string>, rules: PatternRule[], message?: string, pending?: boolean) => void;
3605
3659
 
3606
3660
  /**
3607
3661
  * Published by `<m-section-form>` for projected `<m-section-form-item>`s.
@@ -6771,20 +6825,6 @@ declare function calculateLuminance(rgb: RgbColor): number;
6771
6825
  declare function deriveContrastColor(color: string): string;
6772
6826
  declare function deriveOppositeColor(color: string): string;
6773
6827
 
6774
- type AssetMap = Record<string, Record<string, Record<string, unknown>>>;
6775
- declare const AssetStore: _angular_core.Type<{
6776
- map: _angular_core.Signal<AssetMap>;
6777
- isCachingDisabled: _angular_core.Signal<boolean>;
6778
- appLink: _angular_core.Signal<string>;
6779
- setAppLink: (appLink: string) => void;
6780
- setCachingDisabled: (isDisabled: boolean) => void;
6781
- resolve: <T>(type: string, name: string, isOne?: boolean, remoteBaseUrl?: string) => Observable<T>;
6782
- } & _ngrx_signals.StateSource<{
6783
- map: AssetMap;
6784
- isCachingDisabled: boolean;
6785
- appLink: string | undefined;
6786
- }>>;
6787
-
6788
6828
  /**
6789
6829
  * Resolves a config asset by name via `AssetStore`, outside any component
6790
6830
  * injection context — callable from directives, stores, or components alike.
@@ -6839,6 +6879,15 @@ declare function coerceSize(...candidates: Array<Size | string | undefined | nul
6839
6879
  * about Size, so the enum can no longer be borrowed for lengths.
6840
6880
  */
6841
6881
  declare function toLength(value: number | string | undefined, isNone?: true): string;
6882
+ /**
6883
+ * Box length for an Icon's square glyph. An explicit override wins over the
6884
+ * Size in force; otherwise the SizeContext length scaled by 1.1 — the same box
6885
+ * Icons paint at when they only inherit. A bare number (or a unitless numeric
6886
+ * string, the form attributes take) becomes `em`; any other string is a CSS
6887
+ * length as written. This is a length, not a Size: Size stays on Section /
6888
+ * ButtonGroup (ADR 0008); the Icon just opts out of that box when it must.
6889
+ */
6890
+ declare function resolveIconSize(override: number | string | undefined | null, contextSize?: Size | string | undefined): string;
6842
6891
  /**
6843
6892
  * A box dimension — min/max width and height. Unitless means px here, not em:
6844
6893
  * these read as box dimensions, matching Section's `height`, whereas `toLength`
@@ -7496,5 +7545,5 @@ declare class DotGridComponent {
7496
7545
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DotGridComponent, "m-dot-grid", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
7497
7546
  }
7498
7547
 
7499
- export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COLOR_SCHEMES, 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, GEN_NAV_DISPLAY_ORDER, 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_FORM_GROUP, LOGIN_PROCESS, LOGIN_STORE, LanguageComponent, LoginDataService, LoginOneComponent, LoginStore, 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_DISPLAY_ORDER, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, 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, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, Sex, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, 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, authGuard, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, 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, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, loginState, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolvePallet, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
7548
+ export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COLOR_SCHEMES, 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, GEN_NAV_DISPLAY_ORDER, 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_FORM_GROUP, LOGIN_PROCESS, LOGIN_STORE, LanguageComponent, LoginDataService, LoginOneComponent, LoginStore, 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_DISPLAY_ORDER, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, 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, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, Sex, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, 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, authGuard, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, 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, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, loginState, 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, 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 };
7500
7549
  export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, Auth, AuthResult, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColorScheme, 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, HeroDataRecord, HeroDimensions, HslColor, Icon, IdentityInfo, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LoadingActionsApi, LoginState, 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, 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, SectionToggleItem, SectionToggleItemContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, 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, Token, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };