@wistia/ui 0.15.9 → 0.15.10-beta.1b2ddec0.ec8b5b2

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
@@ -1218,6 +1218,7 @@ declare const iconMap: {
1218
1218
  close: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1219
1219
  'close-octagon': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1220
1220
  'closed-captions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1221
+ cmd: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1221
1222
  collapse: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1222
1223
  'collapse-diagonal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1223
1224
  collection: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -1263,6 +1264,7 @@ declare const iconMap: {
1263
1264
  import: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1264
1265
  info: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1265
1266
  integrations: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1267
+ keyboard: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1266
1268
  layout: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1267
1269
  leave: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1268
1270
  'light-bulb': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -1565,8 +1567,16 @@ declare const ValueNameOrHexCode: {
1565
1567
  displayName: string;
1566
1568
  };
1567
1569
 
1570
+ type ColorSwatchProps = PropsWithChildren<{
1571
+ derivativeIsSelected?: boolean;
1572
+ diameterPx?: number;
1573
+ isSelected?: boolean;
1574
+ value: string;
1575
+ }>;
1576
+
1577
+ type ValueSwatchProps = Pick<ColorSwatchProps, 'diameterPx'>;
1568
1578
  declare const ValueSwatch: {
1569
- (): JSX$1.Element;
1579
+ ({ diameterPx, }: ValueSwatchProps): JSX$1.Element;
1570
1580
  displayName: string;
1571
1581
  };
1572
1582
 
package/dist/index.d.ts CHANGED
@@ -1218,6 +1218,7 @@ declare const iconMap: {
1218
1218
  close: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1219
1219
  'close-octagon': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1220
1220
  'closed-captions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1221
+ cmd: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1221
1222
  collapse: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1222
1223
  'collapse-diagonal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1223
1224
  collection: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -1263,6 +1264,7 @@ declare const iconMap: {
1263
1264
  import: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1264
1265
  info: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1265
1266
  integrations: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1267
+ keyboard: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1266
1268
  layout: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1267
1269
  leave: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1268
1270
  'light-bulb': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -1565,8 +1567,16 @@ declare const ValueNameOrHexCode: {
1565
1567
  displayName: string;
1566
1568
  };
1567
1569
 
1570
+ type ColorSwatchProps = PropsWithChildren<{
1571
+ derivativeIsSelected?: boolean;
1572
+ diameterPx?: number;
1573
+ isSelected?: boolean;
1574
+ value: string;
1575
+ }>;
1576
+
1577
+ type ValueSwatchProps = Pick<ColorSwatchProps, 'diameterPx'>;
1568
1578
  declare const ValueSwatch: {
1569
- (): JSX$1.Element;
1579
+ ({ diameterPx, }: ValueSwatchProps): JSX$1.Element;
1570
1580
  displayName: string;
1571
1581
  };
1572
1582