@bigbinary/neeto-fields-frontend 1.1.12 → 1.1.14
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/README.md +13 -0
- package/dist/index.cjs.js +400 -227
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +401 -228
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/types.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-fields-frontend",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
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-fields-nano",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@bigbinary/neeto-commons-frontend": "^2.0.126",
|
|
53
53
|
"@bigbinary/neeto-filters-frontend": "^2.12.9",
|
|
54
54
|
"@bigbinary/neeto-icons": "^1.14.0",
|
|
55
|
-
"@bigbinary/neeto-molecules": "
|
|
55
|
+
"@bigbinary/neeto-molecules": "1.0.91-beta",
|
|
56
56
|
"@bigbinary/neetoui": "^5.1.12",
|
|
57
57
|
"@dnd-kit/core": "^6.0.8",
|
|
58
58
|
"@dnd-kit/sortable": "^7.0.2",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"mixpanel-browser": "2.46.0",
|
|
107
107
|
"os-browserify": "^0.3.0",
|
|
108
108
|
"path-browserify": "^1.0.1",
|
|
109
|
-
"postcss": "8.4.
|
|
109
|
+
"postcss": "8.4.31",
|
|
110
110
|
"postcss-import": "15.1.0",
|
|
111
111
|
"postcss-loader": "7.3.0",
|
|
112
112
|
"postcss-preset-env": "8.3.2",
|
package/types.d.ts
CHANGED
|
@@ -107,6 +107,13 @@ interface FieldValuesContainerProps {
|
|
|
107
107
|
isRequiredColumnName?: string;
|
|
108
108
|
fieldClassName?: string;
|
|
109
109
|
onMutationSuccess?: (...args: any[]) => void;
|
|
110
|
+
blockNavigation?: boolean;
|
|
111
|
+
blockNavigationAlertProps?: {
|
|
112
|
+
title?: string;
|
|
113
|
+
message?: string;
|
|
114
|
+
submitButtonLabel?: string;
|
|
115
|
+
cancelButtonLabel?: string;
|
|
116
|
+
};
|
|
110
117
|
}
|
|
111
118
|
|
|
112
119
|
interface FieldInputsProps {
|