@stackific/md3 0.1.0
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/LICENSE +201 -0
- package/NOTICE +17 -0
- package/README.md +316 -0
- package/THIRD-PARTY-NOTICES +40 -0
- package/dist/fonts/material-symbols-outlined.woff2 +0 -0
- package/dist/fonts/material-symbols-rounded.woff2 +0 -0
- package/dist/fonts/material-symbols-sharp.woff2 +0 -0
- package/dist/fonts/material-symbols-subset.woff2 +0 -0
- package/dist/md3.css +1 -0
- package/dist/md3.js +621 -0
- package/dist/shapes/arch.svg +1 -0
- package/dist/shapes/arrow.svg +1 -0
- package/dist/shapes/boom.svg +1 -0
- package/dist/shapes/bun.svg +1 -0
- package/dist/shapes/burst.svg +1 -0
- package/dist/shapes/circle.svg +1 -0
- package/dist/shapes/clamshell.svg +1 -0
- package/dist/shapes/diamond.svg +1 -0
- package/dist/shapes/fan.svg +1 -0
- package/dist/shapes/flower.svg +1 -0
- package/dist/shapes/gem.svg +1 -0
- package/dist/shapes/ghost-ish.svg +1 -0
- package/dist/shapes/heart.svg +1 -0
- package/dist/shapes/leaf-clover4.svg +1 -0
- package/dist/shapes/leaf-clover8.svg +1 -0
- package/dist/shapes/loading-indicator.svg +1 -0
- package/dist/shapes/oval.svg +1 -0
- package/dist/shapes/pentagon.svg +1 -0
- package/dist/shapes/pill.svg +1 -0
- package/dist/shapes/pixel-circle.svg +1 -0
- package/dist/shapes/pixel-triangle.svg +1 -0
- package/dist/shapes/puffy-diamond.svg +1 -0
- package/dist/shapes/puffy.svg +1 -0
- package/dist/shapes/semicircle.svg +1 -0
- package/dist/shapes/sided-cookie12.svg +1 -0
- package/dist/shapes/sided-cookie4.svg +1 -0
- package/dist/shapes/sided-cookie6.svg +1 -0
- package/dist/shapes/sided-cookie7.svg +1 -0
- package/dist/shapes/sided-cookie9.svg +1 -0
- package/dist/shapes/slanted.svg +1 -0
- package/dist/shapes/soft-boom.svg +1 -0
- package/dist/shapes/soft-burst.svg +1 -0
- package/dist/shapes/square.svg +1 -0
- package/dist/shapes/sunny.svg +1 -0
- package/dist/shapes/triangle.svg +1 -0
- package/dist/shapes/very-sunny.svg +1 -0
- package/dist/shapes/wavy-circle.svg +1 -0
- package/dist/shapes/wavy.svg +1 -0
- package/package.json +63 -0
- package/src/main.js +5 -0
- package/src/runtime/elements/dialogs.js +72 -0
- package/src/runtime/elements/fields.js +181 -0
- package/src/runtime/elements/menus.js +42 -0
- package/src/runtime/elements/pages.js +7 -0
- package/src/runtime/elements/progress.js +35 -0
- package/src/runtime/elements/sliders.js +78 -0
- package/src/runtime/elements/snackbars.js +27 -0
- package/src/runtime/helpers/ripples.js +46 -0
- package/src/runtime/md3.js +141 -0
- package/src/runtime/palette.js +64 -0
- package/src/runtime/settings/theme.js +194 -0
- package/src/runtime/utils.js +165 -0
- package/src/styles/_config.scss +142 -0
- package/src/styles/_mixins.scss +80 -0
- package/src/styles/elements/_badges.scss +65 -0
- package/src/styles/elements/_bars.scss +83 -0
- package/src/styles/elements/_buttons.scss +119 -0
- package/src/styles/elements/_cards.scss +32 -0
- package/src/styles/elements/_chips.scss +46 -0
- package/src/styles/elements/_dialogs.scss +143 -0
- package/src/styles/elements/_dividers.scss +46 -0
- package/src/styles/elements/_expansions.scss +19 -0
- package/src/styles/elements/_fields.scss +458 -0
- package/src/styles/elements/_grids.scss +35 -0
- package/src/styles/elements/_icons.scss +70 -0
- package/src/styles/elements/_layouts.scss +24 -0
- package/src/styles/elements/_lists.scss +76 -0
- package/src/styles/elements/_main-layouts.scss +45 -0
- package/src/styles/elements/_media.scss +104 -0
- package/src/styles/elements/_menus.scss +289 -0
- package/src/styles/elements/_navigations.scss +450 -0
- package/src/styles/elements/_overlays.scss +34 -0
- package/src/styles/elements/_pages.scss +28 -0
- package/src/styles/elements/_progress.scss +141 -0
- package/src/styles/elements/_selections.scss +248 -0
- package/src/styles/elements/_shapes.scss +151 -0
- package/src/styles/elements/_sliders.scss +336 -0
- package/src/styles/elements/_snackbars.scss +44 -0
- package/src/styles/elements/_tables.scss +67 -0
- package/src/styles/elements/_tabs.scss +49 -0
- package/src/styles/elements/_tooltips.scss +125 -0
- package/src/styles/helpers/_alignments.scss +29 -0
- package/src/styles/helpers/_blurs.scss +26 -0
- package/src/styles/helpers/_colors.scss +39 -0
- package/src/styles/helpers/_directions.scss +30 -0
- package/src/styles/helpers/_elevates.scss +20 -0
- package/src/styles/helpers/_forms.scss +76 -0
- package/src/styles/helpers/_margins.scss +39 -0
- package/src/styles/helpers/_opacities.scss +18 -0
- package/src/styles/helpers/_paddings.scss +35 -0
- package/src/styles/helpers/_positions.scss +44 -0
- package/src/styles/helpers/_responsive.scss +24 -0
- package/src/styles/helpers/_ripples.scss +40 -0
- package/src/styles/helpers/_scrolls.scss +7 -0
- package/src/styles/helpers/_shadows.scss +22 -0
- package/src/styles/helpers/_sizes.scss +34 -0
- package/src/styles/helpers/_spaces.scss +22 -0
- package/src/styles/helpers/_typography.scss +132 -0
- package/src/styles/helpers/_waves.scss +52 -0
- package/src/styles/helpers/_zoom.scss +18 -0
- package/src/styles/md3.scss +61 -0
- package/src/styles/settings/_fonts.scss +42 -0
- package/src/styles/settings/_globals.scss +104 -0
- package/src/styles/settings/_reset.scss +82 -0
- package/src/styles/settings/_theme.scss +126 -0
- package/src/styles/settings/_themes.scss +1525 -0
package/dist/md3.js
ADDED
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
const G = [], H = /* @__PURE__ */ new WeakMap(), E = navigator.userAgent.includes("Chrome");
|
|
2
|
+
navigator.userAgent.includes("Firefox");
|
|
3
|
+
navigator.userAgent.includes("Safari");
|
|
4
|
+
navigator.userAgent.includes("Windows");
|
|
5
|
+
const et = navigator.userAgent.includes("Macintosh");
|
|
6
|
+
navigator.userAgent.includes("Linux");
|
|
7
|
+
navigator.userAgent.includes("Android");
|
|
8
|
+
const nt = /iPad|iPhone|iPod/.test(navigator.userAgent);
|
|
9
|
+
function Ft() {
|
|
10
|
+
var t, e;
|
|
11
|
+
return ((e = (t = window == null ? void 0 : window.matchMedia) == null ? void 0 : t.call(window, "(prefers-color-scheme: dark)")) == null ? void 0 : e.matches) ?? !1;
|
|
12
|
+
}
|
|
13
|
+
async function it(t) {
|
|
14
|
+
await new Promise((e) => setTimeout(e, t));
|
|
15
|
+
}
|
|
16
|
+
function St() {
|
|
17
|
+
return "fxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (t) => {
|
|
18
|
+
const e = Math.random() * 16 | 0;
|
|
19
|
+
return (t === "x" ? e : e & 3 | 8).toString(16);
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
function v(t, e) {
|
|
23
|
+
try {
|
|
24
|
+
return typeof t == "string" ? (e ?? document).querySelector(t) : t;
|
|
25
|
+
} catch {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
function f(t, e) {
|
|
30
|
+
try {
|
|
31
|
+
return typeof t == "string" ? (e ?? document).querySelectorAll(t) : t ?? G;
|
|
32
|
+
} catch {
|
|
33
|
+
return G;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function s(t, e) {
|
|
37
|
+
return (t == null ? void 0 : t.classList.contains(e)) ?? !1;
|
|
38
|
+
}
|
|
39
|
+
function h(t, e) {
|
|
40
|
+
var n;
|
|
41
|
+
return ((n = t == null ? void 0 : t.tagName) == null ? void 0 : n.toLowerCase()) === e;
|
|
42
|
+
}
|
|
43
|
+
function A(t, e) {
|
|
44
|
+
var n;
|
|
45
|
+
return ((n = t == null ? void 0 : t.type) == null ? void 0 : n.toLowerCase()) === e;
|
|
46
|
+
}
|
|
47
|
+
function y(t, e) {
|
|
48
|
+
if (t instanceof NodeList) for (let n = 0; n < t.length; n++) t[n].classList.add(e);
|
|
49
|
+
else t == null || t.classList.add(e);
|
|
50
|
+
}
|
|
51
|
+
function g(t, e) {
|
|
52
|
+
if (t instanceof NodeList) for (let n = 0; n < t.length; n++) t[n].classList.remove(e);
|
|
53
|
+
else t == null || t.classList.remove(e);
|
|
54
|
+
}
|
|
55
|
+
function x(t, e, n, i = !0) {
|
|
56
|
+
t != null && t.addEventListener && t.addEventListener(e, n, i);
|
|
57
|
+
}
|
|
58
|
+
function c(t, e, n, i = !0) {
|
|
59
|
+
if (!t) return;
|
|
60
|
+
let o = H.get(t);
|
|
61
|
+
o || (o = /* @__PURE__ */ new Map(), H.set(t, o));
|
|
62
|
+
const u = e + (i ? "1" : "0");
|
|
63
|
+
let r = o.get(u);
|
|
64
|
+
r || (r = /* @__PURE__ */ new Set(), o.set(u, r)), !r.has(n) && (r.add(n), x(t, e, n, i));
|
|
65
|
+
}
|
|
66
|
+
function F(t, e, n, i = !0) {
|
|
67
|
+
t != null && t.removeEventListener && t.removeEventListener(e, n, i);
|
|
68
|
+
}
|
|
69
|
+
function Mt(t, e) {
|
|
70
|
+
var n;
|
|
71
|
+
(n = e == null ? void 0 : e.parentNode) == null || n.insertBefore(t, e);
|
|
72
|
+
}
|
|
73
|
+
function B(t) {
|
|
74
|
+
return t == null ? void 0 : t.previousElementSibling;
|
|
75
|
+
}
|
|
76
|
+
function O(t) {
|
|
77
|
+
return t == null ? void 0 : t.nextElementSibling;
|
|
78
|
+
}
|
|
79
|
+
function w(t) {
|
|
80
|
+
return t == null ? void 0 : t.parentElement;
|
|
81
|
+
}
|
|
82
|
+
function Dt(t) {
|
|
83
|
+
const e = document.createElement("div");
|
|
84
|
+
for (const n of Object.keys(t))
|
|
85
|
+
e.setAttribute(n, t[n]);
|
|
86
|
+
return e;
|
|
87
|
+
}
|
|
88
|
+
function P() {
|
|
89
|
+
var t, e;
|
|
90
|
+
(e = (t = document.activeElement) == null ? void 0 : t.blur) == null || e.call(t);
|
|
91
|
+
}
|
|
92
|
+
function Lt(t) {
|
|
93
|
+
return f(`[data-ui="#${t}"]`);
|
|
94
|
+
}
|
|
95
|
+
function It(t) {
|
|
96
|
+
return v(`[data-ui="#${t}"]`);
|
|
97
|
+
}
|
|
98
|
+
function _t(t) {
|
|
99
|
+
t.id && s(t, "page") && (t = It(t.id) ?? t);
|
|
100
|
+
const e = w(t);
|
|
101
|
+
if (!s(e, "tabs") && !s(e, "tabbed") && !h(e, "nav")) return;
|
|
102
|
+
const n = f("a", e);
|
|
103
|
+
for (let i = 0; i < n.length; i++) g(n[i], "active");
|
|
104
|
+
!h(t, "button") && !s(t, "button") && !s(t, "chip") && y(t, "active");
|
|
105
|
+
}
|
|
106
|
+
function rt() {
|
|
107
|
+
const t = getComputedStyle(document.documentElement).getPropertyValue("--size") || "16px";
|
|
108
|
+
return t.includes("%") ? parseInt(t) * 16 / 100 : t.includes("em") ? parseInt(t) * 16 : parseInt(t);
|
|
109
|
+
}
|
|
110
|
+
function q(t) {
|
|
111
|
+
t.placeholder || (t.placeholder = " ");
|
|
112
|
+
}
|
|
113
|
+
function Bt(t) {
|
|
114
|
+
const e = t.currentTarget, n = w(e), i = v("input:not([type=file], [type=checkbox], [type=radio]), select, textarea", n);
|
|
115
|
+
i && i.focus();
|
|
116
|
+
}
|
|
117
|
+
function $(t) {
|
|
118
|
+
T(t.currentTarget);
|
|
119
|
+
}
|
|
120
|
+
function R(t) {
|
|
121
|
+
T(t.currentTarget);
|
|
122
|
+
}
|
|
123
|
+
function Ot(t) {
|
|
124
|
+
z(t.currentTarget);
|
|
125
|
+
}
|
|
126
|
+
function Pt(t) {
|
|
127
|
+
j(t.currentTarget);
|
|
128
|
+
}
|
|
129
|
+
function qt(t) {
|
|
130
|
+
z(t.currentTarget, t);
|
|
131
|
+
}
|
|
132
|
+
function $t(t) {
|
|
133
|
+
j(t.currentTarget, t);
|
|
134
|
+
}
|
|
135
|
+
function Rt(t) {
|
|
136
|
+
var i;
|
|
137
|
+
const e = t.currentTarget, n = v("input", w(e));
|
|
138
|
+
n && ((i = e.textContent) != null && i.includes("visibility")) && (n.type === "password" ? (n.type = "text", e.textContent = "visibility_off") : (n.type = "password", e.textContent = "visibility"));
|
|
139
|
+
}
|
|
140
|
+
function zt(t) {
|
|
141
|
+
ot(t.currentTarget);
|
|
142
|
+
}
|
|
143
|
+
function jt(t) {
|
|
144
|
+
const e = t.target.closest(".field > label");
|
|
145
|
+
e && (Object.defineProperty(t, "currentTarget", { value: e, configurable: !0 }), Bt(t));
|
|
146
|
+
}
|
|
147
|
+
function Kt() {
|
|
148
|
+
const t = document.body;
|
|
149
|
+
t && c(t, "click", jt);
|
|
150
|
+
}
|
|
151
|
+
function Nt() {
|
|
152
|
+
const t = f(".field > input:not([type=file], [type=color], [type=range])");
|
|
153
|
+
for (let e = 0; e < t.length; e++)
|
|
154
|
+
c(t[e], "focus", $), c(t[e], "blur", R), T(t[e]);
|
|
155
|
+
}
|
|
156
|
+
function Ut() {
|
|
157
|
+
const t = f(".field > select");
|
|
158
|
+
for (let e = 0; e < t.length; e++)
|
|
159
|
+
c(t[e], "focus", $), c(t[e], "blur", R);
|
|
160
|
+
}
|
|
161
|
+
function Wt() {
|
|
162
|
+
const t = f(".field > input[type=file]");
|
|
163
|
+
for (let e = 0; e < t.length; e++)
|
|
164
|
+
c(t[e], "change", Ot), z(t[e]);
|
|
165
|
+
}
|
|
166
|
+
function Yt() {
|
|
167
|
+
const t = f(".field > input[type=color]");
|
|
168
|
+
for (let e = 0; e < t.length; e++)
|
|
169
|
+
c(t[e], "change", Pt), j(t[e]);
|
|
170
|
+
}
|
|
171
|
+
function Gt() {
|
|
172
|
+
const t = f(".field > textarea");
|
|
173
|
+
for (let e = 0; e < t.length; e++)
|
|
174
|
+
c(t[e], "focus", $), c(t[e], "blur", R), q(t[e]), !(E && !et && !nt) && (c(t[e], "input", zt), ot(t[e]));
|
|
175
|
+
}
|
|
176
|
+
function Ht() {
|
|
177
|
+
const t = f(".field:has(> input[type=password]) > i, a");
|
|
178
|
+
for (let e = 0; e < t.length; e++) c(t[e], "click", Rt);
|
|
179
|
+
}
|
|
180
|
+
function T(t) {
|
|
181
|
+
A(t, "number") && !t.value && (t.value = ""), q(t);
|
|
182
|
+
}
|
|
183
|
+
function z(t, e) {
|
|
184
|
+
if ((e == null ? void 0 : e.key) === "Enter") {
|
|
185
|
+
const i = B(t);
|
|
186
|
+
if (!A(i, "file")) return;
|
|
187
|
+
i.click();
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
const n = O(t);
|
|
191
|
+
A(n, "text") && (n.value = t.files ? Array.from(t.files).map((i) => i.name).join(", ") : "", n.readOnly = !0, c(n, "keydown", qt, !1), T(n));
|
|
192
|
+
}
|
|
193
|
+
function j(t, e) {
|
|
194
|
+
if ((e == null ? void 0 : e.key) === "Enter") {
|
|
195
|
+
const i = B(t);
|
|
196
|
+
if (!A(i, "color")) return;
|
|
197
|
+
i.click();
|
|
198
|
+
return;
|
|
199
|
+
}
|
|
200
|
+
const n = O(t);
|
|
201
|
+
A(n, "text") && (n.readOnly = !0, n.value = t.value, c(n, "keydown", $t, !1), T(n));
|
|
202
|
+
}
|
|
203
|
+
function ot(t) {
|
|
204
|
+
if (q(t), t.hasAttribute("rows")) return;
|
|
205
|
+
const e = rt();
|
|
206
|
+
t.style.blockSize = "auto", t.style.blockSize = `${t.scrollHeight - e}px`;
|
|
207
|
+
}
|
|
208
|
+
function Vt() {
|
|
209
|
+
Kt(), Nt(), Ut(), Wt(), Yt(), Gt(), Ht();
|
|
210
|
+
}
|
|
211
|
+
function V(t) {
|
|
212
|
+
const e = t.target;
|
|
213
|
+
!h(e, "input") && !h(e, "select") || (e.type === "range" ? (e.focus(), ct(e)) : at());
|
|
214
|
+
}
|
|
215
|
+
function Zt(t) {
|
|
216
|
+
if (!window.matchMedia("(pointer: coarse)").matches) return;
|
|
217
|
+
t.target.blur();
|
|
218
|
+
}
|
|
219
|
+
function at() {
|
|
220
|
+
const t = document.body, e = f(".slider > input[type=range]");
|
|
221
|
+
e.length ? x(t, "input", V, !1) : F(t, "input", V, !1);
|
|
222
|
+
for (let n = 0; n < e.length; n++) ct(e[n]);
|
|
223
|
+
}
|
|
224
|
+
function ct(t) {
|
|
225
|
+
c(t, "change", Zt);
|
|
226
|
+
const e = w(t), n = v("span", e), i = f("input", e);
|
|
227
|
+
if (!i.length || !n) return;
|
|
228
|
+
const o = rt(), u = s(e, "max") ? 0 : 0.25 * o * 100 / i[0].offsetWidth, r = [], l = [];
|
|
229
|
+
for (let m = 0, Tt = i.length; m < Tt; m++) {
|
|
230
|
+
const U = parseFloat(i[m].min) || 0, Ct = parseFloat(i[m].max) || 100, W = parseFloat(i[m].value) || 0, Y = (W - U) * 100 / (Ct - U), Et = u / 2 - u * Y / 100;
|
|
231
|
+
r.push(Y + Et), l.push(W);
|
|
232
|
+
}
|
|
233
|
+
let p = r[0], d = 0, N = 100 - d - p, S = l[0], M = l[1] || 0;
|
|
234
|
+
i.length > 1 && (p = Math.abs(r[1] - r[0]), d = r[1] > r[0] ? r[0] : r[1], N = 100 - d - p, M > S && (S = l[1] || 0, M = l[0])), requestAnimationFrame(() => {
|
|
235
|
+
e.style.cssText = `--_start: ${d}%; --_end: ${N}%; --_value1: '${S}'; --_value2: '${M}';`;
|
|
236
|
+
});
|
|
237
|
+
}
|
|
238
|
+
function Xt() {
|
|
239
|
+
at();
|
|
240
|
+
}
|
|
241
|
+
const Z = {
|
|
242
|
+
red: "#F44336",
|
|
243
|
+
pink: "#E91E63",
|
|
244
|
+
purple: "#9C27B0",
|
|
245
|
+
"deep-purple": "#673AB7",
|
|
246
|
+
blue: "#2196F3",
|
|
247
|
+
"light-blue": "#03A9F4",
|
|
248
|
+
cyan: "#00BCD4",
|
|
249
|
+
green: "#4CAF50",
|
|
250
|
+
"light-green": "#8BC34A",
|
|
251
|
+
lime: "#CDDC39",
|
|
252
|
+
yellow: "#FFEB3B",
|
|
253
|
+
amber: "#FFC107",
|
|
254
|
+
orange: "#FF9800",
|
|
255
|
+
"deep-orange": "#FF5722",
|
|
256
|
+
brown: "#795548",
|
|
257
|
+
"blue-grey": "#607D8B",
|
|
258
|
+
stackific: "#1447E6",
|
|
259
|
+
"hello-pumpkin": "#FF8F00",
|
|
260
|
+
"sea-lettuce": "#63A002",
|
|
261
|
+
olive: "#7C7C67",
|
|
262
|
+
nord: "#5E81AC",
|
|
263
|
+
"vega-violet": "#AD46FF",
|
|
264
|
+
"wild-strawberry": "#F6339A",
|
|
265
|
+
"heliotrope-magenta": "#E12AFB",
|
|
266
|
+
"voodoo-violet": "#804792",
|
|
267
|
+
"red-orchid": "#C0001C",
|
|
268
|
+
"green-brown": "#6E5D00",
|
|
269
|
+
shakshuka: "#AB350F",
|
|
270
|
+
"purple-honeycreeper": "#8E51FF",
|
|
271
|
+
maldives: "#00B8DB",
|
|
272
|
+
verditer: "#00BBA7",
|
|
273
|
+
fennel: "#00BC7D",
|
|
274
|
+
gold: "#EFB100",
|
|
275
|
+
"vitamin-c": "#FD9A00",
|
|
276
|
+
burtuqali: "#FF6900"
|
|
277
|
+
}, ut = [
|
|
278
|
+
"stackific",
|
|
279
|
+
"hello-pumpkin",
|
|
280
|
+
"sea-lettuce",
|
|
281
|
+
"olive",
|
|
282
|
+
"nord",
|
|
283
|
+
"vega-violet",
|
|
284
|
+
"wild-strawberry",
|
|
285
|
+
"heliotrope-magenta",
|
|
286
|
+
"voodoo-violet",
|
|
287
|
+
"red-orchid",
|
|
288
|
+
"green-brown",
|
|
289
|
+
"shakshuka",
|
|
290
|
+
"purple-honeycreeper",
|
|
291
|
+
"maldives",
|
|
292
|
+
"verditer",
|
|
293
|
+
"fennel",
|
|
294
|
+
"gold",
|
|
295
|
+
"vitamin-c",
|
|
296
|
+
"burtuqali"
|
|
297
|
+
], a = {
|
|
298
|
+
light: "",
|
|
299
|
+
dark: ""
|
|
300
|
+
}, st = "md3:mode", lt = "md3:theme";
|
|
301
|
+
function Qt() {
|
|
302
|
+
return ut.slice();
|
|
303
|
+
}
|
|
304
|
+
function Jt() {
|
|
305
|
+
var t;
|
|
306
|
+
try {
|
|
307
|
+
return ((t = globalThis.localStorage) == null ? void 0 : t.getItem(lt)) || null;
|
|
308
|
+
} catch {
|
|
309
|
+
return null;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
function te(t) {
|
|
313
|
+
var e;
|
|
314
|
+
try {
|
|
315
|
+
(e = globalThis.localStorage) == null || e.setItem(lt, t);
|
|
316
|
+
} catch {
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
function b() {
|
|
320
|
+
return document == null ? void 0 : document.documentElement;
|
|
321
|
+
}
|
|
322
|
+
function ft() {
|
|
323
|
+
var t;
|
|
324
|
+
try {
|
|
325
|
+
return ((t = globalThis.localStorage) == null ? void 0 : t.getItem(st)) || null;
|
|
326
|
+
} catch {
|
|
327
|
+
return null;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
function ee(t) {
|
|
331
|
+
var e;
|
|
332
|
+
try {
|
|
333
|
+
(e = globalThis.localStorage) == null || e.setItem(st, t);
|
|
334
|
+
} catch {
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
function X() {
|
|
338
|
+
var e, n;
|
|
339
|
+
const t = (n = (e = b()) == null ? void 0 : e.dataset) == null ? void 0 : n.mode;
|
|
340
|
+
return t === "auto" || t === "light" || t === "dark" ? t : ft() || "auto";
|
|
341
|
+
}
|
|
342
|
+
function _() {
|
|
343
|
+
var e, n;
|
|
344
|
+
const t = (n = (e = b()) == null ? void 0 : e.dataset) == null ? void 0 : n.mode;
|
|
345
|
+
return t === "light" || t === "dark" ? t : Ft() ? "dark" : "light";
|
|
346
|
+
}
|
|
347
|
+
function ne() {
|
|
348
|
+
if (a.light && a.dark) return a;
|
|
349
|
+
const t = b();
|
|
350
|
+
if (!t) return a;
|
|
351
|
+
const e = t.dataset.mode, n = (i) => {
|
|
352
|
+
t.dataset.mode = i;
|
|
353
|
+
const o = getComputedStyle(t), u = [
|
|
354
|
+
"--primary",
|
|
355
|
+
"--on-primary",
|
|
356
|
+
"--primary-container",
|
|
357
|
+
"--on-primary-container",
|
|
358
|
+
"--secondary",
|
|
359
|
+
"--on-secondary",
|
|
360
|
+
"--secondary-container",
|
|
361
|
+
"--on-secondary-container",
|
|
362
|
+
"--tertiary",
|
|
363
|
+
"--on-tertiary",
|
|
364
|
+
"--tertiary-container",
|
|
365
|
+
"--on-tertiary-container",
|
|
366
|
+
"--error",
|
|
367
|
+
"--on-error",
|
|
368
|
+
"--error-container",
|
|
369
|
+
"--on-error-container",
|
|
370
|
+
"--background",
|
|
371
|
+
"--on-background",
|
|
372
|
+
"--surface",
|
|
373
|
+
"--on-surface",
|
|
374
|
+
"--surface-variant",
|
|
375
|
+
"--on-surface-variant",
|
|
376
|
+
"--outline",
|
|
377
|
+
"--outline-variant",
|
|
378
|
+
"--shadow",
|
|
379
|
+
"--scrim",
|
|
380
|
+
"--inverse-surface",
|
|
381
|
+
"--inverse-on-surface",
|
|
382
|
+
"--inverse-primary",
|
|
383
|
+
"--surface-dim",
|
|
384
|
+
"--surface-bright",
|
|
385
|
+
"--surface-container-lowest",
|
|
386
|
+
"--surface-container-low",
|
|
387
|
+
"--surface-container",
|
|
388
|
+
"--surface-container-high",
|
|
389
|
+
"--surface-container-highest"
|
|
390
|
+
];
|
|
391
|
+
let r = "";
|
|
392
|
+
for (let l = 0, p = u.length; l < p; l++)
|
|
393
|
+
r += u[l] + ":" + o.getPropertyValue(u[l]) + ";";
|
|
394
|
+
return r;
|
|
395
|
+
};
|
|
396
|
+
try {
|
|
397
|
+
a.light = n("light"), a.dark = n("dark");
|
|
398
|
+
} finally {
|
|
399
|
+
e === void 0 ? delete t.dataset.mode : t.dataset.mode = e;
|
|
400
|
+
}
|
|
401
|
+
return a;
|
|
402
|
+
}
|
|
403
|
+
async function dt(t) {
|
|
404
|
+
const e = b();
|
|
405
|
+
if (!t) return ne();
|
|
406
|
+
if (t.light && t.dark)
|
|
407
|
+
return a.light = t.light, a.dark = t.dark, e.setAttribute("style", t[_()]), t;
|
|
408
|
+
if (typeof t == "string" && ut.includes(t))
|
|
409
|
+
return te(t), e.dataset.theme = t, e.removeAttribute("style"), a.light = "", a.dark = "", { light: "", dark: "" };
|
|
410
|
+
typeof t == "string" && Z[t] && (t = Z[t]);
|
|
411
|
+
const n = globalThis.materialDynamicColors;
|
|
412
|
+
if (typeof n != "function")
|
|
413
|
+
throw new Error(
|
|
414
|
+
'ui("theme", source) requires material-dynamic-colors. Install it and `import "material-dynamic-colors"` once at app entry, or include the CDN script.'
|
|
415
|
+
);
|
|
416
|
+
return n(t).then((i) => {
|
|
417
|
+
const o = (u) => {
|
|
418
|
+
let r = "";
|
|
419
|
+
for (const l of Object.keys(u)) {
|
|
420
|
+
const p = u[l], d = l.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, "$1-$2").toLowerCase();
|
|
421
|
+
r += "--" + d + ":" + p + ";";
|
|
422
|
+
}
|
|
423
|
+
return r;
|
|
424
|
+
};
|
|
425
|
+
return a.light = o(i.light), a.dark = o(i.dark), e.setAttribute("style", a[_()]), a;
|
|
426
|
+
});
|
|
427
|
+
}
|
|
428
|
+
function pt(t) {
|
|
429
|
+
const e = b();
|
|
430
|
+
return e ? (t && (t !== "auto" && t !== "light" && t !== "dark" && (t = "auto"), ee(t), e.dataset.mode = t, a.light && a.dark && e.setAttribute("style", a[_()])), X()) : t;
|
|
431
|
+
}
|
|
432
|
+
let Q = !1;
|
|
433
|
+
function ie() {
|
|
434
|
+
if (Q || typeof globalThis.matchMedia != "function") return;
|
|
435
|
+
const t = globalThis.matchMedia("(prefers-color-scheme: dark)"), e = () => {
|
|
436
|
+
const n = b();
|
|
437
|
+
!n || n.dataset.mode !== "auto" || !a.light || !a.dark || n.setAttribute("style", a[t.matches ? "dark" : "light"]);
|
|
438
|
+
};
|
|
439
|
+
t.addEventListener ? t.addEventListener("change", e) : t.addListener && t.addListener(e), Q = !0;
|
|
440
|
+
}
|
|
441
|
+
const C = [];
|
|
442
|
+
function gt(t) {
|
|
443
|
+
if (t.key === "Escape") {
|
|
444
|
+
const e = t.currentTarget;
|
|
445
|
+
yt(e, e);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
function re(t) {
|
|
449
|
+
(v("[autofocus]", t) ?? t).focus();
|
|
450
|
+
}
|
|
451
|
+
function ht(t, e) {
|
|
452
|
+
g(Lt(t.id), "active"), g(t, "active"), g(e, "active"), t.close(), C.pop();
|
|
453
|
+
const n = C[C.length - 1];
|
|
454
|
+
n && n.focus();
|
|
455
|
+
}
|
|
456
|
+
async function oe(t, e, n, i) {
|
|
457
|
+
!h(i, "button") && !s(i, "button") && !s(i, "chip") && y(i, "active"), y(e, "active"), y(t, "active"), n ? t.showModal() : t.show(), await it(90), n || x(t, "keydown", gt, !1), C.push(t), re(t);
|
|
458
|
+
}
|
|
459
|
+
function ae(t) {
|
|
460
|
+
const e = t.currentTarget, n = O(e);
|
|
461
|
+
h(n, "dialog") && ht(n, e);
|
|
462
|
+
}
|
|
463
|
+
async function yt(t, e) {
|
|
464
|
+
P();
|
|
465
|
+
let n = B(e);
|
|
466
|
+
const i = s(e, "active") || e.open, o = s(e, "modal");
|
|
467
|
+
o || F(e, "keydown", gt, !1), s(n, "overlay") || (n = Dt({ class: "overlay" }), Mt(n, e), await it(90)), o || c(n, "click", ae, !1), i ? ht(e, n) : oe(e, n, o, t);
|
|
468
|
+
}
|
|
469
|
+
let D;
|
|
470
|
+
function vt(t) {
|
|
471
|
+
F(document.body, "click", vt);
|
|
472
|
+
const e = t.target, n = f("menu.active");
|
|
473
|
+
for (let i = 0; i < n.length; i++) bt(e, n[i], t);
|
|
474
|
+
}
|
|
475
|
+
function ce(t) {
|
|
476
|
+
setTimeout(() => {
|
|
477
|
+
const e = v(".field > input", t);
|
|
478
|
+
e ? e.focus() : t.focus();
|
|
479
|
+
}, 90);
|
|
480
|
+
}
|
|
481
|
+
function bt(t, e, n) {
|
|
482
|
+
D && clearTimeout(D), D = setTimeout(() => {
|
|
483
|
+
x(document.body, "click", vt), h(document.activeElement, "input") || P();
|
|
484
|
+
const i = s(e, "active"), o = (n == null ? void 0 : n.target) === t, u = !!t.closest("menu");
|
|
485
|
+
if (!i && u || i && o) {
|
|
486
|
+
g(e, "active");
|
|
487
|
+
return;
|
|
488
|
+
}
|
|
489
|
+
g(f("menu.active"), "active"), y(e, "active"), ce(e);
|
|
490
|
+
}, 90);
|
|
491
|
+
}
|
|
492
|
+
let k;
|
|
493
|
+
function ue(t) {
|
|
494
|
+
const e = t.currentTarget;
|
|
495
|
+
g(e, "active"), k && clearTimeout(k);
|
|
496
|
+
}
|
|
497
|
+
function se(t, e) {
|
|
498
|
+
P();
|
|
499
|
+
const n = f(".snackbar.active");
|
|
500
|
+
for (let i = 0; i < n.length; i++) g(n[i], "active");
|
|
501
|
+
y(t, "active"), c(t, "click", ue), k && clearTimeout(k), e !== -1 && (k = setTimeout(() => {
|
|
502
|
+
g(t, "active");
|
|
503
|
+
}, e ?? 6e3));
|
|
504
|
+
}
|
|
505
|
+
function le(t) {
|
|
506
|
+
const e = w(t);
|
|
507
|
+
e && g(f(":scope > .page", e), "active"), y(t, "active");
|
|
508
|
+
}
|
|
509
|
+
function mt(t) {
|
|
510
|
+
const e = t instanceof MouseEvent, n = t.currentTarget, i = n.getBoundingClientRect(), o = Math.max(i.width, i.height), u = o / 2, r = e ? t.clientX - i.left - u : i.width / 2 - u, l = e ? t.clientY - i.top - u : i.height / 2 - u, p = document.createElement("div");
|
|
511
|
+
p.className = "ripple-js";
|
|
512
|
+
const d = document.createElement("div");
|
|
513
|
+
d.style.inlineSize = d.style.blockSize = `${o}px`, d.style.left = `${r}px`, d.style.top = `${l}px`, c(d, "animationend", () => {
|
|
514
|
+
p.remove();
|
|
515
|
+
}), p.appendChild(d), n.appendChild(p);
|
|
516
|
+
}
|
|
517
|
+
function fe(t) {
|
|
518
|
+
const e = t.target.closest(".slow-ripple, .ripple, .fast-ripple");
|
|
519
|
+
e && (Object.defineProperty(t, "currentTarget", { value: e, configurable: !0 }), mt(t));
|
|
520
|
+
}
|
|
521
|
+
function de(t) {
|
|
522
|
+
const e = t.target.closest(".slow-ripple, .ripple, .fast-ripple");
|
|
523
|
+
!e || t.key !== " " || (Object.defineProperty(t, "currentTarget", { value: e, configurable: !0 }), mt(t));
|
|
524
|
+
}
|
|
525
|
+
function pe() {
|
|
526
|
+
const t = document.body;
|
|
527
|
+
t && (c(t, "mousedown", fe), c(t, "keydown", de));
|
|
528
|
+
}
|
|
529
|
+
function J(t) {
|
|
530
|
+
const e = t.target;
|
|
531
|
+
h(e, "progress") ? kt(e) : At();
|
|
532
|
+
}
|
|
533
|
+
function kt(t) {
|
|
534
|
+
requestAnimationFrame(() => {
|
|
535
|
+
if (!t.hasAttribute("value") && !t.hasAttribute("max")) {
|
|
536
|
+
const e = s(t, "circle") ? "50" : "100";
|
|
537
|
+
t.style.setProperty("--_value", e), t.setAttribute("value", e), t.setAttribute("max", "100"), t.classList.add("indeterminate");
|
|
538
|
+
} else
|
|
539
|
+
t.style.setProperty("--_value", String(t.value));
|
|
540
|
+
});
|
|
541
|
+
}
|
|
542
|
+
function At() {
|
|
543
|
+
if (E && !et && !nt) return;
|
|
544
|
+
const t = document.body, e = f("progress");
|
|
545
|
+
e.length ? x(t, "input", J, !1) : F(t, "input", J, !1);
|
|
546
|
+
for (let n = 0; n < e.length; n++) kt(e[n]);
|
|
547
|
+
}
|
|
548
|
+
let L, I = null;
|
|
549
|
+
function tt() {
|
|
550
|
+
L && clearTimeout(L), L = setTimeout(() => wt(), 180);
|
|
551
|
+
}
|
|
552
|
+
async function K(t, e, n, i) {
|
|
553
|
+
if (!e && (e = v(t.getAttribute("data-ui")), !e)) {
|
|
554
|
+
t.classList.toggle("active");
|
|
555
|
+
return;
|
|
556
|
+
}
|
|
557
|
+
if (_t(t), h(e, "dialog")) {
|
|
558
|
+
requestAnimationFrame(() => yt(t, e));
|
|
559
|
+
return;
|
|
560
|
+
}
|
|
561
|
+
if (h(e, "menu")) {
|
|
562
|
+
requestAnimationFrame(() => bt(t, e, i));
|
|
563
|
+
return;
|
|
564
|
+
}
|
|
565
|
+
if (s(e, "snackbar")) {
|
|
566
|
+
requestAnimationFrame(() => se(e, n));
|
|
567
|
+
return;
|
|
568
|
+
}
|
|
569
|
+
if (s(e, "page")) {
|
|
570
|
+
requestAnimationFrame(() => le(e));
|
|
571
|
+
return;
|
|
572
|
+
}
|
|
573
|
+
if (s(e, "active")) {
|
|
574
|
+
g(t, "active"), g(e, "active");
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
577
|
+
y(e, "active");
|
|
578
|
+
}
|
|
579
|
+
function xt() {
|
|
580
|
+
globalThis.ui || I || !globalThis.MutationObserver || (I = new MutationObserver(tt), I.observe(document.body, { childList: !0, subtree: !0 }), tt());
|
|
581
|
+
}
|
|
582
|
+
function ge(t) {
|
|
583
|
+
const e = t.target.closest("[data-ui]");
|
|
584
|
+
e && K(e, null, null, t);
|
|
585
|
+
}
|
|
586
|
+
function he(t) {
|
|
587
|
+
const e = t.target.closest("[data-ui]");
|
|
588
|
+
e && h(e, "a") && !e.getAttribute("href") && t.key === "Enter" && K(e, null, null, t);
|
|
589
|
+
}
|
|
590
|
+
function ye() {
|
|
591
|
+
const t = document.body;
|
|
592
|
+
t && (c(t, "click", ge), c(t, "keydown", he));
|
|
593
|
+
}
|
|
594
|
+
function wt(t, e) {
|
|
595
|
+
if (t) {
|
|
596
|
+
if (t === "setup") {
|
|
597
|
+
xt();
|
|
598
|
+
return;
|
|
599
|
+
}
|
|
600
|
+
if (t === "guid") return St();
|
|
601
|
+
if (t === "mode") return pt(e);
|
|
602
|
+
if (t === "theme") return dt(e);
|
|
603
|
+
if (t === "themes") return Qt();
|
|
604
|
+
const n = v(t);
|
|
605
|
+
if (!n) return;
|
|
606
|
+
K(n, n, e);
|
|
607
|
+
}
|
|
608
|
+
ye(), Vt(), pe(), Xt(), At();
|
|
609
|
+
}
|
|
610
|
+
function ve() {
|
|
611
|
+
var e;
|
|
612
|
+
if (globalThis.ui) return;
|
|
613
|
+
const t = (e = globalThis.document) == null ? void 0 : e.documentElement;
|
|
614
|
+
if (t) {
|
|
615
|
+
pt(ft() || t.dataset.mode || "auto");
|
|
616
|
+
const n = Jt();
|
|
617
|
+
n && dt(n);
|
|
618
|
+
}
|
|
619
|
+
ie(), xt(), globalThis.ui = wt;
|
|
620
|
+
}
|
|
621
|
+
ve();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="304" height="304" fill="none" viewBox="0 0 304 304"><path fill="#d0bcff" d="M304 253.72c0 6.11 0 9.17-.31 11.74-2.38 20.05-18.18 35.85-38.23 38.23-2.57.31-5.63.31-11.74.31H50.281c-6.112 0-9.168 0-11.737-.31-20.049-2.38-35.856-18.18-38.239-38.23C0 262.89 0 259.83 0 253.72V152C0 68.05 68.053 0 152 0c83.95 0 152 68.05 152 152z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="316" height="278" fill="none" viewBox="0 0 316 278"><path fill="#d0bcff" d="M271.57 122.2c-14.018-21.58-28.035-43.19-42.053-64.77-9.094-14.01-18.35-28.21-30.645-39.34-12.296-11.15-28.224-19.03-44.556-18-14.34.92-27.632 8.63-38.125 18.7S97.546 41.26 89.528 53.54C67.842 86.72 46.13 119.9 24.444 153.1 14.139 168.86 3.565 185.31.713 204.09c-3.444 22.69 5.839 45.8 22.305 60.89 17.219 15.78 45.12 14.5 66.08 10.18 22.977-4.75 45.443-13.68 68.877-13.65 20.072 0 39.471 6.6 59.004 11.4 19.506 4.77 40.466 7.71 59.3.61 23.38-8.79 40.169-33.79 39.712-59.45-.431-23.41-13.534-44.32-26.152-63.8-6.081-9.35-12.161-18.72-18.242-28.07z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" fill="none" viewBox="0 0 320 320"><path fill="#d0bcff" d="M156.818 10.16c.753-6.02 1.13-9.03 1.702-9.57a2.145 2.145 0 0 1 2.96 0c.572.54.949 3.55 1.702 9.57l9.578 76.58c.304 2.43.456 3.64.892 4.15.633.72 1.668.95 2.541.54.601-.28 1.232-1.33 2.493-3.43l39.729-66.04c3.124-5.19 4.686-7.79 5.427-8.05 1.078-.37 2.26.16 2.704 1.22.305.72-.569 3.63-2.317 9.44l-22.23 73.87c-.706 2.35-1.058 3.52-.863 4.15a2.17 2.17 0 0 0 2.102 1.54c.663-.01 1.663-.71 3.663-2.11l63.01-44.08c4.956-3.47 7.433-5.2 8.214-5.14a2.177 2.177 0 0 1 1.98 2.21c-.014.79-1.988 3.09-5.935 7.68l-50.194 58.4c-1.593 1.85-2.389 2.78-2.468 3.44-.115.96.414 1.88 1.299 2.26.609.27 1.806.03 4.199-.43l75.397-14.5c5.929-1.14 8.894-1.71 9.58-1.33.998.55 1.398 1.79.915 2.83-.332.71-3.064 2-8.528 4.58l-69.478 32.83c-2.206 1.04-3.308 1.56-3.648 2.13-.493.83-.382 1.89.272 2.6.45.49 1.636.77 4.009 1.32l74.747 17.59c5.878 1.38 8.818 2.07 9.29 2.7.687.91.552 2.21-.309 2.96-.593.51-3.61.58-9.646.7l-76.75 1.57c-2.436.05-3.654.08-4.195.46a2.19 2.19 0 0 0-.803 2.49c.214.63 1.184 1.37 3.126 2.85l61.173 46.62c4.81 3.67 7.216 5.51 7.393 6.27a2.18 2.18 0 0 1-1.48 2.58c-.749.23-3.531-.95-9.096-3.3l-70.749-29.95c-2.246-.95-3.369-1.43-4.019-1.3a2.18 2.18 0 0 0-1.739 1.94c-.059.66.528 1.74 1.703 3.88l37.021 67.62c2.911 5.31 4.367 7.97 4.219 8.75a2.175 2.175 0 0 1-2.395 1.75c-.778-.1-2.843-2.31-6.973-6.74l-52.517-56.3c-1.667-1.78-2.501-2.68-3.146-2.82a2.15 2.15 0 0 0-2.374 1.06c-.323.58-.22 1.8-.015 4.24l6.467 76.91c.509 6.05.763 9.07.315 9.72a2.16 2.16 0 0 1-2.895.62c-.672-.41-1.663-3.28-3.645-9.01l-25.204-72.9c-.8-2.32-1.2-3.47-1.73-3.87a2.16 2.16 0 0 0-2.598 0c-.53.4-.93 1.55-1.73 3.87l-25.204 72.9c-1.982 5.73-2.973 8.6-3.645 9.01-.976.59-2.242.32-2.895-.62-.448-.65-.194-3.67.315-9.72l6.467-76.91c.205-2.44.308-3.66-.015-4.24a2.146 2.146 0 0 0-2.373-1.06c-.646.14-1.48 1.04-3.147 2.82l-52.517 56.3c-4.13 4.43-6.195 6.64-6.973 6.74a2.175 2.175 0 0 1-2.395-1.75c-.148-.78 1.308-3.44 4.219-8.75l37.021-67.62c1.175-2.14 1.762-3.22 1.703-3.88a2.18 2.18 0 0 0-1.739-1.94c-.65-.13-1.773.35-4.019 1.3l-70.75 29.95c-5.564 2.35-8.346 3.53-9.095 3.3a2.18 2.18 0 0 1-1.48-2.58c.177-.76 2.583-2.6 7.393-6.27l61.173-46.62c1.942-1.48 2.912-2.22 3.126-2.85a2.19 2.19 0 0 0-.803-2.49c-.541-.38-1.76-.41-4.195-.46l-76.75-1.57c-6.036-.12-9.054-.19-9.646-.7a2.19 2.19 0 0 1-.309-2.96c.472-.63 3.412-1.32 9.29-2.7l74.747-17.59c2.373-.55 3.559-.83 4.01-1.32.653-.71.764-1.77.271-2.6-.34-.57-1.442-1.09-3.648-2.13L15.63 117.94c-5.464-2.58-8.196-3.87-8.528-4.58a2.18 2.18 0 0 1 .915-2.83c.686-.38 3.65.19 9.58 1.33l75.397 14.5c2.393.46 3.59.7 4.199.43a2.18 2.18 0 0 0 1.299-2.26c-.078-.66-.875-1.59-2.468-3.44L45.83 62.69c-3.947-4.59-5.92-6.89-5.935-7.68a2.18 2.18 0 0 1 1.98-2.21c.78-.06 3.258 1.67 8.214 5.14l63.01 44.08c2 1.4 3 2.1 3.663 2.11a2.17 2.17 0 0 0 2.102-1.54c.195-.63-.157-1.8-.863-4.15l-22.23-73.87c-1.748-5.81-2.622-8.72-2.317-9.44a2.17 2.17 0 0 1 2.704-1.22c.741.26 2.303 2.86 5.427 8.05L141.314 88c1.261 2.1 1.892 3.15 2.493 3.43.873.41 1.908.18 2.541-.54.436-.51.588-1.72.892-4.15z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="310" height="320" fill="none" viewBox="0 0 310 320"><path fill="#d0bcff" d="M0 81.36A81.35 81.35 0 0 1 81.36 0h147.28a81.35 81.35 0 0 1 22.7 159.5.5.5 0 0 0-.37.5c0 .23.15.43.37.5a81.38 81.38 0 0 1-22.7 159.5H81.36A81.35 81.35 0 0 1 0 238.64a81.4 81.4 0 0 1 58-77.95.72.72 0 0 0 0-1.38A81.4 81.4 0 0 1 0 81.36"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" fill="none" viewBox="0 0 320 320"><path fill="#d0bcff" d="M157.39 2.55c.74-1.32 1.1-1.97 1.55-2.25.65-.4 1.47-.4 2.12 0 .45.28.81.93 1.55 2.25l25.26 45.15c.45.81.68 1.22.99 1.46.44.36 1.01.51 1.57.42.39-.06.79-.29 1.58-.77l44.46-26.47c1.29-.77 1.94-1.16 2.46-1.17.77-.03 1.47.38 1.84 1.05.25.47.24 1.22.22 2.73l-.7 51.73c-.02.93-.02 1.39.12 1.76.2.53.62.95 1.15 1.15.37.14.83.14 1.76.12l51.73-.7c1.51-.02 2.26-.03 2.73.22.67.37 1.08 1.07 1.05 1.84-.01.52-.4 1.17-1.17 2.46l-26.47 44.46c-.48.79-.71 1.19-.77 1.58-.09.56.06 1.13.42 1.57.24.31.65.54 1.46.99l45.15 25.26c1.32.74 1.97 1.1 2.25 1.55.4.65.4 1.47 0 2.12-.28.45-.93.81-2.25 1.55l-45.15 25.26c-.81.45-1.22.68-1.46.99-.36.44-.51 1.01-.42 1.57.06.39.29.79.77 1.58l26.47 44.46c.77 1.29 1.16 1.94 1.17 2.46.03.77-.38 1.47-1.05 1.84-.47.25-1.22.24-2.73.22l-51.73-.7c-.93-.02-1.39-.02-1.76.12-.53.2-.95.62-1.15 1.15-.14.37-.14.83-.12 1.76l.7 51.73c.02 1.51.03 2.26-.22 2.73-.37.67-1.07 1.08-1.84 1.05-.52-.01-1.17-.4-2.46-1.17l-44.46-26.47c-.79-.48-1.19-.71-1.58-.77-.56-.09-1.13.06-1.57.42-.31.24-.54.65-.99 1.46l-25.26 45.15c-.74 1.32-1.1 1.97-1.55 2.25-.65.4-1.47.4-2.12 0-.45-.28-.81-.93-1.55-2.25l-25.26-45.15c-.45-.81-.68-1.22-.99-1.46-.44-.36-1.01-.51-1.57-.42-.39.06-.79.29-1.58.77l-44.46 26.47c-1.29.77-1.94 1.16-2.46 1.17-.77.03-1.47-.38-1.84-1.05-.25-.47-.24-1.22-.22-2.73l.7-51.73c.02-.93.02-1.39-.12-1.76-.2-.53-.62-.95-1.15-1.15-.37-.14-.83-.14-1.76-.12l-51.73.7c-1.51.02-2.26.03-2.73-.22a2.01 2.01 0 0 1-1.05-1.84c.01-.52.4-1.17 1.17-2.46l26.47-44.46c.48-.79.71-1.19.77-1.58.09-.56-.06-1.13-.42-1.57-.24-.31-.65-.54-1.46-.99L2.55 162.61c-1.32-.74-1.97-1.1-2.25-1.55-.4-.65-.4-1.47 0-2.12.28-.45.93-.81 2.25-1.55l45.15-25.26c.81-.45 1.22-.68 1.46-.99.36-.44.51-1.01.42-1.57-.06-.39-.29-.79-.77-1.58L22.34 83.53c-.77-1.29-1.16-1.94-1.17-2.46-.03-.77.38-1.47 1.05-1.84.47-.25 1.22-.24 2.73-.22l51.73.7c.93.02 1.39.02 1.76-.12.53-.2.95-.62 1.15-1.15.14-.37.14-.83.12-1.76l-.7-51.73c-.02-1.51-.03-2.26.22-2.73.37-.67 1.07-1.08 1.84-1.05.52.01 1.17.4 2.46 1.17l44.46 26.47c.79.48 1.19.71 1.58.77.56.09 1.13-.06 1.57-.42.31-.24.54-.65.99-1.46z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" fill="none" viewBox="0 0 320 320"><path fill="#d0bcff" d="M320 160c0 88.366-71.634 160-160 160S0 248.366 0 160 71.635 0 160 0c88.366 0 160 71.635 160 160"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="254" fill="none" viewBox="0 0 320 254"><path fill="#d0bcff" d="M306.405 84.081c6.709 13.51 10.063 20.265 11.757 27.322a67.1 67.1 0 0 1 0 31.194c-1.694 7.057-5.048 13.812-11.757 27.322l-20.438 41.16c-6.709 13.51-10.063 20.265-14.472 25.501-6.375 7.568-14.411 12.963-23.236 15.597C242.155 254 235.446 254 222.028 254H97.972c-13.418 0-20.127 0-26.231-1.822-8.825-2.635-16.861-8.029-23.236-15.598-4.409-5.235-7.763-11.991-14.472-25.501l-20.438-41.16c-6.709-13.51-10.063-20.265-11.757-27.322a67.1 67.1 0 0 1 0-31.194c1.694-7.057 5.048-13.812 11.757-27.322l20.438-41.16c6.709-13.51 10.063-20.266 14.472-25.501C54.88 9.851 62.916 4.457 71.741 1.822 77.845 0 84.554 0 97.972 0h124.056c13.418 0 20.127 0 26.231 1.822 8.825 2.635 16.861 8.029 23.236 15.598 4.409 5.235 7.763 11.99 14.472 25.501z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="268" height="320" fill="none" viewBox="0 0 268 320"><path fill="#d0bcff" d="M191.442 276.481c-16.836 22.033-25.254 33.049-34.976 38.067a49.02 49.02 0 0 1-44.932 0c-9.722-5.018-18.14-16.034-34.976-38.067l-55.912-73.173c-10.24-13.402-15.36-20.102-17.895-27.276a48.1 48.1 0 0 1 0-32.064c2.535-7.174 7.655-13.874 17.895-27.276l55.912-73.173c16.836-22.033 25.254-33.05 34.976-38.067a49.02 49.02 0 0 1 44.932 0c9.722 5.018 18.14 16.034 34.976 38.068l55.912 73.172c10.24 13.402 15.36 20.102 17.895 27.276a48.1 48.1 0 0 1 0 32.064c-2.535 7.174-7.655 13.874-17.895 27.276z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="280" height="280" fill="none" viewBox="0 0 280 280"><path fill="#d0bcff" d="M0 44.21c0-1.56 0-2.34.02-2.999C.717 18.757 18.757.717 41.211.021c.66-.021 1.44-.021 3-.021C52.53 0 56.69 0 60.208.11 179.96 3.825 276.17 100.037 279.89 219.791c.11 3.518.11 7.678.11 15.997 0 1.56 0 2.34-.02 3-.7 22.454-18.74 40.494-41.19 41.191-.66.02-1.44.02-3 .02H62.945c-19.018 0-28.528 0-36.071-2.987a42.53 42.53 0 0 1-23.887-23.887C0 245.583 0 236.073 0 217.055z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" fill="none" viewBox="0 0 320 320"><path fill="#d0bcff" fill-rule="evenodd" d="M273.13 46.863c-11.88-11.875-38.94-6.003-71.58 12.818C191.77 23.286 176.79 0 160 0c-16.8 0-31.78 23.284-41.55 59.678-32.65-18.82-59.7-24.69-71.58-12.817-11.87 11.876-6 38.935 12.82 71.585C23.29 128.222 0 143.204 0 160c0 16.793 23.28 31.773 59.68 41.549-18.83 32.651-24.7 59.712-12.83 71.588 11.88 11.876 38.94 6.001 71.59-12.827C128.22 296.711 143.2 320 160 320c16.79 0 31.77-23.291 41.55-59.693 32.66 18.829 59.72 24.705 71.6 12.829 11.87-11.876 6-38.936-12.83-71.587C296.72 191.773 320 176.793 320 160c0-16.796-23.29-31.778-59.7-41.554 18.83-32.65 24.7-59.708 12.83-71.583" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="302" height="312" fill="none" viewBox="0 0 302 312"><path fill="#d0bcff" d="M92.48 26.632c18.16-13.196 27.25-19.794 36.93-23.074a67.3 67.3 0 0 1 43.18 0c9.68 3.28 18.77 9.878 36.93 23.074l40.85 29.673c10.79 7.836 16.19 11.754 20.58 16.458a67.2 67.2 0 0 1 14.32 23.618c2.14 6.073 3.11 12.667 5.07 25.855l7.56 51.001c3.43 23.136 5.15 34.704 3.42 45.13a67.3 67.3 0 0 1-21.46 39.064c-7.87 7.055-18.56 11.814-39.93 21.332l-48.41 21.563c-12.9 5.744-19.35 8.615-25.97 10.083a67.3 67.3 0 0 1-29.1 0c-6.62-1.468-13.07-4.339-25.97-10.083l-48.41-21.563c-21.37-9.518-32.06-14.277-39.93-21.332A67.3 67.3 0 0 1 .68 218.367c-1.73-10.426-.01-21.994 3.42-45.13l7.56-51.001c1.96-13.188 2.93-19.782 5.07-25.855a67.2 67.2 0 0 1 14.32-23.618c4.39-4.704 9.79-8.622 20.58-16.458z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="304" height="304" fill="none" viewBox="0 0 304 304"><path fill="#d0bcff" d="M0 144.762C0 64.812 68.053 0 152 0s152 64.812 152 144.762v101.333c0 31.98-27.221 57.905-60.8 57.905-9.953 0-19.347-2.278-27.64-6.315-4.225-2.058-8.441-4.313-12.675-6.578-14.899-7.971-30.019-16.059-46.558-16.059h-8.654c-16.539 0-31.659 8.088-46.558 16.059-4.234 2.265-8.45 4.52-12.675 6.578C80.147 301.722 70.753 304 60.8 304 27.221 304 0 278.075 0 246.095z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="286" fill="none" viewBox="0 0 320 286"><path fill="#d0bcff" d="M251.1.13c-21.661 0-40.987 10.17-53.619 26.07L160 67.51v-.13l-37.481-41.32C109.887 10.17 90.561 0 68.9 0 30.848 0 0 31.37 0 70.06c0 34 28.375 59.41 48.919 83.82 20.47 24.33 40.937 48.64 61.404 72.96l45.949 54.6c1.244 1.47 2.484 2.95 3.728 4.43v.13c1.244-1.48 2.484-2.95 3.728-4.43 15.315-18.2 30.63-36.39 45.949-54.59l61.404-72.96C291.625 129.61 320 104.2 320 70.19 320 31.5 289.152.13 251.1.13"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="296" height="296" fill="none" viewBox="0 0 296 296"><path fill="#d0bcff" d="M21 148C7.9 132.34 0 112.13 0 90.06 0 40.32 40.11 0 89.6 0c22.39 0 42.87 8.26 58.57 21.91C163.84 8.26 184.27 0 206.61 0 255.98 0 296 40.32 296 90.06c0 22.07-7.88 42.28-20.95 57.94 13.07 15.66 20.95 35.87 20.95 57.94 0 49.74-40.02 90.06-89.39 90.06-22.34 0-42.77-8.26-58.44-21.91C132.47 287.74 111.99 296 89.6 296 40.11 296 0 255.68 0 205.94c0-22.07 7.9-42.28 21-57.94"/></svg>
|