@pittorica/radio-react 0.25.0 → 0.26.1

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/README.md CHANGED
@@ -4,16 +4,46 @@ The `Radio` component.
4
4
 
5
5
  ## Installation
6
6
 
7
- ```bash
7
+ \`\`\`bash
8
8
  npm install @pittorica/radio-react
9
- ```
9
+ \`\`\`
10
10
 
11
11
  ## Usage
12
12
 
13
- ```jsx
13
+ \`\`\`jsx
14
14
  import { Radio } from '@pittorica/radio-react';
15
- // TODO: Add usage example
16
- ```
15
+
16
+ function MyForm() {
17
+ const [selectedValue, setSelectedValue] = useState('option1');
18
+
19
+ return (
20
+
21
+ <form>
22
+ <Radio
23
+ label="Option 1"
24
+ value="option1"
25
+ name="myRadioGroup"
26
+ checked={selectedValue === 'option1'}
27
+ onCheckedChange={(checked) => {
28
+ if (checked) setSelectedValue('option1');
29
+ }}
30
+ required // Mark as required
31
+ color="source" // Default color is now 'source'
32
+ />
33
+ <Radio
34
+ label="Option 2"
35
+ value="option2"
36
+ name="myRadioGroup"
37
+ checked={selectedValue === 'option2'}
38
+ onCheckedChange={(checked) => {
39
+ if (checked) setSelectedValue('option2');
40
+ }}
41
+ />
42
+ <button type="submit" disabled={!selectedValue}>Submit</button>
43
+ </form>
44
+ );
45
+ }
46
+ \`\`\`
17
47
 
18
48
  ## License
19
49
 
package/dist/Radio.d.ts CHANGED
@@ -8,18 +8,19 @@ export type RadioProps<E extends ElementType = 'button'> = Omit<BoxProps<E>, 'on
8
8
  checked?: boolean;
9
9
  defaultChecked?: boolean;
10
10
  disabled?: boolean;
11
- /** @default 'indigo' */
11
+ /** @default 'source' */
12
12
  color?: PittoricaColor;
13
13
  value?: string;
14
14
  name?: string;
15
15
  onCheckedChange?: (checked: boolean) => void;
16
+ required?: boolean;
16
17
  };
17
18
  /**
18
19
  * Primitive Radio component.
19
20
  * Fully polymorphic and agnostic foundation.
20
21
  */
21
22
  export declare const Radio: {
22
- <E extends ElementType = "button">({ checked, disabled, color, className, style, onCheckedChange, name, as, ...props }: RadioProps<E>): import("react/jsx-runtime").JSX.Element;
23
+ <E extends ElementType = "button">({ checked, defaultChecked, disabled, color, className, style, onCheckedChange, name, required, as, ...props }: RadioProps<E>): import("react/jsx-runtime").JSX.Element;
23
24
  displayName: string;
24
25
  };
25
26
  //# sourceMappingURL=Radio.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../src/Radio.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsB,KAAK,WAAW,EAAmB,MAAM,OAAO,CAAC;AAM9E,OAAO,EAAO,KAAK,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,WAAW,GAAG,QAAQ,IAAI,IAAI,CAC7D,QAAQ,CAAC,CAAC,CAAC,EACX,UAAU,CACX,GAAG;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,wBAAwB;IACxB,KAAK,CAAC,EAAE,cAAc,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;CAC9C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK;KAAI,CAAC,SAAS,WAAW,kGAUxC,UAAU,CAAC,CAAC,CAAC;;CA0Cf,CAAC"}
1
+ {"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../src/Radio.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,WAAW,EAGjB,MAAM,OAAO,CAAC;AAMf,OAAO,EAAO,KAAK,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,WAAW,GAAG,QAAQ,IAAI,IAAI,CAC7D,QAAQ,CAAC,CAAC,CAAC,EACX,UAAU,CACX,GAAG;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,wBAAwB;IACxB,KAAK,CAAC,EAAE,cAAc,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7C,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK;KAAI,CAAC,SAAS,WAAW,4HAYxC,UAAU,CAAC,CAAC,CAAC;;CAoDf,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
- export type { RadioProps } from './Radio.js';
2
- export { Radio } from './Radio.js';
1
+ export * from './Radio.js';
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
package/dist/index.js CHANGED
@@ -1,17 +1,17 @@
1
- import { jsx as u } from "react/jsx-runtime";
2
- import { forwardRef as _, createElement as $ } from "react";
3
- function x(t) {
4
- var r, i, a = "";
5
- if (typeof t == "string" || typeof t == "number") a += t;
6
- else if (typeof t == "object") if (Array.isArray(t)) {
7
- var o = t.length;
8
- for (r = 0; r < o; r++) t[r] && (i = x(t[r])) && (a && (a += " "), a += i);
9
- } else for (i in t) t[i] && (a && (a += " "), a += i);
10
- return a;
1
+ import { jsx as $ } from "react/jsx-runtime";
2
+ import { forwardRef as _, createElement as w, useState as z } from "react";
3
+ function C(i) {
4
+ var a, r, t = "";
5
+ if (typeof i == "string" || typeof i == "number") t += i;
6
+ else if (typeof i == "object") if (Array.isArray(i)) {
7
+ var o = i.length;
8
+ for (a = 0; a < o; a++) i[a] && (r = C(i[a])) && (t && (t += " "), t += r);
9
+ } else for (r in i) i[r] && (t && (t += " "), t += r);
10
+ return t;
11
11
  }
12
- function z() {
13
- for (var t, r, i = 0, a = "", o = arguments.length; i < o; i++) (t = arguments[i]) && (r = x(t)) && (a && (a += " "), a += r);
14
- return a;
12
+ function I() {
13
+ for (var i, a, r = 0, t = "", o = arguments.length; r < o; r++) (i = arguments[r]) && (a = C(i)) && (t && (t += " "), t += a);
14
+ return t;
15
15
  }
16
16
  /**
17
17
  * @license @tabler/icons-react v3.36.1 - MIT
@@ -46,32 +46,32 @@ var F = {
46
46
  * This source code is licensed under the MIT license.
47
47
  * See the LICENSE file in the root directory of this source tree.
48
48
  */
49
- const N = (t, r, i, a) => {
49
+ const x = (i, a, r, t) => {
50
50
  const o = _(
51
- ({ color: s = "currentColor", size: p = 24, stroke: d = 2, title: n, className: m, children: c, ...l }, g) => $(
51
+ ({ color: l = "currentColor", size: c = 24, stroke: m = 2, title: p, className: d, children: n, ...g }, u) => w(
52
52
  "svg",
53
53
  {
54
- ref: g,
55
- ...F[t],
56
- width: p,
57
- height: p,
58
- className: ["tabler-icon", `tabler-icon-${r}`, m].join(" "),
59
- ...t === "filled" ? {
60
- fill: s
54
+ ref: u,
55
+ ...F[i],
56
+ width: c,
57
+ height: c,
58
+ className: ["tabler-icon", `tabler-icon-${a}`, d].join(" "),
59
+ ...i === "filled" ? {
60
+ fill: l
61
61
  } : {
62
- strokeWidth: d,
63
- stroke: s
62
+ strokeWidth: m,
63
+ stroke: l
64
64
  },
65
- ...l
65
+ ...g
66
66
  },
67
67
  [
68
- n && $("title", { key: "svg-title" }, n),
69
- ...a.map(([f, v]) => $(f, v)),
70
- ...Array.isArray(c) ? c : [c]
68
+ p && w("title", { key: "svg-title" }, p),
69
+ ...t.map(([f, s]) => w(f, s)),
70
+ ...Array.isArray(n) ? n : [n]
71
71
  ]
72
72
  )
73
73
  );
74
- return o.displayName = `${i}`, o;
74
+ return o.displayName = `${r}`, o;
75
75
  };
76
76
  /**
77
77
  * @license @tabler/icons-react v3.36.1 - MIT
@@ -79,107 +79,114 @@ const N = (t, r, i, a) => {
79
79
  * This source code is licensed under the MIT license.
80
80
  * See the LICENSE file in the root directory of this source tree.
81
81
  */
82
- const I = [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", key: "svg-0" }]], M = N("outline", "circle", "Circle", I);
82
+ const M = [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", key: "svg-0" }]], S = x("outline", "circle", "Circle", M);
83
83
  /**
84
84
  * @license @tabler/icons-react v3.36.1 - MIT
85
85
  *
86
86
  * This source code is licensed under the MIT license.
87
87
  * See the LICENSE file in the root directory of this source tree.
88
88
  */
89
- const S = [["path", { d: "M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z", key: "svg-0" }]], E = N("filled", "circle-check-filled", "CircleCheckFilled", S);
90
- function A(t) {
91
- var r, i, a = "";
92
- if (typeof t == "string" || typeof t == "number") a += t;
93
- else if (typeof t == "object") if (Array.isArray(t)) {
94
- var o = t.length;
95
- for (r = 0; r < o; r++) t[r] && (i = A(t[r])) && (a && (a += " "), a += i);
96
- } else for (i in t) t[i] && (a && (a += " "), a += i);
97
- return a;
89
+ const E = [["path", { d: "M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z", key: "svg-0" }]], D = x("filled", "circle-check-filled", "CircleCheckFilled", E);
90
+ function N(i) {
91
+ var a, r, t = "";
92
+ if (typeof i == "string" || typeof i == "number") t += i;
93
+ else if (typeof i == "object") if (Array.isArray(i)) {
94
+ var o = i.length;
95
+ for (a = 0; a < o; a++) i[a] && (r = N(i[a])) && (t && (t += " "), t += r);
96
+ } else for (r in i) i[r] && (t && (t += " "), t += r);
97
+ return t;
98
98
  }
99
- function q() {
100
- for (var t, r, i = 0, a = "", o = arguments.length; i < o; i++) (t = arguments[i]) && (r = A(t)) && (a && (a += " "), a += r);
101
- return a;
99
+ function G() {
100
+ for (var i, a, r = 0, t = "", o = arguments.length; r < o; r++) (i = arguments[r]) && (a = N(i)) && (t && (t += " "), t += a);
101
+ return t;
102
102
  }
103
- const C = ({
104
- as: t,
105
- children: r,
106
- display: i,
107
- m: a,
103
+ const R = ({
104
+ as: i,
105
+ children: a,
106
+ display: r,
107
+ m: t,
108
108
  mt: o,
109
- mr: s,
110
- mb: p,
111
- ml: d,
112
- mx: n,
113
- my: m,
114
- p: c,
115
- pt: l,
116
- pr: g,
109
+ mr: l,
110
+ mb: c,
111
+ ml: m,
112
+ mx: p,
113
+ my: d,
114
+ p: n,
115
+ pt: g,
116
+ pr: u,
117
117
  pb: f,
118
- pl: v,
118
+ pl: s,
119
119
  px: h,
120
- py: y,
121
- width: b,
122
- height: w,
123
- position: k,
124
- style: R,
120
+ py: v,
121
+ width: k,
122
+ height: y,
123
+ position: b,
124
+ style: A,
125
125
  className: B,
126
126
  disabled: L,
127
- ...T
127
+ required: T,
128
+ ...j
128
129
  }) => {
129
- const j = t || "div", e = {};
130
- i && (e.display = i), b && (e.width = b), w && (e.height = w), k && (e.position = k), a && (e.margin = `var(--pittorica-space-${a})`), o && (e.marginTop = `var(--pittorica-space-${o})`), s && (e.marginRight = `var(--pittorica-space-${s})`), p && (e.marginBottom = `var(--pittorica-space-${p})`), d && (e.marginLeft = `var(--pittorica-space-${d})`), n && (e.marginLeft = `var(--pittorica-space-${n})`, e.marginRight = `var(--pittorica-space-${n})`), m && (e.marginTop = `var(--pittorica-space-${m})`, e.marginBottom = `var(--pittorica-space-${m})`), c && (e.padding = `var(--pittorica-space-${c})`), l && (e.paddingTop = `var(--pittorica-space-${l})`), g && (e.paddingRight = `var(--pittorica-space-${g})`), f && (e.paddingBottom = `var(--pittorica-space-${f})`), v && (e.paddingLeft = `var(--pittorica-space-${v})`), h && (e.paddingLeft = `var(--pittorica-space-${h})`, e.paddingRight = `var(--pittorica-space-${h})`), y && (e.paddingTop = `var(--pittorica-space-${y})`, e.paddingBottom = `var(--pittorica-space-${y})`);
130
+ const q = i || "div", e = {};
131
+ r && (e.display = r), k && (e.width = k), y && (e.height = y), b && (e.position = b), t && (e.margin = `var(--pittorica-space-${t})`), o && (e.marginTop = `var(--pittorica-space-${o})`), l && (e.marginRight = `var(--pittorica-space-${l})`), c && (e.marginBottom = `var(--pittorica-space-${c})`), m && (e.marginLeft = `var(--pittorica-space-${m})`), p && (e.marginLeft = `var(--pittorica-space-${p})`, e.marginRight = `var(--pittorica-space-${p})`), d && (e.marginTop = `var(--pittorica-space-${d})`, e.marginBottom = `var(--pittorica-space-${d})`), n && (e.padding = `var(--pittorica-space-${n})`), g && (e.paddingTop = `var(--pittorica-space-${g})`), u && (e.paddingRight = `var(--pittorica-space-${u})`), f && (e.paddingBottom = `var(--pittorica-space-${f})`), s && (e.paddingLeft = `var(--pittorica-space-${s})`), h && (e.paddingLeft = `var(--pittorica-space-${h})`, e.paddingRight = `var(--pittorica-space-${h})`), v && (e.paddingTop = `var(--pittorica-space-${v})`, e.paddingBottom = `var(--pittorica-space-${v})`);
131
132
  const W = {
132
- ...R,
133
+ ...A,
133
134
  ...e
134
135
  };
135
- return /* @__PURE__ */ u(
136
- j,
136
+ return /* @__PURE__ */ $(
137
+ q,
137
138
  {
138
- className: q("pittorica-box", B),
139
+ className: G("pittorica-box", B),
139
140
  style: W,
140
141
  disabled: L,
141
- ...T,
142
- children: r
142
+ required: T,
143
+ ...j,
144
+ children: a
143
145
  }
144
146
  );
145
147
  };
146
- C.displayName = "Box";
147
- const D = ({
148
- checked: t,
148
+ R.displayName = "Box";
149
+ const H = ({
150
+ checked: i,
151
+ defaultChecked: a,
149
152
  disabled: r,
150
- color: i = "indigo",
151
- className: a,
152
- style: o,
153
- onCheckedChange: s,
154
- name: p,
153
+ color: t = "source",
154
+ className: o,
155
+ style: l,
156
+ onCheckedChange: c,
157
+ name: m,
158
+ required: p = !1,
155
159
  as: d,
156
160
  ...n
157
161
  }) => {
158
- const c = i !== "inherit" && !(i != null && i.startsWith("#")) && !(i != null && i.startsWith("rgb")) ? `var(--pittorica-${i}-9)` : i, l = d || "button", g = (f) => {
159
- r || (s == null || s(!t), typeof n.onClick == "function" && n.onClick(f));
160
- };
161
- return /* @__PURE__ */ u(
162
- C,
162
+ const [g, u] = z(
163
+ a ?? !1
164
+ ), f = i !== void 0, s = f ? i : g, h = t !== "inherit" && !(t != null && t.startsWith("#")) && !(t != null && t.startsWith("rgb")) ? `var(--pittorica-${t}-9)` : t, v = d || "button";
165
+ return /* @__PURE__ */ $(
166
+ R,
163
167
  {
164
- as: l,
165
- type: l === "button" ? "button" : void 0,
168
+ as: v,
169
+ type: v === "button" ? "button" : void 0,
166
170
  role: "radio",
167
- name: p,
168
- "aria-checked": t,
169
- "data-state": t ? "checked" : "unchecked",
171
+ name: m,
172
+ "aria-checked": s,
173
+ "aria-required": p,
174
+ "data-state": s ? "checked" : "unchecked",
170
175
  disabled: r,
171
- className: z("pittorica-radio-root", a),
172
- onClick: g,
176
+ onClick: (y) => {
177
+ r || (f || u(!s), c == null || c(!s), typeof n.onClick == "function" && n.onClick(y));
178
+ },
179
+ className: I("pittorica-radio-root", o),
173
180
  style: {
174
- "--pittorica-source-color": c,
175
- ...o
181
+ "--pittorica-source-color": h,
182
+ ...l
176
183
  },
177
184
  ...n,
178
- children: t ? /* @__PURE__ */ u(E, { size: 14 }) : /* @__PURE__ */ u(M, { size: 14, opacity: 0.5 })
185
+ children: s ? /* @__PURE__ */ $(D, { size: 14 }) : /* @__PURE__ */ $(S, { size: 14, opacity: 0.5 })
179
186
  }
180
187
  );
181
188
  };
182
- D.displayName = "Radio";
189
+ H.displayName = "Radio";
183
190
  export {
184
- D as Radio
191
+ H as Radio
185
192
  };
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@pittorica/radio-react",
3
- "version": "0.25.0",
3
+ "version": "0.26.1",
4
+ "homepage": "https://pittorica.dcdavidev.me",
4
5
  "type": "module",
5
6
  "main": "./dist/index.js",
6
7
  "module": "./dist/index.js",
@@ -11,8 +12,8 @@
11
12
  "dependencies": {
12
13
  "@tabler/icons-react": "^3.36.1",
13
14
  "clsx": "^2.1.1",
14
- "@pittorica/box-react": "0.25.0",
15
- "@pittorica/text-react": "0.25.0"
15
+ "@pittorica/box-react": "0.26.1",
16
+ "@pittorica/text-react": "0.26.1"
16
17
  },
17
18
  "devDependencies": {
18
19
  "@testing-library/jest-dom": "^6.9.1",
@@ -22,11 +23,11 @@
22
23
  "@vitejs/plugin-react": "^4.0.0",
23
24
  "jsdom": "^22.0.0",
24
25
  "typescript": "^5.0.0",
25
- "vite": "^5.0.0",
26
- "vitest": "^2.1.9",
27
- "@pittorica/flex-react": "0.25.0",
28
- "@pittorica/theme-react": "0.25.0",
29
- "pittorica": "0.25.0"
26
+ "vite": "^6.4.1",
27
+ "vitest": "^3.2.4",
28
+ "@pittorica/theme-react": "0.26.1",
29
+ "pittorica": "0.26.1",
30
+ "@pittorica/flex-react": "0.26.1"
30
31
  },
31
32
  "peerDependencies": {
32
33
  "react": ">=19",
@@ -36,7 +37,7 @@
36
37
  "build": "npm run clean && npm run build:js && npm run build:types",
37
38
  "build:js": "vite build",
38
39
  "build:types": "tsc -p tsconfig.json",
39
- "clean": "rm -rf dist",
40
+ "clean": "rm -rf dist *.tsbuildinfo",
40
41
  "test": "vitest run",
41
42
  "test:watch": "vitest"
42
43
  }
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { Radio } from './Radio.js';
3
- declare const meta: Meta<typeof Radio>;
4
- export default meta;
5
- export declare const Basic: StoryObj<typeof Radio>;
6
- export declare const Colors: StoryObj<typeof Radio>;
7
- export declare const States: StoryObj<typeof Radio>;
8
- //# sourceMappingURL=Radio.stories.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Radio.stories.d.ts","sourceRoot":"","sources":["../src/Radio.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,KAAK,CAI5B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,OAAO,KAAK,CAYxC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,OAAO,KAAK,CASzC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,OAAO,KAAK,CAiBzC,CAAC"}
@@ -1,5 +0,0 @@
1
- /**
2
- * @vitest-environment jsdom
3
- */
4
- import '@testing-library/jest-dom';
5
- //# sourceMappingURL=Radio.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Radio.test.d.ts","sourceRoot":"","sources":["../src/Radio.test.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,2BAA2B,CAAC"}