@data-c/ui 0.2.44 → 0.2.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.
package/dist/index.d.ts CHANGED
@@ -1073,9 +1073,10 @@ interface TransporterValue {
1073
1073
  key: string | number;
1074
1074
  label: string;
1075
1075
  }
1076
- interface TransporterBaseProps<T = TransporterValue, D = T> {
1076
+ interface TransporterBaseProps<T = TransporterValue, D = T, E = any> {
1077
1077
  value?: T | null;
1078
1078
  onChange: (value: T, details?: D) => void;
1079
+ extras?: E;
1079
1080
  name?: string;
1080
1081
  label?: string;
1081
1082
  error?: boolean;