@nation-a/ui 0.17.4 → 0.17.6
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -9
- package/dist/index.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/styled-system/styles.css +12 -8
- package/dist/types/components/Tabs/index.d.ts +30 -12
- package/dist/types/components/Tabs/tabs.recipe.d.ts +10 -4
- package/package.json +2 -2
|
@@ -1421,10 +1421,6 @@ html:not(#\#),body:not(#\#) {
|
|
|
1421
1421
|
background: var(--colors-content-neutral-bold);
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
.p_16px_0_0_16px:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1425
|
-
padding: 16px 0 0 16px;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
1424
|
.bg_background\.static\.whiteAlpha\.bold:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1429
1425
|
background: var(--colors-background-static-white-alpha-bold);
|
|
1430
1426
|
}
|
|
@@ -1677,16 +1673,16 @@ html:not(#\#),body:not(#\#) {
|
|
|
1677
1673
|
border-color: var(--colors-background-neutral-selected);
|
|
1678
1674
|
}
|
|
1679
1675
|
|
|
1680
|
-
.gap_16:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1681
|
-
gap: var(--spacing-16);
|
|
1682
|
-
}
|
|
1683
|
-
|
|
1684
1676
|
.trs_all:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1685
1677
|
transition-property: var(--transition-prop, all);
|
|
1686
1678
|
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
1687
1679
|
transition-duration: var(--transition-duration, 150ms);
|
|
1688
1680
|
}
|
|
1689
1681
|
|
|
1682
|
+
.px_0:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1683
|
+
padding-inline: var(--spacing-0);
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1690
1686
|
.ov_hidden:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1691
1687
|
overflow: hidden;
|
|
1692
1688
|
}
|
|
@@ -2592,6 +2588,14 @@ html:not(#\#),body:not(#\#) {
|
|
|
2592
2588
|
border-bottom-width: 0px;
|
|
2593
2589
|
}
|
|
2594
2590
|
|
|
2591
|
+
.pt_3:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
2592
|
+
padding-top: var(--spacing-3);
|
|
2593
|
+
}
|
|
2594
|
+
|
|
2595
|
+
.pb_1\.5:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
2596
|
+
padding-bottom: var(--spacing-1\.5);
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2595
2599
|
.pt_4:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
2596
2600
|
padding-top: var(--spacing-4);
|
|
2597
2601
|
}
|
|
@@ -7,15 +7,21 @@ declare const Root: import('../../../styled-system/jsx').StyleContextProvider<im
|
|
|
7
7
|
borderBottomWidth: "1px";
|
|
8
8
|
borderColor: "background.neutral.selected";
|
|
9
9
|
};
|
|
10
|
+
trigger: {
|
|
11
|
+
px: number;
|
|
12
|
+
pt: number;
|
|
13
|
+
pb: number;
|
|
14
|
+
};
|
|
10
15
|
};
|
|
11
16
|
enclosed: {
|
|
12
17
|
list: {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
gap: "16";
|
|
18
|
+
rounded: "md";
|
|
19
|
+
gap: number;
|
|
16
20
|
};
|
|
17
21
|
trigger: {
|
|
18
|
-
|
|
22
|
+
rounded: "full";
|
|
23
|
+
px: number;
|
|
24
|
+
py: number;
|
|
19
25
|
_selected: {
|
|
20
26
|
background: "background.neutral.selected";
|
|
21
27
|
};
|
|
@@ -81,15 +87,21 @@ declare const Tabs: import('../../../styled-system/jsx').StyleContextProvider<im
|
|
|
81
87
|
borderBottomWidth: "1px";
|
|
82
88
|
borderColor: "background.neutral.selected";
|
|
83
89
|
};
|
|
90
|
+
trigger: {
|
|
91
|
+
px: number;
|
|
92
|
+
pt: number;
|
|
93
|
+
pb: number;
|
|
94
|
+
};
|
|
84
95
|
};
|
|
85
96
|
enclosed: {
|
|
86
97
|
list: {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
gap: "16";
|
|
98
|
+
rounded: "md";
|
|
99
|
+
gap: number;
|
|
90
100
|
};
|
|
91
101
|
trigger: {
|
|
92
|
-
|
|
102
|
+
rounded: "full";
|
|
103
|
+
px: number;
|
|
104
|
+
py: number;
|
|
93
105
|
_selected: {
|
|
94
106
|
background: "background.neutral.selected";
|
|
95
107
|
};
|
|
@@ -146,15 +158,21 @@ declare const Tabs: import('../../../styled-system/jsx').StyleContextProvider<im
|
|
|
146
158
|
borderBottomWidth: "1px";
|
|
147
159
|
borderColor: "background.neutral.selected";
|
|
148
160
|
};
|
|
161
|
+
trigger: {
|
|
162
|
+
px: number;
|
|
163
|
+
pt: number;
|
|
164
|
+
pb: number;
|
|
165
|
+
};
|
|
149
166
|
};
|
|
150
167
|
enclosed: {
|
|
151
168
|
list: {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
gap: "16";
|
|
169
|
+
rounded: "md";
|
|
170
|
+
gap: number;
|
|
155
171
|
};
|
|
156
172
|
trigger: {
|
|
157
|
-
|
|
173
|
+
rounded: "full";
|
|
174
|
+
px: number;
|
|
175
|
+
py: number;
|
|
158
176
|
_selected: {
|
|
159
177
|
background: "background.neutral.selected";
|
|
160
178
|
};
|
|
@@ -7,15 +7,21 @@ export declare const tabsRecipe: import('../../../styled-system/types').SlotReci
|
|
|
7
7
|
borderBottomWidth: "1px";
|
|
8
8
|
borderColor: "background.neutral.selected";
|
|
9
9
|
};
|
|
10
|
+
trigger: {
|
|
11
|
+
px: number;
|
|
12
|
+
pt: number;
|
|
13
|
+
pb: number;
|
|
14
|
+
};
|
|
10
15
|
};
|
|
11
16
|
enclosed: {
|
|
12
17
|
list: {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
gap: "16";
|
|
18
|
+
rounded: "md";
|
|
19
|
+
gap: number;
|
|
16
20
|
};
|
|
17
21
|
trigger: {
|
|
18
|
-
|
|
22
|
+
rounded: "full";
|
|
23
|
+
px: number;
|
|
24
|
+
py: number;
|
|
19
25
|
_selected: {
|
|
20
26
|
background: "background.neutral.selected";
|
|
21
27
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nation-a/ui",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/types/index.d.ts",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"react-dom": "^19.2.0",
|
|
23
23
|
"react-hot-toast": "^2.6.0",
|
|
24
24
|
"react-lottie": "^1.2.10",
|
|
25
|
-
"@nation-a/icons": "0.5.
|
|
25
|
+
"@nation-a/icons": "0.5.2",
|
|
26
26
|
"@nation-a/tokens": "0.4.3"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|