@plitzi/sdk-elements 0.30.19

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.
Files changed (289) hide show
  1. package/CHANGELOG.md +1623 -0
  2. package/dist/Component/ComponentHelper.d.ts +5 -0
  3. package/dist/Component/ComponentHelper.mjs +47 -0
  4. package/dist/Component/ComponentProvider.d.ts +9 -0
  5. package/dist/Component/ComponentProvider.mjs +98 -0
  6. package/dist/Component/index.d.ts +5 -0
  7. package/dist/Component/index.mjs +3 -0
  8. package/dist/Element/JsxManager.d.ts +11 -0
  9. package/dist/Element/JsxManager.mjs +37 -0
  10. package/dist/Element/PluginManager.d.ts +8 -0
  11. package/dist/Element/PluginManager.mjs +19 -0
  12. package/dist/Element/PluginRemote.d.ts +11 -0
  13. package/dist/Element/PluginRemote.mjs +16 -0
  14. package/dist/Element/ReplicaProvider.d.ts +6 -0
  15. package/dist/Element/ReplicaProvider.mjs +18 -0
  16. package/dist/Element/RootElement.d.ts +14 -0
  17. package/dist/Element/RootElement.mjs +127 -0
  18. package/dist/Element/ServerStaticShell.d.ts +24 -0
  19. package/dist/Element/ServerStaticShell.mjs +43 -0
  20. package/dist/Element/helpers/elementConstants.d.ts +3 -0
  21. package/dist/Element/helpers/elementConstants.mjs +91 -0
  22. package/dist/Element/helpers/elementUtils.d.ts +8 -0
  23. package/dist/Element/helpers/elementUtils.mjs +43 -0
  24. package/dist/Element/helpers/getInteractions.d.ts +3 -0
  25. package/dist/Element/helpers/getInteractions.mjs +68 -0
  26. package/dist/Element/helpers/loadComponent.d.ts +5 -0
  27. package/dist/Element/helpers/loadComponent.mjs +26 -0
  28. package/dist/Element/helpers/parseStyle.d.ts +3 -0
  29. package/dist/Element/helpers/parseStyle.mjs +9 -0
  30. package/dist/Element/helpers/parseStyleSelectors.d.ts +5 -0
  31. package/dist/Element/helpers/parseStyleSelectors.mjs +21 -0
  32. package/dist/Element/helpers/pluginSelector.d.ts +11 -0
  33. package/dist/Element/helpers/pluginSelector.mjs +35 -0
  34. package/dist/Element/hocs/withElement.d.ts +14 -0
  35. package/dist/Element/hocs/withElement.mjs +84 -0
  36. package/dist/Element/hooks/useElementDataSource.d.ts +9 -0
  37. package/dist/Element/hooks/useElementDataSource.mjs +15 -0
  38. package/dist/Element/hooks/useElementInteractions.d.ts +8 -0
  39. package/dist/Element/hooks/useElementInteractions.mjs +41 -0
  40. package/dist/Element/hooks/useElementInternal.d.ts +48 -0
  41. package/dist/Element/hooks/useElementInternal.mjs +102 -0
  42. package/dist/Element/hooks/useElementState.d.ts +11 -0
  43. package/dist/Element/hooks/useElementState.mjs +23 -0
  44. package/dist/Element/hooks/useInternalClassName.d.ts +12 -0
  45. package/dist/Element/hooks/useInternalClassName.mjs +26 -0
  46. package/dist/Element/hooks/useInternalItems.d.ts +10 -0
  47. package/dist/Element/hooks/useInternalItems.mjs +55 -0
  48. package/dist/_virtual/_rolldown/runtime.mjs +11 -0
  49. package/dist/components/ElementAdvancedEditor.d.ts +8 -0
  50. package/dist/components/ElementAdvancedEditor.mjs +105 -0
  51. package/dist/elements/advanced/BlockHtml/BlockHtml.d.ts +13 -0
  52. package/dist/elements/advanced/BlockHtml/BlockHtml.mjs +40 -0
  53. package/dist/elements/advanced/BlockHtml/Settings.d.ts +6 -0
  54. package/dist/elements/advanced/BlockHtml/Settings.mjs +15 -0
  55. package/dist/elements/advanced/BlockHtml/index.d.ts +51 -0
  56. package/dist/elements/advanced/BlockHtml/index.mjs +41 -0
  57. package/dist/elements/advanced/BlockJsx/BlockJsx.d.ts +14 -0
  58. package/dist/elements/advanced/BlockJsx/BlockJsx.mjs +63 -0
  59. package/dist/elements/advanced/BlockJsx/Settings.d.ts +8 -0
  60. package/dist/elements/advanced/BlockJsx/Settings.mjs +87 -0
  61. package/dist/elements/advanced/BlockJsx/index.d.ts +54 -0
  62. package/dist/elements/advanced/BlockJsx/index.mjs +46 -0
  63. package/dist/elements/advanced/Custom/Custom.d.ts +18 -0
  64. package/dist/elements/advanced/Custom/Custom.mjs +75 -0
  65. package/dist/elements/advanced/Custom/Settings.d.ts +11 -0
  66. package/dist/elements/advanced/Custom/Settings.mjs +91 -0
  67. package/dist/elements/advanced/Custom/index.d.ts +60 -0
  68. package/dist/elements/advanced/Custom/index.mjs +52 -0
  69. package/dist/elements/advanced/NodeHtml/NodeHtml.d.ts +14 -0
  70. package/dist/elements/advanced/NodeHtml/NodeHtml.mjs +18 -0
  71. package/dist/elements/advanced/NodeHtml/Settings.d.ts +7 -0
  72. package/dist/elements/advanced/NodeHtml/Settings.mjs +196 -0
  73. package/dist/elements/advanced/NodeHtml/index.d.ts +69 -0
  74. package/dist/elements/advanced/NodeHtml/index.mjs +51 -0
  75. package/dist/elements/advanced/PlitziSdk/Settings.d.ts +8 -0
  76. package/dist/elements/advanced/PlitziSdk/Settings.mjs +40 -0
  77. package/dist/elements/advanced/Reference/Reference.d.ts +17 -0
  78. package/dist/elements/advanced/Reference/Reference.mjs +140 -0
  79. package/dist/elements/advanced/Reference/Settings.d.ts +8 -0
  80. package/dist/elements/advanced/Reference/Settings.mjs +99 -0
  81. package/dist/elements/advanced/Reference/index.d.ts +58 -0
  82. package/dist/elements/advanced/Reference/index.mjs +50 -0
  83. package/dist/elements/basic/Button/Button.d.ts +17 -0
  84. package/dist/elements/basic/Button/Button.mjs +25 -0
  85. package/dist/elements/basic/Button/Settings.d.ts +9 -0
  86. package/dist/elements/basic/Button/Settings.mjs +68 -0
  87. package/dist/elements/basic/Button/index.d.ts +126 -0
  88. package/dist/elements/basic/Button/index.mjs +106 -0
  89. package/dist/elements/basic/Dropdown/Dropdown.d.ts +21 -0
  90. package/dist/elements/basic/Dropdown/Dropdown.mjs +57 -0
  91. package/dist/elements/basic/Dropdown/DropdownContext.d.ts +10 -0
  92. package/dist/elements/basic/Dropdown/DropdownContext.mjs +6 -0
  93. package/dist/elements/basic/Dropdown/DropdownPopup/DropdownPopup.d.ts +13 -0
  94. package/dist/elements/basic/Dropdown/DropdownPopup/DropdownPopup.mjs +18 -0
  95. package/dist/elements/basic/Dropdown/DropdownPopup/Settings.d.ts +2 -0
  96. package/dist/elements/basic/Dropdown/DropdownPopup/index.d.ts +68 -0
  97. package/dist/elements/basic/Dropdown/DropdownPopup/index.mjs +62 -0
  98. package/dist/elements/basic/Dropdown/Settings.d.ts +13 -0
  99. package/dist/elements/basic/Dropdown/Settings.mjs +84 -0
  100. package/dist/elements/basic/Dropdown/index.d.ts +146 -0
  101. package/dist/elements/basic/Dropdown/index.mjs +73 -0
  102. package/dist/elements/basic/Dropdown/useDropdown.d.ts +28 -0
  103. package/dist/elements/basic/Dropdown/useDropdown.mjs +105 -0
  104. package/dist/elements/basic/Heading/Heading.d.ts +14 -0
  105. package/dist/elements/basic/Heading/Heading.mjs +23 -0
  106. package/dist/elements/basic/Heading/Settings.d.ts +7 -0
  107. package/dist/elements/basic/Heading/Settings.mjs +50 -0
  108. package/dist/elements/basic/Heading/index.d.ts +144 -0
  109. package/dist/elements/basic/Heading/index.mjs +112 -0
  110. package/dist/elements/basic/Link/Link.d.ts +16 -0
  111. package/dist/elements/basic/Link/Link.mjs +65 -0
  112. package/dist/elements/basic/Link/Settings.d.ts +8 -0
  113. package/dist/elements/basic/Link/Settings.mjs +129 -0
  114. package/dist/elements/basic/Link/index.d.ts +61 -0
  115. package/dist/elements/basic/Link/index.mjs +53 -0
  116. package/dist/elements/basic/Markdown/Markdown.d.ts +13 -0
  117. package/dist/elements/basic/Markdown/Markdown.mjs +16 -0
  118. package/dist/elements/basic/Markdown/Settings.d.ts +6 -0
  119. package/dist/elements/basic/Markdown/Settings.mjs +15 -0
  120. package/dist/elements/basic/Markdown/index.d.ts +54 -0
  121. package/dist/elements/basic/Markdown/index.mjs +44 -0
  122. package/dist/elements/basic/Paragraph/Paragraph.d.ts +13 -0
  123. package/dist/elements/basic/Paragraph/Paragraph.mjs +24 -0
  124. package/dist/elements/basic/Paragraph/Settings.d.ts +6 -0
  125. package/dist/elements/basic/Paragraph/Settings.mjs +17 -0
  126. package/dist/elements/basic/Paragraph/index.d.ts +54 -0
  127. package/dist/elements/basic/Paragraph/index.mjs +44 -0
  128. package/dist/elements/basic/Text/Settings.d.ts +6 -0
  129. package/dist/elements/basic/Text/Settings.mjs +16 -0
  130. package/dist/elements/basic/Text/Text.d.ts +13 -0
  131. package/dist/elements/basic/Text/Text.mjs +23 -0
  132. package/dist/elements/basic/Text/index.d.ts +55 -0
  133. package/dist/elements/basic/Text/index.mjs +45 -0
  134. package/dist/elements/form/Form/Form.d.ts +34 -0
  135. package/dist/elements/form/Form/Form.mjs +213 -0
  136. package/dist/elements/form/Form/Settings.d.ts +8 -0
  137. package/dist/elements/form/Form/Settings.mjs +41 -0
  138. package/dist/elements/form/Form/index.d.ts +61 -0
  139. package/dist/elements/form/Form/index.mjs +54 -0
  140. package/dist/elements/form/FormControl/FormControl.d.ts +28 -0
  141. package/dist/elements/form/FormControl/FormControl.mjs +139 -0
  142. package/dist/elements/form/FormControl/Settings.d.ts +16 -0
  143. package/dist/elements/form/FormControl/Settings.mjs +129 -0
  144. package/dist/elements/form/FormControl/components/Label.d.ts +12 -0
  145. package/dist/elements/form/FormControl/components/Label.mjs +28 -0
  146. package/dist/elements/form/FormControl/hocs/withFieldValue.d.ts +14 -0
  147. package/dist/elements/form/FormControl/hocs/withFieldValue.mjs +67 -0
  148. package/dist/elements/form/FormControl/index.d.ts +490 -0
  149. package/dist/elements/form/FormControl/index.mjs +193 -0
  150. package/dist/elements/form/FormControl/inputs/Checkbox.d.ts +14 -0
  151. package/dist/elements/form/FormControl/inputs/Checkbox.mjs +21 -0
  152. package/dist/elements/form/FormControl/inputs/Hidden.d.ts +11 -0
  153. package/dist/elements/form/FormControl/inputs/Hidden.mjs +20 -0
  154. package/dist/elements/form/FormControl/inputs/Input.d.ts +16 -0
  155. package/dist/elements/form/FormControl/inputs/Input.mjs +42 -0
  156. package/dist/elements/form/FormControl/inputs/Select.d.ts +17 -0
  157. package/dist/elements/form/FormControl/inputs/Select.mjs +44 -0
  158. package/dist/elements/form/FormControl/inputs/Textarea.d.ts +15 -0
  159. package/dist/elements/form/FormControl/inputs/Textarea.mjs +25 -0
  160. package/dist/elements/index.d.ts +56 -0
  161. package/dist/elements/index.mjs +62 -0
  162. package/dist/elements/internal/LayoutContainer/LayoutContainer.d.ts +14 -0
  163. package/dist/elements/internal/LayoutContainer/LayoutContainer.mjs +46 -0
  164. package/dist/elements/internal/LayoutContainer/Settings.d.ts +7 -0
  165. package/dist/elements/internal/LayoutContainer/Settings.mjs +73 -0
  166. package/dist/elements/internal/LayoutContainer/index.d.ts +54 -0
  167. package/dist/elements/internal/LayoutContainer/index.mjs +44 -0
  168. package/dist/elements/internal/Loading/Loading.d.ts +12 -0
  169. package/dist/elements/internal/Loading/Loading.mjs +15 -0
  170. package/dist/elements/internal/Loading/index.d.ts +50 -0
  171. package/dist/elements/internal/Loading/index.mjs +42 -0
  172. package/dist/elements/internal/NotFound/NotFound.d.ts +12 -0
  173. package/dist/elements/internal/NotFound/NotFound.mjs +20 -0
  174. package/dist/elements/internal/NotFound/index.d.ts +51 -0
  175. package/dist/elements/internal/NotFound/index.mjs +42 -0
  176. package/dist/elements/internal/Page/Page.d.ts +18 -0
  177. package/dist/elements/internal/Page/Page.mjs +62 -0
  178. package/dist/elements/internal/Page/Settings.d.ts +18 -0
  179. package/dist/elements/internal/Page/Settings.mjs +236 -0
  180. package/dist/elements/internal/Page/helpers/UserHelper.d.ts +4 -0
  181. package/dist/elements/internal/Page/index.d.ts +73 -0
  182. package/dist/elements/internal/Page/index.mjs +65 -0
  183. package/dist/elements/media/FontAwesome/FontAwesome.d.ts +15 -0
  184. package/dist/elements/media/FontAwesome/FontAwesome.mjs +19 -0
  185. package/dist/elements/media/FontAwesome/FontAwesome.stories-paused.d.ts +1 -0
  186. package/dist/elements/media/FontAwesome/Settings.d.ts +8 -0
  187. package/dist/elements/media/FontAwesome/Settings.mjs +150 -0
  188. package/dist/elements/media/FontAwesome/index.d.ts +56 -0
  189. package/dist/elements/media/FontAwesome/index.mjs +48 -0
  190. package/dist/elements/media/Image/Image.d.ts +16 -0
  191. package/dist/elements/media/Image/Image.mjs +37 -0
  192. package/dist/elements/media/Image/ImageHelper.d.ts +1 -0
  193. package/dist/elements/media/Image/ImageHelper.mjs +4 -0
  194. package/dist/elements/media/Image/Settings.d.ts +9 -0
  195. package/dist/elements/media/Image/Settings.mjs +75 -0
  196. package/dist/elements/media/Image/index.d.ts +59 -0
  197. package/dist/elements/media/Image/index.mjs +51 -0
  198. package/dist/elements/media/Video/Settings.d.ts +10 -0
  199. package/dist/elements/media/Video/Settings.mjs +57 -0
  200. package/dist/elements/media/Video/Video.d.ts +17 -0
  201. package/dist/elements/media/Video/Video.mjs +32 -0
  202. package/dist/elements/media/Video/index.d.ts +60 -0
  203. package/dist/elements/media/Video/index.mjs +52 -0
  204. package/dist/elements/provider/ApiContainer/ApiContainer.d.ts +22 -0
  205. package/dist/elements/provider/ApiContainer/ApiContainer.mjs +138 -0
  206. package/dist/elements/provider/ApiContainer/Settings.d.ts +14 -0
  207. package/dist/elements/provider/ApiContainer/Settings.mjs +171 -0
  208. package/dist/elements/provider/ApiContainer/hooks/useApi.d.ts +20 -0
  209. package/dist/elements/provider/ApiContainer/hooks/useApi.mjs +94 -0
  210. package/dist/elements/provider/ApiContainer/index.d.ts +62 -0
  211. package/dist/elements/provider/ApiContainer/index.mjs +54 -0
  212. package/dist/elements/provider/CollectionContainer/CollectionContainer.d.ts +18 -0
  213. package/dist/elements/provider/CollectionContainer/CollectionContainer.mjs +61 -0
  214. package/dist/elements/provider/CollectionContainer/CollectionContainer.stories-pending.d.ts +1 -0
  215. package/dist/elements/provider/CollectionContainer/Settings.d.ts +10 -0
  216. package/dist/elements/provider/CollectionContainer/Settings.mjs +74 -0
  217. package/dist/elements/provider/CollectionContainer/hooks/useCollectionContext.d.ts +19 -0
  218. package/dist/elements/provider/CollectionContainer/hooks/useCollectionContext.mjs +71 -0
  219. package/dist/elements/provider/CollectionContainer/index.d.ts +60 -0
  220. package/dist/elements/provider/CollectionContainer/index.mjs +52 -0
  221. package/dist/elements/settings.d.ts +3 -0
  222. package/dist/elements/settings.mjs +68 -0
  223. package/dist/elements/structure/Container/Container.d.ts +14 -0
  224. package/dist/elements/structure/Container/Container.mjs +12 -0
  225. package/dist/elements/structure/Container/Settings.d.ts +6 -0
  226. package/dist/elements/structure/Container/Settings.mjs +69 -0
  227. package/dist/elements/structure/Container/index.d.ts +57 -0
  228. package/dist/elements/structure/Container/index.mjs +47 -0
  229. package/dist/elements/structure/DialogContainer/DialogContainer.d.ts +18 -0
  230. package/dist/elements/structure/DialogContainer/DialogContainer.mjs +209 -0
  231. package/dist/elements/structure/DialogContainer/Settings.d.ts +10 -0
  232. package/dist/elements/structure/DialogContainer/Settings.mjs +45 -0
  233. package/dist/elements/structure/DialogContainer/index.d.ts +146 -0
  234. package/dist/elements/structure/DialogContainer/index.mjs +128 -0
  235. package/dist/elements/structure/List/List.d.ts +16 -0
  236. package/dist/elements/structure/List/List.mjs +22 -0
  237. package/dist/elements/structure/List/ListItem/ListItem.d.ts +13 -0
  238. package/dist/elements/structure/List/ListItem/ListItem.mjs +12 -0
  239. package/dist/elements/structure/List/ListItem/Settings.d.ts +2 -0
  240. package/dist/elements/structure/List/ListItem/Settings.mjs +5 -0
  241. package/dist/elements/structure/List/ListItem/index.d.ts +54 -0
  242. package/dist/elements/structure/List/ListItem/index.mjs +46 -0
  243. package/dist/elements/structure/List/Settings.d.ts +7 -0
  244. package/dist/elements/structure/List/Settings.mjs +37 -0
  245. package/dist/elements/structure/List/index.d.ts +143 -0
  246. package/dist/elements/structure/List/index.mjs +78 -0
  247. package/dist/elements/structure/List/modes/ListBasic.d.ts +9 -0
  248. package/dist/elements/structure/List/modes/ListBasic.mjs +12 -0
  249. package/dist/elements/structure/List/modes/ListControlled/ListControlled.d.ts +9 -0
  250. package/dist/elements/structure/List/modes/ListControlled/ListControlled.mjs +50 -0
  251. package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.d.ts +11 -0
  252. package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.mjs +27 -0
  253. package/dist/elements/structure/List/modes/ListControlled/index.d.ts +2 -0
  254. package/dist/elements/structure/List/modes/ListControlled/index.mjs +5 -0
  255. package/dist/elements/structure/ModalContainer/ModalContainer.d.ts +15 -0
  256. package/dist/elements/structure/ModalContainer/ModalContainer.mjs +144 -0
  257. package/dist/elements/structure/ModalContainer/Settings.d.ts +7 -0
  258. package/dist/elements/structure/ModalContainer/Settings.mjs +24 -0
  259. package/dist/elements/structure/ModalContainer/index.d.ts +140 -0
  260. package/dist/elements/structure/ModalContainer/index.mjs +126 -0
  261. package/dist/elements/structure/TabContainer/Settings.d.ts +2 -0
  262. package/dist/elements/structure/TabContainer/Settings.mjs +5 -0
  263. package/dist/elements/structure/TabContainer/TabContainer.d.ts +13 -0
  264. package/dist/elements/structure/TabContainer/TabContainer.mjs +22 -0
  265. package/dist/elements/structure/TabContainer/TabContainerBody/Settings.d.ts +2 -0
  266. package/dist/elements/structure/TabContainer/TabContainerBody/Settings.mjs +5 -0
  267. package/dist/elements/structure/TabContainer/TabContainerBody/TabContainerBody.d.ts +13 -0
  268. package/dist/elements/structure/TabContainer/TabContainerBody/TabContainerBody.mjs +35 -0
  269. package/dist/elements/structure/TabContainer/TabContainerBody/index.d.ts +56 -0
  270. package/dist/elements/structure/TabContainer/TabContainerBody/index.mjs +52 -0
  271. package/dist/elements/structure/TabContainer/TabContainerContext.d.ts +7 -0
  272. package/dist/elements/structure/TabContainer/TabContainerContext.mjs +6 -0
  273. package/dist/elements/structure/TabContainer/TabContainerHeader/Settings.d.ts +2 -0
  274. package/dist/elements/structure/TabContainer/TabContainerHeader/Settings.mjs +5 -0
  275. package/dist/elements/structure/TabContainer/TabContainerHeader/TabContainerHeader.d.ts +13 -0
  276. package/dist/elements/structure/TabContainer/TabContainerHeader/TabContainerHeader.mjs +36 -0
  277. package/dist/elements/structure/TabContainer/TabContainerHeader/index.d.ts +56 -0
  278. package/dist/elements/structure/TabContainer/TabContainerHeader/index.mjs +52 -0
  279. package/dist/elements/structure/TabContainer/TabContainerItem/Settings.d.ts +2 -0
  280. package/dist/elements/structure/TabContainer/TabContainerItem/Settings.mjs +5 -0
  281. package/dist/elements/structure/TabContainer/TabContainerItem/TabContainerItem.d.ts +17 -0
  282. package/dist/elements/structure/TabContainer/TabContainerItem/TabContainerItem.mjs +20 -0
  283. package/dist/elements/structure/TabContainer/TabContainerItem/index.d.ts +55 -0
  284. package/dist/elements/structure/TabContainer/TabContainerItem/index.mjs +51 -0
  285. package/dist/elements/structure/TabContainer/index.d.ts +222 -0
  286. package/dist/elements/structure/TabContainer/index.mjs +56 -0
  287. package/dist/index.d.ts +2694 -0
  288. package/dist/index.mjs +64 -0
  289. package/package.json +757 -0
@@ -0,0 +1,2694 @@
1
+ import { default as JsxManager } from './Element/JsxManager';
2
+ import * as elements from './elements';
3
+ import * as elementSettings from './elements/settings';
4
+ export * from './elements';
5
+ export * from './elements/settings';
6
+ export declare const defaultElements: {
7
+ dropdown: {
8
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Dropdown/Dropdown').DropdownProps>): import("react/jsx-runtime").JSX.Element;
9
+ displayName: string;
10
+ } & {
11
+ type: string;
12
+ content: {
13
+ attributes: {
14
+ popupPlacement: string;
15
+ openPopup: boolean;
16
+ backgroundDisabled: boolean;
17
+ closeOnClickBackground: boolean;
18
+ closeOnClickPopup: boolean;
19
+ containerTopOffset: number;
20
+ containerLeftOffset: number;
21
+ disabled: boolean;
22
+ };
23
+ definition: {
24
+ label: string;
25
+ type: string;
26
+ items: never[];
27
+ bindings: {};
28
+ styleSelectors: {
29
+ base: string;
30
+ backgroundContainer: string;
31
+ };
32
+ initialState: {
33
+ visibility: boolean;
34
+ };
35
+ };
36
+ builder: {
37
+ canDelete: boolean;
38
+ canSelect: boolean;
39
+ canDragDrop: boolean;
40
+ canMove: boolean;
41
+ canTemplate: boolean;
42
+ itemsAllowed: never[];
43
+ itemsNotAllowed: never[];
44
+ };
45
+ market: {
46
+ category: string;
47
+ owner: string;
48
+ verified: boolean;
49
+ license: string;
50
+ website: string;
51
+ backgroundColor: string;
52
+ icon: string;
53
+ };
54
+ defaultStyle: {
55
+ name: string;
56
+ displayMode: string;
57
+ style: {
58
+ base: {
59
+ default: {
60
+ 'min-height': string;
61
+ 'min-width': string;
62
+ cursor: string;
63
+ 'user-select': string;
64
+ };
65
+ };
66
+ backgroundContainer: {
67
+ default: {
68
+ top: number;
69
+ bottom: number;
70
+ left: number;
71
+ right: number;
72
+ position: string;
73
+ cursor: string;
74
+ 'z-index': number;
75
+ };
76
+ };
77
+ };
78
+ };
79
+ settings: {};
80
+ };
81
+ initialItems: string[];
82
+ plugins: {
83
+ dropdownPopup: {
84
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Dropdown/DropdownPopup/DropdownPopup').DropdownPopupProps>): import("react/jsx-runtime").JSX.Element;
85
+ displayName: string;
86
+ } & {
87
+ type: string;
88
+ content: {
89
+ attributes: {};
90
+ definition: {
91
+ label: string;
92
+ type: string;
93
+ description: string;
94
+ items: never[];
95
+ bindings: {};
96
+ styleSelectors: {
97
+ base: string;
98
+ };
99
+ initialState: {};
100
+ };
101
+ builder: {
102
+ canDelete: boolean;
103
+ canSelect: boolean;
104
+ canDragDrop: boolean;
105
+ canMove: boolean;
106
+ canTemplate: boolean;
107
+ itemsAllowed: never[];
108
+ itemsNotAllowed: never[];
109
+ };
110
+ market: {
111
+ category: string;
112
+ owner: string;
113
+ verified: boolean;
114
+ license: string;
115
+ website: string;
116
+ backgroundColor: string;
117
+ icon: string;
118
+ };
119
+ defaultStyle: {
120
+ name: string;
121
+ displayMode: string;
122
+ style: {
123
+ base: {
124
+ default: {
125
+ 'background-color': string;
126
+ 'min-height': string;
127
+ 'min-width': string;
128
+ 'padding-right': string;
129
+ 'padding-bottom': string;
130
+ 'padding-left': string;
131
+ 'padding-top': string;
132
+ position: string;
133
+ display: string;
134
+ 'flex-direction': string;
135
+ 'border-top-right-radius': string;
136
+ 'border-bottom-right-radius': string;
137
+ 'border-bottom-left-radius': string;
138
+ 'border-top-left-radius': string;
139
+ 'box-shadow': string;
140
+ 'z-index': number;
141
+ };
142
+ };
143
+ };
144
+ subTypes: {};
145
+ };
146
+ settings: {};
147
+ };
148
+ initialItems: never[];
149
+ };
150
+ };
151
+ };
152
+ notFound: {
153
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/internal/NotFound/NotFound').NotFoundProps>): import("react/jsx-runtime").JSX.Element;
154
+ displayName: string;
155
+ } & {
156
+ type: string;
157
+ content: {
158
+ attributes: {};
159
+ definition: {
160
+ label: string;
161
+ type: string;
162
+ description: string;
163
+ bindings: {};
164
+ styleSelectors: {
165
+ base: string;
166
+ };
167
+ initialState: {
168
+ visibility: boolean;
169
+ };
170
+ };
171
+ builder: {
172
+ canDelete: boolean;
173
+ canSelect: boolean;
174
+ canDragDrop: boolean;
175
+ canMove: boolean;
176
+ canTemplate: boolean;
177
+ itemsAllowed: never[];
178
+ itemsNotAllowed: never[];
179
+ };
180
+ market: {
181
+ category: string;
182
+ owner: string;
183
+ verified: boolean;
184
+ license: string;
185
+ website: string;
186
+ backgroundColor: string;
187
+ icon: string;
188
+ };
189
+ defaultStyle: {
190
+ name: string;
191
+ displayMode: string;
192
+ style: {
193
+ base: {
194
+ default: {};
195
+ };
196
+ };
197
+ };
198
+ settings: {};
199
+ };
200
+ };
201
+ loading: {
202
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/internal/Loading/Loading').LoadingProps>): import("react/jsx-runtime").JSX.Element;
203
+ displayName: string;
204
+ } & {
205
+ type: string;
206
+ content: {
207
+ attributes: {};
208
+ definition: {
209
+ label: string;
210
+ type: string;
211
+ description: string;
212
+ bindings: {};
213
+ styleSelectors: {
214
+ base: string;
215
+ };
216
+ initialState: {
217
+ visibility: boolean;
218
+ };
219
+ };
220
+ builder: {
221
+ canDelete: boolean;
222
+ canSelect: boolean;
223
+ canDragDrop: boolean;
224
+ canMove: boolean;
225
+ canTemplate: boolean;
226
+ itemsAllowed: never[];
227
+ itemsNotAllowed: never[];
228
+ };
229
+ market: {
230
+ category: string;
231
+ owner: string;
232
+ verified: boolean;
233
+ license: string;
234
+ website: string;
235
+ backgroundColor: string;
236
+ icon: string;
237
+ };
238
+ defaultStyle: {
239
+ name: string;
240
+ displayMode: string;
241
+ style: {
242
+ base: {
243
+ default: {};
244
+ };
245
+ };
246
+ };
247
+ settings: {};
248
+ };
249
+ };
250
+ custom: {
251
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/advanced/Custom/Custom').CustomProps>): import("react/jsx-runtime").JSX.Element;
252
+ displayName: string;
253
+ } & {
254
+ type: string;
255
+ content: {
256
+ attributes: {
257
+ renderType: string;
258
+ settings: string;
259
+ isPlugin: boolean;
260
+ pluginScope: string;
261
+ assets: string;
262
+ scriptUrl: string;
263
+ };
264
+ definition: {
265
+ label: string;
266
+ type: string;
267
+ description: string;
268
+ bindings: {};
269
+ styleSelectors: {
270
+ base: string;
271
+ };
272
+ initialState: {
273
+ visibility: boolean;
274
+ };
275
+ };
276
+ builder: {
277
+ canDelete: boolean;
278
+ canSelect: boolean;
279
+ canDragDrop: boolean;
280
+ canMove: boolean;
281
+ canTemplate: boolean;
282
+ itemsAllowed: never[];
283
+ itemsNotAllowed: never[];
284
+ };
285
+ market: {
286
+ category: string;
287
+ owner: string;
288
+ verified: boolean;
289
+ license: string;
290
+ website: string;
291
+ backgroundColor: string;
292
+ icon: string;
293
+ };
294
+ defaultStyle: {
295
+ name: string;
296
+ displayMode: string;
297
+ style: {
298
+ base: {
299
+ default: {
300
+ 'min-width': string;
301
+ 'min-height': string;
302
+ };
303
+ };
304
+ };
305
+ };
306
+ settings: {};
307
+ };
308
+ };
309
+ reference: {
310
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/advanced/Reference/Reference').ReferenceProps>): import("react/jsx-runtime").JSX.Element;
311
+ displayName: string;
312
+ } & {
313
+ type: string;
314
+ content: {
315
+ attributes: {
316
+ referenceType: string;
317
+ referenceId: string;
318
+ referenceContainer: string;
319
+ };
320
+ definition: {
321
+ label: string;
322
+ type: string;
323
+ description: string;
324
+ items: never[];
325
+ bindings: {};
326
+ styleSelectors: {
327
+ base: string;
328
+ };
329
+ initialState: {
330
+ visibility: boolean;
331
+ };
332
+ };
333
+ builder: {
334
+ canDelete: boolean;
335
+ canSelect: boolean;
336
+ canDragDrop: boolean;
337
+ canMove: boolean;
338
+ canTemplate: boolean;
339
+ itemsAllowed: never[];
340
+ itemsNotAllowed: never[];
341
+ };
342
+ market: {
343
+ category: string;
344
+ owner: string;
345
+ verified: boolean;
346
+ license: string;
347
+ website: string;
348
+ backgroundColor: string;
349
+ icon: string;
350
+ };
351
+ defaultStyle: {
352
+ name: string;
353
+ displayMode: string;
354
+ style: {
355
+ base: {
356
+ default: {
357
+ 'min-width': string;
358
+ 'min-height': string;
359
+ };
360
+ };
361
+ };
362
+ };
363
+ settings: {};
364
+ };
365
+ };
366
+ blockHtml: {
367
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/advanced/BlockHtml/BlockHtml').BlockHtmlProps>): import("react/jsx-runtime").JSX.Element;
368
+ displayName: string;
369
+ } & {
370
+ type: string;
371
+ content: {
372
+ attributes: {
373
+ content: string;
374
+ };
375
+ definition: {
376
+ label: string;
377
+ type: string;
378
+ bindings: {};
379
+ styleSelectors: {
380
+ base: string;
381
+ };
382
+ initialState: {
383
+ visibility: boolean;
384
+ };
385
+ };
386
+ builder: {
387
+ canDelete: boolean;
388
+ canSelect: boolean;
389
+ canDragDrop: boolean;
390
+ canMove: boolean;
391
+ canTemplate: boolean;
392
+ itemsAllowed: never[];
393
+ itemsNotAllowed: never[];
394
+ };
395
+ market: {
396
+ category: string;
397
+ owner: string;
398
+ verified: boolean;
399
+ license: string;
400
+ website: string;
401
+ backgroundColor: string;
402
+ icon: string;
403
+ };
404
+ defaultStyle: {
405
+ name: string;
406
+ displayMode: string;
407
+ style: {
408
+ base: {
409
+ default: {};
410
+ };
411
+ };
412
+ };
413
+ settings: {};
414
+ };
415
+ };
416
+ nodeHtml: {
417
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/advanced/NodeHtml/NodeHtml').NodeHtmlProps<"span">>): import("react/jsx-runtime").JSX.Element;
418
+ displayName: string;
419
+ } & {
420
+ type: string;
421
+ content: {
422
+ attributes: {
423
+ subType: string;
424
+ };
425
+ definition: {
426
+ label: string;
427
+ type: string;
428
+ description: string;
429
+ items: never[];
430
+ bindings: {};
431
+ styleSelectors: {
432
+ base: string;
433
+ };
434
+ initialState: {
435
+ visibility: boolean;
436
+ };
437
+ };
438
+ builder: {
439
+ canDelete: boolean;
440
+ canSelect: boolean;
441
+ canDragDrop: boolean;
442
+ canMove: boolean;
443
+ canTemplate: boolean;
444
+ itemsAllowed: never[];
445
+ itemsNotAllowed: never[];
446
+ };
447
+ market: {
448
+ category: string;
449
+ owner: string;
450
+ verified: boolean;
451
+ license: string;
452
+ website: string;
453
+ backgroundColor: string;
454
+ icon: string;
455
+ };
456
+ defaultStyle: {
457
+ name: string;
458
+ displayMode: string;
459
+ style: {
460
+ base: {
461
+ default: {
462
+ 'min-width': string;
463
+ 'min-height': string;
464
+ };
465
+ };
466
+ };
467
+ subTypes: {
468
+ hr: {
469
+ name: string;
470
+ displayMode: string;
471
+ style: {
472
+ base: {
473
+ default: {
474
+ 'border-top-width': string;
475
+ };
476
+ };
477
+ };
478
+ };
479
+ };
480
+ };
481
+ settings: {};
482
+ };
483
+ };
484
+ blockJsx: {
485
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/advanced/BlockJsx/BlockJsx').BlockJsxProps>): import("react/jsx-runtime").JSX.Element;
486
+ displayName: string;
487
+ } & {
488
+ type: string;
489
+ content: {
490
+ attributes: {
491
+ content: string;
492
+ props: string;
493
+ contentCache: string;
494
+ allowEmptyRender: boolean;
495
+ };
496
+ definition: {
497
+ label: string;
498
+ type: string;
499
+ bindings: {};
500
+ styleSelectors: {
501
+ base: string;
502
+ };
503
+ initialState: {
504
+ visibility: boolean;
505
+ };
506
+ };
507
+ builder: {
508
+ canDelete: boolean;
509
+ canSelect: boolean;
510
+ canDragDrop: boolean;
511
+ canMove: boolean;
512
+ canTemplate: boolean;
513
+ itemsAllowed: never[];
514
+ itemsNotAllowed: never[];
515
+ };
516
+ market: {
517
+ category: string;
518
+ owner: string;
519
+ verified: boolean;
520
+ license: string;
521
+ website: string;
522
+ backgroundColor: string;
523
+ icon: string;
524
+ };
525
+ defaultStyle: {
526
+ name: string;
527
+ displayMode: string;
528
+ style: {
529
+ base: {
530
+ default: {};
531
+ };
532
+ };
533
+ };
534
+ settings: {};
535
+ };
536
+ };
537
+ page: {
538
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/internal/Page/Page').PageProps>): import("react/jsx-runtime").JSX.Element;
539
+ displayName: string;
540
+ } & {
541
+ type: string;
542
+ content: {
543
+ attributes: {
544
+ enabled: boolean;
545
+ name: string;
546
+ slug: string;
547
+ folder: string;
548
+ layout: string;
549
+ layoutContainer: string;
550
+ seoEnabled: boolean;
551
+ seoPageTitle: string;
552
+ seoPageDescription: string;
553
+ };
554
+ definition: {
555
+ label: string;
556
+ type: string;
557
+ description: string;
558
+ items: never[];
559
+ bindings: {};
560
+ styleSelectors: {
561
+ base: string;
562
+ };
563
+ initialState: {
564
+ visibility: boolean;
565
+ };
566
+ };
567
+ builder: {
568
+ canDelete: boolean;
569
+ canSelect: boolean;
570
+ canDragDrop: boolean;
571
+ canMove: boolean;
572
+ canTemplate: boolean;
573
+ itemsAllowed: never[];
574
+ itemsNotAllowed: never[];
575
+ };
576
+ market: {
577
+ category: string;
578
+ owner: string;
579
+ verified: boolean;
580
+ license: string;
581
+ website: string;
582
+ backgroundColor: string;
583
+ icon: string;
584
+ };
585
+ defaultStyle: {
586
+ name: string;
587
+ displayMode: string;
588
+ style: {
589
+ base: {
590
+ default: {
591
+ display: string;
592
+ 'flex-direction': string;
593
+ 'min-height': string;
594
+ 'min-width': string;
595
+ 'font-family': string;
596
+ color: string;
597
+ 'font-size': string;
598
+ 'font-weight': number;
599
+ 'line-height': string;
600
+ 'text-align': string;
601
+ 'background-color': string;
602
+ };
603
+ };
604
+ };
605
+ };
606
+ settings: {};
607
+ };
608
+ };
609
+ container: {
610
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/Container/Container').ContainerProps>): import("react/jsx-runtime").JSX.Element;
611
+ displayName: string;
612
+ } & {
613
+ type: string;
614
+ content: {
615
+ attributes: {
616
+ subType: string;
617
+ };
618
+ definition: {
619
+ label: string;
620
+ type: string;
621
+ description: string;
622
+ items: never[];
623
+ bindings: {};
624
+ styleSelectors: {
625
+ base: string;
626
+ };
627
+ initialState: {
628
+ visibility: boolean;
629
+ };
630
+ };
631
+ builder: {
632
+ canDelete: boolean;
633
+ canSelect: boolean;
634
+ canDragDrop: boolean;
635
+ canMove: boolean;
636
+ canTemplate: boolean;
637
+ itemsAllowed: never[];
638
+ itemsNotAllowed: never[];
639
+ };
640
+ market: {
641
+ category: string;
642
+ owner: string;
643
+ verified: boolean;
644
+ license: string;
645
+ website: string;
646
+ backgroundColor: string;
647
+ icon: string;
648
+ };
649
+ defaultStyle: {
650
+ name: string;
651
+ displayMode: string;
652
+ style: {
653
+ base: {
654
+ default: {
655
+ 'min-width': string;
656
+ 'min-height': string;
657
+ };
658
+ };
659
+ };
660
+ subTypes: {};
661
+ };
662
+ settings: {};
663
+ };
664
+ };
665
+ layoutContainer: {
666
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/internal/LayoutContainer/LayoutContainer').LayoutContainerProps>): import("react/jsx-runtime").JSX.Element;
667
+ displayName: string;
668
+ } & {
669
+ type: string;
670
+ content: {
671
+ attributes: {
672
+ subType: string;
673
+ };
674
+ definition: {
675
+ label: string;
676
+ type: string;
677
+ description: string;
678
+ items: never[];
679
+ bindings: {};
680
+ styleSelectors: {
681
+ base: string;
682
+ };
683
+ initialState: {
684
+ visibility: boolean;
685
+ };
686
+ };
687
+ builder: {
688
+ canDelete: boolean;
689
+ canSelect: boolean;
690
+ canDragDrop: boolean;
691
+ canMove: boolean;
692
+ canTemplate: boolean;
693
+ itemsAllowed: never[];
694
+ itemsNotAllowed: never[];
695
+ };
696
+ market: {
697
+ category: string;
698
+ owner: string;
699
+ verified: boolean;
700
+ license: string;
701
+ website: string;
702
+ backgroundColor: string;
703
+ icon: string;
704
+ };
705
+ defaultStyle: {
706
+ name: string;
707
+ displayMode: string;
708
+ style: {
709
+ base: {
710
+ default: {};
711
+ };
712
+ };
713
+ subTypes: {};
714
+ };
715
+ settings: {};
716
+ };
717
+ };
718
+ dialogContainer: {
719
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/DialogContainer/DialogContainer').DialogContainerProps>): import("react/jsx-runtime").JSX.Element;
720
+ displayName: string;
721
+ } & {
722
+ type: string;
723
+ content: {
724
+ attributes: {
725
+ headerLabel: string;
726
+ acceptButtonLabel: string;
727
+ rejectButtonLabel: string;
728
+ autoHideAfterClick: boolean;
729
+ };
730
+ definition: {
731
+ label: string;
732
+ type: string;
733
+ description: string;
734
+ items: never[];
735
+ bindings: {};
736
+ styleSelectors: {
737
+ base: string;
738
+ backgroundContainer: string;
739
+ rootContainer: string;
740
+ headerContainer: string;
741
+ headerTitle: string;
742
+ headerCloseButton: string;
743
+ bodyContainer: string;
744
+ footerContainer: string;
745
+ acceptButton: string;
746
+ cancelButton: string;
747
+ };
748
+ initialState: {
749
+ visibility: boolean;
750
+ };
751
+ };
752
+ builder: {
753
+ canDelete: boolean;
754
+ canSelect: boolean;
755
+ canDragDrop: boolean;
756
+ canMove: boolean;
757
+ canTemplate: boolean;
758
+ itemsAllowed: never[];
759
+ itemsNotAllowed: never[];
760
+ };
761
+ market: {
762
+ category: string;
763
+ owner: string;
764
+ verified: boolean;
765
+ license: string;
766
+ website: string;
767
+ backgroundColor: string;
768
+ icon: string;
769
+ };
770
+ defaultStyle: {
771
+ name: string;
772
+ displayMode: string;
773
+ style: {
774
+ base: {
775
+ default: {
776
+ position: string;
777
+ top: string;
778
+ bottom: string;
779
+ left: string;
780
+ right: string;
781
+ };
782
+ };
783
+ backgroundContainer: {
784
+ default: {
785
+ height: string;
786
+ width: string;
787
+ left: string;
788
+ top: string;
789
+ position: string;
790
+ 'background-color': string;
791
+ opacity: string;
792
+ };
793
+ };
794
+ rootContainer: {
795
+ default: {
796
+ display: string;
797
+ 'flex-direction': string;
798
+ position: string;
799
+ top: string;
800
+ left: string;
801
+ width: string;
802
+ height: string;
803
+ 'background-color': string;
804
+ transform: string;
805
+ 'padding-top': string;
806
+ 'padding-bottom': string;
807
+ 'padding-left': string;
808
+ 'padding-right': string;
809
+ 'border-top-left-radius': string;
810
+ 'border-top-right-radius': string;
811
+ 'border-bottom-left-radius': string;
812
+ 'border-bottom-right-radius': string;
813
+ };
814
+ };
815
+ headerContainer: {
816
+ default: {
817
+ display: string;
818
+ 'align-items': string;
819
+ 'justify-content': string;
820
+ };
821
+ };
822
+ headerTitle: {
823
+ default: {
824
+ 'font-size': string;
825
+ 'font-weight': string;
826
+ 'line-height': string;
827
+ color: string;
828
+ };
829
+ };
830
+ headerCloseButton: {
831
+ default: {
832
+ height: string;
833
+ width: string;
834
+ padding: string;
835
+ display: string;
836
+ 'justify-content': string;
837
+ 'align-items': string;
838
+ cursor: string;
839
+ };
840
+ };
841
+ bodyContainer: {
842
+ default: {
843
+ display: string;
844
+ 'flex-direction': string;
845
+ 'flex-grow': string;
846
+ 'flex-basis': string;
847
+ };
848
+ };
849
+ footerContainer: {
850
+ default: {
851
+ display: string;
852
+ 'justify-content': string;
853
+ 'margin-top': string;
854
+ };
855
+ };
856
+ };
857
+ subTypes: {};
858
+ };
859
+ settings: {};
860
+ };
861
+ initialItems: string[];
862
+ };
863
+ modalContainer: {
864
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/ModalContainer/ModalContainer').ModalContainerProps>): import("react/jsx-runtime").JSX.Element;
865
+ displayName: string;
866
+ } & {
867
+ type: string;
868
+ content: {
869
+ attributes: {
870
+ title: string;
871
+ autoHideAfterClick: boolean;
872
+ };
873
+ definition: {
874
+ label: string;
875
+ type: string;
876
+ description: string;
877
+ items: never[];
878
+ bindings: {};
879
+ styleSelectors: {
880
+ base: string;
881
+ backgroundContainer: string;
882
+ rootContainer: string;
883
+ headerContainer: string;
884
+ headerTitle: string;
885
+ headerCloseButton: string;
886
+ bodyContainer: string;
887
+ };
888
+ initialState: {
889
+ visibility: boolean;
890
+ };
891
+ };
892
+ builder: {
893
+ canDelete: boolean;
894
+ canSelect: boolean;
895
+ canDragDrop: boolean;
896
+ canMove: boolean;
897
+ canTemplate: boolean;
898
+ itemsAllowed: never[];
899
+ itemsNotAllowed: never[];
900
+ };
901
+ market: {
902
+ category: string;
903
+ owner: string;
904
+ verified: boolean;
905
+ license: string;
906
+ website: string;
907
+ backgroundColor: string;
908
+ icon: string;
909
+ };
910
+ defaultStyle: {
911
+ name: string;
912
+ displayMode: string;
913
+ style: {
914
+ base: {
915
+ default: {
916
+ position: string;
917
+ top: string;
918
+ bottom: string;
919
+ left: string;
920
+ right: string;
921
+ };
922
+ };
923
+ backgroundContainer: {
924
+ default: {
925
+ height: string;
926
+ width: string;
927
+ left: string;
928
+ top: string;
929
+ position: string;
930
+ 'background-color': string;
931
+ opacity: string;
932
+ };
933
+ };
934
+ rootContainer: {
935
+ default: {
936
+ display: string;
937
+ 'flex-direction': string;
938
+ position: string;
939
+ top: string;
940
+ left: string;
941
+ width: string;
942
+ height: string;
943
+ 'background-color': string;
944
+ transform: string;
945
+ 'border-top-left-radius': string;
946
+ 'border-top-right-radius': string;
947
+ 'border-bottom-left-radius': string;
948
+ 'border-bottom-right-radius': string;
949
+ };
950
+ };
951
+ headerContainer: {
952
+ default: {
953
+ display: string;
954
+ 'align-items': string;
955
+ 'justify-content': string;
956
+ 'border-bottom-width': string;
957
+ 'border-bottom-color': string;
958
+ 'border-bottom-style': string;
959
+ 'padding-left': string;
960
+ 'padding-right': string;
961
+ 'padding-top': string;
962
+ 'padding-bottom': string;
963
+ };
964
+ };
965
+ headerTitle: {
966
+ default: {
967
+ 'font-size': string;
968
+ 'font-weight': string;
969
+ 'line-height': string;
970
+ };
971
+ };
972
+ headerCloseButton: {
973
+ default: {
974
+ height: string;
975
+ width: string;
976
+ padding: string;
977
+ display: string;
978
+ 'justify-content': string;
979
+ 'align-items': string;
980
+ cursor: string;
981
+ };
982
+ bodyContainer: {
983
+ default: {
984
+ display: string;
985
+ 'flex-direction': string;
986
+ 'flex-grow': string;
987
+ 'flex-basis': string;
988
+ 'padding-top': string;
989
+ 'padding-bottom': string;
990
+ 'padding-left': string;
991
+ 'padding-right': string;
992
+ };
993
+ };
994
+ };
995
+ };
996
+ subTypes: {};
997
+ };
998
+ settings: {};
999
+ };
1000
+ initialItems: string[];
1001
+ };
1002
+ tabContainer: {
1003
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/TabContainer/TabContainer').TabContainerProps>): import("react/jsx-runtime").JSX.Element;
1004
+ displayName: string;
1005
+ } & {
1006
+ type: string;
1007
+ content: {
1008
+ attributes: {};
1009
+ definition: {
1010
+ label: string;
1011
+ type: string;
1012
+ description: string;
1013
+ items: never[];
1014
+ bindings: {};
1015
+ styleSelectors: {
1016
+ base: string;
1017
+ };
1018
+ initialState: {
1019
+ visibility: boolean;
1020
+ };
1021
+ };
1022
+ builder: {
1023
+ canDelete: boolean;
1024
+ canSelect: boolean;
1025
+ canDragDrop: boolean;
1026
+ canMove: boolean;
1027
+ canTemplate: boolean;
1028
+ itemsAllowed: string[];
1029
+ itemsNotAllowed: never[];
1030
+ };
1031
+ market: {
1032
+ category: string;
1033
+ owner: string;
1034
+ verified: boolean;
1035
+ license: string;
1036
+ website: string;
1037
+ backgroundColor: string;
1038
+ icon: string;
1039
+ };
1040
+ defaultStyle: {
1041
+ name: string;
1042
+ displayMode: string;
1043
+ style: {
1044
+ base: {
1045
+ default: {
1046
+ 'min-width': string;
1047
+ 'min-height': string;
1048
+ };
1049
+ };
1050
+ };
1051
+ subTypes: {};
1052
+ };
1053
+ settings: {};
1054
+ };
1055
+ initialItems: string[];
1056
+ plugins: {
1057
+ tabContainerHeader: {
1058
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/TabContainer/TabContainerHeader/TabContainerHeader').TabContainerHeaderProps>): import("react/jsx-runtime").JSX.Element;
1059
+ displayName: string;
1060
+ } & {
1061
+ type: string;
1062
+ content: {
1063
+ attributes: {};
1064
+ definition: {
1065
+ label: string;
1066
+ type: string;
1067
+ description: string;
1068
+ items: never[];
1069
+ bindings: {};
1070
+ styleSelectors: {
1071
+ base: string;
1072
+ };
1073
+ initialState: {
1074
+ visibility: boolean;
1075
+ };
1076
+ };
1077
+ builder: {
1078
+ canDelete: boolean;
1079
+ canSelect: boolean;
1080
+ canDragDrop: boolean;
1081
+ canMove: boolean;
1082
+ canTemplate: boolean;
1083
+ itemsAllowed: string[];
1084
+ itemsNotAllowed: never[];
1085
+ };
1086
+ market: {
1087
+ category: string;
1088
+ owner: string;
1089
+ verified: boolean;
1090
+ license: string;
1091
+ website: string;
1092
+ backgroundColor: string;
1093
+ icon: string;
1094
+ };
1095
+ defaultStyle: {
1096
+ name: string;
1097
+ displayMode: string;
1098
+ style: {
1099
+ base: {
1100
+ default: {
1101
+ 'min-width': string;
1102
+ 'min-height': string;
1103
+ };
1104
+ };
1105
+ };
1106
+ subTypes: {};
1107
+ };
1108
+ settings: {};
1109
+ };
1110
+ initialItems: string[];
1111
+ };
1112
+ tabContainerBody: {
1113
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/TabContainer/TabContainerBody/TabContainerBody').TabContainerBodyProps>): import("react/jsx-runtime").JSX.Element;
1114
+ displayName: string;
1115
+ } & {
1116
+ type: string;
1117
+ content: {
1118
+ attributes: {};
1119
+ definition: {
1120
+ label: string;
1121
+ type: string;
1122
+ description: string;
1123
+ items: never[];
1124
+ bindings: {};
1125
+ styleSelectors: {
1126
+ base: string;
1127
+ };
1128
+ initialState: {
1129
+ visibility: boolean;
1130
+ };
1131
+ };
1132
+ builder: {
1133
+ canDelete: boolean;
1134
+ canSelect: boolean;
1135
+ canDragDrop: boolean;
1136
+ canMove: boolean;
1137
+ canTemplate: boolean;
1138
+ itemsAllowed: string[];
1139
+ itemsNotAllowed: never[];
1140
+ };
1141
+ market: {
1142
+ category: string;
1143
+ owner: string;
1144
+ verified: boolean;
1145
+ license: string;
1146
+ website: string;
1147
+ backgroundColor: string;
1148
+ icon: string;
1149
+ };
1150
+ defaultStyle: {
1151
+ name: string;
1152
+ displayMode: string;
1153
+ style: {
1154
+ base: {
1155
+ default: {
1156
+ 'min-width': string;
1157
+ 'min-height': string;
1158
+ };
1159
+ };
1160
+ };
1161
+ subTypes: {};
1162
+ };
1163
+ settings: {};
1164
+ };
1165
+ initialItems: string[];
1166
+ };
1167
+ tabContainerItem: {
1168
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/TabContainer/TabContainerItem/TabContainerItem').TabContainerItemProps>): import("react/jsx-runtime").JSX.Element;
1169
+ displayName: string;
1170
+ } & {
1171
+ type: string;
1172
+ content: {
1173
+ attributes: {};
1174
+ definition: {
1175
+ label: string;
1176
+ type: string;
1177
+ description: string;
1178
+ items: never[];
1179
+ bindings: {};
1180
+ styleSelectors: {
1181
+ base: string;
1182
+ };
1183
+ initialState: {
1184
+ visibility: boolean;
1185
+ };
1186
+ };
1187
+ builder: {
1188
+ canDelete: boolean;
1189
+ canSelect: boolean;
1190
+ canDragDrop: boolean;
1191
+ canMove: boolean;
1192
+ canTemplate: boolean;
1193
+ itemsAllowed: never[];
1194
+ itemsNotAllowed: string[];
1195
+ };
1196
+ market: {
1197
+ category: string;
1198
+ owner: string;
1199
+ verified: boolean;
1200
+ license: string;
1201
+ website: string;
1202
+ backgroundColor: string;
1203
+ icon: string;
1204
+ };
1205
+ defaultStyle: {
1206
+ name: string;
1207
+ displayMode: string;
1208
+ style: {
1209
+ base: {
1210
+ default: {
1211
+ 'min-width': string;
1212
+ 'min-height': string;
1213
+ };
1214
+ };
1215
+ };
1216
+ subTypes: {};
1217
+ };
1218
+ settings: {};
1219
+ };
1220
+ };
1221
+ };
1222
+ };
1223
+ heading: {
1224
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Heading/Heading').HeadingProps>): import("react/jsx-runtime").JSX.Element;
1225
+ displayName: string;
1226
+ } & {
1227
+ type: string;
1228
+ content: {
1229
+ attributes: {
1230
+ content: string;
1231
+ subType: string;
1232
+ };
1233
+ definition: {
1234
+ label: string;
1235
+ type: string;
1236
+ bindings: {};
1237
+ styleSelectors: {
1238
+ base: string;
1239
+ };
1240
+ initialState: {
1241
+ visibility: boolean;
1242
+ };
1243
+ };
1244
+ builder: {
1245
+ canDelete: boolean;
1246
+ canSelect: boolean;
1247
+ canDragDrop: boolean;
1248
+ canMove: boolean;
1249
+ canTemplate: boolean;
1250
+ itemsAllowed: never[];
1251
+ itemsNotAllowed: never[];
1252
+ };
1253
+ market: {
1254
+ category: string;
1255
+ owner: string;
1256
+ verified: boolean;
1257
+ license: string;
1258
+ website: string;
1259
+ backgroundColor: string;
1260
+ icon: string;
1261
+ };
1262
+ defaultStyle: {
1263
+ name: string;
1264
+ displayMode: string;
1265
+ style: {
1266
+ base: {
1267
+ default: {};
1268
+ };
1269
+ };
1270
+ subTypes: {
1271
+ h1: {
1272
+ name: string;
1273
+ displayMode: string;
1274
+ style: {
1275
+ base: {
1276
+ default: {
1277
+ 'margin-top': string;
1278
+ 'margin-bottom': string;
1279
+ 'font-size': string;
1280
+ 'font-weight': number;
1281
+ 'line-height': string;
1282
+ };
1283
+ };
1284
+ };
1285
+ };
1286
+ h2: {
1287
+ name: string;
1288
+ displayMode: string;
1289
+ style: {
1290
+ base: {
1291
+ default: {
1292
+ 'margin-top': string;
1293
+ 'margin-bottom': string;
1294
+ 'font-size': string;
1295
+ 'font-weight': number;
1296
+ 'line-height': string;
1297
+ };
1298
+ };
1299
+ };
1300
+ };
1301
+ h3: {
1302
+ name: string;
1303
+ displayMode: string;
1304
+ style: {
1305
+ base: {
1306
+ default: {
1307
+ 'margin-top': string;
1308
+ 'margin-bottom': string;
1309
+ 'font-size': string;
1310
+ 'font-weight': number;
1311
+ 'line-height': string;
1312
+ };
1313
+ };
1314
+ };
1315
+ };
1316
+ h4: {
1317
+ name: string;
1318
+ displayMode: string;
1319
+ style: {
1320
+ base: {
1321
+ default: {
1322
+ 'margin-top': string;
1323
+ 'margin-bottom': string;
1324
+ 'font-size': string;
1325
+ 'font-weight': number;
1326
+ 'line-height': string;
1327
+ };
1328
+ };
1329
+ };
1330
+ };
1331
+ h5: {
1332
+ name: string;
1333
+ displayMode: string;
1334
+ style: {
1335
+ base: {
1336
+ default: {
1337
+ 'margin-top': string;
1338
+ 'margin-bottom': string;
1339
+ 'font-size': string;
1340
+ 'font-weight': number;
1341
+ 'line-height': string;
1342
+ };
1343
+ };
1344
+ };
1345
+ };
1346
+ h6: {
1347
+ name: string;
1348
+ displayMode: string;
1349
+ style: {
1350
+ base: {
1351
+ default: {
1352
+ 'margin-top': string;
1353
+ 'margin-bottom': string;
1354
+ 'font-size': string;
1355
+ 'font-weight': number;
1356
+ 'line-height': string;
1357
+ };
1358
+ };
1359
+ };
1360
+ };
1361
+ };
1362
+ };
1363
+ settings: {};
1364
+ };
1365
+ };
1366
+ image: {
1367
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/media/Image/Image').ImageProps>): import("react/jsx-runtime").JSX.Element;
1368
+ displayName: string;
1369
+ } & {
1370
+ type: string;
1371
+ content: {
1372
+ attributes: {
1373
+ src: string;
1374
+ alt: string;
1375
+ fetchPriority: string;
1376
+ loadMode: string;
1377
+ };
1378
+ definition: {
1379
+ label: string;
1380
+ type: string;
1381
+ description: string;
1382
+ bindings: {};
1383
+ styleSelectors: {
1384
+ base: string;
1385
+ };
1386
+ initialState: {
1387
+ visibility: boolean;
1388
+ };
1389
+ };
1390
+ builder: {
1391
+ canDelete: boolean;
1392
+ canSelect: boolean;
1393
+ canDragDrop: boolean;
1394
+ canMove: boolean;
1395
+ canTemplate: boolean;
1396
+ itemsAllowed: never[];
1397
+ itemsNotAllowed: never[];
1398
+ };
1399
+ market: {
1400
+ category: string;
1401
+ owner: string;
1402
+ verified: boolean;
1403
+ license: string;
1404
+ website: string;
1405
+ backgroundColor: string;
1406
+ icon: string;
1407
+ };
1408
+ defaultStyle: {
1409
+ name: string;
1410
+ displayMode: string;
1411
+ style: {
1412
+ base: {
1413
+ default: {
1414
+ display: string;
1415
+ width: string;
1416
+ height: string;
1417
+ };
1418
+ };
1419
+ };
1420
+ };
1421
+ settings: {};
1422
+ };
1423
+ };
1424
+ video: {
1425
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/media/Video/Video').VideoProps>): import("react/jsx-runtime").JSX.Element;
1426
+ displayName: string;
1427
+ } & {
1428
+ type: string;
1429
+ content: {
1430
+ attributes: {
1431
+ src: string;
1432
+ autoPlay: boolean;
1433
+ playsInline: boolean;
1434
+ loop: boolean;
1435
+ muted: boolean;
1436
+ };
1437
+ definition: {
1438
+ label: string;
1439
+ type: string;
1440
+ description: string;
1441
+ bindings: {};
1442
+ styleSelectors: {
1443
+ base: string;
1444
+ };
1445
+ initialState: {
1446
+ visibility: boolean;
1447
+ };
1448
+ };
1449
+ builder: {
1450
+ canDelete: boolean;
1451
+ canSelect: boolean;
1452
+ canDragDrop: boolean;
1453
+ canMove: boolean;
1454
+ canTemplate: boolean;
1455
+ itemsAllowed: never[];
1456
+ itemsNotAllowed: never[];
1457
+ };
1458
+ market: {
1459
+ category: string;
1460
+ owner: string;
1461
+ verified: boolean;
1462
+ license: string;
1463
+ website: string;
1464
+ backgroundColor: string;
1465
+ icon: string;
1466
+ };
1467
+ defaultStyle: {
1468
+ name: string;
1469
+ displayMode: string;
1470
+ style: {
1471
+ base: {
1472
+ default: {
1473
+ display: string;
1474
+ width: string;
1475
+ height: string;
1476
+ };
1477
+ };
1478
+ };
1479
+ };
1480
+ settings: {};
1481
+ };
1482
+ };
1483
+ fontAwesome: {
1484
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/media/FontAwesome/FontAwesome').FontAwesomeProps>): import("react/jsx-runtime").JSX.Element;
1485
+ displayName: string;
1486
+ } & {
1487
+ type: string;
1488
+ content: {
1489
+ attributes: {
1490
+ icon: string;
1491
+ size: string;
1492
+ iconAnimation: string;
1493
+ };
1494
+ definition: {
1495
+ label: string;
1496
+ type: string;
1497
+ bindings: {};
1498
+ styleSelectors: {
1499
+ base: string;
1500
+ };
1501
+ initialState: {
1502
+ visibility: boolean;
1503
+ };
1504
+ };
1505
+ builder: {
1506
+ canDelete: boolean;
1507
+ canSelect: boolean;
1508
+ canDragDrop: boolean;
1509
+ canMove: boolean;
1510
+ canTemplate: boolean;
1511
+ itemsAllowed: never[];
1512
+ itemsNotAllowed: never[];
1513
+ };
1514
+ market: {
1515
+ category: string;
1516
+ owner: string;
1517
+ verified: boolean;
1518
+ license: string;
1519
+ website: string;
1520
+ backgroundColor: string;
1521
+ icon: string;
1522
+ };
1523
+ defaultStyle: {
1524
+ name: string;
1525
+ displayMode: string;
1526
+ style: {
1527
+ base: {
1528
+ default: {
1529
+ display: string;
1530
+ 'font-size': string;
1531
+ };
1532
+ };
1533
+ };
1534
+ };
1535
+ settings: {};
1536
+ };
1537
+ };
1538
+ button: {
1539
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Button/Button').ButtonProps>): import("react/jsx-runtime").JSX.Element;
1540
+ displayName: string;
1541
+ } & {
1542
+ type: string;
1543
+ content: {
1544
+ attributes: {
1545
+ contentPlacement: string;
1546
+ content: string;
1547
+ subType: string;
1548
+ disabled: boolean;
1549
+ };
1550
+ definition: {
1551
+ label: string;
1552
+ type: string;
1553
+ items: never[];
1554
+ bindings: {};
1555
+ styleSelectors: {
1556
+ base: string;
1557
+ };
1558
+ initialState: {
1559
+ visibility: boolean;
1560
+ };
1561
+ };
1562
+ builder: {
1563
+ canDelete: boolean;
1564
+ canSelect: boolean;
1565
+ canDragDrop: boolean;
1566
+ canMove: boolean;
1567
+ canTemplate: boolean;
1568
+ itemsAllowed: never[];
1569
+ itemsNotAllowed: never[];
1570
+ };
1571
+ market: {
1572
+ category: string;
1573
+ owner: string;
1574
+ verified: boolean;
1575
+ license: string;
1576
+ website: string;
1577
+ backgroundColor: string;
1578
+ icon: string;
1579
+ };
1580
+ defaultStyle: {
1581
+ name: string;
1582
+ displayMode: string;
1583
+ style: {
1584
+ base: {
1585
+ default: {};
1586
+ };
1587
+ };
1588
+ subTypes: {
1589
+ button: {
1590
+ name: string;
1591
+ displayMode: string;
1592
+ style: {
1593
+ base: {
1594
+ default: {
1595
+ 'min-height': string;
1596
+ 'min-width': string;
1597
+ 'padding-top': string;
1598
+ 'padding-left': string;
1599
+ 'padding-right': string;
1600
+ 'padding-bottom': string;
1601
+ cursor: string;
1602
+ 'font-size': string;
1603
+ 'line-height': string;
1604
+ 'border-top-left-radius': string;
1605
+ 'border-top-right-radius': string;
1606
+ 'border-bottom-left-radius': string;
1607
+ 'border-bottom-right-radius': string;
1608
+ };
1609
+ };
1610
+ };
1611
+ };
1612
+ reset: {
1613
+ name: string;
1614
+ displayMode: string;
1615
+ style: {
1616
+ base: {
1617
+ default: {
1618
+ 'min-height': string;
1619
+ 'min-width': string;
1620
+ 'padding-top': string;
1621
+ 'padding-left': string;
1622
+ 'padding-right': string;
1623
+ 'padding-bottom': string;
1624
+ cursor: string;
1625
+ 'font-size': string;
1626
+ 'line-height': string;
1627
+ 'border-top-left-radius': string;
1628
+ 'border-top-right-radius': string;
1629
+ 'border-bottom-left-radius': string;
1630
+ 'border-bottom-right-radius': string;
1631
+ };
1632
+ };
1633
+ };
1634
+ };
1635
+ submit: {
1636
+ name: string;
1637
+ displayMode: string;
1638
+ style: {
1639
+ base: {
1640
+ default: {
1641
+ 'min-height': string;
1642
+ 'min-width': string;
1643
+ 'padding-top': string;
1644
+ 'padding-left': string;
1645
+ 'padding-right': string;
1646
+ 'padding-bottom': string;
1647
+ cursor: string;
1648
+ 'font-size': string;
1649
+ 'line-height': string;
1650
+ 'border-top-left-radius': string;
1651
+ 'border-top-right-radius': string;
1652
+ 'border-bottom-left-radius': string;
1653
+ 'border-bottom-right-radius': string;
1654
+ };
1655
+ };
1656
+ };
1657
+ };
1658
+ };
1659
+ };
1660
+ settings: {};
1661
+ };
1662
+ };
1663
+ paragraph: {
1664
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Paragraph/Paragraph').ParagraphProps>): import("react/jsx-runtime").JSX.Element;
1665
+ displayName: string;
1666
+ } & {
1667
+ type: string;
1668
+ content: {
1669
+ attributes: {
1670
+ content: string;
1671
+ };
1672
+ definition: {
1673
+ label: string;
1674
+ type: string;
1675
+ bindings: {};
1676
+ styleSelectors: {
1677
+ base: string;
1678
+ };
1679
+ initialState: {
1680
+ visibility: boolean;
1681
+ };
1682
+ };
1683
+ builder: {
1684
+ canDelete: boolean;
1685
+ canSelect: boolean;
1686
+ canDragDrop: boolean;
1687
+ canMove: boolean;
1688
+ canTemplate: boolean;
1689
+ itemsAllowed: never[];
1690
+ itemsNotAllowed: never[];
1691
+ };
1692
+ market: {
1693
+ category: string;
1694
+ owner: string;
1695
+ verified: boolean;
1696
+ license: string;
1697
+ website: string;
1698
+ backgroundColor: string;
1699
+ icon: string;
1700
+ };
1701
+ defaultStyle: {
1702
+ name: string;
1703
+ displayMode: string;
1704
+ style: {
1705
+ base: {
1706
+ default: {
1707
+ 'margin-top': string;
1708
+ 'margin-bottom': string;
1709
+ };
1710
+ };
1711
+ };
1712
+ };
1713
+ settings: {};
1714
+ };
1715
+ };
1716
+ text: {
1717
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Text/Text').TextProps>): import("react/jsx-runtime").JSX.Element;
1718
+ displayName: string;
1719
+ } & {
1720
+ type: string;
1721
+ content: {
1722
+ attributes: {
1723
+ content: string;
1724
+ };
1725
+ definition: {
1726
+ label: string;
1727
+ type: string;
1728
+ bindings: {};
1729
+ styleSelectors: {
1730
+ base: string;
1731
+ };
1732
+ initialState: {
1733
+ visibility: boolean;
1734
+ };
1735
+ };
1736
+ builder: {
1737
+ canDelete: boolean;
1738
+ canSelect: boolean;
1739
+ canDragDrop: boolean;
1740
+ canMove: boolean;
1741
+ canTemplate: boolean;
1742
+ itemsAllowed: never[];
1743
+ itemsNotAllowed: never[];
1744
+ };
1745
+ market: {
1746
+ category: string;
1747
+ owner: string;
1748
+ verified: boolean;
1749
+ license: string;
1750
+ website: string;
1751
+ backgroundColor: string;
1752
+ icon: string;
1753
+ };
1754
+ defaultStyle: {
1755
+ name: string;
1756
+ displayMode: string;
1757
+ style: {
1758
+ base: {
1759
+ default: {
1760
+ 'font-size': string;
1761
+ 'line-height': string;
1762
+ display: string;
1763
+ };
1764
+ };
1765
+ };
1766
+ };
1767
+ settings: {};
1768
+ };
1769
+ };
1770
+ list: {
1771
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/List/List').ListProps<unknown>>): import("react/jsx-runtime").JSX.Element;
1772
+ displayName: string;
1773
+ } & {
1774
+ type: string;
1775
+ content: {
1776
+ attributes: {
1777
+ items: never[];
1778
+ source: string;
1779
+ subType: string;
1780
+ };
1781
+ definition: {
1782
+ label: string;
1783
+ type: string;
1784
+ description: string;
1785
+ items: never[];
1786
+ bindings: {};
1787
+ styleSelectors: {
1788
+ base: string;
1789
+ };
1790
+ initialState: {
1791
+ visibility: boolean;
1792
+ };
1793
+ };
1794
+ builder: {
1795
+ canDelete: boolean;
1796
+ canSelect: boolean;
1797
+ canDragDrop: boolean;
1798
+ canMove: boolean;
1799
+ canTemplate: boolean;
1800
+ itemsAllowed: never[];
1801
+ itemsNotAllowed: never[];
1802
+ };
1803
+ market: {
1804
+ category: string;
1805
+ owner: string;
1806
+ verified: boolean;
1807
+ license: string;
1808
+ website: string;
1809
+ backgroundColor: string;
1810
+ icon: string;
1811
+ };
1812
+ defaultStyle: {
1813
+ name: string;
1814
+ displayMode: string;
1815
+ style: {
1816
+ base: {
1817
+ default: {};
1818
+ };
1819
+ };
1820
+ subTypes: {
1821
+ ul: {
1822
+ name: string;
1823
+ displayMode: string;
1824
+ style: {
1825
+ base: {
1826
+ default: {
1827
+ 'margin-top': string;
1828
+ 'margin-bottom': string;
1829
+ 'padding-left': string;
1830
+ 'min-width': string;
1831
+ 'min-height': string;
1832
+ };
1833
+ };
1834
+ };
1835
+ };
1836
+ ol: {
1837
+ name: string;
1838
+ displayMode: string;
1839
+ style: {
1840
+ base: {
1841
+ default: {
1842
+ 'margin-top': string;
1843
+ 'margin-bottom': string;
1844
+ 'padding-left': string;
1845
+ 'min-width': string;
1846
+ 'min-height': string;
1847
+ };
1848
+ };
1849
+ };
1850
+ };
1851
+ };
1852
+ };
1853
+ settings: {};
1854
+ };
1855
+ initialItems: string[];
1856
+ plugins: {
1857
+ listItem: {
1858
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/structure/List/ListItem/ListItem').ListItemProps>): import("react/jsx-runtime").JSX.Element;
1859
+ displayName: string;
1860
+ } & {
1861
+ type: string;
1862
+ content: {
1863
+ attributes: {};
1864
+ definition: {
1865
+ label: string;
1866
+ type: string;
1867
+ description: string;
1868
+ items: never[];
1869
+ bindings: {};
1870
+ styleSelectors: {
1871
+ base: string;
1872
+ };
1873
+ initialState: {
1874
+ visibility: boolean;
1875
+ };
1876
+ };
1877
+ builder: {
1878
+ canDelete: boolean;
1879
+ canSelect: boolean;
1880
+ canDragDrop: boolean;
1881
+ canMove: boolean;
1882
+ canTemplate: boolean;
1883
+ itemsAllowed: never[];
1884
+ itemsNotAllowed: string[];
1885
+ };
1886
+ market: {
1887
+ category: string;
1888
+ owner: string;
1889
+ verified: boolean;
1890
+ license: string;
1891
+ website: string;
1892
+ backgroundColor: string;
1893
+ icon: string;
1894
+ };
1895
+ defaultStyle: {
1896
+ name: string;
1897
+ displayMode: string;
1898
+ style: {
1899
+ base: {
1900
+ default: {
1901
+ 'min-width': string;
1902
+ 'min-height': string;
1903
+ };
1904
+ };
1905
+ };
1906
+ };
1907
+ settings: {};
1908
+ };
1909
+ };
1910
+ };
1911
+ };
1912
+ link: {
1913
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Link/Link').LinkProps>): import("react/jsx-runtime").JSX.Element;
1914
+ displayName: string;
1915
+ } & {
1916
+ type: string;
1917
+ content: {
1918
+ attributes: {
1919
+ href: string;
1920
+ target: string;
1921
+ mode: string;
1922
+ linkContext: undefined;
1923
+ };
1924
+ definition: {
1925
+ label: string;
1926
+ type: string;
1927
+ items: never[];
1928
+ bindings: {};
1929
+ styleSelectors: {
1930
+ base: string;
1931
+ };
1932
+ initialState: {
1933
+ visibility: boolean;
1934
+ };
1935
+ };
1936
+ builder: {
1937
+ canDelete: boolean;
1938
+ canSelect: boolean;
1939
+ canDragDrop: boolean;
1940
+ canMove: boolean;
1941
+ canTemplate: boolean;
1942
+ itemsAllowed: never[];
1943
+ itemsNotAllowed: string[];
1944
+ };
1945
+ market: {
1946
+ category: string;
1947
+ owner: string;
1948
+ verified: boolean;
1949
+ license: string;
1950
+ website: string;
1951
+ backgroundColor: string;
1952
+ icon: string;
1953
+ };
1954
+ defaultStyle: {
1955
+ name: string;
1956
+ displayMode: string;
1957
+ style: {
1958
+ base: {
1959
+ default: {
1960
+ display: string;
1961
+ 'min-height': string;
1962
+ 'min-width': string;
1963
+ color: string;
1964
+ cursor: string;
1965
+ };
1966
+ };
1967
+ };
1968
+ };
1969
+ settings: {};
1970
+ };
1971
+ };
1972
+ markdown: {
1973
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/basic/Markdown/Markdown').MarkdownProps>): import("react/jsx-runtime").JSX.Element;
1974
+ displayName: string;
1975
+ } & {
1976
+ type: string;
1977
+ content: {
1978
+ attributes: {
1979
+ content: string;
1980
+ };
1981
+ definition: {
1982
+ label: string;
1983
+ type: string;
1984
+ bindings: {};
1985
+ styleSelectors: {
1986
+ base: string;
1987
+ };
1988
+ initialState: {
1989
+ visibility: boolean;
1990
+ };
1991
+ };
1992
+ builder: {
1993
+ canDelete: boolean;
1994
+ canSelect: boolean;
1995
+ canDragDrop: boolean;
1996
+ canMove: boolean;
1997
+ canTemplate: boolean;
1998
+ itemsAllowed: never[];
1999
+ itemsNotAllowed: never[];
2000
+ };
2001
+ market: {
2002
+ category: string;
2003
+ owner: string;
2004
+ verified: boolean;
2005
+ license: string;
2006
+ website: string;
2007
+ backgroundColor: string;
2008
+ icon: string;
2009
+ };
2010
+ defaultStyle: {
2011
+ name: string;
2012
+ displayMode: string;
2013
+ style: {
2014
+ base: {
2015
+ default: {
2016
+ 'font-size': string;
2017
+ 'line-height': string;
2018
+ };
2019
+ };
2020
+ };
2021
+ };
2022
+ settings: {};
2023
+ };
2024
+ };
2025
+ form: {
2026
+ (props: import('./Element/hocs/withElement').WithElementProps<elements.FormProps>): import("react/jsx-runtime").JSX.Element;
2027
+ displayName: string;
2028
+ } & {
2029
+ type: string;
2030
+ content: {
2031
+ attributes: {
2032
+ method: string;
2033
+ actionUrl: string;
2034
+ managedByInteractions: boolean;
2035
+ errors: {};
2036
+ values: {};
2037
+ };
2038
+ definition: {
2039
+ label: string;
2040
+ type: string;
2041
+ description: string;
2042
+ items: never[];
2043
+ bindings: {};
2044
+ styleSelectors: {
2045
+ base: string;
2046
+ };
2047
+ initialState: {
2048
+ visibility: boolean;
2049
+ };
2050
+ };
2051
+ builder: {
2052
+ canDelete: boolean;
2053
+ canSelect: boolean;
2054
+ canDragDrop: boolean;
2055
+ canMove: boolean;
2056
+ canTemplate: boolean;
2057
+ itemsAllowed: never[];
2058
+ itemsNotAllowed: never[];
2059
+ };
2060
+ market: {
2061
+ category: string;
2062
+ owner: string;
2063
+ verified: boolean;
2064
+ license: string;
2065
+ website: string;
2066
+ backgroundColor: string;
2067
+ icon: import("react/jsx-runtime").JSX.Element;
2068
+ };
2069
+ defaultStyle: {
2070
+ name: string;
2071
+ displayMode: string;
2072
+ style: {
2073
+ base: {
2074
+ default: {
2075
+ 'min-width': string;
2076
+ 'min-height': string;
2077
+ };
2078
+ };
2079
+ };
2080
+ };
2081
+ settings: {};
2082
+ };
2083
+ };
2084
+ formControl: {
2085
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/form/FormControl/hocs/withFieldValue').WithFieldValueProps<import('./elements/form/FormControl/FormControl').FormControlProps>>): import("react/jsx-runtime").JSX.Element;
2086
+ displayName: string;
2087
+ } & {
2088
+ type: string;
2089
+ content: {
2090
+ attributes: {
2091
+ subType: string;
2092
+ name: string;
2093
+ label: string;
2094
+ placeholder: string;
2095
+ defaultValue: string;
2096
+ autoComplete: boolean;
2097
+ disabled: boolean;
2098
+ options: never[];
2099
+ required: boolean;
2100
+ readOnly: boolean;
2101
+ };
2102
+ definition: {
2103
+ label: string;
2104
+ type: string;
2105
+ description: string;
2106
+ bindings: {};
2107
+ styleSelectors: {
2108
+ base: string;
2109
+ label: string;
2110
+ input: string;
2111
+ error: string;
2112
+ };
2113
+ initialState: {
2114
+ visibility: boolean;
2115
+ };
2116
+ };
2117
+ builder: {
2118
+ canDelete: boolean;
2119
+ canSelect: boolean;
2120
+ canDragDrop: boolean;
2121
+ canMove: boolean;
2122
+ canTemplate: boolean;
2123
+ itemsAllowed: never[];
2124
+ itemsNotAllowed: never[];
2125
+ };
2126
+ market: {
2127
+ category: string;
2128
+ owner: string;
2129
+ verified: boolean;
2130
+ license: string;
2131
+ website: string;
2132
+ backgroundColor: string;
2133
+ icon: import("react/jsx-runtime").JSX.Element;
2134
+ };
2135
+ defaultStyle: {
2136
+ name: string;
2137
+ displayMode: string;
2138
+ style: {
2139
+ base: {
2140
+ default: {};
2141
+ };
2142
+ };
2143
+ subTypes: {
2144
+ hidden: {
2145
+ name: string;
2146
+ displayMode: string;
2147
+ style: {
2148
+ base: {};
2149
+ input: {
2150
+ default: {};
2151
+ };
2152
+ label: {
2153
+ default: {
2154
+ display: string;
2155
+ cursor: string;
2156
+ 'margin-bottom': string;
2157
+ 'font-weight': string;
2158
+ 'font-size': string;
2159
+ 'line-height': string;
2160
+ color: string;
2161
+ 'user-select': string;
2162
+ };
2163
+ };
2164
+ error: {
2165
+ default: {
2166
+ display: string;
2167
+ color: string;
2168
+ 'margin-top': string;
2169
+ };
2170
+ };
2171
+ };
2172
+ };
2173
+ text: {
2174
+ name: string;
2175
+ displayMode: string;
2176
+ style: {
2177
+ base: {
2178
+ default: {};
2179
+ };
2180
+ input: {
2181
+ default: {
2182
+ width: string;
2183
+ display: string;
2184
+ 'align-items': string;
2185
+ 'border-right-color': string;
2186
+ 'border-right-style': string;
2187
+ 'border-right-width': string;
2188
+ 'border-top-right-radius': string;
2189
+ 'border-bottom-color': string;
2190
+ 'border-bottom-style': string;
2191
+ 'border-bottom-width': string;
2192
+ 'border-bottom-right-radius': string;
2193
+ 'border-bottom-left-radius': string;
2194
+ 'border-top-left-radius': string;
2195
+ 'border-left-color': string;
2196
+ 'border-left-style': string;
2197
+ 'border-left-width': string;
2198
+ 'border-top-color': string;
2199
+ 'border-top-style': string;
2200
+ 'border-top-width': string;
2201
+ 'user-select': string;
2202
+ 'font-size': string;
2203
+ 'padding-left': string;
2204
+ 'padding-right': string;
2205
+ 'padding-top': string;
2206
+ 'padding-bottom': string;
2207
+ 'line-height': string;
2208
+ outline: string;
2209
+ position: string;
2210
+ };
2211
+ };
2212
+ label: {
2213
+ default: {
2214
+ display: string;
2215
+ cursor: string;
2216
+ 'margin-bottom': string;
2217
+ 'font-weight': string;
2218
+ 'font-size': string;
2219
+ 'line-height': string;
2220
+ color: string;
2221
+ 'user-select': string;
2222
+ };
2223
+ };
2224
+ error: {
2225
+ default: {
2226
+ display: string;
2227
+ color: string;
2228
+ 'margin-top': string;
2229
+ };
2230
+ };
2231
+ };
2232
+ };
2233
+ password: {
2234
+ name: string;
2235
+ displayMode: string;
2236
+ style: {
2237
+ base: {
2238
+ default: {};
2239
+ };
2240
+ input: {
2241
+ default: {
2242
+ width: string;
2243
+ display: string;
2244
+ 'align-items': string;
2245
+ 'border-right-color': string;
2246
+ 'border-right-style': string;
2247
+ 'border-right-width': string;
2248
+ 'border-top-right-radius': string;
2249
+ 'border-bottom-color': string;
2250
+ 'border-bottom-style': string;
2251
+ 'border-bottom-width': string;
2252
+ 'border-bottom-right-radius': string;
2253
+ 'border-bottom-left-radius': string;
2254
+ 'border-top-left-radius': string;
2255
+ 'border-left-color': string;
2256
+ 'border-left-style': string;
2257
+ 'border-left-width': string;
2258
+ 'border-top-color': string;
2259
+ 'border-top-style': string;
2260
+ 'border-top-width': string;
2261
+ 'user-select': string;
2262
+ 'font-size': string;
2263
+ 'padding-left': string;
2264
+ 'padding-right': string;
2265
+ 'padding-top': string;
2266
+ 'padding-bottom': string;
2267
+ 'line-height': string;
2268
+ outline: string;
2269
+ position: string;
2270
+ };
2271
+ };
2272
+ label: {
2273
+ default: {
2274
+ display: string;
2275
+ cursor: string;
2276
+ 'margin-bottom': string;
2277
+ 'font-weight': string;
2278
+ 'font-size': string;
2279
+ 'line-height': string;
2280
+ color: string;
2281
+ 'user-select': string;
2282
+ };
2283
+ };
2284
+ error: {
2285
+ default: {
2286
+ display: string;
2287
+ color: string;
2288
+ 'margin-top': string;
2289
+ };
2290
+ };
2291
+ };
2292
+ };
2293
+ number: {
2294
+ name: string;
2295
+ displayMode: string;
2296
+ style: {
2297
+ base: {
2298
+ default: {};
2299
+ };
2300
+ input: {
2301
+ default: {
2302
+ width: string;
2303
+ display: string;
2304
+ 'align-items': string;
2305
+ 'border-right-color': string;
2306
+ 'border-right-style': string;
2307
+ 'border-right-width': string;
2308
+ 'border-top-right-radius': string;
2309
+ 'border-bottom-color': string;
2310
+ 'border-bottom-style': string;
2311
+ 'border-bottom-width': string;
2312
+ 'border-bottom-right-radius': string;
2313
+ 'border-bottom-left-radius': string;
2314
+ 'border-top-left-radius': string;
2315
+ 'border-left-color': string;
2316
+ 'border-left-style': string;
2317
+ 'border-left-width': string;
2318
+ 'border-top-color': string;
2319
+ 'border-top-style': string;
2320
+ 'border-top-width': string;
2321
+ 'user-select': string;
2322
+ 'font-size': string;
2323
+ 'padding-left': string;
2324
+ 'padding-right': string;
2325
+ 'padding-top': string;
2326
+ 'padding-bottom': string;
2327
+ 'line-height': string;
2328
+ outline: string;
2329
+ position: string;
2330
+ };
2331
+ };
2332
+ label: {
2333
+ default: {
2334
+ display: string;
2335
+ cursor: string;
2336
+ 'margin-bottom': string;
2337
+ 'font-weight': string;
2338
+ 'font-size': string;
2339
+ 'line-height': string;
2340
+ color: string;
2341
+ 'user-select': string;
2342
+ };
2343
+ };
2344
+ error: {
2345
+ default: {
2346
+ display: string;
2347
+ color: string;
2348
+ 'margin-top': string;
2349
+ };
2350
+ };
2351
+ };
2352
+ };
2353
+ email: {
2354
+ name: string;
2355
+ displayMode: string;
2356
+ style: {
2357
+ base: {
2358
+ default: {};
2359
+ };
2360
+ input: {
2361
+ default: {
2362
+ width: string;
2363
+ display: string;
2364
+ 'align-items': string;
2365
+ 'border-right-color': string;
2366
+ 'border-right-style': string;
2367
+ 'border-right-width': string;
2368
+ 'border-top-right-radius': string;
2369
+ 'border-bottom-color': string;
2370
+ 'border-bottom-style': string;
2371
+ 'border-bottom-width': string;
2372
+ 'border-bottom-right-radius': string;
2373
+ 'border-bottom-left-radius': string;
2374
+ 'border-top-left-radius': string;
2375
+ 'border-left-color': string;
2376
+ 'border-left-style': string;
2377
+ 'border-left-width': string;
2378
+ 'border-top-color': string;
2379
+ 'border-top-style': string;
2380
+ 'border-top-width': string;
2381
+ 'user-select': string;
2382
+ 'font-size': string;
2383
+ 'padding-left': string;
2384
+ 'padding-right': string;
2385
+ 'padding-top': string;
2386
+ 'padding-bottom': string;
2387
+ 'line-height': string;
2388
+ outline: string;
2389
+ position: string;
2390
+ };
2391
+ };
2392
+ label: {
2393
+ default: {
2394
+ display: string;
2395
+ cursor: string;
2396
+ 'margin-bottom': string;
2397
+ 'font-weight': string;
2398
+ 'font-size': string;
2399
+ 'line-height': string;
2400
+ color: string;
2401
+ 'user-select': string;
2402
+ };
2403
+ };
2404
+ error: {
2405
+ default: {
2406
+ display: string;
2407
+ color: string;
2408
+ 'margin-top': string;
2409
+ };
2410
+ };
2411
+ };
2412
+ };
2413
+ textarea: {
2414
+ name: string;
2415
+ displayMode: string;
2416
+ style: {
2417
+ base: {
2418
+ default: {};
2419
+ };
2420
+ input: {
2421
+ default: {
2422
+ width: string;
2423
+ display: string;
2424
+ 'align-items': string;
2425
+ 'border-right-color': string;
2426
+ 'border-right-style': string;
2427
+ 'border-right-width': string;
2428
+ 'border-top-right-radius': string;
2429
+ 'border-bottom-color': string;
2430
+ 'border-bottom-style': string;
2431
+ 'border-bottom-width': string;
2432
+ 'border-bottom-right-radius': string;
2433
+ 'border-bottom-left-radius': string;
2434
+ 'border-top-left-radius': string;
2435
+ 'border-left-color': string;
2436
+ 'border-left-style': string;
2437
+ 'border-left-width': string;
2438
+ 'border-top-color': string;
2439
+ 'border-top-style': string;
2440
+ 'border-top-width': string;
2441
+ 'user-select': string;
2442
+ 'font-size': string;
2443
+ 'padding-left': string;
2444
+ 'padding-right': string;
2445
+ 'padding-top': string;
2446
+ 'padding-bottom': string;
2447
+ 'line-height': string;
2448
+ outline: string;
2449
+ position: string;
2450
+ };
2451
+ };
2452
+ label: {
2453
+ default: {
2454
+ display: string;
2455
+ cursor: string;
2456
+ 'margin-bottom': string;
2457
+ 'font-weight': string;
2458
+ 'font-size': string;
2459
+ 'line-height': string;
2460
+ color: string;
2461
+ 'user-select': string;
2462
+ };
2463
+ };
2464
+ error: {
2465
+ default: {
2466
+ display: string;
2467
+ color: string;
2468
+ 'margin-top': string;
2469
+ };
2470
+ };
2471
+ };
2472
+ };
2473
+ checkbox: {
2474
+ name: string;
2475
+ displayMode: string;
2476
+ style: {
2477
+ base: {
2478
+ default: {};
2479
+ };
2480
+ input: {
2481
+ default: {
2482
+ 'margin-top': string;
2483
+ 'margin-bottom': string;
2484
+ 'margin-left': string;
2485
+ 'margin-right': string;
2486
+ };
2487
+ };
2488
+ label: {
2489
+ default: Omit<{
2490
+ display: string;
2491
+ cursor: string;
2492
+ 'margin-bottom': string;
2493
+ 'font-weight': string;
2494
+ 'font-size': string;
2495
+ 'line-height': string;
2496
+ color: string;
2497
+ 'user-select': string;
2498
+ }, "margin-bottom">;
2499
+ };
2500
+ error: {
2501
+ default: {
2502
+ display: string;
2503
+ color: string;
2504
+ 'margin-top': string;
2505
+ };
2506
+ };
2507
+ };
2508
+ };
2509
+ select: {
2510
+ name: string;
2511
+ displayMode: string;
2512
+ style: {
2513
+ base: {
2514
+ default: {};
2515
+ };
2516
+ input: {
2517
+ default: {
2518
+ cursor: string;
2519
+ width: string;
2520
+ display: string;
2521
+ 'align-items': string;
2522
+ 'border-right-color': string;
2523
+ 'border-right-style': string;
2524
+ 'border-right-width': string;
2525
+ 'border-top-right-radius': string;
2526
+ 'border-bottom-color': string;
2527
+ 'border-bottom-style': string;
2528
+ 'border-bottom-width': string;
2529
+ 'border-bottom-right-radius': string;
2530
+ 'border-bottom-left-radius': string;
2531
+ 'border-top-left-radius': string;
2532
+ 'border-left-color': string;
2533
+ 'border-left-style': string;
2534
+ 'border-left-width': string;
2535
+ 'border-top-color': string;
2536
+ 'border-top-style': string;
2537
+ 'border-top-width': string;
2538
+ 'user-select': string;
2539
+ 'font-size': string;
2540
+ 'padding-left': string;
2541
+ 'padding-right': string;
2542
+ 'padding-top': string;
2543
+ 'padding-bottom': string;
2544
+ 'line-height': string;
2545
+ outline: string;
2546
+ position: string;
2547
+ };
2548
+ };
2549
+ label: {
2550
+ display: string;
2551
+ cursor: string;
2552
+ 'margin-bottom': string;
2553
+ 'font-weight': string;
2554
+ 'font-size': string;
2555
+ 'line-height': string;
2556
+ color: string;
2557
+ 'user-select': string;
2558
+ };
2559
+ error: {
2560
+ default: {
2561
+ display: string;
2562
+ color: string;
2563
+ 'margin-top': string;
2564
+ };
2565
+ };
2566
+ };
2567
+ };
2568
+ };
2569
+ };
2570
+ settings: {};
2571
+ };
2572
+ };
2573
+ apiContainer: {
2574
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/provider/ApiContainer/ApiContainer').ApiContainerProps>): import("react/jsx-runtime").JSX.Element;
2575
+ displayName: string;
2576
+ } & {
2577
+ type: string;
2578
+ content: {
2579
+ attributes: {
2580
+ query: string;
2581
+ method: string;
2582
+ accessToken: string;
2583
+ mockData: string;
2584
+ subType: string;
2585
+ credentials: string;
2586
+ };
2587
+ definition: {
2588
+ label: string;
2589
+ type: string;
2590
+ description: string;
2591
+ items: never[];
2592
+ bindings: {};
2593
+ styleSelectors: {
2594
+ base: string;
2595
+ };
2596
+ initialState: {
2597
+ visibility: boolean;
2598
+ };
2599
+ };
2600
+ builder: {
2601
+ canDelete: boolean;
2602
+ canSelect: boolean;
2603
+ canDragDrop: boolean;
2604
+ canMove: boolean;
2605
+ canTemplate: boolean;
2606
+ itemsAllowed: never[];
2607
+ itemsNotAllowed: never[];
2608
+ };
2609
+ market: {
2610
+ category: string;
2611
+ owner: string;
2612
+ verified: boolean;
2613
+ license: string;
2614
+ website: string;
2615
+ backgroundColor: string;
2616
+ icon: string;
2617
+ };
2618
+ defaultStyle: {
2619
+ name: string;
2620
+ displayMode: string;
2621
+ style: {
2622
+ base: {
2623
+ default: {
2624
+ 'min-width': string;
2625
+ 'min-height': string;
2626
+ };
2627
+ };
2628
+ };
2629
+ subTypes: {};
2630
+ };
2631
+ settings: {};
2632
+ };
2633
+ };
2634
+ collectionContainer: {
2635
+ (props: import('./Element/hocs/withElement').WithElementProps<import('./elements/provider/CollectionContainer/CollectionContainer').CollectionContainerProps>): import("react/jsx-runtime").JSX.Element;
2636
+ displayName: string;
2637
+ } & {
2638
+ type: string;
2639
+ content: {
2640
+ attributes: {
2641
+ limit: string;
2642
+ query: string;
2643
+ source: undefined;
2644
+ singleRecord: boolean;
2645
+ };
2646
+ definition: {
2647
+ label: string;
2648
+ type: string;
2649
+ description: string;
2650
+ items: never[];
2651
+ bindings: {};
2652
+ styleSelectors: {
2653
+ base: string;
2654
+ };
2655
+ initialState: {
2656
+ visibility: boolean;
2657
+ };
2658
+ };
2659
+ builder: {
2660
+ canDelete: boolean;
2661
+ canSelect: boolean;
2662
+ canDragDrop: boolean;
2663
+ canMove: boolean;
2664
+ canTemplate: boolean;
2665
+ itemsAllowed: never[];
2666
+ itemsNotAllowed: never[];
2667
+ };
2668
+ market: {
2669
+ category: string;
2670
+ owner: string;
2671
+ verified: boolean;
2672
+ license: string;
2673
+ website: string;
2674
+ backgroundColor: string;
2675
+ icon: string;
2676
+ };
2677
+ defaultStyle: {
2678
+ name: string;
2679
+ displayMode: string;
2680
+ style: {
2681
+ base: {
2682
+ default: {
2683
+ 'min-width': string;
2684
+ 'min-height': string;
2685
+ };
2686
+ };
2687
+ };
2688
+ subTypes: {};
2689
+ };
2690
+ settings: {};
2691
+ };
2692
+ };
2693
+ };
2694
+ export { elements, elementSettings, JsxManager };