@opengeoweb/form-fields 12.9.1 → 12.11.0
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/package.json +6 -3
- package/src/lib/components/ReactHookFormDateTime.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormHiddenInput.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormNumberField.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormProvider.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormRadioGroup.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormSelect.stories.d.ts +1 -1
- package/src/lib/components/ReactHookFormTextField.stories.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/form-fields",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.11.0",
|
|
4
4
|
"description": "GeoWeb form-fields library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"url": "git@gitlab.com:opengeoweb/opengeoweb.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opengeoweb/theme": "12.
|
|
11
|
+
"@opengeoweb/theme": "12.11.0",
|
|
12
12
|
"react-hook-form": "^7.50.1",
|
|
13
13
|
"@mui/x-date-pickers": "^8.1.0",
|
|
14
14
|
"lodash": "^4.17.21",
|
|
15
|
-
"@opengeoweb/shared": "12.
|
|
15
|
+
"@opengeoweb/shared": "12.11.0",
|
|
16
16
|
"react-i18next": "^15.1.1",
|
|
17
17
|
"@mui/material": "^7.0.1",
|
|
18
18
|
"i18next": "^25.0.1",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"@emotion/react": "*",
|
|
24
24
|
"@emotion/styled": "*"
|
|
25
25
|
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"eslint-plugin-storybook": "9.0.17"
|
|
28
|
+
},
|
|
26
29
|
"module": "./index.esm.js",
|
|
27
30
|
"type": "module",
|
|
28
31
|
"main": "./index.esm.js",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormDateTime } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormDateTime>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormDateTime>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormHiddenInput } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormHiddenInput>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormHiddenInput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormNumberField } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormNumberField>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormNumberField>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormRadioGroup } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormRadioGroup>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormRadioGroup>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormSelect } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormSelect>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormSelect>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { ReactHookFormTextField } from '.';
|
|
3
3
|
type Story = StoryObj<typeof ReactHookFormTextField>;
|
|
4
4
|
declare const meta: Meta<typeof ReactHookFormTextField>;
|