@lawkit/ui 0.1.44 → 0.1.45
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.css +1 -1
- package/dist/index.js +468 -468
- package/dist/ui-v3/src/components/ButtonGroup/ButtonGroup.css.d.ts +1 -1
- package/dist/ui-v3/src/components/RadioButtonGroup/RadioButtonGroup.css.d.ts +0 -24
- package/dist/ui-v3/src/components/RadioButtonGroup/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@ export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
segmented: {
|
|
58
|
-
borderRadius:
|
|
58
|
+
borderRadius: `var(--${string})`;
|
|
59
59
|
backgroundColor: "transparent";
|
|
60
60
|
color: `var(--${string})`;
|
|
61
61
|
border: "1px solid transparent";
|
|
@@ -1,17 +1,4 @@
|
|
|
1
1
|
export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
2
|
-
variant: {
|
|
3
|
-
fill: {};
|
|
4
|
-
outline: {};
|
|
5
|
-
subtle: {};
|
|
6
|
-
secondary: {};
|
|
7
|
-
segmented: {
|
|
8
|
-
alignItems: "center";
|
|
9
|
-
gap: number;
|
|
10
|
-
padding: `var(--${string})`;
|
|
11
|
-
backgroundColor: "#f1f4f9";
|
|
12
|
-
borderRadius: number;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
2
|
size: {
|
|
16
3
|
small: {};
|
|
17
4
|
medium: {};
|
|
@@ -86,17 +73,6 @@ export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
86
73
|
};
|
|
87
74
|
};
|
|
88
75
|
};
|
|
89
|
-
segmented: {
|
|
90
|
-
border: "1px solid transparent";
|
|
91
|
-
borderRadius: number;
|
|
92
|
-
backgroundColor: "transparent";
|
|
93
|
-
color: `var(--${string})`;
|
|
94
|
-
selectors: {
|
|
95
|
-
"&:hover:not([aria-checked='true'])": {
|
|
96
|
-
color: `var(--${string})`;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
76
|
};
|
|
101
77
|
size: {
|
|
102
78
|
small: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
export type RadioButtonGroupVariant = "fill" | "outline" | "subtle" | "secondary"
|
|
2
|
+
export type RadioButtonGroupVariant = "fill" | "outline" | "subtle" | "secondary";
|
|
3
3
|
export interface RadioButtonGroupItem {
|
|
4
4
|
value: string;
|
|
5
5
|
label: string;
|