@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
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.useFormFieldProps = void 0;
15
+ const react_1 = require("react");
16
+ const useAssistive_1 = require("./useAssistive");
17
+ const useError_1 = require("./useError");
18
+ const useFormFieldClasses_1 = require("./useFormFieldClasses");
19
+ const useReadonly_1 = require("./useReadonly");
20
+ const useTrailing_1 = require("./useTrailing");
21
+ const useWidth_1 = require("./useWidth");
22
+ // eslint-disable-next-line @typescript-eslint/comma-dangle
23
+ const useFormFieldProps = (props, wrapperComponent) => {
24
+ const localId = (0, react_1.useId)();
25
+ const id = props.id || localId;
26
+ const _a = (0, useWidth_1.useWidth)(props), { hasCustomWidth } = _a, widthObj = __rest(_a, ["hasCustomWidth"]);
27
+ const { id: trailingId, trailing } = (0, useTrailing_1.useTrailing)(props);
28
+ const { error } = (0, useError_1.useError)(props);
29
+ const { assistive } = (0, useAssistive_1.useAssistive)(props);
30
+ const isReadonly = (0, useReadonly_1.useReadonly)(props);
31
+ const showAdditionalInfo = !!((error || assistive || props.counter) && !isReadonly);
32
+ const classes = (0, useFormFieldClasses_1.useFormFieldClasses)(props, wrapperComponent);
33
+ return {
34
+ id, wrapperComponent, props, hasCustomWidth, widthObj, trailingId, trailing, showAdditionalInfo, classes
35
+ };
36
+ };
37
+ exports.useFormFieldProps = useFormFieldProps;
@@ -4,7 +4,7 @@ interface IUseTrailingProps {
4
4
  }
5
5
  export declare const useTrailing: (props: IUseTrailingProps) => {
6
6
  id: string;
7
- trailing: null;
7
+ trailing: undefined;
8
8
  } | {
9
9
  id: string;
10
10
  trailing: string;
@@ -7,7 +7,7 @@ const useTrailing = (props) => {
7
7
  if (!props.trailing) {
8
8
  return {
9
9
  id: "",
10
- trailing: null
10
+ trailing: undefined
11
11
  };
12
12
  }
13
13
  return {
@@ -1,4 +1,4 @@
1
- import { IFormField } from "../formField";
1
+ import { IFormField } from "../types";
2
2
  export declare const useWidth: (props: IFormField) => {
3
3
  width: string | number;
4
4
  hasCustomWidth: boolean;
@@ -0,0 +1,35 @@
1
+ import { PropsWithChildren, Ref } from "react";
2
+ import { ILoadingBase } from "../commonHelpers/loading";
3
+ import { Exclusive } from "../commonHelpers/types/exclusive";
4
+ export type TLabelAlign = "left" | "top";
5
+ interface IFormFieldBase extends PropsWithChildren {
6
+ className?: string;
7
+ inputClassName?: string;
8
+ error?: string;
9
+ assistive?: string;
10
+ counter?: string;
11
+ trailing?: string;
12
+ isReadOnly?: boolean;
13
+ disabled?: boolean;
14
+ width?: string | number;
15
+ }
16
+ export interface IFormFieldWithLabel extends IFormFieldBase, ILoadingBase {
17
+ label?: string;
18
+ labelAlign?: TLabelAlign;
19
+ tooltip?: React.ReactNode;
20
+ labelClassesName?: string;
21
+ controlClassesName?: string;
22
+ readOnlyValue?: string | React.ReactNode | ((content: React.ReactNode) => React.ReactNode);
23
+ }
24
+ export interface IFormField extends IFormFieldBase {
25
+ }
26
+ export type TFormField = Exclusive<IFormFieldWithLabel, IFormField>;
27
+ export interface IFormFieldComponent {
28
+ isError?: boolean;
29
+ isReadOnly?: boolean;
30
+ children?: React.ReactNode;
31
+ isLoadingError?: boolean;
32
+ bannerLabel?: string;
33
+ ref?: Ref<HTMLElement | null>;
34
+ }
35
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,5 @@
1
1
  import { FC, PropsWithChildren } from "react";
2
- import { IFormFieldWithLabel } from "../../formField/formField";
2
+ import { IFormFieldWithLabel } from "../../formField/types";
3
3
  export interface IFormGroupList extends PropsWithChildren, Required<Pick<IFormFieldWithLabel, "label">>, Pick<IFormFieldWithLabel, "tooltip"> {
4
4
  }
5
5
  export declare const FormGroupList: FC<IFormGroupList>;
@@ -1,6 +1,6 @@
1
1
  import { FC, PropsWithChildren } from "react";
2
2
  import { IReactFormItemController } from "../../commonHelpers/zenComponent";
3
- import { IFormFieldWithLabel } from "../../formField/formField";
3
+ import { IFormFieldWithLabel } from "../../formField/types";
4
4
  import { Exclusive } from "../../commonHelpers/types/exclusive";
5
5
  interface IFormGroupToggleBase extends Required<Pick<IFormFieldWithLabel, "label">>, Pick<IFormFieldWithLabel, "tooltip">, PropsWithChildren {
6
6
  }
@@ -1,6 +1,6 @@
1
1
  import { FC } from "react";
2
2
  import { IZenComponentProps } from "../commonHelpers/zenComponent";
3
- import { IFormFieldWithLabel } from "../formField/formField";
3
+ import { IFormFieldWithLabel } from "../formField/types";
4
4
  import { TFormGroupToggle } from "./components/formGroupToggle";
5
5
  import "./formGroup.less";
6
6
  import { IFormGroupList } from "./components/formGroupList";
@@ -1,2 +1,2 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  export declare const useLabelAlign: (labelAlign?: TLabelAlign) => TLabelAlign;
@@ -1,5 +1,5 @@
1
1
  import { ReactElement } from "react";
2
- import { TLabelAlign } from "../formField/formField";
2
+ import { TLabelAlign } from "../formField/types";
3
3
  export interface IElementsState {
4
4
  control1: IControlState | null;
5
5
  control2: IControlState | null;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../formLayout/types";
3
3
  import { IControlClasses, ITotalState } from "../types";
4
4
  interface IGetCustomControlClassesParams {
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  import { TFormLayoutColumns, TFormLayoutMode } from "../../formLayout/types";
3
3
  import { ILabelClasses, ITotalState } from "../types";
4
4
  interface IApplyCustomLabelClassesProps {
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { TFormSectionMode, TFormSectionType } from "../../../formSection/types";
4
4
  import { ITotalState } from "../../types";
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  export declare const getOneLabelOneControlClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns) => {
4
4
  controlClasses1: string;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { ITotalState } from "../../types";
4
4
  export declare const getOneLabelTwoControlsClasses: (totalState: ITotalState, columns: TFormLayoutColumns, labelAlign: TLabelAlign) => {
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  export declare const getTwoLabelsOneControlClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns) => {
4
4
  controlClasses1: string;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  export declare const getTwoLabelsTwoControlsClasses: (labelAlign1: TLabelAlign, columns: TFormLayoutColumns) => {
4
4
  controlClasses1: string;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { TFormSectionMode, TFormSectionType } from "../../../formSection/types";
4
4
  import { ITotalState } from "../../types";
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { ILabelClasses } from "./types";
4
4
  export declare const getOneLabelOneControlClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns) => ILabelClasses;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { ILabelClasses } from "./types";
4
4
  export declare const getOneLabelTwoControlsClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns, elementsState: any) => ILabelClasses;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { ILabelClasses } from "./types";
4
4
  export declare const getTwoLabelsOneControlClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns) => ILabelClasses;
@@ -1,4 +1,4 @@
1
- import { TLabelAlign } from "../../../formField/formField";
1
+ import { TLabelAlign } from "../../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../../formLayout/types";
3
3
  import { ILabelClasses } from "./types";
4
4
  export declare const getTwoLabelsTwoControlsClasses: (labelAlign: TLabelAlign, columns: TFormLayoutColumns) => ILabelClasses;
@@ -1,3 +1,3 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../formLayout/types";
3
3
  export declare const getListClasses: (align: TLabelAlign | undefined, columns: TFormLayoutColumns, isFirstLabel?: boolean) => string;
@@ -1,3 +1,3 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  import { TFormLayoutColumns } from "../../formLayout/types";
3
3
  export declare const getToggleClasses: (columns: TFormLayoutColumns, labelAlign?: TLabelAlign) => string;
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { IFormFieldWithLabel, TLabelAlign } from "../../formField/formField";
2
+ import { IFormFieldWithLabel, TLabelAlign } from "../../formField/types";
3
3
  import { TFormLayoutMode } from "../../formLayout/types";
4
4
  import { IElementsState } from "../types";
5
5
  export interface IControlNode extends Pick<IFormFieldWithLabel, "isReadOnly" | "readOnlyValue"> {
@@ -1,3 +1,3 @@
1
- import { TLabelAlign } from "../../formField/formField";
1
+ import { TLabelAlign } from "../../formField/types";
2
2
  import { ITotalState } from "../types";
3
3
  export declare const isTopAligned: (state: ITotalState, sectionAlign: TLabelAlign | undefined) => boolean;
@@ -2,7 +2,7 @@
2
2
  import { ILoadingBase } from "../commonHelpers/loading";
3
3
  import { Exclusive } from "../commonHelpers/types/exclusive";
4
4
  import { IZenComponentProps } from "../commonHelpers/zenComponent";
5
- import { TLabelAlign } from "../formField/formField";
5
+ import { TLabelAlign } from "../formField/types";
6
6
  import { TFormSectionType } from "../formSection/types";
7
7
  import { IFormStepper } from "../formStepper/formStepper";
8
8
  import { IFormStepperButtons } from "../formStepperButtons/formStepperButtons";
@@ -2,7 +2,7 @@ import { ICard } from "../card/card";
2
2
  import { ILoadingBase } from "../commonHelpers/loading";
3
3
  import { Exclusive } from "../commonHelpers/types/exclusive";
4
4
  import { IZenComponentProps, IZenFormLayoutItem } from "../commonHelpers/zenComponent";
5
- import { TLabelAlign } from "../formField/formField";
5
+ import { TLabelAlign } from "../formField/types";
6
6
  import { TFormLayoutMode } from "../formLayout/types";
7
7
  export declare const FORM_SECTION = "FORM_SECTION";
8
8
  export type TFormSectionMode = TFormLayoutMode;
@@ -1,6 +1,6 @@
1
1
  import { FC, PropsWithChildren } from "react";
2
2
  import { TFormSectionMode, TFormSectionType } from "../types";
3
- import { TLabelAlign } from "../../formField/formField";
3
+ import { TLabelAlign } from "../../formField/types";
4
4
  export interface IFormSectionProviderProps extends PropsWithChildren {
5
5
  isFormSection?: boolean;
6
6
  labelAlign?: TLabelAlign;
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { IFormFieldComponent } from "../formField/formField";
2
+ import { IFormFieldComponent } from "../formField/types";
3
3
  import { IGroupButtonRawDefault, TGroupButtonRaw } from "./types";
4
4
  import "./groupButtonRaw.less";
5
5
  export interface IGroupButtonRaw extends IGroupButtonRawDefault {
@@ -2,9 +2,9 @@ import React from "react";
2
2
  import { IAdvancedEntitiesNavigatorDialog, IGroupItem, IGroupsFilterTotalState } from "./groupsFilterInterfaces";
3
3
  import "./groupsFilterRaw.less";
4
4
  import { IZenComponentProps } from "../commonHelpers/zenComponent";
5
- import { IFormFieldComponent } from "../formField/formField";
6
5
  import { IChipsParent } from "../chip/chip";
7
6
  import { TGroupsFilterRaw } from "./types";
7
+ import { IFormFieldComponent } from "../formField/types";
8
8
  interface IGroupsFilterOptions {
9
9
  /**
10
10
  * @deprecated
@@ -12,7 +12,7 @@ injectString("cs", "GroupCompanyId", "Skupina spole\u010Dnosti");
12
12
  injectString("da-DK", "GroupCompanyId", "Virksomhedsgruppe");
13
13
  injectString("de", "GroupCompanyId", "Unternehmensgruppe");
14
14
  injectString("en", "GroupCompanyId", "Company group");
15
- injectString("es", "GroupCompanyId", "Grupo Compa\xF1\xEDa");
15
+ injectString("es", "GroupCompanyId", "Grupo Empresa");
16
16
  injectString("fi-FI", "GroupCompanyId", "Yritysryhm\xE4");
17
17
  injectString("fr", "GroupCompanyId", "Groupe Entreprise");
18
18
  injectString("fr-FR", "GroupCompanyId", "Groupe Entreprise");
@@ -206,7 +206,7 @@ injectString("de", "GroupPowertrainAndFuelTypeId", "Antriebs- und Kraftstoffart"
206
206
  injectString("en", "GroupPowertrainAndFuelTypeId", "Powertrain and Fuel Type");
207
207
  injectString("es", "GroupPowertrainAndFuelTypeId", "Tipo de sistema de propulsi\xF3n y combustible");
208
208
  injectString("fi-FI", "GroupPowertrainAndFuelTypeId", "Voimansiirto ja polttoainetyyppi");
209
- injectString("fr", "GroupPowertrainAndFuelTypeId", "Type de motopropulseur et de carburant");
209
+ injectString("fr", "GroupPowertrainAndFuelTypeId", "Groupe motopropulseur et type de carburant");
210
210
  injectString("fr-FR", "GroupPowertrainAndFuelTypeId", "Groupe motopropulseur et type de carburant");
211
211
  injectString("hu-HU", "GroupPowertrainAndFuelTypeId", "Hajt\xE1sl\xE1nc \xE9s \xFCzemanyag t\xEDpusa");
212
212
  injectString("id", "GroupPowertrainAndFuelTypeId", "Powertrain dan Tipe Bahan Bakar");
@@ -33,7 +33,7 @@ const HeaderTitle = ({ id, children, className, pageName, subline, isBeta, isMob
33
33
  });
34
34
  return [b, b.length && !allowBookmarkWithBack ? o.filter(el => el.type !== bookmark_1.Bookmark) : o];
35
35
  }, [children, allowBookmarkWithBack]);
36
- return (0, jsx_runtime_1.jsxs)("header", { id: id, className: clsNames, children: [(0, jsx_runtime_1.jsxs)("div", { className: (0, classNames_1.classNames)(["zen-page-header__main-line", driveMainLineClassName || ""]), children: [back.length ? back : null, (0, jsx_runtime_1.jsx)("h1", { className: (0, classNames_1.classNames)(["zen-page-header__page-name", drivePageNameClassName || ""]), children: pageName }), isBeta ? (0, jsx_runtime_1.jsx)(betaPill_1.BetaPill, { feedbackAction: feedBackAction, betaOptionAction: betaOptionAction, className: "zen-page-header__beta" }) : null, other.length ? other : null] }), subline || ""] });
36
+ return (0, jsx_runtime_1.jsxs)("header", { id: id, className: clsNames, children: [(0, jsx_runtime_1.jsxs)("div", { className: (0, classNames_1.classNames)(["zen-page-header__main-line", driveMainLineClassName || ""]), children: [back.length ? back : null, pageName ? (0, jsx_runtime_1.jsx)("h1", { className: (0, classNames_1.classNames)(["zen-page-header__page-name", drivePageNameClassName || ""]), children: pageName }) : null, isBeta ? (0, jsx_runtime_1.jsx)(betaPill_1.BetaPill, { feedbackAction: feedBackAction, betaOptionAction: betaOptionAction, className: "zen-page-header__beta" }) : null, other.length ? other : null] }), subline || ""] });
37
37
  };
38
38
  exports.HeaderTitle = HeaderTitle;
39
39
  exports.HeaderTitle.displayName = exports.HeaderTitleDisplayName;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import "./svgImage.less";
3
+ import { ISvgImage } from "./svgImage";
4
+ export declare const ImageAdjustFilter: React.FC<ISvgImage>;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ImageAdjustFilter = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
+ const classNames_1 = require("../commonHelpers/classNames/classNames");
7
+ const useUniqueId_1 = require("../commonHelpers/useUniqueId");
8
+ const ImageAdjustFilter = ({ className, title, description, focusable = false }) => {
9
+ const uniqueId = (0, useUniqueId_1.useUniqueId)();
10
+ const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)([
11
+ "zen-svg-image",
12
+ className !== null && className !== void 0 ? className : ""
13
+ ]), [className]);
14
+ return (0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 180 180", focusable: focusable ? "true" : undefined, tabIndex: focusable ? 0 : undefined, role: focusable || title || description ? undefined : "presentation", className: classes, "aria-labelledby": title && focusable ? uniqueId : undefined, "data-name": "ImageAdjustFilter", children: [title ? (0, jsx_runtime_1.jsx)("title", { id: uniqueId, children: title }) : null, description ? (0, jsx_runtime_1.jsx)("desc", { children: description }) : null, (0, jsx_runtime_1.jsx)("circle", { cx: "90", cy: "91", r: "90", fill: "#EFF1F2" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_28535_79659", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "180", height: "180", children: (0, jsx_runtime_1.jsx)("circle", { cx: "90", cy: "90", r: "90", fill: "#D9D9D9" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_28535_79659)", children: [(0, jsx_runtime_1.jsx)("rect", { x: "29.0156", y: "27.001", width: "214.137", height: "118.084", rx: "2.11987", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("rect", { x: "28", y: "62.0273", width: "214.662", height: "46.5352", rx: "2.11987", fill: "white" }), (0, jsx_runtime_1.jsx)("rect", { x: "28", y: "108.562", width: "214.662", height: "121.092", rx: "2.11987", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("rect", { x: "40.0073", y: "74.5371", width: "66.0499", height: "21.0159", rx: "2.11987", fill: "#A6B8C9" }), (0, jsx_runtime_1.jsx)("rect", { width: "21.5163", height: "21.0159", rx: "2.11987", transform: "matrix(-1 0 0 1 129.076 74.5371)", fill: "#A6B8C9" }), (0, jsx_runtime_1.jsx)("rect", { x: "38.5049", y: "76.0381", width: "66.0499", height: "21.0159", rx: "2.11987", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("rect", { x: "143.086", y: "74.5371", width: "99.5753", height: "21.0159", rx: "2.11987", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("rect", { x: "106.06", y: "76.0381", width: "21.0159", height: "21.0159", rx: "2.11987", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("path", { d: "M116.567 91.0498L111.8 84.67H121.334L116.567 91.0498Z", fill: "#4E677E" }), (0, jsx_runtime_1.jsx)("rect", { x: "44.5117", y: "80.542", width: "2.00151", height: "13.0098", fill: "#4E677E" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.919 93.0928V146.847L118.339 133.077L119.116 132.409H143.574V130.545L103.919 93.0928Z", fill: "#A6B8C9" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.919 91.3301V145.085L118.339 131.314L119.116 130.647H143.574L103.919 91.3301Z", fill: "#43596D" })] })] });
15
+ };
16
+ exports.ImageAdjustFilter = ImageAdjustFilter;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import "./svgImage.less";
3
+ import { ISvgImage } from "./svgImage";
4
+ export declare const ImageNoMatchingAssets: React.FC<ISvgImage>;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ImageNoMatchingAssets = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
+ const classNames_1 = require("../commonHelpers/classNames/classNames");
7
+ const useUniqueId_1 = require("../commonHelpers/useUniqueId");
8
+ const ImageNoMatchingAssets = ({ className, title, description, focusable = false }) => {
9
+ const uniqueId = (0, useUniqueId_1.useUniqueId)();
10
+ const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)([
11
+ "zen-svg-image",
12
+ className !== null && className !== void 0 ? className : ""
13
+ ]), [className]);
14
+ return (0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 180 180", focusable: focusable ? "true" : undefined, tabIndex: focusable ? 0 : undefined, role: focusable || title || description ? undefined : "presentation", className: classes, "aria-labelledby": title && focusable ? uniqueId : undefined, "data-name": "ImageNoMatchingAssets", children: [title ? (0, jsx_runtime_1.jsx)("title", { id: uniqueId, children: title }) : null, description ? (0, jsx_runtime_1.jsx)("desc", { children: description }) : null, (0, jsx_runtime_1.jsx)("circle", { cx: "90", cy: "90", r: "90", fill: "#F2F5F7" }), (0, jsx_runtime_1.jsx)("path", { d: "M49.2449 51.725C49.3822 50.7362 50.2276 50 51.2259 50H74.186C74.5236 50 74.8558 50.0855 75.1514 50.2484L86.4138 56.4562C86.7095 56.6191 87.0417 56.7046 87.3793 56.7046H148.02C149.245 56.7046 150.183 57.7961 149.997 59.0072L140.609 120.349C140.46 121.325 139.62 122.046 138.632 122.046H41.7812C40.5673 122.046 39.6333 120.974 39.8001 119.771L49.2449 51.725Z", fill: "#A6B8C9" }), (0, jsx_runtime_1.jsx)("path", { d: "M133.485 61.9948L72.6656 61.9948C72.2202 61.9948 71.7875 61.8461 71.4362 61.5723L60.3485 52.9308C59.9974 52.6571 59.5649 52.5085 59.1197 52.5083L36.4957 52.5007C35.3909 52.5003 34.4951 53.3958 34.495 54.5006L34.4949 56.4822L57.8171 56.49C58.2567 56.4902 58.6839 56.6352 59.0329 56.9025L68.4542 64.1218C68.8031 64.3892 69.2304 64.5342 69.67 64.5343L71.9774 64.5351L132.998 71.2804C134.095 71.4017 135.083 70.6107 135.205 69.5134L135.485 67L135.485 63.9948C135.485 62.8902 134.589 61.9948 133.485 61.9948Z", fill: "white" }), (0, jsx_runtime_1.jsx)("path", { d: "M34.5737 56.0856C34.525 54.9485 35.4337 54 36.5719 54H59.0006C59.4538 54 59.8936 54.1539 60.2479 54.4366L71.3174 63.268C71.6716 63.5507 72.1114 63.7046 72.5647 63.7046H133.447C134.513 63.7046 135.391 64.5406 135.444 65.6053L138.245 121.947C138.302 123.089 137.391 124.046 136.248 124.046H39.4005C38.3293 124.046 37.4482 123.202 37.4024 122.132L34.5737 56.0856Z", fill: "#E6EBEF" }), (0, jsx_runtime_1.jsx)("path", { d: "M39.5 129.759C39.5 130.425 41.0596 130.966 41.75 130.966H44.25C44.9404 130.966 45.5 130.425 45.5 129.759V118.897H56.75C57.4404 118.897 58 118.356 58 117.69V115.276C58 114.609 57.4404 113 56.75 113L45.5 114.069V103.207C45.5 102.54 44.1904 100.5 43.5 100.5L41.75 102C41.0596 102 40.5 102.54 40.5 103.207V114.069H29.25C28.5596 114.069 28 114.609 28 115.276L27.5 116.5C27.5 117.167 28.5596 118.897 29.25 118.897L39.5 119V129.759Z", fill: "#4E677E" }), (0, jsx_runtime_1.jsx)("path", { d: "M43.5 100C44.0523 100 44.5 100.448 44.5 101V112.499H56C56.5522 112.499 56.9998 112.947 57 113.499V116.499C57 117.051 56.5523 117.499 56 117.499H44.5V129C44.5 129.552 44.0523 130 43.5 130H40.5C39.9479 130 39.5 129.552 39.5 129V117.499H28C27.4477 117.499 27 117.051 27 116.499V113.499C27.0002 112.947 27.4478 112.499 28 112.499H39.5V101C39.5 100.448 39.9479 100 40.5 100H43.5Z", fill: "#A6B8C9" }), (0, jsx_runtime_1.jsx)("rect", { x: "59.0488", y: "97", width: "4", height: "8", rx: "1", transform: "rotate(34.7836 59.0488 97)", fill: "#4E677E" }), (0, jsx_runtime_1.jsx)("rect", { x: "70.3809", y: "111", width: "4", height: "8", rx: "1", transform: "rotate(80.7533 70.3809 111)", fill: "#4E677E" }), (0, jsx_runtime_1.jsx)("rect", { x: "69.9941", y: "127.125", width: "4", height: "8", rx: "1", transform: "rotate(105.407 69.9941 127.125)", fill: "#4E677E" })] });
15
+ };
16
+ exports.ImageNoMatchingAssets = ImageNoMatchingAssets;