@data-c/ui 0.2.61 → 0.2.63
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 -1
- package/dist/index.js +19 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -10289,7 +10289,9 @@ function Autocomplete(props) {
|
|
|
10289
10289
|
} = props;
|
|
10290
10290
|
function resetEndAdornment(endAdornment, isLoading2 = false, disabled2 = false) {
|
|
10291
10291
|
if (endAdornment) {
|
|
10292
|
-
const children = React12.Children.toArray(
|
|
10292
|
+
const children = React12.Children.toArray(
|
|
10293
|
+
endAdornment.props?.children
|
|
10294
|
+
);
|
|
10293
10295
|
const pos = children.length === 1 ? 0 : 1;
|
|
10294
10296
|
children.splice(
|
|
10295
10297
|
pos,
|
|
@@ -11374,7 +11376,7 @@ var key = null;
|
|
|
11374
11376
|
var wasSelected = false;
|
|
11375
11377
|
var CurrencyTextField = forwardRef2(
|
|
11376
11378
|
(props, ref) => {
|
|
11377
|
-
const { value, onChange, sx, ...rest } = props;
|
|
11379
|
+
const { value = 0, onChange, sx, ...rest } = props;
|
|
11378
11380
|
key = null;
|
|
11379
11381
|
const handleChange = useCallback4(
|
|
11380
11382
|
(e) => {
|
|
@@ -11435,9 +11437,6 @@ var CurrencyTextField = forwardRef2(
|
|
|
11435
11437
|
);
|
|
11436
11438
|
}
|
|
11437
11439
|
);
|
|
11438
|
-
CurrencyTextField.defaultProps = {
|
|
11439
|
-
value: 0
|
|
11440
|
-
};
|
|
11441
11440
|
var CurrencyTextField_default = CurrencyTextField;
|
|
11442
11441
|
|
|
11443
11442
|
// src/AlterarLicenca/index.tsx
|
|
@@ -12386,6 +12385,15 @@ function Profile(props) {
|
|
|
12386
12385
|
] })
|
|
12387
12386
|
] }) });
|
|
12388
12387
|
}
|
|
12388
|
+
|
|
12389
|
+
// src/index.ts
|
|
12390
|
+
import { default as default2 } from "@mui/material/CssBaseline";
|
|
12391
|
+
import {
|
|
12392
|
+
createTheme as createTheme2,
|
|
12393
|
+
styled as styled10,
|
|
12394
|
+
ThemeProvider,
|
|
12395
|
+
useTheme as useTheme12
|
|
12396
|
+
} from "@mui/material/styles";
|
|
12389
12397
|
export {
|
|
12390
12398
|
AlterarLicenca,
|
|
12391
12399
|
AlterarSenha,
|
|
@@ -12401,6 +12409,7 @@ export {
|
|
|
12401
12409
|
ColorsGrid,
|
|
12402
12410
|
Content2 as Content,
|
|
12403
12411
|
ContentTitle_default as ContentTitle,
|
|
12412
|
+
default2 as CssBaseline,
|
|
12404
12413
|
CurrencyCellStyle,
|
|
12405
12414
|
CurrencyTextField_default as CurrencyTextField,
|
|
12406
12415
|
DataTable_default as DataTable,
|
|
@@ -12437,15 +12446,19 @@ export {
|
|
|
12437
12446
|
Surface,
|
|
12438
12447
|
TelefoneTextField,
|
|
12439
12448
|
TextField13 as TextField,
|
|
12449
|
+
ThemeProvider,
|
|
12440
12450
|
Title4 as Title,
|
|
12441
12451
|
Tooltip_default as Tooltip,
|
|
12442
12452
|
Transporter_default as Transporter,
|
|
12453
|
+
createTheme2 as createTheme,
|
|
12443
12454
|
renderMenuItems,
|
|
12455
|
+
styled10 as styled,
|
|
12444
12456
|
theme_default as theme,
|
|
12445
12457
|
useDialogs2 as useDialogs,
|
|
12446
12458
|
useFilter,
|
|
12447
12459
|
useFilterApi3 as useFilterApi,
|
|
12448
12460
|
useMenu,
|
|
12461
|
+
useTheme12 as useTheme,
|
|
12449
12462
|
useTransporter
|
|
12450
12463
|
};
|
|
12451
12464
|
//# sourceMappingURL=index.mjs.map
|