@scaleflex/widget-common 0.0.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 (125) hide show
  1. package/CHANGELOG.md +8056 -0
  2. package/LICENSE +21 -0
  3. package/README.md +58 -0
  4. package/dist/style.css +952 -0
  5. package/dist/style.min.css +1 -0
  6. package/lib/ApprovalStatus/ApprovalStatus.styled.js +21 -0
  7. package/lib/ApprovalStatus/index.js +104 -0
  8. package/lib/AssetPreview.js +53 -0
  9. package/lib/AutoSuggest.js +166 -0
  10. package/lib/Avatar/Avatar.styled.js +25 -0
  11. package/lib/Avatar/index.js +83 -0
  12. package/lib/AvatarWithStatus/AvatarWithStatus.styled.js +12 -0
  13. package/lib/AvatarWithStatus/index.js +30 -0
  14. package/lib/BackButton.js +46 -0
  15. package/lib/BackdropOverlay.js +77 -0
  16. package/lib/BadgeButton.js +35 -0
  17. package/lib/BaseButton.js +36 -0
  18. package/lib/Button.js +29 -0
  19. package/lib/Carousel/Carousel.styled.js +19 -0
  20. package/lib/Carousel/index.js +136 -0
  21. package/lib/Checkbox.js +55 -0
  22. package/lib/CloseButton.js +46 -0
  23. package/lib/ColorPicker/ColorPicker.styled.js +29 -0
  24. package/lib/ColorPicker/index.js +117 -0
  25. package/lib/ColorPickerModal/ColorPickerModal.styled.js +17 -0
  26. package/lib/ColorPickerModal/index.js +103 -0
  27. package/lib/DatePicker/MyDatePicker.js +350 -0
  28. package/lib/DatePicker/index.js +1 -0
  29. package/lib/DatePicker/index.scss +254 -0
  30. package/lib/DropFilesWindow.js +45 -0
  31. package/lib/FilterItem/FilterItem.styled.js +42 -0
  32. package/lib/FilterItem/index.js +48 -0
  33. package/lib/FilterPopup/FilterPopup.styled.js +16 -0
  34. package/lib/FilterPopup/index.js +85 -0
  35. package/lib/FormControl.js +25 -0
  36. package/lib/FormGroup.js +18 -0
  37. package/lib/FormHelperText.js +29 -0
  38. package/lib/IconLabeledButton.js +32 -0
  39. package/lib/Image/Image.styled.js +16 -0
  40. package/lib/Image/index.js +95 -0
  41. package/lib/ImagePreview/ImagePreview.styled.js +19 -0
  42. package/lib/ImagePreview/index.js +198 -0
  43. package/lib/InputAndLabel.js +77 -0
  44. package/lib/InputGroupTime.js +6 -0
  45. package/lib/InputLabel.js +18 -0
  46. package/lib/ItemButtonOverlay/ItemButtonOverlay.styled.js +33 -0
  47. package/lib/ItemButtonOverlay/index.js +23 -0
  48. package/lib/ItemHoverTopOptions.js +58 -0
  49. package/lib/LoaderView/LoaderView.styled.js +37 -0
  50. package/lib/LoaderView/index.js +32 -0
  51. package/lib/MetaData/FilterMetadataFields.js +115 -0
  52. package/lib/MetaData/FilterMetadataFields.styled.js +16 -0
  53. package/lib/MetaData/MetaDataField.js +246 -0
  54. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldBooleanType.js +36 -0
  55. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldDateType.js +53 -0
  56. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldMultiSelectType.js +71 -0
  57. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldNumericType.js +45 -0
  58. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldSelectType.js +69 -0
  59. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTagsType.js +143 -0
  60. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTextType.js +42 -0
  61. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTextareaType.js +72 -0
  62. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTypes.styled.js +57 -0
  63. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/AttachmentsAssetsMetadataAccordion.styled.js +95 -0
  64. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsAction.js +188 -0
  65. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsFieldType.constants.js +48 -0
  66. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsInfo.js +93 -0
  67. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/index.js +116 -0
  68. package/lib/MetaData/MetaDataFieldTypes/MetadataFieldUriType.js +71 -0
  69. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/MetadataGeoPointField.styled.js +8 -0
  70. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/constants.js +10 -0
  71. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/index.js +135 -0
  72. package/lib/MetaData/MetaDataFieldTypes/index.js +9 -0
  73. package/lib/MetaData/MetaDataFieldTypes.hooks.js +53 -0
  74. package/lib/OverlayCard/OverlayCard.styled.js +8 -0
  75. package/lib/OverlayCard/index.js +28 -0
  76. package/lib/PoweredBy.js +12 -0
  77. package/lib/Radiobox.js +63 -0
  78. package/lib/RegionalVariantsFilters/RegionalVariantFilters.styled.js +17 -0
  79. package/lib/RegionalVariantsFilters/index.js +160 -0
  80. package/lib/SVGUrlToElement.js +73 -0
  81. package/lib/SearchGroup/SearchGroup.styled.js +93 -0
  82. package/lib/SearchGroup/index.js +293 -0
  83. package/lib/Spinner.js +40 -0
  84. package/lib/SuggestedSelectInput/SuggestedSelectInput.styled.js +57 -0
  85. package/lib/SuggestedSelectInput/index.js +238 -0
  86. package/lib/SuggestedTagsInput/SuggestedTagsInput.js +295 -0
  87. package/lib/SuggestedTagsInput/SuggestedTagsInput.styled.js +83 -0
  88. package/lib/SuggestedTagsInput/SuggestedTagsInput.utils.js +15 -0
  89. package/lib/SuggestedTagsInput/SuggestedTagsInputSkeleton.js +14 -0
  90. package/lib/Tabs.js +62 -0
  91. package/lib/ToggleButton/ToggleButton.styled.js +16 -0
  92. package/lib/ToggleButton/index.js +16 -0
  93. package/lib/Transitions/SlideTransition.js +24 -0
  94. package/lib/Transitions/TransitionWrapper.js +83 -0
  95. package/lib/Transitions/Transitions.styled.js +8 -0
  96. package/lib/Transitions/index.js +2 -0
  97. package/lib/Transitions/transitions.scss +49 -0
  98. package/lib/Typography/Typography.js +47 -0
  99. package/lib/Typography/Typography.mixin.js +46 -0
  100. package/lib/Typography/Typography.styled.js +18 -0
  101. package/lib/Typography/index.js +3 -0
  102. package/lib/Typography/types/index.js +1 -0
  103. package/lib/Typography/types/variant.js +9 -0
  104. package/lib/UploadFileFloatyLabel/UploadFileFloatyLabel.mixin.js +23 -0
  105. package/lib/UploadFileFloatyLabel/UploadFileFloatyLabel.styled.js +24 -0
  106. package/lib/UploadFileFloatyLabel/index.js +12 -0
  107. package/lib/UsersAutocomplete/Tag.js +25 -0
  108. package/lib/UsersAutocomplete/Tag.styled.js +35 -0
  109. package/lib/UsersAutocomplete/UsersAutocomplete.styled.js +94 -0
  110. package/lib/UsersAutocomplete/index.js +303 -0
  111. package/lib/VirtualGrid/VirtualGrid.styled.js +33 -0
  112. package/lib/VirtualGrid/VirtualGrid.utils.js +38 -0
  113. package/lib/VirtualGrid/VirtualGridItem.js +15 -0
  114. package/lib/VirtualGrid/index.js +248 -0
  115. package/lib/VirtualList/VirtualListItem.js +14 -0
  116. package/lib/VirtualList/index.js +105 -0
  117. package/lib/hooks/index.js +4 -0
  118. package/lib/hooks/useDebounce.js +24 -0
  119. package/lib/hooks/useInputWithLocaleNumber.js +115 -0
  120. package/lib/hooks/useIsUnMountedRef.js +12 -0
  121. package/lib/hooks/useKeyboardNavigation.js +60 -0
  122. package/lib/hooks/useUpdateEffect.js +19 -0
  123. package/lib/index.js +36 -0
  124. package/lib/style.scss +1079 -0
  125. package/package.json +32 -0
package/dist/style.css ADDED
@@ -0,0 +1,952 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
2
+ .filerobot-Explorer-assets-picker-modal {
3
+ z-index: 100000; }
4
+
5
+ .filerobot-common-BaseButton {
6
+ font-weight: 500;
7
+ padding: 8px 12px;
8
+ border-radius: 2px;
9
+ display: flex;
10
+ align-items: center;
11
+ justify-content: center;
12
+ cursor: pointer;
13
+ border: 0;
14
+ outline: none;
15
+ position: relative;
16
+ -webkit-user-select: none;
17
+ -moz-user-select: none;
18
+ user-select: none;
19
+ transition: all 100ms ease-in-out; }
20
+ .filerobot-common-BaseButton span[role='container'] {
21
+ z-index: 4;
22
+ display: flex;
23
+ align-items: center; }
24
+ @media (max-width: 636px) {
25
+ .filerobot-common-BaseButton {
26
+ min-width: 32px;
27
+ min-height: 28px;
28
+ padding: 2px 6px; } }
29
+ @media (max-width: 636px) {
30
+ .filerobot-common-BaseButton span:not[role='container'] {
31
+ display: none; } }
32
+ .filerobot-common-BaseButton:before {
33
+ content: '';
34
+ position: absolute;
35
+ width: 0;
36
+ height: 100%;
37
+ background: #d9dde0;
38
+ opacity: 0;
39
+ border-radius: 15px 2px 15px 5px;
40
+ transition: width 0.07s ease-in-out, border-radius 0.15s ease-in-out; }
41
+ .filerobot-common-BaseButton:not(:disabled):active {
42
+ opacity: 1; }
43
+ .filerobot-common-BaseButton:not(:disabled):active:before {
44
+ opacity: 1;
45
+ border-radius: inherit;
46
+ width: 100%; }
47
+ .filerobot-common-BaseButton:disabled {
48
+ color: #bbb;
49
+ fill: #bbb;
50
+ cursor: not-allowed;
51
+ opacity: 0.8;
52
+ background: rgba(79, 98, 118, 0.7); }
53
+ .filerobot-common-BaseButton:disabled *, .filerobot-common-BaseButton:disabled:before {
54
+ background: none;
55
+ fill: currentColor;
56
+ color: currentColor; }
57
+
58
+ .filerobot-common-BaseButton-auto:not(disabled) :hover,
59
+ .filerobot-common-BaseButton-auto:not(disabled) :focus {
60
+ background: #EFF3F6; }
61
+ .filerobot-common-BaseButton-auto:not(disabled) :hover *,
62
+ .filerobot-common-BaseButton-auto:not(disabled) :focus * {
63
+ color: #5D6D7E;
64
+ fill: #5D6D7E; }
65
+
66
+ .filerobot-common-BaseButton-transparent {
67
+ background: transparent;
68
+ color: #5D6D7E; }
69
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover, .filerobot-common-BaseButton-transparent:not(:disabled):focus {
70
+ background: #EFF3F6; }
71
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover svg *, .filerobot-common-BaseButton-transparent:not(:disabled):focus svg * {
72
+ color: #5D6D7E;
73
+ fill: #5D6D7E; }
74
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover *, .filerobot-common-BaseButton-transparent:not(:disabled):focus * {
75
+ color: #5D6D7E; }
76
+
77
+ .filerobot-common-BaseButton-primary {
78
+ color: #fff;
79
+ background: #4D4E4E; }
80
+ .filerobot-common-BaseButton-primary:not(:disabled):hover {
81
+ filter: brightness(1.1); }
82
+
83
+ .filerobot-common-BaseButton-accent {
84
+ color: #fff;
85
+ background: #6879EB; }
86
+ .filerobot-common-BaseButton-accent:not(:disabled):hover {
87
+ filter: brightness(1.1); }
88
+ .filerobot-common-BaseButton-accent:before {
89
+ background: #4958BC; }
90
+
91
+ .filerobot-common-BaseButton-secondary {
92
+ color: #fff;
93
+ background: #768184; }
94
+ .filerobot-common-BaseButton-secondary:not(:disabled):hover {
95
+ filter: brightness(1.1); }
96
+
97
+ .filerobot-common-BaseButton-activeSecondary {
98
+ color: #5D6D7E;
99
+ background: #E9EEF2; }
100
+
101
+ .filerobot-common-BaseButton-small {
102
+ font-size: 12px;
103
+ padding: 2px 6px; }
104
+ .filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton img {
105
+ min-height: 12px;
106
+ min-width: 12px;
107
+ max-height: 12px;
108
+ max-width: 12px; }
109
+ .filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton span:not([role='container']) {
110
+ margin-left: 4px; }
111
+
112
+ .filerobot-common-BaseButton-medium {
113
+ font-size: 15px;
114
+ line-height: 16px; }
115
+ .filerobot-common-BaseButton-medium.filerobot-common-LabeledIconButton img {
116
+ min-height: 12px;
117
+ min-width: 12px;
118
+ max-height: 12px;
119
+ max-width: 12px; }
120
+
121
+ .filerobot-common-BaseButton-large {
122
+ font-size: 17px;
123
+ padding: 8px 14px; }
124
+ .filerobot-common-BaseButton-large.filerobot-common-LabeledIconButton img {
125
+ min-height: 16px;
126
+ min-width: 16px;
127
+ max-height: 16px;
128
+ max-width: 16px; }
129
+
130
+ .filerobot-common-BaseButton-fullWidth {
131
+ font-size: 17px;
132
+ width: 100%; }
133
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton svg,
134
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton img {
135
+ min-height: 16px;
136
+ min-width: 16px;
137
+ max-height: 16px;
138
+ max-width: 16px; }
139
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton span:not([role='container']) {
140
+ margin-left: 8px; }
141
+
142
+ .filerobot-common-LabeledIconButton-label {
143
+ margin-left: 4px; }
144
+
145
+ .filerobot-common-BadgeButton {
146
+ padding: 8px 12px;
147
+ margin-right: 4px; }
148
+ .filerobot-common-BadgeButton .filerobot-common-BadgeButton-badgeContent {
149
+ border-radius: 50%;
150
+ color: #6879EB;
151
+ background: #fff;
152
+ font-weight: 500;
153
+ margin-left: 4px;
154
+ font-size: 10px;
155
+ width: 14px;
156
+ height: 14px;
157
+ display: inline-flex;
158
+ justify-content: center;
159
+ align-items: center; }
160
+ .filerobot-common-BadgeButton-activeSecondary .filerobot-common-BadgeButton-badgeContent {
161
+ color: #fff;
162
+ background: #5D6D7E; }
163
+
164
+ .filerobot-common-BackCloseButton {
165
+ display: flex;
166
+ align-items: center; }
167
+
168
+ .filerobot-common-BackCloseButton-button {
169
+ padding: 6px; }
170
+
171
+ .filerobot-common-BackCloseButton-buttonMargin {
172
+ margin: 0 6px; }
173
+
174
+ .filerobot-common-BackCloseButton-divider {
175
+ height: 22px; }
176
+
177
+ .filerobot-common-BackdropOverlay {
178
+ position: fixed;
179
+ left: 0;
180
+ top: 0;
181
+ bottom: 0;
182
+ right: 0;
183
+ z-index: 1199; }
184
+
185
+ .filerobot-common-verticalDivider {
186
+ background: #DFE7ED;
187
+ width: 1px; }
188
+
189
+ .filerobot-common-Radio-wrapper {
190
+ display: inline-flex;
191
+ cursor: pointer;
192
+ align-items: center;
193
+ padding: 8px 0; }
194
+ .filerobot-common-Radio-wrapper:first-child {
195
+ padding-top: 0; }
196
+ .filerobot-common-Radio-wrapper:last-child {
197
+ padding-bottom: 0; }
198
+
199
+ .filerobot-common-Radio {
200
+ display: inline-block;
201
+ padding-right: 8px; }
202
+
203
+ .filerobot-common-Radio-label {
204
+ font-size: 16px;
205
+ line-height: 18px;
206
+ color: #37414B; }
207
+
208
+ .filerobot-common-FormGroup:not(:last-child) {
209
+ margin-bottom: 16px; }
210
+
211
+ .filerobot-common-FormControl-inline {
212
+ display: flex; }
213
+
214
+ .filerobot-common-FormControl-with-hint {
215
+ margin-bottom: 0; }
216
+
217
+ .filerobot-common-FormControl-error {
218
+ color: #E85B46; }
219
+ .filerobot-common-FormControl-error .filerobot-common-InputLabel,
220
+ .filerobot-common-FormControl-error .filerobot-common-FormHelperText,
221
+ .filerobot-common-FormControl-error .SfxLabel-root,
222
+ .filerobot-common-FormControl-error .SfxFormHint-root {
223
+ color: #E85B46; }
224
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root,
225
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea,
226
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select,
227
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input,
228
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root {
229
+ color: #E85B46;
230
+ border-color: #E85B46;
231
+ background: #fff;
232
+ outline-color: #E85B46; }
233
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus-within, .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus, .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:hover,
234
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:focus-within,
235
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:focus,
236
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:hover,
237
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:focus-within,
238
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:focus,
239
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:hover,
240
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:focus-within,
241
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:focus,
242
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:hover,
243
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus-within,
244
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus,
245
+ .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:hover {
246
+ border: 1px solid #E85B46;
247
+ outline: none; }
248
+
249
+ .filerobot-common-InputLabel {
250
+ display: flex;
251
+ align-items: center;
252
+ margin-bottom: 3px;
253
+ font-size: 12px;
254
+ font-weight: 400;
255
+ color: #768184; }
256
+
257
+ .filerobot-common-FormHelperText {
258
+ margin-top: 3px;
259
+ font-size: 10px;
260
+ color: #768184; }
261
+ .filerobot-common-FormHelperText-medium {
262
+ font-size: 14px; }
263
+ .filerobot-common-FormHelperText-no-margin {
264
+ margin: 0; }
265
+
266
+ .filerobot-common-autoSuggest {
267
+ position: relative; }
268
+ .filerobot-common-autoSuggest-list-wrapper {
269
+ position: absolute;
270
+ z-index: 11111111111111; }
271
+
272
+ .suggestions-list {
273
+ border: 1px solid #ddd;
274
+ border-radius: 2px;
275
+ list-style: none;
276
+ margin-top: 0;
277
+ margin-left: 125px;
278
+ padding-left: 0;
279
+ font-size: 14px;
280
+ background-color: #fff;
281
+ max-height: 200px;
282
+ overflow-y: scroll;
283
+ overflow-x: hidden; }
284
+ .suggestions-list li {
285
+ padding: 0.5rem;
286
+ font-size: 1rem; }
287
+
288
+ .suggestions-tags {
289
+ display: inline-flex;
290
+ flex-wrap: wrap;
291
+ margin: 0;
292
+ padding: 0;
293
+ width: 100%;
294
+ list-style: none; }
295
+ .suggestions-tags li {
296
+ position: relative;
297
+ align-items: center;
298
+ margin: 0 8px 8px 0;
299
+ padding: 4px 12px;
300
+ border-radius: 2px;
301
+ border: 1px dashed #5D6D7E;
302
+ background: transparent;
303
+ color: #5D6D7E;
304
+ display: flex;
305
+ font-family: 'Roboto';
306
+ font-size: 14px;
307
+ line-height: 16.4px;
308
+ font-weight: 400;
309
+ list-style: none;
310
+ -webkit-user-select: none;
311
+ -moz-user-select: none;
312
+ user-select: none;
313
+ max-height: 24px; }
314
+ .suggestions-tags li:hover .filerobot-c-icon {
315
+ display: block; }
316
+ .suggestions-tags li .filerobot-c-icon {
317
+ display: none;
318
+ position: absolute;
319
+ top: 3px;
320
+ right: 3px;
321
+ width: 6px;
322
+ height: 6px;
323
+ color: #fff; }
324
+ .suggestions-tags li button {
325
+ align-items: center;
326
+ -webkit-appearance: none;
327
+ -moz-appearance: none;
328
+ appearance: none;
329
+ background: transparent;
330
+ border: none;
331
+ border-radius: 50%;
332
+ color: #768184;
333
+ cursor: pointer;
334
+ display: inline-flex;
335
+ font-size: 12px;
336
+ height: 15px;
337
+ justify-content: center;
338
+ line-height: 0;
339
+ margin-left: 8px;
340
+ padding: 0;
341
+ transform: rotate(45deg);
342
+ width: 15px; }
343
+
344
+ .no-suggestions {
345
+ color: #999;
346
+ padding: 0.5rem; }
347
+
348
+ .suggestions-title {
349
+ display: flex;
350
+ align-items: center;
351
+ font-size: 12px;
352
+ font-weight: 400;
353
+ padding: 4px 0; }
354
+ .suggestions-title svg {
355
+ margin-right: 4px; }
356
+
357
+ .post-upload-suggestion {
358
+ margin-left: 0;
359
+ width: 100%; }
360
+
361
+ .suggestion-active,
362
+ .suggestions li:hover {
363
+ cursor: pointer;
364
+ background: #5D6D7E;
365
+ color: #fff;
366
+ border: 1px solid #5D6D7E; }
367
+
368
+ .suggestion-loading {
369
+ display: flex;
370
+ height: 100px;
371
+ font-size: 1rem;
372
+ justify-content: center;
373
+ align-items: center; }
374
+
375
+ .filerobot-common-Checkbox-wrapper {
376
+ cursor: pointer;
377
+ display: flex;
378
+ align-items: center; }
379
+
380
+ .filerobot-common-Checkbox {
381
+ display: flex;
382
+ align-items: center;
383
+ justify-content: center;
384
+ min-height: 16px;
385
+ max-height: 16px;
386
+ min-width: 16px;
387
+ max-width: 16px;
388
+ margin-right: 12px;
389
+ background: #F8FAFB;
390
+ border: 1px solid #DFE7ED;
391
+ border-radius: 1px;
392
+ outline: none;
393
+ text-align: center;
394
+ cursor: pointer; }
395
+
396
+ .filerobot-common-Checkbox-label {
397
+ font-size: 12px;
398
+ line-height: 14px;
399
+ max-width: calc(100% - 16px);
400
+ overflow: hidden;
401
+ white-space: nowrap;
402
+ text-overflow: ellipsis; }
403
+
404
+ .filerobot-common-Tabs-wrapper {
405
+ display: flex;
406
+ width: 92%;
407
+ padding-left: 12px; }
408
+
409
+ .filerobot-common-Tabs {
410
+ display: flex;
411
+ border-bottom: 1px solid #DFE7ED;
412
+ border-top: 1px solid #DFE7ED;
413
+ background-color: #F8FAFB;
414
+ align-items: center; }
415
+ .filerobot-common-Tabs-panel {
416
+ position: relative;
417
+ margin-bottom: -1px;
418
+ font-size: 12px; }
419
+ .filerobot-common-Tabs-panel > input[type="radio"] {
420
+ position: absolute;
421
+ left: -200vw; }
422
+ .filerobot-common-Tabs-panel .bottom-line {
423
+ display: none;
424
+ position: absolute;
425
+ background: #6879EB;
426
+ bottom: 0;
427
+ left: 7px;
428
+ right: 7px;
429
+ height: 1px; }
430
+ .filerobot-common-Tabs-panel > label {
431
+ color: #5D6D7E;
432
+ position: relative;
433
+ display: flex;
434
+ padding: 7px;
435
+ border: 1px solid transparent;
436
+ border-top-left-radius: .10rem;
437
+ border-top-right-radius: .10rem;
438
+ cursor: pointer; }
439
+ .filerobot-common-Tabs-panel > label > svg {
440
+ margin-right: 8px;
441
+ height: 12px;
442
+ width: 12px; }
443
+ .filerobot-common-Tabs-panel:first-child > label {
444
+ padding-left: 0; }
445
+ .filerobot-common-Tabs-panel:first-child > label + .bottom-line {
446
+ left: 0; }
447
+ .filerobot-common-Tabs-panel > input:checked + label {
448
+ color: #6879EB; }
449
+ .filerobot-common-Tabs-panel > input:checked + label + .bottom-line {
450
+ display: block; }
451
+ .filerobot-common-Tabs .subtabs-wrapper {
452
+ padding: 12px 0; }
453
+
454
+ .filerobot-common-inputAndLabel {
455
+ margin-bottom: 16px; }
456
+ .filerobot-common-inputAndLabel-form-group {
457
+ margin-bottom: 19px; }
458
+ .filerobot-common-inputAndLabel-input-header {
459
+ font-size: 14px;
460
+ line-height: 16px;
461
+ font-weight: 400;
462
+ margin-bottom: 3px; }
463
+ .filerobot-common-inputAndLabel-header-links-label {
464
+ display: flex;
465
+ align-items: center;
466
+ color: #768A9F; }
467
+ .filerobot-common-inputAndLabel-input-text-wrapper {
468
+ position: relative;
469
+ width: 100%; }
470
+ .filerobot-common-inputAndLabel-input-text-wrapper input[type="time"]::-webkit-calendar-picker-indicator {
471
+ opacity: 0;
472
+ display: block;
473
+ width: 20px;
474
+ height: 20px;
475
+ z-index: 2;
476
+ margin-top: 2px;
477
+ cursor: pointer; }
478
+ .filerobot-common-inputAndLabel-input-text-wrapper-disable-icon input[type="date"]::-webkit-calendar-picker-indicator {
479
+ display: none; }
480
+ .filerobot-common-inputAndLabel-input-icon {
481
+ position: absolute;
482
+ top: 0;
483
+ right: 0;
484
+ margin: 6px;
485
+ cursor: pointer; }
486
+ .filerobot-common-inputAndLabel-input-text {
487
+ width: 100%;
488
+ font-size: 16px;
489
+ line-height: 18px;
490
+ padding: 10px 16px;
491
+ background-color: #fff;
492
+ border: 1px solid #CCD6DE;
493
+ border-radius: 4px;
494
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
495
+ cursor: auto;
496
+ font-family: 'Roboto';
497
+ font-weight: 400; }
498
+ .filerobot-common-inputAndLabel-input-text:focus {
499
+ background-color: #FFFFFF !important;
500
+ border: 1px solid #6879eb;
501
+ outline: none; }
502
+ .filerobot-common-inputAndLabel-input-text:hover {
503
+ background-color: #eff3f6; }
504
+
505
+ .filerobot-common-Spinner {
506
+ display: flex;
507
+ align-items: center;
508
+ justify-content: center;
509
+ margin-right: 6px; }
510
+ .filerobot-common-Spinner svg {
511
+ animation: rotating-spinner 2s linear infinite; }
512
+
513
+ .filerobot-common-Spinner-noMargin {
514
+ margin: 0; }
515
+
516
+ .filerobot-common-Spinner-filledCentered {
517
+ width: 100%;
518
+ height: 100%;
519
+ margin: 0;
520
+ padding: 8px; }
521
+
522
+ .filerobot-common-Spinner-spinnerContainer {
523
+ height: 100%;
524
+ width: 100%;
525
+ overflow: hidden;
526
+ display: flex;
527
+ justify-content: center;
528
+ align-items: center;
529
+ padding: 2px; }
530
+ .filerobot-common-Spinner-spinnerContainer svg {
531
+ width: 30px;
532
+ height: 30px; }
533
+
534
+ @keyframes rotating-spinner {
535
+ from {
536
+ transform: rotate(0deg); }
537
+ to {
538
+ transform: rotate(360deg); } }
539
+
540
+ .filerobot-common-ItemHoverTopOptions {
541
+ position: absolute;
542
+ top: 4%;
543
+ right: 3%;
544
+ bottom: 0;
545
+ display: flex;
546
+ visibility: hidden;
547
+ z-index: 3;
548
+ width: 100%;
549
+ justify-content: flex-end;
550
+ padding: 2px 4px 2px 24px;
551
+ align-items: flex-start;
552
+ pointer-events: none;
553
+ border-radius: inherit;
554
+ transition: all 100ms ease-in-out; }
555
+ .filerobot-common-ItemHoverTopOptions button {
556
+ min-width: 12px;
557
+ min-height: 16px;
558
+ padding: 4px 7px;
559
+ height: auto;
560
+ pointer-events: auto;
561
+ background: rgba(79, 98, 118, 0.7);
562
+ width: 24px;
563
+ height: 24px;
564
+ border-radius: 50%;
565
+ margin: 0 2px;
566
+ transition: all 100ms ease-in-out; }
567
+ .filerobot-common-ItemHoverTopOptions button svg * {
568
+ color: #fff;
569
+ fill: #fff; }
570
+ .filerobot-common-ItemHoverTopOptions button:hover {
571
+ background: #37414b; }
572
+ .filerobot-common-ItemHoverTopOptions button:hover svg * {
573
+ fill: #DFE7ED;
574
+ color: #DFE7ED; }
575
+ *:hover > .filerobot-common-ItemHoverTopOptions {
576
+ visibility: visible; }
577
+ .filerobot-common-ItemHoverTopOptions-disableHover {
578
+ display: flex;
579
+ visibility: visible; }
580
+ .filerobot-common-ItemHoverTopOptions-disableHover:hover {
581
+ background: none; }
582
+
583
+ .filerobot-common-DropFilesHereHint {
584
+ visibility: hidden;
585
+ position: absolute;
586
+ top: 0;
587
+ bottom: 0;
588
+ right: 0;
589
+ pointer-events: none;
590
+ left: 0;
591
+ width: 100%;
592
+ height: 100%;
593
+ z-index: 2000;
594
+ text-align: center;
595
+ color: #768184;
596
+ font-size: 24px;
597
+ line-height: 28px;
598
+ background-color: rgba(255, 255, 255, 0.9); }
599
+ .filerobot-common-DropFilesHereHint-inner {
600
+ display: flex;
601
+ flex-direction: column;
602
+ align-items: center;
603
+ justify-content: center;
604
+ position: absolute;
605
+ top: 7px;
606
+ right: 7px;
607
+ bottom: 7px;
608
+ left: 7px;
609
+ border: 1px dashed #5282DB;
610
+ border-radius: 3px; }
611
+ .filerobot-common-DropFilesHereHint-inner svg {
612
+ margin-bottom: 25px;
613
+ animation: 2s moving ease infinite; }
614
+
615
+ @keyframes moving {
616
+ 0%,
617
+ 100% {
618
+ transform: scale(1) translate(0, 0); }
619
+ 50% {
620
+ transform: scale(1.1) translate(0, -10px); } }
621
+ [data-filerobot-theme="dark"] .filerobot-common-DropFilesHereHint {
622
+ color: #bbb;
623
+ border-color: #02baf2;
624
+ background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%2302BAF2' fillRule='nonzero'/%3E%3C/svg%3E"); }
625
+
626
+ .filerobot-common-DropFilesTarget * {
627
+ pointer-events: none; }
628
+
629
+ .filerobot-common-DropFilesHereHint-visible {
630
+ visibility: visible; }
631
+
632
+ .filerobot-common-Search .filerobot-c-separator {
633
+ height: 70%;
634
+ margin: 0; }
635
+
636
+ .filerobot-common-Search-searchButton {
637
+ height: 100%;
638
+ padding: 12px;
639
+ padding-top: 10px;
640
+ cursor: pointer; }
641
+
642
+ .filerobot-common-Search {
643
+ display: flex;
644
+ position: relative;
645
+ height: 40px;
646
+ background: #fff;
647
+ border: 1px solid #DFE7ED;
648
+ border-radius: 4px;
649
+ align-items: center;
650
+ white-space: nowrap; }
651
+
652
+ .filerobot-common-Search:focus-within,
653
+ .filerobot-common-Search:active {
654
+ background-color: white !important; }
655
+ .filerobot-common-Search:focus-within .filerobot-common-Search-searchInput,
656
+ .filerobot-common-Search:active .filerobot-common-Search-searchInput {
657
+ background-color: white !important; }
658
+
659
+ .filerobot-common-Search-searchInput {
660
+ height: -moz-fit-content;
661
+ height: fit-content;
662
+ flex-grow: 1;
663
+ box-sizing: border-box;
664
+ display: flex;
665
+ align-items: center;
666
+ font-size: 14px;
667
+ outline: none;
668
+ border: none;
669
+ min-width: 24px;
670
+ width: 100%;
671
+ margin: 6px 0px; }
672
+ .filerobot-common-Search-searchInput button {
673
+ height: 100%; }
674
+ .filerobot-common-Search-searchInput .filerobot-common-TopBar-input-fragment {
675
+ display: inherit;
676
+ height: inherit;
677
+ width: inherit; }
678
+ .filerobot-common-Search-searchInput:focus {
679
+ outline: none; }
680
+ [data-filerobot-theme="dark"] .filerobot-common-Search-searchInput {
681
+ background-color: #1f1f1f; }
682
+ [data-filerobot-theme="dark"] .filerobot-common-Search-searchInput {
683
+ color: #fff; }
684
+ .filerobot-common-Search-searchInput::-moz-placeholder {
685
+ font-size: 14px;
686
+ font-style: normal;
687
+ font-weight: 400;
688
+ color: #A9B6C2; }
689
+ .filerobot-common-Search-searchInput::placeholder {
690
+ font-size: 14px;
691
+ font-style: normal;
692
+ font-weight: 400;
693
+ color: #A9B6C2; }
694
+
695
+ .filerobot-common-Search-searchAndAppendedOptions {
696
+ display: flex;
697
+ align-items: center;
698
+ height: 100%; }
699
+
700
+ .filerobot-common-Search-searchAndFiltersInputs {
701
+ position: relative;
702
+ display: flex;
703
+ align-items: center;
704
+ height: 100%;
705
+ max-height: 100%;
706
+ flex-grow: 1;
707
+ overflow: auto hidden;
708
+ white-space: nowrap;
709
+ -ms-overflow-style: none; }
710
+
711
+ .filerobot-common-PoweredBy-label {
712
+ border: 1px solid #DFE7ED;
713
+ border-bottom: 0;
714
+ background-color: #F8FAFB;
715
+ border-radius: 0;
716
+ color: #778285;
717
+ position: absolute;
718
+ right: 0;
719
+ bottom: 0;
720
+ padding: 4px 14px;
721
+ border-top-left-radius: 40px;
722
+ font-size: 10px;
723
+ -webkit-user-select: none;
724
+ -moz-user-select: none;
725
+ user-select: none;
726
+ z-index: 1001;
727
+ margin-right: -1px; }
728
+
729
+ .filerobot-common-secondaryTxt {
730
+ color: #939393;
731
+ font-size: 12px;
732
+ line-height: 14px; }
733
+
734
+ .filerobot-TransitionWrapper {
735
+ --translateX: 0;
736
+ --translateY-shown: 0;
737
+ --translateY-hidden: -105%;
738
+ display: none;
739
+ position: absolute;
740
+ top: 0;
741
+ background: #fff;
742
+ overflow-y: hidden; }
743
+ .filerobot-TransitionWrapper.--applied {
744
+ display: block;
745
+ z-index: 1002;
746
+ height: 100%;
747
+ width: 100%; }
748
+
749
+ .filerobot-transition-slideDownUp-enter {
750
+ opacity: 0.01;
751
+ transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
752
+ transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out; }
753
+
754
+ .filerobot-transition-slideDownUp-enter.filerobot-transition-slideDownUp-enter-active {
755
+ opacity: 1;
756
+ transform: translate3d(var(--translateX), var(--translateY-shown), 0); }
757
+
758
+ .filerobot-transition-slideDownUp-leave {
759
+ opacity: 1;
760
+ transform: translate3d(var(--translateX), var(--translateY-shown), 0);
761
+ transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out; }
762
+
763
+ .filerobot-transition-slideDownUp-leave.filerobot-transition-slideDownUp-leave-active {
764
+ opacity: 0.01;
765
+ transform: translate3d(var(--translateX), var(--translateY-hidden), 0); }
766
+
767
+ .filerobot-common-datePicker {
768
+ position: relative; }
769
+ .filerobot-common-datePicker * {
770
+ -webkit-touch-callout: none;
771
+ /* iOS Safari */
772
+ -webkit-user-select: none;
773
+ /* Chrome/Safari/Opera */
774
+ /* Konqueror */
775
+ -moz-user-select: none;
776
+ /* Firefox */
777
+ /* Internet Explorer/Edge */
778
+ user-select: none;
779
+ /* Non-prefixed version, currently */ }
780
+ .filerobot-common-datePicker-overlay {
781
+ position: absolute;
782
+ top: 0;
783
+ left: 0;
784
+ right: 0;
785
+ bottom: 0; }
786
+ .filerobot-common-datePicker-input {
787
+ overflow: hidden; }
788
+ .filerobot-common-datePicker-input input {
789
+ cursor: pointer; }
790
+ .filerobot-common-datePicker-input input:focus {
791
+ outline: none; }
792
+ .filerobot-common-datePicker-container {
793
+ position: absolute;
794
+ width: 215px;
795
+ min-height: 200px;
796
+ max-height: 240px;
797
+ background: #fff;
798
+ box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
799
+ border-radius: 4px;
800
+ overflow: hidden;
801
+ padding: 12px 12px;
802
+ z-index: 11111111111111; }
803
+ .filerobot-common-datePicker-container-head {
804
+ display: flex;
805
+ align-items: center; }
806
+ .filerobot-common-datePicker-container-head-body {
807
+ float: left;
808
+ width: 120px;
809
+ height: 100%; }
810
+ .filerobot-common-datePicker-container-head-body-year {
811
+ width: 100%;
812
+ height: 30px;
813
+ font-size: 27px;
814
+ color: #5D6D7E;
815
+ font-weight: 200px;
816
+ text-align: center;
817
+ float: left; }
818
+ .filerobot-common-datePicker-container-head-body-month {
819
+ float: left;
820
+ width: 100%;
821
+ height: 15px;
822
+ font-size: 13px;
823
+ color: #5D6D7E;
824
+ font-weight: 200px;
825
+ text-align: center; }
826
+ .filerobot-common-datePicker-container-head-button {
827
+ width: 45px;
828
+ height: 100%;
829
+ box-sizing: border-box;
830
+ position: relative; }
831
+ .filerobot-common-datePicker-container-head-button-inner {
832
+ float: left;
833
+ height: 25px;
834
+ width: 25px;
835
+ background: #f4f4f4;
836
+ border-radius: 2px;
837
+ line-height: 35px;
838
+ text-align: center;
839
+ position: absolute;
840
+ top: 50%;
841
+ left: 50%;
842
+ margin-left: -17px;
843
+ margin-top: -17px; }
844
+ .filerobot-common-datePicker-container-head-button-inner:hover > span {
845
+ border-color: #555 !important; }
846
+ .filerobot-common-datePicker-container-head-button-inner:hover {
847
+ cursor: pointer;
848
+ background: #eee; }
849
+ .filerobot-common-datePicker-calendar {
850
+ width: 100%;
851
+ height: 100%; }
852
+ .filerobot-common-datePicker-calendar-body,
853
+ .filerobot-common-datePicker-calendar-day span, .filerobot-common-datePicker-calendar-day, .filerobot-common-datePicker-calendar-day-container {
854
+ position: relative;
855
+ display: block;
856
+ float: left;
857
+ box-sizing: border-box; }
858
+ .filerobot-common-datePicker-calendar-body {
859
+ height: 250px;
860
+ width: 100%; }
861
+ .filerobot-common-datePicker-calendar-day {
862
+ width: 14%;
863
+ height: 10%; }
864
+ .filerobot-common-datePicker-calendar-day-container {
865
+ width: 100%;
866
+ height: 100%;
867
+ font-size: 12px;
868
+ font-weight: 300;
869
+ color: #37414B;
870
+ text-align: center; }
871
+ .filerobot-common-datePicker-calendar-day-container span {
872
+ width: 25px;
873
+ height: 25px;
874
+ margin-top: -15px;
875
+ margin-left: -15px;
876
+ left: 50%;
877
+ top: 50%;
878
+ font-weight: 400;
879
+ border-radius: 2px;
880
+ line-height: 30px; }
881
+ .filerobot-common-datePicker-calendar-day-container span:hover {
882
+ cursor: pointer;
883
+ background: #E9EEF2; }
884
+ .filerobot-common-datePicker-calendar-day.disabled {
885
+ pointer-events: none; }
886
+ .filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
887
+ color: #ddd; }
888
+ .filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
889
+ background: #fff !important; }
890
+ .filerobot-common-datePicker-calendar-day.highlight .filerobot-common-datePicker-calendar-day-container span {
891
+ background: #5D6D7E; }
892
+ .filerobot-common-datePicker-calendar-day.highlight-green .filerobot-common-datePicker-calendar-day-container span {
893
+ background: #4958BC;
894
+ color: #fff; }
895
+ .filerobot-common-datePicker-calendar-head {
896
+ display: flex;
897
+ height: 20px;
898
+ width: 100%;
899
+ margin-top: 2px;
900
+ margin-bottom: 5px; }
901
+ .filerobot-common-datePicker-calendar-head-name {
902
+ width: 14.285%;
903
+ height: 30px;
904
+ line-height: 30px;
905
+ font-weight: 700;
906
+ color: #5D6D7E;
907
+ font-size: 9px;
908
+ text-align: center; }
909
+
910
+ .mdpchbi-right-arrows:after,
911
+ .mdpchbi-left-arrows:after,
912
+ .mdpchbi-right-arrow,
913
+ .mdpchbi-right-arrows,
914
+ .mdpchbi-left-arrow,
915
+ .mdpchbi-left-arrows {
916
+ display: block;
917
+ float: left;
918
+ width: 6px;
919
+ height: 6px;
920
+ border-left: 2px solid #888;
921
+ border-bottom: 2px solid #888;
922
+ position: absolute; }
923
+
924
+ .mdpchbi-right-arrow,
925
+ .mdpchbi-right-arrows,
926
+ .mdpchbi-left-arrow,
927
+ .mdpchbi-left-arrows {
928
+ transform: rotate(45deg);
929
+ left: 50%;
930
+ top: 50%;
931
+ margin-left: -2px;
932
+ margin-top: -4px; }
933
+
934
+ .mdpchbi-right-arrows,
935
+ .mdpchbi-right-arrow {
936
+ transform: rotate(225deg);
937
+ margin-left: -4px; }
938
+
939
+ .mdpchbi-right-arrows:after,
940
+ .mdpchbi-left-arrows:after {
941
+ content: ''; }
942
+
943
+ .mdpchbi-left-arrows {
944
+ margin-left: -5px; }
945
+
946
+ .mdpchbi-right-arrows {
947
+ margin-left: -2px; }
948
+
949
+ .mdpchbi-right-arrows:after,
950
+ .mdpchbi-left-arrows:after {
951
+ left: 3px;
952
+ top: -5px; }