@pandacss/studio 0.4.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{astro.config.ts → astro.config.mjs} +1 -1
- package/dist/studio.d.mts +13 -0
- package/dist/studio.js +11 -4
- package/dist/studio.mjs +12 -5
- package/package.json +15 -14
- package/styled-system/chunks/src__components__analyzer__category-utilities.css +97 -1
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +41 -0
- package/styled-system/chunks/src__components__analyzer__file-details.css +54 -0
- package/styled-system/chunks/src__components__analyzer__report-item-columns.css +1 -0
- package/styled-system/chunks/src__components__analyzer__report-item-link.css +144 -0
- package/styled-system/chunks/src__components__analyzer__utility-details.css +97 -0
- package/styled-system/chunks/src__components__color-constrast.css +1 -2
- package/styled-system/chunks/src__components__color-wrapper.css +144 -0
- package/styled-system/chunks/src__components__colors.css +2 -2
- package/styled-system/chunks/src__components__font-tokens.css +1 -1
- package/styled-system/chunks/src__components__input.css +93 -0
- package/styled-system/chunks/src__components__layer-styles.css +39 -0
- package/styled-system/chunks/src__components__nav-item.css +108 -0
- package/styled-system/chunks/src__components__overview.css +37 -1
- package/styled-system/chunks/src__components__side-nav-item.css +36 -0
- package/styled-system/chunks/src__components__side-nav.css +2 -2
- package/styled-system/chunks/src__components__theme-toggle.css +18 -0
- package/styled-system/chunks/src__components__token-analyzer.css +223 -1
- package/styled-system/chunks/src__layouts__Sidebar.css +36 -0
- package/styled-system/css/cva.mjs +1 -1
- package/styled-system/helpers.mjs +40 -23
- package/styled-system/styles.css +7 -268
- package/styled-system/tokens/index.css +101 -30
- package/styled-system/tokens/index.mjs +322 -38
- package/styled-system/tokens/tokens.d.ts +3 -3
- package/styled-system/types/pattern.d.ts +1 -1
- package/styled-system/types/prop-type.d.ts +1 -1
- package/styled-system/types/system-types.d.ts +1 -1
- package/{virtual-panda.ts → virtual-panda.mjs} +9 -5
- package/styled-system/chunks/..__core____tests____atomic-rule.test.css +0 -363
- package/styled-system/chunks/src__components__analyzer__quick-tooltip.css +0 -2
- package/styled-system/chunks/src__components__analyzer__token-search-combobox.css +0 -2
- package/styled-system/chunks/src__layouts__Layout.css +0 -2
- package/styled-system/chunks/src__pages__colors.css +0 -2
- package/styled-system/chunks/src__pages__font-sizes.css +0 -2
- package/styled-system/chunks/src__pages__font-weights.css +0 -2
- package/styled-system/chunks/src__pages__fonts.css +0 -2
- package/styled-system/chunks/src__pages__index.css +0 -2
- package/styled-system/chunks/src__pages__layer-styles.css +0 -2
- package/styled-system/chunks/src__pages__letter-spacings.css +0 -2
- package/styled-system/chunks/src__pages__line-heights.css +0 -2
- package/styled-system/chunks/src__pages__playground__contrast-checker.css +0 -2
- package/styled-system/chunks/src__pages__playground__typography.css +0 -2
- package/styled-system/chunks/src__pages__radii.css +0 -2
- package/styled-system/chunks/src__pages__sizes.css +0 -2
- package/styled-system/chunks/src__pages__spacing.css +0 -2
- package/styled-system/chunks/src__pages__text-styles.css +0 -2
- package/styled-system/chunks/src__pages__token-analyzer__file.css +0 -2
- package/styled-system/chunks/src__pages__token-analyzer__index.css +0 -2
- package/styled-system/chunks/src__pages__token-analyzer__utility.css +0 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type BuildOpts = {
|
|
2
|
+
outDir: string;
|
|
3
|
+
};
|
|
4
|
+
declare function buildStudio({ outDir }: BuildOpts): Promise<void>;
|
|
5
|
+
declare function serveStudio(): Promise<void>;
|
|
6
|
+
declare function previewStudio({ outDir }: BuildOpts): Promise<void>;
|
|
7
|
+
declare function printUrls(options: {
|
|
8
|
+
host: string;
|
|
9
|
+
port: number;
|
|
10
|
+
https: boolean;
|
|
11
|
+
}): void;
|
|
12
|
+
|
|
13
|
+
export { BuildOpts, buildStudio, previewStudio, printUrls, serveStudio };
|
package/dist/studio.js
CHANGED
|
@@ -33,15 +33,17 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
33
33
|
));
|
|
34
34
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
35
|
|
|
36
|
-
// ../../node_modules/.pnpm/tsup@
|
|
36
|
+
// ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.24_typescript@5.1.3/node_modules/tsup/assets/cjs_shims.js
|
|
37
37
|
var init_cjs_shims = __esm({
|
|
38
|
-
"../../node_modules/.pnpm/tsup@
|
|
38
|
+
"../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.24_typescript@5.1.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
39
|
+
"use strict";
|
|
39
40
|
}
|
|
40
41
|
});
|
|
41
42
|
|
|
42
43
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js
|
|
43
44
|
var require_windows = __commonJS({
|
|
44
45
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js"(exports, module2) {
|
|
46
|
+
"use strict";
|
|
45
47
|
init_cjs_shims();
|
|
46
48
|
module2.exports = isexe;
|
|
47
49
|
isexe.sync = sync;
|
|
@@ -83,6 +85,7 @@ var require_windows = __commonJS({
|
|
|
83
85
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/mode.js
|
|
84
86
|
var require_mode = __commonJS({
|
|
85
87
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/mode.js"(exports, module2) {
|
|
88
|
+
"use strict";
|
|
86
89
|
init_cjs_shims();
|
|
87
90
|
module2.exports = isexe;
|
|
88
91
|
isexe.sync = sync;
|
|
@@ -117,6 +120,7 @@ var require_mode = __commonJS({
|
|
|
117
120
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/index.js
|
|
118
121
|
var require_isexe = __commonJS({
|
|
119
122
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/index.js"(exports, module2) {
|
|
123
|
+
"use strict";
|
|
120
124
|
init_cjs_shims();
|
|
121
125
|
var fs = require("fs");
|
|
122
126
|
var core;
|
|
@@ -173,6 +177,7 @@ var require_isexe = __commonJS({
|
|
|
173
177
|
// ../../node_modules/.pnpm/which@2.0.2/node_modules/which/which.js
|
|
174
178
|
var require_which = __commonJS({
|
|
175
179
|
"../../node_modules/.pnpm/which@2.0.2/node_modules/which/which.js"(exports, module2) {
|
|
180
|
+
"use strict";
|
|
176
181
|
init_cjs_shims();
|
|
177
182
|
var isWindows = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
|
178
183
|
var path3 = require("path");
|
|
@@ -552,6 +557,7 @@ var require_cross_spawn = __commonJS({
|
|
|
552
557
|
// ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js
|
|
553
558
|
var require_signals = __commonJS({
|
|
554
559
|
"../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js"(exports, module2) {
|
|
560
|
+
"use strict";
|
|
555
561
|
init_cjs_shims();
|
|
556
562
|
module2.exports = [
|
|
557
563
|
"SIGABRT",
|
|
@@ -590,6 +596,7 @@ var require_signals = __commonJS({
|
|
|
590
596
|
// ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js
|
|
591
597
|
var require_signal_exit = __commonJS({
|
|
592
598
|
"../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js"(exports, module2) {
|
|
599
|
+
"use strict";
|
|
593
600
|
init_cjs_shims();
|
|
594
601
|
var process5 = global.process;
|
|
595
602
|
var processOk = function(process6) {
|
|
@@ -1730,8 +1737,8 @@ var getSpawnedResult = async ({ stdout, stderr, all }, { encoding, buffer, maxBu
|
|
|
1730
1737
|
|
|
1731
1738
|
// ../../node_modules/.pnpm/execa@7.1.1/node_modules/execa/lib/promise.js
|
|
1732
1739
|
init_cjs_shims();
|
|
1733
|
-
var nativePromisePrototype = (async () => {
|
|
1734
|
-
})().constructor.prototype;
|
|
1740
|
+
var nativePromisePrototype = (/* @__PURE__ */ (async () => {
|
|
1741
|
+
})()).constructor.prototype;
|
|
1735
1742
|
var descriptors = ["then", "catch", "finally"].map((property) => [
|
|
1736
1743
|
property,
|
|
1737
1744
|
Reflect.getOwnPropertyDescriptor(nativePromisePrototype, property)
|
package/dist/studio.mjs
CHANGED
|
@@ -9,7 +9,7 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
9
9
|
}) : x)(function(x) {
|
|
10
10
|
if (typeof require !== "undefined")
|
|
11
11
|
return require.apply(this, arguments);
|
|
12
|
-
throw
|
|
12
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
13
13
|
});
|
|
14
14
|
var __esm = (fn, res) => function __init() {
|
|
15
15
|
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
@@ -34,12 +34,13 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
34
34
|
mod
|
|
35
35
|
));
|
|
36
36
|
|
|
37
|
-
// ../../node_modules/.pnpm/tsup@
|
|
37
|
+
// ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.24_typescript@5.1.3/node_modules/tsup/assets/esm_shims.js
|
|
38
38
|
import { fileURLToPath } from "url";
|
|
39
39
|
import path from "path";
|
|
40
40
|
var getFilename, getDirname, __dirname;
|
|
41
41
|
var init_esm_shims = __esm({
|
|
42
|
-
"../../node_modules/.pnpm/tsup@
|
|
42
|
+
"../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.24_typescript@5.1.3/node_modules/tsup/assets/esm_shims.js"() {
|
|
43
|
+
"use strict";
|
|
43
44
|
getFilename = () => fileURLToPath(import.meta.url);
|
|
44
45
|
getDirname = () => path.dirname(getFilename());
|
|
45
46
|
__dirname = /* @__PURE__ */ getDirname();
|
|
@@ -49,6 +50,7 @@ var init_esm_shims = __esm({
|
|
|
49
50
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js
|
|
50
51
|
var require_windows = __commonJS({
|
|
51
52
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js"(exports, module) {
|
|
53
|
+
"use strict";
|
|
52
54
|
init_esm_shims();
|
|
53
55
|
module.exports = isexe;
|
|
54
56
|
isexe.sync = sync;
|
|
@@ -90,6 +92,7 @@ var require_windows = __commonJS({
|
|
|
90
92
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/mode.js
|
|
91
93
|
var require_mode = __commonJS({
|
|
92
94
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/mode.js"(exports, module) {
|
|
95
|
+
"use strict";
|
|
93
96
|
init_esm_shims();
|
|
94
97
|
module.exports = isexe;
|
|
95
98
|
isexe.sync = sync;
|
|
@@ -124,6 +127,7 @@ var require_mode = __commonJS({
|
|
|
124
127
|
// ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/index.js
|
|
125
128
|
var require_isexe = __commonJS({
|
|
126
129
|
"../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/index.js"(exports, module) {
|
|
130
|
+
"use strict";
|
|
127
131
|
init_esm_shims();
|
|
128
132
|
var fs = __require("fs");
|
|
129
133
|
var core;
|
|
@@ -180,6 +184,7 @@ var require_isexe = __commonJS({
|
|
|
180
184
|
// ../../node_modules/.pnpm/which@2.0.2/node_modules/which/which.js
|
|
181
185
|
var require_which = __commonJS({
|
|
182
186
|
"../../node_modules/.pnpm/which@2.0.2/node_modules/which/which.js"(exports, module) {
|
|
187
|
+
"use strict";
|
|
183
188
|
init_esm_shims();
|
|
184
189
|
var isWindows = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
|
185
190
|
var path4 = __require("path");
|
|
@@ -559,6 +564,7 @@ var require_cross_spawn = __commonJS({
|
|
|
559
564
|
// ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js
|
|
560
565
|
var require_signals = __commonJS({
|
|
561
566
|
"../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js"(exports, module) {
|
|
567
|
+
"use strict";
|
|
562
568
|
init_esm_shims();
|
|
563
569
|
module.exports = [
|
|
564
570
|
"SIGABRT",
|
|
@@ -597,6 +603,7 @@ var require_signals = __commonJS({
|
|
|
597
603
|
// ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js
|
|
598
604
|
var require_signal_exit = __commonJS({
|
|
599
605
|
"../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js"(exports, module) {
|
|
606
|
+
"use strict";
|
|
600
607
|
init_esm_shims();
|
|
601
608
|
var process5 = global.process;
|
|
602
609
|
var processOk = function(process6) {
|
|
@@ -1729,8 +1736,8 @@ var getSpawnedResult = async ({ stdout, stderr, all }, { encoding, buffer, maxBu
|
|
|
1729
1736
|
|
|
1730
1737
|
// ../../node_modules/.pnpm/execa@7.1.1/node_modules/execa/lib/promise.js
|
|
1731
1738
|
init_esm_shims();
|
|
1732
|
-
var nativePromisePrototype = (async () => {
|
|
1733
|
-
})().constructor.prototype;
|
|
1739
|
+
var nativePromisePrototype = (/* @__PURE__ */ (async () => {
|
|
1740
|
+
})()).constructor.prototype;
|
|
1734
1741
|
var descriptors = ["then", "catch", "finally"].map((property) => [
|
|
1735
1742
|
property,
|
|
1736
1743
|
Reflect.getOwnPropertyDescriptor(nativePromisePrototype, property)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"src",
|
|
15
15
|
"public",
|
|
16
16
|
"styled-system",
|
|
17
|
-
"*.ts"
|
|
17
|
+
"*.ts",
|
|
18
|
+
"*.mjs"
|
|
18
19
|
],
|
|
19
20
|
"keywords": [
|
|
20
21
|
"panda",
|
|
@@ -25,26 +26,26 @@
|
|
|
25
26
|
"author": "Segun Adebayo <joseshegs@gmail.com>",
|
|
26
27
|
"license": "MIT",
|
|
27
28
|
"dependencies": {
|
|
28
|
-
"@ark-ui/react": "0.
|
|
29
|
+
"@ark-ui/react": "0.7.2",
|
|
29
30
|
"@astrojs/react": "2.2.1",
|
|
30
|
-
"astro": "2.
|
|
31
|
+
"astro": "2.7.2",
|
|
31
32
|
"javascript-stringify": "2.1.0",
|
|
32
33
|
"react": "18.2.0",
|
|
33
34
|
"react-dom": "18.2.0",
|
|
34
35
|
"vite": "4.3.9",
|
|
35
|
-
"@pandacss/types": "0.
|
|
36
|
-
"@pandacss/config": "0.
|
|
37
|
-
"@pandacss/shared": "0.
|
|
38
|
-
"@pandacss/token-dictionary": "0.
|
|
39
|
-
"@pandacss/logger": "0.
|
|
40
|
-
"@pandacss/node": "0.
|
|
36
|
+
"@pandacss/types": "0.5.1",
|
|
37
|
+
"@pandacss/config": "0.5.1",
|
|
38
|
+
"@pandacss/shared": "0.5.1",
|
|
39
|
+
"@pandacss/token-dictionary": "0.5.1",
|
|
40
|
+
"@pandacss/logger": "0.5.1",
|
|
41
|
+
"@pandacss/node": "0.5.1"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
|
-
"@types/react": "18.2.
|
|
44
|
-
"@types/react-dom": "18.2.
|
|
45
|
-
"@vitejs/plugin-react": "4.0.
|
|
44
|
+
"@types/react": "18.2.14",
|
|
45
|
+
"@types/react-dom": "18.2.6",
|
|
46
|
+
"@vitejs/plugin-react": "4.0.1",
|
|
46
47
|
"execa": "7.1.1",
|
|
47
|
-
"@pandacss/dev": "0.
|
|
48
|
+
"@pandacss/dev": "0.5.1"
|
|
48
49
|
},
|
|
49
50
|
"scripts": {
|
|
50
51
|
"codegen": "panda",
|
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
|
+
.\[\&_li\]\:cursor_pointer {
|
|
3
|
+
& li {
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.\[\&_li\]\:cursor_pointer {
|
|
9
|
+
& li {
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.\[\&_li\]\:cursor_pointer {
|
|
15
|
+
& li {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
2
20
|
.p_4px_8px {
|
|
3
21
|
padding: 4px 8px;
|
|
4
22
|
}
|
|
@@ -9,12 +27,66 @@
|
|
|
9
27
|
}
|
|
10
28
|
}
|
|
11
29
|
|
|
30
|
+
.hover\:opacity_0\.6 {
|
|
31
|
+
&:where(:hover, [data-hover]) {
|
|
32
|
+
opacity: 0.6;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.hover\:opacity_1 {
|
|
37
|
+
&:where(:hover, [data-hover]) {
|
|
38
|
+
opacity: 1;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.hover\:border-b_black {
|
|
43
|
+
&:where(:hover, [data-hover]) {
|
|
44
|
+
border-bottom-color: var(--colors-black);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.hover\:opacity_0\.6 {
|
|
49
|
+
&:where(:hover, [data-hover]) {
|
|
50
|
+
opacity: 0.6;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hover\:opacity_1 {
|
|
55
|
+
&:where(:hover, [data-hover]) {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.hover\:border-b_black {
|
|
61
|
+
&:where(:hover, [data-hover]) {
|
|
62
|
+
border-bottom-color: var(--colors-black);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.hover\:opacity_0\.6 {
|
|
67
|
+
&:where(:hover, [data-hover]) {
|
|
68
|
+
opacity: 0.6;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.hover\:opacity_1 {
|
|
73
|
+
&:where(:hover, [data-hover]) {
|
|
74
|
+
opacity: 1;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.hover\:border-b_black {
|
|
79
|
+
&:where(:hover, [data-hover]) {
|
|
80
|
+
border-bottom-color: var(--colors-black);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
12
84
|
.list-style_none {
|
|
13
85
|
list-style: none;
|
|
14
86
|
}
|
|
15
87
|
|
|
16
88
|
.p_0 {
|
|
17
|
-
padding: 0;
|
|
89
|
+
padding: var(--spacing-0);
|
|
18
90
|
}
|
|
19
91
|
|
|
20
92
|
.ml_auto {
|
|
@@ -126,4 +198,28 @@
|
|
|
126
198
|
}
|
|
127
199
|
}
|
|
128
200
|
}
|
|
201
|
+
|
|
202
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
203
|
+
& li {
|
|
204
|
+
&:where(:hover, [data-hover]) {
|
|
205
|
+
opacity: 0.8;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
211
|
+
& li {
|
|
212
|
+
&:where(:hover, [data-hover]) {
|
|
213
|
+
opacity: 0.8;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
219
|
+
& li {
|
|
220
|
+
&:where(:hover, [data-hover]) {
|
|
221
|
+
opacity: 0.8;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
129
225
|
}
|
|
@@ -3,6 +3,46 @@
|
|
|
3
3
|
margin: var(--spacing-4);
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
.highlighted\:bg_border {
|
|
7
|
+
&[data-highlighted] {
|
|
8
|
+
background: var(--colors-border);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.expanded\:transform_rotate\(180deg\) {
|
|
13
|
+
&:where([aria-expanded='true'], [data-expanded]) {
|
|
14
|
+
transform: rotate(180deg);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.highlighted\:bg_border {
|
|
19
|
+
&[data-highlighted] {
|
|
20
|
+
background: var(--colors-border);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.expanded\:transform_rotate\(180deg\) {
|
|
25
|
+
&:where([aria-expanded='true'], [data-expanded]) {
|
|
26
|
+
transform: rotate(180deg);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.highlighted\:bg_border {
|
|
31
|
+
&[data-highlighted] {
|
|
32
|
+
background: var(--colors-border);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.expanded\:transform_rotate\(180deg\) {
|
|
37
|
+
&:where([aria-expanded='true'], [data-expanded]) {
|
|
38
|
+
transform: rotate(180deg);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.transition_all_\.2s_ease {
|
|
43
|
+
transition: all 0.2s ease;
|
|
44
|
+
}
|
|
45
|
+
|
|
6
46
|
.max-h_300px {
|
|
7
47
|
max-height: 300px;
|
|
8
48
|
}
|
|
@@ -70,6 +110,7 @@
|
|
|
70
110
|
}
|
|
71
111
|
|
|
72
112
|
.select_none {
|
|
113
|
+
-webkit-user-select: none;
|
|
73
114
|
user-select: none;
|
|
74
115
|
}
|
|
75
116
|
|
|
@@ -1,4 +1,58 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
|
+
.hover\:bg_gray\.100 {
|
|
3
|
+
&:where(:hover, [data-hover]) {
|
|
4
|
+
background-color: var(--colors-gray-100);
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.hover\:opacity_1 {
|
|
9
|
+
&:where(:hover, [data-hover]) {
|
|
10
|
+
opacity: 1;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.hover\:border-b_black {
|
|
15
|
+
&:where(:hover, [data-hover]) {
|
|
16
|
+
border-bottom-color: var(--colors-black);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.hover\:bg_gray\.100 {
|
|
21
|
+
&:where(:hover, [data-hover]) {
|
|
22
|
+
background-color: var(--colors-gray-100);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.hover\:opacity_1 {
|
|
27
|
+
&:where(:hover, [data-hover]) {
|
|
28
|
+
opacity: 1;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.hover\:border-b_black {
|
|
33
|
+
&:where(:hover, [data-hover]) {
|
|
34
|
+
border-bottom-color: var(--colors-black);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.hover\:bg_gray\.100 {
|
|
39
|
+
&:where(:hover, [data-hover]) {
|
|
40
|
+
background-color: var(--colors-gray-100);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.hover\:opacity_1 {
|
|
45
|
+
&:where(:hover, [data-hover]) {
|
|
46
|
+
opacity: 1;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.hover\:border-b_black {
|
|
51
|
+
&:where(:hover, [data-hover]) {
|
|
52
|
+
border-bottom-color: var(--colors-black);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
2
56
|
.ml_auto {
|
|
3
57
|
margin-left: auto;
|
|
4
58
|
}
|
|
@@ -3,6 +3,150 @@
|
|
|
3
3
|
display: flex;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
.hover\:opacity_1 {
|
|
7
|
+
&:where(:hover, [data-hover]) {
|
|
8
|
+
opacity: 1;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.hover\:border-b_black {
|
|
13
|
+
&:where(:hover, [data-hover]) {
|
|
14
|
+
border-bottom-color: var(--colors-black);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.hover\:opacity_1 {
|
|
19
|
+
&:where(:hover, [data-hover]) {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.hover\:border-b_black {
|
|
25
|
+
&:where(:hover, [data-hover]) {
|
|
26
|
+
border-bottom-color: var(--colors-black);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.hover\:opacity_1 {
|
|
31
|
+
&:where(:hover, [data-hover]) {
|
|
32
|
+
opacity: 1;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.hover\:border-b_black {
|
|
37
|
+
&:where(:hover, [data-hover]) {
|
|
38
|
+
border-bottom-color: var(--colors-black);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.hover\:opacity_1 {
|
|
43
|
+
&:where(:hover, [data-hover]) {
|
|
44
|
+
opacity: 1;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.hover\:border-b_black {
|
|
49
|
+
&:where(:hover, [data-hover]) {
|
|
50
|
+
border-bottom-color: var(--colors-black);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hover\:opacity_1 {
|
|
55
|
+
&:where(:hover, [data-hover]) {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.hover\:border-b_black {
|
|
61
|
+
&:where(:hover, [data-hover]) {
|
|
62
|
+
border-bottom-color: var(--colors-black);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.hover\:opacity_1 {
|
|
67
|
+
&:where(:hover, [data-hover]) {
|
|
68
|
+
opacity: 1;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.hover\:border-b_black {
|
|
73
|
+
&:where(:hover, [data-hover]) {
|
|
74
|
+
border-bottom-color: var(--colors-black);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.hover\:opacity_1 {
|
|
79
|
+
&:where(:hover, [data-hover]) {
|
|
80
|
+
opacity: 1;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.hover\:border-b_black {
|
|
85
|
+
&:where(:hover, [data-hover]) {
|
|
86
|
+
border-bottom-color: var(--colors-black);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.hover\:opacity_1 {
|
|
91
|
+
&:where(:hover, [data-hover]) {
|
|
92
|
+
opacity: 1;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.hover\:border-b_black {
|
|
97
|
+
&:where(:hover, [data-hover]) {
|
|
98
|
+
border-bottom-color: var(--colors-black);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.hover\:opacity_1 {
|
|
103
|
+
&:where(:hover, [data-hover]) {
|
|
104
|
+
opacity: 1;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.hover\:border-b_black {
|
|
109
|
+
&:where(:hover, [data-hover]) {
|
|
110
|
+
border-bottom-color: var(--colors-black);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.hover\:opacity_1 {
|
|
115
|
+
&:where(:hover, [data-hover]) {
|
|
116
|
+
opacity: 1;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.hover\:border-b_black {
|
|
121
|
+
&:where(:hover, [data-hover]) {
|
|
122
|
+
border-bottom-color: var(--colors-black);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.hover\:opacity_1 {
|
|
127
|
+
&:where(:hover, [data-hover]) {
|
|
128
|
+
opacity: 1;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.hover\:border-b_black {
|
|
133
|
+
&:where(:hover, [data-hover]) {
|
|
134
|
+
border-bottom-color: var(--colors-black);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.hover\:opacity_1 {
|
|
139
|
+
&:where(:hover, [data-hover]) {
|
|
140
|
+
opacity: 1;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.hover\:border-b_black {
|
|
145
|
+
&:where(:hover, [data-hover]) {
|
|
146
|
+
border-bottom-color: var(--colors-black);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
6
150
|
.pos_relative {
|
|
7
151
|
position: relative;
|
|
8
152
|
}
|