@geotab/zenith 3.3.0 → 3.4.0-beta.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 (279) hide show
  1. package/README.md +17 -0
  2. package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +1 -1
  3. package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +0 -39
  4. package/dist/alertRaw/components/alertAnimation.js +8 -4
  5. package/dist/card/card.d.ts +1 -1
  6. package/dist/card/card.js +1 -3
  7. package/dist/card/components/status.js +2 -2
  8. package/dist/chart/barChart/getBarTooltipItems.js +31 -2
  9. package/dist/chart/barChart.js +2 -1
  10. package/dist/chart/utils/getYAxisMeta.d.ts +1 -1
  11. package/dist/chart/utils/getYAxisMeta.js +44 -1
  12. package/dist/checkbox/checkbox.js +3 -3
  13. package/dist/dataGrid/emptySearchList/emptySearchList.d.ts +6 -7
  14. package/dist/dataGrid/emptySearchList/emptySearchList.js +15 -23
  15. package/dist/dateInputRaw/dateInputRaw.d.ts +1 -1
  16. package/dist/dateRangeRaw/dateRangeRaw.d.ts +1 -1
  17. package/dist/dateRangeRaw/utils/dateRangeUtils.d.ts +1 -0
  18. package/dist/dateRangeRaw/utils/dateRangeUtils.js +39 -1
  19. package/dist/dropdownRaw/dropdownRaw.d.ts +1 -1
  20. package/dist/emptyState/emptyState.d.ts +9 -0
  21. package/dist/emptyState/emptyState.js +14 -0
  22. package/dist/emptyState/hooks/useIcon.d.ts +2 -0
  23. package/dist/emptyState/hooks/useIcon.js +17 -0
  24. package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.d.ts +1 -0
  25. package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +28 -3
  26. package/dist/formField/components/formFieldAdditionalInfo.d.ts +12 -0
  27. package/dist/formField/components/formFieldAdditionalInfo.js +10 -0
  28. package/dist/formField/components/formFieldAssistiveError.d.ts +10 -0
  29. package/dist/formField/components/formFieldAssistiveError.js +12 -0
  30. package/dist/formField/components/formFieldCounter.d.ts +6 -0
  31. package/dist/formField/components/formFieldCounter.js +7 -0
  32. package/dist/formField/components/formFieldLoading.d.ts +12 -0
  33. package/dist/formField/components/formFieldLoading.js +16 -0
  34. package/dist/formField/components/formFieldWithLabel.d.ts +8 -11
  35. package/dist/formField/components/formFieldWithLabel.js +21 -3
  36. package/dist/formField/components/formFieldWithoutLabel.d.ts +8 -9
  37. package/dist/formField/components/formFieldWithoutLabel.js +6 -1
  38. package/dist/formField/components/isOldFormFieldComponent.d.ts +2 -0
  39. package/dist/formField/components/isOldFormFieldComponent.js +12 -0
  40. package/dist/formField/components/trailingComponent.d.ts +2 -1
  41. package/dist/formField/components/trailingComponent.js +7 -1
  42. package/dist/formField/formField.d.ts +17 -35
  43. package/dist/formField/formField.js +4 -71
  44. package/dist/formField/hooks/useContainer.d.ts +2 -0
  45. package/dist/formField/hooks/useContainer.js +47 -0
  46. package/dist/formField/hooks/useError.d.ts +1 -1
  47. package/dist/formField/hooks/useFormFieldClasses.d.ts +2 -0
  48. package/dist/formField/hooks/useFormFieldClasses.js +30 -0
  49. package/dist/formField/hooks/useFormFieldProps.d.ts +17 -0
  50. package/dist/formField/hooks/useFormFieldProps.js +37 -0
  51. package/dist/formField/hooks/useTrailing.d.ts +1 -1
  52. package/dist/formField/hooks/useTrailing.js +1 -1
  53. package/dist/formField/hooks/useWidth.d.ts +1 -1
  54. package/dist/formField/types.d.ts +35 -0
  55. package/dist/formField/types.js +2 -0
  56. package/dist/formGroup/components/formGroupList.d.ts +1 -1
  57. package/dist/formGroup/components/formGroupToggle.d.ts +1 -1
  58. package/dist/formGroup/formGroup.d.ts +1 -1
  59. package/dist/formGroup/hooks/useLabelAlign.d.ts +1 -1
  60. package/dist/formGroup/types.d.ts +1 -1
  61. package/dist/formGroup/utils/applyCustomControlClasses.d.ts +1 -1
  62. package/dist/formGroup/utils/applyCustomLabelClasses.d.ts +1 -1
  63. package/dist/formGroup/utils/getControlClasses/getControlClasses.d.ts +1 -1
  64. package/dist/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.d.ts +1 -1
  65. package/dist/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.d.ts +1 -1
  66. package/dist/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.d.ts +1 -1
  67. package/dist/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.d.ts +1 -1
  68. package/dist/formGroup/utils/getLabelClasses/getLabelClasses.d.ts +1 -1
  69. package/dist/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.d.ts +1 -1
  70. package/dist/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.d.ts +1 -1
  71. package/dist/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.d.ts +1 -1
  72. package/dist/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.d.ts +1 -1
  73. package/dist/formGroup/utils/getListClasses.d.ts +1 -1
  74. package/dist/formGroup/utils/getToggleClasses.d.ts +1 -1
  75. package/dist/formGroup/utils/initializeState.d.ts +1 -1
  76. package/dist/formGroup/utils/isTopAlign.d.ts +1 -1
  77. package/dist/formLayout/types.d.ts +1 -1
  78. package/dist/formSection/types.d.ts +1 -1
  79. package/dist/formSection/utils/formSectionProvider.d.ts +1 -1
  80. package/dist/groupButtonRaw/groupButtonRaw.d.ts +1 -1
  81. package/dist/groupsFilterRaw/groupsFilterRaw.d.ts +1 -1
  82. package/dist/groupsFilterRaw/groupsHelper.js +2 -2
  83. package/dist/headerTitle/headerTitle.js +1 -1
  84. package/dist/images/imageAdjustFilter.d.ts +4 -0
  85. package/dist/images/imageAdjustFilter.js +16 -0
  86. package/dist/images/imageNoMatchingAssets.d.ts +4 -0
  87. package/dist/images/imageNoMatchingAssets.js +16 -0
  88. package/dist/index.css +619 -524
  89. package/dist/index.d.ts +6 -2
  90. package/dist/index.js +23 -16
  91. package/dist/inputAdornments/inputAdornments.d.ts +2 -1
  92. package/dist/inputAdornments/inputAdornments.js +2 -2
  93. package/dist/layout/layout.js +11 -7
  94. package/dist/list/itemData/itemData.d.ts +1 -0
  95. package/dist/list/itemData/itemDataInternal.d.ts +2 -1
  96. package/dist/list/itemData/itemDataInternal.js +4 -2
  97. package/dist/list/itemData/itemDataWaiting.d.ts +2 -1
  98. package/dist/list/itemData/itemDataWaiting.js +4 -1
  99. package/dist/list/list.d.ts +13 -4
  100. package/dist/list/list.js +29 -12
  101. package/dist/list/utils/getLoadingItems.d.ts +1 -1
  102. package/dist/list/utils/getLoadingItems.js +4 -4
  103. package/dist/modal/modal.js +7 -0
  104. package/dist/pillExpandable/pillExpandable.d.ts +1 -0
  105. package/dist/pillExpandable/pillExpandable.js +74 -33
  106. package/dist/radioGroupRaw/radioGroupRaw.d.ts +1 -1
  107. package/dist/rangeRaw/rangeRaw.d.ts +1 -1
  108. package/dist/summary/summary.js +0 -1
  109. package/dist/summaryTile/summaryTile.js +2 -2
  110. package/dist/table/children/tableEmpty.d.ts +1 -1
  111. package/dist/table/children/useTableChildren.js +1 -1
  112. package/dist/timePickerRaw/timePickerRaw.d.ts +1 -1
  113. package/dist/tooltip/tooltip.d.ts +15 -4
  114. package/dist/tooltip/tooltip.js +421 -158
  115. package/dist/utils/localization/translations/cs.json +2 -1
  116. package/dist/utils/localization/translations/da-DK.json +2 -1
  117. package/dist/utils/localization/translations/de.json +2 -1
  118. package/dist/utils/localization/translations/en.json +2 -1
  119. package/dist/utils/localization/translations/es.json +3 -2
  120. package/dist/utils/localization/translations/fi-FI.json +2 -1
  121. package/dist/utils/localization/translations/fr-FR.json +2 -1
  122. package/dist/utils/localization/translations/fr.json +3 -2
  123. package/dist/utils/localization/translations/hu-HU.json +2 -1
  124. package/dist/utils/localization/translations/id.json +2 -1
  125. package/dist/utils/localization/translations/it.json +2 -1
  126. package/dist/utils/localization/translations/ja.json +2 -1
  127. package/dist/utils/localization/translations/ko-KR.json +2 -1
  128. package/dist/utils/localization/translations/ms.json +2 -1
  129. package/dist/utils/localization/translations/nb-NO.json +2 -1
  130. package/dist/utils/localization/translations/nl.json +2 -1
  131. package/dist/utils/localization/translations/pl.json +2 -1
  132. package/dist/utils/localization/translations/pt-BR.json +2 -1
  133. package/dist/utils/localization/translations/sk-SK.json +2 -1
  134. package/dist/utils/localization/translations/sv.json +2 -1
  135. package/dist/utils/localization/translations/th.json +2 -1
  136. package/dist/utils/localization/translations/tr.json +2 -1
  137. package/dist/utils/localization/translations/zh-Hans.json +2 -1
  138. package/dist/utils/localization/translations/zh-TW.json +2 -1
  139. package/dist/utils/positioningUtils/calculatePosition.d.ts +1 -1
  140. package/dist/utils/positioningUtils/calculatePosition.js +11 -1
  141. package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +1 -1
  142. package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +0 -39
  143. package/esm/alertRaw/components/alertAnimation.js +8 -4
  144. package/esm/card/card.d.ts +1 -1
  145. package/esm/card/card.js +1 -3
  146. package/esm/card/components/status.js +2 -2
  147. package/esm/chart/barChart/getBarTooltipItems.js +31 -2
  148. package/esm/chart/barChart.js +2 -1
  149. package/esm/chart/utils/getYAxisMeta.d.ts +1 -1
  150. package/esm/chart/utils/getYAxisMeta.js +44 -1
  151. package/esm/checkbox/checkbox.js +3 -3
  152. package/esm/dataGrid/emptySearchList/emptySearchList.d.ts +6 -7
  153. package/esm/dataGrid/emptySearchList/emptySearchList.js +16 -24
  154. package/esm/dateInputRaw/dateInputRaw.d.ts +1 -1
  155. package/esm/dateRangeRaw/dateRangeRaw.d.ts +1 -1
  156. package/esm/dateRangeRaw/utils/dateRangeUtils.d.ts +1 -0
  157. package/esm/dateRangeRaw/utils/dateRangeUtils.js +37 -0
  158. package/esm/dropdownRaw/dropdownRaw.d.ts +1 -1
  159. package/esm/emptyState/emptyState.d.ts +9 -0
  160. package/esm/emptyState/emptyState.js +10 -0
  161. package/esm/emptyState/hooks/useIcon.d.ts +2 -0
  162. package/esm/emptyState/hooks/useIcon.js +10 -0
  163. package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.d.ts +1 -0
  164. package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +29 -4
  165. package/esm/formField/components/formFieldAdditionalInfo.d.ts +12 -0
  166. package/esm/formField/components/formFieldAdditionalInfo.js +6 -0
  167. package/esm/formField/components/formFieldAssistiveError.d.ts +10 -0
  168. package/esm/formField/components/formFieldAssistiveError.js +8 -0
  169. package/esm/formField/components/formFieldCounter.d.ts +6 -0
  170. package/esm/formField/components/formFieldCounter.js +3 -0
  171. package/esm/formField/components/formFieldLoading.d.ts +12 -0
  172. package/esm/formField/components/formFieldLoading.js +12 -0
  173. package/esm/formField/components/formFieldWithLabel.d.ts +8 -11
  174. package/esm/formField/components/formFieldWithLabel.js +21 -3
  175. package/esm/formField/components/formFieldWithoutLabel.d.ts +8 -9
  176. package/esm/formField/components/formFieldWithoutLabel.js +6 -1
  177. package/esm/formField/components/isOldFormFieldComponent.d.ts +2 -0
  178. package/esm/formField/components/isOldFormFieldComponent.js +8 -0
  179. package/esm/formField/components/trailingComponent.d.ts +2 -1
  180. package/esm/formField/components/trailingComponent.js +7 -1
  181. package/esm/formField/formField.d.ts +17 -35
  182. package/esm/formField/formField.js +5 -72
  183. package/esm/formField/hooks/useContainer.d.ts +2 -0
  184. package/esm/formField/hooks/useContainer.js +43 -0
  185. package/esm/formField/hooks/useError.d.ts +1 -1
  186. package/esm/formField/hooks/useFormFieldClasses.d.ts +2 -0
  187. package/esm/formField/hooks/useFormFieldClasses.js +26 -0
  188. package/esm/formField/hooks/useFormFieldProps.d.ts +17 -0
  189. package/esm/formField/hooks/useFormFieldProps.js +33 -0
  190. package/esm/formField/hooks/useTrailing.d.ts +1 -1
  191. package/esm/formField/hooks/useTrailing.js +1 -1
  192. package/esm/formField/hooks/useWidth.d.ts +1 -1
  193. package/esm/formField/types.d.ts +35 -0
  194. package/esm/formField/types.js +1 -0
  195. package/esm/formGroup/components/formGroupList.d.ts +1 -1
  196. package/esm/formGroup/components/formGroupToggle.d.ts +1 -1
  197. package/esm/formGroup/formGroup.d.ts +1 -1
  198. package/esm/formGroup/hooks/useLabelAlign.d.ts +1 -1
  199. package/esm/formGroup/types.d.ts +1 -1
  200. package/esm/formGroup/utils/applyCustomControlClasses.d.ts +1 -1
  201. package/esm/formGroup/utils/applyCustomLabelClasses.d.ts +1 -1
  202. package/esm/formGroup/utils/getControlClasses/getControlClasses.d.ts +1 -1
  203. package/esm/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.d.ts +1 -1
  204. package/esm/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.d.ts +1 -1
  205. package/esm/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.d.ts +1 -1
  206. package/esm/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.d.ts +1 -1
  207. package/esm/formGroup/utils/getLabelClasses/getLabelClasses.d.ts +1 -1
  208. package/esm/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.d.ts +1 -1
  209. package/esm/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.d.ts +1 -1
  210. package/esm/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.d.ts +1 -1
  211. package/esm/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.d.ts +1 -1
  212. package/esm/formGroup/utils/getListClasses.d.ts +1 -1
  213. package/esm/formGroup/utils/getToggleClasses.d.ts +1 -1
  214. package/esm/formGroup/utils/initializeState.d.ts +1 -1
  215. package/esm/formGroup/utils/isTopAlign.d.ts +1 -1
  216. package/esm/formLayout/types.d.ts +1 -1
  217. package/esm/formSection/types.d.ts +1 -1
  218. package/esm/formSection/utils/formSectionProvider.d.ts +1 -1
  219. package/esm/groupButtonRaw/groupButtonRaw.d.ts +1 -1
  220. package/esm/groupsFilterRaw/groupsFilterRaw.d.ts +1 -1
  221. package/esm/groupsFilterRaw/groupsHelper.js +2 -2
  222. package/esm/headerTitle/headerTitle.js +1 -1
  223. package/esm/images/imageAdjustFilter.d.ts +4 -0
  224. package/esm/images/imageAdjustFilter.js +12 -0
  225. package/esm/images/imageNoMatchingAssets.d.ts +4 -0
  226. package/esm/images/imageNoMatchingAssets.js +12 -0
  227. package/esm/index.d.ts +6 -2
  228. package/esm/index.js +4 -1
  229. package/esm/inputAdornments/inputAdornments.d.ts +2 -1
  230. package/esm/inputAdornments/inputAdornments.js +2 -2
  231. package/esm/layout/layout.js +11 -7
  232. package/esm/list/itemData/itemData.d.ts +1 -0
  233. package/esm/list/itemData/itemDataInternal.d.ts +2 -1
  234. package/esm/list/itemData/itemDataInternal.js +4 -2
  235. package/esm/list/itemData/itemDataWaiting.d.ts +2 -1
  236. package/esm/list/itemData/itemDataWaiting.js +4 -1
  237. package/esm/list/list.d.ts +13 -4
  238. package/esm/list/list.js +29 -12
  239. package/esm/list/utils/getLoadingItems.d.ts +1 -1
  240. package/esm/list/utils/getLoadingItems.js +4 -4
  241. package/esm/modal/modal.js +7 -0
  242. package/esm/pillExpandable/pillExpandable.d.ts +1 -0
  243. package/esm/pillExpandable/pillExpandable.js +74 -33
  244. package/esm/radioGroupRaw/radioGroupRaw.d.ts +1 -1
  245. package/esm/rangeRaw/rangeRaw.d.ts +1 -1
  246. package/esm/summary/summary.js +0 -1
  247. package/esm/summaryTile/summaryTile.js +2 -2
  248. package/esm/table/children/tableEmpty.d.ts +1 -1
  249. package/esm/table/children/useTableChildren.js +1 -1
  250. package/esm/timePickerRaw/timePickerRaw.d.ts +1 -1
  251. package/esm/tooltip/tooltip.d.ts +15 -4
  252. package/esm/tooltip/tooltip.js +388 -138
  253. package/esm/utils/localization/translations/cs.json +2 -1
  254. package/esm/utils/localization/translations/da-DK.json +2 -1
  255. package/esm/utils/localization/translations/de.json +2 -1
  256. package/esm/utils/localization/translations/en.json +2 -1
  257. package/esm/utils/localization/translations/es.json +3 -2
  258. package/esm/utils/localization/translations/fi-FI.json +2 -1
  259. package/esm/utils/localization/translations/fr-FR.json +2 -1
  260. package/esm/utils/localization/translations/fr.json +3 -2
  261. package/esm/utils/localization/translations/hu-HU.json +2 -1
  262. package/esm/utils/localization/translations/id.json +2 -1
  263. package/esm/utils/localization/translations/it.json +2 -1
  264. package/esm/utils/localization/translations/ja.json +2 -1
  265. package/esm/utils/localization/translations/ko-KR.json +2 -1
  266. package/esm/utils/localization/translations/ms.json +2 -1
  267. package/esm/utils/localization/translations/nb-NO.json +2 -1
  268. package/esm/utils/localization/translations/nl.json +2 -1
  269. package/esm/utils/localization/translations/pl.json +2 -1
  270. package/esm/utils/localization/translations/pt-BR.json +2 -1
  271. package/esm/utils/localization/translations/sk-SK.json +2 -1
  272. package/esm/utils/localization/translations/sv.json +2 -1
  273. package/esm/utils/localization/translations/th.json +2 -1
  274. package/esm/utils/localization/translations/tr.json +2 -1
  275. package/esm/utils/localization/translations/zh-Hans.json +2 -1
  276. package/esm/utils/localization/translations/zh-TW.json +2 -1
  277. package/esm/utils/positioningUtils/calculatePosition.d.ts +1 -1
  278. package/esm/utils/positioningUtils/calculatePosition.js +11 -1
  279. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -1794,53 +1794,6 @@
1794
1794
  .zen-advanced-groups-filter-prioritized-modal {
1795
1795
  z-index: 11011;
1796
1796
  }
1797
- .zen-form-field-error {
1798
- margin-top: 4px;
1799
- display: flex;
1800
- font-family: var(--main-font);
1801
- font-size: 12px;
1802
- font-style: normal;
1803
- font-weight: 400;
1804
- letter-spacing: 0.32px;
1805
- line-height: 16px;
1806
- text-transform: none;
1807
- color: var(--text-error-message);
1808
- fill: var(--text-error-message);
1809
- }
1810
- .zen-form-field-error__error-text {
1811
- margin-left: 4px;
1812
- display: flex;
1813
- flex-direction: column;
1814
- }
1815
- .zen-form-field-error__error-icon {
1816
- flex: 0 0 auto;
1817
- }
1818
- .zen-form-field-error__icon-container {
1819
- padding: 1px 2px 0;
1820
- height: 16px;
1821
- }
1822
- .zen-form-field-error.zen-form-field-error--drive .zen-form-field-error__icon-container,
1823
- .zen-form-field-error.zen-form-field-error--drive-tablet .zen-form-field-error__icon-container {
1824
- height: 18px;
1825
- }
1826
- .zen-form-field-error.zen-form-field-error--drive {
1827
- font-family: var(--main-font);
1828
- font-size: 14px;
1829
- font-style: normal;
1830
- font-weight: 400;
1831
- letter-spacing: 0.32px;
1832
- line-height: 18px;
1833
- text-transform: none;
1834
- }
1835
- .zen-form-field-error.zen-form-field-error--drive-tablet {
1836
- font-family: var(--main-font);
1837
- font-size: 16px;
1838
- font-style: normal;
1839
- font-weight: 400;
1840
- letter-spacing: 0.32px;
1841
- line-height: 18px;
1842
- text-transform: none;
1843
- }
1844
1797
  .zen-banner {
1845
1798
  box-sizing: border-box;
1846
1799
  min-height: 48px;
@@ -2165,24 +2118,210 @@
2165
2118
  background-position: -250% 0%;
2166
2119
  }
2167
2120
  }
2168
- .zen-textarea {
2169
- overflow: visible;
2170
- white-space: wrap;
2121
+ .zen-tooltip {
2122
+ box-sizing: border-box;
2123
+ font-family: var(--main-font);
2124
+ font-size: 12px;
2125
+ font-style: normal;
2126
+ font-weight: 400;
2127
+ letter-spacing: 0.32px;
2128
+ line-height: 16px;
2129
+ text-transform: none;
2130
+ box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
2131
+ display: flex;
2132
+ position: absolute;
2133
+ background-color: var(--backgrounds-content-1);
2134
+ color: var(--text-primary);
2135
+ border: none;
2136
+ border-radius: var(--border-radius-default);
2137
+ min-width: 42px;
2138
+ width: auto;
2139
+ z-index: 11100;
2171
2140
  }
2172
- .zen-textarea--no-resize {
2173
- resize: none;
2141
+ .zen-tooltip * {
2142
+ box-sizing: border-box;
2174
2143
  }
2175
- .zen-review-text-control {
2176
- color: var(--text-primary);
2144
+ .zen-tooltip--auto {
2145
+ max-width: 272px;
2146
+ max-height: 82px;
2147
+ padding: 8px;
2148
+ }
2149
+ .zen-tooltip--mobile,
2150
+ .zen-tooltip--drive {
2151
+ width: auto;
2152
+ max-width: 368px;
2153
+ padding: 12px;
2154
+ justify-content: space-between;
2155
+ align-items: center;
2156
+ left: 10px;
2157
+ right: 10px;
2158
+ }
2159
+ .zen-tooltip--mobile {
2160
+ max-height: 112px;
2161
+ }
2162
+ .zen-tooltip--drive {
2177
2163
  font-family: var(--main-font);
2178
2164
  font-size: 14px;
2179
2165
  font-style: normal;
2180
2166
  font-weight: 400;
2181
- letter-spacing: 0;
2167
+ letter-spacing: 0.32px;
2168
+ line-height: 20px;
2169
+ text-transform: none;
2170
+ max-height: 148px;
2171
+ }
2172
+ .zen-tooltip .zen-tooltip__close-button {
2173
+ display: flex;
2174
+ align-items: start;
2175
+ align-self: start;
2176
+ flex-shrink: 0;
2177
+ background: none;
2178
+ border: none;
2179
+ padding: 0;
2180
+ border-radius: 50%;
2181
+ color: var(--text-primary);
2182
+ fill: var(--text-primary);
2183
+ }
2184
+ .zen-tooltip .zen-tooltip__close-button:active,
2185
+ .zen-tooltip .zen-tooltip__close-button:focus,
2186
+ .zen-tooltip .zen-tooltip__close-button:hover {
2187
+ border: 0;
2188
+ }
2189
+ .zen-tooltip__title {
2190
+ font-family: var(--main-font);
2191
+ font-size: 14px;
2192
+ font-style: normal;
2193
+ font-weight: 500;
2194
+ letter-spacing: 0.16px;
2182
2195
  line-height: 16px;
2183
2196
  text-transform: none;
2197
+ margin-bottom: 4px;
2184
2198
  }
2185
- .zen-review-text-control--secondary {
2199
+ .zen-tooltip__body {
2200
+ display: -webkit-box;
2201
+ -webkit-box-orient: vertical;
2202
+ }
2203
+ .zen-tooltip__body--desktop,
2204
+ .zen-tooltip__body--mobile,
2205
+ .zen-tooltip__body--drive {
2206
+ overflow: hidden;
2207
+ text-overflow: ellipsis;
2208
+ white-space: normal;
2209
+ }
2210
+ .zen-tooltip__body--desktop {
2211
+ line-clamp: 4;
2212
+ -webkit-line-clamp: 4;
2213
+ }
2214
+ .zen-tooltip__body--mobile,
2215
+ .zen-tooltip__body--drive {
2216
+ line-clamp: 5;
2217
+ -webkit-line-clamp: 5;
2218
+ }
2219
+ .zen-tooltip__body--small {
2220
+ white-space: nowrap;
2221
+ }
2222
+ .zen-tooltip__arrow {
2223
+ position: absolute;
2224
+ border-style: solid;
2225
+ filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
2226
+ }
2227
+ .zen-tooltip__arrow--top {
2228
+ top: 100%;
2229
+ left: 50%;
2230
+ border-color: var(--backgrounds-content-1) transparent transparent transparent;
2231
+ border-width: 6px 5px 0 5px;
2232
+ filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2));
2233
+ }
2234
+ .zen-tooltip__arrow--bottom {
2235
+ bottom: 100%;
2236
+ left: 14px;
2237
+ border-color: transparent transparent var(--backgrounds-content-1) transparent;
2238
+ border-width: 0px 5px 6px 5px;
2239
+ filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.2));
2240
+ }
2241
+ .zen-tooltip__arrow--right {
2242
+ right: 100%;
2243
+ border-color: transparent var(--backgrounds-content-1) transparent transparent;
2244
+ border-width: 5px 6px 5px 0px;
2245
+ filter: drop-shadow(-4px 0px 4px rgba(0, 0, 0, 0.2));
2246
+ }
2247
+ .zen-tooltip__arrow--left {
2248
+ left: 100%;
2249
+ border-color: transparent transparent transparent var(--backgrounds-content-1);
2250
+ border-width: 5px 0px 6px 5px;
2251
+ filter: drop-shadow(4px 0px 4px rgba(0, 0, 0, 0.2));
2252
+ }
2253
+ .zen-tooltip__trigger {
2254
+ color: var(--text-secondary);
2255
+ fill: var(--text-secondary);
2256
+ }
2257
+ .zen-tooltip__trigger-container {
2258
+ display: inline-flex;
2259
+ cursor: pointer;
2260
+ padding: 0;
2261
+ outline: none;
2262
+ border: none;
2263
+ background-color: transparent;
2264
+ }
2265
+ .zen-tooltip__shield {
2266
+ background-color: #1F2833 !important;
2267
+ opacity: 0.4 !important;
2268
+ }
2269
+ .zen-shield {
2270
+ box-sizing: border-box;
2271
+ position: fixed;
2272
+ top: 0;
2273
+ bottom: 0;
2274
+ left: 0;
2275
+ right: 0;
2276
+ z-index: 10006;
2277
+ background-color: #000;
2278
+ opacity: 0.1;
2279
+ }
2280
+ .zen-shield * {
2281
+ box-sizing: border-box;
2282
+ }
2283
+ .zen-shield-faded {
2284
+ opacity: 0;
2285
+ transition: opacity 0.2s ease-in;
2286
+ }
2287
+ .zen-shield-faded--visible {
2288
+ opacity: 0.1;
2289
+ }
2290
+ .zen-tooltip-info {
2291
+ align-items: center;
2292
+ cursor: pointer;
2293
+ display: flex;
2294
+ fill: var(--text-secondary);
2295
+ justify-content: center;
2296
+ border: 0;
2297
+ background: 0;
2298
+ padding: 0;
2299
+ min-width: 16px;
2300
+ max-width: 16px;
2301
+ min-height: 16px;
2302
+ max-height: 16px;
2303
+ }
2304
+ .zen-tooltip-info--drive {
2305
+ min-width: 20px;
2306
+ max-width: 20px;
2307
+ min-height: 20px;
2308
+ max-height: 20px;
2309
+ }
2310
+ .zen-tooltip-info:focus,
2311
+ .zen-tooltip-info:hover {
2312
+ background: 0;
2313
+ fill: var(--text-secondary);
2314
+ }
2315
+ .zen-field-label {
2316
+ display: flex;
2317
+ gap: 4px;
2318
+ }
2319
+ .zen-field-label:not(.zen-field-label--review):not(.zen-form-list-label):not(.zen-form-field-label--top) {
2320
+ align-self: center;
2321
+ }
2322
+ .zen-field-label__text {
2323
+ display: flex;
2324
+ align-items: center;
2186
2325
  font-family: var(--main-font);
2187
2326
  font-size: 12px;
2188
2327
  font-style: normal;
@@ -2190,8 +2329,14 @@
2190
2329
  letter-spacing: 0.32px;
2191
2330
  line-height: 16px;
2192
2331
  text-transform: none;
2332
+ color: var(--text-primary);
2333
+ }
2334
+ .zen-field-label__text--review {
2193
2335
  color: var(--text-secondary);
2194
- font-style: italic;
2336
+ font-style: inherit;
2337
+ }
2338
+ .zen-field-label--custom-width:not(.zen-field-label--review) .zen-field-label__text {
2339
+ align-items: flex-start;
2195
2340
  }
2196
2341
  .zen-card-container {
2197
2342
  box-sizing: border-box;
@@ -2256,366 +2401,21 @@
2256
2401
  height: 100%;
2257
2402
  }
2258
2403
  .zen-card-container--mobile {
2259
- max-height: unset;
2260
- }
2261
- .zen-card-container--auto-height {
2262
- max-height: unset;
2263
- min-height: unset;
2264
- align-self: flex-start;
2265
- }
2266
- .zen-card-container.zen-card-container--no-width-constraint {
2267
- min-width: 0;
2268
- max-width: unset;
2269
- }
2270
- @media (max-width: 640px) {
2271
- .zen-card-container {
2272
- max-width: unset;
2273
- }
2274
- }
2275
- .zen-side-panel {
2276
- box-sizing: border-box;
2277
- font-family: var(--main-font);
2278
- font-size: 14px;
2279
- font-style: normal;
2280
- font-weight: 400;
2281
- letter-spacing: 0;
2282
- line-height: 16px;
2283
- text-transform: none;
2284
- background-color: var(--backgrounds-main);
2285
- box-shadow: 0 2px 6px rgba(11, 32, 50, 0.2);
2286
- border-top-left-radius: var(--border-radius-default);
2287
- border-bottom-left-radius: var(--border-radius-default);
2288
- overflow: hidden;
2289
- height: 100%;
2290
- width: 25%;
2291
- min-width: 360px;
2292
- max-width: 600px;
2293
- position: fixed;
2294
- right: 0;
2295
- top: 0;
2296
- z-index: 10007;
2297
- display: flex;
2298
- flex-direction: column;
2299
- transform: translateX(100%);
2300
- opacity: 0;
2301
- visibility: hidden;
2302
- pointer-events: none;
2303
- transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0.2s ease-out;
2304
- }
2305
- .zen-side-panel * {
2306
- box-sizing: border-box;
2307
- }
2308
- .zen-side-panel--shown {
2309
- display: flex;
2310
- transform: translateX(0);
2311
- opacity: 1;
2312
- visibility: visible;
2313
- pointer-events: auto;
2314
- }
2315
- .zen-side-panel--shown .zen-form-field--new-component {
2316
- display: flex;
2317
- }
2318
- .zen-side-panel--left-positioned {
2319
- left: 0;
2320
- right: auto;
2321
- transform: translateX(-100%);
2322
- border-top-left-radius: 0;
2323
- border-bottom-left-radius: 0;
2324
- border-top-right-radius: var(--border-radius-default);
2325
- border-bottom-right-radius: var(--border-radius-default);
2326
- }
2327
- .zen-side-panel.zen-side-panel--left-positioned.zen-side-panel--shown {
2328
- transform: translateX(0);
2329
- }
2330
- .zen-side-panel.zen-side-panel--drive {
2331
- font-family: var(--main-font);
2332
- font-size: 16px;
2333
- font-style: normal;
2334
- font-weight: 400;
2335
- letter-spacing: 0;
2336
- line-height: 20px;
2337
- text-transform: none;
2338
- }
2339
- .zen-side-panel.zen-side-panel--drive-tablet {
2340
- font-family: var(--main-font);
2341
- font-size: 18px;
2342
- font-style: normal;
2343
- font-weight: 400;
2344
- letter-spacing: 0;
2345
- line-height: 22px;
2346
- text-transform: none;
2347
- }
2348
- .zen-side-panel--bottom-positioned {
2349
- width: 100%;
2350
- max-width: 100%;
2351
- height: auto;
2352
- max-height: 100%;
2353
- border-top-left-radius: var(--border-radius-default);
2354
- border-bottom-left-radius: 0;
2355
- border-top-right-radius: var(--border-radius-default);
2356
- border-bottom-right-radius: 0;
2357
- transform: translateY(100%);
2358
- top: auto;
2359
- bottom: 0;
2360
- }
2361
- .zen-side-panel.zen-side-panel--bottom-positioned.zen-side-panel--shown {
2362
- transform: translateY(0);
2363
- }
2364
- @media (max-width: 640px) {
2365
- .zen-side-panel {
2366
- width: 100%;
2367
- min-width: 100%;
2368
- max-width: 100%;
2369
- border-top-left-radius: var(--border-radius-default);
2370
- border-top-right-radius: var(--border-radius-default);
2371
- border-bottom-left-radius: 0;
2372
- border-bottom-right-radius: 0;
2373
- }
2374
- .zen-side-panel.zen-side-panel--drive,
2375
- .zen-side-panel.zen-side-panel--drive-tablet {
2376
- max-width: 100%;
2377
- }
2378
- }
2379
- .zen-side-panel--shown-keyboard.zen-side-panel--bottom-positioned {
2380
- top: 0;
2381
- }
2382
- .zen-side-panel-cell {
2383
- box-sizing: border-box;
2384
- padding: 16px;
2385
- border-bottom: 1px solid var(--backgrounds-content-1);
2386
- background-color: var(--backgrounds-main);
2387
- }
2388
- .zen-side-panel-cell * {
2389
- box-sizing: border-box;
2390
- }
2391
- .zen-side-panel-cell__title {
2392
- font-family: var(--main-font);
2393
- font-size: 12px;
2394
- font-style: normal;
2395
- font-weight: 400;
2396
- letter-spacing: 0.32px;
2397
- line-height: 16px;
2398
- text-transform: none;
2399
- color: var(--text-primary);
2400
- margin: 0 0 16px 0;
2401
- }
2402
- .zen-side-panel-cell__footer {
2403
- margin: 16px 0 0 0;
2404
- }
2405
- .zen-side-panel-cell--no-padding {
2406
- padding-left: 0;
2407
- padding-right: 0;
2408
- }
2409
- .zen-side-panel-cell--no-padding .zen-side-panel-cell__title {
2410
- padding-left: 16px;
2411
- }
2412
- .zen-shield {
2413
- box-sizing: border-box;
2414
- position: fixed;
2415
- top: 0;
2416
- bottom: 0;
2417
- left: 0;
2418
- right: 0;
2419
- z-index: 10006;
2420
- background-color: #000;
2421
- opacity: 0.1;
2422
- }
2423
- .zen-shield * {
2424
- box-sizing: border-box;
2425
- }
2426
- .zen-shield-faded {
2427
- opacity: 0;
2428
- transition: opacity 0.2s ease-in;
2429
- }
2430
- .zen-shield-faded--visible {
2431
- opacity: 0.1;
2432
- }
2433
- .zen-mobile-sheet-footer {
2434
- box-sizing: border-box;
2435
- border-top: 1px solid var(--borders-general);
2436
- display: grid;
2437
- gap: 12px;
2438
- }
2439
- .zen-mobile-sheet-footer * {
2440
- box-sizing: border-box;
2441
- }
2442
- .zen-mobile-sheet-footer--borderless {
2443
- border-top-width: 0;
2444
- }
2445
- .zen-mobile-sheet-wrapper {
2446
- z-index: 11010;
2447
- }
2448
- .zen-mobile-sheet-shield {
2449
- z-index: 11007;
2450
- position: fixed;
2451
- top: 0;
2452
- left: 0;
2453
- width: 100%;
2454
- height: 100%;
2455
- }
2456
- .zen-mobile-sheet {
2457
- box-sizing: border-box;
2458
- display: flex;
2459
- flex-direction: column;
2460
- width: 100%;
2461
- flex: 1 1 0%;
2462
- overflow: hidden;
2463
- }
2464
- .zen-mobile-sheet * {
2465
- box-sizing: border-box;
2466
- }
2467
- .zen-mobile-sheet__title {
2468
- font-family: var(--main-font);
2469
- font-size: 14px;
2470
- font-style: normal;
2471
- font-weight: 400;
2472
- letter-spacing: 0;
2473
- line-height: 16px;
2474
- text-transform: none;
2475
- color: var(--text-secondary);
2476
- padding: 12px 8px 12px 12px;
2477
- display: flex;
2478
- justify-content: space-between;
2479
- align-items: center;
2480
- }
2481
- .zen-mobile-sheet__title.zen-mobile-sheet__title--drive {
2482
- font-family: var(--main-font);
2483
- font-size: 16px;
2484
- font-style: normal;
2485
- font-weight: 400;
2486
- letter-spacing: 0;
2487
- line-height: 20px;
2488
- text-transform: none;
2489
- padding: 0;
2490
- padding-left: 12px;
2491
- }
2492
- .zen-mobile-sheet__title.zen-mobile-sheet__title--drive .zen-mobile-sheet__close-button {
2493
- margin-top: 0;
2494
- margin-bottom: 0;
2495
- }
2496
- .zen-mobile-sheet__title.zen-mobile-sheet__title--drive-tablet {
2497
- font-family: var(--main-font);
2498
- font-size: 18px;
2499
- font-style: normal;
2500
- font-weight: 400;
2501
- letter-spacing: 0;
2502
- line-height: 22px;
2503
- text-transform: none;
2504
- padding: 0;
2505
- padding-left: 12px;
2506
- }
2507
- .zen-mobile-sheet__title.zen-mobile-sheet__title--drive-tablet .zen-mobile-sheet__close-button {
2508
- margin-top: 0;
2509
- margin-bottom: 0;
2510
- }
2511
- .zen-mobile-sheet__close-button {
2512
- width: auto;
2513
- margin-top: -6px;
2514
- margin-bottom: -6px;
2515
- }
2516
- .zen-mobile-sheet__title-text {
2517
- display: -webkit-box;
2518
- -webkit-box-orient: vertical;
2519
- -webkit-line-clamp: 1;
2520
- overflow: hidden;
2521
- text-overflow: ellipsis;
2522
- }
2523
- .zen-mobile-sheet__content {
2524
- flex: 1 1 auto;
2525
- overflow-y: auto;
2526
- }
2527
- .zen-mobile-sheet--mobile-android {
2528
- overflow-y: hidden;
2529
- position: fixed;
2530
- }
2531
- .zen-mobile-sheet__footer {
2532
- flex: 0 0 auto;
2533
- }
2534
- .zen-mobile-sheet-wrapper--drive.zen-mobile-sheet-wrapper--drive,
2535
- .zen-mobile-sheet-wrapper--drive-tablet.zen-mobile-sheet-wrapper--drive-tablet {
2536
- max-width: 520px;
2537
- min-width: 520px;
2538
- left: calc(50% - 260px);
2539
- }
2540
- @media (max-width: 520px) {
2541
- .zen-mobile-sheet-wrapper--drive.zen-mobile-sheet-wrapper--drive,
2542
- .zen-mobile-sheet-wrapper--drive-tablet.zen-mobile-sheet-wrapper--drive-tablet {
2543
- max-width: 100%;
2544
- min-width: 100%;
2545
- left: 0;
2546
- }
2547
- }
2548
- .zen-tooltip {
2549
- box-sizing: border-box;
2550
- font-family: var(--main-font);
2551
- font-size: 12px;
2552
- font-style: normal;
2553
- font-weight: 400;
2554
- letter-spacing: 0.32px;
2555
- line-height: 16px;
2556
- text-transform: none;
2557
- position: absolute;
2558
- background-color: var(--backgrounds-reverse-1);
2559
- color: var(--text-reverse-primary);
2560
- border: none;
2561
- border-radius: var(--border-radius-default);
2562
- min-width: 42px;
2563
- width: auto;
2564
- z-index: 11100;
2565
- }
2566
- .zen-tooltip * {
2567
- box-sizing: border-box;
2568
- }
2569
- .zen-tooltip--large,
2570
- .zen-tooltip--auto {
2571
- padding: 8px;
2572
- max-width: 224px;
2573
- }
2574
- .zen-tooltip--small {
2575
- padding: 5px 10px;
2576
- max-width: 144px;
2577
- }
2578
- .zen-tooltip__body {
2579
- overflow: hidden;
2580
- text-overflow: ellipsis;
2581
- }
2582
- .zen-tooltip__body--large {
2583
- display: -webkit-box;
2584
- -webkit-box-orient: vertical;
2585
- -webkit-line-clamp: 3;
2586
- }
2587
- .zen-tooltip__body--small {
2588
- white-space: nowrap;
2589
- }
2590
- .zen-tooltip__arrow {
2591
- position: absolute;
2592
- border-style: solid;
2593
- }
2594
- .zen-tooltip__arrow--top {
2595
- top: 100%;
2596
- left: 50%;
2597
- border-color: var(--backgrounds-reverse-1) transparent transparent transparent;
2598
- border-width: 6px 5px 0 5px;
2599
- }
2600
- .zen-tooltip__arrow--bottom {
2601
- bottom: 100%;
2602
- left: 14px;
2603
- border-color: transparent transparent var(--backgrounds-reverse-1) transparent;
2604
- border-width: 0px 5px 6px 5px;
2404
+ max-height: unset;
2605
2405
  }
2606
- .zen-tooltip__arrow--right {
2607
- right: 100%;
2608
- border-color: transparent var(--backgrounds-reverse-1) transparent transparent;
2609
- border-width: 5px 6px 5px 0px;
2406
+ .zen-card-container--auto-height {
2407
+ max-height: unset;
2408
+ min-height: unset;
2409
+ align-self: flex-start;
2610
2410
  }
2611
- .zen-tooltip__arrow--left {
2612
- left: 100%;
2613
- border-color: transparent transparent transparent var(--backgrounds-reverse-1);
2614
- border-width: 5px 0px 6px 5px;
2411
+ .zen-card-container.zen-card-container--no-width-constraint {
2412
+ min-width: 0;
2413
+ max-width: unset;
2615
2414
  }
2616
- .zen-tooltip__mobile-sheet-content {
2617
- padding: 24px 16px 32px;
2618
- color: var(--text-primary);
2415
+ @media (max-width: 640px) {
2416
+ .zen-card-container {
2417
+ max-width: unset;
2418
+ }
2619
2419
  }
2620
2420
  .zen-card-status {
2621
2421
  box-sizing: border-box;
@@ -3054,58 +2854,310 @@
3054
2854
  padding: 0;
3055
2855
  margin: 0;
3056
2856
  }
3057
- .zen-menu-item * {
3058
- box-sizing: border-box;
2857
+ .zen-menu-item * {
2858
+ box-sizing: border-box;
2859
+ }
2860
+ .zen-menu-item__content {
2861
+ list-style-type: none;
2862
+ }
2863
+ .zen-popup {
2864
+ font-family: var(--main-font);
2865
+ font-size: 14px;
2866
+ font-style: normal;
2867
+ font-weight: 400;
2868
+ letter-spacing: 0;
2869
+ line-height: 16px;
2870
+ text-transform: none;
2871
+ box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
2872
+ border-radius: var(--border-radius-default);
2873
+ box-sizing: border-box;
2874
+ background-color: var(--backgrounds-main);
2875
+ padding: 4px 0;
2876
+ max-height: 800px;
2877
+ border: 0px;
2878
+ min-height: 30px;
2879
+ min-width: 170px;
2880
+ max-width: 420px;
2881
+ }
2882
+ .zen-popup * {
2883
+ box-sizing: border-box;
2884
+ }
2885
+ .zen-popup--padding {
2886
+ padding: 8px;
2887
+ }
2888
+ .zen-popup--no-padding {
2889
+ padding: 0;
2890
+ }
2891
+ .zen-popup--flex-width {
2892
+ min-width: auto;
2893
+ max-width: none;
2894
+ }
2895
+ .zen-popup--block {
2896
+ padding: 4px 0;
2897
+ box-shadow: 0px 2px 6px rgba(11, 32, 50, 0.2);
2898
+ border-radius: var(--border-radius-default);
2899
+ }
2900
+ @media (max-width: 640px) {
2901
+ .zen-popup {
2902
+ max-width: 100%;
2903
+ }
2904
+ }
2905
+ .zen-menu-separator {
2906
+ border-top: 1px solid var(--borders-general);
2907
+ height: 0;
2908
+ }
2909
+ .zen-side-panel {
2910
+ box-sizing: border-box;
2911
+ font-family: var(--main-font);
2912
+ font-size: 14px;
2913
+ font-style: normal;
2914
+ font-weight: 400;
2915
+ letter-spacing: 0;
2916
+ line-height: 16px;
2917
+ text-transform: none;
2918
+ background-color: var(--backgrounds-main);
2919
+ box-shadow: 0 2px 6px rgba(11, 32, 50, 0.2);
2920
+ border-top-left-radius: var(--border-radius-default);
2921
+ border-bottom-left-radius: var(--border-radius-default);
2922
+ overflow: hidden;
2923
+ height: 100%;
2924
+ width: 25%;
2925
+ min-width: 360px;
2926
+ max-width: 600px;
2927
+ position: fixed;
2928
+ right: 0;
2929
+ top: 0;
2930
+ z-index: 10007;
2931
+ display: flex;
2932
+ flex-direction: column;
2933
+ transform: translateX(100%);
2934
+ opacity: 0;
2935
+ visibility: hidden;
2936
+ pointer-events: none;
2937
+ transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0.2s ease-out;
2938
+ }
2939
+ .zen-side-panel * {
2940
+ box-sizing: border-box;
2941
+ }
2942
+ .zen-side-panel--shown {
2943
+ display: flex;
2944
+ transform: translateX(0);
2945
+ opacity: 1;
2946
+ visibility: visible;
2947
+ pointer-events: auto;
2948
+ }
2949
+ .zen-side-panel--shown .zen-form-field--new-component {
2950
+ display: flex;
2951
+ }
2952
+ .zen-side-panel--left-positioned {
2953
+ left: 0;
2954
+ right: auto;
2955
+ transform: translateX(-100%);
2956
+ border-top-left-radius: 0;
2957
+ border-bottom-left-radius: 0;
2958
+ border-top-right-radius: var(--border-radius-default);
2959
+ border-bottom-right-radius: var(--border-radius-default);
2960
+ }
2961
+ .zen-side-panel.zen-side-panel--left-positioned.zen-side-panel--shown {
2962
+ transform: translateX(0);
2963
+ }
2964
+ .zen-side-panel.zen-side-panel--drive {
2965
+ font-family: var(--main-font);
2966
+ font-size: 16px;
2967
+ font-style: normal;
2968
+ font-weight: 400;
2969
+ letter-spacing: 0;
2970
+ line-height: 20px;
2971
+ text-transform: none;
2972
+ }
2973
+ .zen-side-panel.zen-side-panel--drive-tablet {
2974
+ font-family: var(--main-font);
2975
+ font-size: 18px;
2976
+ font-style: normal;
2977
+ font-weight: 400;
2978
+ letter-spacing: 0;
2979
+ line-height: 22px;
2980
+ text-transform: none;
2981
+ }
2982
+ .zen-side-panel--bottom-positioned {
2983
+ width: 100%;
2984
+ max-width: 100%;
2985
+ height: auto;
2986
+ max-height: 100%;
2987
+ border-top-left-radius: var(--border-radius-default);
2988
+ border-bottom-left-radius: 0;
2989
+ border-top-right-radius: var(--border-radius-default);
2990
+ border-bottom-right-radius: 0;
2991
+ transform: translateY(100%);
2992
+ top: auto;
2993
+ bottom: 0;
2994
+ }
2995
+ .zen-side-panel.zen-side-panel--bottom-positioned.zen-side-panel--shown {
2996
+ transform: translateY(0);
2997
+ }
2998
+ @media (max-width: 640px) {
2999
+ .zen-side-panel {
3000
+ width: 100%;
3001
+ min-width: 100%;
3002
+ max-width: 100%;
3003
+ border-top-left-radius: var(--border-radius-default);
3004
+ border-top-right-radius: var(--border-radius-default);
3005
+ border-bottom-left-radius: 0;
3006
+ border-bottom-right-radius: 0;
3007
+ }
3008
+ .zen-side-panel.zen-side-panel--drive,
3009
+ .zen-side-panel.zen-side-panel--drive-tablet {
3010
+ max-width: 100%;
3011
+ }
3012
+ }
3013
+ .zen-side-panel--shown-keyboard.zen-side-panel--bottom-positioned {
3014
+ top: 0;
3015
+ }
3016
+ .zen-side-panel-cell {
3017
+ box-sizing: border-box;
3018
+ padding: 16px;
3019
+ border-bottom: 1px solid var(--backgrounds-content-1);
3020
+ background-color: var(--backgrounds-main);
3021
+ }
3022
+ .zen-side-panel-cell * {
3023
+ box-sizing: border-box;
3024
+ }
3025
+ .zen-side-panel-cell__title {
3026
+ font-family: var(--main-font);
3027
+ font-size: 12px;
3028
+ font-style: normal;
3029
+ font-weight: 400;
3030
+ letter-spacing: 0.32px;
3031
+ line-height: 16px;
3032
+ text-transform: none;
3033
+ color: var(--text-primary);
3034
+ margin: 0 0 16px 0;
3035
+ }
3036
+ .zen-side-panel-cell__footer {
3037
+ margin: 16px 0 0 0;
3038
+ }
3039
+ .zen-side-panel-cell--no-padding {
3040
+ padding-left: 0;
3041
+ padding-right: 0;
3042
+ }
3043
+ .zen-side-panel-cell--no-padding .zen-side-panel-cell__title {
3044
+ padding-left: 16px;
3045
+ }
3046
+ .zen-mobile-sheet-footer {
3047
+ box-sizing: border-box;
3048
+ border-top: 1px solid var(--borders-general);
3049
+ display: grid;
3050
+ gap: 12px;
3051
+ }
3052
+ .zen-mobile-sheet-footer * {
3053
+ box-sizing: border-box;
3054
+ }
3055
+ .zen-mobile-sheet-footer--borderless {
3056
+ border-top-width: 0;
3057
+ }
3058
+ .zen-mobile-sheet-wrapper {
3059
+ z-index: 11010;
3060
+ }
3061
+ .zen-mobile-sheet-shield {
3062
+ z-index: 11007;
3063
+ position: fixed;
3064
+ top: 0;
3065
+ left: 0;
3066
+ width: 100%;
3067
+ height: 100%;
3068
+ }
3069
+ .zen-mobile-sheet {
3070
+ box-sizing: border-box;
3071
+ display: flex;
3072
+ flex-direction: column;
3073
+ width: 100%;
3074
+ flex: 1 1 0%;
3075
+ overflow: hidden;
3076
+ }
3077
+ .zen-mobile-sheet * {
3078
+ box-sizing: border-box;
3079
+ }
3080
+ .zen-mobile-sheet__title {
3081
+ font-family: var(--main-font);
3082
+ font-size: 14px;
3083
+ font-style: normal;
3084
+ font-weight: 400;
3085
+ letter-spacing: 0;
3086
+ line-height: 16px;
3087
+ text-transform: none;
3088
+ color: var(--text-secondary);
3089
+ padding: 12px 8px 12px 12px;
3090
+ display: flex;
3091
+ justify-content: space-between;
3092
+ align-items: center;
3093
+ }
3094
+ .zen-mobile-sheet__title.zen-mobile-sheet__title--drive {
3095
+ font-family: var(--main-font);
3096
+ font-size: 16px;
3097
+ font-style: normal;
3098
+ font-weight: 400;
3099
+ letter-spacing: 0;
3100
+ line-height: 20px;
3101
+ text-transform: none;
3102
+ padding: 0;
3103
+ padding-left: 12px;
3059
3104
  }
3060
- .zen-menu-item__content {
3061
- list-style-type: none;
3105
+ .zen-mobile-sheet__title.zen-mobile-sheet__title--drive .zen-mobile-sheet__close-button {
3106
+ margin-top: 0;
3107
+ margin-bottom: 0;
3062
3108
  }
3063
- .zen-popup {
3109
+ .zen-mobile-sheet__title.zen-mobile-sheet__title--drive-tablet {
3064
3110
  font-family: var(--main-font);
3065
- font-size: 14px;
3111
+ font-size: 18px;
3066
3112
  font-style: normal;
3067
3113
  font-weight: 400;
3068
3114
  letter-spacing: 0;
3069
- line-height: 16px;
3115
+ line-height: 22px;
3070
3116
  text-transform: none;
3071
- box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
3072
- border-radius: var(--border-radius-default);
3073
- box-sizing: border-box;
3074
- background-color: var(--backgrounds-main);
3075
- padding: 4px 0;
3076
- max-height: 800px;
3077
- border: 0px;
3078
- min-height: 30px;
3079
- min-width: 170px;
3080
- max-width: 420px;
3117
+ padding: 0;
3118
+ padding-left: 12px;
3081
3119
  }
3082
- .zen-popup * {
3083
- box-sizing: border-box;
3120
+ .zen-mobile-sheet__title.zen-mobile-sheet__title--drive-tablet .zen-mobile-sheet__close-button {
3121
+ margin-top: 0;
3122
+ margin-bottom: 0;
3084
3123
  }
3085
- .zen-popup--padding {
3086
- padding: 8px;
3124
+ .zen-mobile-sheet__close-button {
3125
+ width: auto;
3126
+ margin-top: -6px;
3127
+ margin-bottom: -6px;
3087
3128
  }
3088
- .zen-popup--no-padding {
3089
- padding: 0;
3129
+ .zen-mobile-sheet__title-text {
3130
+ display: -webkit-box;
3131
+ -webkit-box-orient: vertical;
3132
+ -webkit-line-clamp: 1;
3133
+ overflow: hidden;
3134
+ text-overflow: ellipsis;
3090
3135
  }
3091
- .zen-popup--flex-width {
3092
- min-width: auto;
3093
- max-width: none;
3136
+ .zen-mobile-sheet__content {
3137
+ flex: 1 1 auto;
3138
+ overflow-y: auto;
3094
3139
  }
3095
- .zen-popup--block {
3096
- padding: 4px 0;
3097
- box-shadow: 0px 2px 6px rgba(11, 32, 50, 0.2);
3098
- border-radius: var(--border-radius-default);
3140
+ .zen-mobile-sheet--mobile-android {
3141
+ overflow-y: hidden;
3142
+ position: fixed;
3099
3143
  }
3100
- @media (max-width: 640px) {
3101
- .zen-popup {
3144
+ .zen-mobile-sheet__footer {
3145
+ flex: 0 0 auto;
3146
+ }
3147
+ .zen-mobile-sheet-wrapper--drive.zen-mobile-sheet-wrapper--drive,
3148
+ .zen-mobile-sheet-wrapper--drive-tablet.zen-mobile-sheet-wrapper--drive-tablet {
3149
+ max-width: 520px;
3150
+ min-width: 520px;
3151
+ left: calc(50% - 260px);
3152
+ }
3153
+ @media (max-width: 520px) {
3154
+ .zen-mobile-sheet-wrapper--drive.zen-mobile-sheet-wrapper--drive,
3155
+ .zen-mobile-sheet-wrapper--drive-tablet.zen-mobile-sheet-wrapper--drive-tablet {
3102
3156
  max-width: 100%;
3157
+ min-width: 100%;
3158
+ left: 0;
3103
3159
  }
3104
3160
  }
3105
- .zen-menu-separator {
3106
- border-top: 1px solid var(--borders-general);
3107
- height: 0;
3108
- }
3109
3161
  .zen-controlled-menu {
3110
3162
  z-index: 11002;
3111
3163
  }
@@ -3647,7 +3699,7 @@
3647
3699
  border-color: var(--borders-form-field--active);
3648
3700
  }
3649
3701
  .zen-checkbox-column__padding {
3650
- padding-left: 36px;
3702
+ padding-left: 40px;
3651
3703
  }
3652
3704
  .zen-checkbox-column--with-actions.zen-checkbox-column {
3653
3705
  gap: 8px;
@@ -4496,21 +4548,7 @@
4496
4548
  color: var(--text-secondary);
4497
4549
  margin-right: 4px;
4498
4550
  }
4499
- .zen-svg-image {
4500
- box-sizing: border-box;
4501
- display: inline;
4502
- }
4503
- .zen-svg-image * {
4504
- box-sizing: border-box;
4505
- }
4506
- .zen-svg-image:hover,
4507
- .zen-svg-image:focus {
4508
- outline: none;
4509
- }
4510
- .zen-svg-image > use {
4511
- pointer-events: none;
4512
- }
4513
- .zen-empty-list-search {
4551
+ .zen-empty-state {
4514
4552
  box-sizing: border-box;
4515
4553
  display: grid;
4516
4554
  justify-content: center;
@@ -4523,10 +4561,10 @@
4523
4561
  min-height: 200px;
4524
4562
  padding: 20px;
4525
4563
  }
4526
- .zen-empty-list-search * {
4564
+ .zen-empty-state * {
4527
4565
  box-sizing: border-box;
4528
4566
  }
4529
- .zen-empty-list-search__image {
4567
+ .zen-empty-state__image {
4530
4568
  width: 180px;
4531
4569
  height: 180px;
4532
4570
  align-self: center;
@@ -4535,7 +4573,7 @@
4535
4573
  display: flex;
4536
4574
  align-items: center;
4537
4575
  }
4538
- .zen-empty-list-search__header {
4576
+ .zen-empty-state__header {
4539
4577
  font-family: var(--main-font);
4540
4578
  font-size: 14px;
4541
4579
  font-style: normal;
@@ -4545,7 +4583,7 @@
4545
4583
  text-transform: none;
4546
4584
  margin: 0;
4547
4585
  }
4548
- .zen-empty-list-search__description {
4586
+ .zen-empty-state__description {
4549
4587
  font-family: var(--main-font);
4550
4588
  font-size: 12px;
4551
4589
  font-style: italic;
@@ -4554,6 +4592,20 @@
4554
4592
  line-height: 16px;
4555
4593
  text-transform: none;
4556
4594
  }
4595
+ .zen-svg-image {
4596
+ box-sizing: border-box;
4597
+ display: inline;
4598
+ }
4599
+ .zen-svg-image * {
4600
+ box-sizing: border-box;
4601
+ }
4602
+ .zen-svg-image:hover,
4603
+ .zen-svg-image:focus {
4604
+ outline: none;
4605
+ }
4606
+ .zen-svg-image > use {
4607
+ pointer-events: none;
4608
+ }
4557
4609
  .zen-table__detail-panel--header {
4558
4610
  background-color: var(--backgrounds-main);
4559
4611
  border-bottom: 1px solid var(--borders-general);
@@ -4769,6 +4821,12 @@
4769
4821
  .zen-table-wrapper--with-toolbar .zen-data-grid-wrapper {
4770
4822
  height: calc(100% - 48px);
4771
4823
  }
4824
+ .zen-table-wrapper--with-toolbar .zen-table__content {
4825
+ height: calc(100% - 48px);
4826
+ }
4827
+ .zen-table-wrapper--with-toolbar .zen-table__content .zen-data-grid-wrapper {
4828
+ height: 100%;
4829
+ }
4772
4830
  .zen-table__content {
4773
4831
  height: 100%;
4774
4832
  position: relative;
@@ -5214,41 +5272,17 @@
5214
5272
  display: flex;
5215
5273
  gap: 8px;
5216
5274
  }
5217
- .zen-tooltip-info {
5218
- align-items: center;
5219
- cursor: pointer;
5220
- display: flex;
5221
- fill: var(--text-secondary);
5222
- justify-content: center;
5223
- border: 0;
5224
- background: 0;
5225
- padding: 0;
5226
- min-width: 16px;
5227
- max-width: 16px;
5228
- min-height: 16px;
5229
- max-height: 16px;
5230
- }
5231
- .zen-tooltip-info--drive {
5232
- min-width: 20px;
5233
- max-width: 20px;
5234
- min-height: 20px;
5235
- max-height: 20px;
5236
- }
5237
- .zen-tooltip-info:focus,
5238
- .zen-tooltip-info:hover {
5239
- background: 0;
5240
- fill: var(--text-secondary);
5241
- }
5242
- .zen-field-label {
5243
- display: flex;
5244
- gap: 4px;
5245
- }
5246
- .zen-field-label:not(.zen-field-label--review):not(.zen-form-list-label) {
5247
- align-self: center;
5275
+ .zen-review-text-control {
5276
+ color: var(--text-primary);
5277
+ font-family: var(--main-font);
5278
+ font-size: 14px;
5279
+ font-style: normal;
5280
+ font-weight: 400;
5281
+ letter-spacing: 0;
5282
+ line-height: 16px;
5283
+ text-transform: none;
5248
5284
  }
5249
- .zen-field-label__text {
5250
- display: flex;
5251
- align-items: center;
5285
+ .zen-review-text-control--secondary {
5252
5286
  font-family: var(--main-font);
5253
5287
  font-size: 12px;
5254
5288
  font-style: normal;
@@ -5256,14 +5290,8 @@
5256
5290
  letter-spacing: 0.32px;
5257
5291
  line-height: 16px;
5258
5292
  text-transform: none;
5259
- color: var(--text-primary);
5260
- }
5261
- .zen-field-label__text--review {
5262
5293
  color: var(--text-secondary);
5263
- font-style: inherit;
5264
- }
5265
- .zen-field-label--custom-width:not(.zen-field-label--review) .zen-field-label__text {
5266
- align-items: flex-start;
5294
+ font-style: italic;
5267
5295
  }
5268
5296
  .zen-custom-form-row {
5269
5297
  display: grid;
@@ -5757,7 +5785,7 @@
5757
5785
  }
5758
5786
  .zen-pill-new--empty {
5759
5787
  gap: 4px;
5760
- min-width: 0;
5788
+ min-width: fit-content;
5761
5789
  }
5762
5790
  .zen-pill-new.zen-pill-new--drive {
5763
5791
  border-radius: 50px;
@@ -5811,6 +5839,60 @@
5811
5839
  .zen-additional-sub-section .zen-accordion__content {
5812
5840
  padding: 0;
5813
5841
  }
5842
+ .zen-form-field-error {
5843
+ margin-top: 4px;
5844
+ display: flex;
5845
+ font-family: var(--main-font);
5846
+ font-size: 12px;
5847
+ font-style: normal;
5848
+ font-weight: 400;
5849
+ letter-spacing: 0.32px;
5850
+ line-height: 16px;
5851
+ text-transform: none;
5852
+ color: var(--text-error-message);
5853
+ fill: var(--text-error-message);
5854
+ }
5855
+ .zen-form-field-error__error-text {
5856
+ margin-left: 4px;
5857
+ display: flex;
5858
+ flex-direction: column;
5859
+ }
5860
+ .zen-form-field-error__error-icon {
5861
+ flex: 0 0 auto;
5862
+ }
5863
+ .zen-form-field-error__icon-container {
5864
+ padding: 1px 2px 0;
5865
+ height: 16px;
5866
+ }
5867
+ .zen-form-field-error.zen-form-field-error--drive .zen-form-field-error__icon-container,
5868
+ .zen-form-field-error.zen-form-field-error--drive-tablet .zen-form-field-error__icon-container {
5869
+ height: 18px;
5870
+ }
5871
+ .zen-form-field-error.zen-form-field-error--drive {
5872
+ font-family: var(--main-font);
5873
+ font-size: 14px;
5874
+ font-style: normal;
5875
+ font-weight: 400;
5876
+ letter-spacing: 0.32px;
5877
+ line-height: 18px;
5878
+ text-transform: none;
5879
+ }
5880
+ .zen-form-field-error.zen-form-field-error--drive-tablet {
5881
+ font-family: var(--main-font);
5882
+ font-size: 16px;
5883
+ font-style: normal;
5884
+ font-weight: 400;
5885
+ letter-spacing: 0.32px;
5886
+ line-height: 18px;
5887
+ text-transform: none;
5888
+ }
5889
+ .zen-textarea {
5890
+ overflow: visible;
5891
+ white-space: wrap;
5892
+ }
5893
+ .zen-textarea--no-resize {
5894
+ resize: none;
5895
+ }
5814
5896
  .zen-form-field {
5815
5897
  box-sizing: border-box;
5816
5898
  display: flex;
@@ -5948,6 +6030,7 @@
5948
6030
  display: flex;
5949
6031
  flex-direction: column;
5950
6032
  align-items: start;
6033
+ justify-content: start;
5951
6034
  gap: 8px;
5952
6035
  }
5953
6036
  .zen-dropdown {
@@ -7554,17 +7637,6 @@
7554
7637
  .zen-group-button:focus-within {
7555
7638
  border-color: var(--borders-form-field--hover);
7556
7639
  }
7557
- .zen-advanced-groups-filter-section-tooltip__trigger {
7558
- cursor: pointer;
7559
- display: block;
7560
- padding: 0;
7561
- outline: none;
7562
- border: none;
7563
- background-color: transparent;
7564
- }
7565
- .zen-advanced-groups-filter-section-tooltip__trigger-icon {
7566
- fill: var(--text-secondary);
7567
- }
7568
7640
  .zen-advanced-groups-filter-section-tooltip__item {
7569
7641
  z-index: 11001;
7570
7642
  }
@@ -7716,7 +7788,6 @@
7716
7788
  padding: 0;
7717
7789
  cursor: pointer;
7718
7790
  align-self: flex-start;
7719
- border-radius: 50%;
7720
7791
  padding: 8px;
7721
7792
  }
7722
7793
  .zen-modal-content__body {
@@ -12020,6 +12091,30 @@ button.zen-summary__clickable {
12020
12091
  flex-direction: column;
12021
12092
  row-gap: 4px;
12022
12093
  }
12094
+ .zen-item-data--tall {
12095
+ row-gap: 12px;
12096
+ }
12097
+ .zen-item-data--tall .zen-item-data__data {
12098
+ row-gap: 12px;
12099
+ }
12100
+ .zen-item-data--tall .zen-item-data__data-label {
12101
+ font-family: var(--main-font);
12102
+ font-size: 14px;
12103
+ font-style: normal;
12104
+ font-weight: 400;
12105
+ letter-spacing: 0;
12106
+ line-height: 16px;
12107
+ text-transform: none;
12108
+ }
12109
+ .zen-item-data--tall .zen-item-data__data-value {
12110
+ font-family: var(--main-font);
12111
+ font-size: 14px;
12112
+ font-style: normal;
12113
+ font-weight: 400;
12114
+ letter-spacing: 0;
12115
+ line-height: 16px;
12116
+ text-transform: none;
12117
+ }
12023
12118
  .zen-item-data:hover {
12024
12119
  background-color: var(--backgrounds-content-1);
12025
12120
  }