@lawkit/ui 0.1.44 → 0.1.46

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.
@@ -10,7 +10,8 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
10
10
  gap: number;
11
11
  padding: `var(--${string})`;
12
12
  backgroundColor: "#f1f4f9";
13
- borderRadius: number;
13
+ borderRadius: `var(--${string})`;
14
+ overflow: "hidden";
14
15
  };
15
16
  };
16
17
  size: {
@@ -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" | "segmented";
2
+ export type RadioButtonGroupVariant = "fill" | "outline" | "subtle" | "secondary";
3
3
  export interface RadioButtonGroupItem {
4
4
  value: string;
5
5
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lawkit/ui",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "type": "module",
5
5
  "description": "LDS Design System — React component library with design tokens",
6
6
  "main": "./dist/index.js",