fluekit 1.6.2 → 1.7.1
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/AspectRatio.d.ts +25 -0
- package/dist/Color.d.ts +107 -0
- package/dist/Colors.d.ts +316 -0
- package/dist/ConstrainedBox.d.ts +21 -0
- package/dist/CupertinoColors.d.ts +48 -0
- package/dist/ImageColorBackground.d.ts +47 -0
- package/dist/ImageUtils.d.ts +11 -0
- package/dist/ScrollView.d.ts +3 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +582 -26
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
/**
|
|
3
|
+
* The aspect ratio to attempt to use.
|
|
4
|
+
*
|
|
5
|
+
* The aspect ratio is expressed as a ratio of width to height. For example, a 16:9 width:height aspect ratio would have a value of 16.0/9.0.
|
|
6
|
+
*/
|
|
7
|
+
aspectRatio: number;
|
|
8
|
+
}
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {};
|
|
15
|
+
rootEl: HTMLDivElement;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
package/dist/Color.d.ts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A color represented by red, green, blue, and alpha channels.
|
|
3
|
+
*
|
|
4
|
+
* This class mimics Flutter's `Color` class API while ensuring compatibility with
|
|
5
|
+
* web color strings (CSS).
|
|
6
|
+
*/
|
|
7
|
+
export declare class Color {
|
|
8
|
+
private readonly _r;
|
|
9
|
+
private readonly _g;
|
|
10
|
+
private readonly _b;
|
|
11
|
+
private readonly _a;
|
|
12
|
+
/**
|
|
13
|
+
* Construct a Color from an integer value.
|
|
14
|
+
*
|
|
15
|
+
* @param value A 32-bit integer value (0xAARRGGBB).
|
|
16
|
+
*/
|
|
17
|
+
constructor(value: number);
|
|
18
|
+
/**
|
|
19
|
+
* Construct a Color from ARGB values.
|
|
20
|
+
*/
|
|
21
|
+
static fromARGB(a: number, r: number, g: number, b: number): Color;
|
|
22
|
+
/**
|
|
23
|
+
* Construct a Color from RGBO values (opacity 0.0 to 1.0).
|
|
24
|
+
*/
|
|
25
|
+
static fromRGBO(r: number, g: number, b: number, opacity: number): Color;
|
|
26
|
+
/**
|
|
27
|
+
* Alias for fromARGB with 255 alpha default, but here we can just use fromARGB
|
|
28
|
+
* or a dedicated helper.
|
|
29
|
+
*/
|
|
30
|
+
static fromRGB(r: number, g: number, b: number, a?: number): Color;
|
|
31
|
+
/**
|
|
32
|
+
* Parse a CSS color string into a Color object.
|
|
33
|
+
* Supports hex (#RGB, #RRGGBB, #RRGGBBAA) and rgb/rgba().
|
|
34
|
+
*/
|
|
35
|
+
static fromString(color: string): Color;
|
|
36
|
+
/**
|
|
37
|
+
* The alpha channel of this color in an 8-bit value (0-255).
|
|
38
|
+
*/
|
|
39
|
+
get alpha(): number;
|
|
40
|
+
/**
|
|
41
|
+
* The opacity of this color (0.0 to 1.0).
|
|
42
|
+
*/
|
|
43
|
+
get opacity(): number;
|
|
44
|
+
/**
|
|
45
|
+
* The red channel of this color in an 8-bit value (0-255).
|
|
46
|
+
*/
|
|
47
|
+
get red(): number;
|
|
48
|
+
/**
|
|
49
|
+
* The green channel of this color in an 8-bit value (0-255).
|
|
50
|
+
*/
|
|
51
|
+
get green(): number;
|
|
52
|
+
/**
|
|
53
|
+
* The blue channel of this color in an 8-bit value (0-255).
|
|
54
|
+
*/
|
|
55
|
+
get blue(): number;
|
|
56
|
+
/**
|
|
57
|
+
* Returns a new color that matches this color with the alpha channel replaced with a (which ranges from 0 to 255).
|
|
58
|
+
*/
|
|
59
|
+
withAlpha(a: number): Color;
|
|
60
|
+
/**
|
|
61
|
+
* Returns a new color that matches this color with the opacity replaced with opacity (which ranges from 0.0 to 1.0).
|
|
62
|
+
*/
|
|
63
|
+
withOpacity(opacity: number): Color;
|
|
64
|
+
/**
|
|
65
|
+
* Returns a new color that matches this color with the red channel replaced with r (which ranges from 0 to 255).
|
|
66
|
+
*/
|
|
67
|
+
withRed(r: number): Color;
|
|
68
|
+
/**
|
|
69
|
+
* Returns a new color that matches this color with the green channel replaced with g (which ranges from 0 to 255).
|
|
70
|
+
*/
|
|
71
|
+
withGreen(g: number): Color;
|
|
72
|
+
/**
|
|
73
|
+
* Returns a new color that matches this color with the blue channel replaced with b (which ranges from 0 to 255).
|
|
74
|
+
*/
|
|
75
|
+
withBlue(b: number): Color;
|
|
76
|
+
/**
|
|
77
|
+
* Returns a relative luminance of the color (0.0 to 1.0).
|
|
78
|
+
*/
|
|
79
|
+
computeLuminance(): number;
|
|
80
|
+
/**
|
|
81
|
+
* Returns a CSS string representation of the color (rgba).
|
|
82
|
+
* This allows the Color object to be used directly in style bindings.
|
|
83
|
+
*/
|
|
84
|
+
toString(): string;
|
|
85
|
+
/**
|
|
86
|
+
* Returns a 32-bit integer representing this color (0xAARRGGBB).
|
|
87
|
+
*/
|
|
88
|
+
get value(): number;
|
|
89
|
+
}
|
|
90
|
+
export declare function withOpacity(color: string | Color, opacity: number): string;
|
|
91
|
+
export declare function withAlpha(color: string | Color, alpha: number): string;
|
|
92
|
+
export declare function withRed(color: string | Color, red: number): string;
|
|
93
|
+
export declare function withGreen(color: string | Color, green: number): string;
|
|
94
|
+
export declare function withBlue(color: string | Color, blue: number): string;
|
|
95
|
+
export declare function computeLuminance(color: string | Color): number;
|
|
96
|
+
export declare function lighten(color: string | Color, amount: number): string;
|
|
97
|
+
export declare function darken(color: string | Color, amount: number): string;
|
|
98
|
+
export declare const ColorUtils: {
|
|
99
|
+
withOpacity: typeof withOpacity;
|
|
100
|
+
withAlpha: typeof withAlpha;
|
|
101
|
+
withRed: typeof withRed;
|
|
102
|
+
withGreen: typeof withGreen;
|
|
103
|
+
withBlue: typeof withBlue;
|
|
104
|
+
lighten: typeof lighten;
|
|
105
|
+
darken: typeof darken;
|
|
106
|
+
computeLuminance: typeof computeLuminance;
|
|
107
|
+
};
|
package/dist/Colors.d.ts
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
import { Color } from './Color';
|
|
2
|
+
export declare const Colors: {
|
|
3
|
+
withOpacity: (color: Color | string, opacity: number) => Color;
|
|
4
|
+
withAlpha: (color: Color | string, alpha: number) => Color;
|
|
5
|
+
withRed: (color: Color | string, red: number) => Color;
|
|
6
|
+
withGreen: (color: Color | string, green: number) => Color;
|
|
7
|
+
withBlue: (color: Color | string, blue: number) => Color;
|
|
8
|
+
computeLuminance: (color: Color | string) => number;
|
|
9
|
+
lighten: (color: Color | string, amount: number) => Color;
|
|
10
|
+
transparent: Color;
|
|
11
|
+
black: Color;
|
|
12
|
+
black87: Color;
|
|
13
|
+
black54: Color;
|
|
14
|
+
black45: Color;
|
|
15
|
+
black38: Color;
|
|
16
|
+
black26: Color;
|
|
17
|
+
black12: Color;
|
|
18
|
+
white: Color;
|
|
19
|
+
white70: Color;
|
|
20
|
+
white60: Color;
|
|
21
|
+
white54: Color;
|
|
22
|
+
white38: Color;
|
|
23
|
+
white30: Color;
|
|
24
|
+
white24: Color;
|
|
25
|
+
white12: Color;
|
|
26
|
+
white10: Color;
|
|
27
|
+
red: Color;
|
|
28
|
+
red50: Color;
|
|
29
|
+
red100: Color;
|
|
30
|
+
red200: Color;
|
|
31
|
+
red300: Color;
|
|
32
|
+
red400: Color;
|
|
33
|
+
red500: Color;
|
|
34
|
+
red600: Color;
|
|
35
|
+
red700: Color;
|
|
36
|
+
red800: Color;
|
|
37
|
+
red900: Color;
|
|
38
|
+
redAccent: Color;
|
|
39
|
+
redAccent100: Color;
|
|
40
|
+
redAccent200: Color;
|
|
41
|
+
redAccent400: Color;
|
|
42
|
+
redAccent700: Color;
|
|
43
|
+
pink: Color;
|
|
44
|
+
pink50: Color;
|
|
45
|
+
pink100: Color;
|
|
46
|
+
pink200: Color;
|
|
47
|
+
pink300: Color;
|
|
48
|
+
pink400: Color;
|
|
49
|
+
pink500: Color;
|
|
50
|
+
pink600: Color;
|
|
51
|
+
pink700: Color;
|
|
52
|
+
pink800: Color;
|
|
53
|
+
pink900: Color;
|
|
54
|
+
pinkAccent: Color;
|
|
55
|
+
pinkAccent100: Color;
|
|
56
|
+
pinkAccent200: Color;
|
|
57
|
+
pinkAccent400: Color;
|
|
58
|
+
pinkAccent700: Color;
|
|
59
|
+
purple: Color;
|
|
60
|
+
purple50: Color;
|
|
61
|
+
purple100: Color;
|
|
62
|
+
purple200: Color;
|
|
63
|
+
purple300: Color;
|
|
64
|
+
purple400: Color;
|
|
65
|
+
purple500: Color;
|
|
66
|
+
purple600: Color;
|
|
67
|
+
purple700: Color;
|
|
68
|
+
purple800: Color;
|
|
69
|
+
purple900: Color;
|
|
70
|
+
purpleAccent: Color;
|
|
71
|
+
purpleAccent100: Color;
|
|
72
|
+
purpleAccent200: Color;
|
|
73
|
+
purpleAccent400: Color;
|
|
74
|
+
purpleAccent700: Color;
|
|
75
|
+
deepPurple: Color;
|
|
76
|
+
deepPurple50: Color;
|
|
77
|
+
deepPurple100: Color;
|
|
78
|
+
deepPurple200: Color;
|
|
79
|
+
deepPurple300: Color;
|
|
80
|
+
deepPurple400: Color;
|
|
81
|
+
deepPurple500: Color;
|
|
82
|
+
deepPurple600: Color;
|
|
83
|
+
deepPurple700: Color;
|
|
84
|
+
deepPurple800: Color;
|
|
85
|
+
deepPurple900: Color;
|
|
86
|
+
deepPurpleAccent: Color;
|
|
87
|
+
deepPurpleAccent100: Color;
|
|
88
|
+
deepPurpleAccent200: Color;
|
|
89
|
+
deepPurpleAccent400: Color;
|
|
90
|
+
deepPurpleAccent700: Color;
|
|
91
|
+
indigo: Color;
|
|
92
|
+
indigo50: Color;
|
|
93
|
+
indigo100: Color;
|
|
94
|
+
indigo200: Color;
|
|
95
|
+
indigo300: Color;
|
|
96
|
+
indigo400: Color;
|
|
97
|
+
indigo500: Color;
|
|
98
|
+
indigo600: Color;
|
|
99
|
+
indigo700: Color;
|
|
100
|
+
indigo800: Color;
|
|
101
|
+
indigo900: Color;
|
|
102
|
+
indigoAccent: Color;
|
|
103
|
+
indigoAccent100: Color;
|
|
104
|
+
indigoAccent200: Color;
|
|
105
|
+
indigoAccent400: Color;
|
|
106
|
+
indigoAccent700: Color;
|
|
107
|
+
blue: Color;
|
|
108
|
+
blue50: Color;
|
|
109
|
+
blue100: Color;
|
|
110
|
+
blue200: Color;
|
|
111
|
+
blue300: Color;
|
|
112
|
+
blue400: Color;
|
|
113
|
+
blue500: Color;
|
|
114
|
+
blue600: Color;
|
|
115
|
+
blue700: Color;
|
|
116
|
+
blue800: Color;
|
|
117
|
+
blue900: Color;
|
|
118
|
+
blueAccent: Color;
|
|
119
|
+
blueAccent100: Color;
|
|
120
|
+
blueAccent200: Color;
|
|
121
|
+
blueAccent400: Color;
|
|
122
|
+
blueAccent700: Color;
|
|
123
|
+
lightBlue: Color;
|
|
124
|
+
lightBlue50: Color;
|
|
125
|
+
lightBlue100: Color;
|
|
126
|
+
lightBlue200: Color;
|
|
127
|
+
lightBlue300: Color;
|
|
128
|
+
lightBlue400: Color;
|
|
129
|
+
lightBlue500: Color;
|
|
130
|
+
lightBlue600: Color;
|
|
131
|
+
lightBlue700: Color;
|
|
132
|
+
lightBlue800: Color;
|
|
133
|
+
lightBlue900: Color;
|
|
134
|
+
lightBlueAccent: Color;
|
|
135
|
+
lightBlueAccent100: Color;
|
|
136
|
+
lightBlueAccent200: Color;
|
|
137
|
+
lightBlueAccent400: Color;
|
|
138
|
+
lightBlueAccent700: Color;
|
|
139
|
+
cyan: Color;
|
|
140
|
+
cyan50: Color;
|
|
141
|
+
cyan100: Color;
|
|
142
|
+
cyan200: Color;
|
|
143
|
+
cyan300: Color;
|
|
144
|
+
cyan400: Color;
|
|
145
|
+
cyan500: Color;
|
|
146
|
+
cyan600: Color;
|
|
147
|
+
cyan700: Color;
|
|
148
|
+
cyan800: Color;
|
|
149
|
+
cyan900: Color;
|
|
150
|
+
cyanAccent: Color;
|
|
151
|
+
cyanAccent100: Color;
|
|
152
|
+
cyanAccent200: Color;
|
|
153
|
+
cyanAccent400: Color;
|
|
154
|
+
cyanAccent700: Color;
|
|
155
|
+
teal: Color;
|
|
156
|
+
teal50: Color;
|
|
157
|
+
teal100: Color;
|
|
158
|
+
teal200: Color;
|
|
159
|
+
teal300: Color;
|
|
160
|
+
teal400: Color;
|
|
161
|
+
teal500: Color;
|
|
162
|
+
teal600: Color;
|
|
163
|
+
teal700: Color;
|
|
164
|
+
teal800: Color;
|
|
165
|
+
teal900: Color;
|
|
166
|
+
tealAccent: Color;
|
|
167
|
+
tealAccent100: Color;
|
|
168
|
+
tealAccent200: Color;
|
|
169
|
+
tealAccent400: Color;
|
|
170
|
+
tealAccent700: Color;
|
|
171
|
+
green: Color;
|
|
172
|
+
green50: Color;
|
|
173
|
+
green100: Color;
|
|
174
|
+
green200: Color;
|
|
175
|
+
green300: Color;
|
|
176
|
+
green400: Color;
|
|
177
|
+
green500: Color;
|
|
178
|
+
green600: Color;
|
|
179
|
+
green700: Color;
|
|
180
|
+
green800: Color;
|
|
181
|
+
green900: Color;
|
|
182
|
+
greenAccent: Color;
|
|
183
|
+
greenAccent100: Color;
|
|
184
|
+
greenAccent200: Color;
|
|
185
|
+
greenAccent400: Color;
|
|
186
|
+
greenAccent700: Color;
|
|
187
|
+
lightGreen: Color;
|
|
188
|
+
lightGreen50: Color;
|
|
189
|
+
lightGreen100: Color;
|
|
190
|
+
lightGreen200: Color;
|
|
191
|
+
lightGreen300: Color;
|
|
192
|
+
lightGreen400: Color;
|
|
193
|
+
lightGreen500: Color;
|
|
194
|
+
lightGreen600: Color;
|
|
195
|
+
lightGreen700: Color;
|
|
196
|
+
lightGreen800: Color;
|
|
197
|
+
lightGreen900: Color;
|
|
198
|
+
lightGreenAccent: Color;
|
|
199
|
+
lightGreenAccent100: Color;
|
|
200
|
+
lightGreenAccent200: Color;
|
|
201
|
+
lightGreenAccent400: Color;
|
|
202
|
+
lightGreenAccent700: Color;
|
|
203
|
+
lime: Color;
|
|
204
|
+
lime50: Color;
|
|
205
|
+
lime100: Color;
|
|
206
|
+
lime200: Color;
|
|
207
|
+
lime300: Color;
|
|
208
|
+
lime400: Color;
|
|
209
|
+
lime500: Color;
|
|
210
|
+
lime600: Color;
|
|
211
|
+
lime700: Color;
|
|
212
|
+
lime800: Color;
|
|
213
|
+
lime900: Color;
|
|
214
|
+
limeAccent: Color;
|
|
215
|
+
limeAccent100: Color;
|
|
216
|
+
limeAccent200: Color;
|
|
217
|
+
limeAccent400: Color;
|
|
218
|
+
limeAccent700: Color;
|
|
219
|
+
yellow: Color;
|
|
220
|
+
yellow50: Color;
|
|
221
|
+
yellow100: Color;
|
|
222
|
+
yellow200: Color;
|
|
223
|
+
yellow300: Color;
|
|
224
|
+
yellow400: Color;
|
|
225
|
+
yellow500: Color;
|
|
226
|
+
yellow600: Color;
|
|
227
|
+
yellow700: Color;
|
|
228
|
+
yellow800: Color;
|
|
229
|
+
yellow900: Color;
|
|
230
|
+
yellowAccent: Color;
|
|
231
|
+
yellowAccent100: Color;
|
|
232
|
+
yellowAccent200: Color;
|
|
233
|
+
yellowAccent400: Color;
|
|
234
|
+
yellowAccent700: Color;
|
|
235
|
+
amber: Color;
|
|
236
|
+
amber50: Color;
|
|
237
|
+
amber100: Color;
|
|
238
|
+
amber200: Color;
|
|
239
|
+
amber300: Color;
|
|
240
|
+
amber400: Color;
|
|
241
|
+
amber500: Color;
|
|
242
|
+
amber600: Color;
|
|
243
|
+
amber700: Color;
|
|
244
|
+
amber800: Color;
|
|
245
|
+
amber900: Color;
|
|
246
|
+
amberAccent: Color;
|
|
247
|
+
amberAccent100: Color;
|
|
248
|
+
amberAccent200: Color;
|
|
249
|
+
amberAccent400: Color;
|
|
250
|
+
amberAccent700: Color;
|
|
251
|
+
orange: Color;
|
|
252
|
+
orange50: Color;
|
|
253
|
+
orange100: Color;
|
|
254
|
+
orange200: Color;
|
|
255
|
+
orange300: Color;
|
|
256
|
+
orange400: Color;
|
|
257
|
+
orange500: Color;
|
|
258
|
+
orange600: Color;
|
|
259
|
+
orange700: Color;
|
|
260
|
+
orange800: Color;
|
|
261
|
+
orange900: Color;
|
|
262
|
+
orangeAccent: Color;
|
|
263
|
+
orangeAccent100: Color;
|
|
264
|
+
orangeAccent200: Color;
|
|
265
|
+
orangeAccent400: Color;
|
|
266
|
+
orangeAccent700: Color;
|
|
267
|
+
deepOrange: Color;
|
|
268
|
+
deepOrange50: Color;
|
|
269
|
+
deepOrange100: Color;
|
|
270
|
+
deepOrange200: Color;
|
|
271
|
+
deepOrange300: Color;
|
|
272
|
+
deepOrange400: Color;
|
|
273
|
+
deepOrange500: Color;
|
|
274
|
+
deepOrange600: Color;
|
|
275
|
+
deepOrange700: Color;
|
|
276
|
+
deepOrange800: Color;
|
|
277
|
+
deepOrange900: Color;
|
|
278
|
+
deepOrangeAccent: Color;
|
|
279
|
+
deepOrangeAccent100: Color;
|
|
280
|
+
deepOrangeAccent200: Color;
|
|
281
|
+
deepOrangeAccent400: Color;
|
|
282
|
+
deepOrangeAccent700: Color;
|
|
283
|
+
brown: Color;
|
|
284
|
+
brown50: Color;
|
|
285
|
+
brown100: Color;
|
|
286
|
+
brown200: Color;
|
|
287
|
+
brown300: Color;
|
|
288
|
+
brown400: Color;
|
|
289
|
+
brown500: Color;
|
|
290
|
+
brown600: Color;
|
|
291
|
+
brown700: Color;
|
|
292
|
+
brown800: Color;
|
|
293
|
+
brown900: Color;
|
|
294
|
+
grey: Color;
|
|
295
|
+
grey50: Color;
|
|
296
|
+
grey100: Color;
|
|
297
|
+
grey200: Color;
|
|
298
|
+
grey300: Color;
|
|
299
|
+
grey400: Color;
|
|
300
|
+
grey500: Color;
|
|
301
|
+
grey600: Color;
|
|
302
|
+
grey700: Color;
|
|
303
|
+
grey800: Color;
|
|
304
|
+
grey900: Color;
|
|
305
|
+
blueGrey: Color;
|
|
306
|
+
blueGrey50: Color;
|
|
307
|
+
blueGrey100: Color;
|
|
308
|
+
blueGrey200: Color;
|
|
309
|
+
blueGrey300: Color;
|
|
310
|
+
blueGrey400: Color;
|
|
311
|
+
blueGrey500: Color;
|
|
312
|
+
blueGrey600: Color;
|
|
313
|
+
blueGrey700: Color;
|
|
314
|
+
blueGrey800: Color;
|
|
315
|
+
blueGrey900: Color;
|
|
316
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BoxConstraints } from './BoxConstraints';
|
|
2
|
+
interface Props {
|
|
3
|
+
constraints: BoxConstraints;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Color } from './Color';
|
|
2
|
+
export declare const CupertinoColors: {
|
|
3
|
+
withOpacity: (color: Color | string, opacity: number) => Color;
|
|
4
|
+
withAlpha: (color: Color | string, alpha: number) => Color;
|
|
5
|
+
withRed: (color: Color | string, red: number) => Color;
|
|
6
|
+
withGreen: (color: Color | string, green: number) => Color;
|
|
7
|
+
withBlue: (color: Color | string, blue: number) => Color;
|
|
8
|
+
computeLuminance: (color: Color | string) => number;
|
|
9
|
+
lighten: (color: Color | string, amount: number) => Color;
|
|
10
|
+
darken: (color: Color | string, amount: number) => Color;
|
|
11
|
+
activeBlue: Color;
|
|
12
|
+
activeGreen: Color;
|
|
13
|
+
activeOrange: Color;
|
|
14
|
+
white: Color;
|
|
15
|
+
black: Color;
|
|
16
|
+
lightBackgroundGray: Color;
|
|
17
|
+
extraLightBackgroundGray: Color;
|
|
18
|
+
darkBackgroundGray: Color;
|
|
19
|
+
label: Color;
|
|
20
|
+
secondaryLabel: Color;
|
|
21
|
+
tertiaryLabel: Color;
|
|
22
|
+
quaternaryLabel: Color;
|
|
23
|
+
systemBlue: Color;
|
|
24
|
+
systemGreen: Color;
|
|
25
|
+
systemIndigo: Color;
|
|
26
|
+
systemOrange: Color;
|
|
27
|
+
systemPink: Color;
|
|
28
|
+
systemPurple: Color;
|
|
29
|
+
systemRed: Color;
|
|
30
|
+
systemTeal: Color;
|
|
31
|
+
systemYellow: Color;
|
|
32
|
+
systemGrey: Color;
|
|
33
|
+
systemGrey2: Color;
|
|
34
|
+
systemGrey3: Color;
|
|
35
|
+
systemGrey4: Color;
|
|
36
|
+
systemGrey5: Color;
|
|
37
|
+
systemGrey6: Color;
|
|
38
|
+
systemBackground: Color;
|
|
39
|
+
secondarySystemBackground: Color;
|
|
40
|
+
tertiarySystemBackground: Color;
|
|
41
|
+
systemGroupedBackground: Color;
|
|
42
|
+
secondarySystemGroupedBackground: Color;
|
|
43
|
+
tertiarySystemGroupedBackground: Color;
|
|
44
|
+
separator: Color;
|
|
45
|
+
opaqueSeparator: Color;
|
|
46
|
+
link: Color;
|
|
47
|
+
destructiveRed: Color;
|
|
48
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Color } from './Color';
|
|
2
|
+
interface Props {
|
|
3
|
+
src: string;
|
|
4
|
+
width?: number | string;
|
|
5
|
+
height?: number | string;
|
|
6
|
+
/**
|
|
7
|
+
* The opacity of the generated background color.
|
|
8
|
+
* Default: 1.0
|
|
9
|
+
*/
|
|
10
|
+
opacity?: number;
|
|
11
|
+
}
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
14
|
+
slots: {
|
|
15
|
+
default?(_: {
|
|
16
|
+
color: {
|
|
17
|
+
readonly alpha: number;
|
|
18
|
+
readonly opacity: number;
|
|
19
|
+
readonly red: number;
|
|
20
|
+
readonly green: number;
|
|
21
|
+
readonly blue: number;
|
|
22
|
+
withAlpha: (a: number) => Color;
|
|
23
|
+
withOpacity: (opacity: number) => Color;
|
|
24
|
+
withRed: (r: number) => Color;
|
|
25
|
+
withGreen: (g: number) => Color;
|
|
26
|
+
withBlue: (b: number) => Color;
|
|
27
|
+
computeLuminance: () => number;
|
|
28
|
+
toString: () => string;
|
|
29
|
+
readonly value: number;
|
|
30
|
+
} | null;
|
|
31
|
+
isLoading: boolean;
|
|
32
|
+
}): any;
|
|
33
|
+
};
|
|
34
|
+
refs: {};
|
|
35
|
+
rootEl: HTMLDivElement;
|
|
36
|
+
};
|
|
37
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
38
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
39
|
+
opacity: number;
|
|
40
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
41
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
42
|
+
export default _default;
|
|
43
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Color } from './Color';
|
|
2
|
+
/**
|
|
3
|
+
* Extracts the dominant color from an image URL.
|
|
4
|
+
*
|
|
5
|
+
* @param imageSrc The URL of the image.
|
|
6
|
+
* @returns A Promise that resolves to the dominant Color, or null if extraction fails.
|
|
7
|
+
*/
|
|
8
|
+
export declare function extractDominantColor(imageSrc: string): Promise<Color | null>;
|
|
9
|
+
export declare const ImageUtils: {
|
|
10
|
+
extractDominantColor: typeof extractDominantColor;
|
|
11
|
+
};
|
package/dist/ScrollView.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ interface Props {
|
|
|
10
10
|
clipBehavior?: "none" | "hardEdge" | "antiAlias";
|
|
11
11
|
/** 是否反向滚动 (暂未完全实现,预留接口) */
|
|
12
12
|
reverse?: boolean;
|
|
13
|
+
/** 是否根据内容收缩 */
|
|
14
|
+
shrinkWrap?: boolean;
|
|
13
15
|
}
|
|
14
16
|
declare function __VLS_template(): {
|
|
15
17
|
attrs: Partial<{}>;
|
|
@@ -48,6 +50,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
48
50
|
clipBehavior: "none" | "hardEdge" | "antiAlias";
|
|
49
51
|
scrollDirection: "vertical" | "horizontal";
|
|
50
52
|
physics: "bouncing" | "clamping" | "never" | "always";
|
|
53
|
+
shrinkWrap: boolean;
|
|
51
54
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
52
55
|
scrollRef: HTMLDivElement;
|
|
53
56
|
}, any>;
|
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.fluekit-button[data-v-0af78380]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-0af78380]:disabled{cursor:default}.fluekit-image[data-v-ce382550]{display:block}.fluekit-icon[data-v-34336b05]{-webkit-user-select:none;user-select:none;pointer-events:none}.icon-svg[data-v-34336b05]{fill:currentColor;width:100%;height:100%;display:block}[data-v-34336b05] svg{fill:currentColor;width:100%;height:100%}.flutter-
|
|
1
|
+
.fluekit-button[data-v-0af78380]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-0af78380]:disabled{cursor:default}.fluekit-image[data-v-ce382550]{display:block}.fluekit-icon[data-v-34336b05]{-webkit-user-select:none;user-select:none;pointer-events:none}.icon-svg[data-v-34336b05]{fill:currentColor;width:100%;height:100%;display:block}[data-v-34336b05] svg{fill:currentColor;width:100%;height:100%}.flutter-stack[data-v-aefe47c2]>*{grid-area:1/1/2/2}.fluekit-text-field[data-v-daef18e4]{margin-top:16px;font-family:inherit;position:relative}.fluekit-input-container[data-v-daef18e4]{box-sizing:border-box;width:100%}.fluekit-input-element[data-v-daef18e4]{width:100%;color:inherit;resize:none;background:0 0;border:none;outline:none;flex:1;margin:0;padding:0;font-family:inherit;font-size:16px}.fluekit-input-label[data-v-daef18e4]{z-index:1}.fluekit-input-footer[data-v-daef18e4]{justify-content:space-between;margin-top:4px;display:flex}.fluekit-input-helper[data-v-daef18e4]{color:#666;font-size:12px}.fluekit-input-helper-spacer[data-v-daef18e4]{flex:1}.fluekit-input-counter[data-v-daef18e4]{color:#666;margin-left:auto;font-size:12px}.fluekit-input-helper.is-error[data-v-daef18e4]{color:#f44336}.flutter-transform[data-v-c4ab6ce1]{box-sizing:border-box}.ink-well[data-v-a4b9dd0e]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-a4b9dd0e]{cursor:default}.ripple[data-v-a4b9dd0e]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-a4b9dd0e;position:absolute;transform:scale(0)}@keyframes ripple-a4b9dd0e{to{opacity:0;transform:scale(4)}}.slider-container[data-v-715d86f8],.range-slider-container[data-v-f10382ff]{width:100%;position:relative}.bottom-sheet-overlay[data-v-6948b23d]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}@keyframes cupertino-activity-indicator-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.flue-cupertino-navigation-bar[data-v-b5a5c6bf]{-webkit-backdrop-filter:blur(20px);z-index:100;width:100%}.flue-nav-bar-middle[data-v-b5a5c6bf]{justify-content:center;align-items:center;max-width:60%;display:flex}.snackbar-overlay[data-v-d8abf3ed]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-d8abf3ed]>*{pointer-events:auto}.flue-app-bar-leading[data-v-0a553bf2]{align-items:center;margin-right:16px;display:flex}.flue-app-bar-actions[data-v-0a553bf2]{align-items:center;margin-left:16px;display:flex}.fluekit-bottom-navigation-bar-ios[data-v-11798dea]{-webkit-backdrop-filter:blur(20px)}.fluekit-context-menu-anchor[data-v-34f987d4]{display:inline-block}.fluekit-context-menu-overlay[data-v-34f987d4]{z-index:9999;flex-direction:column;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.fluekit-context-menu-backdrop[data-v-34f987d4]{-webkit-backdrop-filter:blur(10px);background:#0006;width:100%;height:100%;position:absolute;top:0;left:0}.fluekit-context-menu-content[data-v-34f987d4]{z-index:10001;width:250px;animation:.2s ease-out scale-in-34f987d4;position:relative}.fluekit-action-group[data-v-34f987d4]{-webkit-backdrop-filter:blur(20px);background:#f9f9f9c7;border-radius:14px;margin-bottom:16px;overflow:hidden}.fluekit-context-menu-action[data-v-34f987d4]{text-align:center;cursor:pointer;background:0 0;border-bottom:.5px solid #0000001a;justify-content:center;align-items:center;gap:8px;padding:16px;display:flex}.fluekit-context-menu-action[data-v-34f987d4]:last-child{border-bottom:none}.fluekit-context-menu-action[data-v-34f987d4]:active{background:#0000001a}.action-text[data-v-34f987d4]{color:#007aff;font-family:-apple-system,BlinkMacSystemFont,sans-serif;font-size:17px}.is-destructive .action-text[data-v-34f987d4]{color:#ff3b30}.is-default .action-text[data-v-34f987d4]{font-weight:600}.cancel-group[data-v-34f987d4]{margin-top:8px}.cancel-action .action-text[data-v-34f987d4]{font-weight:600}.fade-enter-active[data-v-34f987d4],.fade-leave-active[data-v-34f987d4]{transition:opacity .2s}.fade-enter-from[data-v-34f987d4],.fade-leave-to[data-v-34f987d4]{opacity:0}@keyframes scale-in-34f987d4{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}.flue-aspect-ratio[data-v-e23e6712]{grid-template-rows:100%;grid-template-columns:100%;display:grid}.flue-image-color-background[data-v-de3ea6be]{box-sizing:border-box;flex-direction:column;display:flex}
|
|
2
2
|
/*$vite$:1*/
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,13 @@ export { default as Scaffold } from './Scaffold';
|
|
|
58
58
|
export { default as AppBar } from './AppBar';
|
|
59
59
|
export { default as BottomNavigationBar } from './BottomNavigationBar';
|
|
60
60
|
export { default as CupertinoContextMenu } from './CupertinoContextMenu';
|
|
61
|
+
export { default as AspectRatio } from './AspectRatio';
|
|
62
|
+
export { default as ConstrainedBox } from './ConstrainedBox';
|
|
63
|
+
export { default as ImageColorBackground } from './ImageColorBackground';
|
|
64
|
+
export * from './Color';
|
|
65
|
+
export * from './ImageUtils';
|
|
66
|
+
export * from './Colors';
|
|
67
|
+
export * from './CupertinoColors';
|
|
61
68
|
export * from './Border';
|
|
62
69
|
export * from './BoxConstraints';
|
|
63
70
|
export * from './BoxDecoration';
|
package/dist/index.js
CHANGED
|
@@ -1341,6 +1341,10 @@ var Fixed_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PUR
|
|
|
1341
1341
|
reverse: {
|
|
1342
1342
|
type: Boolean,
|
|
1343
1343
|
default: !1
|
|
1344
|
+
},
|
|
1345
|
+
shrinkWrap: {
|
|
1346
|
+
type: Boolean,
|
|
1347
|
+
default: !1
|
|
1344
1348
|
}
|
|
1345
1349
|
},
|
|
1346
1350
|
emits: [
|
|
@@ -1351,8 +1355,8 @@ var Fixed_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PUR
|
|
|
1351
1355
|
setup(e, { expose: C, emit: w }) {
|
|
1352
1356
|
let T = e, E = w, D = ref(), k = !1, A = null, N = computed(() => {
|
|
1353
1357
|
let e = {
|
|
1354
|
-
width: "100%",
|
|
1355
|
-
height: "100%",
|
|
1358
|
+
width: T.shrinkWrap && T.scrollDirection === "horizontal" ? "fit-content" : "100%",
|
|
1359
|
+
height: T.shrinkWrap && T.scrollDirection === "vertical" ? "auto" : "100%",
|
|
1356
1360
|
position: "relative",
|
|
1357
1361
|
display: "block",
|
|
1358
1362
|
scrollbarWidth: "none",
|
|
@@ -1411,10 +1415,7 @@ var Fixed_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PUR
|
|
|
1411
1415
|
itemCount: {}
|
|
1412
1416
|
},
|
|
1413
1417
|
setup(e) {
|
|
1414
|
-
let w = e, T = computed(() =>
|
|
1415
|
-
height: w.shrinkWrap ? "auto" : "100%",
|
|
1416
|
-
width: w.shrinkWrap ? "auto" : "100%"
|
|
1417
|
-
})), E = computed(() => {
|
|
1418
|
+
let w = e, T = computed(() => {
|
|
1418
1419
|
let e = w.scrollDirection === "vertical", C = typeof w.mainAxisSpacing == "number" ? px2vw(w.mainAxisSpacing) : w.mainAxisSpacing, T = typeof w.crossAxisSpacing == "number" ? px2vw(w.crossAxisSpacing) : w.crossAxisSpacing;
|
|
1419
1420
|
return {
|
|
1420
1421
|
display: "grid",
|
|
@@ -1426,17 +1427,16 @@ var Fixed_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PUR
|
|
|
1426
1427
|
minHeight: e ? "max-content" : "100%"
|
|
1427
1428
|
};
|
|
1428
1429
|
});
|
|
1429
|
-
return (w,
|
|
1430
|
+
return (w, E) => (openBlock(), createBlock(ScrollView_default, {
|
|
1430
1431
|
"scroll-direction": e.scrollDirection,
|
|
1431
1432
|
padding: e.padding,
|
|
1432
1433
|
physics: e.physics,
|
|
1433
1434
|
"clip-behavior": e.clipBehavior,
|
|
1434
|
-
|
|
1435
|
-
style: normalizeStyle(T.value)
|
|
1435
|
+
"shrink-wrap": e.shrinkWrap
|
|
1436
1436
|
}, {
|
|
1437
1437
|
default: withCtx(() => [createElementVNode("div", {
|
|
1438
1438
|
class: "grid-view-content",
|
|
1439
|
-
style: normalizeStyle(
|
|
1439
|
+
style: normalizeStyle(T.value)
|
|
1440
1440
|
}, [e.itemCount ? (openBlock(!0), createElementBlock(Fragment, { key: 1 }, renderList(e.itemCount, (e) => renderSlot(w.$slots, "item", {
|
|
1441
1441
|
key: e - 1,
|
|
1442
1442
|
index: e - 1
|
|
@@ -1447,7 +1447,7 @@ var Fixed_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PUR
|
|
|
1447
1447
|
"padding",
|
|
1448
1448
|
"physics",
|
|
1449
1449
|
"clip-behavior",
|
|
1450
|
-
"
|
|
1450
|
+
"shrink-wrap"
|
|
1451
1451
|
]));
|
|
1452
1452
|
}
|
|
1453
1453
|
}), IgnorePointer_default = defineComponent({
|
|
@@ -1615,7 +1615,7 @@ var _hoisted_1$10 = ["src", "alt"], Image_default = /* @__PURE__ */ __plugin_vue
|
|
|
1615
1615
|
}), [["__scopeId", "data-v-34336b05"]]), _hoisted_1$8 = {
|
|
1616
1616
|
key: 0,
|
|
1617
1617
|
class: "list-view-separator"
|
|
1618
|
-
}, ListView_default = /* @__PURE__ */
|
|
1618
|
+
}, ListView_default = /* @__PURE__ */ defineComponent({
|
|
1619
1619
|
inheritAttrs: !1,
|
|
1620
1620
|
__name: "ListView",
|
|
1621
1621
|
props: {
|
|
@@ -1635,10 +1635,7 @@ var _hoisted_1$10 = ["src", "alt"], Image_default = /* @__PURE__ */ __plugin_vue
|
|
|
1635
1635
|
clipBehavior: { default: "hardEdge" }
|
|
1636
1636
|
},
|
|
1637
1637
|
setup(e) {
|
|
1638
|
-
let w = e, T = computed(() =>
|
|
1639
|
-
height: w.shrinkWrap ? "auto" : "100%",
|
|
1640
|
-
width: w.shrinkWrap ? "auto" : "100%"
|
|
1641
|
-
})), E = computed(() => {
|
|
1638
|
+
let w = e, T = computed(() => {
|
|
1642
1639
|
let e = w.scrollDirection === "vertical";
|
|
1643
1640
|
return {
|
|
1644
1641
|
display: "flex",
|
|
@@ -1647,29 +1644,27 @@ var _hoisted_1$10 = ["src", "alt"], Image_default = /* @__PURE__ */ __plugin_vue
|
|
|
1647
1644
|
minWidth: e ? "100%" : "max-content"
|
|
1648
1645
|
};
|
|
1649
1646
|
});
|
|
1650
|
-
return (w,
|
|
1647
|
+
return (w, E) => (openBlock(), createBlock(ScrollView_default, {
|
|
1651
1648
|
"scroll-direction": e.scrollDirection,
|
|
1652
1649
|
padding: e.padding,
|
|
1653
1650
|
physics: e.physics,
|
|
1654
1651
|
"clip-behavior": e.clipBehavior,
|
|
1655
|
-
|
|
1656
|
-
style: normalizeStyle(T.value)
|
|
1652
|
+
"shrink-wrap": e.shrinkWrap
|
|
1657
1653
|
}, {
|
|
1658
1654
|
default: withCtx(() => [createElementVNode("div", {
|
|
1659
1655
|
class: "list-view-content",
|
|
1660
|
-
style: normalizeStyle(
|
|
1661
|
-
}, [e.itemCount ? (openBlock(!0), createElementBlock(Fragment, { key: 1 }, renderList(e.itemCount, (T) => (openBlock(), createElementBlock(Fragment, { key: T - 1 }, [renderSlot(w.$slots, "item", { index: T - 1 }
|
|
1656
|
+
style: normalizeStyle(T.value)
|
|
1657
|
+
}, [e.itemCount ? (openBlock(!0), createElementBlock(Fragment, { key: 1 }, renderList(e.itemCount, (T) => (openBlock(), createElementBlock(Fragment, { key: T - 1 }, [renderSlot(w.$slots, "item", { index: T - 1 }), e.separator && T < e.itemCount ? (openBlock(), createElementBlock("div", _hoisted_1$8, [renderSlot(w.$slots, "separator", { index: T - 1 })])) : createCommentVNode("", !0)], 64))), 128)) : renderSlot(w.$slots, "default", { key: 0 })], 4)]),
|
|
1662
1658
|
_: 3
|
|
1663
1659
|
}, 8, [
|
|
1664
1660
|
"scroll-direction",
|
|
1665
1661
|
"padding",
|
|
1666
1662
|
"physics",
|
|
1667
1663
|
"clip-behavior",
|
|
1668
|
-
"
|
|
1669
|
-
"style"
|
|
1664
|
+
"shrink-wrap"
|
|
1670
1665
|
]));
|
|
1671
1666
|
}
|
|
1672
|
-
}),
|
|
1667
|
+
}), Opacity_default = defineComponent({
|
|
1673
1668
|
name: "Opacity",
|
|
1674
1669
|
inheritAttrs: !1,
|
|
1675
1670
|
props: { opacity: {
|
|
@@ -4111,6 +4106,567 @@ var MediaQuery_default = /* @__PURE__ */ defineComponent({
|
|
|
4111
4106
|
_: 1
|
|
4112
4107
|
})]))], 512));
|
|
4113
4108
|
}
|
|
4114
|
-
}), [["__scopeId", "data-v-34f987d4"]])
|
|
4109
|
+
}), [["__scopeId", "data-v-34f987d4"]]), AspectRatio_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
4110
|
+
__name: "AspectRatio",
|
|
4111
|
+
props: { aspectRatio: {} },
|
|
4112
|
+
setup(e) {
|
|
4113
|
+
let C = e, w = computed(() => ({ aspectRatio: `${C.aspectRatio}` }));
|
|
4114
|
+
return (e, C) => (openBlock(), createElementBlock("div", {
|
|
4115
|
+
style: normalizeStyle(w.value),
|
|
4116
|
+
class: "flue-aspect-ratio"
|
|
4117
|
+
}, [renderSlot(e.$slots, "default", {}, void 0, !0)], 4));
|
|
4118
|
+
}
|
|
4119
|
+
}), [["__scopeId", "data-v-e23e6712"]]), ConstrainedBox_default = /* @__PURE__ */ defineComponent({
|
|
4120
|
+
__name: "ConstrainedBox",
|
|
4121
|
+
props: { constraints: {} },
|
|
4122
|
+
setup(e) {
|
|
4123
|
+
let C = e, w = computed(() => ({
|
|
4124
|
+
display: "flex",
|
|
4125
|
+
flexDirection: "column",
|
|
4126
|
+
...boxConstraintsToStyle(C.constraints),
|
|
4127
|
+
boxSizing: "border-box"
|
|
4128
|
+
}));
|
|
4129
|
+
return (e, C) => (openBlock(), createElementBlock("div", {
|
|
4130
|
+
style: normalizeStyle(w.value),
|
|
4131
|
+
class: "flue-constrained-box"
|
|
4132
|
+
}, [renderSlot(e.$slots, "default")], 4));
|
|
4133
|
+
}
|
|
4134
|
+
}), Color = class e {
|
|
4135
|
+
_r;
|
|
4136
|
+
_g;
|
|
4137
|
+
_b;
|
|
4138
|
+
_a;
|
|
4139
|
+
constructor(e) {
|
|
4140
|
+
this._a = e >> 24 & 255, this._r = e >> 16 & 255, this._g = e >> 8 & 255, this._b = e & 255;
|
|
4141
|
+
}
|
|
4142
|
+
static fromARGB(C, w, T, E) {
|
|
4143
|
+
return new e(((C & 255) << 24 | (w & 255) << 16 | (T & 255) << 8 | E & 255) >>> 0);
|
|
4144
|
+
}
|
|
4145
|
+
static fromRGBO(C, w, T, E) {
|
|
4146
|
+
let D = Math.round(E * 255);
|
|
4147
|
+
return e.fromRGB(C, w, T, D);
|
|
4148
|
+
}
|
|
4149
|
+
static fromRGB(C, w, T, E = 255) {
|
|
4150
|
+
return e.fromARGB(E, C, w, T);
|
|
4151
|
+
}
|
|
4152
|
+
static fromString(C) {
|
|
4153
|
+
if (!C || C === "transparent") return new e(0);
|
|
4154
|
+
if (C.startsWith("#")) {
|
|
4155
|
+
let w = C.slice(1);
|
|
4156
|
+
if (w.length === 3 && (w = w.split("").map((e) => e + e).join("")), w.length === 6) return new e(4278190080 | parseInt(w, 16));
|
|
4157
|
+
if (w.length === 8) {
|
|
4158
|
+
let C = parseInt(w.substring(0, 2), 16), T = parseInt(w.substring(2, 4), 16), E = parseInt(w.substring(4, 6), 16), D = parseInt(w.substring(6, 8), 16);
|
|
4159
|
+
return e.fromARGB(D, C, T, E);
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
if (C.startsWith("rgb")) {
|
|
4163
|
+
let w = C.match(/[\d.]+/g);
|
|
4164
|
+
if (w && w.length >= 3) {
|
|
4165
|
+
let C = parseFloat(w[0]), T = parseFloat(w[1]), E = parseFloat(w[2]), D = w[3] === void 0 ? 1 : parseFloat(w[3]);
|
|
4166
|
+
return e.fromRGBO(C, T, E, D);
|
|
4167
|
+
}
|
|
4168
|
+
}
|
|
4169
|
+
return console.warn(`[Color] Could not parse color string: ${C}`), new e(0);
|
|
4170
|
+
}
|
|
4171
|
+
get alpha() {
|
|
4172
|
+
return this._a;
|
|
4173
|
+
}
|
|
4174
|
+
get opacity() {
|
|
4175
|
+
return this._a / 255;
|
|
4176
|
+
}
|
|
4177
|
+
get red() {
|
|
4178
|
+
return this._r;
|
|
4179
|
+
}
|
|
4180
|
+
get green() {
|
|
4181
|
+
return this._g;
|
|
4182
|
+
}
|
|
4183
|
+
get blue() {
|
|
4184
|
+
return this._b;
|
|
4185
|
+
}
|
|
4186
|
+
withAlpha(C) {
|
|
4187
|
+
return e.fromARGB(C, this._r, this._g, this._b);
|
|
4188
|
+
}
|
|
4189
|
+
withOpacity(C) {
|
|
4190
|
+
return e.fromRGBO(this._r, this._g, this._b, C);
|
|
4191
|
+
}
|
|
4192
|
+
withRed(C) {
|
|
4193
|
+
return e.fromARGB(this._a, C, this._g, this._b);
|
|
4194
|
+
}
|
|
4195
|
+
withGreen(C) {
|
|
4196
|
+
return e.fromARGB(this._a, this._r, C, this._b);
|
|
4197
|
+
}
|
|
4198
|
+
withBlue(C) {
|
|
4199
|
+
return e.fromARGB(this._a, this._r, this._g, C);
|
|
4200
|
+
}
|
|
4201
|
+
computeLuminance() {
|
|
4202
|
+
let e = this._r / 255, C = this._g / 255, w = this._b / 255, T = e <= .03928 ? e / 12.92 : ((e + .055) / 1.055) ** 2.4, E = C <= .03928 ? C / 12.92 : ((C + .055) / 1.055) ** 2.4, D = w <= .03928 ? w / 12.92 : ((w + .055) / 1.055) ** 2.4;
|
|
4203
|
+
return .2126 * T + .7152 * E + .0722 * D;
|
|
4204
|
+
}
|
|
4205
|
+
toString() {
|
|
4206
|
+
if (this._a === 255) return `rgb(${this._r}, ${this._g}, ${this._b})`;
|
|
4207
|
+
let e = Number((this._a / 255).toFixed(3));
|
|
4208
|
+
return `rgba(${this._r}, ${this._g}, ${this._b}, ${e})`;
|
|
4209
|
+
}
|
|
4210
|
+
get value() {
|
|
4211
|
+
return ((this._a & 255) << 24 | (this._r & 255) << 16 | (this._g & 255) << 8 | this._b & 255) >>> 0;
|
|
4212
|
+
}
|
|
4213
|
+
};
|
|
4214
|
+
function withOpacity(e, C) {
|
|
4215
|
+
return (e instanceof Color ? e : Color.fromString(e)).withOpacity(C).toString();
|
|
4216
|
+
}
|
|
4217
|
+
function withAlpha(e, C) {
|
|
4218
|
+
return (e instanceof Color ? e : Color.fromString(e)).withAlpha(C).toString();
|
|
4219
|
+
}
|
|
4220
|
+
function withRed(e, C) {
|
|
4221
|
+
return (e instanceof Color ? e : Color.fromString(e)).withRed(C).toString();
|
|
4222
|
+
}
|
|
4223
|
+
function withGreen(e, C) {
|
|
4224
|
+
return (e instanceof Color ? e : Color.fromString(e)).withGreen(C).toString();
|
|
4225
|
+
}
|
|
4226
|
+
function withBlue(e, C) {
|
|
4227
|
+
return (e instanceof Color ? e : Color.fromString(e)).withBlue(C).toString();
|
|
4228
|
+
}
|
|
4229
|
+
function computeLuminance(e) {
|
|
4230
|
+
return (e instanceof Color ? e : Color.fromString(e)).computeLuminance();
|
|
4231
|
+
}
|
|
4232
|
+
function lighten(e, C) {
|
|
4233
|
+
let w = e instanceof Color ? e : Color.fromString(e), T = Math.max(0, Math.min(1, C)), E = Math.round(w.red + (255 - w.red) * T), D = Math.round(w.green + (255 - w.green) * T), O = Math.round(w.blue + (255 - w.blue) * T);
|
|
4234
|
+
return Color.fromARGB(w.alpha, E, D, O).toString();
|
|
4235
|
+
}
|
|
4236
|
+
function darken(e, C) {
|
|
4237
|
+
let w = e instanceof Color ? e : Color.fromString(e), T = Math.max(0, Math.min(1, C)), E = Math.round(w.red * (1 - T)), D = Math.round(w.green * (1 - T)), O = Math.round(w.blue * (1 - T));
|
|
4238
|
+
return Color.fromARGB(w.alpha, E, D, O).toString();
|
|
4239
|
+
}
|
|
4240
|
+
const ColorUtils = {
|
|
4241
|
+
withOpacity,
|
|
4242
|
+
withAlpha,
|
|
4243
|
+
withRed,
|
|
4244
|
+
withGreen,
|
|
4245
|
+
withBlue,
|
|
4246
|
+
lighten,
|
|
4247
|
+
darken,
|
|
4248
|
+
computeLuminance
|
|
4249
|
+
};
|
|
4250
|
+
var sharedCanvas = null, sharedCtx = null, getCanvasContext = () => sharedCtx || (typeof OffscreenCanvas < "u" ? (sharedCanvas = new OffscreenCanvas(1, 1), sharedCtx = sharedCanvas.getContext("2d", { willReadFrequently: !0 })) : (sharedCanvas = document.createElement("canvas"), sharedCtx = sharedCanvas.getContext("2d", { willReadFrequently: !0 })), sharedCtx);
|
|
4251
|
+
async function extractDominantColor(e) {
|
|
4252
|
+
return new Promise((C, w) => {
|
|
4253
|
+
let T = new Image();
|
|
4254
|
+
T.crossOrigin = "Anonymous", T.src = e, T.onload = () => {
|
|
4255
|
+
try {
|
|
4256
|
+
let e = getCanvasContext();
|
|
4257
|
+
if (!e || !sharedCanvas) {
|
|
4258
|
+
C(null);
|
|
4259
|
+
return;
|
|
4260
|
+
}
|
|
4261
|
+
let w = Math.min(100 / T.width, 100 / T.height), E = Math.floor(T.width * w) || 1, D = Math.floor(T.height * w) || 1;
|
|
4262
|
+
sharedCanvas.width = E, sharedCanvas.height = D, e.clearRect(0, 0, E, D), e.drawImage(T, 0, 0, E, D);
|
|
4263
|
+
let O = e.getImageData(0, 0, E, D).data, k = {}, A = 0, j = "#000000";
|
|
4264
|
+
for (let e = 0; e < O.length; e += 4) {
|
|
4265
|
+
let C = O[e], w = O[e + 1], T = O[e + 2];
|
|
4266
|
+
if (O[e + 3] < 128) continue;
|
|
4267
|
+
let E = Math.round(C / 5) * 5, D = Math.round(w / 5) * 5, M = Math.round(T / 5) * 5, N = `${E},${D},${M}`;
|
|
4268
|
+
k[N] = (k[N] || 0) + 1, k[N] > A && (A = k[N], j = `rgb(${E},${D},${M})`);
|
|
4269
|
+
}
|
|
4270
|
+
C(Color.fromString(j));
|
|
4271
|
+
} catch (e) {
|
|
4272
|
+
console.warn("[ImageUtils] Failed to extract color:", e), C(null);
|
|
4273
|
+
}
|
|
4274
|
+
}, T.onerror = () => {
|
|
4275
|
+
console.warn("[ImageUtils] Failed to load image:", e), C(null);
|
|
4276
|
+
};
|
|
4277
|
+
});
|
|
4278
|
+
}
|
|
4279
|
+
const ImageUtils = { extractDominantColor };
|
|
4280
|
+
var ImageColorBackground_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
4281
|
+
__name: "ImageColorBackground",
|
|
4282
|
+
props: {
|
|
4283
|
+
src: {},
|
|
4284
|
+
width: {},
|
|
4285
|
+
height: {},
|
|
4286
|
+
opacity: { default: 1 }
|
|
4287
|
+
},
|
|
4288
|
+
setup(e) {
|
|
4289
|
+
let C = e, w = ref(null), T = ref(!0), E = computed(() => ({
|
|
4290
|
+
width: typeof C.width == "number" ? `${C.width}px` : C.width,
|
|
4291
|
+
height: typeof C.height == "number" ? `${C.height}px` : C.height,
|
|
4292
|
+
backgroundColor: w.value ? w.value.withOpacity(C.opacity).toString() : "transparent",
|
|
4293
|
+
transition: "background-color 0.5s ease"
|
|
4294
|
+
})), D = async (e) => {
|
|
4295
|
+
T.value = !0, w.value = null;
|
|
4296
|
+
let C = await ImageUtils.extractDominantColor(e);
|
|
4297
|
+
C && (w.value = C), T.value = !1;
|
|
4298
|
+
};
|
|
4299
|
+
return watch(() => C.src, (e) => {
|
|
4300
|
+
e && D(e);
|
|
4301
|
+
}, { immediate: !0 }), (e, C) => (openBlock(), createElementBlock("div", {
|
|
4302
|
+
class: "flue-image-color-background",
|
|
4303
|
+
style: normalizeStyle(E.value)
|
|
4304
|
+
}, [renderSlot(e.$slots, "default", {
|
|
4305
|
+
color: w.value,
|
|
4306
|
+
isLoading: T.value
|
|
4307
|
+
}, void 0, !0)], 4));
|
|
4308
|
+
}
|
|
4309
|
+
}), [["__scopeId", "data-v-de3ea6be"]]);
|
|
4310
|
+
const Colors = {
|
|
4311
|
+
withOpacity: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withOpacity(C),
|
|
4312
|
+
withAlpha: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withAlpha(C),
|
|
4313
|
+
withRed: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withRed(C),
|
|
4314
|
+
withGreen: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withGreen(C),
|
|
4315
|
+
withBlue: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withBlue(C),
|
|
4316
|
+
computeLuminance: (e) => (typeof e == "string" ? Color.fromString(e) : e).computeLuminance(),
|
|
4317
|
+
lighten: (e, C) => Color.fromString(typeof e == "string" ? e : e.toString()),
|
|
4318
|
+
transparent: Color.fromString("transparent"),
|
|
4319
|
+
black: Color.fromString("#000000"),
|
|
4320
|
+
black87: Color.fromString("rgba(0, 0, 0, 0.87)"),
|
|
4321
|
+
black54: Color.fromString("rgba(0, 0, 0, 0.54)"),
|
|
4322
|
+
black45: Color.fromString("rgba(0, 0, 0, 0.45)"),
|
|
4323
|
+
black38: Color.fromString("rgba(0, 0, 0, 0.38)"),
|
|
4324
|
+
black26: Color.fromString("rgba(0, 0, 0, 0.26)"),
|
|
4325
|
+
black12: Color.fromString("rgba(0, 0, 0, 0.12)"),
|
|
4326
|
+
white: Color.fromString("#FFFFFF"),
|
|
4327
|
+
white70: Color.fromString("rgba(255, 255, 255, 0.7)"),
|
|
4328
|
+
white60: Color.fromString("rgba(255, 255, 255, 0.6)"),
|
|
4329
|
+
white54: Color.fromString("rgba(255, 255, 255, 0.54)"),
|
|
4330
|
+
white38: Color.fromString("rgba(255, 255, 255, 0.38)"),
|
|
4331
|
+
white30: Color.fromString("rgba(255, 255, 255, 0.30)"),
|
|
4332
|
+
white24: Color.fromString("rgba(255, 255, 255, 0.24)"),
|
|
4333
|
+
white12: Color.fromString("rgba(255, 255, 255, 0.12)"),
|
|
4334
|
+
white10: Color.fromString("rgba(255, 255, 255, 0.10)"),
|
|
4335
|
+
red: Color.fromString("#F44336"),
|
|
4336
|
+
red50: Color.fromString("#FFEBEE"),
|
|
4337
|
+
red100: Color.fromString("#FFCDD2"),
|
|
4338
|
+
red200: Color.fromString("#EF9A9A"),
|
|
4339
|
+
red300: Color.fromString("#E57373"),
|
|
4340
|
+
red400: Color.fromString("#EF5350"),
|
|
4341
|
+
red500: Color.fromString("#F44336"),
|
|
4342
|
+
red600: Color.fromString("#E53935"),
|
|
4343
|
+
red700: Color.fromString("#D32F2F"),
|
|
4344
|
+
red800: Color.fromString("#C62828"),
|
|
4345
|
+
red900: Color.fromString("#B71C1C"),
|
|
4346
|
+
redAccent: Color.fromString("#FF5252"),
|
|
4347
|
+
redAccent100: Color.fromString("#FF8A80"),
|
|
4348
|
+
redAccent200: Color.fromString("#FF5252"),
|
|
4349
|
+
redAccent400: Color.fromString("#FF1744"),
|
|
4350
|
+
redAccent700: Color.fromString("#D50000"),
|
|
4351
|
+
pink: Color.fromString("#E91E63"),
|
|
4352
|
+
pink50: Color.fromString("#FCE4EC"),
|
|
4353
|
+
pink100: Color.fromString("#F8BBD0"),
|
|
4354
|
+
pink200: Color.fromString("#F48FB1"),
|
|
4355
|
+
pink300: Color.fromString("#F06292"),
|
|
4356
|
+
pink400: Color.fromString("#EC407A"),
|
|
4357
|
+
pink500: Color.fromString("#E91E63"),
|
|
4358
|
+
pink600: Color.fromString("#D81B60"),
|
|
4359
|
+
pink700: Color.fromString("#C2185B"),
|
|
4360
|
+
pink800: Color.fromString("#AD1457"),
|
|
4361
|
+
pink900: Color.fromString("#880E4F"),
|
|
4362
|
+
pinkAccent: Color.fromString("#FF4081"),
|
|
4363
|
+
pinkAccent100: Color.fromString("#FF80AB"),
|
|
4364
|
+
pinkAccent200: Color.fromString("#FF4081"),
|
|
4365
|
+
pinkAccent400: Color.fromString("#F50057"),
|
|
4366
|
+
pinkAccent700: Color.fromString("#C51162"),
|
|
4367
|
+
purple: Color.fromString("#9C27B0"),
|
|
4368
|
+
purple50: Color.fromString("#F3E5F5"),
|
|
4369
|
+
purple100: Color.fromString("#E1BEE7"),
|
|
4370
|
+
purple200: Color.fromString("#CE93D8"),
|
|
4371
|
+
purple300: Color.fromString("#BA68C8"),
|
|
4372
|
+
purple400: Color.fromString("#AB47BC"),
|
|
4373
|
+
purple500: Color.fromString("#9C27B0"),
|
|
4374
|
+
purple600: Color.fromString("#8E24AA"),
|
|
4375
|
+
purple700: Color.fromString("#7B1FA2"),
|
|
4376
|
+
purple800: Color.fromString("#6A1B9A"),
|
|
4377
|
+
purple900: Color.fromString("#4A148C"),
|
|
4378
|
+
purpleAccent: Color.fromString("#E040FB"),
|
|
4379
|
+
purpleAccent100: Color.fromString("#EA80FC"),
|
|
4380
|
+
purpleAccent200: Color.fromString("#E040FB"),
|
|
4381
|
+
purpleAccent400: Color.fromString("#D500F9"),
|
|
4382
|
+
purpleAccent700: Color.fromString("#AA00FF"),
|
|
4383
|
+
deepPurple: Color.fromString("#673AB7"),
|
|
4384
|
+
deepPurple50: Color.fromString("#EDE7F6"),
|
|
4385
|
+
deepPurple100: Color.fromString("#D1C4E9"),
|
|
4386
|
+
deepPurple200: Color.fromString("#B39DDB"),
|
|
4387
|
+
deepPurple300: Color.fromString("#9575CD"),
|
|
4388
|
+
deepPurple400: Color.fromString("#7E57C2"),
|
|
4389
|
+
deepPurple500: Color.fromString("#673AB7"),
|
|
4390
|
+
deepPurple600: Color.fromString("#5E35B1"),
|
|
4391
|
+
deepPurple700: Color.fromString("#512DA8"),
|
|
4392
|
+
deepPurple800: Color.fromString("#4527A0"),
|
|
4393
|
+
deepPurple900: Color.fromString("#311B92"),
|
|
4394
|
+
deepPurpleAccent: Color.fromString("#7C4DFF"),
|
|
4395
|
+
deepPurpleAccent100: Color.fromString("#B388FF"),
|
|
4396
|
+
deepPurpleAccent200: Color.fromString("#7C4DFF"),
|
|
4397
|
+
deepPurpleAccent400: Color.fromString("#651FFF"),
|
|
4398
|
+
deepPurpleAccent700: Color.fromString("#6200EA"),
|
|
4399
|
+
indigo: Color.fromString("#3F51B5"),
|
|
4400
|
+
indigo50: Color.fromString("#E8EAF6"),
|
|
4401
|
+
indigo100: Color.fromString("#C5CAE9"),
|
|
4402
|
+
indigo200: Color.fromString("#9FA8DA"),
|
|
4403
|
+
indigo300: Color.fromString("#7986CB"),
|
|
4404
|
+
indigo400: Color.fromString("#5C6BC0"),
|
|
4405
|
+
indigo500: Color.fromString("#3F51B5"),
|
|
4406
|
+
indigo600: Color.fromString("#3949AB"),
|
|
4407
|
+
indigo700: Color.fromString("#303F9F"),
|
|
4408
|
+
indigo800: Color.fromString("#283593"),
|
|
4409
|
+
indigo900: Color.fromString("#1A237E"),
|
|
4410
|
+
indigoAccent: Color.fromString("#536DFE"),
|
|
4411
|
+
indigoAccent100: Color.fromString("#8C9EFF"),
|
|
4412
|
+
indigoAccent200: Color.fromString("#536DFE"),
|
|
4413
|
+
indigoAccent400: Color.fromString("#3D5AFE"),
|
|
4414
|
+
indigoAccent700: Color.fromString("#304FFE"),
|
|
4415
|
+
blue: Color.fromString("#2196F3"),
|
|
4416
|
+
blue50: Color.fromString("#E3F2FD"),
|
|
4417
|
+
blue100: Color.fromString("#BBDEFB"),
|
|
4418
|
+
blue200: Color.fromString("#90CAF9"),
|
|
4419
|
+
blue300: Color.fromString("#64B5F6"),
|
|
4420
|
+
blue400: Color.fromString("#42A5F5"),
|
|
4421
|
+
blue500: Color.fromString("#2196F3"),
|
|
4422
|
+
blue600: Color.fromString("#1E88E5"),
|
|
4423
|
+
blue700: Color.fromString("#1976D2"),
|
|
4424
|
+
blue800: Color.fromString("#1565C0"),
|
|
4425
|
+
blue900: Color.fromString("#0D47A1"),
|
|
4426
|
+
blueAccent: Color.fromString("#448AFF"),
|
|
4427
|
+
blueAccent100: Color.fromString("#82B1FF"),
|
|
4428
|
+
blueAccent200: Color.fromString("#448AFF"),
|
|
4429
|
+
blueAccent400: Color.fromString("#2979FF"),
|
|
4430
|
+
blueAccent700: Color.fromString("#2962FF"),
|
|
4431
|
+
lightBlue: Color.fromString("#03A9F4"),
|
|
4432
|
+
lightBlue50: Color.fromString("#E1F5FE"),
|
|
4433
|
+
lightBlue100: Color.fromString("#B3E5FC"),
|
|
4434
|
+
lightBlue200: Color.fromString("#81D4FA"),
|
|
4435
|
+
lightBlue300: Color.fromString("#4FC3F7"),
|
|
4436
|
+
lightBlue400: Color.fromString("#29B6F6"),
|
|
4437
|
+
lightBlue500: Color.fromString("#03A9F4"),
|
|
4438
|
+
lightBlue600: Color.fromString("#039BE5"),
|
|
4439
|
+
lightBlue700: Color.fromString("#0288D1"),
|
|
4440
|
+
lightBlue800: Color.fromString("#0277BD"),
|
|
4441
|
+
lightBlue900: Color.fromString("#01579B"),
|
|
4442
|
+
lightBlueAccent: Color.fromString("#40C4FF"),
|
|
4443
|
+
lightBlueAccent100: Color.fromString("#80D8FF"),
|
|
4444
|
+
lightBlueAccent200: Color.fromString("#40C4FF"),
|
|
4445
|
+
lightBlueAccent400: Color.fromString("#00B0FF"),
|
|
4446
|
+
lightBlueAccent700: Color.fromString("#0091EA"),
|
|
4447
|
+
cyan: Color.fromString("#00BCD4"),
|
|
4448
|
+
cyan50: Color.fromString("#E0F7FA"),
|
|
4449
|
+
cyan100: Color.fromString("#B2EBF2"),
|
|
4450
|
+
cyan200: Color.fromString("#80DEEA"),
|
|
4451
|
+
cyan300: Color.fromString("#4DD0E1"),
|
|
4452
|
+
cyan400: Color.fromString("#26C6DA"),
|
|
4453
|
+
cyan500: Color.fromString("#00BCD4"),
|
|
4454
|
+
cyan600: Color.fromString("#00ACC1"),
|
|
4455
|
+
cyan700: Color.fromString("#0097A7"),
|
|
4456
|
+
cyan800: Color.fromString("#00838F"),
|
|
4457
|
+
cyan900: Color.fromString("#006064"),
|
|
4458
|
+
cyanAccent: Color.fromString("#18FFFF"),
|
|
4459
|
+
cyanAccent100: Color.fromString("#84FFFF"),
|
|
4460
|
+
cyanAccent200: Color.fromString("#18FFFF"),
|
|
4461
|
+
cyanAccent400: Color.fromString("#00E5FF"),
|
|
4462
|
+
cyanAccent700: Color.fromString("#00B8D4"),
|
|
4463
|
+
teal: Color.fromString("#009688"),
|
|
4464
|
+
teal50: Color.fromString("#E0F2F1"),
|
|
4465
|
+
teal100: Color.fromString("#B2DFDB"),
|
|
4466
|
+
teal200: Color.fromString("#80CBC4"),
|
|
4467
|
+
teal300: Color.fromString("#4DB6AC"),
|
|
4468
|
+
teal400: Color.fromString("#26A69A"),
|
|
4469
|
+
teal500: Color.fromString("#009688"),
|
|
4470
|
+
teal600: Color.fromString("#00897B"),
|
|
4471
|
+
teal700: Color.fromString("#00796B"),
|
|
4472
|
+
teal800: Color.fromString("#00695C"),
|
|
4473
|
+
teal900: Color.fromString("#004D40"),
|
|
4474
|
+
tealAccent: Color.fromString("#64FFDA"),
|
|
4475
|
+
tealAccent100: Color.fromString("#A7FFEB"),
|
|
4476
|
+
tealAccent200: Color.fromString("#64FFDA"),
|
|
4477
|
+
tealAccent400: Color.fromString("#1DE9B6"),
|
|
4478
|
+
tealAccent700: Color.fromString("#00BFA5"),
|
|
4479
|
+
green: Color.fromString("#4CAF50"),
|
|
4480
|
+
green50: Color.fromString("#E8F5E9"),
|
|
4481
|
+
green100: Color.fromString("#C8E6C9"),
|
|
4482
|
+
green200: Color.fromString("#A5D6A7"),
|
|
4483
|
+
green300: Color.fromString("#81C784"),
|
|
4484
|
+
green400: Color.fromString("#66BB6A"),
|
|
4485
|
+
green500: Color.fromString("#4CAF50"),
|
|
4486
|
+
green600: Color.fromString("#43A047"),
|
|
4487
|
+
green700: Color.fromString("#388E3C"),
|
|
4488
|
+
green800: Color.fromString("#2E7D32"),
|
|
4489
|
+
green900: Color.fromString("#1B5E20"),
|
|
4490
|
+
greenAccent: Color.fromString("#69F0AE"),
|
|
4491
|
+
greenAccent100: Color.fromString("#B9F6CA"),
|
|
4492
|
+
greenAccent200: Color.fromString("#69F0AE"),
|
|
4493
|
+
greenAccent400: Color.fromString("#00E676"),
|
|
4494
|
+
greenAccent700: Color.fromString("#00C853"),
|
|
4495
|
+
lightGreen: Color.fromString("#8BC34A"),
|
|
4496
|
+
lightGreen50: Color.fromString("#F1F8E9"),
|
|
4497
|
+
lightGreen100: Color.fromString("#DCEDC8"),
|
|
4498
|
+
lightGreen200: Color.fromString("#C5E1A5"),
|
|
4499
|
+
lightGreen300: Color.fromString("#AED581"),
|
|
4500
|
+
lightGreen400: Color.fromString("#9CCC65"),
|
|
4501
|
+
lightGreen500: Color.fromString("#8BC34A"),
|
|
4502
|
+
lightGreen600: Color.fromString("#7CB342"),
|
|
4503
|
+
lightGreen700: Color.fromString("#689F38"),
|
|
4504
|
+
lightGreen800: Color.fromString("#558B2F"),
|
|
4505
|
+
lightGreen900: Color.fromString("#33691E"),
|
|
4506
|
+
lightGreenAccent: Color.fromString("#B2FF59"),
|
|
4507
|
+
lightGreenAccent100: Color.fromString("#CCFF90"),
|
|
4508
|
+
lightGreenAccent200: Color.fromString("#B2FF59"),
|
|
4509
|
+
lightGreenAccent400: Color.fromString("#76FF03"),
|
|
4510
|
+
lightGreenAccent700: Color.fromString("#64DD17"),
|
|
4511
|
+
lime: Color.fromString("#CDDC39"),
|
|
4512
|
+
lime50: Color.fromString("#F9FBE7"),
|
|
4513
|
+
lime100: Color.fromString("#F0F4C3"),
|
|
4514
|
+
lime200: Color.fromString("#E6EE9C"),
|
|
4515
|
+
lime300: Color.fromString("#DCE775"),
|
|
4516
|
+
lime400: Color.fromString("#D4E157"),
|
|
4517
|
+
lime500: Color.fromString("#CDDC39"),
|
|
4518
|
+
lime600: Color.fromString("#C0CA33"),
|
|
4519
|
+
lime700: Color.fromString("#AFB42B"),
|
|
4520
|
+
lime800: Color.fromString("#9E9D24"),
|
|
4521
|
+
lime900: Color.fromString("#827717"),
|
|
4522
|
+
limeAccent: Color.fromString("#EEFF41"),
|
|
4523
|
+
limeAccent100: Color.fromString("#F4FF81"),
|
|
4524
|
+
limeAccent200: Color.fromString("#EEFF41"),
|
|
4525
|
+
limeAccent400: Color.fromString("#C6FF00"),
|
|
4526
|
+
limeAccent700: Color.fromString("#AEEA00"),
|
|
4527
|
+
yellow: Color.fromString("#FFEB3B"),
|
|
4528
|
+
yellow50: Color.fromString("#FFFDE7"),
|
|
4529
|
+
yellow100: Color.fromString("#FFF9C4"),
|
|
4530
|
+
yellow200: Color.fromString("#FFF59D"),
|
|
4531
|
+
yellow300: Color.fromString("#FFF176"),
|
|
4532
|
+
yellow400: Color.fromString("#FFEE58"),
|
|
4533
|
+
yellow500: Color.fromString("#FFEB3B"),
|
|
4534
|
+
yellow600: Color.fromString("#FDD835"),
|
|
4535
|
+
yellow700: Color.fromString("#FBC02D"),
|
|
4536
|
+
yellow800: Color.fromString("#F9A825"),
|
|
4537
|
+
yellow900: Color.fromString("#F57F17"),
|
|
4538
|
+
yellowAccent: Color.fromString("#FFFF00"),
|
|
4539
|
+
yellowAccent100: Color.fromString("#FFFF8D"),
|
|
4540
|
+
yellowAccent200: Color.fromString("#FFFF00"),
|
|
4541
|
+
yellowAccent400: Color.fromString("#FFEA00"),
|
|
4542
|
+
yellowAccent700: Color.fromString("#FFD600"),
|
|
4543
|
+
amber: Color.fromString("#FFC107"),
|
|
4544
|
+
amber50: Color.fromString("#FFF8E1"),
|
|
4545
|
+
amber100: Color.fromString("#FFECB3"),
|
|
4546
|
+
amber200: Color.fromString("#FFE082"),
|
|
4547
|
+
amber300: Color.fromString("#FFD54F"),
|
|
4548
|
+
amber400: Color.fromString("#FFCA28"),
|
|
4549
|
+
amber500: Color.fromString("#FFC107"),
|
|
4550
|
+
amber600: Color.fromString("#FFB300"),
|
|
4551
|
+
amber700: Color.fromString("#FFA000"),
|
|
4552
|
+
amber800: Color.fromString("#FF8F00"),
|
|
4553
|
+
amber900: Color.fromString("#FF6F00"),
|
|
4554
|
+
amberAccent: Color.fromString("#FFD740"),
|
|
4555
|
+
amberAccent100: Color.fromString("#FFE57F"),
|
|
4556
|
+
amberAccent200: Color.fromString("#FFD740"),
|
|
4557
|
+
amberAccent400: Color.fromString("#FFC400"),
|
|
4558
|
+
amberAccent700: Color.fromString("#FFAB00"),
|
|
4559
|
+
orange: Color.fromString("#FF9800"),
|
|
4560
|
+
orange50: Color.fromString("#FFF3E0"),
|
|
4561
|
+
orange100: Color.fromString("#FFE0B2"),
|
|
4562
|
+
orange200: Color.fromString("#FFCC80"),
|
|
4563
|
+
orange300: Color.fromString("#FFB74D"),
|
|
4564
|
+
orange400: Color.fromString("#FFA726"),
|
|
4565
|
+
orange500: Color.fromString("#FF9800"),
|
|
4566
|
+
orange600: Color.fromString("#FB8C00"),
|
|
4567
|
+
orange700: Color.fromString("#F57C00"),
|
|
4568
|
+
orange800: Color.fromString("#EF6C00"),
|
|
4569
|
+
orange900: Color.fromString("#E65100"),
|
|
4570
|
+
orangeAccent: Color.fromString("#FFAB40"),
|
|
4571
|
+
orangeAccent100: Color.fromString("#FFD180"),
|
|
4572
|
+
orangeAccent200: Color.fromString("#FFAB40"),
|
|
4573
|
+
orangeAccent400: Color.fromString("#FF9100"),
|
|
4574
|
+
orangeAccent700: Color.fromString("#FF6D00"),
|
|
4575
|
+
deepOrange: Color.fromString("#FF5722"),
|
|
4576
|
+
deepOrange50: Color.fromString("#FBE9E7"),
|
|
4577
|
+
deepOrange100: Color.fromString("#FFCCBC"),
|
|
4578
|
+
deepOrange200: Color.fromString("#FFAB91"),
|
|
4579
|
+
deepOrange300: Color.fromString("#FF8A65"),
|
|
4580
|
+
deepOrange400: Color.fromString("#FF7043"),
|
|
4581
|
+
deepOrange500: Color.fromString("#FF5722"),
|
|
4582
|
+
deepOrange600: Color.fromString("#F4511E"),
|
|
4583
|
+
deepOrange700: Color.fromString("#E64A19"),
|
|
4584
|
+
deepOrange800: Color.fromString("#D84315"),
|
|
4585
|
+
deepOrange900: Color.fromString("#BF360C"),
|
|
4586
|
+
deepOrangeAccent: Color.fromString("#FF6E40"),
|
|
4587
|
+
deepOrangeAccent100: Color.fromString("#FF9E80"),
|
|
4588
|
+
deepOrangeAccent200: Color.fromString("#FF6E40"),
|
|
4589
|
+
deepOrangeAccent400: Color.fromString("#FF3D00"),
|
|
4590
|
+
deepOrangeAccent700: Color.fromString("#DD2C00"),
|
|
4591
|
+
brown: Color.fromString("#795548"),
|
|
4592
|
+
brown50: Color.fromString("#EFEBE9"),
|
|
4593
|
+
brown100: Color.fromString("#D7CCC8"),
|
|
4594
|
+
brown200: Color.fromString("#BCAAA4"),
|
|
4595
|
+
brown300: Color.fromString("#A1887F"),
|
|
4596
|
+
brown400: Color.fromString("#8D6E63"),
|
|
4597
|
+
brown500: Color.fromString("#795548"),
|
|
4598
|
+
brown600: Color.fromString("#6D4C41"),
|
|
4599
|
+
brown700: Color.fromString("#5D4037"),
|
|
4600
|
+
brown800: Color.fromString("#4E342E"),
|
|
4601
|
+
brown900: Color.fromString("#3E2723"),
|
|
4602
|
+
grey: Color.fromString("#9E9E9E"),
|
|
4603
|
+
grey50: Color.fromString("#FAFAFA"),
|
|
4604
|
+
grey100: Color.fromString("#F5F5F5"),
|
|
4605
|
+
grey200: Color.fromString("#EEEEEE"),
|
|
4606
|
+
grey300: Color.fromString("#E0E0E0"),
|
|
4607
|
+
grey400: Color.fromString("#BDBDBD"),
|
|
4608
|
+
grey500: Color.fromString("#9E9E9E"),
|
|
4609
|
+
grey600: Color.fromString("#757575"),
|
|
4610
|
+
grey700: Color.fromString("#616161"),
|
|
4611
|
+
grey800: Color.fromString("#424242"),
|
|
4612
|
+
grey900: Color.fromString("#212121"),
|
|
4613
|
+
blueGrey: Color.fromString("#607D8B"),
|
|
4614
|
+
blueGrey50: Color.fromString("#ECEFF1"),
|
|
4615
|
+
blueGrey100: Color.fromString("#CFD8DC"),
|
|
4616
|
+
blueGrey200: Color.fromString("#B0BEC5"),
|
|
4617
|
+
blueGrey300: Color.fromString("#90A4AE"),
|
|
4618
|
+
blueGrey400: Color.fromString("#78909C"),
|
|
4619
|
+
blueGrey500: Color.fromString("#607D8B"),
|
|
4620
|
+
blueGrey600: Color.fromString("#546E7A"),
|
|
4621
|
+
blueGrey700: Color.fromString("#455A64"),
|
|
4622
|
+
blueGrey800: Color.fromString("#37474F"),
|
|
4623
|
+
blueGrey900: Color.fromString("#263238")
|
|
4624
|
+
}, CupertinoColors = {
|
|
4625
|
+
withOpacity: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withOpacity(C),
|
|
4626
|
+
withAlpha: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withAlpha(C),
|
|
4627
|
+
withRed: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withRed(C),
|
|
4628
|
+
withGreen: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withGreen(C),
|
|
4629
|
+
withBlue: (e, C) => (typeof e == "string" ? Color.fromString(e) : e).withBlue(C),
|
|
4630
|
+
computeLuminance: (e) => (typeof e == "string" ? Color.fromString(e) : e).computeLuminance(),
|
|
4631
|
+
lighten: (e, C) => Color.fromString(typeof e == "string" ? e : e.toString()),
|
|
4632
|
+
darken: (e, C) => Color.fromString(typeof e == "string" ? e : e.toString()),
|
|
4633
|
+
activeBlue: Color.fromString("#007AFF"),
|
|
4634
|
+
activeGreen: Color.fromString("#34C759"),
|
|
4635
|
+
activeOrange: Color.fromString("#FF9500"),
|
|
4636
|
+
white: Color.fromString("#FFFFFF"),
|
|
4637
|
+
black: Color.fromString("#000000"),
|
|
4638
|
+
lightBackgroundGray: Color.fromString("#EFEFF4"),
|
|
4639
|
+
extraLightBackgroundGray: Color.fromString("#EFEFF4"),
|
|
4640
|
+
darkBackgroundGray: Color.fromString("#171717"),
|
|
4641
|
+
label: Color.fromString("#000000"),
|
|
4642
|
+
secondaryLabel: Color.fromString("rgba(60, 60, 67, 0.60)"),
|
|
4643
|
+
tertiaryLabel: Color.fromString("rgba(60, 60, 67, 0.30)"),
|
|
4644
|
+
quaternaryLabel: Color.fromString("rgba(60, 60, 67, 0.18)"),
|
|
4645
|
+
systemBlue: Color.fromString("#007AFF"),
|
|
4646
|
+
systemGreen: Color.fromString("#34C759"),
|
|
4647
|
+
systemIndigo: Color.fromString("#5856D6"),
|
|
4648
|
+
systemOrange: Color.fromString("#FF9500"),
|
|
4649
|
+
systemPink: Color.fromString("#FF2D55"),
|
|
4650
|
+
systemPurple: Color.fromString("#AF52DE"),
|
|
4651
|
+
systemRed: Color.fromString("#FF3B30"),
|
|
4652
|
+
systemTeal: Color.fromString("#5AC8FA"),
|
|
4653
|
+
systemYellow: Color.fromString("#FFCC00"),
|
|
4654
|
+
systemGrey: Color.fromString("#8E8E93"),
|
|
4655
|
+
systemGrey2: Color.fromString("#AEAEB2"),
|
|
4656
|
+
systemGrey3: Color.fromString("#C7C7CC"),
|
|
4657
|
+
systemGrey4: Color.fromString("#D1D1D6"),
|
|
4658
|
+
systemGrey5: Color.fromString("#E5E5EA"),
|
|
4659
|
+
systemGrey6: Color.fromString("#F2F2F7"),
|
|
4660
|
+
systemBackground: Color.fromString("#FFFFFF"),
|
|
4661
|
+
secondarySystemBackground: Color.fromString("#F2F2F7"),
|
|
4662
|
+
tertiarySystemBackground: Color.fromString("#FFFFFF"),
|
|
4663
|
+
systemGroupedBackground: Color.fromString("#F2F2F7"),
|
|
4664
|
+
secondarySystemGroupedBackground: Color.fromString("#FFFFFF"),
|
|
4665
|
+
tertiarySystemGroupedBackground: Color.fromString("#F2F2F7"),
|
|
4666
|
+
separator: Color.fromString("rgba(60, 60, 67, 0.29)"),
|
|
4667
|
+
opaqueSeparator: Color.fromString("#C6C6C8"),
|
|
4668
|
+
link: Color.fromString("#007AFF"),
|
|
4669
|
+
destructiveRed: Color.fromString("#FF3B30")
|
|
4670
|
+
};
|
|
4115
4671
|
setTransform(!1);
|
|
4116
|
-
export { AlertDialog_default as AlertDialog, Align_default as Align, Alignment, AnimatedContainer_default as AnimatedContainer, AnimatedOpacity_default as AnimatedOpacity, AppBar_default as AppBar, AssetImage, BlurStyle, Border, BorderRadius, BorderSide, BottomNavigationBar_default as BottomNavigationBar, BottomSheet_default as BottomSheet, Box_default as Box, BoxAlignment, BoxConstraints, BoxDecoration, BoxFit, BoxShadow, BoxShape, Builder_default as Builder, Button_default as Button, ButtonStyle, Card_default as Card, Center_default as Center, Checkbox_default as Checkbox, CheckboxGroup_default as CheckboxGroup, Clip, ClipOval_default as ClipOval, ClipRRect_default as ClipRRect, Column_default as Column, Container_default as Container, CrossAxisAlignment, CupertinoActivityIndicator_default as CupertinoActivityIndicator, CupertinoContextMenu_default as CupertinoContextMenu, CupertinoNavigationBar_default as CupertinoNavigationBar, CupertinoPageScaffold_default as CupertinoPageScaffold, DecorationImage, Divider_default as Divider, EdgeInsets, Expanded_default as Expanded, Fixed_default as Fixed, FlexBox_default as FlexBox, FontStyle, FontWeight, GestureDetector_default as GestureDetector, GridView_default as GridView, Icon_default as Icon, IgnorePointer_default as IgnorePointer, Image_default as Image, InkWell_default as InkWell, LayoutBuilder_default as LayoutBuilder, LinearGradient, ListTile_default as ListTile, ListView_default as ListView, MainAxisAlignment, Matrix4, MediaQuery_default as MediaQuery, MediaQueryKey, MemoryImage, NetworkImage, Opacity_default as Opacity, Orientation, OutlineInputBorder, Padding_default as Padding, Positioned_default as Positioned, RadialGradient, Radio_default as Radio, RadioGroup_default as RadioGroup, RadioListTile_default as RadioListTile, RangeSlider_default as RangeSlider, Row_default as Row, SafeArea_default as SafeArea, Scaffold_default as Scaffold, ScrollView_default as ScrollView, SegmentedControl_default as SegmentedControl, Size, SizedBox_default as SizedBox, Slider_default as Slider, SnackBar, Spacer_default as Spacer, Stack_default as Stack, StackFit, Sticky_default as Sticky, Switch_default as Switch, Text_default as Text, TextAlign, TextArea_default as TextArea, TextBaseline, TextDecoration, TextDecorationStyle, TextDirection, TextField_default as TextField, TextOverflow, TextStyle, TileMode, Transform_default as Transform, UnderlineInputBorder, Wrap_default as Wrap, borderRadiusToStyle, borderSideToStyle, borderToStyle, boxConstraintsToStyle, boxDecorationToStyle, boxShadowToCSS, buttonStyleToStyle, createAssetImage, decorationImageToStyle, edgeInsetsToStyle, isBorderRadius, isBorderSide, isBorders, isBoxConstraints, isBoxDecoration, isBoxShadow, isEdgeInsets, isImageProvider, isTextStyle, marginToStyle, matrix4ToCSSStyle, normalizeSrc, paddingToStyle, px2vw, setAssetBaseURL, setBaseUrl, setDefaultVW, setTransform, sizeToStyle, toCSSStyle as textStyleToCSSStyle, toCSSStyle, useMediaQuery };
|
|
4672
|
+
export { AlertDialog_default as AlertDialog, Align_default as Align, Alignment, AnimatedContainer_default as AnimatedContainer, AnimatedOpacity_default as AnimatedOpacity, AppBar_default as AppBar, AspectRatio_default as AspectRatio, AssetImage, BlurStyle, Border, BorderRadius, BorderSide, BottomNavigationBar_default as BottomNavigationBar, BottomSheet_default as BottomSheet, Box_default as Box, BoxAlignment, BoxConstraints, BoxDecoration, BoxFit, BoxShadow, BoxShape, Builder_default as Builder, Button_default as Button, ButtonStyle, Card_default as Card, Center_default as Center, Checkbox_default as Checkbox, CheckboxGroup_default as CheckboxGroup, Clip, ClipOval_default as ClipOval, ClipRRect_default as ClipRRect, Color, ColorUtils, Colors, Column_default as Column, ConstrainedBox_default as ConstrainedBox, Container_default as Container, CrossAxisAlignment, CupertinoActivityIndicator_default as CupertinoActivityIndicator, CupertinoColors, CupertinoContextMenu_default as CupertinoContextMenu, CupertinoNavigationBar_default as CupertinoNavigationBar, CupertinoPageScaffold_default as CupertinoPageScaffold, DecorationImage, Divider_default as Divider, EdgeInsets, Expanded_default as Expanded, Fixed_default as Fixed, FlexBox_default as FlexBox, FontStyle, FontWeight, GestureDetector_default as GestureDetector, GridView_default as GridView, Icon_default as Icon, IgnorePointer_default as IgnorePointer, Image_default as Image, ImageColorBackground_default as ImageColorBackground, ImageUtils, InkWell_default as InkWell, LayoutBuilder_default as LayoutBuilder, LinearGradient, ListTile_default as ListTile, ListView_default as ListView, MainAxisAlignment, Matrix4, MediaQuery_default as MediaQuery, MediaQueryKey, MemoryImage, NetworkImage, Opacity_default as Opacity, Orientation, OutlineInputBorder, Padding_default as Padding, Positioned_default as Positioned, RadialGradient, Radio_default as Radio, RadioGroup_default as RadioGroup, RadioListTile_default as RadioListTile, RangeSlider_default as RangeSlider, Row_default as Row, SafeArea_default as SafeArea, Scaffold_default as Scaffold, ScrollView_default as ScrollView, SegmentedControl_default as SegmentedControl, Size, SizedBox_default as SizedBox, Slider_default as Slider, SnackBar, Spacer_default as Spacer, Stack_default as Stack, StackFit, Sticky_default as Sticky, Switch_default as Switch, Text_default as Text, TextAlign, TextArea_default as TextArea, TextBaseline, TextDecoration, TextDecorationStyle, TextDirection, TextField_default as TextField, TextOverflow, TextStyle, TileMode, Transform_default as Transform, UnderlineInputBorder, Wrap_default as Wrap, borderRadiusToStyle, borderSideToStyle, borderToStyle, boxConstraintsToStyle, boxDecorationToStyle, boxShadowToCSS, buttonStyleToStyle, computeLuminance, createAssetImage, darken, decorationImageToStyle, edgeInsetsToStyle, extractDominantColor, isBorderRadius, isBorderSide, isBorders, isBoxConstraints, isBoxDecoration, isBoxShadow, isEdgeInsets, isImageProvider, isTextStyle, lighten, marginToStyle, matrix4ToCSSStyle, normalizeSrc, paddingToStyle, px2vw, setAssetBaseURL, setBaseUrl, setDefaultVW, setTransform, sizeToStyle, toCSSStyle as textStyleToCSSStyle, toCSSStyle, useMediaQuery, withAlpha, withBlue, withGreen, withOpacity, withRed };
|