@data-c/ui 0.2.23 → 0.2.25
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 +3 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -938,9 +938,9 @@ interface TransporterValue {
|
|
|
938
938
|
key: string | number;
|
|
939
939
|
label: string;
|
|
940
940
|
}
|
|
941
|
-
interface TransporterBaseProps<T = TransporterValue> {
|
|
941
|
+
interface TransporterBaseProps<T = TransporterValue, D = T> {
|
|
942
942
|
value?: T | null;
|
|
943
|
-
onChange: (value: T) => void;
|
|
943
|
+
onChange: (value: T, details: D) => void;
|
|
944
944
|
name?: string;
|
|
945
945
|
label?: string;
|
|
946
946
|
error?: boolean;
|
|
@@ -948,6 +948,7 @@ interface TransporterBaseProps<T = TransporterValue> {
|
|
|
948
948
|
required?: boolean;
|
|
949
949
|
disabled?: boolean;
|
|
950
950
|
autoFocus?: boolean;
|
|
951
|
+
scope?: string;
|
|
951
952
|
}
|
|
952
953
|
|
|
953
954
|
type TipoDocumento = 'cpf' | 'cnpj' | 'auto';
|
package/dist/index.js
CHANGED
|
@@ -209,7 +209,7 @@ react-is/cjs/react-is.development.js:
|
|
|
209
209
|
|
|
210
210
|
@mui/styled-engine/esm/index.js:
|
|
211
211
|
(**
|
|
212
|
-
* @mui/styled-engine v7.3.
|
|
212
|
+
* @mui/styled-engine v7.3.2
|
|
213
213
|
*
|
|
214
214
|
* @license MIT
|
|
215
215
|
* This source code is licensed under the MIT license found in the
|
|
@@ -218,7 +218,7 @@ react-is/cjs/react-is.development.js:
|
|
|
218
218
|
|
|
219
219
|
@mui/system/esm/index.js:
|
|
220
220
|
(**
|
|
221
|
-
* @mui/system v7.3.
|
|
221
|
+
* @mui/system v7.3.2
|
|
222
222
|
*
|
|
223
223
|
* @license MIT
|
|
224
224
|
* This source code is licensed under the MIT license found in the
|