@bigbinary/neeto-rules-frontend 2.5.15-beta → 2.5.15-beta-3
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/NeetoRulesForm.js +89 -85
- package/dist/NeetoRulesForm.js.map +1 -1
- package/dist/cjs/NeetoRulesForm.js +89 -85
- package/dist/cjs/NeetoRulesForm.js.map +1 -1
- package/package.json +5 -5
- package/types.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-rules-frontend",
|
|
3
|
-
"version": "2.5.15-beta",
|
|
3
|
+
"version": "2.5.15-beta-3",
|
|
4
4
|
"description": "A repo acts as the source of truth for the new nano's structure, configs, data etc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-rules-nano",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"@bigbinary/eslint-plugin-neeto": "1.6.2",
|
|
63
63
|
"@bigbinary/neeto-cist": "1.0.17",
|
|
64
64
|
"@bigbinary/neeto-commons-frontend": "4.13.40",
|
|
65
|
-
"@bigbinary/neeto-editor": "1.47.
|
|
65
|
+
"@bigbinary/neeto-editor": "1.47.9",
|
|
66
66
|
"@bigbinary/neeto-filters-frontend": "4.3.19",
|
|
67
67
|
"@bigbinary/neeto-hotkeys": "1.0.9",
|
|
68
68
|
"@bigbinary/neeto-icons": "1.20.47",
|
|
69
|
-
"@bigbinary/neeto-molecules": "3.16.
|
|
69
|
+
"@bigbinary/neeto-molecules": "3.16.54",
|
|
70
70
|
"@bigbinary/neetoui": "8.3.7",
|
|
71
71
|
"@emotion/is-prop-valid": "1.2.0",
|
|
72
72
|
"@faker-js/faker": "8.2.0",
|
|
@@ -177,11 +177,11 @@
|
|
|
177
177
|
"@babel/runtime": "7.26.10",
|
|
178
178
|
"@bigbinary/neeto-cist": "1.0.17",
|
|
179
179
|
"@bigbinary/neeto-commons-frontend": "4.13.40",
|
|
180
|
-
"@bigbinary/neeto-editor": "1.47.
|
|
180
|
+
"@bigbinary/neeto-editor": "1.47.9",
|
|
181
181
|
"@bigbinary/neeto-filters-frontend": "4.3.19",
|
|
182
182
|
"@bigbinary/neeto-hotkeys": "1.0.9",
|
|
183
183
|
"@bigbinary/neeto-icons": "1.20.47",
|
|
184
|
-
"@bigbinary/neeto-molecules": "3.16.
|
|
184
|
+
"@bigbinary/neeto-molecules": "3.16.54",
|
|
185
185
|
"@bigbinary/neetoui": "8.3.7",
|
|
186
186
|
"@hello-pangea/dnd": "16.3.0",
|
|
187
187
|
"@honeybadger-io/js": "6.10.1",
|
package/types.d.ts
CHANGED
|
@@ -105,6 +105,8 @@ interface EventsProps extends ConditionsProps {
|
|
|
105
105
|
interface InputFieldProps extends commonInputProps, InputProps {}
|
|
106
106
|
|
|
107
107
|
interface NeetoRulesProps {
|
|
108
|
+
title: string;
|
|
109
|
+
breadcrumbs: object;
|
|
108
110
|
data?: Record<string, any>;
|
|
109
111
|
children?: React.ReactNode | (() => React.ReactNode);
|
|
110
112
|
className?: string;
|