@vertigis/workflow 5.33.0 → 5.34.0

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 (195) hide show
  1. package/Activator.d.ts +6 -2
  2. package/Collections.d.ts +8 -5
  3. package/EnumUtils.d.ts +1 -0
  4. package/Errors.d.ts +10 -1
  5. package/Errors.js +1 -1
  6. package/Hooks.d.ts +4 -1
  7. package/IActivityHandler.d.ts +19 -5
  8. package/LanguageStringUtils.js +1 -1
  9. package/ProgramInspectorFacility.d.ts +1 -0
  10. package/Task.d.ts +1 -0
  11. package/activities/app/GetApplicationInfo.d.ts +4 -1
  12. package/activities/app/GetUserInfo.d.ts +4 -1
  13. package/activities/app/RunCommand.d.ts +4 -1
  14. package/activities/app/RunOperation.d.ts +8 -2
  15. package/activities/arcgis/AddGraphics.d.ts +8 -2
  16. package/activities/arcgis/MapProvider.d.ts +4 -1
  17. package/activities/arcgis/QueryTask.d.ts +8 -2
  18. package/activities/arcgis/SetMap.d.ts +4 -1
  19. package/activities/arcgis/ShowResults.d.ts +3 -0
  20. package/activities/arcgis/runUtils.d.ts +5 -1
  21. package/activities/core/ChannelProvider.d.ts +1 -0
  22. package/activities/core/converters.d.ts +1 -1
  23. package/activities/forms/DisplayForm.d.ts +4 -1
  24. package/activities/forms/FormRenderer.d.ts +1 -0
  25. package/activities/forms/FormRenderer.js +1 -1
  26. package/activities/forms/SetFormElementProperty.d.ts +1 -1
  27. package/activities/index.d.ts +1 -0
  28. package/activities/index.js +1 -1
  29. package/activities/pdf/AddGeoreferenceToPdf.d.ts +19 -0
  30. package/activities/pdf/AddGeoreferenceToPdf.js +1 -0
  31. package/activities/ui/Alert.d.ts +4 -1
  32. package/activities/ui/Confirm.d.ts +8 -2
  33. package/activities/ui/Prompt.d.ts +8 -2
  34. package/definition/Program.d.ts +4 -1
  35. package/definition/ProgramInspector.d.ts +4 -1
  36. package/definition/Reference.d.ts +4 -1
  37. package/diagnostics/ConsoleDebugLogger.d.ts +4 -1
  38. package/diagnostics/logging.d.ts +4 -1
  39. package/execution/ActivityLoader.d.ts +4 -1
  40. package/execution/Engine.d.ts +16 -4
  41. package/execution/IDebugSession.d.ts +4 -1
  42. package/forms/Calendar.d.ts +1 -1
  43. package/forms/FormComponent.d.ts +4 -3
  44. package/forms/FormComponent.js +1 -1
  45. package/forms/FormDefinition.d.ts +91 -15
  46. package/forms/FormElement.d.ts +3 -17
  47. package/forms/FormElement.js +1 -1
  48. package/forms/FormHost.d.ts +20 -6
  49. package/forms/FormHost.js +1 -1
  50. package/forms/FormPresenterHost.d.ts +17 -4
  51. package/forms/common.d.ts +6 -7
  52. package/forms/common.js +1 -1
  53. package/forms/components/AccordionGroup.d.ts +15 -0
  54. package/forms/components/AccordionGroup.js +1 -0
  55. package/forms/components/AutoComplete.d.ts +7 -0
  56. package/forms/components/AutoComplete.js +1 -0
  57. package/forms/components/ButtonBar.d.ts +13 -0
  58. package/forms/components/ButtonBar.js +1 -0
  59. package/forms/components/CheckBox.d.ts +7 -0
  60. package/forms/components/CheckBox.js +1 -0
  61. package/forms/components/CheckGroup.d.ts +7 -0
  62. package/forms/components/CheckGroup.js +1 -0
  63. package/forms/components/Custom.d.ts +7 -0
  64. package/forms/components/Custom.js +1 -0
  65. package/forms/components/DatePicker.d.ts +6 -16
  66. package/forms/components/DatePicker.js +1 -1
  67. package/forms/components/DateRangePicker.d.ts +10 -8
  68. package/forms/components/DateRangePicker.js +1 -1
  69. package/forms/components/DateTimePicker.d.ts +6 -8
  70. package/forms/components/DateTimePicker.js +1 -1
  71. package/forms/components/DropDownList.d.ts +7 -0
  72. package/forms/components/DropDownList.js +1 -0
  73. package/forms/components/FilePicker.d.ts +9 -0
  74. package/forms/components/FilePicker.js +1 -0
  75. package/forms/components/Form.d.ts +23 -0
  76. package/forms/components/Form.js +1 -0
  77. package/forms/components/GeometryPicker.d.ts +4 -0
  78. package/forms/components/GeometryPicker.js +1 -0
  79. package/forms/components/GeometryPickerListItem.d.ts +23 -0
  80. package/forms/components/GeometryPickerListItem.js +1 -0
  81. package/forms/components/HorizontalRule.d.ts +7 -0
  82. package/forms/components/HorizontalRule.js +1 -0
  83. package/forms/components/Image.d.ts +7 -0
  84. package/forms/components/Image.js +1 -0
  85. package/forms/components/ItemPicker.d.ts +17 -0
  86. package/forms/components/ItemPicker.js +1 -0
  87. package/forms/components/ListBox.d.ts +7 -0
  88. package/forms/components/ListBox.js +1 -0
  89. package/forms/components/Markdown.d.ts +1 -1
  90. package/forms/components/Markdown.js +1 -1
  91. package/forms/components/Number.d.ts +7 -0
  92. package/forms/components/Number.js +1 -0
  93. package/forms/components/NumberRangeSlider.d.ts +11 -8
  94. package/forms/components/NumberRangeSlider.js +1 -1
  95. package/forms/components/NumberSlider.d.ts +9 -8
  96. package/forms/components/NumberSlider.js +1 -1
  97. package/forms/components/RadioGroup.d.ts +7 -0
  98. package/forms/components/RadioGroup.js +1 -0
  99. package/forms/components/Scanner.d.ts +9 -0
  100. package/forms/components/Scanner.js +1 -0
  101. package/forms/components/Section.d.ts +14 -0
  102. package/forms/components/Section.js +1 -0
  103. package/forms/components/Text.d.ts +1 -1
  104. package/forms/components/Text.js +1 -1
  105. package/forms/components/TextArea.d.ts +1 -1
  106. package/forms/components/TextArea.js +1 -1
  107. package/forms/components/TextBox.d.ts +1 -1
  108. package/forms/components/TextBox.js +1 -1
  109. package/forms/components/TimePicker.d.ts +7 -0
  110. package/forms/components/TimePicker.js +1 -0
  111. package/forms/constants.d.ts +2 -31
  112. package/forms/constants.js +1 -1
  113. package/forms/dateUtilities.d.ts +41 -9
  114. package/forms/dateUtilities.js +1 -1
  115. package/forms/elements/AutoComplete.d.ts +7 -0
  116. package/forms/elements/AutoComplete.js +1 -0
  117. package/forms/elements/Number.d.ts +5 -0
  118. package/forms/elements/Number.js +1 -0
  119. package/forms/elements/NumberRangeSlider.d.ts +5 -3
  120. package/forms/elements/NumberRangeSlider.js +1 -1
  121. package/forms/elements/NumberSlider.d.ts +0 -3
  122. package/forms/elements/NumberSlider.js +0 -1
  123. package/forms/elements/Scanner.d.ts +9 -0
  124. package/forms/elements/Scanner.js +1 -0
  125. package/forms/elements/types.d.ts +4 -2
  126. package/forms/index.d.ts +6 -2
  127. package/forms/index.js +1 -1
  128. package/forms/keyboard.d.ts +1 -0
  129. package/forms/numberFormatter.d.ts +5 -6
  130. package/forms/numberFormatter.js +1 -1
  131. package/forms/numberUtilities.d.ts +113 -0
  132. package/forms/numberUtilities.js +1 -0
  133. package/forms/presenter.d.ts +1 -0
  134. package/forms/presenter.js +1 -1
  135. package/forms/renderers.d.ts +29 -35
  136. package/forms/renderers.js +1 -1
  137. package/forms/textUtilities.d.ts +6 -4
  138. package/forms/textUtilities.js +1 -1
  139. package/forms/utils.d.ts +71 -18
  140. package/forms/utils.js +1 -1
  141. package/index.d.ts +1 -1
  142. package/index.js +0 -1
  143. package/libs/version.d.ts +1 -1
  144. package/libs/version.js +1 -1
  145. package/package.json +10 -11
  146. package/forms/LegacyStyles.d.ts +0 -498
  147. package/forms/LegacyStyles.js +0 -1
  148. package/forms/assets/arrow.d.ts +0 -4
  149. package/forms/assets/arrow.js +0 -1
  150. package/forms/assets/chevron.d.ts +0 -3
  151. package/forms/assets/chevron.js +0 -1
  152. package/forms/assets/cross.d.ts +0 -3
  153. package/forms/assets/cross.js +0 -1
  154. package/forms/assets/datetime.d.ts +0 -3
  155. package/forms/assets/datetime.js +0 -1
  156. package/forms/assets/remove.d.ts +0 -2
  157. package/forms/assets/remove.js +0 -1
  158. package/forms/assets/scan.d.ts +0 -4
  159. package/forms/assets/scan.js +0 -1
  160. package/forms/assets/stock.d.ts +0 -5
  161. package/forms/assets/stock.js +0 -1
  162. package/forms/components/DateRange.d.ts +0 -6
  163. package/forms/components/DateRange.js +0 -1
  164. package/forms/components/Navigator.d.ts +0 -1
  165. package/forms/components/Navigator.js +0 -1
  166. package/forms/components/ReactDateRangeCalendar.d.ts +0 -6
  167. package/forms/components/ReactDateRangeCalendar.js +0 -1
  168. package/forms/components/SyntheticButton.d.ts +0 -1
  169. package/forms/components/SyntheticButton.js +0 -1
  170. package/forms/components/TimePickerInput.d.ts +0 -24
  171. package/forms/components/TimePickerInput.js +0 -1
  172. package/forms/components/TimerManager.d.ts +0 -7
  173. package/forms/components/TimerManager.js +0 -1
  174. package/forms/components/utils.d.ts +0 -2
  175. package/forms/components/utils.js +0 -1
  176. package/forms/datetime.d.ts +0 -5
  177. package/forms/datetime.js +0 -1
  178. package/forms/files.d.ts +0 -4
  179. package/forms/files.js +0 -1
  180. package/forms/geometry.d.ts +0 -4
  181. package/forms/geometry.js +0 -1
  182. package/forms/number.d.ts +0 -11
  183. package/forms/number.js +0 -1
  184. package/forms/numberSliderUtilities.d.ts +0 -12
  185. package/forms/numberSliderUtilities.js +0 -1
  186. package/forms/scanner.d.ts +0 -4
  187. package/forms/scanner.js +0 -1
  188. package/forms/selectors.d.ts +0 -10
  189. package/forms/selectors.js +0 -1
  190. package/forms/styles/daterange.css +0 -1
  191. package/forms/styles/daterange.d.ts +0 -1
  192. package/forms/styles/daterange.js +0 -1
  193. package/forms/styles/stock.css +0 -1
  194. package/forms/styles/stock.d.ts +0 -1
  195. package/forms/styles/stock.js +0 -1
@@ -1,498 +0,0 @@
1
- /**
2
- * The contents of this file have been based on `runtime/forms/styles/main.scss`
3
- * allowing us to retain the appearance of old elements prior to them being migrated to react-ui.
4
- */
5
- declare const styles: {
6
- ".legacy-styled-element > * label": {
7
- border: string;
8
- color: string;
9
- display: string;
10
- marginBottom: string;
11
- p: {
12
- "&:first-child": {
13
- marginTop: number;
14
- };
15
- "&:last-child": {
16
- marginBottom: number;
17
- };
18
- };
19
- "&:empty": {
20
- display: string;
21
- };
22
- "&.focus": {
23
- backgroundColor: string;
24
- };
25
- };
26
- ".legacy-styled-element": {
27
- button: {
28
- marginRight: string;
29
- };
30
- div: {
31
- "&.inline": {
32
- display: string;
33
- };
34
- };
35
- 'input[type="checkbox"]': {
36
- marginRight: string;
37
- marginLeft: string;
38
- verticalAlign: string;
39
- };
40
- 'input[type="password"]': {
41
- marginBottom: string;
42
- fontSize: string;
43
- border: string;
44
- borderRadius: string;
45
- padding: string;
46
- display: string;
47
- width: string;
48
- boxSizing: string;
49
- };
50
- 'input[type="radio"]': {
51
- marginRight: string;
52
- marginLeft: string;
53
- verticalAlign: string;
54
- };
55
- 'input[type="text"]': {
56
- fontSize: string;
57
- border: string;
58
- borderRadius: string;
59
- padding: string;
60
- display: string;
61
- width: string;
62
- boxSizing: string;
63
- };
64
- select: {
65
- "&:disabled": {
66
- color: string;
67
- backgroundColor: string;
68
- option: {
69
- color: string;
70
- backgroundColor: string;
71
- "&:hover": {
72
- color: string;
73
- backgroundColor: string;
74
- };
75
- };
76
- };
77
- option: {
78
- padding: string;
79
- "&:hover": {
80
- color: string;
81
- backgroundColor: string;
82
- };
83
- "&:disabled": {
84
- color: string;
85
- backgroundColor: string;
86
- };
87
- };
88
- fontSize: string;
89
- border: string;
90
- borderRadius: string;
91
- padding: string;
92
- display: string;
93
- width: string;
94
- boxSizing: string;
95
- };
96
- textarea: {
97
- fontFamily: string;
98
- height: string;
99
- fontSize: string;
100
- border: string;
101
- borderRadius: string;
102
- padding: string;
103
- display: string;
104
- width: string;
105
- boxSizing: string;
106
- };
107
- ".items": {
108
- label: {
109
- marginBottom: number;
110
- "&:last-child": {
111
- marginBottom: string;
112
- };
113
- };
114
- };
115
- ".overlay": {
116
- display: string;
117
- };
118
- ".relative": {
119
- position: string;
120
- };
121
- ".TextEditor .shell": {
122
- fontSize: string;
123
- border: string;
124
- borderRadius: string;
125
- padding: string;
126
- display: string;
127
- width: string;
128
- boxSizing: string;
129
- };
130
- "&.AutoComplete": {
131
- 'input[type="text"]': {
132
- width: string;
133
- };
134
- ".suggestions": {
135
- position: string;
136
- width: string;
137
- maxHeight: string;
138
- border: string;
139
- margin: number;
140
- padding: number;
141
- listStyleType: string;
142
- overflow: string;
143
- backgroundColor: string;
144
- zIndex: number;
145
- li: {
146
- padding: string;
147
- "&:hover": {
148
- color: string;
149
- backgroundColor: string;
150
- };
151
- "&.selected": {
152
- color: string;
153
- backgroundColor: string;
154
- };
155
- "&.disabled": {
156
- color: string;
157
- backgroundColor: string;
158
- };
159
- };
160
- };
161
- };
162
- "&.ButtonBar": {
163
- marginTop: string;
164
- ".items": {
165
- lineHeight: number;
166
- marginTop: string;
167
- button: {
168
- marginBottom: string;
169
- p: {
170
- lineHeight: number;
171
- };
172
- };
173
- "&.vertical": {
174
- button: {
175
- display: string;
176
- marginBottom: string;
177
- };
178
- };
179
- };
180
- };
181
- "&.DateTimePicker, &.DatePicker, &.TimePicker, &.DateRangePicker": {
182
- ".outer": {
183
- display: string;
184
- ".inner": {
185
- display: string;
186
- border: string;
187
- flexGrow: number;
188
- margin: string;
189
- backgroundColor: string;
190
- 'input[type="text"]': {
191
- border: string;
192
- fontSize: string;
193
- };
194
- "input:focus": {
195
- backgroundColor: string;
196
- outline: string;
197
- };
198
- };
199
- ".buttonContainer": {
200
- position: string;
201
- };
202
- "button.calendarButton, button.clockButton": {
203
- margin: string;
204
- border: string;
205
- backgroundColor: string;
206
- cursor: string;
207
- flexShrink: number;
208
- fontSize: string;
209
- height: string;
210
- width: string;
211
- borderRadius: string;
212
- outline: string;
213
- padding: string;
214
- textAlign: string;
215
- "&:hover": {
216
- backgroundColor: string;
217
- };
218
- "svg.calendar, svg.clock": {
219
- height: string;
220
- verticalAlign: string;
221
- textAlign: string;
222
- width: string;
223
- marginBottom: string;
224
- };
225
- };
226
- };
227
- "&.error": {
228
- ".outer": {
229
- color: string;
230
- };
231
- };
232
- '.disabled, button:disabled, input[type="text"]:disabled': {
233
- backgroundColor: string;
234
- border: string;
235
- pointerEvents: string;
236
- };
237
- };
238
- "&.TimePicker .TimePickerInput, &.DateTimePicker .TimePickerInput": {
239
- flexGrow: number;
240
- input: {
241
- height: string;
242
- width: string;
243
- boxSizing: string;
244
- };
245
- ".close": {
246
- position: string;
247
- display: string;
248
- width: string;
249
- maxWidth: string;
250
- };
251
- ".overlay": {
252
- position: string;
253
- };
254
- ".side": {
255
- boxSizing: string;
256
- left: number;
257
- position: string;
258
- textAlign: string;
259
- top: number;
260
- width: string;
261
- };
262
- "@media screen": {
263
- ".close": {
264
- ".content": {
265
- display: string;
266
- };
267
- ".symbol::after": {
268
- content: string;
269
- };
270
- };
271
- ".up .content, .down .content": {
272
- display: string;
273
- };
274
- ".up .symbol::after": {
275
- content: string;
276
- fontSize: string;
277
- color: string;
278
- };
279
- ".down .symbol::after": {
280
- content: string;
281
- fontSize: string;
282
- color: string;
283
- };
284
- };
285
- ".rollers": {
286
- position: string;
287
- visibility: string;
288
- backgroundColor: string;
289
- textAlign: string;
290
- boxSizing: string;
291
- boxShadow: string;
292
- opacity: string;
293
- transition: string;
294
- zIndex: string;
295
- right: string;
296
- top: string;
297
- ".button": {
298
- display: string;
299
- width: string;
300
- textAlign: string;
301
- cursor: string;
302
- fontSize: string;
303
- transition: string;
304
- };
305
- ".button:hover": {
306
- backgroundColor: string;
307
- transition: string;
308
- };
309
- };
310
- ".main": {
311
- display: string;
312
- margin: string;
313
- };
314
- ".overlay .button": {
315
- position: string;
316
- left: string;
317
- top: string;
318
- width: string;
319
- padding: string;
320
- boxSizing: string;
321
- pointerEvents: string;
322
- textAlign: string;
323
- fontStyle: string;
324
- color: string;
325
- };
326
- ".dropdown": {
327
- position: string;
328
- touchAction: string;
329
- };
330
- ".opened .rollers": {
331
- visibility: string;
332
- transition: string;
333
- opacity: string;
334
- };
335
- ".bottom": {
336
- marginBottom: string;
337
- ".content": {
338
- fontStyle: string;
339
- color: string;
340
- };
341
- ".button": {
342
- cursor: string;
343
- };
344
- ".button:hover": {
345
- background: string;
346
- };
347
- };
348
- ".up, .down, .value": {
349
- position: string;
350
- width: string;
351
- maxWidth: string;
352
- margin: string;
353
- borderRadius: string;
354
- ".button": {
355
- padding: string;
356
- };
357
- };
358
- ".up, .down": {
359
- ".button": {
360
- padding: string;
361
- };
362
- ".button:hover": {
363
- background: string;
364
- ".symbol::after": {
365
- color: string;
366
- transition: string;
367
- };
368
- };
369
- };
370
- ".value": {
371
- ".button": {
372
- lineHeight: string;
373
- };
374
- ".button:hover": {
375
- borderRadius: string;
376
- };
377
- };
378
- ".hours, .minutes": {
379
- display: string;
380
- };
381
- ".hours, .minutes, .toggle": {
382
- margin: string;
383
- position: string;
384
- };
385
- ".toggle": {
386
- display: string;
387
- };
388
- ".show-ampm .toggle": {
389
- display: string;
390
- };
391
- ".tape": {
392
- display: string;
393
- position: string;
394
- left: number;
395
- top: number;
396
- height: string;
397
- width: string;
398
- maxWidth: string;
399
- maxHeight: string;
400
- textAlign: string;
401
- overflowX: string;
402
- overflowY: string;
403
- };
404
- ".rolling .buttons": {
405
- opacity: string;
406
- };
407
- ".rolling .tape": {
408
- display: string;
409
- };
410
- ".tape, .tape *": {
411
- pointerEvents: string;
412
- };
413
- ".tape .item, .tape .button": {
414
- margin: string;
415
- padding: string;
416
- };
417
- ".tape .item:nth-child(4)": {
418
- fontWeight: string;
419
- };
420
- ".marker": {
421
- top: string;
422
- left: string;
423
- width: string;
424
- maxWidth: string;
425
- height: string;
426
- maxHeight: string;
427
- marginLeft: string;
428
- marginTop: string;
429
- backgroundColor: string;
430
- borderRadius: string;
431
- };
432
- };
433
- "&.DateRangePicker": {
434
- ".inner": {
435
- 'input[type="text"]': {
436
- textAlign: string;
437
- width: string;
438
- };
439
- "span.arrow": {
440
- margin: string;
441
- display: string;
442
- alignSelf: string;
443
- width: string;
444
- "svg.arrowRight": {
445
- display: string;
446
- width: string;
447
- height: string;
448
- margin: string;
449
- };
450
- };
451
- };
452
- };
453
- "&.DatePicker .time-part, &.TimePicker .date-part": {
454
- display: string;
455
- };
456
- "&.NumberSlider, &.NumberRangeSlider": {
457
- ".slider-container": {
458
- padding: string;
459
- lineHeight: string;
460
- marginBottom: string;
461
- };
462
- ".inputs": {
463
- display: string;
464
- justifyContent: string;
465
- flexWrap: string;
466
- marginTop: string;
467
- "span:first-child": {
468
- marginRight: string;
469
- };
470
- span: {
471
- display: string;
472
- flexDirection: string;
473
- alignItems: string;
474
- input: {
475
- marginLeft: string;
476
- width: string;
477
- };
478
- };
479
- };
480
- };
481
- "&.RadioGroup": {
482
- marginBottom: string;
483
- border: string;
484
- color: string;
485
- };
486
- "&.Text": {
487
- marginBottom: string;
488
- border: string;
489
- color: string;
490
- };
491
- "&.Image": {
492
- marginBottom: string;
493
- border: string;
494
- color: string;
495
- };
496
- };
497
- };
498
- export default styles;
@@ -1 +0,0 @@
1
- const constants={action:{normal:"#197dc8",light:"#5caeeb",veryLight:"#e4f2fc"},alarm:"#b71d1d",bgColor:"#eee",border:"#ccc",button:"#eee",font:{light:"#777777",dark:"#333"}},inputStyles={fontSize:"1em",border:"1px solid #cccccc",borderRadius:"1px",padding:"3px 6px",display:"block",width:"100%",boxSizing:"border-box"},autoCompleteStyles={'input[type="text"]':{width:"100%"},".suggestions":{position:"absolute",width:"100%",maxHeight:"15.1em",border:"0.063em solid #cccccc",margin:0,padding:0,listStyleType:"none",overflow:"auto",backgroundColor:"white",zIndex:1,li:{padding:"0.35em","&:hover":{color:"#fff",backgroundColor:"#197dc8"},"&.selected":{color:"#fff",backgroundColor:"#197dc8"},"&.disabled":{color:constants.font.light,backgroundColor:"transparent"}}}},buttonBarStyles={marginTop:"1.5em",".items":{lineHeight:1,marginTop:"2px",button:{marginBottom:"0.313em",p:{lineHeight:1.15}},"&.vertical":{button:{display:"block",marginBottom:"6px"}}}},dateTimePickerStyles={".outer":{display:"flex",".inner":{display:"flex",border:"solid 1px",flexGrow:1,margin:"0.25rem",backgroundColor:"#ffffff",'input[type="text"]':{border:"none !important",fontSize:"medium !important"},"input:focus":{backgroundColor:"#eee",outline:"none"}},".buttonContainer":{position:"relative"},"button.calendarButton, button.clockButton":{margin:"0.17em 0",border:"none",backgroundColor:"#efefef",cursor:"pointer",flexShrink:0,fontSize:"medium",height:"2.25em",width:"2.25em",borderRadius:"50%",outline:"none",padding:"6px",textAlign:"center","&:hover":{backgroundColor:"#ccc"},"svg.calendar, svg.clock":{height:"16px",verticalAlign:"middle",textAlign:"center",width:"16px",marginBottom:"2px"}}},"&.error":{".outer":{color:`${constants.alarm} !important`}},'.disabled, button:disabled, input[type="text"]:disabled':{backgroundColor:`${constants.bgColor} !important`,border:"none !important",pointerEvents:"none"}},timePickerInputStyles={flexGrow:1,input:{height:"2.025em",width:"100%",boxSizing:"border-box"},".close":{position:"relative",display:"inline-block",width:"2em",maxWidth:"2em"},".overlay":{position:"relative"},".side":{boxSizing:"border-box",left:0,position:"absolute",textAlign:"right",top:0,width:"100%"},"@media screen":{".close":{".content":{display:"none"},".symbol::after":{content:'"\\2716"'}},".up .content, .down .content":{display:"none"},".up .symbol::after":{content:'"\\25B2"',fontSize:"1.15em",color:constants.action.normal},".down .symbol::after":{content:'"\\25BC"',fontSize:"1.15em",color:constants.action.normal}},".rollers":{position:"absolute",visibility:"hidden",backgroundColor:"white",textAlign:"center",boxSizing:"border-box",boxShadow:"0 0.313em 0.8em rgba(0, 0, 0, 0.2)",opacity:"0",transition:"all 0.3s ease-in-out",zIndex:"1",right:"-2em",top:"0.25em",".button":{display:"block",width:"auto",textAlign:"center",cursor:"pointer",fontSize:"small",transition:"all 0.2s ease-in-out"},".button:hover":{backgroundColor:constants.action.veryLight,transition:"all 0.2s ease-in-out"}},".main":{display:"inline-block",margin:"0.625em 0 1em"},".overlay .button":{position:"absolute",left:"0",top:"0",width:"100%",padding:"2px 4px 2px 4px",boxSizing:"border-box",pointerEvents:"none",textAlign:"right",fontStyle:"italic",color:"#808080"},".dropdown":{position:"relative",touchAction:"none"},".opened .rollers":{visibility:"visible",transition:"all 0.3s ease-in-out",opacity:"1"},".bottom":{marginBottom:"0.5em",".content":{fontStyle:"italic",color:"#999"},".button":{cursor:"default"},".button:hover":{background:"none"}},".up, .down, .value":{position:"relative",width:"1.4em",maxWidth:"1.4em",margin:"0 0.5em",borderRadius:"50px",".button":{padding:"0.2em 0.2em 0.1em"}},".up, .down":{".button":{padding:"0"},".button:hover":{background:"none",".symbol::after":{color:constants.action.light,transition:"all 0.2s ease-in-out"}}},".value":{".button":{lineHeight:"1.675em"},".button:hover":{borderRadius:"50px"}},".hours, .minutes":{display:"inline-block"},".hours, .minutes, .toggle":{margin:"0 0.5em",position:"relative"},".toggle":{display:"none"},".show-ampm .toggle":{display:"inline-block"},".tape":{display:"none",position:"absolute",left:0,top:0,height:"100%",width:"100%",maxWidth:"100%",maxHeight:"100%",textAlign:"center",overflowX:"hidden",overflowY:"hidden"},".rolling .buttons":{opacity:"0"},".rolling .tape":{display:"block"},".tape, .tape *":{pointerEvents:"none"},".tape .item, .tape .button":{margin:"0",padding:"0"},".tape .item:nth-child(4)":{fontWeight:"bold"},".marker":{top:"50%",left:"50%",width:"1.5em",maxWidth:"1.5em",height:"1.5em",maxHeight:"1.5em",marginLeft:"-0.75em",marginTop:"-0.75em",backgroundColor:"lightblue",borderRadius:"0.75em"}},dateRangePickerStyles={".inner":{'input[type="text"]':{textAlign:"center",width:"45%"},"span.arrow":{margin:"0 0.5rem",display:"inline",alignSelf:"center",width:"10%","svg.arrowRight":{display:"block",width:"18px",height:"18px",margin:"auto"}}}},numberSliderStyles={".slider-container":{padding:"6px 12px",lineHeight:"1",marginBottom:"0.5em"},".inputs":{display:"flex",justifyContent:"flex-start",flexWrap:"wrap",marginTop:"1.5em","span:first-child":{marginRight:"0.5em"},span:{display:"flex",flexDirection:"row",alignItems:"baseline",input:{marginLeft:"0.5em !important",width:"5.25em !important"}}}},styles={".legacy-styled-element > * label":{border:"none",color:"#333333",display:"block",marginBottom:"0.5em",p:{"&:first-child":{marginTop:0},"&:last-child":{marginBottom:0}},"&:empty":{display:"none"},"&.focus":{backgroundColor:"#eee"}},".legacy-styled-element":{button:{marginRight:"6px"},div:{"&.inline":{display:"inline-block"}},'input[type="checkbox"]':{marginRight:"0.25em",marginLeft:"0.25em",verticalAlign:"baseline"},'input[type="password"]':{...inputStyles,marginBottom:"1em"},'input[type="radio"]':{marginRight:"0.25em",marginLeft:"0.25em",verticalAlign:"baseline"},'input[type="text"]':inputStyles,select:{...inputStyles,"&:disabled":{color:constants.font.light,backgroundColor:"transparent",option:{color:constants.font.light,backgroundColor:"transparent","&:hover":{color:constants.font.light,backgroundColor:"transparent"}}},option:{padding:"2px 2px 0","&:hover":{color:"#fff",backgroundColor:"#197dc8"},"&:disabled":{color:constants.font.light,backgroundColor:"transparent"}}},textarea:{...inputStyles,fontFamily:"inherit",height:"auto"},".items":{label:{marginBottom:0,"&:last-child":{marginBottom:"1em"}}},".overlay":{display:"none"},".relative":{position:"relative"},".TextEditor .shell":inputStyles,"&.AutoComplete":autoCompleteStyles,"&.ButtonBar":buttonBarStyles,"&.DateTimePicker, &.DatePicker, &.TimePicker, &.DateRangePicker":dateTimePickerStyles,"&.TimePicker .TimePickerInput, &.DateTimePicker .TimePickerInput":timePickerInputStyles,"&.DateRangePicker":dateRangePickerStyles,"&.DatePicker .time-part, &.TimePicker .date-part":{display:"none"},"&.NumberSlider, &.NumberRangeSlider":numberSliderStyles,"&.RadioGroup":{marginBottom:"0.75em",border:"none",color:"#333333"},"&.Text":{marginBottom:"0.75em",border:"none",color:"#333333"},"&.Image":{marginBottom:"0.75em",border:"none",color:"#333333"}}};export default styles;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderArrowHead(): JSX.Element;
3
- export declare function renderArrowRight(): JSX.Element;
4
- export declare function renderArrowRollup(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderArrowHead(){return React.createElement("svg",{className:"arrowHead",viewBox:"0 0 200 200",preserveAspectRatio:"none"},React.createElement("path",{d:"M 0 0 V 200 L 200 100 Z"}))}function renderArrowRight(){return React.createElement("svg",{className:"arrowRight",viewBox:"0 0 24 24",preserveAspectRatio:"none"},React.createElement("path",{d:"M20 12l-8-8-1.4 1.4 5.6 5.6H4v2h12.2l-5.6 5.6L12 20l8-8z"}))}function renderArrowRollup(){return React.createElement("svg",{className:"arrowRollup",viewBox:"0 0 200 200",preserveAspectRatio:"none"},React.createElement("circle",{cx:"100",cy:"100",r:"100"}),React.createElement("polyline",{points:"50 100 100 50 150 100"}),React.createElement("polyline",{points:"50 150 100 100 150 150"}))}export{renderArrowHead,renderArrowRight,renderArrowRollup};
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderChevronUp(): JSX.Element;
3
- export declare function renderChevronDown(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderChevronUp(){return React.createElement("svg",{className:"chevronUp",viewBox:"0 0 24 24"},React.createElement("g",null,React.createElement("path",{d:"M20 15.3l-8-8-8 8 1.4 1.4 6.6-6.6 6.6 6.6 1.4-1.4z"})))}function renderChevronDown(){return React.createElement("svg",{className:"chevronDown",viewBox:"0 0 24 24"},React.createElement("g",null,React.createElement("path",{d:"M18.6 7.3L12 13.9 5.4 7.3 4 8.7l8 8 8-8-1.4-1.4z"})))}export{renderChevronUp,renderChevronDown};
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderCrossAdd(): JSX.Element;
3
- export declare function renderCrossDelete(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderCrossAdd(){return React.createElement("svg",{className:"crossAdd",viewBox:"0 0 200 200",preserveAspectRatio:"none"},React.createElement("polyline",{points:"0 100 200 100"}),React.createElement("polyline",{points:"100 0 100 200"}))}function renderCrossDelete(){return React.createElement("svg",{className:"crossDelete",viewBox:"0 0 200 200",preserveAspectRatio:"none"},React.createElement("circle",{cx:"100",cy:"100",r:"100"}),React.createElement("polyline",{points:"50 50 150 150"}),React.createElement("polyline",{points:"50 150 150 50"}))}export{renderCrossAdd,renderCrossDelete};
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderCalendar(): JSX.Element;
3
- export declare function renderClock(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderCalendar(){return React.createElement("svg",{className:"calendar",viewBox:"0 0 24 24"},React.createElement("path",{d:"M23 6v16c0 .6-.4 1-1 1H2c-.6 0-1-.4-1-1V6m21-6H2C.9 0 0 .9 0 2v20c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"}),React.createElement("path",{d:"M13 13h3v3h-3v-3zm-2-2H8V8h3v3zm5-3h-3v3h3V8zm5 0h-3v3h3V8zM6 13H3v3h3v-3zm5 0H8v3h3v-3zm10 0h-3v3h3v-3zM6 18H3v3h3v-3zm5 0H8v3h3v-3zm5 0h-3v3h3v-3z"}))}function renderClock(){return React.createElement("svg",{className:"clock",viewBox:"0 0 24 24"},React.createElement("path",{d:"M12.9748 11.6775C13.8937 12.9336 16 16 16 16s-4.4547-3.0477-4.7742-3.3673c-.1703-.1703-.2432-.4286-.2222-.6921C11.043 11.1284 12 4 12 4s.8257 6.1508.9748 7.6775zM12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10S2 17.514 2 12 6.486 2 12 2m0-2C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0z"}))}export{renderCalendar,renderClock};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderRemove(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderRemove(){return React.createElement("svg",{className:"remove",viewBox:"0 0 24 24"},React.createElement("path",{d:"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z"}))}export{renderRemove};
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function renderScanBarcode(): JSX.Element;
3
- export declare function renderScanQrcode(): JSX.Element;
4
- export declare function renderScanMulti(): JSX.Element;
@@ -1 +0,0 @@
1
- import*as React from"react";function renderScanBarcode(){return React.createElement("svg",{className:"barcode",viewBox:"0 0 24 24"},React.createElement("path",{d:"M1 8V4.6666C1 2.65 2.65 1 4.6667 1H8v2H4.6667C3.7477 3 3 3.7477 3 4.6666V8H1zm15-5h3.3333C20.2523 3 21 3.7477 21 4.6666V8h2V4.6666C23 2.65 21.35 1 19.3333 1H16v2zM8 21H4.6667C3.7477 21 3 20.2523 3 19.3333V16H1v3.3333C1 21.35 2.65 23 4.6667 23H8v-2zm13-5v3.3333C21 20.2523 20.2523 21 19.3333 21H16v2h3.3333C21.35 23 23 21.35 23 19.3333V16h-2zM6 5H5v14h1V5zm3 0H7v14h2V5zm5 0h-2v14h2V5zm-3 0h-1v14h1V5zm5 0h-1v14h1V5zm3 0h-2v14h2V5z"}))}function renderScanQrcode(){return React.createElement("svg",{className:"qrCode",viewBox:"0 0 24 24"},React.createElement("path",{d:"M9 6v3H6V6h3m1-1H5v5h5V5zM8 7H7v1h1V7zm1 8v3H6v-3h3m1-1H5v5h5v-5zm-2 2H7v1h1v-1zM18 6v3h-3V6h3m1-1h-5v5h5V5zm-2 2h-1v1h1V7zm-5 1h1V7h-1v1zm0 1h-1v1h1V9zm2 5h-3v1h3v-1zm0 2h1v-1h-1v1zm-2 0h-1v1h1v-1zm0 2h1v-1h-1v1zm4-1h1v-1h-1v1zm-1 1v-1h-1v2h2v-1h-1zm2-4h-1v1h1v-1zm1 2h1v-2h-1v2zm0 3h1v-1h-1v1zm-6-1h-1v1h1v-1zm0-13h-1v2h1V5zm-6 6H5v1h1v-1zm12 0v1h-1v1h2v-2h-1zm-2 0h-1v1h1v-1zm-1 3h1v-1h-1v1zm-1-3h-2v2h1v-1h1v-1zm-4 1h1v-1h-1v1zm-2 0v-1H7v2h3v-1H8zM3 8V4.6666C3 3.7477 3.7477 3 4.6667 3H8V1H4.6667C2.65 1 1 2.65 1 4.6666V8h2zm13-5h3.3333C20.2523 3 21 3.7477 21 4.6666V8h2V4.6666C23 2.65 21.35 1 19.3333 1H16v2zM8 21H4.6667C3.7477 21 3 20.2523 3 19.3333V16H1v3.3333C1 21.35 2.65 23 4.6667 23H8v-2zm13-5v3.3333C21 20.2523 20.2523 21 19.3333 21H16v2h3.3333C21.35 23 23 21.35 23 19.3333V16h-2z"}))}function renderScanMulti(){return React.createElement("svg",{className:"barcodeOrQrCode",viewBox:"0 0 24 24"},React.createElement("path",{d:"M16 7h1v1h-1V7zM6 19V5H5v14h1zm1 0h2V5H7v14zm3 0h1V5h-1v14zm11 .3333C21 20.2523 20.2523 21 19.3333 21H16v2h3.3333C21.35 23 23 21.35 23 19.3333V16h-2v3.3333zM16 11h-1v1h1v-1zM3 4.6666C3 3.7477 3.7477 3 4.6667 3H8V1H4.6667C2.65 1 1 2.65 1 4.6666V8h2V4.6666zM14 11h-1v1h1v-1zm0 3h-1v1h1v-1zm1 2v-1h-1v1h1zm4.3333-15H16v2h3.3333C20.2523 3 21 3.7477 21 4.6666V8h2V4.6666C23 2.65 21.35 1 19.3333 1zM14 18h1v1h1v-2h-2v1zM3 19.3333V16H1v3.3333C1 21.35 2.65 23 4.6667 23H8v-2H4.6667C3.7477 21 3 20.2523 3 19.3333zM19 14h-1v2h1v-2zm-5-9v5h5V5h-5zm4 4h-3V6h3v3zm0 10h1v-1h-1v1zm-3-6v1h1v-1h-1zm2 1h-1v1h1v-1zm-1 3h1v-1h-1v1zm3-6h-1v1h-1v1h2v-2zm-5 7h-1v1h1v-1z"}))}export{renderScanBarcode,renderScanQrcode,renderScanMulti};
@@ -1,5 +0,0 @@
1
- export * from "./arrow";
2
- export * from "./chevron";
3
- export * from "./cross";
4
- export * from "./remove";
5
- export * from "./scan";
@@ -1 +0,0 @@
1
- export*from"./arrow.js";export*from"./chevron.js";export*from"./cross.js";export*from"./remove.js";export*from"./scan.js";
@@ -1,6 +0,0 @@
1
- /**
2
- * This file is an intermediate module designed to ensure that tree shaking functions as intended for
3
- * the named 'DateRange' export from 'react-date-range' when consumed using React.lazy().
4
- * See https://reactjs.org/docs/code-splitting.html#named-exports
5
- */
6
- export { DateRange as default } from "react-date-range";
@@ -1 +0,0 @@
1
- export{DateRange as default}from"react-date-range";
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- import{Component}from"react";import*as React from"react";const domReferenceKey="__navigator";class Navigator extends Component{static find(t){let e=t.target;for(;e!==t.currentTarget&&e instanceof HTMLElement;){var r=e[domReferenceKey];if(r instanceof Navigator)return r;e=e.parentNode}}init(t){const e=this.target;void 0!==e&&(this.target=void 0,e[domReferenceKey]=void 0),null!==t&&((this.target=t)[domReferenceKey]=this)}focus(){this.target.focus()}scrollTo(t){var e=this.props.children;if(Array.isArray(e)){const a=this.target;var r=a.scrollHeight/e.length,s=r/2,e=t%r,e=(a.scrollHeight-a.clientHeight)/2+(e+(e<-s?r:s<=e?-r:0));return a.scrollTop=e,Math.round(t/r)}return 0}hasStates(){var t=this.state;if(null==t)return!1;t=t.states;return null!=t}render(){var t=this.props,e=this.state||{},r=e.states;const s=[t.className];if(null!=r)for(const a in r)!0===r[a]&&s.push(a);return React.createElement("div",{className:s.join(" "),tabIndex:e.tabIndex,ref:t=>this.init(t)},this.props.children)}}export{Navigator};
@@ -1,6 +0,0 @@
1
- /**
2
- * This file is an intermediate module designed to ensure that tree shaking functions as intended for
3
- * the named 'Calendar' export from 'react-date-range' when consumed using React.lazy().
4
- * See https://reactjs.org/docs/code-splitting.html#named-exports
5
- */
6
- export { Calendar as default } from "react-date-range";
@@ -1 +0,0 @@
1
- export{Calendar as default}from"react-date-range";
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- import{Component}from"react";import*as React from"react";const domReferenceKey="__synthetic_button";class SyntheticButton extends Component{static find(e){let t=e.target;for(;t!==e.currentTarget&&t instanceof HTMLElement;){var n=t[domReferenceKey];if(n instanceof SyntheticButton)return n;t=t.parentNode}}static search(e){const t=e.querySelectorAll("div"),n=[];for(let e=0;e<t.length;e++){var a=t.item(e)[domReferenceKey];a instanceof SyntheticButton&&n.push(a)}return n}init(e){const t=this.target;void 0!==t&&(this.target=void 0,t[domReferenceKey]=void 0),null!==e&&((this.target=e)[domReferenceKey]=this)}render(){var e=this.props,t=this.state||{},n=t.states;const a=["button"];if(null!=n)for(const s in n)!0===n[s]&&a.push(s);var r=t.content,t=t.symbol;return React.createElement("div",{className:this.props.className,ref:e=>this.init(e)},React.createElement("div",{className:a.join(" "),"aria-label":e.ariaLabel},React.createElement("span",{className:"content"},r),React.createElement("span",{className:"symbol"},t)))}}export{SyntheticButton};
@@ -1,24 +0,0 @@
1
- import * as React from "react";
2
- import { Calendar } from "../Calendar";
3
- export interface TimePickerInputProps {
4
- /** Indicates what calendar to use for the time picker. */
5
- calendar?: Calendar;
6
- /** Indicates if the component should be disabled. */
7
- disabled?: boolean;
8
- /** Aria label for the "done" button. */
9
- doneText: string;
10
- /** True if the popup is open, false otherwise. */
11
- isOpen?: boolean;
12
- /** Callback for when the value changes. */
13
- onChange?: (value: Date) => void;
14
- /** Callback for when the popup is opened or closed. */
15
- onPopupToggle: (isOpen: boolean) => void;
16
- /** Indicates the placeholder for the time picker. */
17
- placeholder?: string;
18
- /** Indicates the title for the time picker. */
19
- title?: string;
20
- /** Indicates the value for the time picker. */
21
- value?: Date | number | string;
22
- }
23
- declare const _default: React.ForwardRefExoticComponent<TimePickerInputProps & React.RefAttributes<HTMLInputElement>>;
24
- export default _default;