@panneau/field-text 4.0.55 → 4.0.56

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 CHANGED
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
 
3
3
  declare const _default: {
4
4
  id: string;
@@ -8,26 +8,26 @@ declare const _default: {
8
8
  interface EmailFieldProps {
9
9
  [key: string]: unknown;
10
10
  }
11
- declare function EmailField(props: EmailFieldProps): react_jsx_runtime.JSX.Element;
11
+ declare function EmailField(props: EmailFieldProps): react.JSX.Element;
12
12
 
13
13
  interface PasswordFieldProps {
14
14
  [key: string]: unknown;
15
15
  }
16
- declare function PasswordField(props: PasswordFieldProps): react_jsx_runtime.JSX.Element;
16
+ declare function PasswordField(props: PasswordFieldProps): react.JSX.Element;
17
17
 
18
18
  interface TelephoneFieldProps {
19
19
  [key: string]: unknown;
20
20
  }
21
- declare function TelephoneField(props: TelephoneFieldProps): react_jsx_runtime.JSX.Element;
21
+ declare function TelephoneField(props: TelephoneFieldProps): react.JSX.Element;
22
22
 
23
23
  interface TextareaFieldProps {
24
24
  [key: string]: unknown;
25
25
  }
26
- declare function TextareaField(props: TextareaFieldProps): react_jsx_runtime.JSX.Element;
26
+ declare function TextareaField(props: TextareaFieldProps): react.JSX.Element;
27
27
 
28
28
  interface TextFieldProps {
29
29
  [key: string]: unknown;
30
30
  }
31
- declare function TextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
31
+ declare function TextField(props: TextFieldProps): react.JSX.Element;
32
32
 
33
33
  export { EmailField as Email, PasswordField as Password, TelephoneField as Telephone, TextareaField as Textarea, TextField as default, _default as definition };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c } from 'react/compiler-runtime';
2
2
  import classNames from 'classnames';
3
- import isEmpty from 'lodash/isEmpty';
3
+ import isEmpty from 'lodash-es/isEmpty';
4
4
  import { useMemo } from 'react';
5
5
  import { v1 } from 'uuid';
6
6
  import InputGroup from '@panneau/field-input-group';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panneau/field-text",
3
- "version": "4.0.55",
3
+ "version": "4.0.56",
4
4
  "description": "A text field",
5
5
  "keywords": [
6
6
  "javascript"
@@ -36,6 +36,9 @@
36
36
  "type": "module",
37
37
  "module": "dist/index.js",
38
38
  "types": "dist/index.d.ts",
39
+ "sideEffects": [
40
+ "**/*.css"
41
+ ],
39
42
  "style": "assets/css/styles.css",
40
43
  "exports": {
41
44
  ".": {
@@ -64,9 +67,9 @@
64
67
  },
65
68
  "dependencies": {
66
69
  "@babel/runtime": "^7.28.6",
67
- "@panneau/core": "^4.0.55",
68
- "@panneau/field-input-group": "^4.0.55",
69
- "@panneau/themes": "^4.0.55",
70
+ "@panneau/core": "^4.0.56",
71
+ "@panneau/field-input-group": "^4.0.56",
72
+ "@panneau/themes": "^4.0.56",
70
73
  "classnames": "^2.5.1",
71
74
  "lodash": "^4.17.21",
72
75
  "uuid": "^9.0.1"
@@ -74,5 +77,5 @@
74
77
  "publishConfig": {
75
78
  "access": "public"
76
79
  },
77
- "gitHead": "1c9183567fc5bf98ba10fa57c63cf2ed2ae4a054"
80
+ "gitHead": "9c3ba1bdd04699e0150f84a35f2bdbdec073bd59"
78
81
  }