@journeyapps-labs/reactor-mod-data-browser 3.0.2 → 3.1.1

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 (263) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist/@types/actions/connections/SetConnectionColorAction.d.ts +11 -0
  3. package/dist/@types/actions/saved-queries/OpenSavedQueryAction.d.ts +10 -0
  4. package/dist/@types/actions/saved-queries/RemoveSavedQueryAction.d.ts +9 -0
  5. package/dist/@types/core/AbstractConnection.d.ts +2 -0
  6. package/dist/@types/core/SchemaModelDefinition.d.ts +5 -0
  7. package/dist/@types/core/connection-colors.d.ts +10 -0
  8. package/dist/@types/core/query/AbstractQuery.d.ts +1 -0
  9. package/dist/@types/core/query/StandardModelFields.d.ts +5 -0
  10. package/dist/@types/core/query/filters.d.ts +46 -5
  11. package/dist/@types/core/query/query-changed/ChangedModelQuery.d.ts +1 -0
  12. package/dist/@types/core/query/query-simple/SimplePage.d.ts +2 -0
  13. package/dist/@types/core/query/query-simple/SimpleQuery.d.ts +14 -4
  14. package/dist/@types/core/query/query-simple/SimpleQueryColumns.d.ts +12 -0
  15. package/dist/@types/core/query/query-simple/SimpleQueryFilterState.d.ts +37 -0
  16. package/dist/@types/core/query/query-simple/SimpleQueryPlanner.d.ts +4 -0
  17. package/dist/@types/core/query/query-simple/SimpleQuerySortState.d.ts +23 -0
  18. package/dist/@types/core/query/query-simple/SimpleQueryTypes.d.ts +24 -0
  19. package/dist/@types/core/query/widgets/ColumnDisplayWidget.d.ts +1 -0
  20. package/dist/@types/core/query/widgets/PeekRelationshipButton.d.ts +7 -0
  21. package/dist/@types/core/query/widgets/SmartColumnWidget.d.ts +3 -0
  22. package/dist/@types/core/query/widgets/SmartFilterWidget.d.ts +6 -0
  23. package/dist/@types/entities/ConnectionEntityDefinition.d.ts +2 -0
  24. package/dist/@types/entities/SavedQueryEntityDefinition.d.ts +8 -0
  25. package/dist/@types/entities.d.ts +2 -1
  26. package/dist/@types/forms/APIConnectionForm.d.ts +1 -0
  27. package/dist/@types/forms/TypeEngine.d.ts +3 -21
  28. package/dist/@types/forms/types/attachment-handler.d.ts +2 -0
  29. package/dist/@types/forms/types/boolean-handler.d.ts +2 -0
  30. package/dist/@types/forms/types/date-handler.d.ts +2 -0
  31. package/dist/@types/forms/types/filters/ClearableFilterFormDialogDirective.d.ts +10 -0
  32. package/dist/@types/forms/types/filters/ConditionalFilterForm.d.ts +23 -0
  33. package/dist/@types/forms/types/image-handler.d.ts +2 -0
  34. package/dist/@types/forms/types/location-handler.d.ts +2 -0
  35. package/dist/@types/forms/types/multiple-choice-handler.d.ts +2 -0
  36. package/dist/@types/forms/types/multiple-choice-integer-handler.d.ts +2 -0
  37. package/dist/@types/forms/types/number-handler.d.ts +2 -0
  38. package/dist/@types/forms/types/shared/type-handler.d.ts +37 -0
  39. package/dist/@types/forms/types/shared/ui.d.ts +768 -0
  40. package/dist/@types/forms/types/single-choice-handler.d.ts +2 -0
  41. package/dist/@types/forms/types/single-choice-integer-handler.d.ts +2 -0
  42. package/dist/@types/forms/types/text-handler.d.ts +3 -0
  43. package/dist/@types/index.d.ts +1 -0
  44. package/dist/@types/panels/_shared/SharedConnectionPanelFactory.d.ts +19 -0
  45. package/dist/@types/panels/_shared/SharedModelPanelFactory.d.ts +5 -2
  46. package/dist/@types/panels/query/QueryPanelFactory.d.ts +7 -2
  47. package/dist/@types/panels/query/TableControlsWidget.d.ts +2 -0
  48. package/dist/@types/panels/query/table-controls/ChangesControlsWidget.d.ts +8 -0
  49. package/dist/@types/panels/query/table-controls/FilterControlsWidget.d.ts +7 -0
  50. package/dist/@types/panels/query/table-controls/PageControlsWidget.d.ts +9 -0
  51. package/dist/@types/panels/query/table-controls/QueryControlsWidget.d.ts +11 -0
  52. package/dist/@types/panels/query/table-controls/SortChipWidget.d.ts +10 -0
  53. package/dist/@types/panels/query/table-controls/SortControlsWidget.d.ts +7 -0
  54. package/dist/@types/preferences/QueryControlPreferences.d.ts +7 -0
  55. package/dist/@types/stores/SavedQueryStore.d.ts +34 -0
  56. package/dist/@types/widgets/EmptyValueWidget.d.ts +7 -0
  57. package/dist/DataBrowserModule.js +21 -7
  58. package/dist/DataBrowserModule.js.map +1 -1
  59. package/dist/actions/connections/AddConnectionAction.js +2 -2
  60. package/dist/actions/connections/AddConnectionAction.js.map +1 -1
  61. package/dist/actions/connections/RemoveConnectionAction.js +2 -2
  62. package/dist/actions/connections/RemoveConnectionAction.js.map +1 -1
  63. package/dist/actions/connections/SetConnectionColorAction.js +63 -0
  64. package/dist/actions/connections/SetConnectionColorAction.js.map +1 -0
  65. package/dist/actions/saved-queries/OpenSavedQueryAction.js +58 -0
  66. package/dist/actions/saved-queries/OpenSavedQueryAction.js.map +1 -0
  67. package/dist/actions/saved-queries/RemoveSavedQueryAction.js +43 -0
  68. package/dist/actions/saved-queries/RemoveSavedQueryAction.js.map +1 -0
  69. package/dist/actions/schema-definitions/CreateModelAction.js +2 -2
  70. package/dist/actions/schema-definitions/CreateModelAction.js.map +1 -1
  71. package/dist/actions/schema-definitions/QuerySchemaModelAction.js +2 -2
  72. package/dist/actions/schema-definitions/QuerySchemaModelAction.js.map +1 -1
  73. package/dist/actions/schema-model/EditSchemaModelAction.js +2 -2
  74. package/dist/actions/schema-model/EditSchemaModelAction.js.map +1 -1
  75. package/dist/actions/schema-model/ViewSchemaModelAsJsonAction.js +2 -2
  76. package/dist/actions/schema-model/ViewSchemaModelAsJsonAction.js.map +1 -1
  77. package/dist/core/AbstractConnection.js +116 -90
  78. package/dist/core/AbstractConnection.js.map +1 -1
  79. package/dist/core/SchemaModelDefinition.js +14 -0
  80. package/dist/core/SchemaModelDefinition.js.map +1 -1
  81. package/dist/core/connection-colors.js +36 -0
  82. package/dist/core/connection-colors.js.map +1 -0
  83. package/dist/core/query/AbstractQuery.js.map +1 -1
  84. package/dist/core/query/StandardModelFields.js +10 -0
  85. package/dist/core/query/StandardModelFields.js.map +1 -0
  86. package/dist/core/query/filters.js +86 -4
  87. package/dist/core/query/filters.js.map +1 -1
  88. package/dist/core/query/query-changed/ChangedModelQuery.js +7 -0
  89. package/dist/core/query/query-changed/ChangedModelQuery.js.map +1 -1
  90. package/dist/core/query/query-simple/SimplePage.js +2 -4
  91. package/dist/core/query/query-simple/SimplePage.js.map +1 -1
  92. package/dist/core/query/query-simple/SimpleQuery.js +71 -69
  93. package/dist/core/query/query-simple/SimpleQuery.js.map +1 -1
  94. package/dist/core/query/query-simple/SimpleQueryColumns.js +88 -0
  95. package/dist/core/query/query-simple/SimpleQueryColumns.js.map +1 -0
  96. package/dist/core/query/query-simple/SimpleQueryFilterState.js +136 -0
  97. package/dist/core/query/query-simple/SimpleQueryFilterState.js.map +1 -0
  98. package/dist/core/query/query-simple/SimpleQueryPlanner.js +14 -0
  99. package/dist/core/query/query-simple/SimpleQueryPlanner.js.map +1 -0
  100. package/dist/core/query/query-simple/SimpleQuerySortState.js +140 -0
  101. package/dist/core/query/query-simple/SimpleQuerySortState.js.map +1 -0
  102. package/dist/core/query/query-simple/SimpleQueryTypes.js +44 -0
  103. package/dist/core/query/query-simple/SimpleQueryTypes.js.map +1 -0
  104. package/dist/core/query/widgets/BelongsToDisplayWidget.js +14 -7
  105. package/dist/core/query/widgets/BelongsToDisplayWidget.js.map +1 -1
  106. package/dist/core/query/widgets/CellDisplayWidget.js +5 -9
  107. package/dist/core/query/widgets/CellDisplayWidget.js.map +1 -1
  108. package/dist/core/query/widgets/ColumnDisplayWidget.js +13 -12
  109. package/dist/core/query/widgets/ColumnDisplayWidget.js.map +1 -1
  110. package/dist/core/query/widgets/PeekRelationshipButton.js +128 -0
  111. package/dist/core/query/widgets/PeekRelationshipButton.js.map +1 -0
  112. package/dist/core/query/widgets/SmartColumnWidget.js +18 -3
  113. package/dist/core/query/widgets/SmartColumnWidget.js.map +1 -1
  114. package/dist/core/query/widgets/SmartFilterWidget.js +88 -51
  115. package/dist/core/query/widgets/SmartFilterWidget.js.map +1 -1
  116. package/dist/entities/ConnectionEntityDefinition.js +33 -7
  117. package/dist/entities/ConnectionEntityDefinition.js.map +1 -1
  118. package/dist/entities/SavedQueryEntityDefinition.js +68 -0
  119. package/dist/entities/SavedQueryEntityDefinition.js.map +1 -0
  120. package/dist/entities/SchemaModelDefinitionEntityDefinition.js +9 -1
  121. package/dist/entities/SchemaModelDefinitionEntityDefinition.js.map +1 -1
  122. package/dist/entities.js +1 -0
  123. package/dist/entities.js.map +1 -1
  124. package/dist/forms/APIConnectionForm.js +11 -2
  125. package/dist/forms/APIConnectionForm.js.map +1 -1
  126. package/dist/forms/TypeEngine.js +30 -306
  127. package/dist/forms/TypeEngine.js.map +1 -1
  128. package/dist/forms/types/attachment-handler.js +29 -0
  129. package/dist/forms/types/attachment-handler.js.map +1 -0
  130. package/dist/forms/types/boolean-handler.js +22 -0
  131. package/dist/forms/types/boolean-handler.js.map +1 -0
  132. package/dist/forms/types/date-handler.js +97 -0
  133. package/dist/forms/types/date-handler.js.map +1 -0
  134. package/dist/forms/types/filters/ClearableFilterFormDialogDirective.js +25 -0
  135. package/dist/forms/types/filters/ClearableFilterFormDialogDirective.js.map +1 -0
  136. package/dist/forms/types/filters/ConditionalFilterForm.js +87 -0
  137. package/dist/forms/types/filters/ConditionalFilterForm.js.map +1 -0
  138. package/dist/forms/types/image-handler.js +82 -0
  139. package/dist/forms/types/image-handler.js.map +1 -0
  140. package/dist/forms/types/location-handler.js +49 -0
  141. package/dist/forms/types/location-handler.js.map +1 -0
  142. package/dist/forms/types/multiple-choice-handler.js +37 -0
  143. package/dist/forms/types/multiple-choice-handler.js.map +1 -0
  144. package/dist/forms/types/multiple-choice-integer-handler.js +37 -0
  145. package/dist/forms/types/multiple-choice-integer-handler.js.map +1 -0
  146. package/dist/forms/types/number-handler.js +79 -0
  147. package/dist/forms/types/number-handler.js.map +1 -0
  148. package/dist/forms/types/shared/type-handler.js +2 -0
  149. package/dist/forms/types/shared/type-handler.js.map +1 -0
  150. package/dist/forms/types/shared/ui.js +33 -0
  151. package/dist/forms/types/shared/ui.js.map +1 -0
  152. package/dist/forms/types/single-choice-handler.js +41 -0
  153. package/dist/forms/types/single-choice-handler.js.map +1 -0
  154. package/dist/forms/types/single-choice-integer-handler.js +41 -0
  155. package/dist/forms/types/single-choice-integer-handler.js.map +1 -0
  156. package/dist/forms/types/text-handler.js +170 -0
  157. package/dist/forms/types/text-handler.js.map +1 -0
  158. package/dist/index.js +1 -0
  159. package/dist/index.js.map +1 -1
  160. package/dist/panels/_shared/SharedConnectionPanelFactory.js +48 -0
  161. package/dist/panels/_shared/SharedConnectionPanelFactory.js.map +1 -0
  162. package/dist/panels/_shared/SharedModelPanelFactory.js +7 -2
  163. package/dist/panels/_shared/SharedModelPanelFactory.js.map +1 -1
  164. package/dist/panels/query/PageResultsWidget.js +28 -11
  165. package/dist/panels/query/PageResultsWidget.js.map +1 -1
  166. package/dist/panels/query/QueryPanelFactory.js +20 -2
  167. package/dist/panels/query/QueryPanelFactory.js.map +1 -1
  168. package/dist/panels/query/QueryPanelWidget.js +55 -9
  169. package/dist/panels/query/QueryPanelWidget.js.map +1 -1
  170. package/dist/panels/query/TableControlsWidget.js +29 -67
  171. package/dist/panels/query/TableControlsWidget.js.map +1 -1
  172. package/dist/panels/query/table-controls/ChangesControlsWidget.js +36 -0
  173. package/dist/panels/query/table-controls/ChangesControlsWidget.js.map +1 -0
  174. package/dist/panels/query/table-controls/FilterControlsWidget.js +106 -0
  175. package/dist/panels/query/table-controls/FilterControlsWidget.js.map +1 -0
  176. package/dist/panels/query/table-controls/PageControlsWidget.js +65 -0
  177. package/dist/panels/query/table-controls/PageControlsWidget.js.map +1 -0
  178. package/dist/panels/query/table-controls/QueryControlsWidget.js +85 -0
  179. package/dist/panels/query/table-controls/QueryControlsWidget.js.map +1 -0
  180. package/dist/panels/query/table-controls/SortChipWidget.js +75 -0
  181. package/dist/panels/query/table-controls/SortChipWidget.js.map +1 -0
  182. package/dist/panels/query/table-controls/SortControlsWidget.js +65 -0
  183. package/dist/panels/query/table-controls/SortControlsWidget.js.map +1 -0
  184. package/dist/preferences/QueryControlPreferences.js +28 -0
  185. package/dist/preferences/QueryControlPreferences.js.map +1 -0
  186. package/dist/stores/ConnectionStore.js +2 -0
  187. package/dist/stores/ConnectionStore.js.map +1 -1
  188. package/dist/stores/SavedQueryStore.js +131 -0
  189. package/dist/stores/SavedQueryStore.js.map +1 -0
  190. package/dist/tsconfig.tsbuildinfo +1 -1
  191. package/dist/widgets/EmptyValueWidget.js +15 -0
  192. package/dist/widgets/EmptyValueWidget.js.map +1 -0
  193. package/dist-module/bundle.js +181 -51
  194. package/dist-module/bundle.js.map +1 -1
  195. package/package.json +11 -11
  196. package/src/DataBrowserModule.ts +21 -7
  197. package/src/actions/connections/AddConnectionAction.tsx +2 -2
  198. package/src/actions/connections/RemoveConnectionAction.tsx +2 -2
  199. package/src/actions/connections/SetConnectionColorAction.ts +52 -0
  200. package/src/actions/saved-queries/OpenSavedQueryAction.ts +43 -0
  201. package/src/actions/saved-queries/RemoveSavedQueryAction.ts +27 -0
  202. package/src/actions/schema-definitions/CreateModelAction.ts +9 -2
  203. package/src/actions/schema-definitions/QuerySchemaModelAction.ts +9 -2
  204. package/src/actions/schema-model/EditSchemaModelAction.ts +9 -2
  205. package/src/actions/schema-model/ViewSchemaModelAsJsonAction.ts +9 -2
  206. package/src/core/AbstractConnection.ts +7 -1
  207. package/src/core/SchemaModelDefinition.ts +16 -0
  208. package/src/core/connection-colors.ts +49 -0
  209. package/src/core/query/AbstractQuery.ts +2 -0
  210. package/src/core/query/StandardModelFields.ts +9 -0
  211. package/src/core/query/filters.ts +121 -6
  212. package/src/core/query/query-changed/ChangedModelQuery.ts +8 -0
  213. package/src/core/query/query-simple/SimplePage.ts +4 -5
  214. package/src/core/query/query-simple/SimpleQuery.tsx +91 -87
  215. package/src/core/query/query-simple/SimpleQueryColumns.tsx +126 -0
  216. package/src/core/query/query-simple/SimpleQueryFilterState.ts +160 -0
  217. package/src/core/query/query-simple/SimpleQueryPlanner.ts +18 -0
  218. package/src/core/query/query-simple/SimpleQuerySortState.ts +133 -0
  219. package/src/core/query/query-simple/SimpleQueryTypes.ts +61 -0
  220. package/src/core/query/widgets/BelongsToDisplayWidget.tsx +19 -11
  221. package/src/core/query/widgets/CellDisplayWidget.tsx +5 -10
  222. package/src/core/query/widgets/ColumnDisplayWidget.tsx +24 -20
  223. package/src/core/query/widgets/PeekRelationshipButton.tsx +161 -0
  224. package/src/core/query/widgets/SmartColumnWidget.tsx +26 -4
  225. package/src/core/query/widgets/SmartFilterWidget.tsx +119 -69
  226. package/src/entities/ConnectionEntityDefinition.tsx +35 -4
  227. package/src/entities/SavedQueryEntityDefinition.ts +72 -0
  228. package/src/entities/SchemaModelDefinitionEntityDefinition.ts +11 -2
  229. package/src/entities.ts +2 -1
  230. package/src/forms/APIConnectionForm.tsx +15 -2
  231. package/src/forms/TypeEngine.tsx +35 -421
  232. package/src/forms/types/attachment-handler.tsx +35 -0
  233. package/src/forms/types/boolean-handler.tsx +28 -0
  234. package/src/forms/types/date-handler.tsx +125 -0
  235. package/src/forms/types/filters/ClearableFilterFormDialogDirective.ts +32 -0
  236. package/src/forms/types/filters/ConditionalFilterForm.tsx +109 -0
  237. package/src/forms/types/image-handler.tsx +90 -0
  238. package/src/forms/types/location-handler.tsx +53 -0
  239. package/src/forms/types/multiple-choice-handler.tsx +37 -0
  240. package/src/forms/types/multiple-choice-integer-handler.tsx +37 -0
  241. package/src/forms/types/number-handler.tsx +100 -0
  242. package/src/forms/types/shared/type-handler.ts +36 -0
  243. package/src/forms/types/shared/ui.tsx +40 -0
  244. package/src/forms/types/single-choice-handler.tsx +47 -0
  245. package/src/forms/types/single-choice-integer-handler.tsx +47 -0
  246. package/src/forms/types/text-handler.tsx +247 -0
  247. package/src/index.ts +1 -0
  248. package/src/panels/_shared/SharedConnectionPanelFactory.tsx +55 -0
  249. package/src/panels/_shared/SharedModelPanelFactory.tsx +8 -2
  250. package/src/panels/query/PageResultsWidget.tsx +40 -28
  251. package/src/panels/query/QueryPanelFactory.tsx +23 -2
  252. package/src/panels/query/QueryPanelWidget.tsx +64 -9
  253. package/src/panels/query/TableControlsWidget.tsx +42 -120
  254. package/src/panels/query/table-controls/ChangesControlsWidget.tsx +72 -0
  255. package/src/panels/query/table-controls/FilterControlsWidget.tsx +145 -0
  256. package/src/panels/query/table-controls/PageControlsWidget.tsx +97 -0
  257. package/src/panels/query/table-controls/QueryControlsWidget.tsx +127 -0
  258. package/src/panels/query/table-controls/SortChipWidget.tsx +119 -0
  259. package/src/panels/query/table-controls/SortControlsWidget.tsx +95 -0
  260. package/src/preferences/QueryControlPreferences.ts +34 -0
  261. package/src/stores/ConnectionStore.ts +2 -0
  262. package/src/stores/SavedQueryStore.ts +121 -0
  263. package/src/widgets/EmptyValueWidget.tsx +20 -0
@@ -0,0 +1,768 @@
1
+ import * as React from 'react';
2
+ export declare const MAX_NUMBER_OF_ARR_ITEMS_TO_DISPLAY = 3;
3
+ declare namespace S {
4
+ const Empty: import("@emotion/styled").StyledComponent<import("../../../widgets/EmptyValueWidget").EmptyValueWidgetProps & {
5
+ theme?: import("@journeyapps-labs/reactor-mod").ThemeColors<{
6
+ plan: {
7
+ label: string;
8
+ colors: {
9
+ background: string;
10
+ border: string;
11
+ foreground: string;
12
+ };
13
+ };
14
+ canvas: {
15
+ label: string;
16
+ colors: {
17
+ background: string;
18
+ grid: string;
19
+ };
20
+ };
21
+ tooltips: {
22
+ label: string;
23
+ colors: {
24
+ background: string;
25
+ foreground: string;
26
+ };
27
+ };
28
+ workspace: {
29
+ label: string;
30
+ colors: {
31
+ background: string;
32
+ overlayBackground: string;
33
+ overlayBackgroundHover: string;
34
+ overlayBorder: string;
35
+ overlayBorderHover: string;
36
+ overlayDividerColor: string;
37
+ overlayDividerHover: string;
38
+ };
39
+ };
40
+ panels: {
41
+ label: string;
42
+ colors: {
43
+ trayBackground: string;
44
+ trayButton: string;
45
+ trayButtonSelected: string;
46
+ background: string;
47
+ titleBackground: string;
48
+ titleForeground: string;
49
+ iconBackground: string;
50
+ divider: string;
51
+ searchBackground: string;
52
+ searchForeground: string;
53
+ tabForeground: string;
54
+ tabForegroundSelected: string;
55
+ tabBackgroundSelected: string;
56
+ itemIconColorSelected: string;
57
+ scrollBar: string;
58
+ };
59
+ };
60
+ meta: {
61
+ label: string;
62
+ colors: {
63
+ background: string;
64
+ foreground: string;
65
+ };
66
+ };
67
+ dnd: {
68
+ label: string;
69
+ colors: {
70
+ hintColor: string;
71
+ hoverColor: string;
72
+ };
73
+ };
74
+ icons: {
75
+ label: string;
76
+ colors: {
77
+ dualIconBackground: string;
78
+ color: string;
79
+ };
80
+ };
81
+ trees: {
82
+ label: string;
83
+ colors: {
84
+ labelColor: string;
85
+ selectedBackground: string;
86
+ };
87
+ };
88
+ guide: {
89
+ label: string;
90
+ colors: {
91
+ accent: string;
92
+ tooltipBackground: string;
93
+ accentText: string;
94
+ startButton: string;
95
+ startButtonText: string;
96
+ };
97
+ };
98
+ graphs: {
99
+ label: string;
100
+ colors: {
101
+ grid: string;
102
+ line: string;
103
+ fillStop1: string;
104
+ fillStop2: string;
105
+ fillStop3: string;
106
+ thresholdLine: string;
107
+ };
108
+ };
109
+ tabs: {
110
+ label: string;
111
+ colors: {
112
+ selectedAccentSingle: string;
113
+ selectedAccent: string;
114
+ selectedBackground: string;
115
+ };
116
+ };
117
+ status: {
118
+ label: string;
119
+ colors: {
120
+ cardBackground: string;
121
+ success: string;
122
+ failed: string;
123
+ failedForeground: string;
124
+ loading: string;
125
+ successForeground: string;
126
+ };
127
+ };
128
+ cards: {
129
+ label: string;
130
+ colors: {
131
+ background: string;
132
+ foreground: string;
133
+ border: string;
134
+ tagBackground: string;
135
+ tagLabelBackground: string;
136
+ tagLabelForeground: string;
137
+ };
138
+ };
139
+ combobox: {
140
+ label: string;
141
+ colors: {
142
+ background: string;
143
+ backgroundSelected: string;
144
+ textSelected: string;
145
+ text: string;
146
+ border: string;
147
+ headerBackground: string;
148
+ headerForeground: string;
149
+ shadowColor: string;
150
+ };
151
+ };
152
+ forms: {
153
+ label: string;
154
+ colors: {
155
+ description: string;
156
+ inputBackground: string;
157
+ inputForeground: string;
158
+ inputBorder: string;
159
+ checkbox: string;
160
+ checkboxChecked: string;
161
+ toggleOnColor: string;
162
+ toggleHandleColor: string;
163
+ groupBorder: string;
164
+ groupLabelForeground: string;
165
+ };
166
+ };
167
+ footer: {
168
+ label: string;
169
+ colors: {
170
+ background: string;
171
+ };
172
+ };
173
+ header: {
174
+ label: string;
175
+ colors: {
176
+ background: string;
177
+ backgroundLogo: string;
178
+ backgroundLogoHover: string;
179
+ primary: string;
180
+ secondary: string;
181
+ foreground: string;
182
+ };
183
+ };
184
+ visor: {
185
+ label: string;
186
+ colors: {
187
+ background: string;
188
+ };
189
+ };
190
+ text: {
191
+ label: string;
192
+ colors: {
193
+ primary: string;
194
+ secondary: string;
195
+ };
196
+ };
197
+ buttonLink: {
198
+ label: string;
199
+ colors: {
200
+ background: string;
201
+ border: string;
202
+ color: string;
203
+ colorHover: string;
204
+ icon: string;
205
+ };
206
+ };
207
+ button: {
208
+ label: string;
209
+ colors: {
210
+ background: string;
211
+ border: string;
212
+ color: string;
213
+ colorHover: string;
214
+ icon: string;
215
+ };
216
+ };
217
+ buttonPrimary: {
218
+ label: string;
219
+ colors: {
220
+ background: string;
221
+ border: string;
222
+ color: string;
223
+ colorHover: string;
224
+ icon: string;
225
+ };
226
+ };
227
+ changelog: {
228
+ label: string;
229
+ colors: {
230
+ codeBackground: string;
231
+ codeForeground: string;
232
+ };
233
+ };
234
+ table: {
235
+ label: string;
236
+ colors: {
237
+ odd: string;
238
+ pills: string;
239
+ text: string;
240
+ pillsSpecial: string;
241
+ columnBackground: string;
242
+ columnForeground: string;
243
+ };
244
+ };
245
+ floating: {
246
+ label: string;
247
+ colors: {
248
+ background: string;
249
+ backgroundInactive: string;
250
+ border: string;
251
+ };
252
+ };
253
+ }> & {
254
+ light: boolean;
255
+ };
256
+ }, {}, {}>;
257
+ const Pills: import("@emotion/styled").StyledComponent<{
258
+ theme?: import("@journeyapps-labs/reactor-mod").ThemeColors<{
259
+ plan: {
260
+ label: string;
261
+ colors: {
262
+ background: string;
263
+ border: string;
264
+ foreground: string;
265
+ };
266
+ };
267
+ canvas: {
268
+ label: string;
269
+ colors: {
270
+ background: string;
271
+ grid: string;
272
+ };
273
+ };
274
+ tooltips: {
275
+ label: string;
276
+ colors: {
277
+ background: string;
278
+ foreground: string;
279
+ };
280
+ };
281
+ workspace: {
282
+ label: string;
283
+ colors: {
284
+ background: string;
285
+ overlayBackground: string;
286
+ overlayBackgroundHover: string;
287
+ overlayBorder: string;
288
+ overlayBorderHover: string;
289
+ overlayDividerColor: string;
290
+ overlayDividerHover: string;
291
+ };
292
+ };
293
+ panels: {
294
+ label: string;
295
+ colors: {
296
+ trayBackground: string;
297
+ trayButton: string;
298
+ trayButtonSelected: string;
299
+ background: string;
300
+ titleBackground: string;
301
+ titleForeground: string;
302
+ iconBackground: string;
303
+ divider: string;
304
+ searchBackground: string;
305
+ searchForeground: string;
306
+ tabForeground: string;
307
+ tabForegroundSelected: string;
308
+ tabBackgroundSelected: string;
309
+ itemIconColorSelected: string;
310
+ scrollBar: string;
311
+ };
312
+ };
313
+ meta: {
314
+ label: string;
315
+ colors: {
316
+ background: string;
317
+ foreground: string;
318
+ };
319
+ };
320
+ dnd: {
321
+ label: string;
322
+ colors: {
323
+ hintColor: string;
324
+ hoverColor: string;
325
+ };
326
+ };
327
+ icons: {
328
+ label: string;
329
+ colors: {
330
+ dualIconBackground: string;
331
+ color: string;
332
+ };
333
+ };
334
+ trees: {
335
+ label: string;
336
+ colors: {
337
+ labelColor: string;
338
+ selectedBackground: string;
339
+ };
340
+ };
341
+ guide: {
342
+ label: string;
343
+ colors: {
344
+ accent: string;
345
+ tooltipBackground: string;
346
+ accentText: string;
347
+ startButton: string;
348
+ startButtonText: string;
349
+ };
350
+ };
351
+ graphs: {
352
+ label: string;
353
+ colors: {
354
+ grid: string;
355
+ line: string;
356
+ fillStop1: string;
357
+ fillStop2: string;
358
+ fillStop3: string;
359
+ thresholdLine: string;
360
+ };
361
+ };
362
+ tabs: {
363
+ label: string;
364
+ colors: {
365
+ selectedAccentSingle: string;
366
+ selectedAccent: string;
367
+ selectedBackground: string;
368
+ };
369
+ };
370
+ status: {
371
+ label: string;
372
+ colors: {
373
+ cardBackground: string;
374
+ success: string;
375
+ failed: string;
376
+ failedForeground: string;
377
+ loading: string;
378
+ successForeground: string;
379
+ };
380
+ };
381
+ cards: {
382
+ label: string;
383
+ colors: {
384
+ background: string;
385
+ foreground: string;
386
+ border: string;
387
+ tagBackground: string;
388
+ tagLabelBackground: string;
389
+ tagLabelForeground: string;
390
+ };
391
+ };
392
+ combobox: {
393
+ label: string;
394
+ colors: {
395
+ background: string;
396
+ backgroundSelected: string;
397
+ textSelected: string;
398
+ text: string;
399
+ border: string;
400
+ headerBackground: string;
401
+ headerForeground: string;
402
+ shadowColor: string;
403
+ };
404
+ };
405
+ forms: {
406
+ label: string;
407
+ colors: {
408
+ description: string;
409
+ inputBackground: string;
410
+ inputForeground: string;
411
+ inputBorder: string;
412
+ checkbox: string;
413
+ checkboxChecked: string;
414
+ toggleOnColor: string;
415
+ toggleHandleColor: string;
416
+ groupBorder: string;
417
+ groupLabelForeground: string;
418
+ };
419
+ };
420
+ footer: {
421
+ label: string;
422
+ colors: {
423
+ background: string;
424
+ };
425
+ };
426
+ header: {
427
+ label: string;
428
+ colors: {
429
+ background: string;
430
+ backgroundLogo: string;
431
+ backgroundLogoHover: string;
432
+ primary: string;
433
+ secondary: string;
434
+ foreground: string;
435
+ };
436
+ };
437
+ visor: {
438
+ label: string;
439
+ colors: {
440
+ background: string;
441
+ };
442
+ };
443
+ text: {
444
+ label: string;
445
+ colors: {
446
+ primary: string;
447
+ secondary: string;
448
+ };
449
+ };
450
+ buttonLink: {
451
+ label: string;
452
+ colors: {
453
+ background: string;
454
+ border: string;
455
+ color: string;
456
+ colorHover: string;
457
+ icon: string;
458
+ };
459
+ };
460
+ button: {
461
+ label: string;
462
+ colors: {
463
+ background: string;
464
+ border: string;
465
+ color: string;
466
+ colorHover: string;
467
+ icon: string;
468
+ };
469
+ };
470
+ buttonPrimary: {
471
+ label: string;
472
+ colors: {
473
+ background: string;
474
+ border: string;
475
+ color: string;
476
+ colorHover: string;
477
+ icon: string;
478
+ };
479
+ };
480
+ changelog: {
481
+ label: string;
482
+ colors: {
483
+ codeBackground: string;
484
+ codeForeground: string;
485
+ };
486
+ };
487
+ table: {
488
+ label: string;
489
+ colors: {
490
+ odd: string;
491
+ pills: string;
492
+ text: string;
493
+ pillsSpecial: string;
494
+ columnBackground: string;
495
+ columnForeground: string;
496
+ };
497
+ };
498
+ floating: {
499
+ label: string;
500
+ colors: {
501
+ background: string;
502
+ backgroundInactive: string;
503
+ border: string;
504
+ };
505
+ };
506
+ }> & {
507
+ light: boolean;
508
+ };
509
+ as?: React.ElementType;
510
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
511
+ const Pill: import("@emotion/styled").StyledComponent<{
512
+ theme?: import("@journeyapps-labs/reactor-mod").ThemeColors<{
513
+ plan: {
514
+ label: string;
515
+ colors: {
516
+ background: string;
517
+ border: string;
518
+ foreground: string;
519
+ };
520
+ };
521
+ canvas: {
522
+ label: string;
523
+ colors: {
524
+ background: string;
525
+ grid: string;
526
+ };
527
+ };
528
+ tooltips: {
529
+ label: string;
530
+ colors: {
531
+ background: string;
532
+ foreground: string;
533
+ };
534
+ };
535
+ workspace: {
536
+ label: string;
537
+ colors: {
538
+ background: string;
539
+ overlayBackground: string;
540
+ overlayBackgroundHover: string;
541
+ overlayBorder: string;
542
+ overlayBorderHover: string;
543
+ overlayDividerColor: string;
544
+ overlayDividerHover: string;
545
+ };
546
+ };
547
+ panels: {
548
+ label: string;
549
+ colors: {
550
+ trayBackground: string;
551
+ trayButton: string;
552
+ trayButtonSelected: string;
553
+ background: string;
554
+ titleBackground: string;
555
+ titleForeground: string;
556
+ iconBackground: string;
557
+ divider: string;
558
+ searchBackground: string;
559
+ searchForeground: string;
560
+ tabForeground: string;
561
+ tabForegroundSelected: string;
562
+ tabBackgroundSelected: string;
563
+ itemIconColorSelected: string;
564
+ scrollBar: string;
565
+ };
566
+ };
567
+ meta: {
568
+ label: string;
569
+ colors: {
570
+ background: string;
571
+ foreground: string;
572
+ };
573
+ };
574
+ dnd: {
575
+ label: string;
576
+ colors: {
577
+ hintColor: string;
578
+ hoverColor: string;
579
+ };
580
+ };
581
+ icons: {
582
+ label: string;
583
+ colors: {
584
+ dualIconBackground: string;
585
+ color: string;
586
+ };
587
+ };
588
+ trees: {
589
+ label: string;
590
+ colors: {
591
+ labelColor: string;
592
+ selectedBackground: string;
593
+ };
594
+ };
595
+ guide: {
596
+ label: string;
597
+ colors: {
598
+ accent: string;
599
+ tooltipBackground: string;
600
+ accentText: string;
601
+ startButton: string;
602
+ startButtonText: string;
603
+ };
604
+ };
605
+ graphs: {
606
+ label: string;
607
+ colors: {
608
+ grid: string;
609
+ line: string;
610
+ fillStop1: string;
611
+ fillStop2: string;
612
+ fillStop3: string;
613
+ thresholdLine: string;
614
+ };
615
+ };
616
+ tabs: {
617
+ label: string;
618
+ colors: {
619
+ selectedAccentSingle: string;
620
+ selectedAccent: string;
621
+ selectedBackground: string;
622
+ };
623
+ };
624
+ status: {
625
+ label: string;
626
+ colors: {
627
+ cardBackground: string;
628
+ success: string;
629
+ failed: string;
630
+ failedForeground: string;
631
+ loading: string;
632
+ successForeground: string;
633
+ };
634
+ };
635
+ cards: {
636
+ label: string;
637
+ colors: {
638
+ background: string;
639
+ foreground: string;
640
+ border: string;
641
+ tagBackground: string;
642
+ tagLabelBackground: string;
643
+ tagLabelForeground: string;
644
+ };
645
+ };
646
+ combobox: {
647
+ label: string;
648
+ colors: {
649
+ background: string;
650
+ backgroundSelected: string;
651
+ textSelected: string;
652
+ text: string;
653
+ border: string;
654
+ headerBackground: string;
655
+ headerForeground: string;
656
+ shadowColor: string;
657
+ };
658
+ };
659
+ forms: {
660
+ label: string;
661
+ colors: {
662
+ description: string;
663
+ inputBackground: string;
664
+ inputForeground: string;
665
+ inputBorder: string;
666
+ checkbox: string;
667
+ checkboxChecked: string;
668
+ toggleOnColor: string;
669
+ toggleHandleColor: string;
670
+ groupBorder: string;
671
+ groupLabelForeground: string;
672
+ };
673
+ };
674
+ footer: {
675
+ label: string;
676
+ colors: {
677
+ background: string;
678
+ };
679
+ };
680
+ header: {
681
+ label: string;
682
+ colors: {
683
+ background: string;
684
+ backgroundLogo: string;
685
+ backgroundLogoHover: string;
686
+ primary: string;
687
+ secondary: string;
688
+ foreground: string;
689
+ };
690
+ };
691
+ visor: {
692
+ label: string;
693
+ colors: {
694
+ background: string;
695
+ };
696
+ };
697
+ text: {
698
+ label: string;
699
+ colors: {
700
+ primary: string;
701
+ secondary: string;
702
+ };
703
+ };
704
+ buttonLink: {
705
+ label: string;
706
+ colors: {
707
+ background: string;
708
+ border: string;
709
+ color: string;
710
+ colorHover: string;
711
+ icon: string;
712
+ };
713
+ };
714
+ button: {
715
+ label: string;
716
+ colors: {
717
+ background: string;
718
+ border: string;
719
+ color: string;
720
+ colorHover: string;
721
+ icon: string;
722
+ };
723
+ };
724
+ buttonPrimary: {
725
+ label: string;
726
+ colors: {
727
+ background: string;
728
+ border: string;
729
+ color: string;
730
+ colorHover: string;
731
+ icon: string;
732
+ };
733
+ };
734
+ changelog: {
735
+ label: string;
736
+ colors: {
737
+ codeBackground: string;
738
+ codeForeground: string;
739
+ };
740
+ };
741
+ table: {
742
+ label: string;
743
+ colors: {
744
+ odd: string;
745
+ pills: string;
746
+ text: string;
747
+ pillsSpecial: string;
748
+ columnBackground: string;
749
+ columnForeground: string;
750
+ };
751
+ };
752
+ floating: {
753
+ label: string;
754
+ colors: {
755
+ background: string;
756
+ backgroundInactive: string;
757
+ border: string;
758
+ };
759
+ };
760
+ }> & {
761
+ light: boolean;
762
+ };
763
+ as?: React.ElementType;
764
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
765
+ }
766
+ export declare const TypeUI: typeof S;
767
+ export declare function displayArray(value: any[]): React.JSX.Element;
768
+ export {};