pollination-react-io 1.1.2 → 1.3.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/build/GetGeometry/GetGeometry.types.d.ts +4 -1
- package/build/GetModel/GetModel.types.d.ts +6 -1
- package/build/RecipeInputsForm/RecipeInputsForm.d.ts +1 -0
- package/build/SelectAccount/SelectAccount.d.ts +1 -1
- package/build/SelectAccount/SelectAccount.types.d.ts +0 -1
- package/build/SelectProject/SelectProject.d.ts +1 -1
- package/build/SelectProject/SelectProject.types.d.ts +1 -2
- package/build/SelectStudy/SelectStudy.d.ts +1 -1
- package/build/SelectStudy/SelectStudy.types.d.ts +0 -1
- package/build/SendResults/SendResults.d.ts +1 -1
- package/build/atoms/ComboBox/ComboBox.types.d.ts +0 -1
- package/build/atoms/FileInput/FileInput.d.ts +0 -1
- package/build/atoms/FileInput/FileInput.types.d.ts +3 -0
- package/build/atoms/InputDescription/InputDescription.d.ts +4 -0
- package/build/atoms/InputDescription/InputDescriptionTypes.d.ts +4 -0
- package/build/atoms/NumberInput/NumberInput.d.ts +4 -0
- package/build/atoms/NumberInput/NumberInput.types.d.ts +6 -0
- package/build/atoms/RadioList/RadioList.d.ts +5 -0
- package/build/atoms/RadioList/RadioList.types.d.ts +7 -0
- package/build/atoms/SettingsButton/index.d.ts +1 -1
- package/build/atoms/TextInput/TextInput.types.d.ts +1 -1
- package/build/atoms/index.d.ts +3 -1
- package/build/index.esm.js +104 -50
- package/build/index.esm.js.map +1 -1
- package/build/index.js +104 -50
- package/build/index.js.map +1 -1
- package/package.json +8 -2
- package/build/atoms/InputLabel/InputLabel.d.ts +0 -4
- package/build/atoms/InputLabel/InputLabel.types.d.ts +0 -3
package/package.json
CHANGED
|
@@ -95,10 +95,14 @@
|
|
|
95
95
|
"webpack": "^5.73.0"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
|
+
"@hookform/resolvers": "^2.9.7",
|
|
98
99
|
"@pollination-solutions/pollination-sdk": "^0.28.1",
|
|
99
100
|
"@radix-ui/colors": "^0.1.8",
|
|
101
|
+
"@radix-ui/react-accordion": "^1.0.0",
|
|
100
102
|
"@radix-ui/react-avatar": "^0.1.4",
|
|
103
|
+
"@radix-ui/react-collapsible": "^1.0.0",
|
|
101
104
|
"@radix-ui/react-dropdown-menu": "^0.1.6",
|
|
105
|
+
"@radix-ui/react-radio-group": "^1.0.0",
|
|
102
106
|
"@radix-ui/react-scroll-area": "^0.1.4",
|
|
103
107
|
"@radix-ui/react-separator": "^0.1.4",
|
|
104
108
|
"@radix-ui/react-tooltip": "^0.1.7",
|
|
@@ -107,9 +111,11 @@
|
|
|
107
111
|
"lodash.isequal": "^4.5.0",
|
|
108
112
|
"react-bootstrap-icons": "^1.8.4",
|
|
109
113
|
"react-dropzone": "^14.2.1",
|
|
114
|
+
"react-hook-form": "^7.34.0",
|
|
110
115
|
"react-perfect-scrollbar": "^1.5.8",
|
|
111
116
|
"react-tabs": "^4.2.1",
|
|
112
|
-
"slugify": "^1.6.5"
|
|
117
|
+
"slugify": "^1.6.5",
|
|
118
|
+
"yup": "^0.32.11"
|
|
113
119
|
},
|
|
114
|
-
"version": "1.
|
|
120
|
+
"version": "1.3.0"
|
|
115
121
|
}
|