@movalib/movalib-commons 1.0.62 → 1.0.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.
|
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
18
18
|
var material_1 = require("@mui/material");
|
|
19
19
|
var react_1 = require("react");
|
|
20
|
-
var car_figure_png_1 = __importDefault(require("
|
|
20
|
+
var car_figure_png_1 = __importDefault(require("./assets/images/car_figure.png"));
|
|
21
21
|
var MovaVehicleTireField_1 = __importDefault(require("./MovaVehicleTireField"));
|
|
22
22
|
var ConfirmationDialog_1 = __importDefault(require("./ConfirmationDialog"));
|
|
23
23
|
var Enums_1 = require("./helpers/Enums");
|
|
Binary file
|
package/package.json
CHANGED
package/src/VehicleFullCard.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Button, Card, CardActions, CardContent, FormControl, FormHelperText, Grid, IconButton, InputLabel,
|
|
2
2
|
Link, MenuItem, Select, SelectChangeEvent, TextField, Typography, darken, useTheme } from '@mui/material';
|
|
3
3
|
import { useState, type FC, useEffect, useRef } from 'react';
|
|
4
|
-
import CarFigure from "
|
|
4
|
+
import CarFigure from "./assets/images/car_figure.png";
|
|
5
5
|
import { MovaFormField, MovaVehicleForm } from './helpers/Types';
|
|
6
6
|
import Vehicle from './models/Vehicle';
|
|
7
7
|
import Document from './models/Document';
|
|
Binary file
|