@magmonium/one 0.2.80 → 0.2.82
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/assets/index.json +1 -1
- package/assets/theme/dark.json +7 -7
- package/assets/theme/default.json +7 -7
- package/assets/theme/light.json +7 -7
- package/fesm2022/{magmonium-one-image-editor-DleCJcan.mjs → magmonium-one-image-editor-C_KeJ24r.mjs} +2 -2
- package/fesm2022/{magmonium-one-image-editor-DleCJcan.mjs.map → magmonium-one-image-editor-C_KeJ24r.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-magmonium-one-DpJYXHAK.mjs → magmonium-one-magmonium-one-zMBbH4e6.mjs} +412 -64
- package/fesm2022/magmonium-one-magmonium-one-zMBbH4e6.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-6WQxmRKG.mjs → magmonium-one-otp-D5YLAd5j.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-6WQxmRKG.mjs.map → magmonium-one-otp-D5YLAd5j.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-49sBxeSV.mjs → magmonium-one-password-DHZnry39.mjs} +4 -4
- package/fesm2022/{magmonium-one-password-49sBxeSV.mjs.map → magmonium-one-password-DHZnry39.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-Ds_jl5Lz.mjs → magmonium-one-toggle-BIetnmvQ.mjs} +4 -4
- package/fesm2022/{magmonium-one-toggle-Ds_jl5Lz.mjs.map → magmonium-one-toggle-BIetnmvQ.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/sass/_overlay-hosts.sass +16 -7
- package/sass/mixins/_checkbox.sass +59 -45
- package/sass/mixins/_input.sass +9 -9
- package/sass/mixins/_radio.sass +39 -44
- package/types/magmonium-one.d.ts +152 -4
- package/fesm2022/magmonium-one-magmonium-one-DpJYXHAK.mjs.map +0 -1
package/sass/mixins/_radio.sass
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
@use 'flex' as flex
|
|
2
|
-
@use '
|
|
2
|
+
@use '../variables/colors' as *
|
|
3
3
|
@use '../functions/functions' as f
|
|
4
4
|
|
|
5
|
-
// ============================================
|
|
6
|
-
// Configuration & Variables
|
|
7
|
-
// ============================================
|
|
8
|
-
|
|
9
|
-
// Default CSS custom properties (can be overridden)
|
|
10
|
-
$radio-defaults: (size: 1em, color: #4169e1, color-contrast: #ffffff, color-opposite: #e1b941)
|
|
11
|
-
|
|
12
5
|
// ============================================
|
|
13
6
|
// Base Radio Container
|
|
14
7
|
// ============================================
|
|
@@ -16,37 +9,30 @@ $radio-defaults: (size: 1em, color: #4169e1, color-contrast: #ffffff, color-oppo
|
|
|
16
9
|
@mixin radio-container-base
|
|
17
10
|
display: inline-flex
|
|
18
11
|
align-items: center
|
|
19
|
-
$size: 1em
|
|
12
|
+
$size: var(--m-radio-size, calc(var(--input-size, 1em) * 1.25))
|
|
20
13
|
gap: #{f.derive-control-gap($size)}
|
|
21
14
|
cursor: pointer
|
|
22
15
|
user-select: none
|
|
23
16
|
position: relative
|
|
24
17
|
|
|
25
18
|
input[type="radio"]
|
|
26
|
-
// Reset default styles
|
|
27
19
|
appearance: none
|
|
28
20
|
-webkit-appearance: none
|
|
29
21
|
-moz-appearance: none
|
|
30
22
|
margin: 0
|
|
31
23
|
padding: 0
|
|
32
|
-
|
|
33
|
-
// Positioning & dimensions
|
|
34
24
|
position: relative
|
|
35
25
|
width: #{$size}
|
|
36
26
|
height: #{$size}
|
|
37
27
|
flex-shrink: 0
|
|
38
28
|
box-sizing: border-box
|
|
39
|
-
|
|
40
|
-
// Styling
|
|
41
|
-
background-color: transparent
|
|
29
|
+
background: var(--m-radio-background, var(--m-text-input-background, color-mix(in srgb, #{$focus} 2%, #{$background})))
|
|
42
30
|
border-radius: 50%
|
|
43
|
-
border:
|
|
31
|
+
border: var(--m-input-border-width, 1px) solid var(--m-text-input-border, color-mix(in srgb, #{$text} 18%, #{$background}))
|
|
44
32
|
cursor: pointer
|
|
45
33
|
outline: none
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease
|
|
49
|
-
will-change: background-color, box-shadow, border-color
|
|
34
|
+
box-shadow: none
|
|
35
|
+
transition: var(--m-radio-transition, var(--m-text-input-transition, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease))
|
|
50
36
|
|
|
51
37
|
// Inner dot (checked indicator)
|
|
52
38
|
&::after
|
|
@@ -55,12 +41,12 @@ $radio-defaults: (size: 1em, color: #4169e1, color-contrast: #ffffff, color-oppo
|
|
|
55
41
|
top: 50%
|
|
56
42
|
left: 50%
|
|
57
43
|
transform: translate(-50%, -50%) scale(0)
|
|
58
|
-
width: calc(#{$size} * 0.
|
|
59
|
-
height: calc(#{$size} * 0.
|
|
60
|
-
background-color:
|
|
44
|
+
width: calc(#{$size} * 0.45)
|
|
45
|
+
height: calc(#{$size} * 0.45)
|
|
46
|
+
background-color: #ffffff
|
|
61
47
|
border-radius: 50%
|
|
62
|
-
transition: transform 0.
|
|
63
|
-
|
|
48
|
+
transition: transform 0.2s ease
|
|
49
|
+
box-shadow: none
|
|
64
50
|
|
|
65
51
|
--m-label-margin: 0
|
|
66
52
|
|
|
@@ -69,15 +55,19 @@ $radio-defaults: (size: 1em, color: #4169e1, color-contrast: #ffffff, color-oppo
|
|
|
69
55
|
// ============================================
|
|
70
56
|
|
|
71
57
|
@mixin radio-container-states
|
|
72
|
-
$size: 1em
|
|
58
|
+
$size: var(--input-size, 1em)
|
|
73
59
|
input[type="radio"]
|
|
74
|
-
// Hover state (not disabled)
|
|
75
|
-
&:hover:not(:disabled)
|
|
76
|
-
border-color:
|
|
60
|
+
// Hover state (not disabled, not checked)
|
|
61
|
+
&:hover:not(:disabled):not(:checked)
|
|
62
|
+
border-color: var(--m-text-input-hover-border, color-mix(in srgb, #{$focus} 55%, #{$background}))
|
|
63
|
+
background: var(--m-text-input-hover-background, color-mix(in srgb, #{$focus} 4%, #{$background}))
|
|
64
|
+
box-shadow: none
|
|
77
65
|
|
|
78
66
|
// Focus state (accessibility)
|
|
79
|
-
&:focus
|
|
80
|
-
|
|
67
|
+
&:focus,
|
|
68
|
+
&:focus-visible
|
|
69
|
+
border-color: var(--m-text-input-focus-border, #{$focus})
|
|
70
|
+
box-shadow: var(--m-text-input-focus-shadow, var(--m-text-input-shadow, 0 0 0 3px color-mix(in srgb, #{$focus} 14%, transparent)))
|
|
81
71
|
outline: none
|
|
82
72
|
|
|
83
73
|
// Active/pressed state (not disabled)
|
|
@@ -86,34 +76,39 @@ $radio-defaults: (size: 1em, color: #4169e1, color-contrast: #ffffff, color-oppo
|
|
|
86
76
|
|
|
87
77
|
// Checked state
|
|
88
78
|
&:checked
|
|
89
|
-
border-color: var(--m-
|
|
79
|
+
border-color: var(--m-radio-checked-border, #{$focus})
|
|
80
|
+
background: var(--m-radio-checked-background, #{$focus})
|
|
81
|
+
background-color: var(--m-radio-checked-background, #{$focus})
|
|
82
|
+
box-shadow: none
|
|
90
83
|
|
|
91
84
|
&::after
|
|
92
85
|
transform: translate(-50%, -50%) scale(1)
|
|
86
|
+
background-color: #ffffff
|
|
87
|
+
opacity: 1
|
|
93
88
|
|
|
94
89
|
// Hover when checked
|
|
95
90
|
&:hover:not(:disabled)
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
// Active when checked
|
|
102
|
-
&:active:not(:disabled)::after
|
|
103
|
-
transform: translate(-50%, -50%) scale(0.85)
|
|
91
|
+
background: color-mix(in srgb, var(--m-radio-checked-background, #{$focus}) 88%, black 12%)
|
|
92
|
+
background-color: color-mix(in srgb, var(--m-radio-checked-background, #{$focus}) 88%, black 12%)
|
|
93
|
+
border-color: color-mix(in srgb, var(--m-radio-checked-border, #{$focus}) 88%, black 12%)
|
|
94
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, #{$focus} 18%, transparent)
|
|
104
95
|
|
|
105
96
|
// Focus when checked
|
|
106
|
-
&:focus
|
|
107
|
-
|
|
97
|
+
&:focus,
|
|
98
|
+
&:focus-visible
|
|
99
|
+
box-shadow: var(--m-text-input-focus-shadow, var(--m-text-input-shadow, 0 0 0 3px color-mix(in srgb, #{$focus} 25%, transparent)))
|
|
108
100
|
|
|
109
101
|
// Disabled state
|
|
110
102
|
&:disabled
|
|
111
103
|
opacity: 0.5
|
|
112
104
|
cursor: not-allowed
|
|
113
|
-
border-color: color-mix(in srgb,
|
|
105
|
+
border-color: color-mix(in srgb, #{$text} 12%, #{$background})
|
|
114
106
|
|
|
115
107
|
&:checked::after
|
|
116
|
-
opacity: 0.
|
|
108
|
+
opacity: 0.7
|
|
109
|
+
|
|
110
|
+
&.error
|
|
111
|
+
border-color: $error
|
|
117
112
|
|
|
118
113
|
// ============================================
|
|
119
114
|
// Complete Radio Container
|
package/types/magmonium-one.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { ThemeColor, Theme, ThemeList, WebComponentConfig as WebComponentConfig$
|
|
|
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
|
-
import { Router, Route, Routes, RouterStateSnapshot, UrlSerializer, UrlTree, ActivatedRouteSnapshot } from '@angular/router';
|
|
11
|
+
import { Router, Route, Routes, RouterStateSnapshot, UrlSerializer, UrlTree, CanActivateFn, ActivatedRouteSnapshot } from '@angular/router';
|
|
12
12
|
import * as dist_libs_cli_src from 'dist/libs/cli/src';
|
|
13
13
|
import * as _magmonium_one from '@magmonium/one';
|
|
14
14
|
import * as _angular_forms_signals from '@angular/forms/signals';
|
|
@@ -7464,7 +7464,67 @@ interface NavInstanceConfig {
|
|
|
7464
7464
|
*/
|
|
7465
7465
|
navInstanceLoad?: (params: Record<string, string>) => void;
|
|
7466
7466
|
}
|
|
7467
|
-
|
|
7467
|
+
/**
|
|
7468
|
+
* What a gate answers (m-one-ui CONTEXT.md NavVisibilitySource).
|
|
7469
|
+
*
|
|
7470
|
+
* **Three states, and one of them is a promise.** `true` / `false` are the
|
|
7471
|
+
* answer; `undefined` is *not answerable yet* — the state the gate reads has
|
|
7472
|
+
* not arrived, the same window `NavRowsConfig.loading` exists for and the same
|
|
7473
|
+
* answer `navInstance` gives a cold deep link; a `Promise` is a gate that has
|
|
7474
|
+
* to ask, which an entitlement routinely does.
|
|
7475
|
+
*
|
|
7476
|
+
* The promise is why this is a union rather than two members. A gate that
|
|
7477
|
+
* fetches and a gate that reads are the same question asked of the same
|
|
7478
|
+
* registration, and splitting them would make every consumer branch on which
|
|
7479
|
+
* kind it was looking at before it could ask at all.
|
|
7480
|
+
*/
|
|
7481
|
+
type NavVisibleAnswer = boolean | undefined | Promise<boolean>;
|
|
7482
|
+
/**
|
|
7483
|
+
* Whether one Nav is shown and reachable at all (m-one-ui CONTEXT.md
|
|
7484
|
+
* NavVisibilitySource). Registered under that Nav's own NavId beside whatever
|
|
7485
|
+
* else it registers — the configs are not exclusive, which is why every guard
|
|
7486
|
+
* here tests for its own key rather than for the absence of another's.
|
|
7487
|
+
*
|
|
7488
|
+
* Takes the path parameters for the reason `navInstance` does: a gate on
|
|
7489
|
+
* `/book/:isbn/admin` is routinely a question about the book above it, and a
|
|
7490
|
+
* signal could not have read one — the Router holds it, not a store.
|
|
7491
|
+
*
|
|
7492
|
+
* The two consumers part ways on everything but `true` and `false`, because a
|
|
7493
|
+
* Router can hold a navigation where a panel cannot hold a render. On
|
|
7494
|
+
* `undefined` the panel hides the row and the guard waits. On a `Promise` the
|
|
7495
|
+
* guard awaits it, and the panel — which has already rendered — hides the row,
|
|
7496
|
+
* resolves it once, remembers the answer and draws again.
|
|
7497
|
+
*
|
|
7498
|
+
* Hiding rather than showing while the answer is outstanding is the half that
|
|
7499
|
+
* is not symmetric: flashing a row the User may not be allowed to have leaks
|
|
7500
|
+
* the existence of the thing the gate was written to hide.
|
|
7501
|
+
*/
|
|
7502
|
+
interface NavVisibilityConfig {
|
|
7503
|
+
navVisible: (params: Record<string, string>) => NavVisibleAnswer;
|
|
7504
|
+
/**
|
|
7505
|
+
* Fired before the gate is believed, so a gate reading state the store does
|
|
7506
|
+
* not hold yet has something filling it (m-one-ui CONTEXT.md
|
|
7507
|
+
* NavVisibilitySource).
|
|
7508
|
+
*
|
|
7509
|
+
* This is what makes *is this app's uid the signed-in user* answerable on a
|
|
7510
|
+
* cold deep link: with no app loaded the gate reads `undefined`, answers
|
|
7511
|
+
* `undefined`, and both consumers would otherwise wait forever on a fetch
|
|
7512
|
+
* nobody started. What it names is a CacheMethod — state first, HTTP only on
|
|
7513
|
+
* a miss — so firing it on every navigation costs a state read in the warm
|
|
7514
|
+
* case, which is why it is not gated on the answer being missing.
|
|
7515
|
+
*
|
|
7516
|
+
* Optional: a gate reading only route parameters, or state some earlier
|
|
7517
|
+
* Screen always fills, needs no call of its own. The sibling of
|
|
7518
|
+
* `navInstanceLoad`.
|
|
7519
|
+
*
|
|
7520
|
+
* May answer a promise that settles when the load is done — hit, landed,
|
|
7521
|
+
* failed or dropped. The route guard waits on it before it asks the gate, so
|
|
7522
|
+
* a gate reading state that is partly filled (a map holding other keys) is
|
|
7523
|
+
* not believed until this load has had its say.
|
|
7524
|
+
*/
|
|
7525
|
+
navVisibleLoad?: (params: Record<string, string>) => void | Promise<void>;
|
|
7526
|
+
}
|
|
7527
|
+
type NavWidgetEntry = Type<unknown> | NavWidgetConfig | NavMenuConfig | NavRowsConfig | NavInstanceConfig | NavVisibilityConfig;
|
|
7468
7528
|
/**
|
|
7469
7529
|
* What an app hands `provideNavWidgets`. Keyed by NavId and nothing else — the
|
|
7470
7530
|
* same string as the nav asset filename and the route stamp (ADR 0014).
|
|
@@ -7473,6 +7533,7 @@ type NavWidgetMap = Partial<Record<NavIdKey, NavWidgetEntry>>;
|
|
|
7473
7533
|
declare function isNavMenuConfig(entry: NavWidgetEntry): entry is NavMenuConfig;
|
|
7474
7534
|
declare function isNavRowsConfig(entry: NavWidgetEntry): entry is NavRowsConfig;
|
|
7475
7535
|
declare function isNavInstanceConfig(entry: NavWidgetEntry): entry is NavInstanceConfig;
|
|
7536
|
+
declare function isNavVisibilityConfig(entry: NavWidgetEntry): entry is NavVisibilityConfig;
|
|
7476
7537
|
/**
|
|
7477
7538
|
* Multi-provided, and resolved **last-wins**: the library provides its own
|
|
7478
7539
|
* Platform Nav panels first so an app registering at the same NavId replaces
|
|
@@ -7508,6 +7569,7 @@ declare class FrameComponent {
|
|
|
7508
7569
|
navMap: _angular_core.Signal<_magmonium_one.NavMap>;
|
|
7509
7570
|
wcConfigMap: _angular_core.Signal<Record<string, dist_libs_cli_src.WebComponentConfig>>;
|
|
7510
7571
|
navLoading: _angular_core.Signal<boolean>;
|
|
7572
|
+
visibilityAnswers: _angular_core.Signal<Record<string, boolean>>;
|
|
7511
7573
|
navigationEnd: _angular_core.Signal<_angular_router.RouterStateSnapshot>;
|
|
7512
7574
|
router: _angular_router.Router;
|
|
7513
7575
|
id: _angular_core.Signal<string>;
|
|
@@ -7529,6 +7591,16 @@ declare class FrameComponent {
|
|
|
7529
7591
|
params: Record<string, string>;
|
|
7530
7592
|
load: (params: Record<string, string>) => void;
|
|
7531
7593
|
}[]>;
|
|
7594
|
+
hiddenNavIds: _angular_core.Signal<ReadonlySet<string>>;
|
|
7595
|
+
visibilityPending: _angular_core.Signal<{
|
|
7596
|
+
key: string;
|
|
7597
|
+
answer: Promise<boolean>;
|
|
7598
|
+
}[]>;
|
|
7599
|
+
visibilityLoaders: _angular_core.Signal<{
|
|
7600
|
+
key: string;
|
|
7601
|
+
params: Record<string, string>;
|
|
7602
|
+
load: (params: Record<string, string>) => void;
|
|
7603
|
+
}[]>;
|
|
7532
7604
|
addressFor: (navId: string, params?: Record<string, string | number>) => string;
|
|
7533
7605
|
goToNav: (navId: string, params?: Record<string, string | number>, options?: {
|
|
7534
7606
|
keepPanel?: boolean;
|
|
@@ -7567,6 +7639,7 @@ declare class FrameComponent {
|
|
|
7567
7639
|
navMap: _magmonium_one.NavMap;
|
|
7568
7640
|
wcConfigMap: Record<string, dist_libs_cli_src.WebComponentConfig>;
|
|
7569
7641
|
navLoading: boolean;
|
|
7642
|
+
visibilityAnswers: Record<string, boolean>;
|
|
7570
7643
|
}>;
|
|
7571
7644
|
protected readonly device: DeviceService;
|
|
7572
7645
|
protected readonly isPreview: boolean;
|
|
@@ -7679,6 +7752,7 @@ declare const NavStore: _angular_core.Type<{
|
|
|
7679
7752
|
navMap: Signal<NavMap>;
|
|
7680
7753
|
wcConfigMap: Signal<Record<string, WebComponentConfig$1>>;
|
|
7681
7754
|
navLoading: Signal<boolean>;
|
|
7755
|
+
visibilityAnswers: Signal<Record<string, boolean>>;
|
|
7682
7756
|
navigationEnd: Signal<RouterStateSnapshot>;
|
|
7683
7757
|
router: Router;
|
|
7684
7758
|
id: Signal<string>;
|
|
@@ -7700,6 +7774,16 @@ declare const NavStore: _angular_core.Type<{
|
|
|
7700
7774
|
params: Record<string, string>;
|
|
7701
7775
|
load: (params: Record<string, string>) => void;
|
|
7702
7776
|
}[]>;
|
|
7777
|
+
hiddenNavIds: Signal<ReadonlySet<string>>;
|
|
7778
|
+
visibilityPending: Signal<{
|
|
7779
|
+
key: string;
|
|
7780
|
+
answer: Promise<boolean>;
|
|
7781
|
+
}[]>;
|
|
7782
|
+
visibilityLoaders: Signal<{
|
|
7783
|
+
key: string;
|
|
7784
|
+
params: Record<string, string>;
|
|
7785
|
+
load: (params: Record<string, string>) => void;
|
|
7786
|
+
}[]>;
|
|
7703
7787
|
addressFor: (navId: string, params?: Record<string, string | number>) => string;
|
|
7704
7788
|
goToNav: (navId: string, params?: Record<string, string | number>, options?: {
|
|
7705
7789
|
keepPanel?: boolean;
|
|
@@ -7738,6 +7822,7 @@ declare const NavStore: _angular_core.Type<{
|
|
|
7738
7822
|
navMap: NavMap;
|
|
7739
7823
|
wcConfigMap: Record<string, WebComponentConfig$1>;
|
|
7740
7824
|
navLoading: boolean;
|
|
7825
|
+
visibilityAnswers: Record<string, boolean>;
|
|
7741
7826
|
}>>;
|
|
7742
7827
|
|
|
7743
7828
|
interface GetNavContext {
|
|
@@ -7952,6 +8037,45 @@ declare const toHostNavId: (localNavId: string, hostNavId: string) => string;
|
|
|
7952
8037
|
/** Inverse of `toHostNavId`, for asking a Remote for its own asset. */
|
|
7953
8038
|
declare const toLocalNavId: (hostScopedNavId: string, hostNavId: string) => string | undefined;
|
|
7954
8039
|
|
|
8040
|
+
/**
|
|
8041
|
+
* The route half of a [NavVisibilityRule] (m-one-ui CONTEXT.md). One guard for
|
|
8042
|
+
* the whole tree rather than one per rule: every emitted route already carries
|
|
8043
|
+
* `data: { navId }` (libs/one ADR 0014), and a NavId *is* its ancestry, so the
|
|
8044
|
+
* guard walks up from the route it was stamped on and asks every ancestor's
|
|
8045
|
+
* registration in turn.
|
|
8046
|
+
*
|
|
8047
|
+
* That ancestry walk is why the cascade works at all. Routes are emitted flat
|
|
8048
|
+
* until a Screen draws a RouterOutletControl, so a child Nav is routinely a
|
|
8049
|
+
* *sibling* route rather than a nested one — a `canActivate` on the parent
|
|
8050
|
+
* entry would guard nothing below it. Walking the id covers both shapes with
|
|
8051
|
+
* one stamp and no knowledge of which one the emitter chose.
|
|
8052
|
+
*
|
|
8053
|
+
* It **waits** where the menu hides. `navVisible` answering `undefined` means
|
|
8054
|
+
* the state the gate reads has not arrived, and a Router can hold a navigation
|
|
8055
|
+
* where a panel cannot hold a render: refusing on `undefined` would bounce
|
|
8056
|
+
* every cold deep link into a guarded page, which is the whole case the gate's
|
|
8057
|
+
* arguments are resolved before it is called for.
|
|
8058
|
+
*
|
|
8059
|
+
* It also **fires the loads itself, and waits for them** before it asks any
|
|
8060
|
+
* gate. The nav store fires them too, but a deep link is precisely the
|
|
8061
|
+
* navigation that happens before any panel has drawn — the store's own effect
|
|
8062
|
+
* has not run for this address yet, and waiting for it would be waiting for the
|
|
8063
|
+
* thing the wait is supposed to end. A load answers a promise that settles when
|
|
8064
|
+
* its request is done, and a gate is only asked after every one has: a gate
|
|
8065
|
+
* reading a map that already holds *other* keys answers `false`, not
|
|
8066
|
+
* `undefined`, and believing it before the load landed would bounce a
|
|
8067
|
+
* reachable page. A CacheMethod shares one in-flight request per argument set,
|
|
8068
|
+
* so the two firings cost one request between them.
|
|
8069
|
+
*
|
|
8070
|
+
* And it **awaits** where the menu remembers. A gate may be `async` — an
|
|
8071
|
+
* entitlement is routinely a call the client has to make — and awaiting it is
|
|
8072
|
+
* the plainest thing a `canActivate` does. The panel cannot: it has already
|
|
8073
|
+
* rendered, so the nav store settles the same promise once and keeps the
|
|
8074
|
+
* answer.
|
|
8075
|
+
*/
|
|
8076
|
+
|
|
8077
|
+
declare const navVisibilityGuard: CanActivateFn;
|
|
8078
|
+
|
|
7955
8079
|
declare class NavComponent {
|
|
7956
8080
|
#private;
|
|
7957
8081
|
isHost: _angular_core.InputSignal<boolean>;
|
|
@@ -8010,6 +8134,7 @@ declare class NavDetailsComponent {
|
|
|
8010
8134
|
navMap: _angular_core.Signal<_magmonium_one.NavMap>;
|
|
8011
8135
|
wcConfigMap: _angular_core.Signal<Record<string, dist_libs_cli_src.WebComponentConfig>>;
|
|
8012
8136
|
navLoading: _angular_core.Signal<boolean>;
|
|
8137
|
+
visibilityAnswers: _angular_core.Signal<Record<string, boolean>>;
|
|
8013
8138
|
navigationEnd: _angular_core.Signal<_angular_router.RouterStateSnapshot>;
|
|
8014
8139
|
router: _angular_router.Router;
|
|
8015
8140
|
id: _angular_core.Signal<string>;
|
|
@@ -8031,6 +8156,16 @@ declare class NavDetailsComponent {
|
|
|
8031
8156
|
params: Record<string, string>;
|
|
8032
8157
|
load: (params: Record<string, string>) => void;
|
|
8033
8158
|
}[]>;
|
|
8159
|
+
hiddenNavIds: _angular_core.Signal<ReadonlySet<string>>;
|
|
8160
|
+
visibilityPending: _angular_core.Signal<{
|
|
8161
|
+
key: string;
|
|
8162
|
+
answer: Promise<boolean>;
|
|
8163
|
+
}[]>;
|
|
8164
|
+
visibilityLoaders: _angular_core.Signal<{
|
|
8165
|
+
key: string;
|
|
8166
|
+
params: Record<string, string>;
|
|
8167
|
+
load: (params: Record<string, string>) => void;
|
|
8168
|
+
}[]>;
|
|
8034
8169
|
addressFor: (navId: string, params?: Record<string, string | number>) => string;
|
|
8035
8170
|
goToNav: (navId: string, params?: Record<string, string | number>, options?: {
|
|
8036
8171
|
keepPanel?: boolean;
|
|
@@ -8069,6 +8204,7 @@ declare class NavDetailsComponent {
|
|
|
8069
8204
|
navMap: _magmonium_one.NavMap;
|
|
8070
8205
|
wcConfigMap: Record<string, dist_libs_cli_src.WebComponentConfig>;
|
|
8071
8206
|
navLoading: boolean;
|
|
8207
|
+
visibilityAnswers: Record<string, boolean>;
|
|
8072
8208
|
}>;
|
|
8073
8209
|
_device: DeviceService;
|
|
8074
8210
|
private readonly _settingsSearch;
|
|
@@ -8128,6 +8264,7 @@ declare class NavHeaderComponent {
|
|
|
8128
8264
|
navMap: _angular_core.Signal<_magmonium_one.NavMap>;
|
|
8129
8265
|
wcConfigMap: _angular_core.Signal<Record<string, dist_libs_cli_src.WebComponentConfig>>;
|
|
8130
8266
|
navLoading: _angular_core.Signal<boolean>;
|
|
8267
|
+
visibilityAnswers: _angular_core.Signal<Record<string, boolean>>;
|
|
8131
8268
|
navigationEnd: _angular_core.Signal<_angular_router.RouterStateSnapshot>;
|
|
8132
8269
|
router: _angular_router.Router;
|
|
8133
8270
|
id: _angular_core.Signal<string>;
|
|
@@ -8149,6 +8286,16 @@ declare class NavHeaderComponent {
|
|
|
8149
8286
|
params: Record<string, string>;
|
|
8150
8287
|
load: (params: Record<string, string>) => void;
|
|
8151
8288
|
}[]>;
|
|
8289
|
+
hiddenNavIds: _angular_core.Signal<ReadonlySet<string>>;
|
|
8290
|
+
visibilityPending: _angular_core.Signal<{
|
|
8291
|
+
key: string;
|
|
8292
|
+
answer: Promise<boolean>;
|
|
8293
|
+
}[]>;
|
|
8294
|
+
visibilityLoaders: _angular_core.Signal<{
|
|
8295
|
+
key: string;
|
|
8296
|
+
params: Record<string, string>;
|
|
8297
|
+
load: (params: Record<string, string>) => void;
|
|
8298
|
+
}[]>;
|
|
8152
8299
|
addressFor: (navId: string, params?: Record<string, string | number>) => string;
|
|
8153
8300
|
goToNav: (navId: string, params?: Record<string, string | number>, options?: {
|
|
8154
8301
|
keepPanel?: boolean;
|
|
@@ -8187,6 +8334,7 @@ declare class NavHeaderComponent {
|
|
|
8187
8334
|
navMap: _magmonium_one.NavMap;
|
|
8188
8335
|
wcConfigMap: Record<string, dist_libs_cli_src.WebComponentConfig>;
|
|
8189
8336
|
navLoading: boolean;
|
|
8337
|
+
visibilityAnswers: Record<string, boolean>;
|
|
8190
8338
|
}>;
|
|
8191
8339
|
_searchStore: {
|
|
8192
8340
|
query: _angular_core.Signal<string>;
|
|
@@ -9567,5 +9715,5 @@ interface AuthResult {
|
|
|
9567
9715
|
}
|
|
9568
9716
|
declare function injectAuthenticate(): () => Promise<AuthResult>;
|
|
9569
9717
|
|
|
9570
|
-
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, ChatBubbleComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, CompactNumberPipe, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_RANGE_MODE, DEFAULT_FILTER_VARIANT, DEFAULT_NAV_PARAM, DEFAULT_NAV_SEGMENT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_RANGE_MODES, FILTER_VARIANTS, 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, ListComponent, 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, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, 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, 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, assetOptions, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOneBound, filterHoldsOptions, filterHoldsRange, filterList, filterNumber, filterNumberList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterTreeGridRows, filterValueList, filterValues, 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, isNavInstanceConfig, isNavMenuConfig, isNavRowsConfig, 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, navParamOf, navToId, normalizeAssetOptions, 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, splitOnMatch, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
|
|
9571
|
-
export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AssetOption, 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, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ChatBubblePointerAlignment, ChatBubblePointerPosition, ChatBubbleVariant, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ConfirmOptions, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileReadAs, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterRangeMode, FilterSelectionMap, FilterValue, FilterVariant, FilteredTreeGrid, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LabelSegment, ListConfig, ListContext, ListItem, ListOrientation, ListVariant, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavInstanceConfig, NavKind, NavMap, NavMenuConfig, NavPresentation, NavRow, NavRowsConfig, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, ScreenOverlayTrigger, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, 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, SqueezeMode, 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, TextOutputFontWeight, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };
|
|
9718
|
+
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, ChatBubbleComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, CompactNumberPipe, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_RANGE_MODE, DEFAULT_FILTER_VARIANT, DEFAULT_NAV_PARAM, DEFAULT_NAV_SEGMENT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_RANGE_MODES, FILTER_VARIANTS, 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, ListComponent, 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, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, 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, 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, assetOptions, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOneBound, filterHoldsOptions, filterHoldsRange, filterList, filterNumber, filterNumberList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterTreeGridRows, filterValueList, filterValues, 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, isNavInstanceConfig, isNavMenuConfig, isNavRowsConfig, isNavVisibilityConfig, 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, navParamOf, navToId, navVisibilityGuard, normalizeAssetOptions, 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, splitOnMatch, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
|
|
9719
|
+
export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AssetOption, 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, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ChatBubblePointerAlignment, ChatBubblePointerPosition, ChatBubbleVariant, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ConfirmOptions, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileReadAs, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterRangeMode, FilterSelectionMap, FilterValue, FilterVariant, FilteredTreeGrid, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LabelSegment, ListConfig, ListContext, ListItem, ListOrientation, ListVariant, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavInstanceConfig, NavKind, NavMap, NavMenuConfig, NavPresentation, NavRow, NavRowsConfig, NavStoreRef, NavVisibilityConfig, NavVisibleAnswer, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, ScreenOverlayTrigger, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, 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, SqueezeMode, 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, TextOutputFontWeight, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };
|