mnfst 0.5.81 → 0.5.83
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 +1 -1
- package/lib/manifest.accordion.css +4 -4
- package/lib/manifest.avatar.css +8 -8
- package/lib/manifest.button.css +7 -7
- package/lib/manifest.checkbox.css +5 -5
- package/lib/manifest.code.css +147 -201
- package/lib/manifest.code.js +852 -880
- package/lib/manifest.code.min.css +1 -1
- package/lib/manifest.colorpicker.css +11 -11
- package/lib/manifest.css +253 -207
- package/lib/manifest.data.js +4 -1
- package/lib/manifest.dialog.css +2 -2
- package/lib/manifest.divider.css +2 -2
- package/lib/manifest.dropdown.css +9 -9
- package/lib/manifest.form.css +10 -10
- package/lib/manifest.input.css +9 -9
- package/lib/manifest.integrity.json +6 -6
- package/lib/manifest.js +5 -5
- package/lib/manifest.markdown.js +129 -108
- package/lib/manifest.min.css +1 -1
- package/lib/manifest.radio.css +1 -1
- package/lib/manifest.range.css +7 -7
- package/lib/manifest.resize.css +1 -1
- package/lib/manifest.sidebar.css +2 -3
- package/lib/manifest.slides.css +5 -5
- package/lib/manifest.svg.js +34 -27
- package/lib/manifest.switch.css +4 -4
- package/lib/manifest.table.css +4 -4
- package/lib/manifest.theme.css +46 -41
- package/lib/manifest.toast.css +7 -7
- package/lib/manifest.tooltip.css +3 -3
- package/lib/manifest.tooltips.js +41 -0
- package/lib/manifest.typography.css +109 -50
- package/lib/manifest.utilities.css +41 -53
- package/package.json +1 -1
package/lib/manifest.data.js
CHANGED
|
@@ -11854,7 +11854,10 @@ async function initializeDataSourcesPlugin() {
|
|
|
11854
11854
|
const manifestData = manifest;
|
|
11855
11855
|
// Remove internal properties that shouldn't be exposed
|
|
11856
11856
|
const { data, appwrite, components, preloadedComponents, ...publicManifest } = manifestData;
|
|
11857
|
-
|
|
11857
|
+
// allowDuringInit: setIsInitializing(true) is active, so without this
|
|
11858
|
+
// flag updateStore short-circuits and $x.manifest stays unpopulated.
|
|
11859
|
+
window.ManifestDataStore.dataSourceCache.set(`manifest:${locale}`, publicManifest);
|
|
11860
|
+
updateStore('manifest', publicManifest, { loading: false, error: null, ready: true, allowDuringInit: true });
|
|
11858
11861
|
|
|
11859
11862
|
const store = Alpine.store('data');
|
|
11860
11863
|
Alpine.store('data', {
|
package/lib/manifest.dialog.css
CHANGED
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
min-height: 200px;
|
|
42
42
|
max-height: 90vh;
|
|
43
43
|
margin: auto;
|
|
44
|
-
color: var(--color-content-stark,
|
|
45
|
-
background-color: var(--color-popover-surface,
|
|
44
|
+
color: var(--color-content-stark, darkslategray);
|
|
45
|
+
background-color: var(--color-popover-surface, white);
|
|
46
46
|
border: 0 none;
|
|
47
47
|
border-radius: calc(var(--radius, 0.5rem) * 2);
|
|
48
48
|
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
package/lib/manifest.divider.css
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
margin: var(--spacing-field-padding, 0.625rem) 0;
|
|
13
13
|
white-space: nowrap;
|
|
14
14
|
font-size: 0.875rem;
|
|
15
|
-
color: var(--color-content-neutral,
|
|
15
|
+
color: var(--color-content-neutral, gray);
|
|
16
16
|
|
|
17
17
|
/* Lines before and after content */
|
|
18
18
|
&:before,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
flex: 1;
|
|
23
23
|
width: auto;
|
|
24
24
|
height: 1px;
|
|
25
|
-
background-color: var(--color-line,
|
|
25
|
+
background-color: var(--color-line, color-mix(darkslategray 10%, transparent))
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/* Space between lines and content */
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
padding: 0.25rem;
|
|
46
46
|
z-index: 50;
|
|
47
47
|
list-style: none;
|
|
48
|
-
background: var(--color-popover-surface,
|
|
48
|
+
background: var(--color-popover-surface, white);
|
|
49
49
|
border: 0 none;
|
|
50
50
|
border-radius: var(--radius, 0.5rem);
|
|
51
51
|
box-shadow: rgba(15, 15, 15, 0.05) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px, rgba(15, 15, 15, 0.2) 0px 9px 24px;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
padding-inline-start: 0.5rem;
|
|
64
64
|
padding-inline-end: 0.5rem;
|
|
65
65
|
font-weight: normal;
|
|
66
|
-
color: var(--color-content-stark,
|
|
66
|
+
color: var(--color-content-stark, darkslategray);
|
|
67
67
|
text-align: start;
|
|
68
68
|
text-decoration: none;
|
|
69
69
|
text-overflow: ellipsis;
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
user-select: none;
|
|
76
76
|
|
|
77
77
|
&:hover {
|
|
78
|
-
color: var(--color-field-inverse,
|
|
78
|
+
color: var(--color-field-inverse, darkslategray);
|
|
79
79
|
text-decoration: inherit;
|
|
80
|
-
background-color: var(--color-field-surface,
|
|
80
|
+
background-color: var(--color-field-surface, color-mix(darkslategray 10%, transparent));
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
&:active {
|
|
84
|
-
color: var(--color-field-inverse,
|
|
85
|
-
background-color: var(--color-field-surface,
|
|
84
|
+
color: var(--color-field-inverse, darkslategray);
|
|
85
|
+
background-color: var(--color-field-surface, color-mix(darkslategray 10%, transparent));
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
& span,
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
/* Titles */
|
|
100
100
|
& small {
|
|
101
101
|
padding: 0.25rem 0.5rem;
|
|
102
|
-
color: var(--color-content-neutral,
|
|
102
|
+
color: var(--color-content-neutral, gray);
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
/* Horizontal rules (offset to ignore menu padding) */
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
margin-inline-start: calc(0.25rem * -1);
|
|
110
110
|
margin-top: 0.25rem;
|
|
111
111
|
margin-bottom: 0.25rem;
|
|
112
|
-
background-color: var(--color-line,
|
|
112
|
+
background-color: var(--color-line, color-mix(darkslategray 10%, transparent));
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
/* Labels */
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
|
|
147
147
|
/* Dark theme */
|
|
148
148
|
:where(.dark menu[popover]) :where(li, a, button, label):hover {
|
|
149
|
-
background-color: var(--color-field-surface-hover,
|
|
149
|
+
background-color: var(--color-field-surface-hover, color-mix(darkslategray 15%, transparent));
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
/* Nested menu alignment */
|
package/lib/manifest.form.css
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
:where(form):not(.unstyle) {
|
|
48
48
|
display: flex;
|
|
49
49
|
flex-direction: column;
|
|
50
|
-
gap: calc(var(--spacing) * 4);
|
|
50
|
+
gap: calc(var(--spacing, 0.25rem) * 4);
|
|
51
51
|
width: 100%
|
|
52
52
|
}
|
|
53
53
|
|
|
@@ -55,25 +55,25 @@
|
|
|
55
55
|
:where(fieldset):not(.unstyle) {
|
|
56
56
|
display: flex;
|
|
57
57
|
flex-direction: column;
|
|
58
|
-
gap: 0.375ch calc(var(--spacing) * 2);
|
|
58
|
+
gap: 0.375ch calc(var(--spacing, 0.25rem) * 2);
|
|
59
59
|
width: 100%;
|
|
60
60
|
|
|
61
61
|
&:has([type=radio], [type=checkbox]) {
|
|
62
|
-
gap: calc(var(--spacing) * 2);
|
|
62
|
+
gap: calc(var(--spacing, 0.25rem) * 2);
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
:where(fieldset:has(legend)):not(.unstyle) {
|
|
67
67
|
padding: 1ch 1.5ch 1.5ch 1.5ch;
|
|
68
68
|
border-radius: var(--radius, 0.5rem);
|
|
69
|
-
border-color: var(--color-line,
|
|
69
|
+
border-color: var(--color-line, color-mix(darkslategray 10%, transparent));
|
|
70
70
|
border-style: solid;
|
|
71
71
|
border-width: 1px;
|
|
72
72
|
|
|
73
73
|
& :where(legend) {
|
|
74
74
|
padding: 0 1.5ch;
|
|
75
75
|
font-size: 0.875rem;
|
|
76
|
-
color: var(--color-content-subtle,
|
|
76
|
+
color: var(--color-content-subtle, darkgray);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
flex-direction: column;
|
|
98
98
|
gap: 0.2ch;
|
|
99
99
|
width: 100%;
|
|
100
|
-
text-indent: calc(var(--radius) / 2);
|
|
100
|
+
text-indent: calc(var(--radius, 0.5rem) / 2);
|
|
101
101
|
cursor: pointer;
|
|
102
102
|
|
|
103
103
|
/* Prevent text indentation of bare label text nodes from being inherited */
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
|
|
108
108
|
/* Indent label text in spans */
|
|
109
109
|
:where(span:first-of-type) {
|
|
110
|
-
padding-inline-start: calc(var(--radius) / 2)
|
|
110
|
+
padding-inline-start: calc(var(--radius, 0.5rem) / 2)
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
:where(button, [role=button], [type=button], [type=submit], select, input:not([role=button], [type=checkbox], [type=radio], [type=file], [type=search]), textarea) {
|
|
@@ -136,13 +136,13 @@
|
|
|
136
136
|
|
|
137
137
|
/* Size buttons and inputs */
|
|
138
138
|
& :where(.label, button, input:not([type=checkbox], [type=radio]), select, textarea) {
|
|
139
|
-
width: calc(var(--spacing-field-height) * 8);
|
|
139
|
+
width: calc(var(--spacing-field-height, 2.25rem) * 8);
|
|
140
140
|
max-width: 50%;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
/* Focus state for .label wrapper for search and file inputs */
|
|
144
144
|
& .label:focus-within {
|
|
145
|
-
box-shadow: 0 0 0 2px color-mix(in oklch, var(--color-content-stark) 35%, transparent)
|
|
145
|
+
box-shadow: 0 0 0 2px color-mix(in oklch, var(--color-content-stark, darkslategray) 35%, transparent)
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
/* Align textarea label to top */
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
align-items: start;
|
|
151
151
|
|
|
152
152
|
:where(data) {
|
|
153
|
-
padding-top: calc(var(--spacing))
|
|
153
|
+
padding-top: calc(var(--spacing, 0.25rem))
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
package/lib/manifest.input.css
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
:where(input:not([type=range], [type=color]), textarea, label:has([type=search], [type=file]), .label:has([type=search], [type=file])):not(.unstyle) {
|
|
6
6
|
width: 100%;
|
|
7
7
|
max-width: 100%;
|
|
8
|
-
color: var(--color-field-inverse,
|
|
9
|
-
background-color: var(--color-field-surface,
|
|
8
|
+
color: var(--color-field-inverse, darkslategray);
|
|
9
|
+
background-color: var(--color-field-surface, color-mix(darkslategray 10%, transparent));
|
|
10
10
|
border-width: 0;
|
|
11
11
|
border-style: solid;
|
|
12
12
|
border-color: transparent;
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
appearance: none;
|
|
17
17
|
|
|
18
18
|
&:hover {
|
|
19
|
-
background-color: var(--color-field-surface-hover,
|
|
19
|
+
background-color: var(--color-field-surface-hover, color-mix(darkslategray 15%, transparent))
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&:active {
|
|
23
|
-
background-color: var(--color-field-surface-hover,
|
|
23
|
+
background-color: var(--color-field-surface-hover, color-mix(darkslategray 15%, transparent))
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&:focus-visible {
|
|
27
|
-
background-color: var(--color-field-surface,
|
|
27
|
+
background-color: var(--color-field-surface, color-mix(darkslategray 10%, transparent))
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&::placeholder {
|
|
31
|
-
color: color-mix(in oklch, var(--color-field-inverse,
|
|
31
|
+
color: color-mix(in oklch, var(--color-field-inverse, darkslategray) 65%, transparent)
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&::selection {
|
|
35
|
-
background-color: color-mix(in oklch, var(--color-field-surface,
|
|
35
|
+
background-color: color-mix(in oklch, var(--color-field-surface, color-mix(darkslategray 10%, transparent)) 80%, var(--color-field-inverse, darkslategray))
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&[type=file] {
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
/* Additional styles for label with file input */
|
|
92
92
|
:where(label, .label):has([type=file]):not(.unstyle) {
|
|
93
93
|
justify-content: center;
|
|
94
|
-
gap: var(--spacing, 0.
|
|
94
|
+
gap: var(--spacing, 0.25rem);
|
|
95
95
|
height: var(--spacing-field-height, 2.25rem);
|
|
96
96
|
cursor: pointer
|
|
97
97
|
}
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
width: var(--spacing-field-height, 2.25rem);
|
|
109
109
|
height: 100%;
|
|
110
110
|
margin-inline-end: 0;
|
|
111
|
-
color: var(--color-content-subtle,
|
|
111
|
+
color: var(--color-content-subtle, darkgray)
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
"manifest.appwrite.auth.js": "sha384-to37ssZJXGeOS6+rf2VI47ox2mEqgsi5oQ1E5vv8XU/lDspbDFE1KHEMm8TxBhxW",
|
|
3
3
|
"manifest.appwrite.data.js": "sha384-00ulLT+GAIuPHA/rRT9p98vYlsyDzkyKXtg86BDQ6FGQa5vVVN+W6kuforniBAsz",
|
|
4
4
|
"manifest.appwrite.presence.js": "sha384-uxRpx9/Jj0kGtklH5QmUlAzD3zdSvFRfK6bcJQqxl+Bsf5tOo4zgwqJTQgtZoHQP",
|
|
5
|
-
"manifest.code.js": "sha384-
|
|
5
|
+
"manifest.code.js": "sha384-zjtiVXsPoPK4H/2gN4Xe4Bd0iKUwnv4MbteX9AmTWqNz49E+a3eCuONYHpSneStZ",
|
|
6
6
|
"manifest.color.js": "sha384-Z9G/lzt0vVMxjz4wkPuGG1X9mmQAJR15aOoGX3ephf7r2wnlUWet5GLgkUMtT4vt",
|
|
7
7
|
"manifest.colorpicker.js": "sha384-0EVn+Ha06h7FIvOxc6WjZYnKYXzi+zba08yKvczSEGTRkWRxyKN2TFrZHI1SDCXu",
|
|
8
8
|
"manifest.colors.js": "sha384-u8iD6kapVj4OjeCILxBkYQKgXtDQ7LdEodILkQuknzPMwzSMBmDHN25UuzxepHby",
|
|
9
9
|
"manifest.components.js": "sha384-3dCTD5EwCZTiX+1obYtDNM3WWwPh2JDQUQQsdRUUK3gs6FXjse1ShkKaT/2jsNaI",
|
|
10
|
-
"manifest.data.js": "sha384
|
|
10
|
+
"manifest.data.js": "sha384-+wfMPBlMsmLJ7EJWGJMTKGAhLaLCyOVX+Nq+ps3Lly58QC9Dp3XRHK5yangII0yq",
|
|
11
11
|
"manifest.dropdowns.js": "sha384-WMrFoSpKfJuo81dyrwhVrDO8rq+rDwh2x8x4nH01BY5ZHkvjE+/SaT2gWCI0zOn+",
|
|
12
12
|
"manifest.icons.js": "sha384-uOkboYrovjCpl22eey3Jaxpey+pOnot5NDnRRumcRxiR7IOVaRh1i20gYnWXR5dW",
|
|
13
13
|
"manifest.localization.js": "sha384-eKdBIMEAwsugPP2p2fuPzQUkU44f1+Y0JgukMJ1KXLQY1/AYvpcGsEiritVDElsN",
|
|
14
|
-
"manifest.markdown.js": "sha384-
|
|
14
|
+
"manifest.markdown.js": "sha384-5dpYLup1j/JLmoVvE1Qn47rwYwtU6kH2PvuiNzU1nqa0LMRWZhdnKhKO7I3I0cyI",
|
|
15
15
|
"manifest.resize.js": "sha384-Ak5gf44ERfh9pOSAD1qZzJSysslpwBCkevIlz7R3dszTUyzUKGKGF4pn5arOtgG0",
|
|
16
16
|
"manifest.router.js": "sha384-n6xmIfWnYzd/0kkVTFuHhFzHuxiDgZ1Lg1W0yB6/w3Myw5pQ6PgE6SJBHfVsO7/D",
|
|
17
17
|
"manifest.slides.js": "sha384-3uRTkyK9XPLmnxI2+igZlpi4EyPlU/7IHj5j3BZJJ2KN455vXyk99fiXV3feO/XY",
|
|
18
|
-
"manifest.svg.js": "sha384-
|
|
18
|
+
"manifest.svg.js": "sha384-nc+3spSGNS2l+82maL/OFz2iOGUhLZ0kqeooj28CEcdElM4OZa34e0tbnokZHVI6",
|
|
19
19
|
"manifest.tabs.js": "sha384-v6Ti0zHfdLhkFHbTMg0FH6uMrThuBvZrL2PQgVBeeXhDjuN7x4MtoNWogPbAQTaD",
|
|
20
20
|
"manifest.tailwind.js": "sha384-aHLvl2oSuUgy06VaBqhhByn5wWxqvnqxw6KCwehakKUS00F/s/Nb62umeASS6Y4P",
|
|
21
21
|
"manifest.toasts.js": "sha384-ytd5rDbax/Ou9z23uedFXPZbxDPsk2E/pxCTq4WLvfv+os1qTI6kELp0kPp07g24",
|
|
22
|
-
"manifest.tooltips.js": "sha384-
|
|
22
|
+
"manifest.tooltips.js": "sha384-Hhip5ZN66xhDw3m0XBrKLKLpcVRz3Z9RszPKqo6xvFF0mrUgQBVZ+mZjZsXgOOjS",
|
|
23
23
|
"manifest.url.parameters.js": "sha384-FIufiClqDx1rJpU/QUc9z/D43qClQ6Qm8rBahipbJl9BDHUvhrOsUDegmTWW7Tuf",
|
|
24
24
|
"manifest.utilities.js": "sha384-Q98oZClq/iRKFmuwHolisLgEitsTZiEPHxUW29liKlnL1Gx+YGq8MMivYbDlGDD6",
|
|
25
|
-
"manifest.js": "sha384-
|
|
25
|
+
"manifest.js": "sha384-AjAnd61543ANko2XUK2ZZA7lWQH6DPoV3CSXt/Y4rJnxIOMA+5jx0sgU5U7+sEg6"
|
|
26
26
|
}
|
package/lib/manifest.js
CHANGED
|
@@ -188,24 +188,24 @@
|
|
|
188
188
|
"manifest.appwrite.auth.js": "sha384-to37ssZJXGeOS6+rf2VI47ox2mEqgsi5oQ1E5vv8XU/lDspbDFE1KHEMm8TxBhxW",
|
|
189
189
|
"manifest.appwrite.data.js": "sha384-00ulLT+GAIuPHA/rRT9p98vYlsyDzkyKXtg86BDQ6FGQa5vVVN+W6kuforniBAsz",
|
|
190
190
|
"manifest.appwrite.presence.js": "sha384-uxRpx9/Jj0kGtklH5QmUlAzD3zdSvFRfK6bcJQqxl+Bsf5tOo4zgwqJTQgtZoHQP",
|
|
191
|
-
"manifest.code.js": "sha384-
|
|
191
|
+
"manifest.code.js": "sha384-zjtiVXsPoPK4H/2gN4Xe4Bd0iKUwnv4MbteX9AmTWqNz49E+a3eCuONYHpSneStZ",
|
|
192
192
|
"manifest.color.js": "sha384-Z9G/lzt0vVMxjz4wkPuGG1X9mmQAJR15aOoGX3ephf7r2wnlUWet5GLgkUMtT4vt",
|
|
193
193
|
"manifest.colorpicker.js": "sha384-0EVn+Ha06h7FIvOxc6WjZYnKYXzi+zba08yKvczSEGTRkWRxyKN2TFrZHI1SDCXu",
|
|
194
194
|
"manifest.colors.js": "sha384-u8iD6kapVj4OjeCILxBkYQKgXtDQ7LdEodILkQuknzPMwzSMBmDHN25UuzxepHby",
|
|
195
195
|
"manifest.components.js": "sha384-3dCTD5EwCZTiX+1obYtDNM3WWwPh2JDQUQQsdRUUK3gs6FXjse1ShkKaT/2jsNaI",
|
|
196
|
-
"manifest.data.js": "sha384
|
|
196
|
+
"manifest.data.js": "sha384-+wfMPBlMsmLJ7EJWGJMTKGAhLaLCyOVX+Nq+ps3Lly58QC9Dp3XRHK5yangII0yq",
|
|
197
197
|
"manifest.dropdowns.js": "sha384-WMrFoSpKfJuo81dyrwhVrDO8rq+rDwh2x8x4nH01BY5ZHkvjE+/SaT2gWCI0zOn+",
|
|
198
198
|
"manifest.icons.js": "sha384-uOkboYrovjCpl22eey3Jaxpey+pOnot5NDnRRumcRxiR7IOVaRh1i20gYnWXR5dW",
|
|
199
199
|
"manifest.localization.js": "sha384-eKdBIMEAwsugPP2p2fuPzQUkU44f1+Y0JgukMJ1KXLQY1/AYvpcGsEiritVDElsN",
|
|
200
|
-
"manifest.markdown.js": "sha384-
|
|
200
|
+
"manifest.markdown.js": "sha384-5dpYLup1j/JLmoVvE1Qn47rwYwtU6kH2PvuiNzU1nqa0LMRWZhdnKhKO7I3I0cyI",
|
|
201
201
|
"manifest.resize.js": "sha384-Ak5gf44ERfh9pOSAD1qZzJSysslpwBCkevIlz7R3dszTUyzUKGKGF4pn5arOtgG0",
|
|
202
202
|
"manifest.router.js": "sha384-n6xmIfWnYzd/0kkVTFuHhFzHuxiDgZ1Lg1W0yB6/w3Myw5pQ6PgE6SJBHfVsO7/D",
|
|
203
203
|
"manifest.slides.js": "sha384-3uRTkyK9XPLmnxI2+igZlpi4EyPlU/7IHj5j3BZJJ2KN455vXyk99fiXV3feO/XY",
|
|
204
|
-
"manifest.svg.js": "sha384-
|
|
204
|
+
"manifest.svg.js": "sha384-nc+3spSGNS2l+82maL/OFz2iOGUhLZ0kqeooj28CEcdElM4OZa34e0tbnokZHVI6",
|
|
205
205
|
"manifest.tabs.js": "sha384-v6Ti0zHfdLhkFHbTMg0FH6uMrThuBvZrL2PQgVBeeXhDjuN7x4MtoNWogPbAQTaD",
|
|
206
206
|
"manifest.tailwind.js": "sha384-aHLvl2oSuUgy06VaBqhhByn5wWxqvnqxw6KCwehakKUS00F/s/Nb62umeASS6Y4P",
|
|
207
207
|
"manifest.toasts.js": "sha384-ytd5rDbax/Ou9z23uedFXPZbxDPsk2E/pxCTq4WLvfv+os1qTI6kELp0kPp07g24",
|
|
208
|
-
"manifest.tooltips.js": "sha384-
|
|
208
|
+
"manifest.tooltips.js": "sha384-Hhip5ZN66xhDw3m0XBrKLKLpcVRz3Z9RszPKqo6xvFF0mrUgQBVZ+mZjZsXgOOjS",
|
|
209
209
|
"manifest.url.parameters.js": "sha384-FIufiClqDx1rJpU/QUc9z/D43qClQ6Qm8rBahipbJl9BDHUvhrOsUDegmTWW7Tuf",
|
|
210
210
|
"manifest.utilities.js": "sha384-Q98oZClq/iRKFmuwHolisLgEitsTZiEPHxUW29liKlnL1Gx+YGq8MMivYbDlGDD6"
|
|
211
211
|
};
|