@techsio/ui-kit 0.11.0 → 0.12.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/organisms/footer.figma.js +51 -0
- package/dist/organisms/footer.js +11 -11
- package/dist/organisms/gallery.figma.js +34 -0
- package/dist/organisms/header.figma.js +58 -0
- package/dist/organisms/table.figma.js +87 -0
- package/dist/organisms/table.js +6 -6
- package/dist/src/organisms/footer.d.ts.map +1 -1
- package/dist/src/organisms/footer.figma.d.ts +2 -0
- package/dist/src/organisms/footer.figma.d.ts.map +1 -0
- package/dist/src/organisms/gallery.figma.d.ts +2 -0
- package/dist/src/organisms/gallery.figma.d.ts.map +1 -0
- package/dist/src/organisms/header.figma.d.ts +2 -0
- package/dist/src/organisms/header.figma.d.ts.map +1 -0
- package/dist/src/organisms/table.figma.d.ts +2 -0
- package/dist/src/organisms/table.figma.d.ts.map +1 -0
- package/package.json +22 -22
- package/src/tokens/components/organisms/_footer.css +8 -82
- package/src/tokens/components/organisms/_gallery.css +11 -33
- package/src/tokens/components/organisms/_header.css +11 -80
- package/src/tokens/components/organisms/_table.css +15 -61
- package/src/tokens/figma/dark/variables.css +10 -6
- package/src/tokens/figma/light/variables.css +10 -6
- package/src/tokens/figma/variables.css +9 -5
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import code_connect from "@figma/code-connect";
|
|
3
|
+
import { Footer } from "./footer.js";
|
|
4
|
+
code_connect.connect(Footer, "https://www.figma.com/design/12xb1pqXKwE2vbOByN3ntg/New-Design-System-vol.-2?node-id=1372-161", {
|
|
5
|
+
imports: [
|
|
6
|
+
'import { Footer } from "@libs/ui/organisms/footer"'
|
|
7
|
+
],
|
|
8
|
+
props: {
|
|
9
|
+
size: code_connect["enum"]("size", {
|
|
10
|
+
sm: "sm",
|
|
11
|
+
md: "md",
|
|
12
|
+
lg: "lg"
|
|
13
|
+
})
|
|
14
|
+
},
|
|
15
|
+
example: ({ size })=>/*#__PURE__*/ jsxs(Footer, {
|
|
16
|
+
size: size,
|
|
17
|
+
children: [
|
|
18
|
+
/*#__PURE__*/ jsx(Footer.Container, {
|
|
19
|
+
children: /*#__PURE__*/ jsxs(Footer.Section, {
|
|
20
|
+
children: [
|
|
21
|
+
/*#__PURE__*/ jsx(Footer.Title, {
|
|
22
|
+
children: "Shop"
|
|
23
|
+
}),
|
|
24
|
+
/*#__PURE__*/ jsxs(Footer.List, {
|
|
25
|
+
children: [
|
|
26
|
+
/*#__PURE__*/ jsx("li", {
|
|
27
|
+
children: /*#__PURE__*/ jsx(Footer.Link, {
|
|
28
|
+
href: "/new",
|
|
29
|
+
children: "New arrivals"
|
|
30
|
+
})
|
|
31
|
+
}),
|
|
32
|
+
/*#__PURE__*/ jsx("li", {
|
|
33
|
+
children: /*#__PURE__*/ jsx(Footer.Link, {
|
|
34
|
+
href: "/sale",
|
|
35
|
+
children: "Sale"
|
|
36
|
+
})
|
|
37
|
+
})
|
|
38
|
+
]
|
|
39
|
+
})
|
|
40
|
+
]
|
|
41
|
+
})
|
|
42
|
+
}),
|
|
43
|
+
/*#__PURE__*/ jsx(Footer.Divider, {}),
|
|
44
|
+
/*#__PURE__*/ jsx(Footer.Bottom, {
|
|
45
|
+
children: /*#__PURE__*/ jsx(Footer.Text, {
|
|
46
|
+
children: "\xa9 2026 Acme, Inc."
|
|
47
|
+
})
|
|
48
|
+
})
|
|
49
|
+
]
|
|
50
|
+
})
|
|
51
|
+
});
|
package/dist/organisms/footer.js
CHANGED
|
@@ -7,8 +7,8 @@ const footerVariants = tv({
|
|
|
7
7
|
root: "flex w-full items-center justify-center rounded-footer bg-footer-bg",
|
|
8
8
|
container: "w-full max-w-footer-max bg-footer-container-bg",
|
|
9
9
|
section: "bg-footer-section-bg",
|
|
10
|
-
list: "flex list-none flex-col gap-footer-list
|
|
11
|
-
bottom: "flex w-full items-center justify-between border-t-(
|
|
10
|
+
list: "flex list-none flex-col gap-footer-list bg-footer-list-bg",
|
|
11
|
+
bottom: "flex w-full items-center justify-between border-t-(length:--border-footer-width) bg-footer-bottom-bg pt-footer-bottom",
|
|
12
12
|
title: "font-footer-title text-footer-title-fg transition-footer-title hover:text-footer-title-fg-hover",
|
|
13
13
|
link: "font-footer-link text-footer-link-fg transition-footer-link hover:text-footer-link-fg-hover",
|
|
14
14
|
text: "text-footer-text-fg",
|
|
@@ -41,35 +41,35 @@ const footerVariants = tv({
|
|
|
41
41
|
},
|
|
42
42
|
size: {
|
|
43
43
|
sm: {
|
|
44
|
-
root: "p-footer-
|
|
44
|
+
root: "p-footer-sm",
|
|
45
45
|
container: "gap-footer-container-sm",
|
|
46
46
|
section: "gap-footer-section-sm",
|
|
47
|
-
list: "gap-footer-
|
|
47
|
+
list: "gap-footer-sm",
|
|
48
48
|
title: "text-footer-title-sm",
|
|
49
49
|
link: "text-footer-link-sm",
|
|
50
|
-
text: "text-footer-
|
|
50
|
+
text: "text-footer-sm",
|
|
51
51
|
bottom: "p-footer-bottom-sm",
|
|
52
52
|
divider: "my-footer-divider-sm"
|
|
53
53
|
},
|
|
54
54
|
md: {
|
|
55
|
-
root: "p-footer-
|
|
55
|
+
root: "p-footer-md",
|
|
56
56
|
container: "gap-footer-container-md",
|
|
57
57
|
section: "gap-footer-section-md",
|
|
58
|
-
list: "gap-footer-
|
|
58
|
+
list: "gap-footer-md",
|
|
59
59
|
title: "text-footer-title-md",
|
|
60
60
|
link: "text-footer-link-md",
|
|
61
|
-
text: "text-footer-
|
|
61
|
+
text: "text-footer-md",
|
|
62
62
|
bottom: "p-footer-bottom-md",
|
|
63
63
|
divider: "my-footer-divider-md"
|
|
64
64
|
},
|
|
65
65
|
lg: {
|
|
66
|
-
root: "p-footer-
|
|
66
|
+
root: "p-footer-lg",
|
|
67
67
|
container: "gap-footer-container-lg",
|
|
68
68
|
section: "gap-footer-section-lg",
|
|
69
|
-
list: "gap-footer-
|
|
69
|
+
list: "gap-footer-lg",
|
|
70
70
|
title: "text-footer-title-lg",
|
|
71
71
|
link: "text-footer-link-lg",
|
|
72
|
-
text: "text-footer-
|
|
72
|
+
text: "text-footer-lg",
|
|
73
73
|
bottom: "p-footer-bottom-lg",
|
|
74
74
|
divider: "my-footer-divider-lg"
|
|
75
75
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import code_connect from "@figma/code-connect";
|
|
3
|
+
import { Gallery } from "./gallery.js";
|
|
4
|
+
code_connect.connect(Gallery, "https://www.figma.com/design/12xb1pqXKwE2vbOByN3ntg/New-Design-System-vol.-2?node-id=1392-68", {
|
|
5
|
+
imports: [
|
|
6
|
+
'import { Gallery } from "@libs/ui/organisms/gallery"'
|
|
7
|
+
],
|
|
8
|
+
props: {
|
|
9
|
+
orientation: code_connect["enum"]("orientation", {
|
|
10
|
+
vertical: "vertical",
|
|
11
|
+
horizontal: "horizontal"
|
|
12
|
+
})
|
|
13
|
+
},
|
|
14
|
+
example: ({ orientation })=>/*#__PURE__*/ jsx(Gallery, {
|
|
15
|
+
items: [
|
|
16
|
+
{
|
|
17
|
+
id: "1",
|
|
18
|
+
src: "/product-1.jpg",
|
|
19
|
+
alt: "Product front"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
id: "2",
|
|
23
|
+
src: "/product-2.jpg",
|
|
24
|
+
alt: "Product side"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
id: "3",
|
|
28
|
+
src: "/product-3.jpg",
|
|
29
|
+
alt: "Product detail"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
orientation: orientation
|
|
33
|
+
})
|
|
34
|
+
});
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import code_connect from "@figma/code-connect";
|
|
3
|
+
import { Header } from "./header.js";
|
|
4
|
+
code_connect.connect(Header, "https://www.figma.com/design/12xb1pqXKwE2vbOByN3ntg/New-Design-System-vol.-2?node-id=1391-225", {
|
|
5
|
+
imports: [
|
|
6
|
+
'import { Header } from "@libs/ui/organisms/header"'
|
|
7
|
+
],
|
|
8
|
+
props: {
|
|
9
|
+
size: code_connect["enum"]("size", {
|
|
10
|
+
sm: "sm",
|
|
11
|
+
md: "md",
|
|
12
|
+
lg: "lg"
|
|
13
|
+
})
|
|
14
|
+
},
|
|
15
|
+
example: ({ size })=>/*#__PURE__*/ jsxs(Header, {
|
|
16
|
+
size: size,
|
|
17
|
+
children: [
|
|
18
|
+
/*#__PURE__*/ jsxs(Header.Desktop, {
|
|
19
|
+
children: [
|
|
20
|
+
/*#__PURE__*/ jsx(Header.Container, {
|
|
21
|
+
position: "start",
|
|
22
|
+
children: "Logo"
|
|
23
|
+
}),
|
|
24
|
+
/*#__PURE__*/ jsxs(Header.Nav, {
|
|
25
|
+
children: [
|
|
26
|
+
/*#__PURE__*/ jsx(Header.NavItem, {
|
|
27
|
+
active: true,
|
|
28
|
+
children: "Home"
|
|
29
|
+
}),
|
|
30
|
+
/*#__PURE__*/ jsx(Header.NavItem, {
|
|
31
|
+
children: "Shop"
|
|
32
|
+
}),
|
|
33
|
+
/*#__PURE__*/ jsx(Header.NavItem, {
|
|
34
|
+
children: "About"
|
|
35
|
+
})
|
|
36
|
+
]
|
|
37
|
+
}),
|
|
38
|
+
/*#__PURE__*/ jsx(Header.Actions, {
|
|
39
|
+
children: /*#__PURE__*/ jsx(Header.ActionItem, {
|
|
40
|
+
children: "Cart"
|
|
41
|
+
})
|
|
42
|
+
})
|
|
43
|
+
]
|
|
44
|
+
}),
|
|
45
|
+
/*#__PURE__*/ jsx(Header.Hamburger, {}),
|
|
46
|
+
/*#__PURE__*/ jsxs(Header.Mobile, {
|
|
47
|
+
children: [
|
|
48
|
+
/*#__PURE__*/ jsx(Header.NavItem, {
|
|
49
|
+
children: "Home"
|
|
50
|
+
}),
|
|
51
|
+
/*#__PURE__*/ jsx(Header.NavItem, {
|
|
52
|
+
children: "Shop"
|
|
53
|
+
})
|
|
54
|
+
]
|
|
55
|
+
})
|
|
56
|
+
]
|
|
57
|
+
})
|
|
58
|
+
});
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import code_connect from "@figma/code-connect";
|
|
3
|
+
import { Table } from "./table.js";
|
|
4
|
+
code_connect.connect(Table, "https://www.figma.com/design/12xb1pqXKwE2vbOByN3ntg/New-Design-System-vol.-2?node-id=1393-232", {
|
|
5
|
+
imports: [
|
|
6
|
+
'import { Table } from "@libs/ui/organisms/table"'
|
|
7
|
+
],
|
|
8
|
+
props: {
|
|
9
|
+
variant: code_connect["enum"]("variant", {
|
|
10
|
+
line: "line",
|
|
11
|
+
outline: "outline",
|
|
12
|
+
striped: "striped"
|
|
13
|
+
}),
|
|
14
|
+
size: code_connect["enum"]("size", {
|
|
15
|
+
sm: "sm",
|
|
16
|
+
md: "md",
|
|
17
|
+
lg: "lg"
|
|
18
|
+
})
|
|
19
|
+
},
|
|
20
|
+
example: ({ variant, size })=>/*#__PURE__*/ jsxs(Table, {
|
|
21
|
+
size: size,
|
|
22
|
+
variant: variant,
|
|
23
|
+
children: [
|
|
24
|
+
/*#__PURE__*/ jsx(Table.Caption, {
|
|
25
|
+
children: "Recent orders"
|
|
26
|
+
}),
|
|
27
|
+
/*#__PURE__*/ jsx(Table.Header, {
|
|
28
|
+
children: /*#__PURE__*/ jsxs(Table.Row, {
|
|
29
|
+
children: [
|
|
30
|
+
/*#__PURE__*/ jsx(Table.ColumnHeader, {
|
|
31
|
+
children: "Order"
|
|
32
|
+
}),
|
|
33
|
+
/*#__PURE__*/ jsx(Table.ColumnHeader, {
|
|
34
|
+
children: "Status"
|
|
35
|
+
}),
|
|
36
|
+
/*#__PURE__*/ jsx(Table.ColumnHeader, {
|
|
37
|
+
children: "Total"
|
|
38
|
+
})
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
}),
|
|
42
|
+
/*#__PURE__*/ jsxs(Table.Body, {
|
|
43
|
+
children: [
|
|
44
|
+
/*#__PURE__*/ jsxs(Table.Row, {
|
|
45
|
+
children: [
|
|
46
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
47
|
+
children: "#1001"
|
|
48
|
+
}),
|
|
49
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
50
|
+
children: "Shipped"
|
|
51
|
+
}),
|
|
52
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
53
|
+
children: "$99.00"
|
|
54
|
+
})
|
|
55
|
+
]
|
|
56
|
+
}),
|
|
57
|
+
/*#__PURE__*/ jsxs(Table.Row, {
|
|
58
|
+
children: [
|
|
59
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
60
|
+
children: "#1002"
|
|
61
|
+
}),
|
|
62
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
63
|
+
children: "Pending"
|
|
64
|
+
}),
|
|
65
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
66
|
+
children: "$149.00"
|
|
67
|
+
})
|
|
68
|
+
]
|
|
69
|
+
})
|
|
70
|
+
]
|
|
71
|
+
}),
|
|
72
|
+
/*#__PURE__*/ jsx(Table.Footer, {
|
|
73
|
+
children: /*#__PURE__*/ jsxs(Table.Row, {
|
|
74
|
+
children: [
|
|
75
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
76
|
+
children: "Total"
|
|
77
|
+
}),
|
|
78
|
+
/*#__PURE__*/ jsx(Table.Cell, {}),
|
|
79
|
+
/*#__PURE__*/ jsx(Table.Cell, {
|
|
80
|
+
children: "$248.00"
|
|
81
|
+
})
|
|
82
|
+
]
|
|
83
|
+
})
|
|
84
|
+
})
|
|
85
|
+
]
|
|
86
|
+
})
|
|
87
|
+
});
|
package/dist/organisms/table.js
CHANGED
|
@@ -21,7 +21,7 @@ const tableVariants = tv({
|
|
|
21
21
|
"font-table-footer text-table-footer-fg"
|
|
22
22
|
],
|
|
23
23
|
row: [
|
|
24
|
-
"border-b-(length:--border-width
|
|
24
|
+
"border-b-(length:--border-table-width) border-table-border",
|
|
25
25
|
"data-[selected=true]:bg-table-row-bg-selected",
|
|
26
26
|
"transition-colors duration-200 motion-reduce:transition-none"
|
|
27
27
|
],
|
|
@@ -37,13 +37,13 @@ const tableVariants = tv({
|
|
|
37
37
|
variant: {
|
|
38
38
|
line: {
|
|
39
39
|
root: "",
|
|
40
|
-
row: "border-b-(length:--border-width
|
|
40
|
+
row: "border-b-(length:--border-table-width) border-table-border"
|
|
41
41
|
},
|
|
42
42
|
outline: {
|
|
43
|
-
root: "border-(length:--border-width
|
|
43
|
+
root: "border-(length:--border-table-width) rounded-table border-table-border shadow-table-outline"
|
|
44
44
|
},
|
|
45
45
|
striped: {
|
|
46
|
-
row: "odd:bg-table-row-striped-
|
|
46
|
+
row: "odd:bg-table-row-striped-primary even:bg-table-row-striped-secondary"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
interactive: {
|
|
@@ -87,8 +87,8 @@ const tableVariants = tv({
|
|
|
87
87
|
},
|
|
88
88
|
showColumnBorder: {
|
|
89
89
|
true: {
|
|
90
|
-
columnHeader: "border-r-(length:--border-width
|
|
91
|
-
cell: "border-r-(length:--border-width
|
|
90
|
+
columnHeader: "border-r-(length:--border-table-width) border-table-border",
|
|
91
|
+
cell: "border-r-(length:--border-table-width) border-table-border"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
captionPlacement: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../../src/organisms/footer.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../../src/organisms/footer.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,wBAAwB,EAE7B,KAAK,WAAW,EAChB,KAAK,cAAc,EACnB,KAAK,SAAS,EAEf,MAAM,OAAO,CAAA;AACd,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAIrD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAiFlB,CAAA;AAUF,UAAU,WACR,SAAQ,cAAc,CAAC,WAAW,CAAC,EACjC,YAAY,CAAC,OAAO,cAAc,CAAC;IACrC,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,UAAU,oBAAqB,SAAQ,cAAc,CAAC,WAAW,CAAC;IAChE,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,UAAU,kBAAmB,SAAQ,cAAc,CAAC,WAAW,CAAC;IAC9D,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,UAAU,gBAAiB,SAAQ,cAAc,CAAC,WAAW,CAAC;IAC5D,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,KAAK,mBAAmB,GAAG;IACzB,QAAQ,EAAE,SAAS,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,KAAK,qBAAqB,GAAG,mBAAmB,GAC9C,IAAI,CACF,wBAAwB,CAAC,GAAG,CAAC,EAC7B,MAAM,mBAAmB,GAAG,IAAI,GAAG,MAAM,CAC1C,GAAG;IACF,EAAE,CAAC,EAAE,KAAK,CAAA;IACV,IAAI,EAAE,WAAW,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;CACzD,CAAA;AAEH,KAAK,qBAAqB,CAAC,CAAC,SAAS,WAAW,IAAI,mBAAmB,GACrE,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,mBAAmB,GAAG,IAAI,CAAC,GAAG;IACpE,EAAE,EAAE,OAAO,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;CACpB,CAAA;AAMH,UAAU,eAAgB,SAAQ,cAAc,CAAC,WAAW,CAAC;IAC3D,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,UAAU,eAAgB,SAAQ,cAAc,CAAC,gBAAgB,CAAC;IAChE,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,UAAU,kBAAmB,SAAQ,cAAc,CAAC,aAAa,CAAC;CAAG;AAErE,UAAU,iBAAkB,SAAQ,cAAc,CAAC,cAAc,CAAC;IAChE,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,wBAAgB,MAAM,CAAC,EACrB,QAAQ,EACR,IAAI,EACJ,WAAW,EACX,SAAS,EACT,MAAM,EACN,SAAS,GACV,EAAE,WAAW,2CAQb;yBAfe,MAAM;8CAoBnB,oBAAoB;4CASpB,kBAAkB;yCASwC,gBAAgB;;wCA2BlB,eAAe;kDAUvE,eAAe;2CAaf,kBAAkB;oDAUlB,iBAAiB;;AAtDpB,iBAAS,UAAU,CAAC,KAAK,EAAE,qBAAqB,GAAG,SAAS,CAAA;AAC5D,iBAAS,UAAU,CAAC,CAAC,SAAS,WAAW,EACvC,KAAK,EAAE,qBAAqB,CAAC,CAAC,CAAC,GAC9B,SAAS,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"footer.figma.d.ts","sourceRoot":"","sources":["../../../src/organisms/footer.figma.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gallery.figma.d.ts","sourceRoot":"","sources":["../../../src/organisms/gallery.figma.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"header.figma.d.ts","sourceRoot":"","sources":["../../../src/organisms/header.figma.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.figma.d.ts","sourceRoot":"","sources":["../../../src/organisms/table.figma.tsx"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techsio/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -78,27 +78,27 @@
|
|
|
78
78
|
"@iconify-json/mdi-light": "^1.2.2",
|
|
79
79
|
"@iconify-json/svg-spinners": "^1.2.4",
|
|
80
80
|
"@iconify/tailwind4": "^1.1.0",
|
|
81
|
-
"@zag-js/accordion": "^1.
|
|
82
|
-
"@zag-js/carousel": "^1.
|
|
83
|
-
"@zag-js/checkbox": "^1.
|
|
84
|
-
"@zag-js/combobox": "^1.
|
|
85
|
-
"@zag-js/dialog": "^1.
|
|
86
|
-
"@zag-js/i18n-utils": "^1.
|
|
87
|
-
"@zag-js/menu": "^1.
|
|
88
|
-
"@zag-js/number-input": "^1.
|
|
89
|
-
"@zag-js/pagination": "^1.
|
|
90
|
-
"@zag-js/popover": "^1.
|
|
91
|
-
"@zag-js/radio-group": "^1.
|
|
92
|
-
"@zag-js/rating-group": "^1.
|
|
93
|
-
"@zag-js/react": "^1.
|
|
94
|
-
"@zag-js/select": "^1.
|
|
95
|
-
"@zag-js/slider": "^1.
|
|
96
|
-
"@zag-js/steps": "^1.
|
|
97
|
-
"@zag-js/switch": "^1.
|
|
98
|
-
"@zag-js/tabs": "^1.
|
|
99
|
-
"@zag-js/toast": "^1.
|
|
100
|
-
"@zag-js/tooltip": "^1.
|
|
101
|
-
"@zag-js/tree-view": "^1.
|
|
81
|
+
"@zag-js/accordion": "^1.41.2",
|
|
82
|
+
"@zag-js/carousel": "^1.41.2",
|
|
83
|
+
"@zag-js/checkbox": "^1.41.2",
|
|
84
|
+
"@zag-js/combobox": "^1.41.2",
|
|
85
|
+
"@zag-js/dialog": "^1.41.2",
|
|
86
|
+
"@zag-js/i18n-utils": "^1.41.2",
|
|
87
|
+
"@zag-js/menu": "^1.41.2",
|
|
88
|
+
"@zag-js/number-input": "^1.41.2",
|
|
89
|
+
"@zag-js/pagination": "^1.41.2",
|
|
90
|
+
"@zag-js/popover": "^1.41.2",
|
|
91
|
+
"@zag-js/radio-group": "^1.41.2",
|
|
92
|
+
"@zag-js/rating-group": "^1.41.2",
|
|
93
|
+
"@zag-js/react": "^1.41.2",
|
|
94
|
+
"@zag-js/select": "^1.41.2",
|
|
95
|
+
"@zag-js/slider": "^1.41.2",
|
|
96
|
+
"@zag-js/steps": "^1.41.2",
|
|
97
|
+
"@zag-js/switch": "^1.41.2",
|
|
98
|
+
"@zag-js/tabs": "^1.41.2",
|
|
99
|
+
"@zag-js/toast": "^1.41.2",
|
|
100
|
+
"@zag-js/tooltip": "^1.41.2",
|
|
101
|
+
"@zag-js/tree-view": "^1.41.2",
|
|
102
102
|
"libphonenumber-js": "^1.13.2",
|
|
103
103
|
"tailwind-merge": "^3.4.0",
|
|
104
104
|
"tailwind-variants": "^3.1.1",
|
|
@@ -1,85 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Footer — runtime tokens come entirely from
|
|
3
|
+
* libs/ui/src/tokens/figma/variables.css.
|
|
4
|
+
*
|
|
5
|
+
* Kept: `--footer-cols` runtime grid-template-columns value
|
|
6
|
+
* (repeat/minmax can't be expressed as a Figma variable).
|
|
7
|
+
*/
|
|
8
|
+
|
|
1
9
|
@theme static {
|
|
2
10
|
--footer-cols: repeat(auto-fit, minmax(22%, 1fr));
|
|
3
|
-
|
|
4
|
-
/* === COLORS === */
|
|
5
|
-
--color-footer: var(--color-surface);
|
|
6
|
-
|
|
7
|
-
/* Background */
|
|
8
|
-
--color-footer-bg: var(--color-footer);
|
|
9
|
-
--color-footer-container-bg: var(--color-footer);
|
|
10
|
-
--color-footer-section-bg: var(--color-footer);
|
|
11
|
-
--color-footer-list-bg: var(--color-footer);
|
|
12
|
-
--color-footer-bottom-bg: var(--color-footer);
|
|
13
|
-
|
|
14
|
-
/* Foreground */
|
|
15
|
-
--color-footer-fg-primary: var(--color-fg-primary);
|
|
16
|
-
--color-footer-fg-secondary: var(--color-fg-secondary);
|
|
17
|
-
|
|
18
|
-
--color-footer-title-fg: var(--color-footer-fg-primary);
|
|
19
|
-
--color-footer-title-fg-hover: var(--color-primary);
|
|
20
|
-
--color-footer-link-fg: var(--color-footer-fg-secondary);
|
|
21
|
-
--color-footer-link-fg-hover: var(--color-primary);
|
|
22
|
-
--color-footer-text-fg: var(--color-footer-fg-secondary);
|
|
23
|
-
|
|
24
|
-
/* Divider & Bottom */
|
|
25
|
-
--color-footer-divider-bg: var(--color-fg-reverse);
|
|
26
|
-
|
|
27
|
-
/* === TYPOGRAPHY === */
|
|
28
|
-
--text-footer-title-sm: var(--text-md);
|
|
29
|
-
--text-footer-title-md: var(--text-lg);
|
|
30
|
-
--text-footer-title-lg: var(--text-xl);
|
|
31
|
-
|
|
32
|
-
--text-footer-link-sm: var(--text-sm);
|
|
33
|
-
--text-footer-link-md: var(--text-md);
|
|
34
|
-
--text-footer-link-lg: var(--text-lg);
|
|
35
|
-
|
|
36
|
-
--text-footer-text-sm: var(--text-xs);
|
|
37
|
-
--text-footer-text-md: var(--text-sm);
|
|
38
|
-
--text-footer-text-lg: var(--text-md);
|
|
39
|
-
|
|
40
|
-
--font-weight-footer-title: var(--font-weight-semibold);
|
|
41
|
-
--font-weight-footer-link: var(--font-weight-normal);
|
|
42
|
-
|
|
43
|
-
/* === SIZES === */
|
|
44
|
-
--container-footer-max: var(--container-max-w);
|
|
45
|
-
|
|
46
|
-
/* === SPACING === */
|
|
47
|
-
/* Root padding */
|
|
48
|
-
--padding-footer-root-sm: var(--spacing-100);
|
|
49
|
-
--padding-footer-root-md: var(--spacing-200);
|
|
50
|
-
--padding-footer-root-lg: var(--spacing-300);
|
|
51
|
-
|
|
52
|
-
/* Container spacing */
|
|
53
|
-
--spacing-footer-container-sm: var(--spacing-300);
|
|
54
|
-
--spacing-footer-container-md: var(--spacing-400);
|
|
55
|
-
--spacing-footer-container-lg: var(--spacing-500);
|
|
56
|
-
|
|
57
|
-
/* Section spacing */
|
|
58
|
-
--spacing-footer-section-sm: var(--spacing-50);
|
|
59
|
-
--spacing-footer-section-md: var(--spacing-100);
|
|
60
|
-
--spacing-footer-section-lg: var(--spacing-150);
|
|
61
|
-
|
|
62
|
-
/* List spacing */
|
|
63
|
-
--spacing-footer-list-gap: var(--spacing-100);
|
|
64
|
-
--spacing-footer-list-gap-sm: var(--spacing-50);
|
|
65
|
-
--spacing-footer-list-gap-md: var(--spacing-100);
|
|
66
|
-
--spacing-footer-list-gap-lg: var(--spacing-150);
|
|
67
|
-
|
|
68
|
-
/* Bottom padding */
|
|
69
|
-
--padding-footer-bottom: var(--spacing-300);
|
|
70
|
-
--padding-footer-bottom-sm: var(--spacing-200);
|
|
71
|
-
--padding-footer-bottom-md: var(--spacing-300);
|
|
72
|
-
--padding-footer-bottom-lg: var(--spacing-400);
|
|
73
|
-
|
|
74
|
-
/* Divider margins */
|
|
75
|
-
--margin-footer-divider-sm: var(--spacing-200);
|
|
76
|
-
--margin-footer-divider-md: var(--spacing-300);
|
|
77
|
-
--margin-footer-divider-lg: var(--spacing-400);
|
|
78
|
-
|
|
79
|
-
/* === BORDERS & EFFECTS === */
|
|
80
|
-
--border-width-footer: var(--border-width-md);
|
|
81
|
-
--color-footer-border: var(--color-border-primary);
|
|
82
|
-
--height-footer-divider: 2px;
|
|
83
|
-
|
|
84
|
-
--radius-footer: 0;
|
|
85
11
|
}
|
|
@@ -1,35 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
);
|
|
13
|
-
--color-gallery-trigger-border: var(--color-border-primary);
|
|
14
|
-
--color-gallery-trigger-border-active: var(--color-gallery-accent);
|
|
15
|
-
--color-gallery-trigger-ring: var(--color-ring);
|
|
16
|
-
|
|
17
|
-
/* === SPACING === */
|
|
18
|
-
--spacing-gallery-xs: var(--spacing-50);
|
|
19
|
-
--spacing-gallery-sm: var(--spacing-100);
|
|
20
|
-
--spacing-gallery-md: var(--spacing-200);
|
|
21
|
-
--spacing-gallery-lg: var(--spacing-300);
|
|
22
|
-
--spacing-gallery-root: var(--spacing-200);
|
|
23
|
-
--padding-gallery-trigger: 0 0;
|
|
24
|
-
|
|
25
|
-
/* === DIMENSIONS === */
|
|
1
|
+
/*
|
|
2
|
+
* Gallery — runtime tokens come entirely from
|
|
3
|
+
* libs/ui/src/tokens/figma/variables.css.
|
|
4
|
+
*
|
|
5
|
+
* Kept: `--height-gallery` responsive cap. Figma flattens it to a fixed
|
|
6
|
+
* dimension (576px); the `min(60svh, 36rem)` viewport behaviour can't be
|
|
7
|
+
* expressed as a Figma variable, so an unlayered `:root` override (which
|
|
8
|
+
* beats Figma's `@theme static`) restores it.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
:root {
|
|
26
12
|
--height-gallery: min(60svh, 36rem);
|
|
27
|
-
|
|
28
|
-
/* === EFFECTS === */
|
|
29
|
-
--brightness-gallery-trigger: 70%;
|
|
30
|
-
--brightness-gallery-trigger-active: 100%;
|
|
31
|
-
--shadow-gallery-trigger: var(--shadow-sm);
|
|
32
|
-
|
|
33
|
-
/* === BORDERS === */
|
|
34
|
-
--radius-gallery-trigger: var(--radius-sm);
|
|
35
13
|
}
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Header — runtime tokens come entirely from
|
|
3
|
+
* libs/ui/src/tokens/figma/variables.css.
|
|
4
|
+
*
|
|
5
|
+
* Kept:
|
|
6
|
+
* - `:root @media (width < 48rem)` nav-spacing override (responsive,
|
|
7
|
+
* conditional value — can't be expressed as a Figma variable).
|
|
8
|
+
* - glyph utilities mapping the menu/close icons.
|
|
9
|
+
*/
|
|
10
|
+
|
|
1
11
|
:root {
|
|
2
12
|
@media (width < 48rem) {
|
|
3
13
|
--spacing-header-nav-sm: var(--spacing-50);
|
|
@@ -6,89 +16,10 @@
|
|
|
6
16
|
}
|
|
7
17
|
}
|
|
8
18
|
|
|
9
|
-
@theme static {
|
|
10
|
-
/* === REFERENCE LAYER === */
|
|
11
|
-
/* These tokens reference semantic tokens from _semantic.css */
|
|
12
|
-
--color-header: var(--color-surface);
|
|
13
|
-
--color-header-accent: var(--color-primary);
|
|
14
|
-
|
|
15
|
-
/* Reference typhography */
|
|
16
|
-
--text-header-sm: var(--text-sm);
|
|
17
|
-
--text-header-md: var(--text-md);
|
|
18
|
-
--text-header-lg: var(--text-lg);
|
|
19
|
-
|
|
20
|
-
/* === DERIVED COLORS === */
|
|
21
|
-
/* Background colors */
|
|
22
|
-
--color-header-bg: var(--color-header);
|
|
23
|
-
|
|
24
|
-
/* === ITEMS === */
|
|
25
|
-
--color-header-nav-item-bg: transparent;
|
|
26
|
-
--color-header-nav-item-bg-hover: transparent;
|
|
27
|
-
|
|
28
|
-
--text-header-item-sm: var(--text-header-sm);
|
|
29
|
-
--text-header-item-md: var(--text-header-md);
|
|
30
|
-
--text-header-item-lg: var(--text-header-lg);
|
|
31
|
-
|
|
32
|
-
/* === ACTIONS === */
|
|
33
|
-
|
|
34
|
-
/* Foreground colors */
|
|
35
|
-
--color-header-fg: var(--color-fg-primary);
|
|
36
|
-
--color-header-nav-fg: var(--color-fg-secondary);
|
|
37
|
-
--color-header-nav-fg-hover: var(--color-header-fg);
|
|
38
|
-
--color-header-nav-fg-active: var(--color-header-accent);
|
|
39
|
-
--color-header-actions-fg: var(--color-primary);
|
|
40
|
-
--color-header-actions-fg-hover: var(--color-header-fg);
|
|
41
|
-
|
|
42
|
-
/* Border colors */
|
|
43
|
-
|
|
44
|
-
/* === SIZE === */
|
|
45
|
-
/* Width constraints */
|
|
46
|
-
--width-header-max: 100%;
|
|
47
|
-
|
|
48
|
-
/* === SPACING === */
|
|
49
|
-
/* Section spacing */
|
|
50
|
-
--spacing-header-container: var(--spacing-100);
|
|
51
|
-
|
|
52
|
-
--padding-header-item-sm: var(--spacing-100);
|
|
53
|
-
--padding-header-item-md: var(--spacing-150);
|
|
54
|
-
--padding-header-item-lg: var(--spacing-200);
|
|
55
|
-
|
|
56
|
-
--spacing-header-nav-sm: var(--spacing-200);
|
|
57
|
-
--spacing-header-nav-md: var(--spacing-300);
|
|
58
|
-
--spacing-header-nav-lg: var(--spacing-400);
|
|
59
|
-
|
|
60
|
-
--spacing-header-actions-sm: var(--spacing-200);
|
|
61
|
-
--spacing-header-actions-md: var(--spacing-300);
|
|
62
|
-
--spacing-header-actions-lg: var(--spacing-400);
|
|
63
|
-
|
|
64
|
-
/* === TYPOGRAPHY === */
|
|
65
|
-
--font-weight-header-nav: var(--font-weight-medium);
|
|
66
|
-
--font-weight-header-nav-active: var(--font-weight-semibold);
|
|
67
|
-
|
|
68
|
-
/* === Z-INDEX === */
|
|
69
|
-
/* Mobile menu hamburger colors */
|
|
70
|
-
--color-header-hamburger-fg: var(--color-fg-primary);
|
|
71
|
-
--color-header-hamburger-fg-hover: var(--color-fg-secondary);
|
|
72
|
-
|
|
73
|
-
/* hamburger button */
|
|
74
|
-
--text-header-hamburger-sm: var(--text-header-sm);
|
|
75
|
-
--text-header-hamburger-md: var(--text-header-md);
|
|
76
|
-
--text-header-hamburger-lg: var(--text-header-lg);
|
|
77
|
-
|
|
78
|
-
--padding-header-hamburger-sm: var(--spacing-100);
|
|
79
|
-
--padding-header-hamburger-md: var(--spacing-150);
|
|
80
|
-
--padding-header-hamburger-lg: var(--spacing-200);
|
|
81
|
-
|
|
82
|
-
/* breakpoint */
|
|
83
|
-
--container-header-desktop: 48rem;
|
|
84
|
-
|
|
85
|
-
--duration-header: 300ms;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
19
|
@utility token-icon-header-menu {
|
|
89
20
|
@apply token-icon-menu;
|
|
90
21
|
}
|
|
91
22
|
|
|
92
23
|
@utility token-icon-header-close {
|
|
93
24
|
@apply token-icon-close;
|
|
94
|
-
}
|
|
25
|
+
}
|
|
@@ -1,63 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
--color-table-bg: var(--color-table);
|
|
10
|
-
--color-table-header-bg: oklch(
|
|
11
|
-
from var(--color-table-bg) calc(l - var(--surface-increment)) c h
|
|
12
|
-
);
|
|
13
|
-
--color-table-footer-bg: var(--color-table-header-bg);
|
|
14
|
-
--color-table-row-bg: transparent;
|
|
15
|
-
--color-table-row-bg-hover: oklch(
|
|
16
|
-
from var(--color-table-bg) calc(l + var(--state-hover)) c h
|
|
17
|
-
);
|
|
18
|
-
--color-table-row-bg-selected: --alpha(var(--color-table-accent) / 0.1);
|
|
19
|
-
--color-table-row-striped-bg-primary: oklch(
|
|
20
|
-
from var(--color-table-bg) calc(l - var(--surface-increment)) c h
|
|
21
|
-
);
|
|
22
|
-
--color-table-row-striped-bg-secondary: var(--color-table-row-bg);
|
|
23
|
-
|
|
24
|
-
/* Foreground colors */
|
|
25
|
-
--color-table-fg: var(--color-fg-primary);
|
|
26
|
-
--color-table-header-fg: var(--color-fg-primary);
|
|
27
|
-
--color-table-footer-fg: var(--color-fg-secondary);
|
|
28
|
-
--color-table-caption-fg: var(--color-fg-secondary);
|
|
29
|
-
|
|
30
|
-
/* === SPACING === */
|
|
31
|
-
/* Cell padding */
|
|
32
|
-
--padding-table-cell-sm: var(--spacing-100) var(--spacing-150);
|
|
33
|
-
--padding-table-cell-md: var(--spacing-150) var(--spacing-200);
|
|
34
|
-
--padding-table-cell-lg: var(--spacing-200) var(--spacing-250);
|
|
35
|
-
|
|
36
|
-
/* Caption padding */
|
|
37
|
-
--padding-table-caption-sm: var(--spacing-100);
|
|
38
|
-
--padding-table-caption-md: var(--spacing-150);
|
|
39
|
-
--padding-table-caption-lg: var(--spacing-200);
|
|
1
|
+
/*
|
|
2
|
+
* Table — runtime tokens come entirely from
|
|
3
|
+
* libs/ui/src/tokens/figma/variables.css.
|
|
4
|
+
*
|
|
5
|
+
* Kept: `--padding-table-cell-{sm,md,lg}` composites. Figma exports the cell
|
|
6
|
+
* padding split into `-x`/`-y`; the `p-table-cell-*` shorthand utilities are
|
|
7
|
+
* rebuilt here (padding: y x) from those Figma halves.
|
|
8
|
+
*/
|
|
40
9
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
--
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
--text-table-sm: var(--text-sm);
|
|
49
|
-
--text-table-md: var(--text-md);
|
|
50
|
-
--text-table-lg: var(--text-lg);
|
|
51
|
-
|
|
52
|
-
/* Caption text sizes */
|
|
53
|
-
--text-table-caption-sm: var(--text-xs);
|
|
54
|
-
--text-table-caption-md: var(--text-sm);
|
|
55
|
-
--text-table-caption-lg: var(--text-md);
|
|
56
|
-
|
|
57
|
-
/* === BORDERS & RADIUS === */
|
|
58
|
-
--border-width-table: var(--border-width-sm);
|
|
59
|
-
--radius-table: var(--radius-sm);
|
|
60
|
-
|
|
61
|
-
/* === SHADOWS === */
|
|
62
|
-
--shadow-table-outline: var(--shadow-sm);
|
|
10
|
+
@theme static {
|
|
11
|
+
--padding-table-cell-sm: var(--padding-table-cell-sm-y)
|
|
12
|
+
var(--padding-table-cell-sm-x);
|
|
13
|
+
--padding-table-cell-md: var(--padding-table-cell-md-y)
|
|
14
|
+
var(--padding-table-cell-md-x);
|
|
15
|
+
--padding-table-cell-lg: var(--padding-table-cell-lg-y)
|
|
16
|
+
var(--padding-table-cell-lg-x);
|
|
63
17
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Design tokens exported from Figma
|
|
3
|
-
* Exported at: 2026-06-
|
|
3
|
+
* Exported at: 2026-06-15T06:51:18.175Z
|
|
4
4
|
* Format: Raw CSS variables grouped by kind
|
|
5
5
|
*/
|
|
6
6
|
:root {
|
|
@@ -291,6 +291,7 @@
|
|
|
291
291
|
--color-fill-highlight: var(--color-neutral-700);
|
|
292
292
|
--color-fill-hover: var(--color-white-10);
|
|
293
293
|
--color-fill-overlay: var(--color-neutral-800);
|
|
294
|
+
--color-fill-selected: var(--color-primary-alpha-10);
|
|
294
295
|
--color-fill-surface: var(--color-neutral-800);
|
|
295
296
|
--color-float: var(--color-fill-highlight);
|
|
296
297
|
--color-footer-bg: var(--color-fill-surface);
|
|
@@ -483,6 +484,7 @@
|
|
|
483
484
|
--color-primary-900: oklch(0.391 0.089 240.611);
|
|
484
485
|
--color-primary-accent-fg: var(--color-fg-accent-primary);
|
|
485
486
|
--color-primary-active: var(--color-bg-primary-active);
|
|
487
|
+
--color-primary-alpha-10: oklch(0.807 0.101 250.446 / 0.1);
|
|
486
488
|
--color-primary-disabled: var(--color-bg-disabled);
|
|
487
489
|
--color-primary-hover: var(--color-bg-primary-hover);
|
|
488
490
|
--color-primary-light: var(--color-bg-light-primary-base);
|
|
@@ -741,14 +743,14 @@
|
|
|
741
743
|
--color-table-border: var(--color-border-primary);
|
|
742
744
|
--color-table-caption-fg: var(--color-fg-secondary);
|
|
743
745
|
--color-table-fg: var(--color-fg-primary);
|
|
744
|
-
--color-table-footer-bg: var(--color-
|
|
746
|
+
--color-table-footer-bg: var(--color-fill-base);
|
|
745
747
|
--color-table-footer-fg: var(--color-fg-secondary);
|
|
746
|
-
--color-table-header-bg: var(--color-
|
|
748
|
+
--color-table-header-bg: var(--color-fill-base);
|
|
747
749
|
--color-table-header-fg: var(--color-fg-primary);
|
|
748
750
|
--color-table-row-bg: var(--color-bg-transparent);
|
|
749
|
-
--color-table-row-bg-hover: var(--color-
|
|
750
|
-
--color-table-row-bg-selected: var(--color-
|
|
751
|
-
--color-table-row-striped-primary: var(--color-
|
|
751
|
+
--color-table-row-bg-hover: var(--color-fill-hover);
|
|
752
|
+
--color-table-row-bg-selected: var(--color-fill-selected);
|
|
753
|
+
--color-table-row-striped-primary: var(--color-fill-base);
|
|
752
754
|
--color-table-row-striped-secondary: var(--color-bg-transparent);
|
|
753
755
|
--color-tabs-bg: var(--color-fill-surface);
|
|
754
756
|
--color-tabs-border-base: var(--color-border-primary);
|
|
@@ -1329,6 +1331,7 @@
|
|
|
1329
1331
|
--shadow-accordion-root-md: var(--shadow-xl);
|
|
1330
1332
|
--shadow-accordion-root-sm: var(--shadow-primary);
|
|
1331
1333
|
--shadow-dialog-content: var(--shadow-primary);
|
|
1334
|
+
--shadow-gallery-trigger: var(--shadow-sm);
|
|
1332
1335
|
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
|
|
1333
1336
|
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
1334
1337
|
--shadow-menu-content: var(--shadow-lg);
|
|
@@ -1338,6 +1341,7 @@
|
|
|
1338
1341
|
--shadow-select-content: var(--shadow-md);
|
|
1339
1342
|
--shadow-slider-thumb: var(--shadow-sm);
|
|
1340
1343
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1344
|
+
--shadow-table-outline: var(--shadow-sm);
|
|
1341
1345
|
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
|
|
1342
1346
|
--size-1: 0.06rem;
|
|
1343
1347
|
--size-12: 0.75rem;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Design tokens exported from Figma
|
|
3
|
-
* Exported at: 2026-06-
|
|
3
|
+
* Exported at: 2026-06-15T06:51:18.168Z
|
|
4
4
|
* Format: Raw CSS variables grouped by kind
|
|
5
5
|
*/
|
|
6
6
|
:root {
|
|
@@ -291,6 +291,7 @@
|
|
|
291
291
|
--color-fill-highlight: var(--color-neutral-300);
|
|
292
292
|
--color-fill-hover: var(--color-neutral-020617-10);
|
|
293
293
|
--color-fill-overlay: var(--color-neutral-200);
|
|
294
|
+
--color-fill-selected: var(--color-primary-alpha-10);
|
|
294
295
|
--color-fill-surface: var(--color-neutral-100);
|
|
295
296
|
--color-float: var(--color-fill-highlight);
|
|
296
297
|
--color-footer-bg: var(--color-fill-surface);
|
|
@@ -483,6 +484,7 @@
|
|
|
483
484
|
--color-primary-900: oklch(0.38 0.145 265.465);
|
|
484
485
|
--color-primary-accent-fg: var(--color-fg-accent-primary);
|
|
485
486
|
--color-primary-active: var(--color-bg-primary-active);
|
|
487
|
+
--color-primary-alpha-10: oklch(0.807 0.101 250.446 / 0.1);
|
|
486
488
|
--color-primary-disabled: var(--color-bg-disabled);
|
|
487
489
|
--color-primary-hover: var(--color-bg-primary-hover);
|
|
488
490
|
--color-primary-light: var(--color-bg-light-primary-base);
|
|
@@ -741,14 +743,14 @@
|
|
|
741
743
|
--color-table-border: var(--color-border-primary);
|
|
742
744
|
--color-table-caption-fg: var(--color-fg-secondary);
|
|
743
745
|
--color-table-fg: var(--color-fg-primary);
|
|
744
|
-
--color-table-footer-bg: var(--color-
|
|
746
|
+
--color-table-footer-bg: var(--color-fill-base);
|
|
745
747
|
--color-table-footer-fg: var(--color-fg-secondary);
|
|
746
|
-
--color-table-header-bg: var(--color-
|
|
748
|
+
--color-table-header-bg: var(--color-fill-base);
|
|
747
749
|
--color-table-header-fg: var(--color-fg-primary);
|
|
748
750
|
--color-table-row-bg: var(--color-bg-transparent);
|
|
749
|
-
--color-table-row-bg-hover: var(--color-
|
|
750
|
-
--color-table-row-bg-selected: var(--color-
|
|
751
|
-
--color-table-row-striped-primary: var(--color-
|
|
751
|
+
--color-table-row-bg-hover: var(--color-fill-hover);
|
|
752
|
+
--color-table-row-bg-selected: var(--color-fill-selected);
|
|
753
|
+
--color-table-row-striped-primary: var(--color-fill-base);
|
|
752
754
|
--color-table-row-striped-secondary: var(--color-bg-transparent);
|
|
753
755
|
--color-tabs-bg: var(--color-fill-surface);
|
|
754
756
|
--color-tabs-border-base: var(--color-border-primary);
|
|
@@ -1329,6 +1331,7 @@
|
|
|
1329
1331
|
--shadow-accordion-root-md: var(--shadow-xl);
|
|
1330
1332
|
--shadow-accordion-root-sm: var(--shadow-primary);
|
|
1331
1333
|
--shadow-dialog-content: var(--shadow-primary);
|
|
1334
|
+
--shadow-gallery-trigger: var(--shadow-sm);
|
|
1332
1335
|
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
|
|
1333
1336
|
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
1334
1337
|
--shadow-menu-content: var(--shadow-lg);
|
|
@@ -1338,6 +1341,7 @@
|
|
|
1338
1341
|
--shadow-select-content: var(--shadow-md);
|
|
1339
1342
|
--shadow-slider-thumb: var(--shadow-sm);
|
|
1340
1343
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1344
|
+
--shadow-table-outline: var(--shadow-sm);
|
|
1341
1345
|
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
|
|
1342
1346
|
--size-1: 0.06rem;
|
|
1343
1347
|
--size-12: 0.75rem;
|
|
@@ -351,6 +351,7 @@
|
|
|
351
351
|
--color-fill-highlight: light-dark(var(--color-neutral-300), var(--color-neutral-700));
|
|
352
352
|
--color-fill-hover: light-dark(var(--color-neutral-020617-10), var(--color-white-10));
|
|
353
353
|
--color-fill-overlay: light-dark(var(--color-neutral-200), var(--color-neutral-800));
|
|
354
|
+
--color-fill-selected: var(--color-primary-alpha-10);
|
|
354
355
|
--color-fill-surface: light-dark(var(--color-neutral-100), var(--color-neutral-800));
|
|
355
356
|
--color-float: var(--color-fill-highlight);
|
|
356
357
|
--color-footer-bg: var(--color-fill-surface);
|
|
@@ -543,6 +544,7 @@
|
|
|
543
544
|
--color-primary-900: light-dark(oklch(0.38 0.145 265.465), oklch(0.391 0.089 240.611));
|
|
544
545
|
--color-primary-accent-fg: var(--color-fg-accent-primary);
|
|
545
546
|
--color-primary-active: var(--color-bg-primary-active);
|
|
547
|
+
--color-primary-alpha-10: oklch(0.807 0.101 250.446 / 0.1);
|
|
546
548
|
--color-primary-disabled: var(--color-bg-disabled);
|
|
547
549
|
--color-primary-hover: var(--color-bg-primary-hover);
|
|
548
550
|
--color-primary-light: var(--color-bg-light-primary-base);
|
|
@@ -801,14 +803,14 @@
|
|
|
801
803
|
--color-table-border: var(--color-border-primary);
|
|
802
804
|
--color-table-caption-fg: var(--color-fg-secondary);
|
|
803
805
|
--color-table-fg: var(--color-fg-primary);
|
|
804
|
-
--color-table-footer-bg: var(--color-
|
|
806
|
+
--color-table-footer-bg: var(--color-fill-base);
|
|
805
807
|
--color-table-footer-fg: var(--color-fg-secondary);
|
|
806
|
-
--color-table-header-bg: var(--color-
|
|
808
|
+
--color-table-header-bg: var(--color-fill-base);
|
|
807
809
|
--color-table-header-fg: var(--color-fg-primary);
|
|
808
810
|
--color-table-row-bg: var(--color-bg-transparent);
|
|
809
|
-
--color-table-row-bg-hover: var(--color-
|
|
810
|
-
--color-table-row-bg-selected: var(--color-
|
|
811
|
-
--color-table-row-striped-primary: var(--color-
|
|
811
|
+
--color-table-row-bg-hover: var(--color-fill-hover);
|
|
812
|
+
--color-table-row-bg-selected: var(--color-fill-selected);
|
|
813
|
+
--color-table-row-striped-primary: var(--color-fill-base);
|
|
812
814
|
--color-table-row-striped-secondary: var(--color-bg-transparent);
|
|
813
815
|
--color-tabs-bg: var(--color-fill-surface);
|
|
814
816
|
--color-tabs-border-base: var(--color-border-primary);
|
|
@@ -1324,6 +1326,7 @@
|
|
|
1324
1326
|
--shadow-accordion-root-sm: var(--shadow-primary);
|
|
1325
1327
|
--shadow-color-select: var(--shadow-sm);
|
|
1326
1328
|
--shadow-dialog-content: var(--shadow-primary);
|
|
1329
|
+
--shadow-gallery-trigger: var(--shadow-sm);
|
|
1327
1330
|
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
|
|
1328
1331
|
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
1329
1332
|
--shadow-menu-content: var(--shadow-lg);
|
|
@@ -1333,6 +1336,7 @@
|
|
|
1333
1336
|
--shadow-select-content: var(--shadow-md);
|
|
1334
1337
|
--shadow-slider-thumb: var(--shadow-sm);
|
|
1335
1338
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1339
|
+
--shadow-table-outline: var(--shadow-sm);
|
|
1336
1340
|
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
|
|
1337
1341
|
--size-1: 0.06rem;
|
|
1338
1342
|
--size-12: 0.75rem;
|