@data-c/ui 0.2.85 → 0.2.88
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.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -5054,7 +5054,7 @@ var TupleSchema = class extends Schema {
|
|
|
5054
5054
|
create$1.prototype = TupleSchema.prototype;
|
|
5055
5055
|
|
|
5056
5056
|
// src/AlterarSenha/index.tsx
|
|
5057
|
-
var
|
|
5057
|
+
var _InfoOutlined = require('@mui/icons-material/InfoOutlined'); var _InfoOutlined2 = _interopRequireDefault(_InfoOutlined);
|
|
5058
5058
|
|
|
5059
5059
|
|
|
5060
5060
|
|
|
@@ -9314,10 +9314,12 @@ function TransporterRoot(props) {
|
|
|
9314
9314
|
|
|
9315
9315
|
// src/v2/Transporter/TransporterTextField.tsx
|
|
9316
9316
|
|
|
9317
|
+
|
|
9317
9318
|
function TransporterTextField(props) {
|
|
9318
|
-
const { disableLocalFiltering, renderOption, ...rest } = props;
|
|
9319
|
+
const { disableLocalFiltering, renderOption, endAdornment, ...rest } = props;
|
|
9319
9320
|
const scope = useTransporterScope();
|
|
9320
9321
|
const { openTransporter, triggerOnChange, value } = useTransporter(scope);
|
|
9322
|
+
const defaultEndAdornment = /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.IconButton, { onClick: () => openTransporter(), edge: "end", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, LucidIcon_default, { name: "ArrowUpRight", size: 18 }) });
|
|
9321
9323
|
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
9322
9324
|
Autocomplete,
|
|
9323
9325
|
{
|
|
@@ -9332,6 +9334,7 @@ function TransporterTextField(props) {
|
|
|
9332
9334
|
}
|
|
9333
9335
|
},
|
|
9334
9336
|
renderOption,
|
|
9337
|
+
endAdornment: { ...defaultEndAdornment, ...endAdornment },
|
|
9335
9338
|
...rest
|
|
9336
9339
|
}
|
|
9337
9340
|
);
|
|
@@ -10463,7 +10466,7 @@ function AlterarSenha(props) {
|
|
|
10463
10466
|
{
|
|
10464
10467
|
sx: { display: "flex", alignItems: "center", gap: 0.5, mt: 0.5 },
|
|
10465
10468
|
children: [
|
|
10466
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
10469
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _InfoOutlined2.default, { sx: { fontSize: 14, color: "text.secondary" } }),
|
|
10467
10470
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Typography, { variant: "caption", color: "text.secondary", children: "Essa \xE9 a senha que voc\xEA utiliza para acessar o sistema atualmente." })
|
|
10468
10471
|
]
|
|
10469
10472
|
}
|
|
@@ -10496,7 +10499,7 @@ function AlterarSenha(props) {
|
|
|
10496
10499
|
{
|
|
10497
10500
|
sx: { display: "flex", alignItems: "center", gap: 0.5, mt: 0.5 },
|
|
10498
10501
|
children: [
|
|
10499
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
10502
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _InfoOutlined2.default, { sx: { fontSize: 14, color: "text.secondary" } }),
|
|
10500
10503
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Typography, { variant: "caption", color: "text.secondary", children: "Informe nos campos acima a nova senha que deseja utilizar." })
|
|
10501
10504
|
]
|
|
10502
10505
|
}
|
|
@@ -10629,7 +10632,6 @@ function LoginForm(props) {
|
|
|
10629
10632
|
{
|
|
10630
10633
|
name: "password",
|
|
10631
10634
|
label: "Senha",
|
|
10632
|
-
placeholder: "Sua senha",
|
|
10633
10635
|
value: password || "",
|
|
10634
10636
|
onChange: (e) => setPassword(e.target.value),
|
|
10635
10637
|
onKeyDown: (e) => e.key === "Enter" && handleLogin(),
|