@pandacss/studio 0.3.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/studio.d.mts +13 -0
- package/dist/studio.js +11 -4
- package/dist/studio.mjs +12 -5
- package/package.json +13 -13
- package/styled-system/chunks/src__components__analyzer__category-utilities.css +65 -1
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +29 -0
- package/styled-system/chunks/src__components__analyzer__file-details.css +36 -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 +96 -0
- package/styled-system/chunks/src__components__analyzer__utility-details.css +65 -0
- package/styled-system/chunks/src__components__color-constrast.css +1 -2
- package/styled-system/chunks/src__components__color-wrapper.css +96 -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 +62 -0
- package/styled-system/chunks/src__components__layer-styles.css +26 -0
- package/styled-system/chunks/src__components__nav-item.css +72 -0
- package/styled-system/chunks/src__components__overview.css +25 -1
- package/styled-system/chunks/src__components__side-nav-item.css +24 -0
- package/styled-system/chunks/src__components__side-nav.css +2 -2
- package/styled-system/chunks/src__components__theme-toggle.css +12 -0
- package/styled-system/chunks/src__components__token-analyzer.css +149 -1
- package/styled-system/chunks/src__layouts__Sidebar.css +24 -0
- package/styled-system/css/css.mjs +8 -0
- package/styled-system/global.css +1 -1
- package/styled-system/helpers.mjs +35 -22
- package/styled-system/jsx/is-valid-prop.mjs +18 -2
- package/styled-system/patterns/aspect-ratio.mjs +18 -8
- package/styled-system/patterns/divider.mjs +1 -1
- package/styled-system/styles.css +5 -5
- package/styled-system/tokens/index.css +104 -30
- package/styled-system/tokens/index.mjs +334 -38
- package/styled-system/tokens/tokens.d.ts +8 -5
- package/styled-system/types/pattern.d.ts +1 -1
- package/styled-system/types/prop-type.d.ts +26 -26
- package/styled-system/types/selectors.d.ts +3 -1
- package/styled-system/types/style-props.d.ts +8 -1
- package/styled-system/types/system-types.d.ts +1 -1
- 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.0",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -25,26 +25,26 @@
|
|
|
25
25
|
"author": "Segun Adebayo <joseshegs@gmail.com>",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ark-ui/react": "0.
|
|
28
|
+
"@ark-ui/react": "0.7.0",
|
|
29
29
|
"@astrojs/react": "2.2.1",
|
|
30
|
-
"astro": "2.
|
|
30
|
+
"astro": "2.7.0",
|
|
31
31
|
"javascript-stringify": "2.1.0",
|
|
32
32
|
"react": "18.2.0",
|
|
33
33
|
"react-dom": "18.2.0",
|
|
34
34
|
"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.
|
|
35
|
+
"@pandacss/types": "0.5.0",
|
|
36
|
+
"@pandacss/config": "0.5.0",
|
|
37
|
+
"@pandacss/shared": "0.5.0",
|
|
38
|
+
"@pandacss/token-dictionary": "0.5.0",
|
|
39
|
+
"@pandacss/logger": "0.5.0",
|
|
40
|
+
"@pandacss/node": "0.5.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/react": "18.2.
|
|
44
|
-
"@types/react-dom": "18.2.
|
|
45
|
-
"@vitejs/plugin-react": "4.0.
|
|
43
|
+
"@types/react": "18.2.14",
|
|
44
|
+
"@types/react-dom": "18.2.6",
|
|
45
|
+
"@vitejs/plugin-react": "4.0.1",
|
|
46
46
|
"execa": "7.1.1",
|
|
47
|
-
"@pandacss/dev": "0.
|
|
47
|
+
"@pandacss/dev": "0.5.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"codegen": "panda",
|
|
@@ -1,4 +1,16 @@
|
|
|
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
|
+
|
|
2
14
|
.p_4px_8px {
|
|
3
15
|
padding: 4px 8px;
|
|
4
16
|
}
|
|
@@ -9,12 +21,48 @@
|
|
|
9
21
|
}
|
|
10
22
|
}
|
|
11
23
|
|
|
24
|
+
.hover\:opacity_0\.6 {
|
|
25
|
+
&:where(:hover, [data-hover]) {
|
|
26
|
+
opacity: 0.6;
|
|
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_0\.6 {
|
|
43
|
+
&:where(:hover, [data-hover]) {
|
|
44
|
+
opacity: 0.6;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.hover\:opacity_1 {
|
|
49
|
+
&:where(:hover, [data-hover]) {
|
|
50
|
+
opacity: 1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hover\:border-b_black {
|
|
55
|
+
&:where(:hover, [data-hover]) {
|
|
56
|
+
border-bottom-color: var(--colors-black);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
12
60
|
.list-style_none {
|
|
13
61
|
list-style: none;
|
|
14
62
|
}
|
|
15
63
|
|
|
16
64
|
.p_0 {
|
|
17
|
-
padding: 0;
|
|
65
|
+
padding: var(--spacing-0);
|
|
18
66
|
}
|
|
19
67
|
|
|
20
68
|
.ml_auto {
|
|
@@ -126,4 +174,20 @@
|
|
|
126
174
|
}
|
|
127
175
|
}
|
|
128
176
|
}
|
|
177
|
+
|
|
178
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
179
|
+
& li {
|
|
180
|
+
&:where(:hover, [data-hover]) {
|
|
181
|
+
opacity: 0.8;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
187
|
+
& li {
|
|
188
|
+
&:where(:hover, [data-hover]) {
|
|
189
|
+
opacity: 0.8;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
129
193
|
}
|
|
@@ -3,6 +3,34 @@
|
|
|
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
|
+
.transition_all_\.2s_ease {
|
|
31
|
+
transition: all 0.2s ease;
|
|
32
|
+
}
|
|
33
|
+
|
|
6
34
|
.max-h_300px {
|
|
7
35
|
max-height: 300px;
|
|
8
36
|
}
|
|
@@ -70,6 +98,7 @@
|
|
|
70
98
|
}
|
|
71
99
|
|
|
72
100
|
.select_none {
|
|
101
|
+
-webkit-user-select: none;
|
|
73
102
|
user-select: none;
|
|
74
103
|
}
|
|
75
104
|
|
|
@@ -1,4 +1,40 @@
|
|
|
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
|
+
|
|
2
38
|
.ml_auto {
|
|
3
39
|
margin-left: auto;
|
|
4
40
|
}
|
|
@@ -3,6 +3,102 @@
|
|
|
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
|
+
|
|
6
102
|
.pos_relative {
|
|
7
103
|
position: relative;
|
|
8
104
|
}
|
|
@@ -1,4 +1,16 @@
|
|
|
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
|
+
|
|
2
14
|
.p_4px_8px {
|
|
3
15
|
padding: 4px 8px;
|
|
4
16
|
}
|
|
@@ -9,6 +21,42 @@
|
|
|
9
21
|
}
|
|
10
22
|
}
|
|
11
23
|
|
|
24
|
+
.hover\:opacity_0\.8 {
|
|
25
|
+
&:where(:hover, [data-hover]) {
|
|
26
|
+
opacity: 0.8;
|
|
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_0\.8 {
|
|
43
|
+
&:where(:hover, [data-hover]) {
|
|
44
|
+
opacity: 0.8;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.hover\:opacity_1 {
|
|
49
|
+
&:where(:hover, [data-hover]) {
|
|
50
|
+
opacity: 1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hover\:border-b_black {
|
|
55
|
+
&:where(:hover, [data-hover]) {
|
|
56
|
+
border-bottom-color: var(--colors-black);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
12
60
|
.list-style_none {
|
|
13
61
|
list-style: none;
|
|
14
62
|
}
|
|
@@ -62,6 +110,7 @@
|
|
|
62
110
|
}
|
|
63
111
|
|
|
64
112
|
.select_none {
|
|
113
|
+
-webkit-user-select: none;
|
|
65
114
|
user-select: none;
|
|
66
115
|
}
|
|
67
116
|
|
|
@@ -146,4 +195,20 @@
|
|
|
146
195
|
}
|
|
147
196
|
}
|
|
148
197
|
}
|
|
198
|
+
|
|
199
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
200
|
+
& li {
|
|
201
|
+
&:where(:hover, [data-hover]) {
|
|
202
|
+
opacity: 0.8;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
208
|
+
& li {
|
|
209
|
+
&:where(:hover, [data-hover]) {
|
|
210
|
+
opacity: 0.8;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
149
214
|
}
|
|
@@ -1,4 +1,100 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
|
+
.before\:content_\'\' {
|
|
3
|
+
&::before {
|
|
4
|
+
content: '';
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.before\:pos_absolute {
|
|
9
|
+
&::before {
|
|
10
|
+
position: absolute;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.before\:rounded_sm {
|
|
15
|
+
&::before {
|
|
16
|
+
border-radius: var(--radii-sm);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.before\:w_100\% {
|
|
21
|
+
&::before {
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.before\:h_100\% {
|
|
27
|
+
&::before {
|
|
28
|
+
height: 100%;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.before\:bg_24px {
|
|
33
|
+
&::before {
|
|
34
|
+
background-size: 24px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.before\:z_-1 {
|
|
39
|
+
&::before {
|
|
40
|
+
z-index: -1;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.before\:bg-img_check {
|
|
45
|
+
&::before {
|
|
46
|
+
background-image: var(--assets-check);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.before\:content_\'\' {
|
|
51
|
+
&::before {
|
|
52
|
+
content: '';
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.before\:pos_absolute {
|
|
57
|
+
&::before {
|
|
58
|
+
position: absolute;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.before\:rounded_sm {
|
|
63
|
+
&::before {
|
|
64
|
+
border-radius: var(--radii-sm);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.before\:w_100\% {
|
|
69
|
+
&::before {
|
|
70
|
+
width: 100%;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.before\:h_100\% {
|
|
75
|
+
&::before {
|
|
76
|
+
height: 100%;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.before\:bg_24px {
|
|
81
|
+
&::before {
|
|
82
|
+
background-size: 24px;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.before\:z_-1 {
|
|
87
|
+
&::before {
|
|
88
|
+
z-index: -1;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.before\:bg-img_check {
|
|
93
|
+
&::before {
|
|
94
|
+
background-image: var(--assets-check);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
2
98
|
.w_full {
|
|
3
99
|
width: var(--sizes-full);
|
|
4
100
|
}
|