@elementor/editor-controls 4.1.0-804 → 4.1.0-806

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-controls",
3
3
  "description": "This package contains the controls model and utils for the Elementor editor",
4
- "version": "4.1.0-804",
4
+ "version": "4.1.0-806",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -40,22 +40,22 @@
40
40
  "dev": "tsup --config=../../tsup.dev.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@elementor/editor-current-user": "4.1.0-804",
44
- "@elementor/editor-elements": "4.1.0-804",
45
- "@elementor/editor-props": "4.1.0-804",
46
- "@elementor/editor-responsive": "4.1.0-804",
47
- "@elementor/editor-ui": "4.1.0-804",
48
- "@elementor/editor-v1-adapters": "4.1.0-804",
49
- "@elementor/env": "4.1.0-804",
50
- "@elementor/events": "4.1.0-804",
51
- "@elementor/http-client": "4.1.0-804",
43
+ "@elementor/editor-current-user": "4.1.0-806",
44
+ "@elementor/editor-elements": "4.1.0-806",
45
+ "@elementor/editor-props": "4.1.0-806",
46
+ "@elementor/editor-responsive": "4.1.0-806",
47
+ "@elementor/editor-ui": "4.1.0-806",
48
+ "@elementor/editor-v1-adapters": "4.1.0-806",
49
+ "@elementor/env": "4.1.0-806",
50
+ "@elementor/events": "4.1.0-806",
51
+ "@elementor/http-client": "4.1.0-806",
52
52
  "@elementor/icons": "^1.68.0",
53
- "@elementor/locations": "4.1.0-804",
54
- "@elementor/query": "4.1.0-804",
55
- "@elementor/session": "4.1.0-804",
53
+ "@elementor/locations": "4.1.0-806",
54
+ "@elementor/query": "4.1.0-806",
55
+ "@elementor/session": "4.1.0-806",
56
56
  "@elementor/ui": "1.37.5",
57
- "@elementor/utils": "4.1.0-804",
58
- "@elementor/wp-media": "4.1.0-804",
57
+ "@elementor/utils": "4.1.0-806",
58
+ "@elementor/wp-media": "4.1.0-806",
59
59
  "@monaco-editor/react": "^4.7.0",
60
60
  "@tiptap/extension-bold": "^3.11.1",
61
61
  "@tiptap/extension-document": "^3.11.1",
@@ -7,7 +7,13 @@ export type Suggestion = {
7
7
  value: string;
8
8
  };
9
9
 
10
- const FORM_FIELD_WIDGET_TYPES = [ 'e-form-input', 'e-form-textarea', 'e-form-checkbox' ];
10
+ const FORM_FIELD_WIDGET_TYPES = [
11
+ 'e-form-input',
12
+ 'e-form-textarea',
13
+ 'e-form-checkbox',
14
+ 'e-form-radio-button',
15
+ 'e-form-select',
16
+ ];
11
17
 
12
18
  type Options = {
13
19
  inputType?: string;