@nation-a/ui 0.16.23 → 0.16.25
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 +9 -7
- package/dist/index.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/styled-system/styles.css +18 -2
- package/dist/types/components/Navigation/index.d.ts +1 -10
- package/package.json +2 -2
|
@@ -2810,8 +2810,8 @@ html:not(#\#),body:not(#\#) {
|
|
|
2810
2810
|
color: var(--colors-content-neutral-default);
|
|
2811
2811
|
}
|
|
2812
2812
|
|
|
2813
|
-
.selected\:
|
|
2814
|
-
background:
|
|
2813
|
+
.selected\:bg_\#00000008:is([aria-selected=true], [data-selected]):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
2814
|
+
background: #00000008;
|
|
2815
2815
|
}
|
|
2816
2816
|
|
|
2817
2817
|
.vertical\:gap_4[data-orientation=vertical]:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
@@ -3322,6 +3322,10 @@ html:not(#\#),body:not(#\#) {
|
|
|
3322
3322
|
color: var(--colors-content-neutral-disabled);
|
|
3323
3323
|
}
|
|
3324
3324
|
|
|
3325
|
+
.dark:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .selected\:dark\:bg_\#FFFFFF08:is([aria-selected=true], [data-selected]) {
|
|
3326
|
+
background: #FFFFFF08;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3325
3329
|
.checked\:disabled\:bg_content\.neutral\.disabled:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]):is(:disabled, [disabled], [data-disabled]):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
3326
3330
|
background: var(--colors-content-neutral-disabled);
|
|
3327
3331
|
}
|
|
@@ -3426,6 +3430,12 @@ html:not(#\#),body:not(#\#) {
|
|
|
3426
3430
|
}
|
|
3427
3431
|
}
|
|
3428
3432
|
|
|
3433
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3434
|
+
.hover\:bg_\#00000012:is(:hover, [data-hover]):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
3435
|
+
background: #00000012;
|
|
3436
|
+
}
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3429
3439
|
@media (hover: hover) and (pointer: fine) {
|
|
3430
3440
|
.hover\:bd-c_white\.800A:is(:hover, [data-hover]):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
3431
3441
|
border-color: var(--colors-white-800-a);
|
|
@@ -3468,6 +3478,12 @@ html:not(#\#),body:not(#\#) {
|
|
|
3468
3478
|
}
|
|
3469
3479
|
}
|
|
3470
3480
|
|
|
3481
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3482
|
+
.dark:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .hover\:dark\:bg_\#FFFFFF12:is(:hover, [data-hover]) {
|
|
3483
|
+
background: #FFFFFF12;
|
|
3484
|
+
}
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3471
3487
|
@media (hover: hover) and (pointer: fine) {
|
|
3472
3488
|
.checked\:hover\:bg_content\.neutral\.subtle:is(:hover, [data-hover]):is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
3473
3489
|
background: var(--colors-content-neutral-subtle);
|
|
@@ -5,16 +5,7 @@ import { HTMLStyledProps } from '../../../styled-system/jsx';
|
|
|
5
5
|
export type NavigationProps = ComponentProps<typeof Root>;
|
|
6
6
|
type RootProps = Assign<HTMLStyledProps<'div'>, ArkTabs.RootProps>;
|
|
7
7
|
declare const Root: (props: RootProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export type NavigationTriggerProps = Assign<HTMLStyledProps<'button'>, ArkTabs.TriggerBaseProps
|
|
9
|
-
/**
|
|
10
|
-
* The icon to display in the trigger.
|
|
11
|
-
*/
|
|
12
|
-
icon: React.ReactNode;
|
|
13
|
-
/**
|
|
14
|
-
* The label to display in the trigger.
|
|
15
|
-
*/
|
|
16
|
-
label: string;
|
|
17
|
-
};
|
|
8
|
+
export type NavigationTriggerProps = Assign<HTMLStyledProps<'button'>, ArkTabs.TriggerBaseProps>;
|
|
18
9
|
type ListProps = Assign<HTMLStyledProps<'div'>, ArkTabs.ListBaseProps>;
|
|
19
10
|
declare const Navigation: {
|
|
20
11
|
Root: (props: RootProps) => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nation-a/ui",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.25",
|
|
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": "^18.3.1",
|
|
23
23
|
"react-hot-toast": "^2.5.2",
|
|
24
24
|
"react-lottie": "^1.2.10",
|
|
25
|
-
"@nation-a/icons": "0.4.
|
|
25
|
+
"@nation-a/icons": "0.4.3",
|
|
26
26
|
"@nation-a/tokens": "0.4.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|