@bigbinary/neeto-form-frontend 3.13.1 → 3.13.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-form-frontend",
3
- "version": "3.13.1",
3
+ "version": "3.13.2",
4
4
  "description": "Neeto Form Engine Frontend",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-form-nano",
@@ -61,15 +61,15 @@
61
61
  "@babel/preset-typescript": "7.26.0",
62
62
  "@babel/runtime": "7.26.10",
63
63
  "@bigbinary/babel-preset-neeto": "^1.0.3",
64
- "@bigbinary/eslint-plugin-neeto": "1.6.3",
64
+ "@bigbinary/eslint-plugin-neeto": "1.6.4",
65
65
  "@bigbinary/neeto-cist": "1.0.17",
66
- "@bigbinary/neeto-commons-frontend": "4.13.43",
67
- "@bigbinary/neeto-editor": "1.47.16",
68
- "@bigbinary/neeto-filters-frontend": "4.3.21",
66
+ "@bigbinary/neeto-commons-frontend": "4.13.44",
67
+ "@bigbinary/neeto-editor": "1.47.17",
68
+ "@bigbinary/neeto-filters-frontend": "4.3.22",
69
69
  "@bigbinary/neeto-hotkeys": "1.0.9",
70
- "@bigbinary/neeto-icons": "1.20.49",
71
- "@bigbinary/neeto-molecules": "3.16.63",
72
- "@bigbinary/neetoui": "8.3.9",
70
+ "@bigbinary/neeto-icons": "1.20.50",
71
+ "@bigbinary/neeto-molecules": "3.16.67",
72
+ "@bigbinary/neetoui": "8.3.10",
73
73
  "@emotion/is-prop-valid": "1.2.0",
74
74
  "@faker-js/faker": "8.2.0",
75
75
  "@hello-pangea/dnd": "16.3.0",
@@ -186,13 +186,13 @@
186
186
  "peerDependencies": {
187
187
  "@babel/runtime": "7.26.10",
188
188
  "@bigbinary/neeto-cist": "1.0.17",
189
- "@bigbinary/neeto-commons-frontend": "4.13.43",
190
- "@bigbinary/neeto-editor": "1.47.16",
191
- "@bigbinary/neeto-filters-frontend": "4.3.21",
189
+ "@bigbinary/neeto-commons-frontend": "4.13.44",
190
+ "@bigbinary/neeto-editor": "1.47.17",
191
+ "@bigbinary/neeto-filters-frontend": "4.3.22",
192
192
  "@bigbinary/neeto-hotkeys": "1.0.9",
193
- "@bigbinary/neeto-icons": "1.20.49",
194
- "@bigbinary/neeto-molecules": "3.16.63",
195
- "@bigbinary/neetoui": "8.3.9",
193
+ "@bigbinary/neeto-icons": "1.20.50",
194
+ "@bigbinary/neeto-molecules": "3.16.67",
195
+ "@bigbinary/neetoui": "8.3.10",
196
196
  "@hello-pangea/dnd": "16.3.0",
197
197
  "@honeybadger-io/js": "6.10.1",
198
198
  "@honeybadger-io/react": "6.1.25",
package/types.d.ts CHANGED
@@ -9,6 +9,7 @@ import {
9
9
  } from "@tanstack/react-query";
10
10
  import { EditorProps } from "@bigbinary/neeto-editor";
11
11
  import { Schema } from "yup";
12
+ import HelpPopover from "neetomolecules/HelpPopover";
12
13
 
13
14
  interface Question {
14
15
  id: string;
@@ -53,7 +54,7 @@ interface BuildFormProps {
53
54
  isFieldRequired?: (item: Item) => boolean;
54
55
  isFieldLabelDisabled?: (item: Item) => boolean;
55
56
  isQuestionDeletable?: (item: Item) => boolean;
56
- disabledAddButtonTooltipProps?: DisabledAddButtonTooltipProps;
57
+ disabledAddButtonHelpPopoverProps?: HelpPopoverProps;
57
58
  availableLanguages?: AvailableLanguage[];
58
59
  formDescription?: string;
59
60
  formTitle?: string;
@@ -129,10 +130,6 @@ interface UrlBuilderProps {
129
130
  autoCompleteKinds?: string[];
130
131
  }
131
132
 
132
- interface DisabledAddButtonTooltipProps {
133
- content?: string;
134
- }
135
-
136
133
  interface AvailableLanguage {
137
134
  code?: string;
138
135
  name?: string;