@wistia/ui 0.9.4 → 0.9.5-beta.710b9e02.ea620db
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 +434 -419
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +388 -373
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -20
package/dist/index.d.mts
CHANGED
|
@@ -1360,7 +1360,7 @@ type RadioGroupProps = FormGroupProps & {
|
|
|
1360
1360
|
name?: string | undefined;
|
|
1361
1361
|
};
|
|
1362
1362
|
/**
|
|
1363
|
-
* For grouping like form elements
|
|
1363
|
+
* For grouping like form elements together. Can serve as a checkbox
|
|
1364
1364
|
*/
|
|
1365
1365
|
declare const RadioGroup: {
|
|
1366
1366
|
({ children, name, onChange, value, ...props }: RadioGroupProps): JSX.Element;
|
|
@@ -1373,7 +1373,7 @@ type CheckboxGroupProps = FormGroupProps & {
|
|
|
1373
1373
|
name?: string | undefined;
|
|
1374
1374
|
};
|
|
1375
1375
|
/**
|
|
1376
|
-
* For grouping like form elements
|
|
1376
|
+
* For grouping like form elements together. Can serve as a checkbox
|
|
1377
1377
|
*/
|
|
1378
1378
|
declare const CheckboxGroup: {
|
|
1379
1379
|
({ children, name, onChange, value, ...props }: CheckboxGroupProps): JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1360,7 +1360,7 @@ type RadioGroupProps = FormGroupProps & {
|
|
|
1360
1360
|
name?: string | undefined;
|
|
1361
1361
|
};
|
|
1362
1362
|
/**
|
|
1363
|
-
* For grouping like form elements
|
|
1363
|
+
* For grouping like form elements together. Can serve as a checkbox
|
|
1364
1364
|
*/
|
|
1365
1365
|
declare const RadioGroup: {
|
|
1366
1366
|
({ children, name, onChange, value, ...props }: RadioGroupProps): JSX.Element;
|
|
@@ -1373,7 +1373,7 @@ type CheckboxGroupProps = FormGroupProps & {
|
|
|
1373
1373
|
name?: string | undefined;
|
|
1374
1374
|
};
|
|
1375
1375
|
/**
|
|
1376
|
-
* For grouping like form elements
|
|
1376
|
+
* For grouping like form elements together. Can serve as a checkbox
|
|
1377
1377
|
*/
|
|
1378
1378
|
declare const CheckboxGroup: {
|
|
1379
1379
|
({ children, name, onChange, value, ...props }: CheckboxGroupProps): JSX.Element;
|