@applica-software-guru/react-admin 1.5.278 → 1.5.279
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/components/ra-inputs/LabeledInput.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +1 -1
- package/dist/react-admin.cjs.js.gz +0 -0
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +1 -0
- package/dist/react-admin.es.js.gz +0 -0
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +1 -1
- package/dist/react-admin.umd.js.gz +0 -0
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ra-inputs/LabeledInput.tsx +1 -0
- package/vite.config.js +3 -3
package/package.json
CHANGED
|
@@ -28,6 +28,7 @@ function LabeledInput({
|
|
|
28
28
|
// @ts-ignore
|
|
29
29
|
width: props?.fullWidth ? '100%' : 'auto',
|
|
30
30
|
'& .MuiFormHelperText-root': {
|
|
31
|
+
pb: 0,
|
|
31
32
|
// @see: https://github.com/marmelab/react-admin/blob/master/packages/ra-ui-materialui/src/input/SelectArrayInput.tsx#L340
|
|
32
33
|
// the 'invalid' prop is not used inside the react-admin component. This is necessary if we want to support
|
|
33
34
|
// remove error message colorization when the field is in error state.
|
package/vite.config.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*global __dirname */
|
|
2
2
|
import * as packageJson from './package.json';
|
|
3
|
-
import react from '@vitejs/plugin-react';
|
|
3
|
+
import { default as react } from '@vitejs/plugin-react';
|
|
4
4
|
import { resolve } from 'node:path';
|
|
5
5
|
import process from 'process';
|
|
6
6
|
import { defineConfig } from 'vite';
|
|
7
|
-
import viteCompression from 'vite-plugin-compression';
|
|
8
|
-
import dts from 'vite-plugin-dts';
|
|
7
|
+
import { default as viteCompression } from 'vite-plugin-compression';
|
|
8
|
+
import { default as dts } from 'vite-plugin-dts';
|
|
9
9
|
import { EsLinter, linterPlugin } from 'vite-plugin-linter';
|
|
10
10
|
|
|
11
11
|
export default defineConfig((configEnv) => {
|