@cnc_cbz/usefultools-plugin-official 1.0.3 → 1.0.5
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/base-converter.mjs +5 -256
- package/dist/case-converter.mjs +5 -256
- package/dist/chmod-calculator.mjs +5 -256
- package/dist/color-converter.mjs +5 -256
- package/dist/cron-expression.mjs +5 -256
- package/dist/cyber-chef.mjs +5 -256
- package/dist/hash-generator.mjs +5 -256
- package/dist/html-entity.mjs +5 -256
- package/dist/image-compressor.mjs +5 -256
- package/dist/ip-subnet.mjs +5 -256
- package/dist/js-runner.mjs +73 -350
- package/dist/json-diff.mjs +5 -256
- package/dist/json-formatter.mjs +5 -256
- package/dist/json-yaml.mjs +5 -256
- package/dist/jwt-parser.mjs +5 -256
- package/dist/lorem-ipsum.mjs +5 -256
- package/dist/markdown-preview.mjs +5 -256
- package/dist/password-generator.mjs +5 -256
- package/dist/qr-generator.mjs +5 -256
- package/dist/regex-tester.mjs +5 -256
- package/dist/sql-formatter.mjs +5 -256
- package/dist/text-diff.mjs +5 -256
- package/dist/text-stats.mjs +5 -256
- package/dist/timestamp-converter.mjs +5 -256
- package/dist/translator.mjs +5 -256
- package/dist/url-codec.mjs +5 -256
- package/dist/uuid-generator.mjs +5 -256
- package/package.json +1 -1
package/dist/text-diff.mjs
CHANGED
|
@@ -930,7 +930,7 @@ export {
|
|
|
930
930
|
index as default
|
|
931
931
|
};
|
|
932
932
|
|
|
933
|
-
;(function(){var
|
|
933
|
+
;(function(){var c=typeof __exports__!=="undefined"&&__exports__;var d=c&&(c.default||c);if(d)d.__pluginCss=`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
934
934
|
@layer properties {
|
|
935
935
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
936
936
|
*, :before, :after, ::backdrop {
|
|
@@ -985,10 +985,8 @@ export {
|
|
|
985
985
|
|
|
986
986
|
@layer theme {
|
|
987
987
|
:root, :host {
|
|
988
|
-
--font-
|
|
989
|
-
|
|
990
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
991
|
-
"Courier New", monospace;
|
|
988
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
|
|
989
|
+
monospace;
|
|
992
990
|
--color-gray-100: oklch(96.7% .003 264.542);
|
|
993
991
|
--color-gray-200: oklch(92.8% .006 264.531);
|
|
994
992
|
--color-gray-300: oklch(87.2% .01 258.338);
|
|
@@ -1028,8 +1026,6 @@ export {
|
|
|
1028
1026
|
--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
|
|
1029
1027
|
--default-transition-duration: .15s;
|
|
1030
1028
|
--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
1031
|
-
--default-font-family: var(--font-sans);
|
|
1032
|
-
--default-mono-font-family: var(--font-mono);
|
|
1033
1029
|
--color-primary: #f9b11f;
|
|
1034
1030
|
--color-bg-dark: #231c0f;
|
|
1035
1031
|
--color-electric-blue: #3b82f6;
|
|
@@ -1042,254 +1038,7 @@ export {
|
|
|
1042
1038
|
}
|
|
1043
1039
|
}
|
|
1044
1040
|
|
|
1045
|
-
@layer base
|
|
1046
|
-
*, :after, :before, ::backdrop {
|
|
1047
|
-
box-sizing: border-box;
|
|
1048
|
-
border: 0 solid;
|
|
1049
|
-
margin: 0;
|
|
1050
|
-
padding: 0;
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
::file-selector-button {
|
|
1054
|
-
box-sizing: border-box;
|
|
1055
|
-
border: 0 solid;
|
|
1056
|
-
margin: 0;
|
|
1057
|
-
padding: 0;
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
html, :host {
|
|
1061
|
-
-webkit-text-size-adjust: 100%;
|
|
1062
|
-
tab-size: 4;
|
|
1063
|
-
line-height: 1.5;
|
|
1064
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
1065
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
1066
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
1067
|
-
-webkit-tap-highlight-color: transparent;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
hr {
|
|
1071
|
-
height: 0;
|
|
1072
|
-
color: inherit;
|
|
1073
|
-
border-top-width: 1px;
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
abbr:where([title]) {
|
|
1077
|
-
-webkit-text-decoration: underline dotted;
|
|
1078
|
-
text-decoration: underline dotted;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
h1, h2, h3, h4, h5, h6 {
|
|
1082
|
-
font-size: inherit;
|
|
1083
|
-
font-weight: inherit;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
a {
|
|
1087
|
-
color: inherit;
|
|
1088
|
-
-webkit-text-decoration: inherit;
|
|
1089
|
-
-webkit-text-decoration: inherit;
|
|
1090
|
-
-webkit-text-decoration: inherit;
|
|
1091
|
-
text-decoration: inherit;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
b, strong {
|
|
1095
|
-
font-weight: bolder;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
code, kbd, samp, pre {
|
|
1099
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
1100
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
1101
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
1102
|
-
font-size: 1em;
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
small {
|
|
1106
|
-
font-size: 80%;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
sub, sup {
|
|
1110
|
-
vertical-align: baseline;
|
|
1111
|
-
font-size: 75%;
|
|
1112
|
-
line-height: 0;
|
|
1113
|
-
position: relative;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
sub {
|
|
1117
|
-
bottom: -.25em;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
sup {
|
|
1121
|
-
top: -.5em;
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
table {
|
|
1125
|
-
text-indent: 0;
|
|
1126
|
-
border-color: inherit;
|
|
1127
|
-
border-collapse: collapse;
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
:-moz-focusring {
|
|
1131
|
-
outline: auto;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
progress {
|
|
1135
|
-
vertical-align: baseline;
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
summary {
|
|
1139
|
-
display: list-item;
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
ol, ul, menu {
|
|
1143
|
-
list-style: none;
|
|
1144
|
-
}
|
|
1145
|
-
|
|
1146
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
1147
|
-
vertical-align: middle;
|
|
1148
|
-
display: block;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
img, video {
|
|
1152
|
-
max-width: 100%;
|
|
1153
|
-
height: auto;
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1156
|
-
button, input, select, optgroup, textarea {
|
|
1157
|
-
font: inherit;
|
|
1158
|
-
font-feature-settings: inherit;
|
|
1159
|
-
font-variation-settings: inherit;
|
|
1160
|
-
letter-spacing: inherit;
|
|
1161
|
-
color: inherit;
|
|
1162
|
-
opacity: 1;
|
|
1163
|
-
background-color: #0000;
|
|
1164
|
-
border-radius: 0;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
::file-selector-button {
|
|
1168
|
-
font: inherit;
|
|
1169
|
-
font-feature-settings: inherit;
|
|
1170
|
-
font-variation-settings: inherit;
|
|
1171
|
-
letter-spacing: inherit;
|
|
1172
|
-
color: inherit;
|
|
1173
|
-
opacity: 1;
|
|
1174
|
-
background-color: #0000;
|
|
1175
|
-
border-radius: 0;
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
1179
|
-
font-weight: bolder;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
1183
|
-
padding-inline-start: 20px;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
::file-selector-button {
|
|
1187
|
-
margin-inline-end: 4px;
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
::placeholder {
|
|
1191
|
-
opacity: 1;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
@supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
|
|
1195
|
-
::placeholder {
|
|
1196
|
-
color: currentColor;
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1200
|
-
::placeholder {
|
|
1201
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
1202
|
-
}
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
textarea {
|
|
1207
|
-
resize: vertical;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
::-webkit-search-decoration {
|
|
1211
|
-
-webkit-appearance: none;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
::-webkit-date-and-time-value {
|
|
1215
|
-
min-height: 1lh;
|
|
1216
|
-
text-align: inherit;
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
::-webkit-datetime-edit {
|
|
1220
|
-
display: inline-flex;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
1224
|
-
padding: 0;
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
|
-
::-webkit-datetime-edit {
|
|
1228
|
-
padding-block: 0;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
::-webkit-datetime-edit-year-field {
|
|
1232
|
-
padding-block: 0;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
::-webkit-datetime-edit-month-field {
|
|
1236
|
-
padding-block: 0;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
::-webkit-datetime-edit-day-field {
|
|
1240
|
-
padding-block: 0;
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
::-webkit-datetime-edit-hour-field {
|
|
1244
|
-
padding-block: 0;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
::-webkit-datetime-edit-minute-field {
|
|
1248
|
-
padding-block: 0;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
::-webkit-datetime-edit-second-field {
|
|
1252
|
-
padding-block: 0;
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
::-webkit-datetime-edit-millisecond-field {
|
|
1256
|
-
padding-block: 0;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
1260
|
-
padding-block: 0;
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
::-webkit-calendar-picker-indicator {
|
|
1264
|
-
line-height: 1;
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
:-moz-ui-invalid {
|
|
1268
|
-
box-shadow: none;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
1272
|
-
appearance: button;
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
::file-selector-button {
|
|
1276
|
-
appearance: button;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
::-webkit-inner-spin-button {
|
|
1280
|
-
height: auto;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
::-webkit-outer-spin-button {
|
|
1284
|
-
height: auto;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
1288
|
-
display: none !important;
|
|
1289
|
-
}
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
@layer components;
|
|
1041
|
+
@layer base, components;
|
|
1293
1042
|
|
|
1294
1043
|
@layer utilities {
|
|
1295
1044
|
.pointer-events-none {
|
|
@@ -3140,4 +2889,4 @@ table tr td[data-v-90752a2e] {
|
|
|
3140
2889
|
.diff-num[data-v-90752a2e] {
|
|
3141
2890
|
min-width: 3ch;
|
|
3142
2891
|
}
|
|
3143
|
-
`;
|
|
2892
|
+
`;})();
|
package/dist/text-stats.mjs
CHANGED
|
@@ -204,7 +204,7 @@ export {
|
|
|
204
204
|
_sfc_main as default
|
|
205
205
|
};
|
|
206
206
|
|
|
207
|
-
;(function(){var
|
|
207
|
+
;(function(){var c=typeof __exports__!=="undefined"&&__exports__;var d=c&&(c.default||c);if(d)d.__pluginCss=`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
208
208
|
@layer properties {
|
|
209
209
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
210
210
|
*, :before, :after, ::backdrop {
|
|
@@ -259,10 +259,8 @@ export {
|
|
|
259
259
|
|
|
260
260
|
@layer theme {
|
|
261
261
|
:root, :host {
|
|
262
|
-
--font-
|
|
263
|
-
|
|
264
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
265
|
-
"Courier New", monospace;
|
|
262
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
|
|
263
|
+
monospace;
|
|
266
264
|
--color-gray-100: oklch(96.7% .003 264.542);
|
|
267
265
|
--color-gray-200: oklch(92.8% .006 264.531);
|
|
268
266
|
--color-gray-300: oklch(87.2% .01 258.338);
|
|
@@ -302,8 +300,6 @@ export {
|
|
|
302
300
|
--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
|
|
303
301
|
--default-transition-duration: .15s;
|
|
304
302
|
--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
305
|
-
--default-font-family: var(--font-sans);
|
|
306
|
-
--default-mono-font-family: var(--font-mono);
|
|
307
303
|
--color-primary: #f9b11f;
|
|
308
304
|
--color-bg-dark: #231c0f;
|
|
309
305
|
--color-electric-blue: #3b82f6;
|
|
@@ -316,254 +312,7 @@ export {
|
|
|
316
312
|
}
|
|
317
313
|
}
|
|
318
314
|
|
|
319
|
-
@layer base
|
|
320
|
-
*, :after, :before, ::backdrop {
|
|
321
|
-
box-sizing: border-box;
|
|
322
|
-
border: 0 solid;
|
|
323
|
-
margin: 0;
|
|
324
|
-
padding: 0;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
::file-selector-button {
|
|
328
|
-
box-sizing: border-box;
|
|
329
|
-
border: 0 solid;
|
|
330
|
-
margin: 0;
|
|
331
|
-
padding: 0;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
html, :host {
|
|
335
|
-
-webkit-text-size-adjust: 100%;
|
|
336
|
-
tab-size: 4;
|
|
337
|
-
line-height: 1.5;
|
|
338
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
339
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
340
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
341
|
-
-webkit-tap-highlight-color: transparent;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
hr {
|
|
345
|
-
height: 0;
|
|
346
|
-
color: inherit;
|
|
347
|
-
border-top-width: 1px;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
abbr:where([title]) {
|
|
351
|
-
-webkit-text-decoration: underline dotted;
|
|
352
|
-
text-decoration: underline dotted;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
h1, h2, h3, h4, h5, h6 {
|
|
356
|
-
font-size: inherit;
|
|
357
|
-
font-weight: inherit;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
a {
|
|
361
|
-
color: inherit;
|
|
362
|
-
-webkit-text-decoration: inherit;
|
|
363
|
-
-webkit-text-decoration: inherit;
|
|
364
|
-
-webkit-text-decoration: inherit;
|
|
365
|
-
text-decoration: inherit;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
b, strong {
|
|
369
|
-
font-weight: bolder;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
code, kbd, samp, pre {
|
|
373
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
374
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
375
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
376
|
-
font-size: 1em;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
small {
|
|
380
|
-
font-size: 80%;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
sub, sup {
|
|
384
|
-
vertical-align: baseline;
|
|
385
|
-
font-size: 75%;
|
|
386
|
-
line-height: 0;
|
|
387
|
-
position: relative;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
sub {
|
|
391
|
-
bottom: -.25em;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
sup {
|
|
395
|
-
top: -.5em;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
table {
|
|
399
|
-
text-indent: 0;
|
|
400
|
-
border-color: inherit;
|
|
401
|
-
border-collapse: collapse;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
:-moz-focusring {
|
|
405
|
-
outline: auto;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
progress {
|
|
409
|
-
vertical-align: baseline;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
summary {
|
|
413
|
-
display: list-item;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
ol, ul, menu {
|
|
417
|
-
list-style: none;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
421
|
-
vertical-align: middle;
|
|
422
|
-
display: block;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
img, video {
|
|
426
|
-
max-width: 100%;
|
|
427
|
-
height: auto;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
button, input, select, optgroup, textarea {
|
|
431
|
-
font: inherit;
|
|
432
|
-
font-feature-settings: inherit;
|
|
433
|
-
font-variation-settings: inherit;
|
|
434
|
-
letter-spacing: inherit;
|
|
435
|
-
color: inherit;
|
|
436
|
-
opacity: 1;
|
|
437
|
-
background-color: #0000;
|
|
438
|
-
border-radius: 0;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
::file-selector-button {
|
|
442
|
-
font: inherit;
|
|
443
|
-
font-feature-settings: inherit;
|
|
444
|
-
font-variation-settings: inherit;
|
|
445
|
-
letter-spacing: inherit;
|
|
446
|
-
color: inherit;
|
|
447
|
-
opacity: 1;
|
|
448
|
-
background-color: #0000;
|
|
449
|
-
border-radius: 0;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
453
|
-
font-weight: bolder;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
457
|
-
padding-inline-start: 20px;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
::file-selector-button {
|
|
461
|
-
margin-inline-end: 4px;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
::placeholder {
|
|
465
|
-
opacity: 1;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
@supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
|
|
469
|
-
::placeholder {
|
|
470
|
-
color: currentColor;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
474
|
-
::placeholder {
|
|
475
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
476
|
-
}
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
textarea {
|
|
481
|
-
resize: vertical;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
::-webkit-search-decoration {
|
|
485
|
-
-webkit-appearance: none;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
::-webkit-date-and-time-value {
|
|
489
|
-
min-height: 1lh;
|
|
490
|
-
text-align: inherit;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
::-webkit-datetime-edit {
|
|
494
|
-
display: inline-flex;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
498
|
-
padding: 0;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
::-webkit-datetime-edit {
|
|
502
|
-
padding-block: 0;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
::-webkit-datetime-edit-year-field {
|
|
506
|
-
padding-block: 0;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
::-webkit-datetime-edit-month-field {
|
|
510
|
-
padding-block: 0;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
::-webkit-datetime-edit-day-field {
|
|
514
|
-
padding-block: 0;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
::-webkit-datetime-edit-hour-field {
|
|
518
|
-
padding-block: 0;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
::-webkit-datetime-edit-minute-field {
|
|
522
|
-
padding-block: 0;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
::-webkit-datetime-edit-second-field {
|
|
526
|
-
padding-block: 0;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
::-webkit-datetime-edit-millisecond-field {
|
|
530
|
-
padding-block: 0;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
534
|
-
padding-block: 0;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
::-webkit-calendar-picker-indicator {
|
|
538
|
-
line-height: 1;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
:-moz-ui-invalid {
|
|
542
|
-
box-shadow: none;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
546
|
-
appearance: button;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
::file-selector-button {
|
|
550
|
-
appearance: button;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
::-webkit-inner-spin-button {
|
|
554
|
-
height: auto;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
::-webkit-outer-spin-button {
|
|
558
|
-
height: auto;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
562
|
-
display: none !important;
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
@layer components;
|
|
315
|
+
@layer base, components;
|
|
567
316
|
|
|
568
317
|
@layer utilities {
|
|
569
318
|
.pointer-events-none {
|
|
@@ -2407,4 +2156,4 @@ export {
|
|
|
2407
2156
|
opacity: .5;
|
|
2408
2157
|
}
|
|
2409
2158
|
}
|
|
2410
|
-
`;
|
|
2159
|
+
`;})();
|