@harnessio/ui 0.5.62 → 0.5.63
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/components.d.ts +40 -0
- package/dist/components.js +177 -176
- package/dist/{index-CNk3ORYm.js → index-BwCyII_n.js} +12706 -12505
- package/dist/{index-CNk3ORYm.js.map → index-BwCyII_n.js.map} +1 -1
- package/dist/index.d.ts +44 -0
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.config.js +182 -144
- package/dist/tailwind.config.js.map +1 -1
- package/package.json +1 -1
package/dist/tailwind.config.js
CHANGED
|
@@ -1117,6 +1117,43 @@ const Z = {
|
|
|
1117
1117
|
"@apply truncate": ""
|
|
1118
1118
|
}
|
|
1119
1119
|
}, ce = {
|
|
1120
|
+
".cn-checkbox-tree": {
|
|
1121
|
+
"@apply w-full": ""
|
|
1122
|
+
},
|
|
1123
|
+
".cn-checkbox-tree-item": {
|
|
1124
|
+
"@apply w-full": ""
|
|
1125
|
+
},
|
|
1126
|
+
".cn-checkbox-tree-row": {
|
|
1127
|
+
"@apply relative w-full transition-colors": "",
|
|
1128
|
+
padding: "var(--cn-spacing-3) var(--cn-spacing-4)",
|
|
1129
|
+
borderBottom: "var(--cn-border-width-1) solid var(--cn-border-3)",
|
|
1130
|
+
"&:hover": {
|
|
1131
|
+
"@apply bg-cn-hover": ""
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
".cn-checkbox-tree-trigger": {
|
|
1135
|
+
"@apply flex-1 cursor-pointer": "",
|
|
1136
|
+
"&:where([disabled])": {
|
|
1137
|
+
"@apply cursor-not-allowed opacity-cn-disabled": ""
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
".cn-checkbox-tree-label": {
|
|
1141
|
+
"@apply font-body-normal": ""
|
|
1142
|
+
},
|
|
1143
|
+
".cn-checkbox-tree-select-all": {
|
|
1144
|
+
"@apply font-body-strong": ""
|
|
1145
|
+
},
|
|
1146
|
+
".cn-checkbox-tree-content": {
|
|
1147
|
+
"@apply overflow-hidden": "",
|
|
1148
|
+
/**
|
|
1149
|
+
* Content is kept mounted (forceMount) so descendants stay registered for
|
|
1150
|
+
* selection state; hide it visually when the group is collapsed.
|
|
1151
|
+
*/
|
|
1152
|
+
"&:where([data-state=closed])": {
|
|
1153
|
+
"@apply hidden": ""
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
}, ie = {
|
|
1120
1157
|
".cn-modal-dialog-overlay": {
|
|
1121
1158
|
backgroundColor: "var(--cn-comp-dialog-backdrop)",
|
|
1122
1159
|
padding: "var(--cn-dialog-safezone)",
|
|
@@ -1285,7 +1322,7 @@ const Z = {
|
|
|
1285
1322
|
opacity: "0"
|
|
1286
1323
|
}
|
|
1287
1324
|
}
|
|
1288
|
-
},
|
|
1325
|
+
}, de = {
|
|
1289
1326
|
".cn-drawer": {
|
|
1290
1327
|
"&-content": {
|
|
1291
1328
|
userSelect: "auto !important",
|
|
@@ -1690,7 +1727,7 @@ const Z = {
|
|
|
1690
1727
|
}
|
|
1691
1728
|
}
|
|
1692
1729
|
}
|
|
1693
|
-
},
|
|
1730
|
+
}, se = [
|
|
1694
1731
|
"gray",
|
|
1695
1732
|
"green",
|
|
1696
1733
|
"red",
|
|
@@ -1705,14 +1742,14 @@ const Z = {
|
|
|
1705
1742
|
"orange",
|
|
1706
1743
|
"pink",
|
|
1707
1744
|
"violet"
|
|
1708
|
-
],
|
|
1745
|
+
], le = () => {
|
|
1709
1746
|
const r = {};
|
|
1710
|
-
return
|
|
1747
|
+
return se.forEach((e) => {
|
|
1711
1748
|
r[`&.cn-dropdown-menu-item-indicator-${e}`] = {
|
|
1712
1749
|
backgroundColor: `var(--cn-set-${e}-solid-bg)`
|
|
1713
1750
|
};
|
|
1714
1751
|
}), r;
|
|
1715
|
-
},
|
|
1752
|
+
}, pe = {
|
|
1716
1753
|
".cn-dropdown-menu": {
|
|
1717
1754
|
zIndex: "50",
|
|
1718
1755
|
minWidth: "var(--cn-dropdown-min-width)",
|
|
@@ -1789,7 +1826,7 @@ const Z = {
|
|
|
1789
1826
|
height: "var(--cn-badge-indicator-size-sm)",
|
|
1790
1827
|
borderRadius: "var(--cn-rounded-full)",
|
|
1791
1828
|
flexShrink: "0",
|
|
1792
|
-
...
|
|
1829
|
+
...le()
|
|
1793
1830
|
}
|
|
1794
1831
|
},
|
|
1795
1832
|
"&-group-label": {
|
|
@@ -1817,7 +1854,7 @@ const Z = {
|
|
|
1817
1854
|
padding: "calc(var(--cn-dropdown-item-py) + var(--cn-spacing-4)) var(--cn-dropdown-item-px)"
|
|
1818
1855
|
}
|
|
1819
1856
|
}
|
|
1820
|
-
},
|
|
1857
|
+
}, be = {
|
|
1821
1858
|
".cn-form": {
|
|
1822
1859
|
[`@apply flex flex-col ${I}`]: ""
|
|
1823
1860
|
},
|
|
@@ -1841,15 +1878,15 @@ const Z = {
|
|
|
1841
1878
|
":where(.cn-control-group-input)": {
|
|
1842
1879
|
[`@apply relative flex flex-col ${l}`]: ""
|
|
1843
1880
|
}
|
|
1844
|
-
},
|
|
1881
|
+
}, ge = ["2xs", "xs", "sm", "md", "lg", "xl"], ve = ["xs", "sm", "md", "lg"];
|
|
1845
1882
|
function g(r) {
|
|
1846
|
-
const e = r === "icon" ?
|
|
1883
|
+
const e = r === "icon" ? ge : ve, n = r === "symbol" ? "logo" : r, t = {};
|
|
1847
1884
|
return e.forEach((a) => {
|
|
1848
1885
|
const o = {};
|
|
1849
1886
|
o.width = `var(--cn-${n}-size-${a})`, o["min-width"] = `var(--cn-${n}-size-${a})`, o.height = `var(--cn-${n}-size-${a})`, o["min-height"] = `var(--cn-${n}-size-${a})`, r === "icon" && (o["stroke-width"] = `var(--cn-icon-stroke-width-${a})`), t[`&:where(.cn-${r}-${a})`] = o;
|
|
1850
1887
|
}), t;
|
|
1851
1888
|
}
|
|
1852
|
-
const
|
|
1889
|
+
const ue = {
|
|
1853
1890
|
".cn-icon": {
|
|
1854
1891
|
...g("icon")
|
|
1855
1892
|
},
|
|
@@ -1859,10 +1896,10 @@ const ve = {
|
|
|
1859
1896
|
".cn-symbol": {
|
|
1860
1897
|
...g("symbol")
|
|
1861
1898
|
}
|
|
1862
|
-
},
|
|
1863
|
-
function
|
|
1899
|
+
}, he = ["danger", "warning", "success"];
|
|
1900
|
+
function me() {
|
|
1864
1901
|
const r = {};
|
|
1865
|
-
return
|
|
1902
|
+
return he.forEach((e) => {
|
|
1866
1903
|
r[`&:where(.cn-input-${e}):not(:has(input[disabled]))`] = {
|
|
1867
1904
|
borderColor: `var(--cn-border-${e})`,
|
|
1868
1905
|
boxShadow: `var(--cn-ring-${e})`,
|
|
@@ -1877,7 +1914,7 @@ function he() {
|
|
|
1877
1914
|
};
|
|
1878
1915
|
}), r;
|
|
1879
1916
|
}
|
|
1880
|
-
const
|
|
1917
|
+
const xe = {
|
|
1881
1918
|
".cn-input": {
|
|
1882
1919
|
"&-input": {
|
|
1883
1920
|
height: "100%",
|
|
@@ -1965,7 +2002,7 @@ const me = {
|
|
|
1965
2002
|
"@apply h-full border-0 border-l rounded-l-cn-none": "",
|
|
1966
2003
|
borderColor: "inherit"
|
|
1967
2004
|
},
|
|
1968
|
-
...
|
|
2005
|
+
...me()
|
|
1969
2006
|
},
|
|
1970
2007
|
"&-search": {
|
|
1971
2008
|
"&:where(.cn-input-input)": {
|
|
@@ -1976,7 +2013,7 @@ const me = {
|
|
|
1976
2013
|
}
|
|
1977
2014
|
}
|
|
1978
2015
|
}
|
|
1979
|
-
},
|
|
2016
|
+
}, fe = {
|
|
1980
2017
|
".cn-label": {
|
|
1981
2018
|
"@apply font-body-normal": "",
|
|
1982
2019
|
display: "grid",
|
|
@@ -2004,7 +2041,7 @@ const me = {
|
|
|
2004
2041
|
color: "var(--cn-set-danger-secondary-text)"
|
|
2005
2042
|
}
|
|
2006
2043
|
}
|
|
2007
|
-
},
|
|
2044
|
+
}, ye = {
|
|
2008
2045
|
".cn-link": {
|
|
2009
2046
|
display: "inline-flex",
|
|
2010
2047
|
alignItems: "center",
|
|
@@ -2065,7 +2102,7 @@ const me = {
|
|
|
2065
2102
|
textDecorationLine: "none !important"
|
|
2066
2103
|
}
|
|
2067
2104
|
}
|
|
2068
|
-
},
|
|
2105
|
+
}, we = {
|
|
2069
2106
|
".cn-message-bubble": {
|
|
2070
2107
|
display: "flex",
|
|
2071
2108
|
flexDirection: "column",
|
|
@@ -2091,7 +2128,7 @@ const me = {
|
|
|
2091
2128
|
gap: "var(--cn-spacing-1)"
|
|
2092
2129
|
}
|
|
2093
2130
|
}
|
|
2094
|
-
},
|
|
2131
|
+
}, ke = {
|
|
2095
2132
|
".cn-meter": {
|
|
2096
2133
|
"@apply flex h-[19px] items-stretch gap-cn-3xs": "",
|
|
2097
2134
|
"&:has(.cn-meter-tooltip-bar:hover) .cn-meter-bar:not(:hover)": {
|
|
@@ -2105,10 +2142,10 @@ const me = {
|
|
|
2105
2142
|
transition: "all 0.15s"
|
|
2106
2143
|
}
|
|
2107
2144
|
}
|
|
2108
|
-
},
|
|
2109
|
-
function
|
|
2145
|
+
}, Ce = ["danger", "warning"];
|
|
2146
|
+
function Se() {
|
|
2110
2147
|
const r = {};
|
|
2111
|
-
return
|
|
2148
|
+
return Ce.forEach((e) => {
|
|
2112
2149
|
r[`&:where(.cn-multi-select-${e}):not(:has(input[disabled]))`] = {
|
|
2113
2150
|
borderColor: `var(--cn-border-${e})`,
|
|
2114
2151
|
boxShadow: `var(--cn-ring-${e})`,
|
|
@@ -2123,7 +2160,7 @@ function Ce() {
|
|
|
2123
2160
|
};
|
|
2124
2161
|
}), r;
|
|
2125
2162
|
}
|
|
2126
|
-
const
|
|
2163
|
+
const ze = {
|
|
2127
2164
|
".cn-multi-select": {
|
|
2128
2165
|
"&-outer-container": {
|
|
2129
2166
|
"@apply flex flex-col gap-cn-xs": ""
|
|
@@ -2143,7 +2180,7 @@ const Se = {
|
|
|
2143
2180
|
"&:where(:hover):not(:has(input[disabled]))": {
|
|
2144
2181
|
borderColor: "var(--cn-border-brand)"
|
|
2145
2182
|
},
|
|
2146
|
-
...
|
|
2183
|
+
...Se()
|
|
2147
2184
|
},
|
|
2148
2185
|
"&-tag-wrapper": {
|
|
2149
2186
|
"@apply relative flex flex-wrap items-center gap-cn-xs": ""
|
|
@@ -2170,7 +2207,7 @@ const Se = {
|
|
|
2170
2207
|
"@apply border rounded-cn-3 shadow-cn-3 mt-cn-3xs overflow-hidden animate-in absolute top-cn-3xs z-[55] w-full outline-none": ""
|
|
2171
2208
|
}
|
|
2172
2209
|
}
|
|
2173
|
-
},
|
|
2210
|
+
}, $e = {
|
|
2174
2211
|
".cn-page": {
|
|
2175
2212
|
// Horizontal page padding for scrollable content. Mirrors the sticky header's padding
|
|
2176
2213
|
// (see page-header-v2) so the header and the content below it stay edge-aligned.
|
|
@@ -2184,7 +2221,7 @@ const Se = {
|
|
|
2184
2221
|
paddingTop: "var(--cn-page-container-spacing-py)"
|
|
2185
2222
|
}
|
|
2186
2223
|
}
|
|
2187
|
-
},
|
|
2224
|
+
}, Re = {
|
|
2188
2225
|
".cn-pagination": {
|
|
2189
2226
|
"&-root": {
|
|
2190
2227
|
containerType: "inline-size",
|
|
@@ -2224,7 +2261,7 @@ const Se = {
|
|
|
2224
2261
|
paddingInline: "var(--cn-pagination-btn-px)"
|
|
2225
2262
|
}
|
|
2226
2263
|
}
|
|
2227
|
-
},
|
|
2264
|
+
}, Ie = {
|
|
2228
2265
|
".cn-popover": {
|
|
2229
2266
|
"&-content": {
|
|
2230
2267
|
display: "grid",
|
|
@@ -2308,7 +2345,7 @@ const Se = {
|
|
|
2308
2345
|
}
|
|
2309
2346
|
}
|
|
2310
2347
|
}
|
|
2311
|
-
},
|
|
2348
|
+
}, Te = ["sm", "md", "lg"], We = ["processing", "completed", "paused", "failed"], Be = [
|
|
2312
2349
|
"gray",
|
|
2313
2350
|
"blue",
|
|
2314
2351
|
"brown",
|
|
@@ -2324,7 +2361,7 @@ const Se = {
|
|
|
2324
2361
|
"red",
|
|
2325
2362
|
"violet",
|
|
2326
2363
|
"yellow"
|
|
2327
|
-
],
|
|
2364
|
+
], Le = {
|
|
2328
2365
|
green: "success",
|
|
2329
2366
|
red: "danger",
|
|
2330
2367
|
yellow: "warning"
|
|
@@ -2345,25 +2382,25 @@ const Se = {
|
|
|
2345
2382
|
progressBg: "danger",
|
|
2346
2383
|
color: "text-danger"
|
|
2347
2384
|
}
|
|
2348
|
-
}, v = "var(--cn-comp-slider-track-progress-stripes)",
|
|
2385
|
+
}, v = "var(--cn-comp-slider-track-progress-stripes)", He = `linear-gradient(45deg,
|
|
2349
2386
|
${v} 18.75%,
|
|
2350
2387
|
transparent 18.75%,
|
|
2351
2388
|
transparent 50%,
|
|
2352
2389
|
${v} 50%,
|
|
2353
2390
|
${v} 68.75%,
|
|
2354
2391
|
transparent 68.75%,
|
|
2355
|
-
transparent)`,
|
|
2356
|
-
function
|
|
2392
|
+
transparent)`, Ae = (r) => r === "sm" ? "8px 8px" : r === "lg" ? "32px 32px" : "16px 16px";
|
|
2393
|
+
function De() {
|
|
2357
2394
|
const r = {};
|
|
2358
|
-
return
|
|
2395
|
+
return Te.forEach((e) => {
|
|
2359
2396
|
const n = {};
|
|
2360
2397
|
n[" .cn-progress-root"] = {
|
|
2361
2398
|
height: `var(--cn-progress-size-${e})`
|
|
2362
2399
|
}, n[" .cn-progress-processing-fake"] = {
|
|
2363
|
-
"background-size":
|
|
2400
|
+
"background-size": Ae(e),
|
|
2364
2401
|
"animation-name": `cnProgressBar-${e}`
|
|
2365
2402
|
}, r[`&:where(.cn-progress-${e})`] = n;
|
|
2366
|
-
}),
|
|
2403
|
+
}), We.forEach((e) => {
|
|
2367
2404
|
const n = {};
|
|
2368
2405
|
n[" .cn-progress-root::-webkit-progress-value"] = {
|
|
2369
2406
|
"background-color": `var(--cn-comp-slider-track-${i[e].progressBg})`
|
|
@@ -2376,8 +2413,8 @@ function Ae() {
|
|
|
2376
2413
|
}, n[" .cn-progress-subtitle"] = {
|
|
2377
2414
|
color: `var(--cn-${i[e].color})`
|
|
2378
2415
|
}, r[`&:where(.cn-progress-${e})`] = n;
|
|
2379
|
-
}),
|
|
2380
|
-
const t = `var(--cn-set-${
|
|
2416
|
+
}), Be.forEach((e) => {
|
|
2417
|
+
const t = `var(--cn-set-${Le[e] ?? e}-primary-bg)`;
|
|
2381
2418
|
r[`&:where(.cn-progress-color-${e})`] = {
|
|
2382
2419
|
" .cn-progress-root::-webkit-progress-value": { "background-color": t },
|
|
2383
2420
|
" .cn-progress-root::-moz-progress-bar": { "background-color": t },
|
|
@@ -2385,7 +2422,7 @@ function Ae() {
|
|
|
2385
2422
|
};
|
|
2386
2423
|
}), r;
|
|
2387
2424
|
}
|
|
2388
|
-
const
|
|
2425
|
+
const je = {
|
|
2389
2426
|
".cn-progress": {
|
|
2390
2427
|
"&-container": {
|
|
2391
2428
|
position: "relative"
|
|
@@ -2470,13 +2507,13 @@ const De = {
|
|
|
2470
2507
|
},
|
|
2471
2508
|
"&-processing-fake": {
|
|
2472
2509
|
"background-color": "var(--cn-comp-slider-track-progress)",
|
|
2473
|
-
"background-image":
|
|
2510
|
+
"background-image": He,
|
|
2474
2511
|
"background-size": "16px 16px",
|
|
2475
2512
|
height: "100%",
|
|
2476
2513
|
width: "100%",
|
|
2477
2514
|
animation: "cnProgressBar-md 0.8s linear infinite"
|
|
2478
2515
|
},
|
|
2479
|
-
...
|
|
2516
|
+
...De(),
|
|
2480
2517
|
"@keyframes cnProgressIndeterminateAnimation": {
|
|
2481
2518
|
"0%": {
|
|
2482
2519
|
transform: "translateX(-100%)"
|
|
@@ -2510,7 +2547,7 @@ const De = {
|
|
|
2510
2547
|
}
|
|
2511
2548
|
}
|
|
2512
2549
|
}
|
|
2513
|
-
},
|
|
2550
|
+
}, Ee = {
|
|
2514
2551
|
"@property --cn-angle": {
|
|
2515
2552
|
syntax: '"<angle>"',
|
|
2516
2553
|
inherits: "true",
|
|
@@ -2576,7 +2613,7 @@ const De = {
|
|
|
2576
2613
|
boxShadow: "0 0 3px 0 color-mix(in srgb, var(--cn-gradient-ai-stop-3) 30%, transparent), 0 0 12px 2px color-mix(in srgb, var(--cn-gradient-ai-stop-3) 15%, transparent), 0 0 28px 6px color-mix(in srgb, var(--cn-gradient-ai-stop-3) 8%, transparent)"
|
|
2577
2614
|
}
|
|
2578
2615
|
}
|
|
2579
|
-
},
|
|
2616
|
+
}, Pe = {
|
|
2580
2617
|
":where(.cn-radio-control)": {
|
|
2581
2618
|
[`@apply ${l}`]: ""
|
|
2582
2619
|
},
|
|
@@ -2661,7 +2698,7 @@ const De = {
|
|
|
2661
2698
|
"@apply opacity-cn-disabled": ""
|
|
2662
2699
|
}
|
|
2663
2700
|
}
|
|
2664
|
-
},
|
|
2701
|
+
}, Oe = {
|
|
2665
2702
|
".cn-reasoning": {
|
|
2666
2703
|
marginBottom: "var(--cn-spacing-4)"
|
|
2667
2704
|
},
|
|
@@ -2714,7 +2751,7 @@ const De = {
|
|
|
2714
2751
|
opacity: "0"
|
|
2715
2752
|
}
|
|
2716
2753
|
}
|
|
2717
|
-
},
|
|
2754
|
+
}, _e = {
|
|
2718
2755
|
".cn-repo": {
|
|
2719
2756
|
"&-header": {
|
|
2720
2757
|
paddingTop: "var(--cn-page-container-spacing-py)",
|
|
@@ -2729,7 +2766,7 @@ const De = {
|
|
|
2729
2766
|
}
|
|
2730
2767
|
}
|
|
2731
2768
|
}
|
|
2732
|
-
},
|
|
2769
|
+
}, Xe = {
|
|
2733
2770
|
".cn-sandbox-layout": {
|
|
2734
2771
|
"&-content": {
|
|
2735
2772
|
paddingTop: "var(--cn-page-container-spacing-py)",
|
|
@@ -2745,7 +2782,7 @@ const De = {
|
|
|
2745
2782
|
paddingRight: "var(--cn-page-container-spacing-px)"
|
|
2746
2783
|
}
|
|
2747
2784
|
}
|
|
2748
|
-
},
|
|
2785
|
+
}, Ye = {
|
|
2749
2786
|
".cn-scroll-area": {
|
|
2750
2787
|
"@apply overflow-auto grid min-w-full": "",
|
|
2751
2788
|
"&-content": {
|
|
@@ -2767,10 +2804,10 @@ const De = {
|
|
|
2767
2804
|
}
|
|
2768
2805
|
}
|
|
2769
2806
|
}
|
|
2770
|
-
},
|
|
2771
|
-
function
|
|
2807
|
+
}, Fe = ["danger", "warning"], Ge = ["sm"];
|
|
2808
|
+
function Ve() {
|
|
2772
2809
|
const r = {};
|
|
2773
|
-
return
|
|
2810
|
+
return Fe.forEach((e) => {
|
|
2774
2811
|
r[`&:where(.cn-select-${e}):not(:disabled)`] = {
|
|
2775
2812
|
borderColor: `var(--cn-border-${e})`,
|
|
2776
2813
|
boxShadow: `var(--cn-ring-${e})`,
|
|
@@ -2779,7 +2816,7 @@ function Ge() {
|
|
|
2779
2816
|
boxShadow: `var(--cn-ring-${e}-hover)`
|
|
2780
2817
|
}
|
|
2781
2818
|
};
|
|
2782
|
-
}),
|
|
2819
|
+
}), Ge.forEach((e) => {
|
|
2783
2820
|
r[`&.cn-select-${e}`] = {
|
|
2784
2821
|
height: `var(--cn-input-size-${e})`
|
|
2785
2822
|
}, r[`&.cn-select-${e} .cn-select-trigger`] = {
|
|
@@ -2787,7 +2824,7 @@ function Ge() {
|
|
|
2787
2824
|
};
|
|
2788
2825
|
}), r;
|
|
2789
2826
|
}
|
|
2790
|
-
const
|
|
2827
|
+
const Ne = {
|
|
2791
2828
|
".cn-select": {
|
|
2792
2829
|
display: "flex",
|
|
2793
2830
|
alignItems: "center",
|
|
@@ -2838,9 +2875,9 @@ const Ve = {
|
|
|
2838
2875
|
aspectRatio: "1",
|
|
2839
2876
|
height: "100%"
|
|
2840
2877
|
},
|
|
2841
|
-
...
|
|
2878
|
+
...Ve()
|
|
2842
2879
|
}
|
|
2843
|
-
},
|
|
2880
|
+
}, Me = {
|
|
2844
2881
|
".cn-shimmer": {
|
|
2845
2882
|
position: "relative",
|
|
2846
2883
|
display: "inline-block",
|
|
@@ -2851,7 +2888,7 @@ const Ve = {
|
|
|
2851
2888
|
backgroundImage: "var(--shimmer-highlight), linear-gradient(var(--shimmer-color), var(--shimmer-color))",
|
|
2852
2889
|
backgroundRepeat: "no-repeat, padding-box"
|
|
2853
2890
|
}
|
|
2854
|
-
},
|
|
2891
|
+
}, Ue = {
|
|
2855
2892
|
".cn-shortcut": {
|
|
2856
2893
|
"&, &.cn-input-suffix": {
|
|
2857
2894
|
display: "inline-flex",
|
|
@@ -2868,7 +2905,7 @@ const Ve = {
|
|
|
2868
2905
|
}, d = (r) => ({
|
|
2869
2906
|
color: r,
|
|
2870
2907
|
"& svg, & path": { color: r, stroke: r, fill: "none" }
|
|
2871
|
-
}),
|
|
2908
|
+
}), Ke = {
|
|
2872
2909
|
".cn-sidebar-item-content-title": { color: "var(--cn-comp-sidebar-item-text-hover)" },
|
|
2873
2910
|
".cn-sidebar-item-content-icon": { color: "var(--cn-comp-sidebar-item-text-hover)" }
|
|
2874
2911
|
}, x = {
|
|
@@ -2884,7 +2921,7 @@ const Ve = {
|
|
|
2884
2921
|
alignItems: "center"
|
|
2885
2922
|
}
|
|
2886
2923
|
}
|
|
2887
|
-
},
|
|
2924
|
+
}, qe = {
|
|
2888
2925
|
"& .cn-input-prefix": {
|
|
2889
2926
|
"@apply ml-0": ""
|
|
2890
2927
|
},
|
|
@@ -2920,7 +2957,7 @@ const Ve = {
|
|
|
2920
2957
|
opacity: "0"
|
|
2921
2958
|
}
|
|
2922
2959
|
}
|
|
2923
|
-
},
|
|
2960
|
+
}, Je = {
|
|
2924
2961
|
".cn-sidebar": {
|
|
2925
2962
|
"&.cn-sidebar": {
|
|
2926
2963
|
display: "flex",
|
|
@@ -3092,7 +3129,7 @@ const Ve = {
|
|
|
3092
3129
|
"&[data-active=false] .cn-sidebar-item-content": {
|
|
3093
3130
|
backgroundColor: "var(--cn-state-hover)"
|
|
3094
3131
|
},
|
|
3095
|
-
...
|
|
3132
|
+
...Ke,
|
|
3096
3133
|
".cn-sidebar-item-action-menu": { opacity: "1" },
|
|
3097
3134
|
".cn-sidebar-item-content-action-buttons": { display: "flex !important" },
|
|
3098
3135
|
".cn-sidebar-item-grip-handle": { opacity: "1" },
|
|
@@ -3312,7 +3349,7 @@ const Ve = {
|
|
|
3312
3349
|
}
|
|
3313
3350
|
}
|
|
3314
3351
|
},
|
|
3315
|
-
"&[data-state=collapsed]":
|
|
3352
|
+
"&[data-state=collapsed]": qe
|
|
3316
3353
|
},
|
|
3317
3354
|
".cn-sidebar-popover-measurement": {
|
|
3318
3355
|
position: "fixed",
|
|
@@ -3358,10 +3395,10 @@ const Ve = {
|
|
|
3358
3395
|
backgroundColor: "var(--cn-comp-sidebar-separator)"
|
|
3359
3396
|
}
|
|
3360
3397
|
}
|
|
3361
|
-
},
|
|
3362
|
-
function
|
|
3398
|
+
}, Qe = ["sm", "md", "lg", "xs"], Ze = ["2xs", "xs", "sm", "md", "lg", "xl"], er = ["xs", "sm", "md", "lg"], rr = ["sm"];
|
|
3399
|
+
function nr() {
|
|
3363
3400
|
const r = {};
|
|
3364
|
-
return
|
|
3401
|
+
return Qe.forEach((e) => {
|
|
3365
3402
|
r[`&:where(.cn-skeleton-avatar-${e})`] = {
|
|
3366
3403
|
width: `var(--cn-avatar-size-${e})`,
|
|
3367
3404
|
height: `var(--cn-avatar-size-${e})`
|
|
@@ -3369,22 +3406,22 @@ function rr() {
|
|
|
3369
3406
|
}), r;
|
|
3370
3407
|
}
|
|
3371
3408
|
function w(r) {
|
|
3372
|
-
const e = r === "icon" ?
|
|
3409
|
+
const e = r === "icon" ? Ze : er, n = {};
|
|
3373
3410
|
return e.forEach((t) => {
|
|
3374
3411
|
const a = {};
|
|
3375
3412
|
a.width = `var(--cn-${r}-size-${t})`, a["min-width"] = `var(--cn-${r}-size-${t})`, a.height = `var(--cn-${r}-size-${t})`, a["min-height"] = `var(--cn-${r}-size-${t})`, n[`&:where(.cn-skeleton-${r}-${t})`] = a;
|
|
3376
3413
|
}), n;
|
|
3377
3414
|
}
|
|
3378
|
-
function
|
|
3415
|
+
function ar() {
|
|
3379
3416
|
const r = {};
|
|
3380
|
-
return
|
|
3417
|
+
return rr.forEach((e) => {
|
|
3381
3418
|
r[`&.cn-skeleton-form-item-${e}`] = {
|
|
3382
3419
|
padding: `var(--cn-input-${e}-py) var(--cn-input-${e}-pr) var(--cn-input-${e}-py) var(--cn-input-${e}-pl)`,
|
|
3383
3420
|
height: `var(--cn-input-size-${e})`
|
|
3384
3421
|
};
|
|
3385
3422
|
}), r;
|
|
3386
3423
|
}
|
|
3387
|
-
const
|
|
3424
|
+
const tr = {
|
|
3388
3425
|
".cn-skeleton": {
|
|
3389
3426
|
"&-base": {
|
|
3390
3427
|
backgroundImage: "var(--cn-comp-skeleton-bg)",
|
|
@@ -3399,7 +3436,7 @@ const ar = {
|
|
|
3399
3436
|
"&:where(.cn-skeleton-avatar-rounded)": {
|
|
3400
3437
|
borderRadius: "var(--cn-avatar-radius-rounded)"
|
|
3401
3438
|
},
|
|
3402
|
-
...
|
|
3439
|
+
...nr()
|
|
3403
3440
|
},
|
|
3404
3441
|
"&-icon": {
|
|
3405
3442
|
...w("icon")
|
|
@@ -3435,7 +3472,7 @@ const ar = {
|
|
|
3435
3472
|
border: "var(--cn-input-border) solid var(--cn-border-2)",
|
|
3436
3473
|
borderRadius: "var(--cn-input-radius)",
|
|
3437
3474
|
backgroundColor: "var(--cn-comp-input-bg)",
|
|
3438
|
-
...
|
|
3475
|
+
...ar()
|
|
3439
3476
|
}
|
|
3440
3477
|
},
|
|
3441
3478
|
"&-list": {
|
|
@@ -3456,7 +3493,7 @@ const ar = {
|
|
|
3456
3493
|
backgroundPosition: "-200% 0"
|
|
3457
3494
|
}
|
|
3458
3495
|
}
|
|
3459
|
-
},
|
|
3496
|
+
}, or = {
|
|
3460
3497
|
".cn-slider": {
|
|
3461
3498
|
display: "flex",
|
|
3462
3499
|
flexDirection: "column",
|
|
@@ -3732,7 +3769,7 @@ const ar = {
|
|
|
3732
3769
|
}
|
|
3733
3770
|
}
|
|
3734
3771
|
}
|
|
3735
|
-
},
|
|
3772
|
+
}, cr = {
|
|
3736
3773
|
".cn-dual-pane-stepper-root": {
|
|
3737
3774
|
display: "flex",
|
|
3738
3775
|
flexDirection: "column",
|
|
@@ -3811,7 +3848,7 @@ const ar = {
|
|
|
3811
3848
|
flexShrink: "0"
|
|
3812
3849
|
}
|
|
3813
3850
|
}
|
|
3814
|
-
},
|
|
3851
|
+
}, ir = {
|
|
3815
3852
|
".cn-single-pane-stepper-root": {
|
|
3816
3853
|
display: "flex",
|
|
3817
3854
|
flexDirection: "column",
|
|
@@ -3862,7 +3899,7 @@ const ar = {
|
|
|
3862
3899
|
flexShrink: "0"
|
|
3863
3900
|
}
|
|
3864
3901
|
}
|
|
3865
|
-
},
|
|
3902
|
+
}, dr = {
|
|
3866
3903
|
".cn-flow-stepper-card": {
|
|
3867
3904
|
position: "relative",
|
|
3868
3905
|
background: "var(--cn-bg-1)",
|
|
@@ -3976,7 +4013,7 @@ const ar = {
|
|
|
3976
4013
|
gap: "var(--cn-spacing-2)",
|
|
3977
4014
|
flexShrink: "0"
|
|
3978
4015
|
}
|
|
3979
|
-
},
|
|
4016
|
+
}, sr = {
|
|
3980
4017
|
".cn-yaml-output-panel": {
|
|
3981
4018
|
display: "flex",
|
|
3982
4019
|
flexDirection: "column",
|
|
@@ -3996,7 +4033,7 @@ const ar = {
|
|
|
3996
4033
|
minHeight: "0",
|
|
3997
4034
|
overflow: "hidden"
|
|
3998
4035
|
}
|
|
3999
|
-
},
|
|
4036
|
+
}, lr = {
|
|
4000
4037
|
".cn-stacked-list": {
|
|
4001
4038
|
"@apply w-full bg-cn-1 border rounded-cn-3": "",
|
|
4002
4039
|
"& > *:first-child > .cn-stacked-list-item": {
|
|
@@ -4097,7 +4134,7 @@ const ar = {
|
|
|
4097
4134
|
background: "var(--cn-border-2)",
|
|
4098
4135
|
pointerEvents: "none"
|
|
4099
4136
|
}
|
|
4100
|
-
},
|
|
4137
|
+
}, pr = {
|
|
4101
4138
|
".cn-stepper": {
|
|
4102
4139
|
minWidth: "200px",
|
|
4103
4140
|
width: "100%",
|
|
@@ -4565,7 +4602,7 @@ const ar = {
|
|
|
4565
4602
|
backgroundClip: "unset"
|
|
4566
4603
|
}
|
|
4567
4604
|
}
|
|
4568
|
-
},
|
|
4605
|
+
}, br = {
|
|
4569
4606
|
".cn-sticky-list-section": {
|
|
4570
4607
|
"@apply relative": "",
|
|
4571
4608
|
"&-sentinel": {
|
|
@@ -4616,7 +4653,7 @@ const ar = {
|
|
|
4616
4653
|
}
|
|
4617
4654
|
}, S = {
|
|
4618
4655
|
boxShadow: "0 4px 6px -1px lch(from var(--cn-shadow-color-3) l c h / 0.05), 0 2px 8px -2px lch(from var(--cn-shadow-color-3) l c h / 0.05)"
|
|
4619
|
-
},
|
|
4656
|
+
}, gr = {
|
|
4620
4657
|
".cn-studio-card": {
|
|
4621
4658
|
borderRadius: "var(--cn-rounded-4)",
|
|
4622
4659
|
border: "1px solid var(--cn-border-2)",
|
|
@@ -4988,7 +5025,7 @@ const ar = {
|
|
|
4988
5025
|
}
|
|
4989
5026
|
}
|
|
4990
5027
|
}
|
|
4991
|
-
},
|
|
5028
|
+
}, vr = {
|
|
4992
5029
|
".cn-switch-wrapper": {
|
|
4993
5030
|
display: "flex",
|
|
4994
5031
|
gap: "var(--cn-spacing-2-half)",
|
|
@@ -5077,7 +5114,7 @@ const ar = {
|
|
|
5077
5114
|
},
|
|
5078
5115
|
"@apply truncate": ""
|
|
5079
5116
|
}
|
|
5080
|
-
}, h = "linear-gradient(var(--cn-table-pinned-overlay), var(--cn-table-pinned-overlay)), var(--cn-table-pinned-base)",
|
|
5117
|
+
}, h = "linear-gradient(var(--cn-table-pinned-overlay), var(--cn-table-pinned-overlay)), var(--cn-table-pinned-base)", ur = {
|
|
5081
5118
|
".cn-table-v2": {
|
|
5082
5119
|
"@apply w-full": "",
|
|
5083
5120
|
// Table container
|
|
@@ -5276,7 +5313,7 @@ const ar = {
|
|
|
5276
5313
|
".cn-row-pin-on": {
|
|
5277
5314
|
opacity: "1"
|
|
5278
5315
|
}
|
|
5279
|
-
},
|
|
5316
|
+
}, hr = {
|
|
5280
5317
|
".cn-tabs-scroll-container": {
|
|
5281
5318
|
position: "relative",
|
|
5282
5319
|
width: "100%",
|
|
@@ -5501,7 +5538,7 @@ const ar = {
|
|
|
5501
5538
|
"@apply opacity-cn-disabled": ""
|
|
5502
5539
|
}
|
|
5503
5540
|
}
|
|
5504
|
-
},
|
|
5541
|
+
}, mr = [
|
|
5505
5542
|
"gray",
|
|
5506
5543
|
"blue",
|
|
5507
5544
|
"brown",
|
|
@@ -5517,7 +5554,7 @@ const ar = {
|
|
|
5517
5554
|
"red",
|
|
5518
5555
|
"violet",
|
|
5519
5556
|
"yellow"
|
|
5520
|
-
],
|
|
5557
|
+
], xr = {
|
|
5521
5558
|
green: "success",
|
|
5522
5559
|
red: "danger",
|
|
5523
5560
|
yellow: "warning"
|
|
@@ -5527,8 +5564,8 @@ const ar = {
|
|
|
5527
5564
|
});
|
|
5528
5565
|
function $(r) {
|
|
5529
5566
|
const e = {};
|
|
5530
|
-
return
|
|
5531
|
-
const t =
|
|
5567
|
+
return mr.forEach((n) => {
|
|
5568
|
+
const t = xr[n] ?? n, a = r === "outline", o = {
|
|
5532
5569
|
color: `var(--cn-set-${t}-${a ? "outline-text" : "secondary-text"})`,
|
|
5533
5570
|
backgroundColor: `var(--cn-set-${t}-${a ? "outline-bg" : "secondary-bg"})`,
|
|
5534
5571
|
borderColor: `var(--cn-set-${t}-${a ? "outline-border" : "secondary-bg"})`,
|
|
@@ -5555,7 +5592,7 @@ function $(r) {
|
|
|
5555
5592
|
e[`&:where(.cn-tag-${t})`] = o;
|
|
5556
5593
|
}), e;
|
|
5557
5594
|
}
|
|
5558
|
-
const
|
|
5595
|
+
const fr = {
|
|
5559
5596
|
".cn-tag": {
|
|
5560
5597
|
display: "inline-flex",
|
|
5561
5598
|
alignItems: "center",
|
|
@@ -5610,10 +5647,10 @@ const xr = {
|
|
|
5610
5647
|
"@apply truncate leading-normal align-middle inline-block": ""
|
|
5611
5648
|
}
|
|
5612
5649
|
}
|
|
5613
|
-
},
|
|
5614
|
-
function
|
|
5650
|
+
}, yr = ["danger", "warning"], wr = ["sm"];
|
|
5651
|
+
function kr() {
|
|
5615
5652
|
const r = {};
|
|
5616
|
-
return
|
|
5653
|
+
return yr.forEach((e) => {
|
|
5617
5654
|
r[`&:where(.cn-textarea-${e}):not(:disabled)`] = {
|
|
5618
5655
|
borderColor: `var(--cn-border-${e})`,
|
|
5619
5656
|
boxShadow: `var(--cn-ring-${e})`,
|
|
@@ -5626,13 +5663,13 @@ function wr() {
|
|
|
5626
5663
|
boxShadow: `var(--cn-ring-${e})`
|
|
5627
5664
|
}
|
|
5628
5665
|
};
|
|
5629
|
-
}),
|
|
5666
|
+
}), wr.forEach((e) => {
|
|
5630
5667
|
r[`&.cn-textarea-${e}`] = {
|
|
5631
5668
|
padding: `var(--cn-input-${e}-py) var(--cn-input-${e}-pr) var(--cn-input-${e}-py) var(--cn-input-${e}-pl)`
|
|
5632
5669
|
};
|
|
5633
5670
|
}), r;
|
|
5634
5671
|
}
|
|
5635
|
-
const
|
|
5672
|
+
const Cr = {
|
|
5636
5673
|
".cn-textarea": {
|
|
5637
5674
|
borderRadius: "var(--cn-input-radius)",
|
|
5638
5675
|
padding: "var(--cn-input-md-py) var(--cn-input-md-pr) var(--cn-input-md-py) var(--cn-input-md-pl)",
|
|
@@ -5671,7 +5708,7 @@ const kr = {
|
|
|
5671
5708
|
"&-resizable": {
|
|
5672
5709
|
resize: "vertical"
|
|
5673
5710
|
},
|
|
5674
|
-
...
|
|
5711
|
+
...kr(),
|
|
5675
5712
|
"&-label-wrapper": {
|
|
5676
5713
|
display: "flex",
|
|
5677
5714
|
alignItems: "center",
|
|
@@ -5692,7 +5729,7 @@ const kr = {
|
|
|
5692
5729
|
}
|
|
5693
5730
|
}
|
|
5694
5731
|
}
|
|
5695
|
-
},
|
|
5732
|
+
}, Sr = {
|
|
5696
5733
|
".cn-time-ago-card": {
|
|
5697
5734
|
"&-trigger": {
|
|
5698
5735
|
"@apply leading-snug whitespace-nowrap truncate max-w-full": "",
|
|
@@ -5714,7 +5751,7 @@ const kr = {
|
|
|
5714
5751
|
"@apply grid grid-cols-[auto_1fr_auto] items-center whitespace-nowrap": ""
|
|
5715
5752
|
}
|
|
5716
5753
|
}
|
|
5717
|
-
},
|
|
5754
|
+
}, zr = {
|
|
5718
5755
|
".cn-time-input": {
|
|
5719
5756
|
// Hide the native time picker indicator across browsers so the
|
|
5720
5757
|
// configurable IconV2 icon is the only affordance shown.
|
|
@@ -5726,7 +5763,7 @@ const kr = {
|
|
|
5726
5763
|
"-webkit-appearance": "none"
|
|
5727
5764
|
}
|
|
5728
5765
|
}
|
|
5729
|
-
},
|
|
5766
|
+
}, $r = {
|
|
5730
5767
|
".cn-toast-wrapper": {
|
|
5731
5768
|
right: "var(--cn-toast-offset-right)",
|
|
5732
5769
|
bottom: "var(--cn-toast-offset-bottom)"
|
|
@@ -5802,9 +5839,9 @@ const kr = {
|
|
|
5802
5839
|
}
|
|
5803
5840
|
}
|
|
5804
5841
|
}
|
|
5805
|
-
},
|
|
5842
|
+
}, Rr = ["xs", "sm", "md"], Ir = () => {
|
|
5806
5843
|
const r = {};
|
|
5807
|
-
return
|
|
5844
|
+
return Rr.forEach((e) => {
|
|
5808
5845
|
r[`&.cn-toggle-${e}.cn-toggle-transparent.cn-toggle-text`] = {
|
|
5809
5846
|
paddingLeft: `var(--cn-btn-px-${e})`,
|
|
5810
5847
|
paddingRight: `var(--cn-btn-px-${e})`,
|
|
@@ -5813,15 +5850,15 @@ const kr = {
|
|
|
5813
5850
|
border: "var(--cn-btn-border) solid transparent"
|
|
5814
5851
|
};
|
|
5815
5852
|
}), r;
|
|
5816
|
-
},
|
|
5853
|
+
}, Tr = {
|
|
5817
5854
|
".cn-toggle": {
|
|
5818
5855
|
transitionDuration: "100ms",
|
|
5819
|
-
...
|
|
5856
|
+
...Ir(),
|
|
5820
5857
|
'&[data-state="on"]': {
|
|
5821
5858
|
color: "var(--cn-text-1)"
|
|
5822
5859
|
}
|
|
5823
5860
|
}
|
|
5824
|
-
},
|
|
5861
|
+
}, Wr = {
|
|
5825
5862
|
".cn-toggle-group": {
|
|
5826
5863
|
gap: "var(--cn-layout-3xs)",
|
|
5827
5864
|
"@apply flex": "",
|
|
@@ -5829,7 +5866,7 @@ const kr = {
|
|
|
5829
5866
|
"@apply flex-col": ""
|
|
5830
5867
|
}
|
|
5831
5868
|
}
|
|
5832
|
-
},
|
|
5869
|
+
}, Br = {
|
|
5833
5870
|
".cn-tooltip": {
|
|
5834
5871
|
minWidth: "var(--cn-tooltip-min)",
|
|
5835
5872
|
maxWidth: "var(--cn-tooltip-max)",
|
|
@@ -5885,7 +5922,7 @@ const kr = {
|
|
|
5885
5922
|
"@apply text-cn-2 font-body-normal": "",
|
|
5886
5923
|
minHeight: "var(--cn-tree-item-height)",
|
|
5887
5924
|
padding: "var(--cn-tree-item-py) var(--cn-tree-item-pr) var(--cn-tree-item-py)"
|
|
5888
|
-
},
|
|
5925
|
+
}, Lr = {
|
|
5889
5926
|
".cn-file-tree": {
|
|
5890
5927
|
"&-base-item": {
|
|
5891
5928
|
...R
|
|
@@ -5931,79 +5968,80 @@ const kr = {
|
|
|
5931
5968
|
}
|
|
5932
5969
|
}
|
|
5933
5970
|
}
|
|
5934
|
-
},
|
|
5971
|
+
}, Hr = [
|
|
5935
5972
|
H,
|
|
5936
5973
|
E,
|
|
5937
5974
|
V,
|
|
5938
5975
|
Z,
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
xe,
|
|
5942
|
-
xr,
|
|
5976
|
+
pe,
|
|
5977
|
+
vr,
|
|
5943
5978
|
fe,
|
|
5979
|
+
fr,
|
|
5980
|
+
ye,
|
|
5944
5981
|
_,
|
|
5945
5982
|
ae,
|
|
5946
5983
|
te,
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5984
|
+
Re,
|
|
5985
|
+
je,
|
|
5986
|
+
de,
|
|
5950
5987
|
re,
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
Oe,
|
|
5988
|
+
hr,
|
|
5989
|
+
ie,
|
|
5990
|
+
$e,
|
|
5955
5991
|
_e,
|
|
5956
5992
|
Xe,
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5993
|
+
Ye,
|
|
5994
|
+
Ie,
|
|
5995
|
+
Br,
|
|
5996
|
+
$r,
|
|
5997
|
+
Je,
|
|
5961
5998
|
N,
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
Ir,
|
|
5999
|
+
ue,
|
|
6000
|
+
Sr,
|
|
6001
|
+
Ue,
|
|
5966
6002
|
Tr,
|
|
6003
|
+
Wr,
|
|
5967
6004
|
ee,
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
pr,
|
|
6005
|
+
Ee,
|
|
6006
|
+
tr,
|
|
6007
|
+
lr,
|
|
5972
6008
|
br,
|
|
5973
|
-
|
|
6009
|
+
gr,
|
|
6010
|
+
Lr,
|
|
6011
|
+
ke,
|
|
5974
6012
|
we,
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
Ne,
|
|
5978
|
-
tr,
|
|
6013
|
+
Oe,
|
|
6014
|
+
Me,
|
|
5979
6015
|
or,
|
|
5980
6016
|
cr,
|
|
5981
6017
|
ir,
|
|
5982
6018
|
dr,
|
|
5983
|
-
|
|
6019
|
+
sr,
|
|
6020
|
+
pr,
|
|
5984
6021
|
// Form styles
|
|
5985
|
-
|
|
5986
|
-
|
|
6022
|
+
Ne,
|
|
6023
|
+
be,
|
|
5987
6024
|
oe,
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
6025
|
+
ce,
|
|
6026
|
+
Pe,
|
|
6027
|
+
Cr,
|
|
6028
|
+
xe,
|
|
5991
6029
|
ne,
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
],
|
|
6030
|
+
ze,
|
|
6031
|
+
zr,
|
|
6032
|
+
ur
|
|
6033
|
+
], Ar = {
|
|
5996
6034
|
content: [],
|
|
5997
6035
|
plugins: [
|
|
5998
6036
|
B(({ addComponents: r }) => {
|
|
5999
|
-
r(
|
|
6037
|
+
r(Hr);
|
|
6000
6038
|
})
|
|
6001
6039
|
]
|
|
6002
|
-
},
|
|
6003
|
-
presets: [
|
|
6040
|
+
}, Er = {
|
|
6041
|
+
presets: [Ar, L],
|
|
6004
6042
|
content: ["./src/**/*.{ts,tsx}"]
|
|
6005
6043
|
};
|
|
6006
6044
|
export {
|
|
6007
|
-
|
|
6045
|
+
Er as default
|
|
6008
6046
|
};
|
|
6009
6047
|
//# sourceMappingURL=tailwind.config.js.map
|