@wistia/ui 0.14.1 → 0.14.2

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.d.mts CHANGED
@@ -1420,9 +1420,11 @@ type CollapsibleContentProps = {
1420
1420
  };
1421
1421
  declare const CollapsibleContent: ({ clamp, children }: CollapsibleContentProps) => react_jsx_runtime.JSX.Element;
1422
1422
 
1423
- type ColorGridProps = PropsWithChildren;
1423
+ type ColorGridProps = PropsWithChildren & {
1424
+ label?: string;
1425
+ };
1424
1426
  declare const ColorGrid: {
1425
- ({ children }: ColorGridProps): JSX.Element;
1427
+ ({ children, label }: ColorGridProps): JSX.Element;
1426
1428
  displayName: string;
1427
1429
  };
1428
1430
 
package/dist/index.d.ts CHANGED
@@ -1420,9 +1420,11 @@ type CollapsibleContentProps = {
1420
1420
  };
1421
1421
  declare const CollapsibleContent: ({ clamp, children }: CollapsibleContentProps) => react_jsx_runtime.JSX.Element;
1422
1422
 
1423
- type ColorGridProps = PropsWithChildren;
1423
+ type ColorGridProps = PropsWithChildren & {
1424
+ label?: string;
1425
+ };
1424
1426
  declare const ColorGrid: {
1425
- ({ children }: ColorGridProps): JSX.Element;
1427
+ ({ children, label }: ColorGridProps): JSX.Element;
1426
1428
  displayName: string;
1427
1429
  };
1428
1430