@bluerobotics/bluevue 0.2.0 → 0.2.2
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/dist/bluevue.js +1907 -1624
- package/dist/components/BlueButton.vue.d.ts +5 -0
- package/dist/components/BlueButtonGroup.vue.d.ts +6 -0
- package/dist/components/BlueConfirmDialog.vue.d.ts +98 -21
- package/dist/components/BlueDialog.vue.d.ts +51 -4
- package/dist/components/BlueExpansiblePanel.vue.d.ts +11 -0
- package/dist/components/BlueHeader.vue.d.ts +41 -0
- package/dist/components/BlueHeaderMenu.vue.d.ts +25 -0
- package/dist/components/BlueHeaderSelector.vue.d.ts +42 -0
- package/dist/components/BlueSlider.vue.d.ts +5 -1
- package/dist/components/BlueSwitch.vue.d.ts +0 -2
- package/dist/components/BlueWindRose.vue.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/style.css +1 -1
- package/dist/utils/id.d.ts +10 -0
- package/package.json +1 -1
- package/src/components/BlueButton.vue +22 -1
- package/src/components/BlueButtonGroup.vue +19 -10
- package/src/components/BlueCheckbox.vue +2 -2
- package/src/components/BlueDialog.vue +46 -7
- package/src/components/BlueExpansiblePanel.vue +63 -9
- package/src/components/BlueHeader.vue +42 -0
- package/src/components/BlueHeaderMenu.vue +53 -0
- package/src/components/BlueHeaderSelector.vue +153 -0
- package/src/components/BlueInput.vue +3 -3
- package/src/components/BlueLoadingDialog.vue +1 -1
- package/src/components/BlueSelect.vue +2 -2
- package/src/components/BlueSlider.vue +74 -16
- package/src/components/BlueSwitch.vue +56 -35
- package/src/components/BlueTextarea.vue +2 -1
- package/src/components/BlueWindRose.vue +21 -3
- package/src/index.ts +6 -0
- package/src/styles/bluevue.css +39 -16
- package/src/utils/id.ts +15 -0
|
@@ -22,6 +22,11 @@ type __VLS_Props = {
|
|
|
22
22
|
disabled?: boolean;
|
|
23
23
|
/** Takes the whole width it is given, for a button ending a narrow panel. */
|
|
24
24
|
block?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Shadow depth, 1 (a hair off the surface) to 5. Chips default to 1; text and icon buttons have
|
|
27
|
+
* no chip to lift, so they default to none. A disabled button is never raised.
|
|
28
|
+
*/
|
|
29
|
+
elevation?: 1 | 2 | 3 | 4 | 5;
|
|
25
30
|
/** Hover text, and the name assistive technology reads on an icon button. */
|
|
26
31
|
tooltip?: string;
|
|
27
32
|
theme?: 'light' | 'dark';
|
|
@@ -41,6 +41,12 @@ type __VLS_Props = {
|
|
|
41
41
|
type: 'switch' | 'toggle';
|
|
42
42
|
/** Height of the button group container */
|
|
43
43
|
height?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Width of the button group container. The buttons share whatever it grants beyond their
|
|
46
|
+
* natural size, so the selected one still reaches the group's edge. It is a starting width
|
|
47
|
+
* rather than a fixed one, so a narrow row can still shrink the group.
|
|
48
|
+
*/
|
|
49
|
+
width?: string;
|
|
44
50
|
/** Label text on the left side of the button group */
|
|
45
51
|
label?: string;
|
|
46
52
|
/** Optional info tooltip shown via an info icon next to the control. */
|
|
@@ -23,7 +23,17 @@ declare function __VLS_template(): {
|
|
|
23
23
|
dialogRef: ({
|
|
24
24
|
$: import('vue').ComponentInternalInstance;
|
|
25
25
|
$data: {};
|
|
26
|
-
$props: Partial<{
|
|
26
|
+
$props: Partial<{
|
|
27
|
+
title: string;
|
|
28
|
+
width: string;
|
|
29
|
+
icon: string;
|
|
30
|
+
bodyClass: string;
|
|
31
|
+
iconColor: string;
|
|
32
|
+
subtitle: string;
|
|
33
|
+
headerClass: string;
|
|
34
|
+
footerClass: string;
|
|
35
|
+
headerDivider: boolean;
|
|
36
|
+
}> & Omit<{
|
|
27
37
|
readonly modelValue: boolean;
|
|
28
38
|
readonly title?: string | undefined;
|
|
29
39
|
readonly width?: string | undefined;
|
|
@@ -32,36 +42,57 @@ declare function __VLS_template(): {
|
|
|
32
42
|
readonly iconColor?: string | undefined;
|
|
33
43
|
readonly subtitle?: string | undefined;
|
|
34
44
|
readonly persistent?: boolean | undefined;
|
|
45
|
+
readonly headerClass?: string | undefined;
|
|
46
|
+
readonly footerClass?: string | undefined;
|
|
47
|
+
readonly headerDivider?: boolean | undefined;
|
|
35
48
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
36
49
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
modelValue: {
|
|
38
|
-
type: import('vue').PropType<boolean>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
50
|
title: {
|
|
42
51
|
type: import('vue').PropType<string>;
|
|
52
|
+
default: undefined;
|
|
53
|
+
};
|
|
54
|
+
width: {
|
|
55
|
+
type: import('vue').PropType<string>;
|
|
56
|
+
default: undefined;
|
|
43
57
|
};
|
|
44
58
|
icon: {
|
|
45
59
|
type: import('vue').PropType<string>;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
62
|
+
bodyClass: {
|
|
63
|
+
type: import('vue').PropType<string>;
|
|
64
|
+
default: undefined;
|
|
65
|
+
};
|
|
66
|
+
modelValue: {
|
|
67
|
+
type: import('vue').PropType<boolean>;
|
|
68
|
+
required: true;
|
|
46
69
|
};
|
|
47
70
|
iconColor: {
|
|
48
71
|
type: import('vue').PropType<string>;
|
|
72
|
+
default: undefined;
|
|
49
73
|
};
|
|
50
74
|
subtitle: {
|
|
51
75
|
type: import('vue').PropType<string>;
|
|
76
|
+
default: undefined;
|
|
52
77
|
};
|
|
53
78
|
persistent: {
|
|
54
79
|
type: import('vue').PropType<boolean>;
|
|
55
80
|
};
|
|
56
|
-
|
|
81
|
+
headerClass: {
|
|
57
82
|
type: import('vue').PropType<string>;
|
|
83
|
+
default: undefined;
|
|
58
84
|
};
|
|
59
|
-
|
|
85
|
+
footerClass: {
|
|
60
86
|
type: import('vue').PropType<string>;
|
|
87
|
+
default: undefined;
|
|
88
|
+
};
|
|
89
|
+
headerDivider: {
|
|
90
|
+
type: import('vue').PropType<boolean>;
|
|
91
|
+
default: undefined;
|
|
61
92
|
};
|
|
62
93
|
}>> & {
|
|
63
94
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
64
|
-
},
|
|
95
|
+
}, "title" | "width" | "icon" | "bodyClass" | "iconColor" | "subtitle" | "headerClass" | "footerClass" | "headerDivider">;
|
|
65
96
|
$attrs: {
|
|
66
97
|
[x: string]: unknown;
|
|
67
98
|
};
|
|
@@ -76,30 +107,48 @@ declare function __VLS_template(): {
|
|
|
76
107
|
$emit: (event: "update:modelValue", value: boolean) => void;
|
|
77
108
|
$el: any;
|
|
78
109
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
79
|
-
modelValue: {
|
|
80
|
-
type: import('vue').PropType<boolean>;
|
|
81
|
-
required: true;
|
|
82
|
-
};
|
|
83
110
|
title: {
|
|
84
111
|
type: import('vue').PropType<string>;
|
|
112
|
+
default: undefined;
|
|
113
|
+
};
|
|
114
|
+
width: {
|
|
115
|
+
type: import('vue').PropType<string>;
|
|
116
|
+
default: undefined;
|
|
85
117
|
};
|
|
86
118
|
icon: {
|
|
87
119
|
type: import('vue').PropType<string>;
|
|
120
|
+
default: undefined;
|
|
121
|
+
};
|
|
122
|
+
bodyClass: {
|
|
123
|
+
type: import('vue').PropType<string>;
|
|
124
|
+
default: undefined;
|
|
125
|
+
};
|
|
126
|
+
modelValue: {
|
|
127
|
+
type: import('vue').PropType<boolean>;
|
|
128
|
+
required: true;
|
|
88
129
|
};
|
|
89
130
|
iconColor: {
|
|
90
131
|
type: import('vue').PropType<string>;
|
|
132
|
+
default: undefined;
|
|
91
133
|
};
|
|
92
134
|
subtitle: {
|
|
93
135
|
type: import('vue').PropType<string>;
|
|
136
|
+
default: undefined;
|
|
94
137
|
};
|
|
95
138
|
persistent: {
|
|
96
139
|
type: import('vue').PropType<boolean>;
|
|
97
140
|
};
|
|
98
|
-
|
|
141
|
+
headerClass: {
|
|
99
142
|
type: import('vue').PropType<string>;
|
|
143
|
+
default: undefined;
|
|
100
144
|
};
|
|
101
|
-
|
|
145
|
+
footerClass: {
|
|
102
146
|
type: import('vue').PropType<string>;
|
|
147
|
+
default: undefined;
|
|
148
|
+
};
|
|
149
|
+
headerDivider: {
|
|
150
|
+
type: import('vue').PropType<boolean>;
|
|
151
|
+
default: undefined;
|
|
103
152
|
};
|
|
104
153
|
}>> & {
|
|
105
154
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -107,7 +156,17 @@ declare function __VLS_template(): {
|
|
|
107
156
|
close: () => void;
|
|
108
157
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
109
158
|
"update:modelValue": (value: boolean) => void;
|
|
110
|
-
}, string, {
|
|
159
|
+
}, string, {
|
|
160
|
+
title: string;
|
|
161
|
+
width: string;
|
|
162
|
+
icon: string;
|
|
163
|
+
bodyClass: string;
|
|
164
|
+
iconColor: string;
|
|
165
|
+
subtitle: string;
|
|
166
|
+
headerClass: string;
|
|
167
|
+
footerClass: string;
|
|
168
|
+
headerDivider: boolean;
|
|
169
|
+
}, {}, string, {}> & {
|
|
111
170
|
beforeCreate?: (() => void) | (() => void)[];
|
|
112
171
|
created?: (() => void) | (() => void)[];
|
|
113
172
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -128,30 +187,48 @@ declare function __VLS_template(): {
|
|
|
128
187
|
$nextTick: typeof import('vue').nextTick;
|
|
129
188
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, (cleanupFn: () => void) => void]) => any : (...args: [any, any, (cleanupFn: () => void) => void]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
130
189
|
} & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
131
|
-
modelValue: {
|
|
132
|
-
type: import('vue').PropType<boolean>;
|
|
133
|
-
required: true;
|
|
134
|
-
};
|
|
135
190
|
title: {
|
|
136
191
|
type: import('vue').PropType<string>;
|
|
192
|
+
default: undefined;
|
|
193
|
+
};
|
|
194
|
+
width: {
|
|
195
|
+
type: import('vue').PropType<string>;
|
|
196
|
+
default: undefined;
|
|
137
197
|
};
|
|
138
198
|
icon: {
|
|
139
199
|
type: import('vue').PropType<string>;
|
|
200
|
+
default: undefined;
|
|
201
|
+
};
|
|
202
|
+
bodyClass: {
|
|
203
|
+
type: import('vue').PropType<string>;
|
|
204
|
+
default: undefined;
|
|
205
|
+
};
|
|
206
|
+
modelValue: {
|
|
207
|
+
type: import('vue').PropType<boolean>;
|
|
208
|
+
required: true;
|
|
140
209
|
};
|
|
141
210
|
iconColor: {
|
|
142
211
|
type: import('vue').PropType<string>;
|
|
212
|
+
default: undefined;
|
|
143
213
|
};
|
|
144
214
|
subtitle: {
|
|
145
215
|
type: import('vue').PropType<string>;
|
|
216
|
+
default: undefined;
|
|
146
217
|
};
|
|
147
218
|
persistent: {
|
|
148
219
|
type: import('vue').PropType<boolean>;
|
|
149
220
|
};
|
|
150
|
-
|
|
221
|
+
headerClass: {
|
|
151
222
|
type: import('vue').PropType<string>;
|
|
223
|
+
default: undefined;
|
|
152
224
|
};
|
|
153
|
-
|
|
225
|
+
footerClass: {
|
|
154
226
|
type: import('vue').PropType<string>;
|
|
227
|
+
default: undefined;
|
|
228
|
+
};
|
|
229
|
+
headerDivider: {
|
|
230
|
+
type: import('vue').PropType<boolean>;
|
|
231
|
+
default: undefined;
|
|
155
232
|
};
|
|
156
233
|
}>> & {
|
|
157
234
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19,8 +19,17 @@ type __VLS_Props = {
|
|
|
19
19
|
persistent?: boolean;
|
|
20
20
|
/** Panel width (default '624px'). It never exceeds the viewport. */
|
|
21
21
|
width?: string;
|
|
22
|
+
/** Replaces the header's own inset, for a header holding a mark rather than a title row. */
|
|
23
|
+
headerClass?: string;
|
|
22
24
|
/** Replaces the body's own inset, for a dialog laying its contents out differently. */
|
|
23
25
|
bodyClass?: string;
|
|
26
|
+
/** Replaces the footer's own inset. */
|
|
27
|
+
footerClass?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The rule under the header, on unless it is passed false. A header that reads as part of the
|
|
30
|
+
* body, such as a centred mark above a title, wants none.
|
|
31
|
+
*/
|
|
32
|
+
headerDivider?: boolean;
|
|
24
33
|
};
|
|
25
34
|
declare function __VLS_template(): {
|
|
26
35
|
attrs: Partial<{}>;
|
|
@@ -32,18 +41,53 @@ declare function __VLS_template(): {
|
|
|
32
41
|
refs: {
|
|
33
42
|
dialogRef: HTMLDialogElement;
|
|
34
43
|
};
|
|
35
|
-
rootEl:
|
|
44
|
+
rootEl: any;
|
|
36
45
|
};
|
|
37
46
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
38
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {
|
|
47
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {
|
|
48
|
+
title: undefined;
|
|
49
|
+
icon: undefined;
|
|
50
|
+
iconColor: undefined;
|
|
51
|
+
subtitle: undefined;
|
|
52
|
+
width: undefined;
|
|
53
|
+
headerClass: undefined;
|
|
54
|
+
bodyClass: undefined;
|
|
55
|
+
footerClass: undefined;
|
|
56
|
+
headerDivider: undefined;
|
|
57
|
+
}>, {
|
|
39
58
|
close: () => void;
|
|
40
59
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
60
|
"update:modelValue": (value: boolean) => void;
|
|
42
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props
|
|
61
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {
|
|
62
|
+
title: undefined;
|
|
63
|
+
icon: undefined;
|
|
64
|
+
iconColor: undefined;
|
|
65
|
+
subtitle: undefined;
|
|
66
|
+
width: undefined;
|
|
67
|
+
headerClass: undefined;
|
|
68
|
+
bodyClass: undefined;
|
|
69
|
+
footerClass: undefined;
|
|
70
|
+
headerDivider: undefined;
|
|
71
|
+
}>>> & {
|
|
43
72
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44
|
-
}, {
|
|
73
|
+
}, {
|
|
74
|
+
title: string;
|
|
75
|
+
width: string;
|
|
76
|
+
icon: string;
|
|
77
|
+
bodyClass: string;
|
|
78
|
+
iconColor: string;
|
|
79
|
+
subtitle: string;
|
|
80
|
+
headerClass: string;
|
|
81
|
+
footerClass: string;
|
|
82
|
+
headerDivider: boolean;
|
|
83
|
+
}, {}>;
|
|
45
84
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
46
85
|
export default _default;
|
|
86
|
+
type __VLS_WithDefaults<P, D> = {
|
|
87
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
88
|
+
default: D[K];
|
|
89
|
+
}> : P[K];
|
|
90
|
+
};
|
|
47
91
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
48
92
|
type __VLS_TypePropsToOption<T> = {
|
|
49
93
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -58,3 +102,6 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
58
102
|
$slots: S;
|
|
59
103
|
};
|
|
60
104
|
};
|
|
105
|
+
type __VLS_PrettifyLocal<T> = {
|
|
106
|
+
[K in keyof T]: T[K];
|
|
107
|
+
} & {};
|
|
@@ -3,6 +3,17 @@ type __VLS_Props = {
|
|
|
3
3
|
title: string;
|
|
4
4
|
/** Initial open state */
|
|
5
5
|
expanded?: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Replaces the body's own inset, for a panel nested inside one that already insets its content.
|
|
8
|
+
* The column gap between the panel's children is kept either way. Use padding rather than
|
|
9
|
+
* margin: the body collapses by animating its own height, which a margin would not follow.
|
|
10
|
+
*/
|
|
11
|
+
bodyClass?: string;
|
|
12
|
+
/**
|
|
13
|
+
* 'full' (default) rules the title off across the panel; 'end' drops the rules and tucks the
|
|
14
|
+
* title against the right edge, for a secondary panel nested inside another one.
|
|
15
|
+
*/
|
|
16
|
+
headerAlign?: 'full' | 'end';
|
|
6
17
|
/** 'light' or 'dark' theme */
|
|
7
18
|
theme?: 'light' | 'dark';
|
|
8
19
|
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The bar a panel opens with: what the panel is about on the left, and the controls that act on it
|
|
3
|
+
* on the right. It only lays the two out, so the subject can be a BlueHeaderSelector, a title, or
|
|
4
|
+
* anything else the panel names itself by.
|
|
5
|
+
*/
|
|
6
|
+
type __VLS_Props = {
|
|
7
|
+
/** How tall the bar may not go under (default '56px'). */
|
|
8
|
+
height?: string;
|
|
9
|
+
/** Caps the leading cluster, so a long name cannot push the controls off the bar. */
|
|
10
|
+
leadingWidth?: string;
|
|
11
|
+
/** Overrides the bar's own fill. */
|
|
12
|
+
background?: string;
|
|
13
|
+
theme?: 'light' | 'dark';
|
|
14
|
+
};
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: {
|
|
18
|
+
leading?(_: {}): any;
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
};
|
|
21
|
+
refs: {};
|
|
22
|
+
rootEl: HTMLElement;
|
|
23
|
+
};
|
|
24
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>>, {}, {}>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
+
type __VLS_TypePropsToOption<T> = {
|
|
30
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
+
} : {
|
|
33
|
+
type: import('vue').PropType<T[K]>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BlueMenuItem } from './BlueMenu.vue';
|
|
2
|
+
/**
|
|
3
|
+
* The actions a header offers, behind the glyph that turns as they open. Sized for a header rather
|
|
4
|
+
* than for a row, which is why it is not an icon BlueButton.
|
|
5
|
+
*/
|
|
6
|
+
type __VLS_Props = {
|
|
7
|
+
items: BlueMenuItem[];
|
|
8
|
+
/** Edge of the square the glyph fills, in pixels (default 24). */
|
|
9
|
+
iconSize?: number;
|
|
10
|
+
/** Hover text, and the name assistive technology reads. */
|
|
11
|
+
tooltip?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
theme?: 'light' | 'dark';
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>>, {}, {}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
+
type __VLS_TypePropsToOption<T> = {
|
|
19
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
+
} : {
|
|
22
|
+
type: import('vue').PropType<T[K]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* One choice in the header selector.
|
|
3
|
+
*/
|
|
4
|
+
export interface BlueHeaderSelectorItem {
|
|
5
|
+
/** What the row reads. */
|
|
6
|
+
name: string;
|
|
7
|
+
value?: any;
|
|
8
|
+
/** An mdi class marking the row, such as one still being looked for. */
|
|
9
|
+
icon?: string;
|
|
10
|
+
/** A second line under the name, for what the row is rather than what it is called. */
|
|
11
|
+
subtitle?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* The subject a header is about, named above the value the way a filled form field is, so the
|
|
16
|
+
* heading and the choice occupy one control instead of a label and a dropdown side by side.
|
|
17
|
+
*/
|
|
18
|
+
type __VLS_Props = {
|
|
19
|
+
items: BlueHeaderSelectorItem[];
|
|
20
|
+
/** The name above the value. */
|
|
21
|
+
label?: string;
|
|
22
|
+
/** Stands in for the value until something is chosen. */
|
|
23
|
+
placeholder?: string;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
theme?: 'light' | 'dark';
|
|
26
|
+
modelValue?: any;
|
|
27
|
+
};
|
|
28
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
"update:modelValue": (value: any) => void;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & {
|
|
31
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
32
|
+
}, {}, {}>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
+
type __VLS_TypePropsToOption<T> = {
|
|
36
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
+
} : {
|
|
39
|
+
type: import('vue').PropType<T[K]>;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -7,6 +7,8 @@ type __VLS_Props = {
|
|
|
7
7
|
height?: string;
|
|
8
8
|
/** Main Label text on the left. */
|
|
9
9
|
label?: string;
|
|
10
|
+
/** Floor for the label column, so a column of sliders starts its tracks at one place. */
|
|
11
|
+
labelWidth?: string;
|
|
10
12
|
/** Custom text for the max label. */
|
|
11
13
|
labelMax?: string;
|
|
12
14
|
/** Custom text for the min label. */
|
|
@@ -23,7 +25,9 @@ type __VLS_Props = {
|
|
|
23
25
|
keyboardStepMultiplierLimit?: number;
|
|
24
26
|
/** 'light' or 'dark' theme. (default 'light')*/
|
|
25
27
|
theme?: 'light' | 'dark' | 'transparent';
|
|
26
|
-
/**
|
|
28
|
+
/** Weight of the value in the pill (default 'bold'). */
|
|
29
|
+
valueWeight?: 'regular' | 'bold';
|
|
30
|
+
/** How wide the track may get before the row stops giving it room (default '100%'). */
|
|
27
31
|
width?: string;
|
|
28
32
|
/** Model value for v-model */
|
|
29
33
|
modelValue: number | null;
|
|
@@ -19,8 +19,6 @@ type __VLS_Props = {
|
|
|
19
19
|
name: string;
|
|
20
20
|
/** Theme of the component. */
|
|
21
21
|
theme?: 'light' | 'dark';
|
|
22
|
-
/** Minimum width of the container. */
|
|
23
|
-
width?: string;
|
|
24
22
|
};
|
|
25
23
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
26
24
|
"update:modelValue": (value: boolean) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export { default as BlueConfirmDialog } from './components/BlueConfirmDialog.vue
|
|
|
10
10
|
export { default as BlueDialog } from './components/BlueDialog.vue';
|
|
11
11
|
export { default as BlueExpansiblePanel } from './components/BlueExpansiblePanel.vue';
|
|
12
12
|
export { default as BlueFileDrop } from './components/BlueFileDrop.vue';
|
|
13
|
+
export { default as BlueHeader } from './components/BlueHeader.vue';
|
|
14
|
+
export { default as BlueHeaderMenu } from './components/BlueHeaderMenu.vue';
|
|
15
|
+
export { default as BlueHeaderSelector, type BlueHeaderSelectorItem, } from './components/BlueHeaderSelector.vue';
|
|
13
16
|
export { default as BlueIcon } from './components/BlueIcon.vue';
|
|
14
17
|
export { default as BlueInput } from './components/BlueInput.vue';
|
|
15
18
|
export { default as BlueStepsDialog, type BlueStep } from './components/BlueStepsDialog.vue';
|
package/dist/style.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}@layer theme{:root,:host{--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-gray-100:oklch(96.7% .003 264.542);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-500:oklch(55.1% .027 264.364);--color-black:#000;--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--font-weight-medium:500;--font-weight-bold:700;--tracking-wide:.025em;--leading-tight:1.25;--leading-snug:1.375;--leading-relaxed:1.625;--radius-lg:.5rem;--ease-out:cubic-bezier(0,0,.2,1);--blur-sm:8px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.inset-x-\[18\%\]{inset-inline:18%}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-3{top:calc(var(--spacing)*3)}.top-4{top:calc(var(--spacing)*4)}.top-\[4px\]{top:4px}.right-3{right:calc(var(--spacing)*3)}.right-4{right:calc(var(--spacing)*4)}.right-\[5px\]{right:5px}.-bottom-px{bottom:-1px}.bottom-1\/2{bottom:50%}.bottom-4{bottom:calc(var(--spacing)*4)}.bottom-\[4px\]{bottom:4px}.left-4{left:calc(var(--spacing)*4)}.left-\[-20px\]{left:-20px}.left-\[5px\]{left:5px}.z-10{z-index:10}.z-50{z-index:50}.z-\[1\]{z-index:1}.z-\[20\]{z-index:20}.z-\[666\]{z-index:666}.z-\[2000\]{z-index:2000}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-3{margin-inline:calc(var(--spacing)*3)}.mx-auto{margin-inline:auto}.my-2{margin-block:calc(var(--spacing)*2)}.my-6{margin-block:calc(var(--spacing)*6)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-\[1px\]{margin-top:1px}.mt-\[2px\]{margin-top:2px}.mt-\[15px\]{margin-top:15px}.-mr-1{margin-right:calc(var(--spacing)*-1)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-6{margin-right:calc(var(--spacing)*6)}.mr-\[2px\]{margin-right:2px}.mr-\[3px\]{margin-right:3px}.-mb-\[1px\]{margin-bottom:-1px}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.ml-3{margin-left:calc(var(--spacing)*3)}.ml-auto{margin-left:auto}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.table{display:table}.h-0{height:calc(var(--spacing)*0)}.h-2{height:calc(var(--spacing)*2)}.h-3\/4{height:75%}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-\[2px\]{height:2px}.h-\[8px\]{height:8px}.h-\[16px\]{height:16px}.h-\[18px\]{height:18px}.h-\[22px\]{height:22px}.h-\[100px\]{height:100px}.h-full{height:100%}.h-px{height:1px}.max-h-\[60vh\]{max-height:60vh}.max-h-\[220px\]{max-height:220px}.\!min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh}.\!w-auto{width:auto!important}.w-0{width:calc(var(--spacing)*0)}.w-1\/2{width:50%}.w-2{width:calc(var(--spacing)*2)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-\[1px\]{width:1px}.w-\[6px\]{width:6px}.w-\[8px\]{width:8px}.w-\[16px\]{width:16px}.w-\[18px\]{width:18px}.w-\[84px\]{width:84px}.w-\[100px\]{width:100px}.w-\[170px\]{width:170px}.w-\[190px\]{width:190px}.w-\[320px\]{width:320px}.w-\[340px\]{width:340px}.w-\[420px\]{width:420px}.w-\[440px\]{width:440px}.w-\[560px\]{width:560px}.w-\[calc\(50\%-4px\)\]{width:calc(50% - 4px)}.w-fit{width:fit-content}.w-full{width:100%}.max-w-\[45\%\]{max-width:45%}.max-w-\[150px\]{max-width:150px}.max-w-\[280px\]{max-width:280px}.max-w-\[640px\]{max-width:640px}.max-w-\[680px\]{max-width:680px}.max-w-\[900px\]{max-width:900px}.max-w-\[min\(90vw\,420px\)\]{max-width:min(90vw,420px)}.max-w-full{max-width:100%}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[30px\]{min-width:30px}.min-w-\[60px\]{min-width:60px}.min-w-\[90px\]{min-width:90px}.min-w-\[120px\]{min-width:120px}.min-w-\[140px\]{min-width:140px}.min-w-\[220px\]{min-width:220px}.flex-1{flex:1}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.shrink-\[1000\]{flex-shrink:1000}.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-1\/2{--tw-translate-y:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[0\.22em\]{--tw-translate-y:.22em;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-context-menu{cursor:context-menu}.cursor-help{cursor:help}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize{resize:both}.resize-y{resize:vertical}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-10{gap:calc(var(--spacing)*10)}.gap-x-5{column-gap:calc(var(--spacing)*5)}.gap-y-2{row-gap:calc(var(--spacing)*2)}.self-center{align-self:center}.self-start{align-self:flex-start}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\[4px\]{border-radius:4px}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-t-\[8px\]{border-top-left-radius:8px;border-top-right-radius:8px}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-solid{--tw-border-style:solid;border-style:solid}.border-\[\#0000000a\]{border-color:#0000000a}.border-\[\#00000014\]{border-color:#00000014}.border-\[\#00000033\]{border-color:#0003}.border-\[\#00000044\]{border-color:#0004}.border-\[\#555555\]{border-color:#555}.border-\[\#FFFFFF22\]{border-color:#fff2}.border-\[\#dddddd\]{border-color:#ddd}.border-\[\#ffffff0a\]{border-color:#ffffff0a}.border-\[\#ffffff0d\]{border-color:#ffffff0d}.border-\[\#ffffff1a\]{border-color:#ffffff1a}.border-\[\#ffffff14\]{border-color:#ffffff14}.border-\[\#ffffff33\]{border-color:#fff3}.border-\[\#ffffff44\]{border-color:#fff4}.border-\[var\(--bluevue-accent\)\]{border-color:var(--bluevue-accent)}.border-\[var\(--bluevue-error\)\]{border-color:var(--bluevue-error)}.border-\[var\(--bluevue-primary\)\]{border-color:var(--bluevue-primary)}.border-gray-300{border-color:var(--color-gray-300)}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.bg-\[\#0C577B\]{background-color:#0c577b}.bg-\[\#1e1e1ecc\]{background-color:#1e1e1ecc}.bg-\[\#2d2d2d\]{background-color:#2d2d2d}.bg-\[\#00000006\]{background-color:#00000006}.bg-\[\#00000008\]{background-color:#00000008}.bg-\[\#9e9e9e80\]{background-color:#9e9e9e80}.bg-\[\#00000011\]{background-color:#0001}.bg-\[\#00000022\]{background-color:#0002}.bg-\[\#00000033\]{background-color:#0003}.bg-\[\#00000044\]{background-color:#0004}.bg-\[\#6699cc\]{background-color:#69c}.bg-\[\#333333f2\]{background-color:#333333f2}.bg-\[\#464646AA\]{background-color:#464646aa}.bg-\[\#15151577\]{background-color:#15151577}.bg-\[\#FFFFFF22\]{background-color:#fff2}.bg-\[\#f5f5f5cc\]{background-color:#f5f5f5cc}.bg-\[\#ffffff0d\]{background-color:#ffffff0d}.bg-\[\#ffffff1a\]{background-color:#ffffff1a}.bg-\[\#ffffff06\]{background-color:#ffffff06}.bg-\[\#ffffff08\]{background-color:#ffffff08}.bg-\[\#ffffff11\]{background-color:#fff1}.bg-\[\#ffffff22\]{background-color:#fff2}.bg-\[var\(--bluevue-accent\)\],.bg-\[var\(--bluevue-accent\)\]\/10{background-color:var(--bluevue-accent)}@supports (color:color-mix(in lab, red, red)){.bg-\[var\(--bluevue-accent\)\]\/10{background-color:color-mix(in oklab,var(--bluevue-accent)10%,transparent)}}.bg-\[var\(--bluevue-primary\)\]{background-color:var(--bluevue-primary)}.bg-\[var\(--bluevue-surface\)\]{background-color:var(--bluevue-surface)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-\[\#0C577B\]{--tw-gradient-from:#0c577b;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#07293C\]{--tw-gradient-to:#07293c;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.p-3{padding:calc(var(--spacing)*3)}.p-\[2px\]{padding:2px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-13{padding-inline:calc(var(--spacing)*13)}.px-\[9px\]{padding-inline:9px}.px-\[10px\]{padding-inline:10px}.px-\[11px\]{padding-inline:11px}.px-\[15px\]{padding-inline:15px}.px-\[19px\]{padding-inline:19px}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-10{padding-block:calc(var(--spacing)*10)}.py-\[2px\]{padding-block:2px}.py-\[6px\]{padding-block:6px}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-7{padding-top:calc(var(--spacing)*7)}.pt-\[6px\]{padding-top:6px}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-4{padding-right:calc(var(--spacing)*4)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-5{padding-bottom:calc(var(--spacing)*5)}.pl-1{padding-left:calc(var(--spacing)*1)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-3{padding-left:calc(var(--spacing)*3)}.pl-4{padding-left:calc(var(--spacing)*4)}.text-center{text-align:center}.text-end{text-align:end}.text-left{text-align:left}.text-start{text-align:start}.align-top{vertical-align:top}.font-mono{font-family:var(--font-mono)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[15px\]{font-size:15px}.text-\[16px\]{font-size:16px}.text-\[18px\]{font-size:18px}.text-\[20px\]{font-size:20px}.text-\[24px\]{font-size:24px}.text-\[26px\]{font-size:26px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.tracking-\[0\.14em\]{--tw-tracking:.14em;letter-spacing:.14em}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.whitespace-nowrap{white-space:nowrap}.text-\[\#000000cc\]{color:#000c}.text-\[\#8FD3F4\]{color:#8fd3f4}.text-\[\#00000066\]{color:#0006}.text-\[\#66BB6A\]{color:#66bb6a}.text-\[\#00000088\]{color:#0008}.text-\[\#00000099\]{color:#0009}.text-\[\#D6E9F5\]{color:#d6e9f5}.text-\[\#FFFFFF99\]{color:#fff9}.text-\[\#afafaf\]{color:#afafaf}.text-\[\#ff6b6b\]{color:#ff6b6b}.text-\[\#ffffff44\]{color:#fff4}.text-\[\#ffffff66\]{color:#fff6}.text-\[\#ffffff77\]{color:#fff7}.text-\[\#ffffff88\]{color:#fff8}.text-\[\#ffffff99\]{color:#fff9}.text-\[\#ffffffaa\]{color:#fffa}.text-\[\#ffffffcc\]{color:#fffc}.text-\[var\(--bluevue-error\)\]{color:var(--bluevue-error)}.text-black{color:var(--color-black)}.text-gray-500{color:var(--color-gray-500)}.text-white{color:var(--color-white)}.uppercase{text-transform:uppercase}.no-underline{text-decoration-line:none}.underline{text-decoration-line:underline}.decoration-dotted{text-decoration-style:dotted}.opacity-0{opacity:0}.opacity-20{opacity:.2}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.outline-2{outline-style:var(--tw-outline-style);outline-width:2px}.outline-\[var\(--bluevue-error\)\]{outline-color:var(--bluevue-error)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[width\]{transition-property:width;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.peer-focus-visible\:outline:is(:where(.peer):focus-visible~*){outline-style:var(--tw-outline-style);outline-width:1px}.peer-focus-visible\:outline-2:is(:where(.peer):focus-visible~*){outline-style:var(--tw-outline-style);outline-width:2px}.peer-focus-visible\:outline-offset-2:is(:where(.peer):focus-visible~*){outline-offset:2px}.peer-focus-visible\:outline-\[var\(--bluevue-accent\)\]:is(:where(.peer):focus-visible~*){outline-color:var(--bluevue-accent)}.placeholder\:text-\[\#00000055\]::placeholder{color:#0005}.placeholder\:text-\[\#ffffff44\]::placeholder{color:#fff4}.placeholder\:text-\[\#ffffff55\]::placeholder{color:#fff5}@media (hover:hover){.hover\:bg-\[\#0000000a\]:hover{background-color:#0000000a}.hover\:bg-\[\#00000006\]:hover{background-color:#00000006}.hover\:bg-\[\#00000011\]:hover{background-color:#0001}.hover\:bg-\[\#00000022\]:hover{background-color:#0002}.hover\:bg-\[\#333333\]:hover{background-color:#333}.hover\:bg-\[\#ffffff0a\]:hover{background-color:#ffffff0a}.hover\:bg-\[\#ffffff08\]:hover{background-color:#ffffff08}.hover\:bg-\[\#ffffff11\]:hover{background-color:#fff1}.hover\:bg-\[\#ffffff14\]:hover{background-color:#ffffff14}.hover\:bg-\[\#ffffff22\]:hover{background-color:#fff2}.hover\:bg-gray-100:hover{background-color:var(--color-gray-100)}.hover\:text-black:hover{color:var(--color-black)}.hover\:text-white:hover{color:var(--color-white)}.hover\:opacity-100:hover{opacity:1}.hover\:brightness-125:hover{--tw-brightness:brightness(125%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\:outline:focus{outline-style:var(--tw-outline-style);outline-width:1px}.focus\:outline-2:focus{outline-style:var(--tw-outline-style);outline-width:2px}.focus\:outline-offset-0:focus{outline-offset:0px}.focus\:outline-\[var\(--bluevue-accent\)\]:focus{outline-color:var(--bluevue-accent)}@media (min-width:40rem){.sm\:inline{display:inline}}}:root{--bluevue-primary:#0b5087;--bluevue-error:#cf6679;--bluevue-surface:#363636;--bluevue-accent:#69c;--bluevue-panel-bg:#1e1e1ef5;--bluevue-hairline:#ffffff14;--bluevue-elevation-1:0 2px 1px -1px #0003,0 1px 1px 0 #00000024,0 1px 3px 0 #0000001f;--bluevue-elevation-5:0 3px 5px -1px #0003,0 5px 8px 0 #00000024,0 1px 14px 0 #0000001f;--bluevue-inset-1:inset 0 1px 2px #00000056,inset 0 .5px .5px #0000003a,inset 0 -.5px 0 #ffffff0b;--bluevue-elevation-1-soft:0 2px 1px -1px #0000001a,0 1px 1px 0 #00000012,0 1px 3px 0 #0000000f}.bluevue-elevation-1{box-shadow:var(--bluevue-elevation-1)}.bluevue-elevation-5{box-shadow:var(--bluevue-elevation-5)}.bluevue-inset-1{box-shadow:var(--bluevue-inset-1)}.bluevue-elevation-1-soft{box-shadow:var(--bluevue-elevation-1-soft)}.bluevue-panel{background-color:var(--bluevue-panel-bg);-webkit-backdrop-filter:blur(8px);border:1px solid var(--bluevue-hairline);box-shadow:0 4px 4px #0003,0 8px 12px 6px #00000026}.bluevue-dialog{background:0 0;border:none;max-width:min(92vw,624px);max-height:92vh;margin:auto;padding:0;overflow:visible}.bluevue-dialog:focus,.bluevue-dialog:focus-visible,.bluevue-popover:focus,.bluevue-popover:focus-visible{outline:none}.bluevue-dialog::backdrop{-webkit-backdrop-filter:blur(8px);background:#000000e0}.bluevue-popover{background:0 0;border:none;margin:0;padding:0;position:fixed;overflow:visible}.mdi.bluevue-icon{flex-shrink:0;justify-content:center;align-items:center;line-height:1;display:inline-flex}.bluevue-icon--spin{animation:1.2s linear infinite bluevue-spin}.bluevue-spinner{box-sizing:border-box;border-style:solid;border-color:#ffffff2e;border-top-color:var(--bluevue-accent);border-radius:9999px;flex-shrink:0;animation:.8s linear infinite bluevue-spin;display:inline-block}@keyframes bluevue-spin{to{transform:rotate(360deg)}}.bluevue-progress__sweep{width:40%;animation:1.4s ease-in-out infinite bluevue-progress-sweep}@keyframes bluevue-progress-sweep{0%{transform:translate(-100%)}to{transform:translate(250%)}}@media (prefers-reduced-motion:reduce){.bluevue-icon--spin,.bluevue-spinner,.bluevue-progress__sweep{animation-duration:3s}}.bluevue-banner{box-sizing:border-box;height:26px;padding:4px;font-size:12px;line-height:16px;overflow:hidden}.bluevue-banner__icon{justify-content:center;align-items:center;width:16px;height:16px;font-size:16px;line-height:16px;display:flex}.bluevue-banner__text{text-overflow:ellipsis;white-space:nowrap;padding:0 8px;overflow:hidden}.bluevue-banner__reveal{transition:width .26s ease-in-out}.bluevue-banner--measuring .bluevue-banner__reveal{transition:none}@media (prefers-reduced-motion:reduce){.bluevue-banner__reveal{transition:none}}.bluevue-notice-enter-active,.bluevue-notice-leave-active,.bluevue-notice-move{transition:opacity .18s,transform .18s}.bluevue-notice-enter-from,.bluevue-notice-leave-to{opacity:0;transform:translateY(8px)}.bluevue-notice-leave-active{position:absolute}.bluevue-expand-enter-active,.bluevue-expand-leave-active{transition:max-height .3s;overflow:hidden}.bluevue-expand-enter-from,.bluevue-expand-leave-to{max-height:0}.bluevue-expand-enter-to,.bluevue-expand-leave-from{max-height:500px}.bluevue-loading__icon{animation:4s infinite bluevue-prop}@keyframes bluevue-prop{0%{animation-timing-function:cubic-bezier(.45,0,.55,1);transform:rotate(0)}50%{animation-timing-function:cubic-bezier(.35,0,.45,1);transform:rotate(80deg)}to{transform:rotate(1440deg)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}
|
|
2
|
+
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-gray-100:oklch(96.7% .003 264.542);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-500:oklch(55.1% .027 264.364);--color-black:#000;--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--font-weight-normal:400;--font-weight-medium:500;--font-weight-bold:700;--tracking-wide:.025em;--leading-tight:1.25;--leading-snug:1.375;--leading-relaxed:1.625;--radius-lg:.5rem;--ease-out:cubic-bezier(0,0,.2,1);--blur-sm:8px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.inset-x-\[18\%\]{inset-inline:18%}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-3{top:calc(var(--spacing)*3)}.top-4{top:calc(var(--spacing)*4)}.top-\[4px\]{top:4px}.right-2{right:calc(var(--spacing)*2)}.right-3{right:calc(var(--spacing)*3)}.right-4{right:calc(var(--spacing)*4)}.right-\[5px\]{right:5px}.right-\[8px\]{right:8px}.-bottom-px{bottom:-1px}.bottom-1\/2{bottom:50%}.bottom-4{bottom:calc(var(--spacing)*4)}.bottom-\[4px\]{bottom:4px}.left-4{left:calc(var(--spacing)*4)}.left-\[-20px\]{left:-20px}.left-\[4px\]{left:4px}.left-\[5px\]{left:5px}.left-\[8px\]{left:8px}.isolate{isolation:isolate}.z-10{z-index:10}.z-50{z-index:50}.z-\[1\]{z-index:1}.z-\[20\]{z-index:20}.z-\[666\]{z-index:666}.z-\[2000\]{z-index:2000}.col-start-3{grid-column-start:3}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-3{margin-inline:calc(var(--spacing)*3)}.mx-auto{margin-inline:auto}.my-2{margin-block:calc(var(--spacing)*2)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-\[1px\]{margin-top:1px}.mt-\[2px\]{margin-top:2px}.mt-\[5px\]{margin-top:5px}.mt-\[6px\]{margin-top:6px}.-mr-1{margin-right:calc(var(--spacing)*-1)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-6{margin-right:calc(var(--spacing)*6)}.mr-\[2px\]{margin-right:2px}.mr-\[3px\]{margin-right:3px}.-mb-\[1px\]{margin-bottom:-1px}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.ml-3{margin-left:calc(var(--spacing)*3)}.ml-auto{margin-left:auto}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.table{display:table}.h-0{height:calc(var(--spacing)*0)}.h-2{height:calc(var(--spacing)*2)}.h-3\/4{height:75%}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-\[2px\]{height:2px}.h-\[8px\]{height:8px}.h-\[16px\]{height:16px}.h-\[18px\]{height:18px}.h-\[22px\]{height:22px}.h-\[56px\]{height:56px}.h-\[100px\]{height:100px}.h-full{height:100%}.h-px{height:1px}.max-h-\[60vh\]{max-height:60vh}.max-h-\[220px\]{max-height:220px}.\!min-h-full{min-height:100%!important}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-screen{min-height:100vh}.\!w-auto{width:auto!important}.w-0{width:calc(var(--spacing)*0)}.w-1\/2{width:50%}.w-2{width:calc(var(--spacing)*2)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-\[1px\]{width:1px}.w-\[4\.5rem\]{width:4.5rem}.w-\[6px\]{width:6px}.w-\[8px\]{width:8px}.w-\[16px\]{width:16px}.w-\[18px\]{width:18px}.w-\[84px\]{width:84px}.w-\[100px\]{width:100px}.w-\[170px\]{width:170px}.w-\[190px\]{width:190px}.w-\[320px\]{width:320px}.w-\[340px\]{width:340px}.w-\[420px\]{width:420px}.w-\[440px\]{width:440px}.w-\[560px\]{width:560px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-\[45\%\]{max-width:45%}.max-w-\[150px\]{max-width:150px}.max-w-\[280px\]{max-width:280px}.max-w-\[640px\]{max-width:640px}.max-w-\[680px\]{max-width:680px}.max-w-\[900px\]{max-width:900px}.max-w-\[min\(90vw\,420px\)\]{max-width:min(90vw,420px)}.max-w-full{max-width:100%}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[30px\]{min-width:30px}.min-w-\[60px\]{min-width:60px}.min-w-\[90px\]{min-width:90px}.min-w-\[120px\]{min-width:120px}.min-w-\[130px\]{min-width:130px}.min-w-\[140px\]{min-width:140px}.min-w-\[220px\]{min-width:220px}.flex-1{flex:1}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.shrink-\[1000\]{flex-shrink:1000}.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-1\/2{--tw-translate-y:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[0\.22em\]{--tw-translate-y:.22em;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-context-menu{cursor:context-menu}.cursor-help{cursor:help}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize{resize:both}.resize-y{resize:vertical}.grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.grid-cols-\[1fr_auto_1fr\]{grid-template-columns:1fr auto 1fr}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-start{justify-content:flex-start}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-10{gap:calc(var(--spacing)*10)}.gap-\[15px\]{gap:15px}.gap-x-5{column-gap:calc(var(--spacing)*5)}.gap-y-2{row-gap:calc(var(--spacing)*2)}.self-center{align-self:center}.self-start{align-self:flex-start}.self-stretch{align-self:stretch}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\[4px\]{border-radius:4px}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-t-\[8px\]{border-top-left-radius:8px;border-top-right-radius:8px}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-solid{--tw-border-style:solid;border-style:solid}.border-\[\#0000000a\]{border-color:#0000000a}.border-\[\#00000014\]{border-color:#00000014}.border-\[\#00000033\]{border-color:#0003}.border-\[\#00000044\]{border-color:#0004}.border-\[\#00000066\]{border-color:#0006}.border-\[\#555555\]{border-color:#555}.border-\[\#FFFFFF22\]{border-color:#fff2}.border-\[\#dddddd\]{border-color:#ddd}.border-\[\#ffffff0a\]{border-color:#ffffff0a}.border-\[\#ffffff0d\]{border-color:#ffffff0d}.border-\[\#ffffff1a\]{border-color:#ffffff1a}.border-\[\#ffffff14\]{border-color:#ffffff14}.border-\[\#ffffff33\]{border-color:#fff3}.border-\[\#ffffff44\]{border-color:#fff4}.border-\[\#ffffff88\]{border-color:#fff8}.border-\[var\(--bluevue-accent\)\]{border-color:var(--bluevue-accent)}.border-\[var\(--bluevue-error\)\]{border-color:var(--bluevue-error)}.border-\[var\(--bluevue-hairline\)\]{border-color:var(--bluevue-hairline)}.border-\[var\(--bluevue-primary\)\]{border-color:var(--bluevue-primary)}.border-gray-300{border-color:var(--color-gray-300)}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.bg-\[\#0C577B\]{background-color:#0c577b}.bg-\[\#1e1e1ecc\]{background-color:#1e1e1ecc}.bg-\[\#2d2d2d\]{background-color:#2d2d2d}.bg-\[\#00000006\]{background-color:#00000006}.bg-\[\#00000008\]{background-color:#00000008}.bg-\[\#9e9e9e80\]{background-color:#9e9e9e80}.bg-\[\#00000011\]{background-color:#0001}.bg-\[\#00000022\]{background-color:#0002}.bg-\[\#00000033\]{background-color:#0003}.bg-\[\#00000044\]{background-color:#0004}.bg-\[\#6699cc\]{background-color:#69c}.bg-\[\#333333f2\]{background-color:#333333f2}.bg-\[\#464646AA\]{background-color:#464646aa}.bg-\[\#15151577\]{background-color:#15151577}.bg-\[\#FFFFFF22\]{background-color:#fff2}.bg-\[\#f5f5f5cc\]{background-color:#f5f5f5cc}.bg-\[\#ffffff0d\]{background-color:#ffffff0d}.bg-\[\#ffffff1a\]{background-color:#ffffff1a}.bg-\[\#ffffff06\]{background-color:#ffffff06}.bg-\[\#ffffff08\]{background-color:#ffffff08}.bg-\[\#ffffff11\]{background-color:#fff1}.bg-\[\#ffffff22\]{background-color:#fff2}.bg-\[var\(--bluevue-accent\)\],.bg-\[var\(--bluevue-accent\)\]\/10{background-color:var(--bluevue-accent)}@supports (color:color-mix(in lab, red, red)){.bg-\[var\(--bluevue-accent\)\]\/10{background-color:color-mix(in oklab,var(--bluevue-accent)10%,transparent)}}.bg-\[var\(--bluevue-primary\)\]{background-color:var(--bluevue-primary)}.bg-\[var\(--bluevue-surface\)\]{background-color:var(--bluevue-surface)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-\[\#0C577B\]{--tw-gradient-from:#0c577b;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#07293C\]{--tw-gradient-to:#07293c;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.p-\[2px\]{padding:2px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.px-13{padding-inline:calc(var(--spacing)*13)}.px-\[5px\]{padding-inline:5px}.px-\[7px\]{padding-inline:7px}.px-\[8px\]{padding-inline:8px}.px-\[10px\]{padding-inline:10px}.px-\[12px\]{padding-inline:12px}.px-\[16px\]{padding-inline:16px}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-10{padding-block:calc(var(--spacing)*10)}.py-\[2px\]{padding-block:2px}.py-\[6px\]{padding-block:6px}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-7{padding-top:calc(var(--spacing)*7)}.pt-\[6px\]{padding-top:6px}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-4{padding-right:calc(var(--spacing)*4)}.pr-8{padding-right:calc(var(--spacing)*8)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-5{padding-bottom:calc(var(--spacing)*5)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pl-1{padding-left:calc(var(--spacing)*1)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-3{padding-left:calc(var(--spacing)*3)}.pl-4{padding-left:calc(var(--spacing)*4)}.text-center{text-align:center}.text-end{text-align:end}.text-left{text-align:left}.text-start{text-align:start}.align-top{vertical-align:top}.font-mono{font-family:var(--font-mono)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[15px\]{font-size:15px}.text-\[16px\]{font-size:16px}.text-\[18px\]{font-size:18px}.text-\[20px\]{font-size:20px}.text-\[24px\]{font-size:24px}.text-\[26px\]{font-size:26px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.tracking-\[0\.14em\]{--tw-tracking:.14em;letter-spacing:.14em}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.whitespace-nowrap{white-space:nowrap}.text-\[\#000000cc\]{color:#000c}.text-\[\#8FD3F4\]{color:#8fd3f4}.text-\[\#00000066\]{color:#0006}.text-\[\#66BB6A\]{color:#66bb6a}.text-\[\#00000088\]{color:#0008}.text-\[\#00000099\]{color:#0009}.text-\[\#D6E9F5\]{color:#d6e9f5}.text-\[\#FFFFFF99\]{color:#fff9}.text-\[\#afafaf\]{color:#afafaf}.text-\[\#ff6b6b\]{color:#ff6b6b}.text-\[\#ffffff44\]{color:#fff4}.text-\[\#ffffff66\]{color:#fff6}.text-\[\#ffffff77\]{color:#fff7}.text-\[\#ffffff88\]{color:#fff8}.text-\[\#ffffff99\]{color:#fff9}.text-\[\#ffffffaa\]{color:#fffa}.text-\[\#ffffffb3\]{color:#ffffffb3}.text-\[\#ffffffcc\]{color:#fffc}.text-\[var\(--bluevue-error\)\]{color:var(--bluevue-error)}.text-black{color:var(--color-black)}.text-gray-500{color:var(--color-gray-500)}.text-white{color:var(--color-white)}.uppercase{text-transform:uppercase}.no-underline{text-decoration-line:none}.underline{text-decoration-line:underline}.decoration-dotted{text-decoration-style:dotted}.opacity-0{opacity:0}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.outline-2{outline-style:var(--tw-outline-style);outline-width:2px}.outline-\[var\(--bluevue-error\)\]{outline-color:var(--bluevue-error)}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[width\]{transition-property:width;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.peer-focus-visible\:outline:is(:where(.peer):focus-visible~*){outline-style:var(--tw-outline-style);outline-width:1px}.peer-focus-visible\:outline-2:is(:where(.peer):focus-visible~*){outline-style:var(--tw-outline-style);outline-width:2px}.peer-focus-visible\:outline-offset-2:is(:where(.peer):focus-visible~*){outline-offset:2px}.peer-focus-visible\:outline-\[var\(--bluevue-accent\)\]:is(:where(.peer):focus-visible~*){outline-color:var(--bluevue-accent)}.placeholder\:text-\[\#00000055\]::placeholder{color:#0005}.placeholder\:text-\[\#ffffff44\]::placeholder{color:#fff4}.placeholder\:text-\[\#ffffff55\]::placeholder{color:#fff5}@media (hover:hover){.hover\:bg-\[\#0000000a\]:hover{background-color:#0000000a}.hover\:bg-\[\#00000006\]:hover{background-color:#00000006}.hover\:bg-\[\#00000008\]:hover{background-color:#00000008}.hover\:bg-\[\#00000011\]:hover{background-color:#0001}.hover\:bg-\[\#00000022\]:hover{background-color:#0002}.hover\:bg-\[\#333333\]:hover{background-color:#333}.hover\:bg-\[\#ffffff0a\]:hover{background-color:#ffffff0a}.hover\:bg-\[\#ffffff08\]:hover{background-color:#ffffff08}.hover\:bg-\[\#ffffff11\]:hover{background-color:#fff1}.hover\:bg-\[\#ffffff14\]:hover{background-color:#ffffff14}.hover\:bg-\[\#ffffff22\]:hover{background-color:#fff2}.hover\:bg-gray-100:hover{background-color:var(--color-gray-100)}.hover\:text-black:hover{color:var(--color-black)}.hover\:text-white:hover{color:var(--color-white)}.hover\:opacity-100:hover{opacity:1}.hover\:brightness-125:hover{--tw-brightness:brightness(125%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\:outline:focus{outline-style:var(--tw-outline-style);outline-width:1px}.focus\:outline-2:focus{outline-style:var(--tw-outline-style);outline-width:2px}.focus\:outline-offset-0:focus{outline-offset:0px}.focus\:outline-\[var\(--bluevue-accent\)\]:focus{outline-color:var(--bluevue-accent)}@media (min-width:40rem){.sm\:inline{display:inline}}}:root{--bluevue-primary:#0b5087;--bluevue-error:#cf6679;--bluevue-surface:#363636;--bluevue-accent:#69c;--bluevue-panel-bg:#1e1e1ef5;--bluevue-hairline:#ffffff14;--bluevue-elevation-1:0 2px 1px -1px #0003,0 1px 1px 0 #00000024,0 1px 3px 0 #0000001f;--bluevue-elevation-2:0 3px 1px -2px #0003,0 2px 2px 0 #00000024,0 1px 5px 0 #0000001f;--bluevue-elevation-3:0 3px 3px -2px #0003,0 3px 4px 0 #00000024,0 1px 8px 0 #0000001f;--bluevue-elevation-4:0 2px 4px -1px #0003,0 4px 5px 0 #00000024,0 1px 10px 0 #0000001f;--bluevue-elevation-5:0 3px 5px -1px #0003,0 5px 8px 0 #00000024,0 1px 14px 0 #0000001f;--bluevue-inset-1:inset 0 1px 2px #00000056,inset 0 .5px .5px #0000003a,inset 0 -.5px 0 #ffffff0b;--bluevue-elevation-1-soft:0 2px 1px -1px #0000001a,0 1px 1px 0 #00000012,0 1px 3px 0 #0000000f}.bluevue-elevation-1{box-shadow:var(--bluevue-elevation-1)}.bluevue-elevation-2{box-shadow:var(--bluevue-elevation-2)}.bluevue-elevation-3{box-shadow:var(--bluevue-elevation-3)}.bluevue-elevation-4{box-shadow:var(--bluevue-elevation-4)}.bluevue-elevation-5{box-shadow:var(--bluevue-elevation-5)}.bluevue-inset-1{box-shadow:var(--bluevue-inset-1)}.bluevue-elevation-1-soft{box-shadow:var(--bluevue-elevation-1-soft)}.bluevue-panel{background-color:var(--bluevue-panel-bg);-webkit-backdrop-filter:blur(8px);border:1px solid var(--bluevue-hairline);box-shadow:0 4px 4px #0003,0 8px 12px 6px #00000026}.bluevue-dialog{background:0 0;border:none;max-width:min(92vw,624px);max-height:92vh;margin:auto;padding:0;overflow:visible}.bluevue-dialog[open]{flex-direction:column;display:flex}.bluevue-dialog:focus,.bluevue-dialog:focus-visible,.bluevue-popover:focus,.bluevue-popover:focus-visible{outline:none}.bluevue-dialog::backdrop{-webkit-backdrop-filter:blur(8px);background:#000000e0}.bluevue-popover{background:0 0;border:none;margin:0;padding:0;position:fixed;overflow:visible}.bluevue-popover--dimmed::backdrop{-webkit-backdrop-filter:blur(8px);background:#00000070}.mdi.bluevue-icon{flex-shrink:0;justify-content:center;align-items:center;line-height:1;display:inline-flex}.bluevue-icon--spin{animation:1.2s linear infinite bluevue-spin}.bluevue-spinner{box-sizing:border-box;border-style:solid;border-color:#ffffff2e;border-top-color:var(--bluevue-accent);border-radius:9999px;flex-shrink:0;animation:.8s linear infinite bluevue-spin;display:inline-block}@keyframes bluevue-spin{to{transform:rotate(360deg)}}.bluevue-progress__sweep{width:40%;animation:1.4s ease-in-out infinite bluevue-progress-sweep}@keyframes bluevue-progress-sweep{0%{transform:translate(-100%)}to{transform:translate(250%)}}@media (prefers-reduced-motion:reduce){.bluevue-icon--spin,.bluevue-spinner,.bluevue-progress__sweep{animation-duration:3s}}.bluevue-banner{box-sizing:border-box;height:26px;padding:4px;font-size:12px;line-height:16px;overflow:hidden}.bluevue-banner__icon{justify-content:center;align-items:center;width:16px;height:16px;font-size:16px;line-height:16px;display:flex}.bluevue-banner__text{text-overflow:ellipsis;white-space:nowrap;padding:0 8px;overflow:hidden}.bluevue-banner__reveal{transition:width .26s ease-in-out}.bluevue-banner--measuring .bluevue-banner__reveal{transition:none}@media (prefers-reduced-motion:reduce){.bluevue-banner__reveal{transition:none}}.bluevue-notice-enter-active,.bluevue-notice-leave-active,.bluevue-notice-move{transition:opacity .18s,transform .18s}.bluevue-notice-enter-from,.bluevue-notice-leave-to{opacity:0;transform:translateY(8px)}.bluevue-notice-leave-active{position:absolute}.bluevue-expand-enter-active,.bluevue-expand-leave-active{transition:max-height .3s;overflow:hidden}.bluevue-loading__icon{animation:4s infinite bluevue-prop}@keyframes bluevue-prop{0%{animation-timing-function:cubic-bezier(.45,0,.55,1);transform:rotate(0)}50%{animation-timing-function:cubic-bezier(.35,0,.45,1);transform:rotate(80deg)}to{transform:rotate(1440deg)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}
|