@procore/core-react 0.0.0-20230808121909

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 (1555) hide show
  1. package/.eslintrc.json +47 -0
  2. package/.idea/core-react.iml +15 -0
  3. package/.idea/markdown.xml +9 -0
  4. package/.idea/misc.xml +4 -0
  5. package/.idea/modules.xml +8 -0
  6. package/.idea/prettier.xml +6 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/LICENSE +84 -0
  9. package/README.md +118 -0
  10. package/__mocks__/@react-aria/utils.js +10 -0
  11. package/babel.config.js +20 -0
  12. package/dist/Avatar/Avatar.d.ts +34 -0
  13. package/dist/Avatar/Avatar.js +112 -0
  14. package/dist/Avatar/Avatar.js.map +1 -0
  15. package/dist/Avatar/Avatar.styles.d.ts +14 -0
  16. package/dist/Avatar/Avatar.styles.js +36 -0
  17. package/dist/Avatar/Avatar.styles.js.map +1 -0
  18. package/dist/Avatar/Avatar.types.d.ts +79 -0
  19. package/dist/Avatar/Avatar.types.js +2 -0
  20. package/dist/Avatar/Avatar.types.js.map +1 -0
  21. package/dist/Avatar/index.d.ts +2 -0
  22. package/dist/Avatar/index.js +2 -0
  23. package/dist/Avatar/index.js.map +1 -0
  24. package/dist/AvatarStack/AvatarStack.constants.d.ts +5 -0
  25. package/dist/AvatarStack/AvatarStack.constants.js +5 -0
  26. package/dist/AvatarStack/AvatarStack.constants.js.map +1 -0
  27. package/dist/AvatarStack/AvatarStack.d.ts +52 -0
  28. package/dist/AvatarStack/AvatarStack.js +204 -0
  29. package/dist/AvatarStack/AvatarStack.js.map +1 -0
  30. package/dist/AvatarStack/AvatarStack.styles.d.ts +20 -0
  31. package/dist/AvatarStack/AvatarStack.styles.js +21 -0
  32. package/dist/AvatarStack/AvatarStack.styles.js.map +1 -0
  33. package/dist/AvatarStack/AvatarStack.types.d.ts +114 -0
  34. package/dist/AvatarStack/AvatarStack.types.js +2 -0
  35. package/dist/AvatarStack/AvatarStack.types.js.map +1 -0
  36. package/dist/AvatarStack/index.d.ts +2 -0
  37. package/dist/AvatarStack/index.js +2 -0
  38. package/dist/AvatarStack/index.js.map +1 -0
  39. package/dist/Badge/Badge.d.ts +1 -0
  40. package/dist/Badge/Badge.js +10 -0
  41. package/dist/Badge/Badge.js.map +1 -0
  42. package/dist/Badge/Badge.styles.d.ts +3 -0
  43. package/dist/Badge/Badge.styles.js +9 -0
  44. package/dist/Badge/Badge.styles.js.map +1 -0
  45. package/dist/Badge/Badge.types.d.ts +5 -0
  46. package/dist/Badge/Badge.types.js +2 -0
  47. package/dist/Badge/Badge.types.js.map +1 -0
  48. package/dist/Badge/index.d.ts +2 -0
  49. package/dist/Badge/index.js +2 -0
  50. package/dist/Badge/index.js.map +1 -0
  51. package/dist/Banner/Banner.d.ts +21 -0
  52. package/dist/Banner/Banner.js +171 -0
  53. package/dist/Banner/Banner.js.map +1 -0
  54. package/dist/Banner/Banner.styles.d.ts +17 -0
  55. package/dist/Banner/Banner.styles.js +59 -0
  56. package/dist/Banner/Banner.styles.js.map +1 -0
  57. package/dist/Banner/Banner.types.d.ts +33 -0
  58. package/dist/Banner/Banner.types.js +2 -0
  59. package/dist/Banner/Banner.types.js.map +1 -0
  60. package/dist/Banner/index.d.ts +2 -0
  61. package/dist/Banner/index.js +2 -0
  62. package/dist/Banner/index.js.map +1 -0
  63. package/dist/Box/Box.d.ts +4 -0
  64. package/dist/Box/Box.js +63 -0
  65. package/dist/Box/Box.js.map +1 -0
  66. package/dist/Box/Box.styles.d.ts +2 -0
  67. package/dist/Box/Box.styles.js +35 -0
  68. package/dist/Box/Box.styles.js.map +1 -0
  69. package/dist/Box/Box.types.d.ts +243 -0
  70. package/dist/Box/Box.types.js +2 -0
  71. package/dist/Box/Box.types.js.map +1 -0
  72. package/dist/Box/index.d.ts +2 -0
  73. package/dist/Box/index.js +2 -0
  74. package/dist/Box/index.js.map +1 -0
  75. package/dist/Breadcrumbs/Breadcrumbs.d.ts +10 -0
  76. package/dist/Breadcrumbs/Breadcrumbs.js +89 -0
  77. package/dist/Breadcrumbs/Breadcrumbs.js.map +1 -0
  78. package/dist/Breadcrumbs/Breadcrumbs.styles.d.ts +5 -0
  79. package/dist/Breadcrumbs/Breadcrumbs.styles.js +26 -0
  80. package/dist/Breadcrumbs/Breadcrumbs.styles.js.map +1 -0
  81. package/dist/Breadcrumbs/Breadcrumbs.types.d.ts +28 -0
  82. package/dist/Breadcrumbs/Breadcrumbs.types.js +9 -0
  83. package/dist/Breadcrumbs/Breadcrumbs.types.js.map +1 -0
  84. package/dist/Breadcrumbs/index.d.ts +2 -0
  85. package/dist/Breadcrumbs/index.js +2 -0
  86. package/dist/Breadcrumbs/index.js.map +1 -0
  87. package/dist/Button/Button.d.ts +16 -0
  88. package/dist/Button/Button.js +82 -0
  89. package/dist/Button/Button.js.map +1 -0
  90. package/dist/Button/Button.styles.d.ts +27 -0
  91. package/dist/Button/Button.styles.js +111 -0
  92. package/dist/Button/Button.styles.js.map +1 -0
  93. package/dist/Button/Button.types.d.ts +42 -0
  94. package/dist/Button/Button.types.js +2 -0
  95. package/dist/Button/Button.types.js.map +1 -0
  96. package/dist/Button/index.d.ts +2 -0
  97. package/dist/Button/index.js +2 -0
  98. package/dist/Button/index.js.map +1 -0
  99. package/dist/Calendar/Calendar.d.ts +62 -0
  100. package/dist/Calendar/Calendar.js +196 -0
  101. package/dist/Calendar/Calendar.js.map +1 -0
  102. package/dist/Calendar/Calendar.styles.d.ts +16 -0
  103. package/dist/Calendar/Calendar.styles.js +32 -0
  104. package/dist/Calendar/Calendar.styles.js.map +1 -0
  105. package/dist/Calendar/Calendar.types.d.ts +154 -0
  106. package/dist/Calendar/Calendar.types.js +2 -0
  107. package/dist/Calendar/Calendar.types.js.map +1 -0
  108. package/dist/Calendar/index.d.ts +2 -0
  109. package/dist/Calendar/index.js +2 -0
  110. package/dist/Calendar/index.js.map +1 -0
  111. package/dist/Card/Card.d.ts +16 -0
  112. package/dist/Card/Card.js +48 -0
  113. package/dist/Card/Card.js.map +1 -0
  114. package/dist/Card/Card.styles.d.ts +6 -0
  115. package/dist/Card/Card.styles.js +18 -0
  116. package/dist/Card/Card.styles.js.map +1 -0
  117. package/dist/Card/Card.types.d.ts +41 -0
  118. package/dist/Card/Card.types.js +2 -0
  119. package/dist/Card/Card.types.js.map +1 -0
  120. package/dist/Card/index.d.ts +2 -0
  121. package/dist/Card/index.js +2 -0
  122. package/dist/Card/index.js.map +1 -0
  123. package/dist/Checkbox/Checkbox.d.ts +24 -0
  124. package/dist/Checkbox/Checkbox.js +59 -0
  125. package/dist/Checkbox/Checkbox.js.map +1 -0
  126. package/dist/Checkbox/Checkbox.styles.d.ts +16 -0
  127. package/dist/Checkbox/Checkbox.styles.js +80 -0
  128. package/dist/Checkbox/Checkbox.styles.js.map +1 -0
  129. package/dist/Checkbox/Checkbox.types.d.ts +34 -0
  130. package/dist/Checkbox/Checkbox.types.js +2 -0
  131. package/dist/Checkbox/Checkbox.types.js.map +1 -0
  132. package/dist/Checkbox/index.d.ts +2 -0
  133. package/dist/Checkbox/index.js +2 -0
  134. package/dist/Checkbox/index.js.map +1 -0
  135. package/dist/CheckboxGroup/CheckboxGroup.d.ts +12 -0
  136. package/dist/CheckboxGroup/CheckboxGroup.js +44 -0
  137. package/dist/CheckboxGroup/CheckboxGroup.js.map +1 -0
  138. package/dist/CheckboxGroup/CheckboxGroup.types.d.ts +12 -0
  139. package/dist/CheckboxGroup/CheckboxGroup.types.js +2 -0
  140. package/dist/CheckboxGroup/CheckboxGroup.types.js.map +1 -0
  141. package/dist/CheckboxGroup/index.d.ts +2 -0
  142. package/dist/CheckboxGroup/index.js +2 -0
  143. package/dist/CheckboxGroup/index.js.map +1 -0
  144. package/dist/ClickOutside/ClickOutside.d.ts +26 -0
  145. package/dist/ClickOutside/ClickOutside.js +48 -0
  146. package/dist/ClickOutside/ClickOutside.js.map +1 -0
  147. package/dist/ClickOutside/index.d.ts +1 -0
  148. package/dist/ClickOutside/index.js +2 -0
  149. package/dist/ClickOutside/index.js.map +1 -0
  150. package/dist/ContactItem/ContactItem.d.ts +8 -0
  151. package/dist/ContactItem/ContactItem.js +71 -0
  152. package/dist/ContactItem/ContactItem.js.map +1 -0
  153. package/dist/ContactItem/ContactItem.styles.d.ts +16 -0
  154. package/dist/ContactItem/ContactItem.styles.js +30 -0
  155. package/dist/ContactItem/ContactItem.styles.js.map +1 -0
  156. package/dist/ContactItem/ContactItem.types.d.ts +36 -0
  157. package/dist/ContactItem/ContactItem.types.js +2 -0
  158. package/dist/ContactItem/ContactItem.types.js.map +1 -0
  159. package/dist/ContactItem/index.d.ts +2 -0
  160. package/dist/ContactItem/index.js +2 -0
  161. package/dist/ContactItem/index.js.map +1 -0
  162. package/dist/Content/Content.d.ts +4 -0
  163. package/dist/Content/Content.js +20 -0
  164. package/dist/Content/Content.js.map +1 -0
  165. package/dist/Content/Content.styles.d.ts +3 -0
  166. package/dist/Content/Content.styles.js +13 -0
  167. package/dist/Content/Content.styles.js.map +1 -0
  168. package/dist/Content/index.d.ts +1 -0
  169. package/dist/Content/index.js +2 -0
  170. package/dist/Content/index.js.map +1 -0
  171. package/dist/DateInput/DateInput.d.ts +8 -0
  172. package/dist/DateInput/DateInput.js +386 -0
  173. package/dist/DateInput/DateInput.js.map +1 -0
  174. package/dist/DateInput/DateInput.styles.d.ts +19 -0
  175. package/dist/DateInput/DateInput.styles.js +38 -0
  176. package/dist/DateInput/DateInput.styles.js.map +1 -0
  177. package/dist/DateInput/DateInput.types.d.ts +167 -0
  178. package/dist/DateInput/DateInput.types.js +2 -0
  179. package/dist/DateInput/DateInput.types.js.map +1 -0
  180. package/dist/DateInput/index.d.ts +2 -0
  181. package/dist/DateInput/index.js +2 -0
  182. package/dist/DateInput/index.js.map +1 -0
  183. package/dist/DateSelect/DateSelect.d.ts +15 -0
  184. package/dist/DateSelect/DateSelect.js +134 -0
  185. package/dist/DateSelect/DateSelect.js.map +1 -0
  186. package/dist/DateSelect/DateSelect.types.d.ts +15 -0
  187. package/dist/DateSelect/DateSelect.types.js +2 -0
  188. package/dist/DateSelect/DateSelect.types.js.map +1 -0
  189. package/dist/DateSelect/index.d.ts +2 -0
  190. package/dist/DateSelect/index.js +2 -0
  191. package/dist/DateSelect/index.js.map +1 -0
  192. package/dist/DetailPage/DetailPage.constants.d.ts +6 -0
  193. package/dist/DetailPage/DetailPage.constants.js +47 -0
  194. package/dist/DetailPage/DetailPage.constants.js.map +1 -0
  195. package/dist/DetailPage/DetailPage.d.ts +67 -0
  196. package/dist/DetailPage/DetailPage.js +123 -0
  197. package/dist/DetailPage/DetailPage.js.map +1 -0
  198. package/dist/DetailPage/DetailPage.styles.d.ts +8 -0
  199. package/dist/DetailPage/DetailPage.styles.js +22 -0
  200. package/dist/DetailPage/DetailPage.styles.js.map +1 -0
  201. package/dist/DetailPage/DetailPage.types.d.ts +17 -0
  202. package/dist/DetailPage/DetailPage.types.js +2 -0
  203. package/dist/DetailPage/DetailPage.types.js.map +1 -0
  204. package/dist/DetailPage/RankedHeading.d.ts +6 -0
  205. package/dist/DetailPage/RankedHeading.js +14 -0
  206. package/dist/DetailPage/RankedHeading.js.map +1 -0
  207. package/dist/DetailPage/index.d.ts +2 -0
  208. package/dist/DetailPage/index.js +2 -0
  209. package/dist/DetailPage/index.js.map +1 -0
  210. package/dist/Dropdown/Dropdown.d.ts +12 -0
  211. package/dist/Dropdown/Dropdown.js +127 -0
  212. package/dist/Dropdown/Dropdown.js.map +1 -0
  213. package/dist/Dropdown/Dropdown.styles.d.ts +8 -0
  214. package/dist/Dropdown/Dropdown.styles.js +22 -0
  215. package/dist/Dropdown/Dropdown.styles.js.map +1 -0
  216. package/dist/Dropdown/Dropdown.types.d.ts +182 -0
  217. package/dist/Dropdown/Dropdown.types.js +2 -0
  218. package/dist/Dropdown/Dropdown.types.js.map +1 -0
  219. package/dist/Dropdown/index.d.ts +2 -0
  220. package/dist/Dropdown/index.js +2 -0
  221. package/dist/Dropdown/index.js.map +1 -0
  222. package/dist/DropdownFlyout/DropdownFlyout.d.ts +21 -0
  223. package/dist/DropdownFlyout/DropdownFlyout.helpers.d.ts +44 -0
  224. package/dist/DropdownFlyout/DropdownFlyout.helpers.js +266 -0
  225. package/dist/DropdownFlyout/DropdownFlyout.helpers.js.map +1 -0
  226. package/dist/DropdownFlyout/DropdownFlyout.js +166 -0
  227. package/dist/DropdownFlyout/DropdownFlyout.js.map +1 -0
  228. package/dist/DropdownFlyout/DropdownFlyout.styles.d.ts +4 -0
  229. package/dist/DropdownFlyout/DropdownFlyout.styles.js +16 -0
  230. package/dist/DropdownFlyout/DropdownFlyout.styles.js.map +1 -0
  231. package/dist/DropdownFlyout/DropdownFlyout.types.d.ts +137 -0
  232. package/dist/DropdownFlyout/DropdownFlyout.types.js +2 -0
  233. package/dist/DropdownFlyout/DropdownFlyout.types.js.map +1 -0
  234. package/dist/DropdownFlyout/index.d.ts +2 -0
  235. package/dist/DropdownFlyout/index.js +2 -0
  236. package/dist/DropdownFlyout/index.js.map +1 -0
  237. package/dist/DropdownFlyout/useDropdownFlyoutOverlay.d.ts +11 -0
  238. package/dist/DropdownFlyout/useDropdownFlyoutOverlay.js +14 -0
  239. package/dist/DropdownFlyout/useDropdownFlyoutOverlay.js.map +1 -0
  240. package/dist/Dropzone/Dropzone.d.ts +9 -0
  241. package/dist/Dropzone/Dropzone.hooks.d.ts +7 -0
  242. package/dist/Dropzone/Dropzone.hooks.js +228 -0
  243. package/dist/Dropzone/Dropzone.hooks.js.map +1 -0
  244. package/dist/Dropzone/Dropzone.js +193 -0
  245. package/dist/Dropzone/Dropzone.js.map +1 -0
  246. package/dist/Dropzone/Dropzone.styles.d.ts +17 -0
  247. package/dist/Dropzone/Dropzone.styles.js +44 -0
  248. package/dist/Dropzone/Dropzone.styles.js.map +1 -0
  249. package/dist/Dropzone/Dropzone.types.d.ts +283 -0
  250. package/dist/Dropzone/Dropzone.types.js +16 -0
  251. package/dist/Dropzone/Dropzone.types.js.map +1 -0
  252. package/dist/Dropzone/index.d.ts +3 -0
  253. package/dist/Dropzone/index.js +3 -0
  254. package/dist/Dropzone/index.js.map +1 -0
  255. package/dist/EmptyState/EmptyState.d.ts +15 -0
  256. package/dist/EmptyState/EmptyState.js +152 -0
  257. package/dist/EmptyState/EmptyState.js.map +1 -0
  258. package/dist/EmptyState/EmptyState.styles.d.ts +8 -0
  259. package/dist/EmptyState/EmptyState.styles.js +27 -0
  260. package/dist/EmptyState/EmptyState.styles.js.map +1 -0
  261. package/dist/EmptyState/EmptyState.types.d.ts +20 -0
  262. package/dist/EmptyState/EmptyState.types.js +2 -0
  263. package/dist/EmptyState/EmptyState.types.js.map +1 -0
  264. package/dist/EmptyState/index.d.ts +2 -0
  265. package/dist/EmptyState/index.js +2 -0
  266. package/dist/EmptyState/index.js.map +1 -0
  267. package/dist/Field/Field.d.ts +12 -0
  268. package/dist/Field/Field.js +50 -0
  269. package/dist/Field/Field.js.map +1 -0
  270. package/dist/Field/Field.styles.d.ts +3 -0
  271. package/dist/Field/Field.styles.js +11 -0
  272. package/dist/Field/Field.styles.js.map +1 -0
  273. package/dist/Field/index.d.ts +1 -0
  274. package/dist/Field/index.js +2 -0
  275. package/dist/Field/index.js.map +1 -0
  276. package/dist/FileList/FileList.d.ts +17 -0
  277. package/dist/FileList/FileList.js +77 -0
  278. package/dist/FileList/FileList.js.map +1 -0
  279. package/dist/FileList/FileList.styles.d.ts +5 -0
  280. package/dist/FileList/FileList.styles.js +13 -0
  281. package/dist/FileList/FileList.styles.js.map +1 -0
  282. package/dist/FileList/FileList.types.d.ts +51 -0
  283. package/dist/FileList/FileList.types.js +2 -0
  284. package/dist/FileList/FileList.types.js.map +1 -0
  285. package/dist/FileList/index.d.ts +2 -0
  286. package/dist/FileList/index.js +2 -0
  287. package/dist/FileList/index.js.map +1 -0
  288. package/dist/FileSelect/FileExplorer/FileExplorer.d.ts +3 -0
  289. package/dist/FileSelect/FileExplorer/FileExplorer.js +75 -0
  290. package/dist/FileSelect/FileExplorer/FileExplorer.js.map +1 -0
  291. package/dist/FileSelect/FileExplorer/FileExplorer.styles.d.ts +16 -0
  292. package/dist/FileSelect/FileExplorer/FileExplorer.styles.js +33 -0
  293. package/dist/FileSelect/FileExplorer/FileExplorer.styles.js.map +1 -0
  294. package/dist/FileSelect/FileExplorer/FileExplorer.types.d.ts +82 -0
  295. package/dist/FileSelect/FileExplorer/FileExplorer.types.js +2 -0
  296. package/dist/FileSelect/FileExplorer/FileExplorer.types.js.map +1 -0
  297. package/dist/FileSelect/FileExplorer/FileExplorerModal.d.ts +4 -0
  298. package/dist/FileSelect/FileExplorer/FileExplorerModal.js +38 -0
  299. package/dist/FileSelect/FileExplorer/FileExplorerModal.js.map +1 -0
  300. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.d.ts +3 -0
  301. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.js +67 -0
  302. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.js.map +1 -0
  303. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.styles.d.ts +4 -0
  304. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.styles.js +13 -0
  305. package/dist/FileSelect/FileExplorer/FileExplorerSidebar.styles.js.map +1 -0
  306. package/dist/FileSelect/FileExplorer/useSidebarNavigation.d.ts +2 -0
  307. package/dist/FileSelect/FileExplorer/useSidebarNavigation.js +54 -0
  308. package/dist/FileSelect/FileExplorer/useSidebarNavigation.js.map +1 -0
  309. package/dist/FileSelect/FileSelect.d.ts +25 -0
  310. package/dist/FileSelect/FileSelect.js +368 -0
  311. package/dist/FileSelect/FileSelect.js.map +1 -0
  312. package/dist/FileSelect/FileSelect.styles.d.ts +3 -0
  313. package/dist/FileSelect/FileSelect.styles.js +11 -0
  314. package/dist/FileSelect/FileSelect.styles.js.map +1 -0
  315. package/dist/FileSelect/FileSelect.types.d.ts +295 -0
  316. package/dist/FileSelect/FileSelect.types.js +2 -0
  317. package/dist/FileSelect/FileSelect.types.js.map +1 -0
  318. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.d.ts +3 -0
  319. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.js +58 -0
  320. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.js.map +1 -0
  321. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.styles.d.ts +9 -0
  322. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.styles.js +22 -0
  323. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.styles.js.map +1 -0
  324. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.types.d.ts +104 -0
  325. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.types.js +2 -0
  326. package/dist/FileSelect/FileSelectDropzone/FileSelectDropzone.types.js.map +1 -0
  327. package/dist/FileSelect/FileSelectDropzone/index.d.ts +2 -0
  328. package/dist/FileSelect/FileSelectDropzone/index.js +2 -0
  329. package/dist/FileSelect/FileSelectDropzone/index.js.map +1 -0
  330. package/dist/FileSelect/FileTokenList/FileToken.types.d.ts +47 -0
  331. package/dist/FileSelect/FileTokenList/FileToken.types.js +2 -0
  332. package/dist/FileSelect/FileTokenList/FileToken.types.js.map +1 -0
  333. package/dist/FileSelect/FileTokenList/FileTokenList.d.ts +4 -0
  334. package/dist/FileSelect/FileTokenList/FileTokenList.js +102 -0
  335. package/dist/FileSelect/FileTokenList/FileTokenList.js.map +1 -0
  336. package/dist/FileSelect/FileTokenList/FileTokenList.styles.d.ts +3 -0
  337. package/dist/FileSelect/FileTokenList/FileTokenList.styles.js +11 -0
  338. package/dist/FileSelect/FileTokenList/FileTokenList.styles.js.map +1 -0
  339. package/dist/FileSelect/FileTokenList/index.d.ts +1 -0
  340. package/dist/FileSelect/FileTokenList/index.js +2 -0
  341. package/dist/FileSelect/FileTokenList/index.js.map +1 -0
  342. package/dist/FileSelect/GridSource/GridSource.d.ts +4 -0
  343. package/dist/FileSelect/GridSource/GridSource.js +213 -0
  344. package/dist/FileSelect/GridSource/GridSource.js.map +1 -0
  345. package/dist/FileSelect/GridSource/GridSource.styles.d.ts +25 -0
  346. package/dist/FileSelect/GridSource/GridSource.styles.js +35 -0
  347. package/dist/FileSelect/GridSource/GridSource.styles.js.map +1 -0
  348. package/dist/FileSelect/GridSource/GridSource.types.d.ts +135 -0
  349. package/dist/FileSelect/GridSource/GridSource.types.js +2 -0
  350. package/dist/FileSelect/GridSource/GridSource.types.js.map +1 -0
  351. package/dist/FileSelect/GridSource/index.d.ts +2 -0
  352. package/dist/FileSelect/GridSource/index.js +2 -0
  353. package/dist/FileSelect/GridSource/index.js.map +1 -0
  354. package/dist/FileSelect/LocalSource/LocalSource.d.ts +3 -0
  355. package/dist/FileSelect/LocalSource/LocalSource.js +341 -0
  356. package/dist/FileSelect/LocalSource/LocalSource.js.map +1 -0
  357. package/dist/FileSelect/LocalSource/LocalSource.styles.d.ts +11 -0
  358. package/dist/FileSelect/LocalSource/LocalSource.styles.js +28 -0
  359. package/dist/FileSelect/LocalSource/LocalSource.styles.js.map +1 -0
  360. package/dist/FileSelect/LocalSource/LocalSource.types.d.ts +169 -0
  361. package/dist/FileSelect/LocalSource/LocalSource.types.js +2 -0
  362. package/dist/FileSelect/LocalSource/LocalSource.types.js.map +1 -0
  363. package/dist/FileSelect/LocalSource/index.d.ts +2 -0
  364. package/dist/FileSelect/LocalSource/index.js +2 -0
  365. package/dist/FileSelect/LocalSource/index.js.map +1 -0
  366. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.d.ts +3 -0
  367. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.js +78 -0
  368. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.js.map +1 -0
  369. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.types.d.ts +16 -0
  370. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.types.js +2 -0
  371. package/dist/FileSelect/ProgressAnnouncer/ProgressAnnouncer.types.js.map +1 -0
  372. package/dist/FileSelect/ProgressAnnouncer/index.d.ts +1 -0
  373. package/dist/FileSelect/ProgressAnnouncer/index.js +2 -0
  374. package/dist/FileSelect/ProgressAnnouncer/index.js.map +1 -0
  375. package/dist/FileSelect/SourceItem/SourceItem.d.ts +37 -0
  376. package/dist/FileSelect/SourceItem/SourceItem.js +65 -0
  377. package/dist/FileSelect/SourceItem/SourceItem.js.map +1 -0
  378. package/dist/FileSelect/SourceItem/SourceItem.styles.d.ts +8 -0
  379. package/dist/FileSelect/SourceItem/SourceItem.styles.js +31 -0
  380. package/dist/FileSelect/SourceItem/SourceItem.styles.js.map +1 -0
  381. package/dist/FileSelect/ThumbnailList/ThumbnailList.d.ts +5 -0
  382. package/dist/FileSelect/ThumbnailList/ThumbnailList.js +127 -0
  383. package/dist/FileSelect/ThumbnailList/ThumbnailList.js.map +1 -0
  384. package/dist/FileSelect/ThumbnailList/ThumbnailList.styles.d.ts +17 -0
  385. package/dist/FileSelect/ThumbnailList/ThumbnailList.styles.js +32 -0
  386. package/dist/FileSelect/ThumbnailList/ThumbnailList.styles.js.map +1 -0
  387. package/dist/FileSelect/ThumbnailList/ThumbnailList.types.d.ts +43 -0
  388. package/dist/FileSelect/ThumbnailList/ThumbnailList.types.js +2 -0
  389. package/dist/FileSelect/ThumbnailList/ThumbnailList.types.js.map +1 -0
  390. package/dist/FileSelect/ThumbnailList/index.d.ts +1 -0
  391. package/dist/FileSelect/ThumbnailList/index.js +2 -0
  392. package/dist/FileSelect/ThumbnailList/index.js.map +1 -0
  393. package/dist/FileSelect/TreeSource/TreeSource.d.ts +4 -0
  394. package/dist/FileSelect/TreeSource/TreeSource.js +157 -0
  395. package/dist/FileSelect/TreeSource/TreeSource.js.map +1 -0
  396. package/dist/FileSelect/TreeSource/TreeSource.styles.d.ts +1 -0
  397. package/dist/FileSelect/TreeSource/TreeSource.styles.js +9 -0
  398. package/dist/FileSelect/TreeSource/TreeSource.styles.js.map +1 -0
  399. package/dist/FileSelect/TreeSource/TreeSource.types.d.ts +39 -0
  400. package/dist/FileSelect/TreeSource/TreeSource.types.js +2 -0
  401. package/dist/FileSelect/TreeSource/TreeSource.types.js.map +1 -0
  402. package/dist/FileSelect/TreeSource/index.d.ts +2 -0
  403. package/dist/FileSelect/TreeSource/index.js +2 -0
  404. package/dist/FileSelect/TreeSource/index.js.map +1 -0
  405. package/dist/FileSelect/index.d.ts +3 -0
  406. package/dist/FileSelect/index.js +2 -0
  407. package/dist/FileSelect/index.js.map +1 -0
  408. package/dist/FileSelect/storyHelpers.d.ts +15 -0
  409. package/dist/FileSelect/storyHelpers.js +117 -0
  410. package/dist/FileSelect/storyHelpers.js.map +1 -0
  411. package/dist/FileToken/FileToken.d.ts +8 -0
  412. package/dist/FileToken/FileToken.js +97 -0
  413. package/dist/FileToken/FileToken.js.map +1 -0
  414. package/dist/FileToken/FileToken.styles.d.ts +9 -0
  415. package/dist/FileToken/FileToken.styles.js +28 -0
  416. package/dist/FileToken/FileToken.styles.js.map +1 -0
  417. package/dist/FileToken/FileToken.types.d.ts +34 -0
  418. package/dist/FileToken/FileToken.types.js +2 -0
  419. package/dist/FileToken/FileToken.types.js.map +1 -0
  420. package/dist/FileToken/index.d.ts +1 -0
  421. package/dist/FileToken/index.js +2 -0
  422. package/dist/FileToken/index.js.map +1 -0
  423. package/dist/FilterToken/FilterToken.d.ts +7 -0
  424. package/dist/FilterToken/FilterToken.js +49 -0
  425. package/dist/FilterToken/FilterToken.js.map +1 -0
  426. package/dist/FilterToken/FilterToken.styles.d.ts +4 -0
  427. package/dist/FilterToken/FilterToken.styles.js +16 -0
  428. package/dist/FilterToken/FilterToken.styles.js.map +1 -0
  429. package/dist/FilterToken/FilterToken.types.d.ts +6 -0
  430. package/dist/FilterToken/FilterToken.types.js +2 -0
  431. package/dist/FilterToken/FilterToken.types.js.map +1 -0
  432. package/dist/FilterToken/index.d.ts +2 -0
  433. package/dist/FilterToken/index.js +2 -0
  434. package/dist/FilterToken/index.js.map +1 -0
  435. package/dist/Flex/Flex.d.ts +4 -0
  436. package/dist/Flex/Flex.js +30 -0
  437. package/dist/Flex/Flex.js.map +1 -0
  438. package/dist/Flex/Flex.types.d.ts +46 -0
  439. package/dist/Flex/Flex.types.js +2 -0
  440. package/dist/Flex/Flex.types.js.map +1 -0
  441. package/dist/Flex/index.d.ts +2 -0
  442. package/dist/Flex/index.js +2 -0
  443. package/dist/Flex/index.js.map +1 -0
  444. package/dist/FlexList/FlexList.d.ts +4 -0
  445. package/dist/FlexList/FlexList.js +57 -0
  446. package/dist/FlexList/FlexList.js.map +1 -0
  447. package/dist/FlexList/FlexList.styles.d.ts +5 -0
  448. package/dist/FlexList/FlexList.styles.js +16 -0
  449. package/dist/FlexList/FlexList.styles.js.map +1 -0
  450. package/dist/FlexList/FlexList.types.d.ts +19 -0
  451. package/dist/FlexList/FlexList.types.js +2 -0
  452. package/dist/FlexList/FlexList.types.js.map +1 -0
  453. package/dist/FlexList/index.d.ts +2 -0
  454. package/dist/FlexList/index.js +2 -0
  455. package/dist/FlexList/index.js.map +1 -0
  456. package/dist/Form/Form.d.ts +151 -0
  457. package/dist/Form/Form.js +840 -0
  458. package/dist/Form/Form.js.map +1 -0
  459. package/dist/Form/Form.styles.d.ts +44 -0
  460. package/dist/Form/Form.styles.js +74 -0
  461. package/dist/Form/Form.styles.js.map +1 -0
  462. package/dist/Form/Form.types.d.ts +530 -0
  463. package/dist/Form/Form.types.js +2 -0
  464. package/dist/Form/Form.types.js.map +1 -0
  465. package/dist/Form/closeWithConfirm.d.ts +10 -0
  466. package/dist/Form/closeWithConfirm.js +37 -0
  467. package/dist/Form/closeWithConfirm.js.map +1 -0
  468. package/dist/Form/index.d.ts +2 -0
  469. package/dist/Form/index.js +2 -0
  470. package/dist/Form/index.js.map +1 -0
  471. package/dist/Form/stories/util.d.ts +118 -0
  472. package/dist/Form/stories/util.js +411 -0
  473. package/dist/Form/stories/util.js.map +1 -0
  474. package/dist/Grid/Grid.constants.d.ts +4 -0
  475. package/dist/Grid/Grid.constants.js +25 -0
  476. package/dist/Grid/Grid.constants.js.map +1 -0
  477. package/dist/Grid/Grid.d.ts +8 -0
  478. package/dist/Grid/Grid.js +56 -0
  479. package/dist/Grid/Grid.js.map +1 -0
  480. package/dist/Grid/Grid.styles.d.ts +12 -0
  481. package/dist/Grid/Grid.styles.js +102 -0
  482. package/dist/Grid/Grid.styles.js.map +1 -0
  483. package/dist/Grid/Grid.types.d.ts +77 -0
  484. package/dist/Grid/Grid.types.js +2 -0
  485. package/dist/Grid/Grid.types.js.map +1 -0
  486. package/dist/Grid/Grid.utils.d.ts +1 -0
  487. package/dist/Grid/Grid.utils.js +11 -0
  488. package/dist/Grid/Grid.utils.js.map +1 -0
  489. package/dist/Grid/index.d.ts +2 -0
  490. package/dist/Grid/index.js +2 -0
  491. package/dist/Grid/index.js.map +1 -0
  492. package/dist/GroupSelect/GroupSelect.d.ts +16 -0
  493. package/dist/GroupSelect/GroupSelect.js +171 -0
  494. package/dist/GroupSelect/GroupSelect.js.map +1 -0
  495. package/dist/GroupSelect/GroupSelect.styles.d.ts +4 -0
  496. package/dist/GroupSelect/GroupSelect.styles.js +13 -0
  497. package/dist/GroupSelect/GroupSelect.styles.js.map +1 -0
  498. package/dist/GroupSelect/GroupSelect.types.d.ts +125 -0
  499. package/dist/GroupSelect/GroupSelect.types.js +2 -0
  500. package/dist/GroupSelect/GroupSelect.types.js.map +1 -0
  501. package/dist/GroupSelect/index.d.ts +2 -0
  502. package/dist/GroupSelect/index.js +2 -0
  503. package/dist/GroupSelect/index.js.map +1 -0
  504. package/dist/Input/Input.d.ts +13 -0
  505. package/dist/Input/Input.js +39 -0
  506. package/dist/Input/Input.js.map +1 -0
  507. package/dist/Input/Input.styles.d.ts +12 -0
  508. package/dist/Input/Input.styles.js +22 -0
  509. package/dist/Input/Input.styles.js.map +1 -0
  510. package/dist/Input/Input.types.d.ts +14 -0
  511. package/dist/Input/Input.types.js +2 -0
  512. package/dist/Input/Input.types.js.map +1 -0
  513. package/dist/Input/index.d.ts +2 -0
  514. package/dist/Input/index.js +2 -0
  515. package/dist/Input/index.js.map +1 -0
  516. package/dist/Link/Link.d.ts +18 -0
  517. package/dist/Link/Link.js +45 -0
  518. package/dist/Link/Link.js.map +1 -0
  519. package/dist/Link/Link.styles.d.ts +2 -0
  520. package/dist/Link/Link.styles.js +23 -0
  521. package/dist/Link/Link.styles.js.map +1 -0
  522. package/dist/Link/Link.types.d.ts +10 -0
  523. package/dist/Link/Link.types.js +2 -0
  524. package/dist/Link/Link.types.js.map +1 -0
  525. package/dist/Link/index.d.ts +2 -0
  526. package/dist/Link/index.js +2 -0
  527. package/dist/Link/index.js.map +1 -0
  528. package/dist/ListPage/ListPage.d.ts +18 -0
  529. package/dist/ListPage/ListPage.js +69 -0
  530. package/dist/ListPage/ListPage.js.map +1 -0
  531. package/dist/ListPage/ListPage.styles.d.ts +14 -0
  532. package/dist/ListPage/ListPage.styles.js +30 -0
  533. package/dist/ListPage/ListPage.styles.js.map +1 -0
  534. package/dist/ListPage/ListPage.types.d.ts +28 -0
  535. package/dist/ListPage/ListPage.types.js +2 -0
  536. package/dist/ListPage/ListPage.types.js.map +1 -0
  537. package/dist/ListPage/index.d.ts +1 -0
  538. package/dist/ListPage/index.js +2 -0
  539. package/dist/ListPage/index.js.map +1 -0
  540. package/dist/Loader/Loader.d.ts +10 -0
  541. package/dist/Loader/Loader.js +43 -0
  542. package/dist/Loader/Loader.js.map +1 -0
  543. package/dist/Loader/Loader.styles.d.ts +5 -0
  544. package/dist/Loader/Loader.styles.js +19 -0
  545. package/dist/Loader/Loader.styles.js.map +1 -0
  546. package/dist/Loader/Loader.types.d.ts +11 -0
  547. package/dist/Loader/Loader.types.js +2 -0
  548. package/dist/Loader/Loader.types.js.map +1 -0
  549. package/dist/Loader/index.d.ts +1 -0
  550. package/dist/Loader/index.js +2 -0
  551. package/dist/Loader/index.js.map +1 -0
  552. package/dist/Menu/Menu.d.ts +40 -0
  553. package/dist/Menu/Menu.js +284 -0
  554. package/dist/Menu/Menu.js.map +1 -0
  555. package/dist/Menu/Menu.types.d.ts +236 -0
  556. package/dist/Menu/Menu.types.js +2 -0
  557. package/dist/Menu/Menu.types.js.map +1 -0
  558. package/dist/Menu/index.d.ts +2 -0
  559. package/dist/Menu/index.js +2 -0
  560. package/dist/Menu/index.js.map +1 -0
  561. package/dist/MenuImperative/MenuImperative.d.ts +58 -0
  562. package/dist/MenuImperative/MenuImperative.js +379 -0
  563. package/dist/MenuImperative/MenuImperative.js.map +1 -0
  564. package/dist/MenuImperative/MenuImperative.styles.d.ts +21 -0
  565. package/dist/MenuImperative/MenuImperative.styles.js +54 -0
  566. package/dist/MenuImperative/MenuImperative.styles.js.map +1 -0
  567. package/dist/MenuImperative/MenuImperative.types.d.ts +260 -0
  568. package/dist/MenuImperative/MenuImperative.types.js +2 -0
  569. package/dist/MenuImperative/MenuImperative.types.js.map +1 -0
  570. package/dist/MenuImperative/index.d.ts +3 -0
  571. package/dist/MenuImperative/index.js +3 -0
  572. package/dist/MenuImperative/index.js.map +1 -0
  573. package/dist/MenuImperative/sensors.d.ts +22 -0
  574. package/dist/MenuImperative/sensors.js +254 -0
  575. package/dist/MenuImperative/sensors.js.map +1 -0
  576. package/dist/Modal/Modal.d.ts +24 -0
  577. package/dist/Modal/Modal.js +239 -0
  578. package/dist/Modal/Modal.js.map +1 -0
  579. package/dist/Modal/Modal.styles.d.ts +35 -0
  580. package/dist/Modal/Modal.styles.js +59 -0
  581. package/dist/Modal/Modal.styles.js.map +1 -0
  582. package/dist/Modal/Modal.types.d.ts +134 -0
  583. package/dist/Modal/Modal.types.js +2 -0
  584. package/dist/Modal/Modal.types.js.map +1 -0
  585. package/dist/Modal/index.d.ts +2 -0
  586. package/dist/Modal/index.js +2 -0
  587. package/dist/Modal/index.js.map +1 -0
  588. package/dist/Modal/storyHelpers.d.ts +2 -0
  589. package/dist/Modal/storyHelpers.js +164 -0
  590. package/dist/Modal/storyHelpers.js.map +1 -0
  591. package/dist/MultiSelect/MultiSelect.d.ts +10 -0
  592. package/dist/MultiSelect/MultiSelect.js +390 -0
  593. package/dist/MultiSelect/MultiSelect.js.map +1 -0
  594. package/dist/MultiSelect/MultiSelect.styles.d.ts +23 -0
  595. package/dist/MultiSelect/MultiSelect.styles.js +28 -0
  596. package/dist/MultiSelect/MultiSelect.styles.js.map +1 -0
  597. package/dist/MultiSelect/MultiSelect.types.d.ts +371 -0
  598. package/dist/MultiSelect/MultiSelect.types.js +2 -0
  599. package/dist/MultiSelect/MultiSelect.types.js.map +1 -0
  600. package/dist/MultiSelect/index.d.ts +2 -0
  601. package/dist/MultiSelect/index.js +2 -0
  602. package/dist/MultiSelect/index.js.map +1 -0
  603. package/dist/NextMenu/NextMenu.d.ts +34 -0
  604. package/dist/NextMenu/NextMenu.js +100 -0
  605. package/dist/NextMenu/NextMenu.js.map +1 -0
  606. package/dist/NextMenu/NextMenu.styles.d.ts +6 -0
  607. package/dist/NextMenu/NextMenu.styles.js +15 -0
  608. package/dist/NextMenu/NextMenu.styles.js.map +1 -0
  609. package/dist/NextMenu/NextMenu.types.d.ts +104 -0
  610. package/dist/NextMenu/NextMenu.types.js +2 -0
  611. package/dist/NextMenu/NextMenu.types.js.map +1 -0
  612. package/dist/NextMenu/NextMenuItem.d.ts +10 -0
  613. package/dist/NextMenu/NextMenuItem.js +40 -0
  614. package/dist/NextMenu/NextMenuItem.js.map +1 -0
  615. package/dist/NextMenu/sampleData.d.ts +31 -0
  616. package/dist/NextMenu/sampleData.js +186 -0
  617. package/dist/NextMenu/sampleData.js.map +1 -0
  618. package/dist/NextTile/NextTile.d.ts +35 -0
  619. package/dist/NextTile/NextTile.js +142 -0
  620. package/dist/NextTile/NextTile.js.map +1 -0
  621. package/dist/NextTile/NextTile.types.d.ts +55 -0
  622. package/dist/NextTile/NextTile.types.js +2 -0
  623. package/dist/NextTile/NextTile.types.js.map +1 -0
  624. package/dist/Notation/Notation.d.ts +11 -0
  625. package/dist/Notation/Notation.js +63 -0
  626. package/dist/Notation/Notation.js.map +1 -0
  627. package/dist/Notation/Notation.types.d.ts +16 -0
  628. package/dist/Notation/Notation.types.js +7 -0
  629. package/dist/Notation/Notation.types.js.map +1 -0
  630. package/dist/Notation/index.d.ts +2 -0
  631. package/dist/Notation/index.js +2 -0
  632. package/dist/Notation/index.js.map +1 -0
  633. package/dist/NumberInput/NumberInput.constants.d.ts +8 -0
  634. package/dist/NumberInput/NumberInput.constants.js +9 -0
  635. package/dist/NumberInput/NumberInput.constants.js.map +1 -0
  636. package/dist/NumberInput/NumberInput.d.ts +20 -0
  637. package/dist/NumberInput/NumberInput.hooks.d.ts +21 -0
  638. package/dist/NumberInput/NumberInput.hooks.js +48 -0
  639. package/dist/NumberInput/NumberInput.hooks.js.map +1 -0
  640. package/dist/NumberInput/NumberInput.js +376 -0
  641. package/dist/NumberInput/NumberInput.js.map +1 -0
  642. package/dist/NumberInput/NumberInput.styles.d.ts +19 -0
  643. package/dist/NumberInput/NumberInput.styles.js +34 -0
  644. package/dist/NumberInput/NumberInput.styles.js.map +1 -0
  645. package/dist/NumberInput/NumberInput.types.d.ts +156 -0
  646. package/dist/NumberInput/NumberInput.types.js +2 -0
  647. package/dist/NumberInput/NumberInput.types.js.map +1 -0
  648. package/dist/NumberInput/NumberInput.utils.d.ts +55 -0
  649. package/dist/NumberInput/NumberInput.utils.js +509 -0
  650. package/dist/NumberInput/NumberInput.utils.js.map +1 -0
  651. package/dist/NumberInput/index.d.ts +2 -0
  652. package/dist/NumberInput/index.js +2 -0
  653. package/dist/NumberInput/index.js.map +1 -0
  654. package/dist/Overlay/Overlay.d.ts +18 -0
  655. package/dist/Overlay/Overlay.js +44 -0
  656. package/dist/Overlay/Overlay.js.map +1 -0
  657. package/dist/Overlay/OverlayArrow.d.ts +11 -0
  658. package/dist/Overlay/OverlayArrow.js +25 -0
  659. package/dist/Overlay/OverlayArrow.js.map +1 -0
  660. package/dist/Overlay/OverlayArrow.styles.d.ts +2 -0
  661. package/dist/Overlay/OverlayArrow.styles.js +9 -0
  662. package/dist/Overlay/OverlayArrow.styles.js.map +1 -0
  663. package/dist/Overlay/index.d.ts +1 -0
  664. package/dist/Overlay/index.js +2 -0
  665. package/dist/Overlay/index.js.map +1 -0
  666. package/dist/Overlay/useOverlay.d.ts +21 -0
  667. package/dist/Overlay/useOverlay.js +24 -0
  668. package/dist/Overlay/useOverlay.js.map +1 -0
  669. package/dist/OverlayTrigger/OverlayTrigger.d.ts +35 -0
  670. package/dist/OverlayTrigger/OverlayTrigger.js +241 -0
  671. package/dist/OverlayTrigger/OverlayTrigger.js.map +1 -0
  672. package/dist/OverlayTrigger/OverlayTrigger.types.d.ts +119 -0
  673. package/dist/OverlayTrigger/OverlayTrigger.types.js +2 -0
  674. package/dist/OverlayTrigger/OverlayTrigger.types.js.map +1 -0
  675. package/dist/OverlayTrigger/a11yPresets.d.ts +215 -0
  676. package/dist/OverlayTrigger/a11yPresets.js +268 -0
  677. package/dist/OverlayTrigger/a11yPresets.js.map +1 -0
  678. package/dist/OverlayTrigger/index.d.ts +2 -0
  679. package/dist/OverlayTrigger/index.js +2 -0
  680. package/dist/OverlayTrigger/index.js.map +1 -0
  681. package/dist/PageLayout/PageLayout.constants.d.ts +2 -0
  682. package/dist/PageLayout/PageLayout.constants.js +3 -0
  683. package/dist/PageLayout/PageLayout.constants.js.map +1 -0
  684. package/dist/PageLayout/PageLayout.d.ts +51 -0
  685. package/dist/PageLayout/PageLayout.js +332 -0
  686. package/dist/PageLayout/PageLayout.js.map +1 -0
  687. package/dist/PageLayout/PageLayout.styles.d.ts +43 -0
  688. package/dist/PageLayout/PageLayout.styles.js +95 -0
  689. package/dist/PageLayout/PageLayout.styles.js.map +1 -0
  690. package/dist/PageLayout/PageLayout.types.d.ts +27 -0
  691. package/dist/PageLayout/PageLayout.types.js +2 -0
  692. package/dist/PageLayout/PageLayout.types.js.map +1 -0
  693. package/dist/PageLayout/PageLayout.utils.d.ts +8 -0
  694. package/dist/PageLayout/PageLayout.utils.js +53 -0
  695. package/dist/PageLayout/PageLayout.utils.js.map +1 -0
  696. package/dist/PageLayout/index.d.ts +2 -0
  697. package/dist/PageLayout/index.js +2 -0
  698. package/dist/PageLayout/index.js.map +1 -0
  699. package/dist/Pagination/Pagination.d.ts +18 -0
  700. package/dist/Pagination/Pagination.js +90 -0
  701. package/dist/Pagination/Pagination.js.map +1 -0
  702. package/dist/Pagination/Pagination.styles.d.ts +6 -0
  703. package/dist/Pagination/Pagination.styles.js +16 -0
  704. package/dist/Pagination/Pagination.styles.js.map +1 -0
  705. package/dist/Pagination/Pagination.types.d.ts +151 -0
  706. package/dist/Pagination/Pagination.types.js +2 -0
  707. package/dist/Pagination/Pagination.types.js.map +1 -0
  708. package/dist/Pagination/PaginationSelect.d.ts +3 -0
  709. package/dist/Pagination/PaginationSelect.js +106 -0
  710. package/dist/Pagination/PaginationSelect.js.map +1 -0
  711. package/dist/Pagination/index.d.ts +2 -0
  712. package/dist/Pagination/index.js +2 -0
  713. package/dist/Pagination/index.js.map +1 -0
  714. package/dist/Panel/Panel.d.ts +23 -0
  715. package/dist/Panel/Panel.js +184 -0
  716. package/dist/Panel/Panel.js.map +1 -0
  717. package/dist/Panel/Panel.styles.d.ts +18 -0
  718. package/dist/Panel/Panel.styles.js +46 -0
  719. package/dist/Panel/Panel.styles.js.map +1 -0
  720. package/dist/Panel/Panel.types.d.ts +68 -0
  721. package/dist/Panel/Panel.types.js +2 -0
  722. package/dist/Panel/Panel.types.js.map +1 -0
  723. package/dist/Panel/index.d.ts +2 -0
  724. package/dist/Panel/index.js +2 -0
  725. package/dist/Panel/index.js.map +1 -0
  726. package/dist/Pill/Pill.d.ts +15 -0
  727. package/dist/Pill/Pill.js +41 -0
  728. package/dist/Pill/Pill.js.map +1 -0
  729. package/dist/Pill/Pill.styles.d.ts +4 -0
  730. package/dist/Pill/Pill.styles.js +31 -0
  731. package/dist/Pill/Pill.styles.js.map +1 -0
  732. package/dist/Pill/Pill.types.d.ts +10 -0
  733. package/dist/Pill/Pill.types.js +2 -0
  734. package/dist/Pill/Pill.types.js.map +1 -0
  735. package/dist/Pill/index.d.ts +2 -0
  736. package/dist/Pill/index.js +2 -0
  737. package/dist/Pill/index.js.map +1 -0
  738. package/dist/PillSelect/PillSelect.d.ts +17 -0
  739. package/dist/PillSelect/PillSelect.js +112 -0
  740. package/dist/PillSelect/PillSelect.js.map +1 -0
  741. package/dist/PillSelect/PillSelect.styles.d.ts +7 -0
  742. package/dist/PillSelect/PillSelect.styles.js +19 -0
  743. package/dist/PillSelect/PillSelect.styles.js.map +1 -0
  744. package/dist/PillSelect/PillSelect.types.d.ts +112 -0
  745. package/dist/PillSelect/PillSelect.types.js +2 -0
  746. package/dist/PillSelect/PillSelect.types.js.map +1 -0
  747. package/dist/PillSelect/index.d.ts +2 -0
  748. package/dist/PillSelect/index.js +2 -0
  749. package/dist/PillSelect/index.js.map +1 -0
  750. package/dist/Popover/Popover.d.ts +28 -0
  751. package/dist/Popover/Popover.js +63 -0
  752. package/dist/Popover/Popover.js.map +1 -0
  753. package/dist/Popover/Popover.styles.d.ts +9 -0
  754. package/dist/Popover/Popover.styles.js +18 -0
  755. package/dist/Popover/Popover.styles.js.map +1 -0
  756. package/dist/Popover/Popover.types.d.ts +60 -0
  757. package/dist/Popover/Popover.types.js +2 -0
  758. package/dist/Popover/Popover.types.js.map +1 -0
  759. package/dist/Popover/index.d.ts +2 -0
  760. package/dist/Popover/index.js +2 -0
  761. package/dist/Popover/index.js.map +1 -0
  762. package/dist/Portal/Portal.d.ts +8 -0
  763. package/dist/Portal/Portal.js +37 -0
  764. package/dist/Portal/Portal.js.map +1 -0
  765. package/dist/Portal/Portal.styles.d.ts +1 -0
  766. package/dist/Portal/Portal.styles.js +8 -0
  767. package/dist/Portal/Portal.styles.js.map +1 -0
  768. package/dist/Portal/Portal.types.d.ts +7 -0
  769. package/dist/Portal/Portal.types.js +2 -0
  770. package/dist/Portal/Portal.types.js.map +1 -0
  771. package/dist/Portal/index.d.ts +1 -0
  772. package/dist/Portal/index.js +2 -0
  773. package/dist/Portal/index.js.map +1 -0
  774. package/dist/ProgressBar/ProgressBar.d.ts +15 -0
  775. package/dist/ProgressBar/ProgressBar.js +68 -0
  776. package/dist/ProgressBar/ProgressBar.js.map +1 -0
  777. package/dist/ProgressBar/ProgressBar.styles.d.ts +6 -0
  778. package/dist/ProgressBar/ProgressBar.styles.js +25 -0
  779. package/dist/ProgressBar/ProgressBar.styles.js.map +1 -0
  780. package/dist/ProgressBar/ProgressBar.types.d.ts +15 -0
  781. package/dist/ProgressBar/ProgressBar.types.js +2 -0
  782. package/dist/ProgressBar/ProgressBar.types.js.map +1 -0
  783. package/dist/ProgressBar/index.d.ts +2 -0
  784. package/dist/ProgressBar/index.js +2 -0
  785. package/dist/ProgressBar/index.js.map +1 -0
  786. package/dist/RadioButton/RadioButton.d.ts +17 -0
  787. package/dist/RadioButton/RadioButton.js +46 -0
  788. package/dist/RadioButton/RadioButton.js.map +1 -0
  789. package/dist/RadioButton/RadioButton.styles.d.ts +9 -0
  790. package/dist/RadioButton/RadioButton.styles.js +24 -0
  791. package/dist/RadioButton/RadioButton.styles.js.map +1 -0
  792. package/dist/RadioButton/RadioButton.types.d.ts +18 -0
  793. package/dist/RadioButton/RadioButton.types.js +2 -0
  794. package/dist/RadioButton/RadioButton.types.js.map +1 -0
  795. package/dist/RadioButton/index.d.ts +2 -0
  796. package/dist/RadioButton/index.js +2 -0
  797. package/dist/RadioButton/index.js.map +1 -0
  798. package/dist/Required/Required.d.ts +10 -0
  799. package/dist/Required/Required.js +44 -0
  800. package/dist/Required/Required.js.map +1 -0
  801. package/dist/Required/Required.styles.d.ts +5 -0
  802. package/dist/Required/Required.styles.js +18 -0
  803. package/dist/Required/Required.styles.js.map +1 -0
  804. package/dist/Required/Required.types.d.ts +19 -0
  805. package/dist/Required/Required.types.js +2 -0
  806. package/dist/Required/Required.types.js.map +1 -0
  807. package/dist/Required/index.d.ts +2 -0
  808. package/dist/Required/index.js +2 -0
  809. package/dist/Required/index.js.map +1 -0
  810. package/dist/Search/Search.d.ts +15 -0
  811. package/dist/Search/Search.hooks.d.ts +2 -0
  812. package/dist/Search/Search.hooks.js +46 -0
  813. package/dist/Search/Search.hooks.js.map +1 -0
  814. package/dist/Search/Search.js +69 -0
  815. package/dist/Search/Search.js.map +1 -0
  816. package/dist/Search/Search.styles.d.ts +14 -0
  817. package/dist/Search/Search.styles.js +31 -0
  818. package/dist/Search/Search.styles.js.map +1 -0
  819. package/dist/Search/Search.types.d.ts +86 -0
  820. package/dist/Search/Search.types.js +2 -0
  821. package/dist/Search/Search.types.js.map +1 -0
  822. package/dist/Search/index.d.ts +2 -0
  823. package/dist/Search/index.js +2 -0
  824. package/dist/Search/index.js.map +1 -0
  825. package/dist/Section/Section.d.ts +13 -0
  826. package/dist/Section/Section.js +120 -0
  827. package/dist/Section/Section.js.map +1 -0
  828. package/dist/Section/Section.styles.d.ts +21 -0
  829. package/dist/Section/Section.styles.js +28 -0
  830. package/dist/Section/Section.styles.js.map +1 -0
  831. package/dist/Section/Section.types.d.ts +66 -0
  832. package/dist/Section/Section.types.js +2 -0
  833. package/dist/Section/Section.types.js.map +1 -0
  834. package/dist/Section/index.d.ts +1 -0
  835. package/dist/Section/index.js +2 -0
  836. package/dist/Section/index.js.map +1 -0
  837. package/dist/SegmentedController/SegmentedController.d.ts +90 -0
  838. package/dist/SegmentedController/SegmentedController.js +187 -0
  839. package/dist/SegmentedController/SegmentedController.js.map +1 -0
  840. package/dist/SegmentedController/SegmentedController.styles.d.ts +10 -0
  841. package/dist/SegmentedController/SegmentedController.styles.js +37 -0
  842. package/dist/SegmentedController/SegmentedController.styles.js.map +1 -0
  843. package/dist/SegmentedController/SegmentedController.types.d.ts +69 -0
  844. package/dist/SegmentedController/SegmentedController.types.js +9 -0
  845. package/dist/SegmentedController/SegmentedController.types.js.map +1 -0
  846. package/dist/SegmentedController/index.d.ts +2 -0
  847. package/dist/SegmentedController/index.js +2 -0
  848. package/dist/SegmentedController/index.js.map +1 -0
  849. package/dist/Select/Select.d.ts +11 -0
  850. package/dist/Select/Select.js +167 -0
  851. package/dist/Select/Select.js.map +1 -0
  852. package/dist/Select/Select.styles.d.ts +23 -0
  853. package/dist/Select/Select.styles.js +63 -0
  854. package/dist/Select/Select.styles.js.map +1 -0
  855. package/dist/Select/Select.types.d.ts +274 -0
  856. package/dist/Select/Select.types.js +2 -0
  857. package/dist/Select/Select.types.js.map +1 -0
  858. package/dist/Select/index.d.ts +2 -0
  859. package/dist/Select/index.js +2 -0
  860. package/dist/Select/index.js.map +1 -0
  861. package/dist/Semantic/Semantic.d.ts +19 -0
  862. package/dist/Semantic/Semantic.js +66 -0
  863. package/dist/Semantic/Semantic.js.map +1 -0
  864. package/dist/Semantic/Semantic.styles.d.ts +26 -0
  865. package/dist/Semantic/Semantic.styles.js +58 -0
  866. package/dist/Semantic/Semantic.styles.js.map +1 -0
  867. package/dist/Semantic/Semantic.types.d.ts +8 -0
  868. package/dist/Semantic/Semantic.types.js +2 -0
  869. package/dist/Semantic/Semantic.types.js.map +1 -0
  870. package/dist/Semantic/index.d.ts +1 -0
  871. package/dist/Semantic/index.js +2 -0
  872. package/dist/Semantic/index.js.map +1 -0
  873. package/dist/Sidebar/Sidebar.d.ts +50 -0
  874. package/dist/Sidebar/Sidebar.js +100 -0
  875. package/dist/Sidebar/Sidebar.js.map +1 -0
  876. package/dist/Sidebar/Sidebar.styles.d.ts +9 -0
  877. package/dist/Sidebar/Sidebar.styles.js +22 -0
  878. package/dist/Sidebar/Sidebar.styles.js.map +1 -0
  879. package/dist/Sidebar/index.d.ts +1 -0
  880. package/dist/Sidebar/index.js +2 -0
  881. package/dist/Sidebar/index.js.map +1 -0
  882. package/dist/Slider/Slider.d.ts +38 -0
  883. package/dist/Slider/Slider.js +94 -0
  884. package/dist/Slider/Slider.js.map +1 -0
  885. package/dist/Slider/Slider.styles.d.ts +12 -0
  886. package/dist/Slider/Slider.styles.js +32 -0
  887. package/dist/Slider/Slider.styles.js.map +1 -0
  888. package/dist/Slider/Slider.types.d.ts +38 -0
  889. package/dist/Slider/Slider.types.js +2 -0
  890. package/dist/Slider/Slider.types.js.map +1 -0
  891. package/dist/Slider/index.d.ts +2 -0
  892. package/dist/Slider/index.js +2 -0
  893. package/dist/Slider/index.js.map +1 -0
  894. package/dist/Spinner/Spinner.d.ts +16 -0
  895. package/dist/Spinner/Spinner.js +61 -0
  896. package/dist/Spinner/Spinner.js.map +1 -0
  897. package/dist/Spinner/Spinner.styles.d.ts +22 -0
  898. package/dist/Spinner/Spinner.styles.js +66 -0
  899. package/dist/Spinner/Spinner.styles.js.map +1 -0
  900. package/dist/Spinner/Spinner.types.d.ts +42 -0
  901. package/dist/Spinner/Spinner.types.js +2 -0
  902. package/dist/Spinner/Spinner.types.js.map +1 -0
  903. package/dist/Spinner/index.d.ts +2 -0
  904. package/dist/Spinner/index.js +2 -0
  905. package/dist/Spinner/index.js.map +1 -0
  906. package/dist/SuperSelect/SuperSelect.components.d.ts +37 -0
  907. package/dist/SuperSelect/SuperSelect.components.js +249 -0
  908. package/dist/SuperSelect/SuperSelect.components.js.map +1 -0
  909. package/dist/SuperSelect/SuperSelect.constants.d.ts +2 -0
  910. package/dist/SuperSelect/SuperSelect.constants.js +3 -0
  911. package/dist/SuperSelect/SuperSelect.constants.js.map +1 -0
  912. package/dist/SuperSelect/SuperSelect.d.ts +2 -0
  913. package/dist/SuperSelect/SuperSelect.js +69 -0
  914. package/dist/SuperSelect/SuperSelect.js.map +1 -0
  915. package/dist/SuperSelect/SuperSelect.presets.styles.d.ts +2 -0
  916. package/dist/SuperSelect/SuperSelect.presets.styles.js +10 -0
  917. package/dist/SuperSelect/SuperSelect.presets.styles.js.map +1 -0
  918. package/dist/SuperSelect/SuperSelect.styles.d.ts +75 -0
  919. package/dist/SuperSelect/SuperSelect.styles.js +145 -0
  920. package/dist/SuperSelect/SuperSelect.styles.js.map +1 -0
  921. package/dist/SuperSelect/SuperSelect.types.d.ts +81 -0
  922. package/dist/SuperSelect/SuperSelect.types.js +2 -0
  923. package/dist/SuperSelect/SuperSelect.types.js.map +1 -0
  924. package/dist/SuperSelect/SuperSelect.utils.d.ts +28 -0
  925. package/dist/SuperSelect/SuperSelect.utils.js +154 -0
  926. package/dist/SuperSelect/SuperSelect.utils.js.map +1 -0
  927. package/dist/SuperSelect/SuperSelectDraggableOptions.d.ts +18 -0
  928. package/dist/SuperSelect/SuperSelectDraggableOptions.js +61 -0
  929. package/dist/SuperSelect/SuperSelectDraggableOptions.js.map +1 -0
  930. package/dist/SuperSelect/presets/contactsPreset.d.ts +2 -0
  931. package/dist/SuperSelect/presets/contactsPreset.js +36 -0
  932. package/dist/SuperSelect/presets/contactsPreset.js.map +1 -0
  933. package/dist/SuperSelect/presets/filterPreset.d.ts +2 -0
  934. package/dist/SuperSelect/presets/filterPreset.js +66 -0
  935. package/dist/SuperSelect/presets/filterPreset.js.map +1 -0
  936. package/dist/SuperSelect/presets/index.d.ts +2 -0
  937. package/dist/SuperSelect/presets/index.js +10 -0
  938. package/dist/SuperSelect/presets/index.js.map +1 -0
  939. package/dist/SuperSelect/presets/pillPreset.d.ts +2 -0
  940. package/dist/SuperSelect/presets/pillPreset.js +37 -0
  941. package/dist/SuperSelect/presets/pillPreset.js.map +1 -0
  942. package/dist/SuperSelect/useSuperSelect.d.ts +267 -0
  943. package/dist/SuperSelect/useSuperSelect.js +690 -0
  944. package/dist/SuperSelect/useSuperSelect.js.map +1 -0
  945. package/dist/SuperSelect/useVirtuosoResizeErrorFix.d.ts +1 -0
  946. package/dist/SuperSelect/useVirtuosoResizeErrorFix.js +21 -0
  947. package/dist/SuperSelect/useVirtuosoResizeErrorFix.js.map +1 -0
  948. package/dist/Switch/Switch.d.ts +16 -0
  949. package/dist/Switch/Switch.js +50 -0
  950. package/dist/Switch/Switch.js.map +1 -0
  951. package/dist/Switch/Switch.styles.d.ts +8 -0
  952. package/dist/Switch/Switch.styles.js +27 -0
  953. package/dist/Switch/Switch.styles.js.map +1 -0
  954. package/dist/Switch/Switch.types.d.ts +3 -0
  955. package/dist/Switch/Switch.types.js +2 -0
  956. package/dist/Switch/Switch.types.js.map +1 -0
  957. package/dist/Switch/index.d.ts +2 -0
  958. package/dist/Switch/index.js +2 -0
  959. package/dist/Switch/index.js.map +1 -0
  960. package/dist/Table/Table.d.ts +54 -0
  961. package/dist/Table/Table.js +206 -0
  962. package/dist/Table/Table.js.map +1 -0
  963. package/dist/Table/Table.styles.d.ts +73 -0
  964. package/dist/Table/Table.styles.js +184 -0
  965. package/dist/Table/Table.styles.js.map +1 -0
  966. package/dist/Table/Table.types.d.ts +186 -0
  967. package/dist/Table/Table.types.js +2 -0
  968. package/dist/Table/Table.types.js.map +1 -0
  969. package/dist/Table/index.d.ts +2 -0
  970. package/dist/Table/index.js +2 -0
  971. package/dist/Table/index.js.map +1 -0
  972. package/dist/TableShelf/TableShelf.d.ts +15 -0
  973. package/dist/TableShelf/TableShelf.js +64 -0
  974. package/dist/TableShelf/TableShelf.js.map +1 -0
  975. package/dist/TableShelf/TableShelf.styles.d.ts +5 -0
  976. package/dist/TableShelf/TableShelf.styles.js +15 -0
  977. package/dist/TableShelf/TableShelf.styles.js.map +1 -0
  978. package/dist/TableShelf/index.d.ts +1 -0
  979. package/dist/TableShelf/index.js +2 -0
  980. package/dist/TableShelf/index.js.map +1 -0
  981. package/dist/Tabs/Tabs.d.ts +28 -0
  982. package/dist/Tabs/Tabs.js +169 -0
  983. package/dist/Tabs/Tabs.js.map +1 -0
  984. package/dist/Tabs/Tabs.styles.d.ts +18 -0
  985. package/dist/Tabs/Tabs.styles.js +50 -0
  986. package/dist/Tabs/Tabs.styles.js.map +1 -0
  987. package/dist/Tabs/Tabs.types.d.ts +104 -0
  988. package/dist/Tabs/Tabs.types.js +9 -0
  989. package/dist/Tabs/Tabs.types.js.map +1 -0
  990. package/dist/Tabs/index.d.ts +2 -0
  991. package/dist/Tabs/index.js +2 -0
  992. package/dist/Tabs/index.js.map +1 -0
  993. package/dist/Tearsheet/Tearsheet.constants.d.ts +3 -0
  994. package/dist/Tearsheet/Tearsheet.constants.js +16 -0
  995. package/dist/Tearsheet/Tearsheet.constants.js.map +1 -0
  996. package/dist/Tearsheet/Tearsheet.d.ts +23 -0
  997. package/dist/Tearsheet/Tearsheet.js +208 -0
  998. package/dist/Tearsheet/Tearsheet.js.map +1 -0
  999. package/dist/Tearsheet/Tearsheet.styles.d.ts +30 -0
  1000. package/dist/Tearsheet/Tearsheet.styles.js +110 -0
  1001. package/dist/Tearsheet/Tearsheet.styles.js.map +1 -0
  1002. package/dist/Tearsheet/Tearsheet.types.d.ts +75 -0
  1003. package/dist/Tearsheet/Tearsheet.types.js +2 -0
  1004. package/dist/Tearsheet/Tearsheet.types.js.map +1 -0
  1005. package/dist/Tearsheet/Tearsheet.util.d.ts +8 -0
  1006. package/dist/Tearsheet/Tearsheet.util.js +58 -0
  1007. package/dist/Tearsheet/Tearsheet.util.js.map +1 -0
  1008. package/dist/Tearsheet/index.d.ts +2 -0
  1009. package/dist/Tearsheet/index.js +2 -0
  1010. package/dist/Tearsheet/index.js.map +1 -0
  1011. package/dist/TextArea/TextArea.d.ts +18 -0
  1012. package/dist/TextArea/TextArea.js +44 -0
  1013. package/dist/TextArea/TextArea.js.map +1 -0
  1014. package/dist/TextArea/TextArea.styles.d.ts +2 -0
  1015. package/dist/TextArea/TextArea.styles.js +13 -0
  1016. package/dist/TextArea/TextArea.styles.js.map +1 -0
  1017. package/dist/TextArea/TextArea.types.d.ts +31 -0
  1018. package/dist/TextArea/TextArea.types.js +2 -0
  1019. package/dist/TextArea/TextArea.types.js.map +1 -0
  1020. package/dist/TextArea/index.d.ts +2 -0
  1021. package/dist/TextArea/index.js +2 -0
  1022. package/dist/TextArea/index.js.map +1 -0
  1023. package/dist/TextEditor/TextEditor.d.ts +20 -0
  1024. package/dist/TextEditor/TextEditor.js +104 -0
  1025. package/dist/TextEditor/TextEditor.js.map +1 -0
  1026. package/dist/TextEditor/TextEditor.types.d.ts +86 -0
  1027. package/dist/TextEditor/TextEditor.types.js +2 -0
  1028. package/dist/TextEditor/TextEditor.types.js.map +1 -0
  1029. package/dist/TextEditor/index.d.ts +2 -0
  1030. package/dist/TextEditor/index.js +2 -0
  1031. package/dist/TextEditor/index.js.map +1 -0
  1032. package/dist/TextEditorOutput/TextEditorOutput.d.ts +13 -0
  1033. package/dist/TextEditorOutput/TextEditorOutput.js +42 -0
  1034. package/dist/TextEditorOutput/TextEditorOutput.js.map +1 -0
  1035. package/dist/TextEditorOutput/TextEditorOutput.styles.d.ts +1 -0
  1036. package/dist/TextEditorOutput/TextEditorOutput.styles.js +8 -0
  1037. package/dist/TextEditorOutput/TextEditorOutput.styles.js.map +1 -0
  1038. package/dist/TextEditorOutput/TextEditorOutput.types.d.ts +9 -0
  1039. package/dist/TextEditorOutput/TextEditorOutput.types.js +2 -0
  1040. package/dist/TextEditorOutput/TextEditorOutput.types.js.map +1 -0
  1041. package/dist/TextEditorOutput/index.d.ts +1 -0
  1042. package/dist/TextEditorOutput/index.js +2 -0
  1043. package/dist/TextEditorOutput/index.js.map +1 -0
  1044. package/dist/Thumbnail/Thumbnail.d.ts +12 -0
  1045. package/dist/Thumbnail/Thumbnail.hooks.d.ts +1284 -0
  1046. package/dist/Thumbnail/Thumbnail.hooks.js +65 -0
  1047. package/dist/Thumbnail/Thumbnail.hooks.js.map +1 -0
  1048. package/dist/Thumbnail/Thumbnail.js +223 -0
  1049. package/dist/Thumbnail/Thumbnail.js.map +1 -0
  1050. package/dist/Thumbnail/Thumbnail.styles.d.ts +46 -0
  1051. package/dist/Thumbnail/Thumbnail.styles.js +155 -0
  1052. package/dist/Thumbnail/Thumbnail.styles.js.map +1 -0
  1053. package/dist/Thumbnail/Thumbnail.types.d.ts +250 -0
  1054. package/dist/Thumbnail/Thumbnail.types.js +2 -0
  1055. package/dist/Thumbnail/Thumbnail.types.js.map +1 -0
  1056. package/dist/Thumbnail/Thumbnail.utils.d.ts +3 -0
  1057. package/dist/Thumbnail/Thumbnail.utils.js +63 -0
  1058. package/dist/Thumbnail/Thumbnail.utils.js.map +1 -0
  1059. package/dist/Thumbnail/ThumbnailCaption.d.ts +3 -0
  1060. package/dist/Thumbnail/ThumbnailCaption.js +64 -0
  1061. package/dist/Thumbnail/ThumbnailCaption.js.map +1 -0
  1062. package/dist/Thumbnail/ThumbnailDocumentIcon.d.ts +10 -0
  1063. package/dist/Thumbnail/ThumbnailDocumentIcon.js +192 -0
  1064. package/dist/Thumbnail/ThumbnailDocumentIcon.js.map +1 -0
  1065. package/dist/Thumbnail/ThumbnailPreview.d.ts +3 -0
  1066. package/dist/Thumbnail/ThumbnailPreview.js +24 -0
  1067. package/dist/Thumbnail/ThumbnailPreview.js.map +1 -0
  1068. package/dist/Thumbnail/index.d.ts +4 -0
  1069. package/dist/Thumbnail/index.js +3 -0
  1070. package/dist/Thumbnail/index.js.map +1 -0
  1071. package/dist/ThumbnailGrid/ThumbnailGrid.d.ts +4 -0
  1072. package/dist/ThumbnailGrid/ThumbnailGrid.hooks.d.ts +12 -0
  1073. package/dist/ThumbnailGrid/ThumbnailGrid.hooks.js +86 -0
  1074. package/dist/ThumbnailGrid/ThumbnailGrid.hooks.js.map +1 -0
  1075. package/dist/ThumbnailGrid/ThumbnailGrid.js +340 -0
  1076. package/dist/ThumbnailGrid/ThumbnailGrid.js.map +1 -0
  1077. package/dist/ThumbnailGrid/ThumbnailGrid.styles.d.ts +12 -0
  1078. package/dist/ThumbnailGrid/ThumbnailGrid.styles.js +16 -0
  1079. package/dist/ThumbnailGrid/ThumbnailGrid.styles.js.map +1 -0
  1080. package/dist/ThumbnailGrid/ThumbnailGrid.types.d.ts +103 -0
  1081. package/dist/ThumbnailGrid/ThumbnailGrid.types.js +2 -0
  1082. package/dist/ThumbnailGrid/ThumbnailGrid.types.js.map +1 -0
  1083. package/dist/ThumbnailGrid/index.d.ts +2 -0
  1084. package/dist/ThumbnailGrid/index.js +2 -0
  1085. package/dist/ThumbnailGrid/index.js.map +1 -0
  1086. package/dist/TieredDropdown/TieredDropdown.d.ts +3 -0
  1087. package/dist/TieredDropdown/TieredDropdown.helpers.d.ts +39 -0
  1088. package/dist/TieredDropdown/TieredDropdown.helpers.js +59 -0
  1089. package/dist/TieredDropdown/TieredDropdown.helpers.js.map +1 -0
  1090. package/dist/TieredDropdown/TieredDropdown.js +155 -0
  1091. package/dist/TieredDropdown/TieredDropdown.js.map +1 -0
  1092. package/dist/TieredDropdown/TieredDropdown.types.d.ts +64 -0
  1093. package/dist/TieredDropdown/TieredDropdown.types.js +2 -0
  1094. package/dist/TieredDropdown/TieredDropdown.types.js.map +1 -0
  1095. package/dist/TieredDropdown/index.d.ts +2 -0
  1096. package/dist/TieredDropdown/index.js +2 -0
  1097. package/dist/TieredDropdown/index.js.map +1 -0
  1098. package/dist/TieredDropdown/useSearch.d.ts +12 -0
  1099. package/dist/TieredDropdown/useSearch.js +50 -0
  1100. package/dist/TieredDropdown/useSearch.js.map +1 -0
  1101. package/dist/TieredSelect/LeafSelectionTieredSelect.d.ts +3 -0
  1102. package/dist/TieredSelect/LeafSelectionTieredSelect.js +131 -0
  1103. package/dist/TieredSelect/LeafSelectionTieredSelect.js.map +1 -0
  1104. package/dist/TieredSelect/TierSelectionTieredSelect.d.ts +3 -0
  1105. package/dist/TieredSelect/TierSelectionTieredSelect.js +347 -0
  1106. package/dist/TieredSelect/TierSelectionTieredSelect.js.map +1 -0
  1107. package/dist/TieredSelect/TieredSelect.d.ts +26 -0
  1108. package/dist/TieredSelect/TieredSelect.js +145 -0
  1109. package/dist/TieredSelect/TieredSelect.js.map +1 -0
  1110. package/dist/TieredSelect/TieredSelect.styles.d.ts +26 -0
  1111. package/dist/TieredSelect/TieredSelect.styles.js +29 -0
  1112. package/dist/TieredSelect/TieredSelect.styles.js.map +1 -0
  1113. package/dist/TieredSelect/TieredSelect.types.d.ts +311 -0
  1114. package/dist/TieredSelect/TieredSelect.types.js +2 -0
  1115. package/dist/TieredSelect/TieredSelect.types.js.map +1 -0
  1116. package/dist/TieredSelect/TieredSelectMenu.d.ts +3 -0
  1117. package/dist/TieredSelect/TieredSelectMenu.js +308 -0
  1118. package/dist/TieredSelect/TieredSelectMenu.js.map +1 -0
  1119. package/dist/TieredSelect/index.d.ts +2 -0
  1120. package/dist/TieredSelect/index.js +2 -0
  1121. package/dist/TieredSelect/index.js.map +1 -0
  1122. package/dist/Tile/Tile.d.ts +13 -0
  1123. package/dist/Tile/Tile.js +106 -0
  1124. package/dist/Tile/Tile.js.map +1 -0
  1125. package/dist/Tile/Tile.styles.d.ts +22 -0
  1126. package/dist/Tile/Tile.styles.js +66 -0
  1127. package/dist/Tile/Tile.styles.js.map +1 -0
  1128. package/dist/Tile/Tile.types.d.ts +53 -0
  1129. package/dist/Tile/Tile.types.js +2 -0
  1130. package/dist/Tile/Tile.types.js.map +1 -0
  1131. package/dist/Tile/index.d.ts +2 -0
  1132. package/dist/Tile/index.js +2 -0
  1133. package/dist/Tile/index.js.map +1 -0
  1134. package/dist/Title/Title.d.ts +10 -0
  1135. package/dist/Title/Title.js +78 -0
  1136. package/dist/Title/Title.js.map +1 -0
  1137. package/dist/Title/Title.styles.d.ts +10 -0
  1138. package/dist/Title/Title.styles.js +21 -0
  1139. package/dist/Title/Title.styles.js.map +1 -0
  1140. package/dist/Title/Title.types.d.ts +3 -0
  1141. package/dist/Title/Title.types.js +2 -0
  1142. package/dist/Title/Title.types.js.map +1 -0
  1143. package/dist/Title/index.d.ts +2 -0
  1144. package/dist/Title/index.js +2 -0
  1145. package/dist/Title/index.js.map +1 -0
  1146. package/dist/Toast/Toast.d.ts +25 -0
  1147. package/dist/Toast/Toast.js +86 -0
  1148. package/dist/Toast/Toast.js.map +1 -0
  1149. package/dist/Toast/Toast.styles.d.ts +9 -0
  1150. package/dist/Toast/Toast.styles.js +25 -0
  1151. package/dist/Toast/Toast.styles.js.map +1 -0
  1152. package/dist/Toast/Toast.types.d.ts +9 -0
  1153. package/dist/Toast/Toast.types.js +2 -0
  1154. package/dist/Toast/Toast.types.js.map +1 -0
  1155. package/dist/Toast/index.d.ts +2 -0
  1156. package/dist/Toast/index.js +2 -0
  1157. package/dist/Toast/index.js.map +1 -0
  1158. package/dist/ToggleButton/ToggleButton.d.ts +20 -0
  1159. package/dist/ToggleButton/ToggleButton.js +47 -0
  1160. package/dist/ToggleButton/ToggleButton.js.map +1 -0
  1161. package/dist/ToggleButton/ToggleButton.styles.d.ts +4 -0
  1162. package/dist/ToggleButton/ToggleButton.styles.js +13 -0
  1163. package/dist/ToggleButton/ToggleButton.styles.js.map +1 -0
  1164. package/dist/ToggleButton/ToggleButton.types.d.ts +22 -0
  1165. package/dist/ToggleButton/ToggleButton.types.js +2 -0
  1166. package/dist/ToggleButton/ToggleButton.types.js.map +1 -0
  1167. package/dist/ToggleButton/index.d.ts +2 -0
  1168. package/dist/ToggleButton/index.js +2 -0
  1169. package/dist/ToggleButton/index.js.map +1 -0
  1170. package/dist/Token/Token.d.ts +19 -0
  1171. package/dist/Token/Token.js +59 -0
  1172. package/dist/Token/Token.js.map +1 -0
  1173. package/dist/Token/Token.styles.d.ts +10 -0
  1174. package/dist/Token/Token.styles.js +24 -0
  1175. package/dist/Token/Token.styles.js.map +1 -0
  1176. package/dist/Token/Token.types.d.ts +36 -0
  1177. package/dist/Token/Token.types.js +2 -0
  1178. package/dist/Token/Token.types.js.map +1 -0
  1179. package/dist/Token/index.d.ts +2 -0
  1180. package/dist/Token/index.js +2 -0
  1181. package/dist/Token/index.js.map +1 -0
  1182. package/dist/ToolHeader/ActionIcon.d.ts +5 -0
  1183. package/dist/ToolHeader/ActionIcon.js +46 -0
  1184. package/dist/ToolHeader/ActionIcon.js.map +1 -0
  1185. package/dist/ToolHeader/ActionIcon.types.d.ts +10 -0
  1186. package/dist/ToolHeader/ActionIcon.types.example.d.ts +1 -0
  1187. package/dist/ToolHeader/ActionIcon.types.example.js +43 -0
  1188. package/dist/ToolHeader/ActionIcon.types.example.js.map +1 -0
  1189. package/dist/ToolHeader/ActionIcon.types.js +2 -0
  1190. package/dist/ToolHeader/ActionIcon.types.js.map +1 -0
  1191. package/dist/ToolHeader/ToolHeader.d.ts +15 -0
  1192. package/dist/ToolHeader/ToolHeader.js +77 -0
  1193. package/dist/ToolHeader/ToolHeader.js.map +1 -0
  1194. package/dist/ToolHeader/ToolHeader.styles.d.ts +10 -0
  1195. package/dist/ToolHeader/ToolHeader.styles.js +27 -0
  1196. package/dist/ToolHeader/ToolHeader.styles.js.map +1 -0
  1197. package/dist/ToolHeader/ToolHeader.types.d.ts +28 -0
  1198. package/dist/ToolHeader/ToolHeader.types.js +2 -0
  1199. package/dist/ToolHeader/ToolHeader.types.js.map +1 -0
  1200. package/dist/ToolHeader/index.d.ts +1 -0
  1201. package/dist/ToolHeader/index.js +2 -0
  1202. package/dist/ToolHeader/index.js.map +1 -0
  1203. package/dist/Tooltip/Tooltip.d.ts +6 -0
  1204. package/dist/Tooltip/Tooltip.js +59 -0
  1205. package/dist/Tooltip/Tooltip.js.map +1 -0
  1206. package/dist/Tooltip/Tooltip.styles.d.ts +2 -0
  1207. package/dist/Tooltip/Tooltip.styles.js +14 -0
  1208. package/dist/Tooltip/Tooltip.styles.js.map +1 -0
  1209. package/dist/Tooltip/Tooltip.types.d.ts +39 -0
  1210. package/dist/Tooltip/Tooltip.types.js +2 -0
  1211. package/dist/Tooltip/Tooltip.types.js.map +1 -0
  1212. package/dist/Tooltip/index.d.ts +2 -0
  1213. package/dist/Tooltip/index.js +2 -0
  1214. package/dist/Tooltip/index.js.map +1 -0
  1215. package/dist/Tree/Tree.d.ts +17 -0
  1216. package/dist/Tree/Tree.hooks.d.ts +20 -0
  1217. package/dist/Tree/Tree.hooks.js +199 -0
  1218. package/dist/Tree/Tree.hooks.js.map +1 -0
  1219. package/dist/Tree/Tree.js +386 -0
  1220. package/dist/Tree/Tree.js.map +1 -0
  1221. package/dist/Tree/Tree.styles.d.ts +19 -0
  1222. package/dist/Tree/Tree.styles.js +37 -0
  1223. package/dist/Tree/Tree.styles.js.map +1 -0
  1224. package/dist/Tree/Tree.types.d.ts +417 -0
  1225. package/dist/Tree/Tree.types.js +2 -0
  1226. package/dist/Tree/Tree.types.js.map +1 -0
  1227. package/dist/Tree/index.d.ts +2 -0
  1228. package/dist/Tree/index.js +2 -0
  1229. package/dist/Tree/index.js.map +1 -0
  1230. package/dist/Typeahead/Typeahead.d.ts +9 -0
  1231. package/dist/Typeahead/Typeahead.js +65 -0
  1232. package/dist/Typeahead/Typeahead.js.map +1 -0
  1233. package/dist/Typeahead/Typeahead.styles.d.ts +8 -0
  1234. package/dist/Typeahead/Typeahead.styles.js +14 -0
  1235. package/dist/Typeahead/Typeahead.styles.js.map +1 -0
  1236. package/dist/Typeahead/Typeahead.types.d.ts +13 -0
  1237. package/dist/Typeahead/Typeahead.types.js +2 -0
  1238. package/dist/Typeahead/Typeahead.types.js.map +1 -0
  1239. package/dist/Typeahead/index.d.ts +2 -0
  1240. package/dist/Typeahead/index.js +2 -0
  1241. package/dist/Typeahead/index.js.map +1 -0
  1242. package/dist/Typography/Typography.d.ts +11 -0
  1243. package/dist/Typography/Typography.js +37 -0
  1244. package/dist/Typography/Typography.js.map +1 -0
  1245. package/dist/Typography/Typography.styles.d.ts +12 -0
  1246. package/dist/Typography/Typography.styles.js +54 -0
  1247. package/dist/Typography/Typography.styles.js.map +1 -0
  1248. package/dist/Typography/Typography.types.d.ts +58 -0
  1249. package/dist/Typography/Typography.types.js +2 -0
  1250. package/dist/Typography/Typography.types.js.map +1 -0
  1251. package/dist/Typography/index.d.ts +2 -0
  1252. package/dist/Typography/index.js +2 -0
  1253. package/dist/Typography/index.js.map +1 -0
  1254. package/dist/_hooks/Analytics.d.ts +36 -0
  1255. package/dist/_hooks/Analytics.js +45 -0
  1256. package/dist/_hooks/Analytics.js.map +1 -0
  1257. package/dist/_hooks/Anchor.d.ts +70 -0
  1258. package/dist/_hooks/Anchor.js +123 -0
  1259. package/dist/_hooks/Anchor.js.map +1 -0
  1260. package/dist/_hooks/Autofocus.d.ts +32 -0
  1261. package/dist/_hooks/Autofocus.js +69 -0
  1262. package/dist/_hooks/Autofocus.js.map +1 -0
  1263. package/dist/_hooks/BoundingRect.d.ts +41 -0
  1264. package/dist/_hooks/BoundingRect.js +74 -0
  1265. package/dist/_hooks/BoundingRect.js.map +1 -0
  1266. package/dist/_hooks/Buffer.d.ts +62 -0
  1267. package/dist/_hooks/Buffer.js +90 -0
  1268. package/dist/_hooks/Buffer.js.map +1 -0
  1269. package/dist/_hooks/ClickOutside.d.ts +27 -0
  1270. package/dist/_hooks/ClickOutside.js +32 -0
  1271. package/dist/_hooks/ClickOutside.js.map +1 -0
  1272. package/dist/_hooks/DateTime/DateTime.d.ts +33 -0
  1273. package/dist/_hooks/DateTime/DateTime.js +207 -0
  1274. package/dist/_hooks/DateTime/DateTime.js.map +1 -0
  1275. package/dist/_hooks/DateTime/index.d.ts +1 -0
  1276. package/dist/_hooks/DateTime/index.js +2 -0
  1277. package/dist/_hooks/DateTime/index.js.map +1 -0
  1278. package/dist/_hooks/DelayedCallback.d.ts +25 -0
  1279. package/dist/_hooks/DelayedCallback.js +46 -0
  1280. package/dist/_hooks/DelayedCallback.js.map +1 -0
  1281. package/dist/_hooks/DelayedToggle.d.ts +111 -0
  1282. package/dist/_hooks/DelayedToggle.js +98 -0
  1283. package/dist/_hooks/DelayedToggle.js.map +1 -0
  1284. package/dist/_hooks/Deprecation.d.ts +24 -0
  1285. package/dist/_hooks/Deprecation.js +19 -0
  1286. package/dist/_hooks/Deprecation.js.map +1 -0
  1287. package/dist/_hooks/Event.d.ts +42 -0
  1288. package/dist/_hooks/Event.js +58 -0
  1289. package/dist/_hooks/Event.js.map +1 -0
  1290. package/dist/_hooks/EventListener.d.ts +65 -0
  1291. package/dist/_hooks/EventListener.js +85 -0
  1292. package/dist/_hooks/EventListener.js.map +1 -0
  1293. package/dist/_hooks/EventRegistry.d.ts +5 -0
  1294. package/dist/_hooks/EventRegistry.js +17 -0
  1295. package/dist/_hooks/EventRegistry.js.map +1 -0
  1296. package/dist/_hooks/Hotkey.d.ts +38 -0
  1297. package/dist/_hooks/Hotkey.js +40 -0
  1298. package/dist/_hooks/Hotkey.js.map +1 -0
  1299. package/dist/_hooks/I18n.d.ts +3980 -0
  1300. package/dist/_hooks/I18n.js +82 -0
  1301. package/dist/_hooks/I18n.js.map +1 -0
  1302. package/dist/_hooks/InjectedScript.d.ts +44 -0
  1303. package/dist/_hooks/InjectedScript.js +77 -0
  1304. package/dist/_hooks/InjectedScript.js.map +1 -0
  1305. package/dist/_hooks/IntersectionObserver/createIntersectionObserver.d.ts +2 -0
  1306. package/dist/_hooks/IntersectionObserver/createIntersectionObserver.js +6 -0
  1307. package/dist/_hooks/IntersectionObserver/createIntersectionObserver.js.map +1 -0
  1308. package/dist/_hooks/IntersectionObserver/index.d.ts +1 -0
  1309. package/dist/_hooks/IntersectionObserver/index.js +2 -0
  1310. package/dist/_hooks/IntersectionObserver/index.js.map +1 -0
  1311. package/dist/_hooks/IntersectionObserver/useIntersectionObserver.d.ts +1 -0
  1312. package/dist/_hooks/IntersectionObserver/useIntersectionObserver.js +18 -0
  1313. package/dist/_hooks/IntersectionObserver/useIntersectionObserver.js.map +1 -0
  1314. package/dist/_hooks/ListNavigation.d.ts +74 -0
  1315. package/dist/_hooks/ListNavigation.js +119 -0
  1316. package/dist/_hooks/ListNavigation.js.map +1 -0
  1317. package/dist/_hooks/OverflowObserver/OverflowObserver.d.ts +12 -0
  1318. package/dist/_hooks/OverflowObserver/OverflowObserver.js +54 -0
  1319. package/dist/_hooks/OverflowObserver/OverflowObserver.js.map +1 -0
  1320. package/dist/_hooks/OverflowObserver/OverflowObserver.types.d.ts +25 -0
  1321. package/dist/_hooks/OverflowObserver/OverflowObserver.types.js +2 -0
  1322. package/dist/_hooks/OverflowObserver/OverflowObserver.types.js.map +1 -0
  1323. package/dist/_hooks/OverflowObserver/index.d.ts +1 -0
  1324. package/dist/_hooks/OverflowObserver/index.js +2 -0
  1325. package/dist/_hooks/OverflowObserver/index.js.map +1 -0
  1326. package/dist/_hooks/Resize.d.ts +13 -0
  1327. package/dist/_hooks/Resize.js +10 -0
  1328. package/dist/_hooks/Resize.js.map +1 -0
  1329. package/dist/_hooks/ResizeObserver.d.ts +1 -0
  1330. package/dist/_hooks/ResizeObserver.js +20 -0
  1331. package/dist/_hooks/ResizeObserver.js.map +1 -0
  1332. package/dist/_hooks/Scroll.d.ts +20 -0
  1333. package/dist/_hooks/Scroll.js +10 -0
  1334. package/dist/_hooks/Scroll.js.map +1 -0
  1335. package/dist/_hooks/ScrollLock.d.ts +1 -0
  1336. package/dist/_hooks/ScrollLock.js +20 -0
  1337. package/dist/_hooks/ScrollLock.js.map +1 -0
  1338. package/dist/_hooks/TextEntry.d.ts +100 -0
  1339. package/dist/_hooks/TextEntry.js +106 -0
  1340. package/dist/_hooks/TextEntry.js.map +1 -0
  1341. package/dist/_hooks/Timer.d.ts +45 -0
  1342. package/dist/_hooks/Timer.js +62 -0
  1343. package/dist/_hooks/Timer.js.map +1 -0
  1344. package/dist/_hooks/Trigger.d.ts +73 -0
  1345. package/dist/_hooks/Trigger.js +125 -0
  1346. package/dist/_hooks/Trigger.js.map +1 -0
  1347. package/dist/_hooks/Visibility.d.ts +52 -0
  1348. package/dist/_hooks/Visibility.js +81 -0
  1349. package/dist/_hooks/Visibility.js.map +1 -0
  1350. package/dist/_hooks/ZIndex.d.ts +25 -0
  1351. package/dist/_hooks/ZIndex.js +51 -0
  1352. package/dist/_hooks/ZIndex.js.map +1 -0
  1353. package/dist/_hooks/useFileUploader.d.ts +67 -0
  1354. package/dist/_hooks/useFileUploader.js +238 -0
  1355. package/dist/_hooks/useFileUploader.js.map +1 -0
  1356. package/dist/_hooks/useFocusWithin.d.ts +15 -0
  1357. package/dist/_hooks/useFocusWithin.js +22 -0
  1358. package/dist/_hooks/useFocusWithin.js.map +1 -0
  1359. package/dist/_hooks/useSet.d.ts +27 -0
  1360. package/dist/_hooks/useSet.js +48 -0
  1361. package/dist/_hooks/useSet.js.map +1 -0
  1362. package/dist/_hooks/useUpdateEffect.d.ts +5 -0
  1363. package/dist/_hooks/useUpdateEffect.js +21 -0
  1364. package/dist/_hooks/useUpdateEffect.js.map +1 -0
  1365. package/dist/_locales/de-DE.json +298 -0
  1366. package/dist/_locales/en-AU.json +298 -0
  1367. package/dist/_locales/en-CA.json +298 -0
  1368. package/dist/_locales/en-GB.json +298 -0
  1369. package/dist/_locales/en-US.json +33 -0
  1370. package/dist/_locales/en.json +355 -0
  1371. package/dist/_locales/es-ES.json +298 -0
  1372. package/dist/_locales/es.json +298 -0
  1373. package/dist/_locales/fr-CA.json +298 -0
  1374. package/dist/_locales/fr-FR.json +298 -0
  1375. package/dist/_locales/is-IS.json +298 -0
  1376. package/dist/_locales/it-IT.json +1 -0
  1377. package/dist/_locales/ja-JP.json +1 -0
  1378. package/dist/_locales/ko.json +1 -0
  1379. package/dist/_locales/pt-BR.json +298 -0
  1380. package/dist/_locales/th-TH.json +298 -0
  1381. package/dist/_locales/zh-SG.json +298 -0
  1382. package/dist/_styles/arrows.d.ts +5 -0
  1383. package/dist/_styles/arrows.js +20 -0
  1384. package/dist/_styles/arrows.js.map +1 -0
  1385. package/dist/_styles/borderRadius.d.ts +8 -0
  1386. package/dist/_styles/borderRadius.js +15 -0
  1387. package/dist/_styles/borderRadius.js.map +1 -0
  1388. package/dist/_styles/colors.d.ts +6 -0
  1389. package/dist/_styles/colors.js +25 -0
  1390. package/dist/_styles/colors.js.map +1 -0
  1391. package/dist/_styles/media.d.ts +1 -0
  1392. package/dist/_styles/media.js +3 -0
  1393. package/dist/_styles/media.js.map +1 -0
  1394. package/dist/_styles/mixins.d.ts +17 -0
  1395. package/dist/_styles/mixins.js +35 -0
  1396. package/dist/_styles/mixins.js.map +1 -0
  1397. package/dist/_styles/shadows.d.ts +2 -0
  1398. package/dist/_styles/shadows.js +21 -0
  1399. package/dist/_styles/shadows.js.map +1 -0
  1400. package/dist/_styles/spacing.d.ts +11 -0
  1401. package/dist/_styles/spacing.js +11 -0
  1402. package/dist/_styles/spacing.js.map +1 -0
  1403. package/dist/_typedoc/Avatar/Avatar.types.json +201 -0
  1404. package/dist/_typedoc/AvatarStack/AvatarStack.types.json +248 -0
  1405. package/dist/_typedoc/Badge/Badge.types.json +74 -0
  1406. package/dist/_typedoc/Banner/Banner.types.json +140 -0
  1407. package/dist/_typedoc/Box/Box.types.json +712 -0
  1408. package/dist/_typedoc/Breadcrumbs/Breadcrumbs.types.json +114 -0
  1409. package/dist/_typedoc/Button/Button.types.json +124 -0
  1410. package/dist/_typedoc/Calendar/Calendar.types.json +856 -0
  1411. package/dist/_typedoc/Card/Card.types.json +71 -0
  1412. package/dist/_typedoc/Checkbox/Checkbox.types.json +78 -0
  1413. package/dist/_typedoc/ContactItem/ContactItem.types.json +101 -0
  1414. package/dist/_typedoc/DateInput/DateInput.types.json +376 -0
  1415. package/dist/_typedoc/DateSelect/DateSelect.types.json +138 -0
  1416. package/dist/_typedoc/DetailPage/DetailPage.types.json +48 -0
  1417. package/dist/_typedoc/Dropdown/Dropdown.types.json +386 -0
  1418. package/dist/_typedoc/DropdownFlyout/DropdownFlyout.types.json +328 -0
  1419. package/dist/_typedoc/Dropzone/Dropzone.types.json +498 -0
  1420. package/dist/_typedoc/EmptyState/EmptyState.types.json +172 -0
  1421. package/dist/_typedoc/FileList/FileList.types.json +104 -0
  1422. package/dist/_typedoc/FileSelect/FileSelect.types.json +274 -0
  1423. package/dist/_typedoc/FileSelect/GridSource/GridSource.types.json +215 -0
  1424. package/dist/_typedoc/FileSelect/LocalSource/LocalSource.types.json +148 -0
  1425. package/dist/_typedoc/FileSelect/TreeSource/TreeSource.types.json +169 -0
  1426. package/dist/_typedoc/Flex/Flex.types.json +278 -0
  1427. package/dist/_typedoc/FlexList/FlexList.types.json +308 -0
  1428. package/dist/_typedoc/Form/Form.types.json +7194 -0
  1429. package/dist/_typedoc/Grid/Grid.types.json +106 -0
  1430. package/dist/_typedoc/GroupSelect/GroupSelect.types.json +540 -0
  1431. package/dist/_typedoc/Input/Input.types.json +29 -0
  1432. package/dist/_typedoc/Link/Link.types.json +48 -0
  1433. package/dist/_typedoc/ListPage/ListPage.types.json +151 -0
  1434. package/dist/_typedoc/Menu/Menu.types.json +670 -0
  1435. package/dist/_typedoc/MenuImperative/MenuImperative.types.json +772 -0
  1436. package/dist/_typedoc/Modal/Modal.types.json +307 -0
  1437. package/dist/_typedoc/MultiSelect/MultiSelect.types.json +318 -0
  1438. package/dist/_typedoc/Notation/Notation.types.json +48 -0
  1439. package/dist/_typedoc/NumberInput/NumberInput.types.json +506 -0
  1440. package/dist/_typedoc/OverlayTrigger/OverlayTrigger.json +1 -0
  1441. package/dist/_typedoc/PageLayout/PageLayout.types.json +90 -0
  1442. package/dist/_typedoc/Pagination/Pagination.types.json +78 -0
  1443. package/dist/_typedoc/Panel/Panel.types.json +319 -0
  1444. package/dist/_typedoc/Pill/Pill.types.json +19 -0
  1445. package/dist/_typedoc/PillSelect/PillSelect.types.json +486 -0
  1446. package/dist/_typedoc/Popover/Popover.types.json +117 -0
  1447. package/dist/_typedoc/ProgressBar/ProgressBar.types.json +58 -0
  1448. package/dist/_typedoc/RadioButton/RadioButton.types.json +68 -0
  1449. package/dist/_typedoc/Required/Required.types.json +58 -0
  1450. package/dist/_typedoc/Search/Search.types.json +201 -0
  1451. package/dist/_typedoc/Section/Section.types.json +160 -0
  1452. package/dist/_typedoc/SegmentedController/SegmentedController.types.json +221 -0
  1453. package/dist/_typedoc/Select/Select.types.json +330 -0
  1454. package/dist/_typedoc/Slider/Slider.types.json +72 -0
  1455. package/dist/_typedoc/Spinner/Spinner.types.json +99 -0
  1456. package/dist/_typedoc/Switch/Switch.types.json +38 -0
  1457. package/dist/_typedoc/Table/Table.types.json +1033 -0
  1458. package/dist/_typedoc/Tabs/Tabs.types.json +167 -0
  1459. package/dist/_typedoc/Tearsheet/Tearsheet.types.json +114 -0
  1460. package/dist/_typedoc/TextArea/TextArea.types.json +40 -0
  1461. package/dist/_typedoc/TextEditor/TextEditor.types.json +80 -0
  1462. package/dist/_typedoc/TextEditorOutput/TextEditorOutput.types.json +38 -0
  1463. package/dist/_typedoc/Thumbnail/Thumbnail.types.json +264 -0
  1464. package/dist/_typedoc/TieredDropdown/TieredDropdown.types.json +434 -0
  1465. package/dist/_typedoc/TieredSelect/TieredSelect.types.json +288 -0
  1466. package/dist/_typedoc/Tile/Tile.types.json +338 -0
  1467. package/dist/_typedoc/Toast/Toast.types.json +48 -0
  1468. package/dist/_typedoc/ToggleButton/ToggleButton.types.json +38 -0
  1469. package/dist/_typedoc/Token/Token.types.json +50 -0
  1470. package/dist/_typedoc/ToolHeader/ToolHeader.types.json +94 -0
  1471. package/dist/_typedoc/Tooltip/Tooltip.types.json +144 -0
  1472. package/dist/_typedoc/Tree/Tree.types.json +1281 -0
  1473. package/dist/_typedoc/Typeahead/Typeahead.types.json +28 -0
  1474. package/dist/_typedoc/Typography/Typography.types.json +88 -0
  1475. package/dist/_typedoc/_utils/types.json +38 -0
  1476. package/dist/_typedoc/deprecations.json +1 -0
  1477. package/dist/_utils/CalendarHelpers.d.ts +63 -0
  1478. package/dist/_utils/CalendarHelpers.js +160 -0
  1479. package/dist/_utils/CalendarHelpers.js.map +1 -0
  1480. package/dist/_utils/TinyMCE.d.ts +21 -0
  1481. package/dist/_utils/TinyMCE.js +135 -0
  1482. package/dist/_utils/TinyMCE.js.map +1 -0
  1483. package/dist/_utils/__tests__/dateTime.d.ts +1 -0
  1484. package/dist/_utils/__tests__/dateTime.js +114 -0
  1485. package/dist/_utils/__tests__/dateTime.js.map +1 -0
  1486. package/dist/_utils/addSubcomponents.d.ts +3 -0
  1487. package/dist/_utils/addSubcomponents.js +8 -0
  1488. package/dist/_utils/addSubcomponents.js.map +1 -0
  1489. package/dist/_utils/dateTime.d.ts +18 -0
  1490. package/dist/_utils/dateTime.js +107 -0
  1491. package/dist/_utils/dateTime.js.map +1 -0
  1492. package/dist/_utils/dom.d.ts +7 -0
  1493. package/dist/_utils/dom.js +34 -0
  1494. package/dist/_utils/dom.js.map +1 -0
  1495. package/dist/_utils/filename.d.ts +10 -0
  1496. package/dist/_utils/filename.js +16 -0
  1497. package/dist/_utils/filename.js.map +1 -0
  1498. package/dist/_utils/genericAnalyticsClient.d.ts +25 -0
  1499. package/dist/_utils/genericAnalyticsClient.js +32 -0
  1500. package/dist/_utils/genericAnalyticsClient.js.map +1 -0
  1501. package/dist/_utils/getAnchorPosition.d.ts +46 -0
  1502. package/dist/_utils/getAnchorPosition.js +157 -0
  1503. package/dist/_utils/getAnchorPosition.js.map +1 -0
  1504. package/dist/_utils/i18n.d.ts +1 -0
  1505. package/dist/_utils/i18n.js +22 -0
  1506. package/dist/_utils/i18n.js.map +1 -0
  1507. package/dist/_utils/isIE11.d.ts +1 -0
  1508. package/dist/_utils/isIE11.js +7 -0
  1509. package/dist/_utils/isIE11.js.map +1 -0
  1510. package/dist/_utils/isReactElement.d.ts +2 -0
  1511. package/dist/_utils/isReactElement.js +4 -0
  1512. package/dist/_utils/isReactElement.js.map +1 -0
  1513. package/dist/_utils/mergeRefs.d.ts +7 -0
  1514. package/dist/_utils/mergeRefs.js +18 -0
  1515. package/dist/_utils/mergeRefs.js.map +1 -0
  1516. package/dist/_utils/partition.d.ts +5 -0
  1517. package/dist/_utils/partition.js +12 -0
  1518. package/dist/_utils/partition.js.map +1 -0
  1519. package/dist/_utils/placement.d.ts +3 -0
  1520. package/dist/_utils/placement.js +15 -0
  1521. package/dist/_utils/placement.js.map +1 -0
  1522. package/dist/_utils/polymorphic.d.ts +18 -0
  1523. package/dist/_utils/polymorphic.js +2 -0
  1524. package/dist/_utils/polymorphic.js.map +1 -0
  1525. package/dist/_utils/props.d.ts +4 -0
  1526. package/dist/_utils/props.js +5 -0
  1527. package/dist/_utils/props.js.map +1 -0
  1528. package/dist/_utils/propsTypedoc.d.ts +73 -0
  1529. package/dist/_utils/propsTypedoc.js +66 -0
  1530. package/dist/_utils/propsTypedoc.js.map +1 -0
  1531. package/dist/_utils/runInQueue.d.ts +5 -0
  1532. package/dist/_utils/runInQueue.js +64 -0
  1533. package/dist/_utils/runInQueue.js.map +1 -0
  1534. package/dist/_utils/scrollIntoView.d.ts +1 -0
  1535. package/dist/_utils/scrollIntoView.js +18 -0
  1536. package/dist/_utils/scrollIntoView.js.map +1 -0
  1537. package/dist/_utils/slotify.d.ts +11 -0
  1538. package/dist/_utils/slotify.js +46 -0
  1539. package/dist/_utils/slotify.js.map +1 -0
  1540. package/dist/_utils/triggerListeners.d.ts +11 -0
  1541. package/dist/_utils/triggerListeners.js +57 -0
  1542. package/dist/_utils/triggerListeners.js.map +1 -0
  1543. package/dist/_utils/types.d.ts +45 -0
  1544. package/dist/_utils/types.js +2 -0
  1545. package/dist/_utils/types.js.map +1 -0
  1546. package/dist/_utils/usingHookOrDefault.d.ts +1 -0
  1547. package/dist/_utils/usingHookOrDefault.js +8 -0
  1548. package/dist/_utils/usingHookOrDefault.js.map +1 -0
  1549. package/dist/index.d.ts +105 -0
  1550. package/dist/index.js +135 -0
  1551. package/dist/index.js.map +1 -0
  1552. package/package.json +166 -0
  1553. package/tsconfig.json +24 -0
  1554. package/tsconfig.prod.json +4 -0
  1555. package/tsconfig.test.json +4 -0
@@ -0,0 +1,3980 @@
1
+ import { I18njs, I18njsConfig } from '@procore/core-i18n-js';
2
+ import React from 'react';
3
+ declare type I18nConfig = Omit<I18njsConfig, 'I18n'>;
4
+ export declare type Locale = 'en' | 'en-CA' | 'fr-CA' | 'fr-FR' | 'es' | 'es-ES' | 'en-AE' | 'en-AU' | 'en-GB' | 'en-SG' | 'en-US' | 'ko' | 'th-TH' | 'pt' | 'is-IS' | 'de-DE' | 'zh-SG' | 'pseudo';
5
+ export declare const coreTranslations: {
6
+ readonly 'de-DE': {
7
+ core: {
8
+ connected: {
9
+ fileSelect: {
10
+ documents: string;
11
+ drawings: string;
12
+ forms: string;
13
+ photos: string;
14
+ selectAlbum: string;
15
+ selectAnAlbum: string;
16
+ selectArea: string;
17
+ selectAnArea: string;
18
+ selectDiscipline: string;
19
+ selectADiscipline: string;
20
+ selectSet: string;
21
+ selectASet: string;
22
+ selectTemplate: string;
23
+ selectATemplate: string;
24
+ };
25
+ emails: {
26
+ emailSendErrorTitle: string;
27
+ emailBodyRequiredError: string;
28
+ emailContentValidationError: string;
29
+ emailContentDisclaimer: string;
30
+ recipientSelectPlaceholder: string;
31
+ emailRecipientRequiredError: string;
32
+ emailSubjectRequiredError: string;
33
+ goToAllEmails: string;
34
+ sendEmail: string;
35
+ replyAll: string;
36
+ downloadAll: string;
37
+ showAll: string;
38
+ showLess: string;
39
+ composeEmailPageTitle: string;
40
+ emailSentMessage: string;
41
+ from: string;
42
+ to: string;
43
+ cc: string;
44
+ bcc: string;
45
+ downloadPdfLong: string;
46
+ downloadPdfShort: string;
47
+ privateEmailDisclaimer: string;
48
+ privateLabel: string;
49
+ settingsLink: string;
50
+ composeNewEmail: string;
51
+ startNewCommunication: string;
52
+ emptyStateTitle: string;
53
+ emptyStateDescription: string;
54
+ reply: string;
55
+ cancel: string;
56
+ subject: string;
57
+ subjectPlaceholder: string;
58
+ };
59
+ distributionSelect: {
60
+ noCompany: string;
61
+ peopleCount: string;
62
+ distributionGroups: string;
63
+ people: string;
64
+ };
65
+ relatedItems: {
66
+ cancel: string;
67
+ close: string;
68
+ date: string;
69
+ itemType: string;
70
+ itemTypeGroupLabel: {
71
+ dailyLog: string;
72
+ prostoreFile: string;
73
+ };
74
+ itemName: string;
75
+ loading: string;
76
+ notes: string;
77
+ notesPlaceholder: string;
78
+ newItem: string;
79
+ noRelatedItems: {
80
+ title: string;
81
+ description: string;
82
+ };
83
+ noItems: {
84
+ title: string;
85
+ description: string;
86
+ };
87
+ noResultsSearchQuery: {
88
+ title: string;
89
+ description: string;
90
+ };
91
+ noResultsServerError: {
92
+ title: string;
93
+ description: string;
94
+ action: string;
95
+ };
96
+ panelTitle: string;
97
+ search: string;
98
+ searchItemType: string;
99
+ submit: string;
100
+ toast: {
101
+ itemAdded: string;
102
+ itemAdditionFailed: string;
103
+ itemRemoved: string;
104
+ requestError: string;
105
+ };
106
+ };
107
+ };
108
+ dateTimeFormat: {
109
+ dateAtTime: string;
110
+ timeOnDate: string;
111
+ };
112
+ dataTable: {
113
+ emptyState: {
114
+ noFilteredResults: {
115
+ description: string;
116
+ title: string;
117
+ };
118
+ };
119
+ exporting: string;
120
+ filters: {
121
+ filters: string;
122
+ moreFilters: string;
123
+ clearAllFilters: string;
124
+ };
125
+ grandTotals: string;
126
+ search: string;
127
+ subtotals: string;
128
+ tableSettings: {
129
+ configureColumns: string;
130
+ resetToDefault: string;
131
+ rowHeight: string;
132
+ small: string;
133
+ medium: string;
134
+ large: string;
135
+ tableSettings: string;
136
+ };
137
+ };
138
+ dateInput: {
139
+ segment: {
140
+ ariaLabel: {
141
+ withValue: {
142
+ month: string;
143
+ day: string;
144
+ year: string;
145
+ };
146
+ withoutValue: {
147
+ month: string;
148
+ day: string;
149
+ year: string;
150
+ };
151
+ };
152
+ };
153
+ clearButton: {
154
+ ariaLabel: string;
155
+ };
156
+ };
157
+ dropdown: {
158
+ search: string;
159
+ };
160
+ dropzone: {
161
+ uploadFiles: {
162
+ one: string;
163
+ other: string;
164
+ };
165
+ dragAndDrop: string;
166
+ incorrectFileTypeMessage: {
167
+ one: string;
168
+ other: string;
169
+ };
170
+ incorrectFileNumber: string;
171
+ invalidAmountAttachments: {
172
+ one: string;
173
+ other: string;
174
+ };
175
+ hideDetails: string;
176
+ showDetails: string;
177
+ errorTitle: string;
178
+ oneFileAtATimeError: string;
179
+ multipleErrorsMessage: string;
180
+ maxFileSizeErrorGroup: string;
181
+ minFileSizeErrorGroup: string;
182
+ maxFileNumberErrorGroup: string;
183
+ wrongFileTypeErrorGroup: string;
184
+ standaloneMaxFileNumberError: string;
185
+ standaloneUnsupportedFileTypeError: string;
186
+ standaloneMinFileSizeError: string;
187
+ standaloneMaxFileSizeError: string;
188
+ };
189
+ modal: {
190
+ a11y: {
191
+ close: string;
192
+ };
193
+ };
194
+ tearsheet: {
195
+ a11y: {
196
+ close: string;
197
+ };
198
+ };
199
+ fileAttacher: {
200
+ attachFiles: {
201
+ one: string;
202
+ other: string;
203
+ };
204
+ };
205
+ tree: {
206
+ selectionLimit: {
207
+ one: string;
208
+ other: string;
209
+ };
210
+ unsupportedFileType: {
211
+ specific: string;
212
+ unspecific: string;
213
+ };
214
+ };
215
+ fileExplorer: {
216
+ filesSelectedWithLimit: string;
217
+ ungroupedThumbnailGridGroup: string;
218
+ filesSelected: {
219
+ one: string;
220
+ other: string;
221
+ };
222
+ cancelAction: string;
223
+ attachAction: string;
224
+ maxNumberOfFilesSelected: string;
225
+ modalTitle: string;
226
+ filesPendingUpload: string;
227
+ noSelectedItems: string;
228
+ emptySearchResults: string;
229
+ noItems: string;
230
+ searchPlaceholder: string;
231
+ uploadFailed: string;
232
+ supportedFileTypes: string;
233
+ };
234
+ form: {
235
+ checkbox: {
236
+ no: string;
237
+ yes: string;
238
+ };
239
+ errorBanner: {
240
+ coundNotCreateItem: string;
241
+ couldNotUpdateItem: string;
242
+ fixErrorsToCreate: string;
243
+ fixErrorsToUpdate: string;
244
+ };
245
+ };
246
+ menu: {
247
+ search: string;
248
+ };
249
+ pagination: {
250
+ interval: string;
251
+ notation: string;
252
+ page: string;
253
+ nextPage: string;
254
+ prevPage: string;
255
+ };
256
+ select: {
257
+ search: string;
258
+ };
259
+ tabs: {
260
+ more: string;
261
+ };
262
+ fileList: {
263
+ downloadAll: string;
264
+ download: string;
265
+ noPreview: string;
266
+ };
267
+ tieredSelect: {
268
+ emptyMessage: string;
269
+ placeholder: string;
270
+ quickCreateActionLabel: string;
271
+ quickCreateCancelLabel: string;
272
+ quickCreateCreateLabel: string;
273
+ quickCreatePlaceholder: string;
274
+ searchEmptyMessage: string;
275
+ searchPlaceholder: string;
276
+ spinnerLabel: string;
277
+ };
278
+ tieredDropdown: {
279
+ emptyMessage: string;
280
+ searchEmptyMessage: string;
281
+ searchPlaceholder: string;
282
+ spinnerLabel: string;
283
+ };
284
+ fileSelect: {
285
+ localFilesSource: string;
286
+ uploadFailed: string;
287
+ maxNumberOfFilesSelected: string;
288
+ };
289
+ required: {
290
+ requiredFields: string;
291
+ };
292
+ wxpDetailPage: {
293
+ requiredFields: string;
294
+ };
295
+ avatarStack: {
296
+ viewAll: string;
297
+ close: string;
298
+ };
299
+ panel: {
300
+ close: string;
301
+ };
302
+ };
303
+ };
304
+ readonly en: {
305
+ core: {
306
+ banner: {
307
+ dismissAlert: string;
308
+ };
309
+ breadcrumbs: {
310
+ label: string;
311
+ };
312
+ calendar: {
313
+ navigationLabel: string;
314
+ };
315
+ connected: {
316
+ fileSelect: {
317
+ documents: string;
318
+ drawings: string;
319
+ forms: string;
320
+ photos: string;
321
+ selectAlbum: string;
322
+ selectAnAlbum: string;
323
+ selectArea: string;
324
+ selectAnArea: string;
325
+ selectDiscipline: string;
326
+ selectADiscipline: string;
327
+ selectSet: string;
328
+ selectASet: string;
329
+ selectTemplate: string;
330
+ selectATemplate: string;
331
+ };
332
+ emails: {
333
+ emailSendErrorTitle: string;
334
+ emailBodyRequiredError: string;
335
+ emailContentValidationError: string;
336
+ emailContentDisclaimer: string;
337
+ recipientSelectPlaceholder: string;
338
+ emailRecipientRequiredError: string;
339
+ emailSubjectRequiredError: string;
340
+ goToAllEmails: string;
341
+ sendEmail: string;
342
+ replyAll: string;
343
+ downloadAll: string;
344
+ showAll: string;
345
+ showLess: string;
346
+ composeEmailPageTitle: string;
347
+ emailSentMessage: string;
348
+ from: string;
349
+ to: string;
350
+ cc: string;
351
+ bcc: string;
352
+ downloadPdfLong: string;
353
+ downloadPdfShort: string;
354
+ privateEmailDisclaimer: string;
355
+ privateLabel: string;
356
+ settingsLink: string;
357
+ composeNewEmail: string;
358
+ startNewCommunication: string;
359
+ emptyStateTitle: string;
360
+ emptyStateDescription: string;
361
+ reply: string;
362
+ cancel: string;
363
+ subject: string;
364
+ subjectPlaceholder: string;
365
+ };
366
+ distributionSelect: {
367
+ noCompany: string;
368
+ peopleCount: string;
369
+ distributionGroups: string;
370
+ people: string;
371
+ };
372
+ relatedItems: {
373
+ cancel: string;
374
+ close: string;
375
+ date: string;
376
+ itemType: string;
377
+ itemTypeGroupLabel: {
378
+ dailyLog: string;
379
+ prostoreFile: string;
380
+ };
381
+ itemName: string;
382
+ loading: string;
383
+ notes: string;
384
+ notesPlaceholder: string;
385
+ newItem: string;
386
+ noRelatedItems: {
387
+ title: string;
388
+ description: string;
389
+ };
390
+ noItems: {
391
+ title: string;
392
+ description: string;
393
+ };
394
+ noResultsSearchQuery: {
395
+ title: string;
396
+ description: string;
397
+ };
398
+ noResultsServerError: {
399
+ title: string;
400
+ description: string;
401
+ action: string;
402
+ };
403
+ panelTitle: string;
404
+ search: string;
405
+ searchItemType: string;
406
+ submit: string;
407
+ toast: {
408
+ itemAdded: string;
409
+ itemAdditionFailed: string;
410
+ itemRemoved: string;
411
+ requestError: string;
412
+ };
413
+ };
414
+ };
415
+ dateTimeFormat: {
416
+ dateAtTime: string;
417
+ timeOnDate: string;
418
+ };
419
+ dataTable: {
420
+ emptyState: {
421
+ noFilteredResults: {
422
+ description: string;
423
+ title: string;
424
+ };
425
+ };
426
+ exporting: string;
427
+ filters: {
428
+ filters: string;
429
+ moreFilters: string;
430
+ clearAllFilters: string;
431
+ };
432
+ grandTotals: string;
433
+ search: string;
434
+ subtotals: string;
435
+ tableSettings: {
436
+ configureColumns: string;
437
+ resetToDefault: string;
438
+ rowHeight: string;
439
+ small: string;
440
+ medium: string;
441
+ large: string;
442
+ tableSettings: string;
443
+ };
444
+ };
445
+ dateInput: {
446
+ clear: string;
447
+ ariaLabel: string;
448
+ segment: {
449
+ ariaLabel: {
450
+ withValue: {
451
+ month: string;
452
+ day: string;
453
+ year: string;
454
+ };
455
+ withoutValue: {
456
+ month: string;
457
+ day: string;
458
+ year: string;
459
+ };
460
+ };
461
+ ariaValueText: {
462
+ empty: string;
463
+ };
464
+ };
465
+ clearButton: {
466
+ ariaLabel: string;
467
+ };
468
+ };
469
+ dropdown: {
470
+ search: string;
471
+ moreOptions: string;
472
+ loading: string;
473
+ };
474
+ dropzone: {
475
+ uploadFiles: {
476
+ one: string;
477
+ other: string;
478
+ };
479
+ dragAndDrop: string;
480
+ incorrectFileTypeMessage: {
481
+ one: string;
482
+ other: string;
483
+ };
484
+ incorrectFileNumber: string;
485
+ invalidAmountAttachments: {
486
+ one: string;
487
+ other: string;
488
+ };
489
+ hideDetails: string;
490
+ showDetails: string;
491
+ errorTitle: string;
492
+ oneFileAtATimeError: string;
493
+ multipleErrorsMessage: string;
494
+ maxFileSizeErrorGroup: string;
495
+ minFileSizeErrorGroup: string;
496
+ maxFileNumberErrorGroup: string;
497
+ wrongFileTypeErrorGroup: string;
498
+ standaloneMaxFileNumberError: string;
499
+ standaloneUnsupportedFileTypeError: string;
500
+ standaloneMinFileSizeError: string;
501
+ standaloneMaxFileSizeError: string;
502
+ uploadTotalProgress: {
503
+ withFailed: string;
504
+ withoutFailed: string;
505
+ };
506
+ };
507
+ modal: {
508
+ a11y: {
509
+ close: string;
510
+ };
511
+ cancel: string;
512
+ };
513
+ multiSelect: {
514
+ clearAll: string;
515
+ selectValues: string;
516
+ noResults: string;
517
+ };
518
+ tearsheet: {
519
+ a11y: {
520
+ close: string;
521
+ };
522
+ };
523
+ fileAttacher: {
524
+ attachFiles: {
525
+ one: string;
526
+ other: string;
527
+ };
528
+ };
529
+ fileToken: {
530
+ uploading: string;
531
+ };
532
+ tree: {
533
+ selectionLimit: {
534
+ one: string;
535
+ other: string;
536
+ };
537
+ unsupportedFileType: {
538
+ specific: string;
539
+ unspecific: string;
540
+ };
541
+ };
542
+ fileExplorer: {
543
+ filesSelectedWithLimit: string;
544
+ ungroupedThumbnailGridGroup: string;
545
+ filesSelected: {
546
+ one: string;
547
+ other: string;
548
+ };
549
+ cancelAction: string;
550
+ attachAction: string;
551
+ maxNumberOfFilesSelected: string;
552
+ modalTitle: string;
553
+ filesPendingUpload: string;
554
+ noSelectedItems: string;
555
+ emptySearchResults: string;
556
+ noItems: string;
557
+ searchPlaceholder: string;
558
+ uploadFailed: string;
559
+ supportedFileTypes: string;
560
+ };
561
+ form: {
562
+ closeWithConfirm: {
563
+ confirmMessage: string;
564
+ };
565
+ checkbox: {
566
+ no: string;
567
+ yes: string;
568
+ };
569
+ errorBanner: {
570
+ coundNotCreateItem: string;
571
+ couldNotUpdateItem: string;
572
+ fixErrorsToCreate: string;
573
+ fixErrorsToUpdate: string;
574
+ };
575
+ field: {
576
+ tooltipHelp: string;
577
+ };
578
+ };
579
+ menu: {
580
+ search: string;
581
+ };
582
+ pagination: {
583
+ interval: string;
584
+ notation: string;
585
+ page: string;
586
+ nextPage: string;
587
+ prevPage: string;
588
+ };
589
+ search: {
590
+ clear: string;
591
+ goSearch: string;
592
+ };
593
+ select: {
594
+ clear: string;
595
+ search: string;
596
+ };
597
+ tabs: {
598
+ more: string;
599
+ };
600
+ thumbnail: {
601
+ checked: string;
602
+ };
603
+ thumbnailList: {
604
+ removeUpload: string;
605
+ uploading: string;
606
+ };
607
+ toast: {
608
+ a11y: {
609
+ dismiss: string;
610
+ };
611
+ };
612
+ fileList: {
613
+ downloadAll: string;
614
+ download: string;
615
+ noPreview: string;
616
+ };
617
+ tieredSelect: {
618
+ emptyMessage: string;
619
+ goToTier: string;
620
+ placeholder: string;
621
+ quickCreateActionLabel: string;
622
+ quickCreateCancelLabel: string;
623
+ quickCreateCreateLabel: string;
624
+ quickCreatePlaceholder: string;
625
+ searchEmptyMessage: string;
626
+ searchPlaceholder: string;
627
+ spinnerLabel: string;
628
+ };
629
+ tieredDropdown: {
630
+ emptyMessage: string;
631
+ searchEmptyMessage: string;
632
+ searchPlaceholder: string;
633
+ spinnerLabel: string;
634
+ };
635
+ token: {
636
+ remove: string;
637
+ };
638
+ toolHeader: {
639
+ settingsAction: string;
640
+ };
641
+ fileSelect: {
642
+ localFilesSource: string;
643
+ uploadFailed: string;
644
+ maxNumberOfFilesSelected: string;
645
+ };
646
+ required: {
647
+ requiredFields: string;
648
+ };
649
+ avatarStack: {
650
+ viewAll: string;
651
+ close: string;
652
+ };
653
+ panel: {
654
+ close: string;
655
+ goBack: string;
656
+ };
657
+ };
658
+ };
659
+ readonly 'en-AU': {
660
+ core: {
661
+ connected: {
662
+ fileSelect: {
663
+ documents: string;
664
+ drawings: string;
665
+ forms: string;
666
+ photos: string;
667
+ selectAlbum: string;
668
+ selectAnAlbum: string;
669
+ selectArea: string;
670
+ selectAnArea: string;
671
+ selectDiscipline: string;
672
+ selectADiscipline: string;
673
+ selectSet: string;
674
+ selectASet: string;
675
+ selectTemplate: string;
676
+ selectATemplate: string;
677
+ };
678
+ emails: {
679
+ emailSendErrorTitle: string;
680
+ emailBodyRequiredError: string;
681
+ emailContentValidationError: string;
682
+ emailContentDisclaimer: string;
683
+ recipientSelectPlaceholder: string;
684
+ emailRecipientRequiredError: string;
685
+ emailSubjectRequiredError: string;
686
+ goToAllEmails: string;
687
+ sendEmail: string;
688
+ replyAll: string;
689
+ downloadAll: string;
690
+ showAll: string;
691
+ showLess: string;
692
+ composeEmailPageTitle: string;
693
+ emailSentMessage: string;
694
+ from: string;
695
+ to: string;
696
+ cc: string;
697
+ bcc: string;
698
+ downloadPdfLong: string;
699
+ downloadPdfShort: string;
700
+ privateEmailDisclaimer: string;
701
+ privateLabel: string;
702
+ settingsLink: string;
703
+ composeNewEmail: string;
704
+ startNewCommunication: string;
705
+ emptyStateTitle: string;
706
+ emptyStateDescription: string;
707
+ reply: string;
708
+ cancel: string;
709
+ subject: string;
710
+ subjectPlaceholder: string;
711
+ };
712
+ distributionSelect: {
713
+ noCompany: string;
714
+ peopleCount: string;
715
+ distributionGroups: string;
716
+ people: string;
717
+ };
718
+ relatedItems: {
719
+ cancel: string;
720
+ close: string;
721
+ date: string;
722
+ itemType: string;
723
+ itemTypeGroupLabel: {
724
+ dailyLog: string;
725
+ prostoreFile: string;
726
+ };
727
+ itemName: string;
728
+ loading: string;
729
+ notes: string;
730
+ notesPlaceholder: string;
731
+ newItem: string;
732
+ noRelatedItems: {
733
+ title: string;
734
+ description: string;
735
+ };
736
+ noItems: {
737
+ title: string;
738
+ description: string;
739
+ };
740
+ noResultsSearchQuery: {
741
+ title: string;
742
+ description: string;
743
+ };
744
+ noResultsServerError: {
745
+ title: string;
746
+ description: string;
747
+ action: string;
748
+ };
749
+ panelTitle: string;
750
+ search: string;
751
+ searchItemType: string;
752
+ submit: string;
753
+ toast: {
754
+ itemAdded: string;
755
+ itemAdditionFailed: string;
756
+ itemRemoved: string;
757
+ requestError: string;
758
+ };
759
+ };
760
+ };
761
+ dateTimeFormat: {
762
+ dateAtTime: string;
763
+ timeOnDate: string;
764
+ };
765
+ dataTable: {
766
+ emptyState: {
767
+ noFilteredResults: {
768
+ description: string;
769
+ title: string;
770
+ };
771
+ };
772
+ exporting: string;
773
+ filters: {
774
+ filters: string;
775
+ moreFilters: string;
776
+ clearAllFilters: string;
777
+ };
778
+ grandTotals: string;
779
+ search: string;
780
+ subtotals: string;
781
+ tableSettings: {
782
+ configureColumns: string;
783
+ resetToDefault: string;
784
+ rowHeight: string;
785
+ small: string;
786
+ medium: string;
787
+ large: string;
788
+ tableSettings: string;
789
+ };
790
+ };
791
+ dateInput: {
792
+ segment: {
793
+ ariaLabel: {
794
+ withValue: {
795
+ month: string;
796
+ day: string;
797
+ year: string;
798
+ };
799
+ withoutValue: {
800
+ month: string;
801
+ day: string;
802
+ year: string;
803
+ };
804
+ };
805
+ };
806
+ clearButton: {
807
+ ariaLabel: string;
808
+ };
809
+ };
810
+ dropdown: {
811
+ search: string;
812
+ };
813
+ dropzone: {
814
+ uploadFiles: {
815
+ one: string;
816
+ other: string;
817
+ };
818
+ dragAndDrop: string;
819
+ incorrectFileTypeMessage: {
820
+ one: string;
821
+ other: string;
822
+ };
823
+ incorrectFileNumber: string;
824
+ invalidAmountAttachments: {
825
+ one: string;
826
+ other: string;
827
+ };
828
+ hideDetails: string;
829
+ showDetails: string;
830
+ errorTitle: string;
831
+ oneFileAtATimeError: string;
832
+ multipleErrorsMessage: string;
833
+ maxFileSizeErrorGroup: string;
834
+ minFileSizeErrorGroup: string;
835
+ maxFileNumberErrorGroup: string;
836
+ wrongFileTypeErrorGroup: string;
837
+ standaloneMaxFileNumberError: string;
838
+ standaloneUnsupportedFileTypeError: string;
839
+ standaloneMinFileSizeError: string;
840
+ standaloneMaxFileSizeError: string;
841
+ };
842
+ modal: {
843
+ a11y: {
844
+ close: string;
845
+ };
846
+ };
847
+ tearsheet: {
848
+ a11y: {
849
+ close: string;
850
+ };
851
+ };
852
+ fileAttacher: {
853
+ attachFiles: {
854
+ one: string;
855
+ other: string;
856
+ };
857
+ };
858
+ tree: {
859
+ selectionLimit: {
860
+ one: string;
861
+ other: string;
862
+ };
863
+ unsupportedFileType: {
864
+ specific: string;
865
+ unspecific: string;
866
+ };
867
+ };
868
+ fileExplorer: {
869
+ filesSelectedWithLimit: string;
870
+ ungroupedThumbnailGridGroup: string;
871
+ filesSelected: {
872
+ one: string;
873
+ other: string;
874
+ };
875
+ cancelAction: string;
876
+ attachAction: string;
877
+ maxNumberOfFilesSelected: string;
878
+ modalTitle: string;
879
+ filesPendingUpload: string;
880
+ noSelectedItems: string;
881
+ emptySearchResults: string;
882
+ noItems: string;
883
+ searchPlaceholder: string;
884
+ uploadFailed: string;
885
+ supportedFileTypes: string;
886
+ };
887
+ form: {
888
+ checkbox: {
889
+ no: string;
890
+ yes: string;
891
+ };
892
+ errorBanner: {
893
+ coundNotCreateItem: string;
894
+ couldNotUpdateItem: string;
895
+ fixErrorsToCreate: string;
896
+ fixErrorsToUpdate: string;
897
+ };
898
+ };
899
+ menu: {
900
+ search: string;
901
+ };
902
+ pagination: {
903
+ interval: string;
904
+ notation: string;
905
+ page: string;
906
+ nextPage: string;
907
+ prevPage: string;
908
+ };
909
+ select: {
910
+ search: string;
911
+ };
912
+ tabs: {
913
+ more: string;
914
+ };
915
+ fileList: {
916
+ downloadAll: string;
917
+ download: string;
918
+ noPreview: string;
919
+ };
920
+ tieredSelect: {
921
+ emptyMessage: string;
922
+ placeholder: string;
923
+ quickCreateActionLabel: string;
924
+ quickCreateCancelLabel: string;
925
+ quickCreateCreateLabel: string;
926
+ quickCreatePlaceholder: string;
927
+ searchEmptyMessage: string;
928
+ searchPlaceholder: string;
929
+ spinnerLabel: string;
930
+ };
931
+ tieredDropdown: {
932
+ emptyMessage: string;
933
+ searchEmptyMessage: string;
934
+ searchPlaceholder: string;
935
+ spinnerLabel: string;
936
+ };
937
+ fileSelect: {
938
+ localFilesSource: string;
939
+ uploadFailed: string;
940
+ maxNumberOfFilesSelected: string;
941
+ };
942
+ required: {
943
+ requiredFields: string;
944
+ };
945
+ wxpDetailPage: {
946
+ requiredFields: string;
947
+ };
948
+ avatarStack: {
949
+ viewAll: string;
950
+ close: string;
951
+ };
952
+ panel: {
953
+ close: string;
954
+ };
955
+ };
956
+ };
957
+ readonly 'en-CA': {
958
+ core: {
959
+ connected: {
960
+ fileSelect: {
961
+ documents: string;
962
+ drawings: string;
963
+ forms: string;
964
+ photos: string;
965
+ selectAlbum: string;
966
+ selectAnAlbum: string;
967
+ selectArea: string;
968
+ selectAnArea: string;
969
+ selectDiscipline: string;
970
+ selectADiscipline: string;
971
+ selectSet: string;
972
+ selectASet: string;
973
+ selectTemplate: string;
974
+ selectATemplate: string;
975
+ };
976
+ emails: {
977
+ emailSendErrorTitle: string;
978
+ emailBodyRequiredError: string;
979
+ emailContentValidationError: string;
980
+ emailContentDisclaimer: string;
981
+ recipientSelectPlaceholder: string;
982
+ emailRecipientRequiredError: string;
983
+ emailSubjectRequiredError: string;
984
+ goToAllEmails: string;
985
+ sendEmail: string;
986
+ replyAll: string;
987
+ downloadAll: string;
988
+ showAll: string;
989
+ showLess: string;
990
+ composeEmailPageTitle: string;
991
+ emailSentMessage: string;
992
+ from: string;
993
+ to: string;
994
+ cc: string;
995
+ bcc: string;
996
+ downloadPdfLong: string;
997
+ downloadPdfShort: string;
998
+ privateEmailDisclaimer: string;
999
+ privateLabel: string;
1000
+ settingsLink: string;
1001
+ composeNewEmail: string;
1002
+ startNewCommunication: string;
1003
+ emptyStateTitle: string;
1004
+ emptyStateDescription: string;
1005
+ reply: string;
1006
+ cancel: string;
1007
+ subject: string;
1008
+ subjectPlaceholder: string;
1009
+ };
1010
+ distributionSelect: {
1011
+ noCompany: string;
1012
+ peopleCount: string;
1013
+ distributionGroups: string;
1014
+ people: string;
1015
+ };
1016
+ relatedItems: {
1017
+ cancel: string;
1018
+ close: string;
1019
+ date: string;
1020
+ itemType: string;
1021
+ itemTypeGroupLabel: {
1022
+ dailyLog: string;
1023
+ prostoreFile: string;
1024
+ };
1025
+ itemName: string;
1026
+ loading: string;
1027
+ notes: string;
1028
+ notesPlaceholder: string;
1029
+ newItem: string;
1030
+ noRelatedItems: {
1031
+ title: string;
1032
+ description: string;
1033
+ };
1034
+ noItems: {
1035
+ title: string;
1036
+ description: string;
1037
+ };
1038
+ noResultsSearchQuery: {
1039
+ title: string;
1040
+ description: string;
1041
+ };
1042
+ noResultsServerError: {
1043
+ title: string;
1044
+ description: string;
1045
+ action: string;
1046
+ };
1047
+ panelTitle: string;
1048
+ search: string;
1049
+ searchItemType: string;
1050
+ submit: string;
1051
+ toast: {
1052
+ itemAdded: string;
1053
+ itemAdditionFailed: string;
1054
+ itemRemoved: string;
1055
+ requestError: string;
1056
+ };
1057
+ };
1058
+ };
1059
+ dateTimeFormat: {
1060
+ dateAtTime: string;
1061
+ timeOnDate: string;
1062
+ };
1063
+ dataTable: {
1064
+ emptyState: {
1065
+ noFilteredResults: {
1066
+ description: string;
1067
+ title: string;
1068
+ };
1069
+ };
1070
+ exporting: string;
1071
+ filters: {
1072
+ filters: string;
1073
+ moreFilters: string;
1074
+ clearAllFilters: string;
1075
+ };
1076
+ grandTotals: string;
1077
+ search: string;
1078
+ subtotals: string;
1079
+ tableSettings: {
1080
+ configureColumns: string;
1081
+ resetToDefault: string;
1082
+ rowHeight: string;
1083
+ small: string;
1084
+ medium: string;
1085
+ large: string;
1086
+ tableSettings: string;
1087
+ };
1088
+ };
1089
+ dateInput: {
1090
+ segment: {
1091
+ ariaLabel: {
1092
+ withValue: {
1093
+ month: string;
1094
+ day: string;
1095
+ year: string;
1096
+ };
1097
+ withoutValue: {
1098
+ month: string;
1099
+ day: string;
1100
+ year: string;
1101
+ };
1102
+ };
1103
+ };
1104
+ clearButton: {
1105
+ ariaLabel: string;
1106
+ };
1107
+ };
1108
+ dropdown: {
1109
+ search: string;
1110
+ };
1111
+ dropzone: {
1112
+ uploadFiles: {
1113
+ one: string;
1114
+ other: string;
1115
+ };
1116
+ dragAndDrop: string;
1117
+ incorrectFileTypeMessage: {
1118
+ one: string;
1119
+ other: string;
1120
+ };
1121
+ incorrectFileNumber: string;
1122
+ invalidAmountAttachments: {
1123
+ one: string;
1124
+ other: string;
1125
+ };
1126
+ hideDetails: string;
1127
+ showDetails: string;
1128
+ errorTitle: string;
1129
+ oneFileAtATimeError: string;
1130
+ multipleErrorsMessage: string;
1131
+ maxFileSizeErrorGroup: string;
1132
+ minFileSizeErrorGroup: string;
1133
+ maxFileNumberErrorGroup: string;
1134
+ wrongFileTypeErrorGroup: string;
1135
+ standaloneMaxFileNumberError: string;
1136
+ standaloneUnsupportedFileTypeError: string;
1137
+ standaloneMinFileSizeError: string;
1138
+ standaloneMaxFileSizeError: string;
1139
+ };
1140
+ modal: {
1141
+ a11y: {
1142
+ close: string;
1143
+ };
1144
+ };
1145
+ tearsheet: {
1146
+ a11y: {
1147
+ close: string;
1148
+ };
1149
+ };
1150
+ fileAttacher: {
1151
+ attachFiles: {
1152
+ one: string;
1153
+ other: string;
1154
+ };
1155
+ };
1156
+ tree: {
1157
+ selectionLimit: {
1158
+ one: string;
1159
+ other: string;
1160
+ };
1161
+ unsupportedFileType: {
1162
+ specific: string;
1163
+ unspecific: string;
1164
+ };
1165
+ };
1166
+ fileExplorer: {
1167
+ filesSelectedWithLimit: string;
1168
+ ungroupedThumbnailGridGroup: string;
1169
+ filesSelected: {
1170
+ one: string;
1171
+ other: string;
1172
+ };
1173
+ cancelAction: string;
1174
+ attachAction: string;
1175
+ maxNumberOfFilesSelected: string;
1176
+ modalTitle: string;
1177
+ filesPendingUpload: string;
1178
+ noSelectedItems: string;
1179
+ emptySearchResults: string;
1180
+ noItems: string;
1181
+ searchPlaceholder: string;
1182
+ uploadFailed: string;
1183
+ supportedFileTypes: string;
1184
+ };
1185
+ form: {
1186
+ checkbox: {
1187
+ no: string;
1188
+ yes: string;
1189
+ };
1190
+ errorBanner: {
1191
+ coundNotCreateItem: string;
1192
+ couldNotUpdateItem: string;
1193
+ fixErrorsToCreate: string;
1194
+ fixErrorsToUpdate: string;
1195
+ };
1196
+ };
1197
+ menu: {
1198
+ search: string;
1199
+ };
1200
+ pagination: {
1201
+ interval: string;
1202
+ notation: string;
1203
+ page: string;
1204
+ nextPage: string;
1205
+ prevPage: string;
1206
+ };
1207
+ select: {
1208
+ search: string;
1209
+ };
1210
+ tabs: {
1211
+ more: string;
1212
+ };
1213
+ fileList: {
1214
+ downloadAll: string;
1215
+ download: string;
1216
+ noPreview: string;
1217
+ };
1218
+ tieredSelect: {
1219
+ emptyMessage: string;
1220
+ placeholder: string;
1221
+ quickCreateActionLabel: string;
1222
+ quickCreateCancelLabel: string;
1223
+ quickCreateCreateLabel: string;
1224
+ quickCreatePlaceholder: string;
1225
+ searchEmptyMessage: string;
1226
+ searchPlaceholder: string;
1227
+ spinnerLabel: string;
1228
+ };
1229
+ tieredDropdown: {
1230
+ emptyMessage: string;
1231
+ searchEmptyMessage: string;
1232
+ searchPlaceholder: string;
1233
+ spinnerLabel: string;
1234
+ };
1235
+ fileSelect: {
1236
+ localFilesSource: string;
1237
+ uploadFailed: string;
1238
+ maxNumberOfFilesSelected: string;
1239
+ };
1240
+ required: {
1241
+ requiredFields: string;
1242
+ };
1243
+ wxpDetailPage: {
1244
+ requiredFields: string;
1245
+ };
1246
+ avatarStack: {
1247
+ viewAll: string;
1248
+ close: string;
1249
+ };
1250
+ panel: {
1251
+ close: string;
1252
+ };
1253
+ };
1254
+ };
1255
+ readonly 'en-GB': {
1256
+ core: {
1257
+ connected: {
1258
+ fileSelect: {
1259
+ documents: string;
1260
+ drawings: string;
1261
+ forms: string;
1262
+ photos: string;
1263
+ selectAlbum: string;
1264
+ selectAnAlbum: string;
1265
+ selectArea: string;
1266
+ selectAnArea: string;
1267
+ selectDiscipline: string;
1268
+ selectADiscipline: string;
1269
+ selectSet: string;
1270
+ selectASet: string;
1271
+ selectTemplate: string;
1272
+ selectATemplate: string;
1273
+ };
1274
+ emails: {
1275
+ emailSendErrorTitle: string;
1276
+ emailBodyRequiredError: string;
1277
+ emailContentValidationError: string;
1278
+ emailContentDisclaimer: string;
1279
+ recipientSelectPlaceholder: string;
1280
+ emailRecipientRequiredError: string;
1281
+ emailSubjectRequiredError: string;
1282
+ goToAllEmails: string;
1283
+ sendEmail: string;
1284
+ replyAll: string;
1285
+ downloadAll: string;
1286
+ showAll: string;
1287
+ showLess: string;
1288
+ composeEmailPageTitle: string;
1289
+ emailSentMessage: string;
1290
+ from: string;
1291
+ to: string;
1292
+ cc: string;
1293
+ bcc: string;
1294
+ downloadPdfLong: string;
1295
+ downloadPdfShort: string;
1296
+ privateEmailDisclaimer: string;
1297
+ privateLabel: string;
1298
+ settingsLink: string;
1299
+ composeNewEmail: string;
1300
+ startNewCommunication: string;
1301
+ emptyStateTitle: string;
1302
+ emptyStateDescription: string;
1303
+ reply: string;
1304
+ cancel: string;
1305
+ subject: string;
1306
+ subjectPlaceholder: string;
1307
+ };
1308
+ distributionSelect: {
1309
+ noCompany: string;
1310
+ peopleCount: string;
1311
+ distributionGroups: string;
1312
+ people: string;
1313
+ };
1314
+ relatedItems: {
1315
+ cancel: string;
1316
+ close: string;
1317
+ date: string;
1318
+ itemType: string;
1319
+ itemTypeGroupLabel: {
1320
+ dailyLog: string;
1321
+ prostoreFile: string;
1322
+ };
1323
+ itemName: string;
1324
+ loading: string;
1325
+ notes: string;
1326
+ notesPlaceholder: string;
1327
+ newItem: string;
1328
+ noRelatedItems: {
1329
+ title: string;
1330
+ description: string;
1331
+ };
1332
+ noItems: {
1333
+ title: string;
1334
+ description: string;
1335
+ };
1336
+ noResultsSearchQuery: {
1337
+ title: string;
1338
+ description: string;
1339
+ };
1340
+ noResultsServerError: {
1341
+ title: string;
1342
+ description: string;
1343
+ action: string;
1344
+ };
1345
+ panelTitle: string;
1346
+ search: string;
1347
+ searchItemType: string;
1348
+ submit: string;
1349
+ toast: {
1350
+ itemAdded: string;
1351
+ itemAdditionFailed: string;
1352
+ itemRemoved: string;
1353
+ requestError: string;
1354
+ };
1355
+ };
1356
+ };
1357
+ dateTimeFormat: {
1358
+ dateAtTime: string;
1359
+ timeOnDate: string;
1360
+ };
1361
+ dataTable: {
1362
+ emptyState: {
1363
+ noFilteredResults: {
1364
+ description: string;
1365
+ title: string;
1366
+ };
1367
+ };
1368
+ exporting: string;
1369
+ filters: {
1370
+ filters: string;
1371
+ moreFilters: string;
1372
+ clearAllFilters: string;
1373
+ };
1374
+ grandTotals: string;
1375
+ search: string;
1376
+ subtotals: string;
1377
+ tableSettings: {
1378
+ configureColumns: string;
1379
+ resetToDefault: string;
1380
+ rowHeight: string;
1381
+ small: string;
1382
+ medium: string;
1383
+ large: string;
1384
+ tableSettings: string;
1385
+ };
1386
+ };
1387
+ dateInput: {
1388
+ segment: {
1389
+ ariaLabel: {
1390
+ withValue: {
1391
+ month: string;
1392
+ day: string;
1393
+ year: string;
1394
+ };
1395
+ withoutValue: {
1396
+ month: string;
1397
+ day: string;
1398
+ year: string;
1399
+ };
1400
+ };
1401
+ };
1402
+ clearButton: {
1403
+ ariaLabel: string;
1404
+ };
1405
+ };
1406
+ dropdown: {
1407
+ search: string;
1408
+ };
1409
+ dropzone: {
1410
+ uploadFiles: {
1411
+ one: string;
1412
+ other: string;
1413
+ };
1414
+ dragAndDrop: string;
1415
+ incorrectFileTypeMessage: {
1416
+ one: string;
1417
+ other: string;
1418
+ };
1419
+ incorrectFileNumber: string;
1420
+ invalidAmountAttachments: {
1421
+ one: string;
1422
+ other: string;
1423
+ };
1424
+ hideDetails: string;
1425
+ showDetails: string;
1426
+ errorTitle: string;
1427
+ oneFileAtATimeError: string;
1428
+ multipleErrorsMessage: string;
1429
+ maxFileSizeErrorGroup: string;
1430
+ minFileSizeErrorGroup: string;
1431
+ maxFileNumberErrorGroup: string;
1432
+ wrongFileTypeErrorGroup: string;
1433
+ standaloneMaxFileNumberError: string;
1434
+ standaloneUnsupportedFileTypeError: string;
1435
+ standaloneMinFileSizeError: string;
1436
+ standaloneMaxFileSizeError: string;
1437
+ };
1438
+ modal: {
1439
+ a11y: {
1440
+ close: string;
1441
+ };
1442
+ };
1443
+ tearsheet: {
1444
+ a11y: {
1445
+ close: string;
1446
+ };
1447
+ };
1448
+ fileAttacher: {
1449
+ attachFiles: {
1450
+ one: string;
1451
+ other: string;
1452
+ };
1453
+ };
1454
+ tree: {
1455
+ selectionLimit: {
1456
+ one: string;
1457
+ other: string;
1458
+ };
1459
+ unsupportedFileType: {
1460
+ specific: string;
1461
+ unspecific: string;
1462
+ };
1463
+ };
1464
+ fileExplorer: {
1465
+ filesSelectedWithLimit: string;
1466
+ ungroupedThumbnailGridGroup: string;
1467
+ filesSelected: {
1468
+ one: string;
1469
+ other: string;
1470
+ };
1471
+ cancelAction: string;
1472
+ attachAction: string;
1473
+ maxNumberOfFilesSelected: string;
1474
+ modalTitle: string;
1475
+ filesPendingUpload: string;
1476
+ noSelectedItems: string;
1477
+ emptySearchResults: string;
1478
+ noItems: string;
1479
+ searchPlaceholder: string;
1480
+ uploadFailed: string;
1481
+ supportedFileTypes: string;
1482
+ };
1483
+ form: {
1484
+ checkbox: {
1485
+ no: string;
1486
+ yes: string;
1487
+ };
1488
+ errorBanner: {
1489
+ coundNotCreateItem: string;
1490
+ couldNotUpdateItem: string;
1491
+ fixErrorsToCreate: string;
1492
+ fixErrorsToUpdate: string;
1493
+ };
1494
+ };
1495
+ menu: {
1496
+ search: string;
1497
+ };
1498
+ pagination: {
1499
+ interval: string;
1500
+ notation: string;
1501
+ page: string;
1502
+ nextPage: string;
1503
+ prevPage: string;
1504
+ };
1505
+ select: {
1506
+ search: string;
1507
+ };
1508
+ tabs: {
1509
+ more: string;
1510
+ };
1511
+ fileList: {
1512
+ downloadAll: string;
1513
+ download: string;
1514
+ noPreview: string;
1515
+ };
1516
+ tieredSelect: {
1517
+ emptyMessage: string;
1518
+ placeholder: string;
1519
+ quickCreateActionLabel: string;
1520
+ quickCreateCancelLabel: string;
1521
+ quickCreateCreateLabel: string;
1522
+ quickCreatePlaceholder: string;
1523
+ searchEmptyMessage: string;
1524
+ searchPlaceholder: string;
1525
+ spinnerLabel: string;
1526
+ };
1527
+ tieredDropdown: {
1528
+ emptyMessage: string;
1529
+ searchEmptyMessage: string;
1530
+ searchPlaceholder: string;
1531
+ spinnerLabel: string;
1532
+ };
1533
+ fileSelect: {
1534
+ localFilesSource: string;
1535
+ uploadFailed: string;
1536
+ maxNumberOfFilesSelected: string;
1537
+ };
1538
+ required: {
1539
+ requiredFields: string;
1540
+ };
1541
+ wxpDetailPage: {
1542
+ requiredFields: string;
1543
+ };
1544
+ avatarStack: {
1545
+ viewAll: string;
1546
+ close: string;
1547
+ };
1548
+ panel: {
1549
+ close: string;
1550
+ };
1551
+ };
1552
+ };
1553
+ readonly 'en-US': {
1554
+ core: {
1555
+ dropdown: {
1556
+ search: string;
1557
+ };
1558
+ menu: {
1559
+ search: string;
1560
+ };
1561
+ pagination: {
1562
+ interval: string;
1563
+ };
1564
+ required: {
1565
+ requiredFields: string;
1566
+ };
1567
+ select: {
1568
+ search: string;
1569
+ };
1570
+ tabs: {
1571
+ more: string;
1572
+ };
1573
+ tieredSelect: {
1574
+ emptyMessage: string;
1575
+ placeholder: string;
1576
+ quickCreateActionLabel: string;
1577
+ quickCreateCancelLabel: string;
1578
+ quickCreateCreateLabel: string;
1579
+ quickCreatePlaceholder: string;
1580
+ searchEmptyMessage: string;
1581
+ searchPlaceholder: string;
1582
+ spinnerLabel: string;
1583
+ };
1584
+ };
1585
+ };
1586
+ readonly es: {
1587
+ core: {
1588
+ connected: {
1589
+ fileSelect: {
1590
+ documents: string;
1591
+ drawings: string;
1592
+ forms: string;
1593
+ photos: string;
1594
+ selectAlbum: string;
1595
+ selectAnAlbum: string;
1596
+ selectArea: string;
1597
+ selectAnArea: string;
1598
+ selectDiscipline: string;
1599
+ selectADiscipline: string;
1600
+ selectSet: string;
1601
+ selectASet: string;
1602
+ selectTemplate: string;
1603
+ selectATemplate: string;
1604
+ };
1605
+ emails: {
1606
+ emailSendErrorTitle: string;
1607
+ emailBodyRequiredError: string;
1608
+ emailContentValidationError: string;
1609
+ emailContentDisclaimer: string;
1610
+ recipientSelectPlaceholder: string;
1611
+ emailRecipientRequiredError: string;
1612
+ emailSubjectRequiredError: string;
1613
+ goToAllEmails: string;
1614
+ sendEmail: string;
1615
+ replyAll: string;
1616
+ downloadAll: string;
1617
+ showAll: string;
1618
+ showLess: string;
1619
+ composeEmailPageTitle: string;
1620
+ emailSentMessage: string;
1621
+ from: string;
1622
+ to: string;
1623
+ cc: string;
1624
+ bcc: string;
1625
+ downloadPdfLong: string;
1626
+ downloadPdfShort: string;
1627
+ privateEmailDisclaimer: string;
1628
+ privateLabel: string;
1629
+ settingsLink: string;
1630
+ composeNewEmail: string;
1631
+ startNewCommunication: string;
1632
+ emptyStateTitle: string;
1633
+ emptyStateDescription: string;
1634
+ reply: string;
1635
+ cancel: string;
1636
+ subject: string;
1637
+ subjectPlaceholder: string;
1638
+ };
1639
+ distributionSelect: {
1640
+ noCompany: string;
1641
+ peopleCount: string;
1642
+ distributionGroups: string;
1643
+ people: string;
1644
+ };
1645
+ relatedItems: {
1646
+ cancel: string;
1647
+ close: string;
1648
+ date: string;
1649
+ itemType: string;
1650
+ itemTypeGroupLabel: {
1651
+ dailyLog: string;
1652
+ prostoreFile: string;
1653
+ };
1654
+ itemName: string;
1655
+ loading: string;
1656
+ notes: string;
1657
+ notesPlaceholder: string;
1658
+ newItem: string;
1659
+ noRelatedItems: {
1660
+ title: string;
1661
+ description: string;
1662
+ };
1663
+ noItems: {
1664
+ title: string;
1665
+ description: string;
1666
+ };
1667
+ noResultsSearchQuery: {
1668
+ title: string;
1669
+ description: string;
1670
+ };
1671
+ noResultsServerError: {
1672
+ title: string;
1673
+ description: string;
1674
+ action: string;
1675
+ };
1676
+ panelTitle: string;
1677
+ search: string;
1678
+ searchItemType: string;
1679
+ submit: string;
1680
+ toast: {
1681
+ itemAdded: string;
1682
+ itemAdditionFailed: string;
1683
+ itemRemoved: string;
1684
+ requestError: string;
1685
+ };
1686
+ };
1687
+ };
1688
+ dateTimeFormat: {
1689
+ dateAtTime: string;
1690
+ timeOnDate: string;
1691
+ };
1692
+ dataTable: {
1693
+ emptyState: {
1694
+ noFilteredResults: {
1695
+ description: string;
1696
+ title: string;
1697
+ };
1698
+ };
1699
+ exporting: string;
1700
+ filters: {
1701
+ filters: string;
1702
+ moreFilters: string;
1703
+ clearAllFilters: string;
1704
+ };
1705
+ grandTotals: string;
1706
+ search: string;
1707
+ subtotals: string;
1708
+ tableSettings: {
1709
+ configureColumns: string;
1710
+ resetToDefault: string;
1711
+ rowHeight: string;
1712
+ small: string;
1713
+ medium: string;
1714
+ large: string;
1715
+ tableSettings: string;
1716
+ };
1717
+ };
1718
+ dateInput: {
1719
+ segment: {
1720
+ ariaLabel: {
1721
+ withValue: {
1722
+ month: string;
1723
+ day: string;
1724
+ year: string;
1725
+ };
1726
+ withoutValue: {
1727
+ month: string;
1728
+ day: string;
1729
+ year: string;
1730
+ };
1731
+ };
1732
+ };
1733
+ clearButton: {
1734
+ ariaLabel: string;
1735
+ };
1736
+ };
1737
+ dropdown: {
1738
+ search: string;
1739
+ };
1740
+ dropzone: {
1741
+ uploadFiles: {
1742
+ one: string;
1743
+ other: string;
1744
+ };
1745
+ dragAndDrop: string;
1746
+ incorrectFileTypeMessage: {
1747
+ one: string;
1748
+ other: string;
1749
+ };
1750
+ incorrectFileNumber: string;
1751
+ invalidAmountAttachments: {
1752
+ one: string;
1753
+ other: string;
1754
+ };
1755
+ hideDetails: string;
1756
+ showDetails: string;
1757
+ errorTitle: string;
1758
+ oneFileAtATimeError: string;
1759
+ multipleErrorsMessage: string;
1760
+ maxFileSizeErrorGroup: string;
1761
+ minFileSizeErrorGroup: string;
1762
+ maxFileNumberErrorGroup: string;
1763
+ wrongFileTypeErrorGroup: string;
1764
+ standaloneMaxFileNumberError: string;
1765
+ standaloneUnsupportedFileTypeError: string;
1766
+ standaloneMinFileSizeError: string;
1767
+ standaloneMaxFileSizeError: string;
1768
+ };
1769
+ modal: {
1770
+ a11y: {
1771
+ close: string;
1772
+ };
1773
+ };
1774
+ tearsheet: {
1775
+ a11y: {
1776
+ close: string;
1777
+ };
1778
+ };
1779
+ fileAttacher: {
1780
+ attachFiles: {
1781
+ one: string;
1782
+ other: string;
1783
+ };
1784
+ };
1785
+ tree: {
1786
+ selectionLimit: {
1787
+ one: string;
1788
+ other: string;
1789
+ };
1790
+ unsupportedFileType: {
1791
+ specific: string;
1792
+ unspecific: string;
1793
+ };
1794
+ };
1795
+ fileExplorer: {
1796
+ filesSelectedWithLimit: string;
1797
+ ungroupedThumbnailGridGroup: string;
1798
+ filesSelected: {
1799
+ one: string;
1800
+ other: string;
1801
+ };
1802
+ cancelAction: string;
1803
+ attachAction: string;
1804
+ maxNumberOfFilesSelected: string;
1805
+ modalTitle: string;
1806
+ filesPendingUpload: string;
1807
+ noSelectedItems: string;
1808
+ emptySearchResults: string;
1809
+ noItems: string;
1810
+ searchPlaceholder: string;
1811
+ uploadFailed: string;
1812
+ supportedFileTypes: string;
1813
+ };
1814
+ form: {
1815
+ checkbox: {
1816
+ no: string;
1817
+ yes: string;
1818
+ };
1819
+ errorBanner: {
1820
+ coundNotCreateItem: string;
1821
+ couldNotUpdateItem: string;
1822
+ fixErrorsToCreate: string;
1823
+ fixErrorsToUpdate: string;
1824
+ };
1825
+ };
1826
+ menu: {
1827
+ search: string;
1828
+ };
1829
+ pagination: {
1830
+ interval: string;
1831
+ notation: string;
1832
+ page: string;
1833
+ nextPage: string;
1834
+ prevPage: string;
1835
+ };
1836
+ select: {
1837
+ search: string;
1838
+ };
1839
+ tabs: {
1840
+ more: string;
1841
+ };
1842
+ fileList: {
1843
+ downloadAll: string;
1844
+ download: string;
1845
+ noPreview: string;
1846
+ };
1847
+ tieredSelect: {
1848
+ emptyMessage: string;
1849
+ placeholder: string;
1850
+ quickCreateActionLabel: string;
1851
+ quickCreateCancelLabel: string;
1852
+ quickCreateCreateLabel: string;
1853
+ quickCreatePlaceholder: string;
1854
+ searchEmptyMessage: string;
1855
+ searchPlaceholder: string;
1856
+ spinnerLabel: string;
1857
+ };
1858
+ tieredDropdown: {
1859
+ emptyMessage: string;
1860
+ searchEmptyMessage: string;
1861
+ searchPlaceholder: string;
1862
+ spinnerLabel: string;
1863
+ };
1864
+ fileSelect: {
1865
+ localFilesSource: string;
1866
+ uploadFailed: string;
1867
+ maxNumberOfFilesSelected: string;
1868
+ };
1869
+ required: {
1870
+ requiredFields: string;
1871
+ };
1872
+ wxpDetailPage: {
1873
+ requiredFields: string;
1874
+ };
1875
+ avatarStack: {
1876
+ viewAll: string;
1877
+ close: string;
1878
+ };
1879
+ panel: {
1880
+ close: string;
1881
+ };
1882
+ };
1883
+ };
1884
+ readonly 'es-ES': {
1885
+ core: {
1886
+ connected: {
1887
+ fileSelect: {
1888
+ documents: string;
1889
+ drawings: string;
1890
+ forms: string;
1891
+ photos: string;
1892
+ selectAlbum: string;
1893
+ selectAnAlbum: string;
1894
+ selectArea: string;
1895
+ selectAnArea: string;
1896
+ selectDiscipline: string;
1897
+ selectADiscipline: string;
1898
+ selectSet: string;
1899
+ selectASet: string;
1900
+ selectTemplate: string;
1901
+ selectATemplate: string;
1902
+ };
1903
+ emails: {
1904
+ emailSendErrorTitle: string;
1905
+ emailBodyRequiredError: string;
1906
+ emailContentValidationError: string;
1907
+ emailContentDisclaimer: string;
1908
+ recipientSelectPlaceholder: string;
1909
+ emailRecipientRequiredError: string;
1910
+ emailSubjectRequiredError: string;
1911
+ goToAllEmails: string;
1912
+ sendEmail: string;
1913
+ replyAll: string;
1914
+ downloadAll: string;
1915
+ showAll: string;
1916
+ showLess: string;
1917
+ composeEmailPageTitle: string;
1918
+ emailSentMessage: string;
1919
+ from: string;
1920
+ to: string;
1921
+ cc: string;
1922
+ bcc: string;
1923
+ downloadPdfLong: string;
1924
+ downloadPdfShort: string;
1925
+ privateEmailDisclaimer: string;
1926
+ privateLabel: string;
1927
+ settingsLink: string;
1928
+ composeNewEmail: string;
1929
+ startNewCommunication: string;
1930
+ emptyStateTitle: string;
1931
+ emptyStateDescription: string;
1932
+ reply: string;
1933
+ cancel: string;
1934
+ subject: string;
1935
+ subjectPlaceholder: string;
1936
+ };
1937
+ distributionSelect: {
1938
+ noCompany: string;
1939
+ peopleCount: string;
1940
+ distributionGroups: string;
1941
+ people: string;
1942
+ };
1943
+ relatedItems: {
1944
+ cancel: string;
1945
+ close: string;
1946
+ date: string;
1947
+ itemType: string;
1948
+ itemTypeGroupLabel: {
1949
+ dailyLog: string;
1950
+ prostoreFile: string;
1951
+ };
1952
+ itemName: string;
1953
+ loading: string;
1954
+ notes: string;
1955
+ notesPlaceholder: string;
1956
+ newItem: string;
1957
+ noRelatedItems: {
1958
+ title: string;
1959
+ description: string;
1960
+ };
1961
+ noItems: {
1962
+ title: string;
1963
+ description: string;
1964
+ };
1965
+ noResultsSearchQuery: {
1966
+ title: string;
1967
+ description: string;
1968
+ };
1969
+ noResultsServerError: {
1970
+ title: string;
1971
+ description: string;
1972
+ action: string;
1973
+ };
1974
+ panelTitle: string;
1975
+ search: string;
1976
+ searchItemType: string;
1977
+ submit: string;
1978
+ toast: {
1979
+ itemAdded: string;
1980
+ itemAdditionFailed: string;
1981
+ itemRemoved: string;
1982
+ requestError: string;
1983
+ };
1984
+ };
1985
+ };
1986
+ dateTimeFormat: {
1987
+ dateAtTime: string;
1988
+ timeOnDate: string;
1989
+ };
1990
+ dataTable: {
1991
+ emptyState: {
1992
+ noFilteredResults: {
1993
+ description: string;
1994
+ title: string;
1995
+ };
1996
+ };
1997
+ exporting: string;
1998
+ filters: {
1999
+ filters: string;
2000
+ moreFilters: string;
2001
+ clearAllFilters: string;
2002
+ };
2003
+ grandTotals: string;
2004
+ search: string;
2005
+ subtotals: string;
2006
+ tableSettings: {
2007
+ configureColumns: string;
2008
+ resetToDefault: string;
2009
+ rowHeight: string;
2010
+ small: string;
2011
+ medium: string;
2012
+ large: string;
2013
+ tableSettings: string;
2014
+ };
2015
+ };
2016
+ dateInput: {
2017
+ segment: {
2018
+ ariaLabel: {
2019
+ withValue: {
2020
+ month: string;
2021
+ day: string;
2022
+ year: string;
2023
+ };
2024
+ withoutValue: {
2025
+ month: string;
2026
+ day: string;
2027
+ year: string;
2028
+ };
2029
+ };
2030
+ };
2031
+ clearButton: {
2032
+ ariaLabel: string;
2033
+ };
2034
+ };
2035
+ dropdown: {
2036
+ search: string;
2037
+ };
2038
+ dropzone: {
2039
+ uploadFiles: {
2040
+ one: string;
2041
+ other: string;
2042
+ };
2043
+ dragAndDrop: string;
2044
+ incorrectFileTypeMessage: {
2045
+ one: string;
2046
+ other: string;
2047
+ };
2048
+ incorrectFileNumber: string;
2049
+ invalidAmountAttachments: {
2050
+ one: string;
2051
+ other: string;
2052
+ };
2053
+ hideDetails: string;
2054
+ showDetails: string;
2055
+ errorTitle: string;
2056
+ oneFileAtATimeError: string;
2057
+ multipleErrorsMessage: string;
2058
+ maxFileSizeErrorGroup: string;
2059
+ minFileSizeErrorGroup: string;
2060
+ maxFileNumberErrorGroup: string;
2061
+ wrongFileTypeErrorGroup: string;
2062
+ standaloneMaxFileNumberError: string;
2063
+ standaloneUnsupportedFileTypeError: string;
2064
+ standaloneMinFileSizeError: string;
2065
+ standaloneMaxFileSizeError: string;
2066
+ };
2067
+ modal: {
2068
+ a11y: {
2069
+ close: string;
2070
+ };
2071
+ };
2072
+ tearsheet: {
2073
+ a11y: {
2074
+ close: string;
2075
+ };
2076
+ };
2077
+ fileAttacher: {
2078
+ attachFiles: {
2079
+ one: string;
2080
+ other: string;
2081
+ };
2082
+ };
2083
+ tree: {
2084
+ selectionLimit: {
2085
+ one: string;
2086
+ other: string;
2087
+ };
2088
+ unsupportedFileType: {
2089
+ specific: string;
2090
+ unspecific: string;
2091
+ };
2092
+ };
2093
+ fileExplorer: {
2094
+ filesSelectedWithLimit: string;
2095
+ ungroupedThumbnailGridGroup: string;
2096
+ filesSelected: {
2097
+ one: string;
2098
+ other: string;
2099
+ };
2100
+ cancelAction: string;
2101
+ attachAction: string;
2102
+ maxNumberOfFilesSelected: string;
2103
+ modalTitle: string;
2104
+ filesPendingUpload: string;
2105
+ noSelectedItems: string;
2106
+ emptySearchResults: string;
2107
+ noItems: string;
2108
+ searchPlaceholder: string;
2109
+ uploadFailed: string;
2110
+ supportedFileTypes: string;
2111
+ };
2112
+ form: {
2113
+ checkbox: {
2114
+ no: string;
2115
+ yes: string;
2116
+ };
2117
+ errorBanner: {
2118
+ coundNotCreateItem: string;
2119
+ couldNotUpdateItem: string;
2120
+ fixErrorsToCreate: string;
2121
+ fixErrorsToUpdate: string;
2122
+ };
2123
+ };
2124
+ menu: {
2125
+ search: string;
2126
+ };
2127
+ pagination: {
2128
+ interval: string;
2129
+ notation: string;
2130
+ page: string;
2131
+ nextPage: string;
2132
+ prevPage: string;
2133
+ };
2134
+ select: {
2135
+ search: string;
2136
+ };
2137
+ tabs: {
2138
+ more: string;
2139
+ };
2140
+ fileList: {
2141
+ downloadAll: string;
2142
+ download: string;
2143
+ noPreview: string;
2144
+ };
2145
+ tieredSelect: {
2146
+ emptyMessage: string;
2147
+ placeholder: string;
2148
+ quickCreateActionLabel: string;
2149
+ quickCreateCancelLabel: string;
2150
+ quickCreateCreateLabel: string;
2151
+ quickCreatePlaceholder: string;
2152
+ searchEmptyMessage: string;
2153
+ searchPlaceholder: string;
2154
+ spinnerLabel: string;
2155
+ };
2156
+ tieredDropdown: {
2157
+ emptyMessage: string;
2158
+ searchEmptyMessage: string;
2159
+ searchPlaceholder: string;
2160
+ spinnerLabel: string;
2161
+ };
2162
+ fileSelect: {
2163
+ localFilesSource: string;
2164
+ uploadFailed: string;
2165
+ maxNumberOfFilesSelected: string;
2166
+ };
2167
+ required: {
2168
+ requiredFields: string;
2169
+ };
2170
+ wxpDetailPage: {
2171
+ requiredFields: string;
2172
+ };
2173
+ avatarStack: {
2174
+ viewAll: string;
2175
+ close: string;
2176
+ };
2177
+ panel: {
2178
+ close: string;
2179
+ };
2180
+ };
2181
+ };
2182
+ readonly 'fr-CA': {
2183
+ core: {
2184
+ connected: {
2185
+ fileSelect: {
2186
+ documents: string;
2187
+ drawings: string;
2188
+ forms: string;
2189
+ photos: string;
2190
+ selectAlbum: string;
2191
+ selectAnAlbum: string;
2192
+ selectArea: string;
2193
+ selectAnArea: string;
2194
+ selectDiscipline: string;
2195
+ selectADiscipline: string;
2196
+ selectSet: string;
2197
+ selectASet: string;
2198
+ selectTemplate: string;
2199
+ selectATemplate: string;
2200
+ };
2201
+ emails: {
2202
+ emailSendErrorTitle: string;
2203
+ emailBodyRequiredError: string;
2204
+ emailContentValidationError: string;
2205
+ emailContentDisclaimer: string;
2206
+ recipientSelectPlaceholder: string;
2207
+ emailRecipientRequiredError: string;
2208
+ emailSubjectRequiredError: string;
2209
+ goToAllEmails: string;
2210
+ sendEmail: string;
2211
+ replyAll: string;
2212
+ downloadAll: string;
2213
+ showAll: string;
2214
+ showLess: string;
2215
+ composeEmailPageTitle: string;
2216
+ emailSentMessage: string;
2217
+ from: string;
2218
+ to: string;
2219
+ cc: string;
2220
+ bcc: string;
2221
+ downloadPdfLong: string;
2222
+ downloadPdfShort: string;
2223
+ privateEmailDisclaimer: string;
2224
+ privateLabel: string;
2225
+ settingsLink: string;
2226
+ composeNewEmail: string;
2227
+ startNewCommunication: string;
2228
+ emptyStateTitle: string;
2229
+ emptyStateDescription: string;
2230
+ reply: string;
2231
+ cancel: string;
2232
+ subject: string;
2233
+ subjectPlaceholder: string;
2234
+ };
2235
+ distributionSelect: {
2236
+ noCompany: string;
2237
+ peopleCount: string;
2238
+ distributionGroups: string;
2239
+ people: string;
2240
+ };
2241
+ relatedItems: {
2242
+ cancel: string;
2243
+ close: string;
2244
+ date: string;
2245
+ itemType: string;
2246
+ itemTypeGroupLabel: {
2247
+ dailyLog: string;
2248
+ prostoreFile: string;
2249
+ };
2250
+ itemName: string;
2251
+ loading: string;
2252
+ notes: string;
2253
+ notesPlaceholder: string;
2254
+ newItem: string;
2255
+ noRelatedItems: {
2256
+ title: string;
2257
+ description: string;
2258
+ };
2259
+ noItems: {
2260
+ title: string;
2261
+ description: string;
2262
+ };
2263
+ noResultsSearchQuery: {
2264
+ title: string;
2265
+ description: string;
2266
+ };
2267
+ noResultsServerError: {
2268
+ title: string;
2269
+ description: string;
2270
+ action: string;
2271
+ };
2272
+ panelTitle: string;
2273
+ search: string;
2274
+ searchItemType: string;
2275
+ submit: string;
2276
+ toast: {
2277
+ itemAdded: string;
2278
+ itemAdditionFailed: string;
2279
+ itemRemoved: string;
2280
+ requestError: string;
2281
+ };
2282
+ };
2283
+ };
2284
+ dateTimeFormat: {
2285
+ dateAtTime: string;
2286
+ timeOnDate: string;
2287
+ };
2288
+ dataTable: {
2289
+ emptyState: {
2290
+ noFilteredResults: {
2291
+ description: string;
2292
+ title: string;
2293
+ };
2294
+ };
2295
+ exporting: string;
2296
+ filters: {
2297
+ filters: string;
2298
+ moreFilters: string;
2299
+ clearAllFilters: string;
2300
+ };
2301
+ grandTotals: string;
2302
+ search: string;
2303
+ subtotals: string;
2304
+ tableSettings: {
2305
+ configureColumns: string;
2306
+ resetToDefault: string;
2307
+ rowHeight: string;
2308
+ small: string;
2309
+ medium: string;
2310
+ large: string;
2311
+ tableSettings: string;
2312
+ };
2313
+ };
2314
+ dateInput: {
2315
+ segment: {
2316
+ ariaLabel: {
2317
+ withValue: {
2318
+ month: string;
2319
+ day: string;
2320
+ year: string;
2321
+ };
2322
+ withoutValue: {
2323
+ month: string;
2324
+ day: string;
2325
+ year: string;
2326
+ };
2327
+ };
2328
+ };
2329
+ clearButton: {
2330
+ ariaLabel: string;
2331
+ };
2332
+ };
2333
+ dropdown: {
2334
+ search: string;
2335
+ };
2336
+ dropzone: {
2337
+ uploadFiles: {
2338
+ one: string;
2339
+ other: string;
2340
+ };
2341
+ dragAndDrop: string;
2342
+ incorrectFileTypeMessage: {
2343
+ one: string;
2344
+ other: string;
2345
+ };
2346
+ incorrectFileNumber: string;
2347
+ invalidAmountAttachments: {
2348
+ one: string;
2349
+ other: string;
2350
+ };
2351
+ hideDetails: string;
2352
+ showDetails: string;
2353
+ errorTitle: string;
2354
+ oneFileAtATimeError: string;
2355
+ multipleErrorsMessage: string;
2356
+ maxFileSizeErrorGroup: string;
2357
+ minFileSizeErrorGroup: string;
2358
+ maxFileNumberErrorGroup: string;
2359
+ wrongFileTypeErrorGroup: string;
2360
+ standaloneMaxFileNumberError: string;
2361
+ standaloneUnsupportedFileTypeError: string;
2362
+ standaloneMinFileSizeError: string;
2363
+ standaloneMaxFileSizeError: string;
2364
+ };
2365
+ modal: {
2366
+ a11y: {
2367
+ close: string;
2368
+ };
2369
+ };
2370
+ tearsheet: {
2371
+ a11y: {
2372
+ close: string;
2373
+ };
2374
+ };
2375
+ fileAttacher: {
2376
+ attachFiles: {
2377
+ one: string;
2378
+ other: string;
2379
+ };
2380
+ };
2381
+ tree: {
2382
+ selectionLimit: {
2383
+ one: string;
2384
+ other: string;
2385
+ };
2386
+ unsupportedFileType: {
2387
+ specific: string;
2388
+ unspecific: string;
2389
+ };
2390
+ };
2391
+ fileExplorer: {
2392
+ filesSelectedWithLimit: string;
2393
+ ungroupedThumbnailGridGroup: string;
2394
+ filesSelected: {
2395
+ one: string;
2396
+ other: string;
2397
+ };
2398
+ cancelAction: string;
2399
+ attachAction: string;
2400
+ maxNumberOfFilesSelected: string;
2401
+ modalTitle: string;
2402
+ filesPendingUpload: string;
2403
+ noSelectedItems: string;
2404
+ emptySearchResults: string;
2405
+ noItems: string;
2406
+ searchPlaceholder: string;
2407
+ uploadFailed: string;
2408
+ supportedFileTypes: string;
2409
+ };
2410
+ form: {
2411
+ checkbox: {
2412
+ no: string;
2413
+ yes: string;
2414
+ };
2415
+ errorBanner: {
2416
+ coundNotCreateItem: string;
2417
+ couldNotUpdateItem: string;
2418
+ fixErrorsToCreate: string;
2419
+ fixErrorsToUpdate: string;
2420
+ };
2421
+ };
2422
+ menu: {
2423
+ search: string;
2424
+ };
2425
+ pagination: {
2426
+ interval: string;
2427
+ notation: string;
2428
+ page: string;
2429
+ nextPage: string;
2430
+ prevPage: string;
2431
+ };
2432
+ select: {
2433
+ search: string;
2434
+ };
2435
+ tabs: {
2436
+ more: string;
2437
+ };
2438
+ fileList: {
2439
+ downloadAll: string;
2440
+ download: string;
2441
+ noPreview: string;
2442
+ };
2443
+ tieredSelect: {
2444
+ emptyMessage: string;
2445
+ placeholder: string;
2446
+ quickCreateActionLabel: string;
2447
+ quickCreateCancelLabel: string;
2448
+ quickCreateCreateLabel: string;
2449
+ quickCreatePlaceholder: string;
2450
+ searchEmptyMessage: string;
2451
+ searchPlaceholder: string;
2452
+ spinnerLabel: string;
2453
+ };
2454
+ tieredDropdown: {
2455
+ emptyMessage: string;
2456
+ searchEmptyMessage: string;
2457
+ searchPlaceholder: string;
2458
+ spinnerLabel: string;
2459
+ };
2460
+ fileSelect: {
2461
+ localFilesSource: string;
2462
+ uploadFailed: string;
2463
+ maxNumberOfFilesSelected: string;
2464
+ };
2465
+ required: {
2466
+ requiredFields: string;
2467
+ };
2468
+ wxpDetailPage: {
2469
+ requiredFields: string;
2470
+ };
2471
+ avatarStack: {
2472
+ viewAll: string;
2473
+ close: string;
2474
+ };
2475
+ panel: {
2476
+ close: string;
2477
+ };
2478
+ };
2479
+ };
2480
+ readonly 'fr-FR': {
2481
+ core: {
2482
+ connected: {
2483
+ fileSelect: {
2484
+ documents: string;
2485
+ drawings: string;
2486
+ forms: string;
2487
+ photos: string;
2488
+ selectAlbum: string;
2489
+ selectAnAlbum: string;
2490
+ selectArea: string;
2491
+ selectAnArea: string;
2492
+ selectDiscipline: string;
2493
+ selectADiscipline: string;
2494
+ selectSet: string;
2495
+ selectASet: string;
2496
+ selectTemplate: string;
2497
+ selectATemplate: string;
2498
+ };
2499
+ emails: {
2500
+ emailSendErrorTitle: string;
2501
+ emailBodyRequiredError: string;
2502
+ emailContentValidationError: string;
2503
+ emailContentDisclaimer: string;
2504
+ recipientSelectPlaceholder: string;
2505
+ emailRecipientRequiredError: string;
2506
+ emailSubjectRequiredError: string;
2507
+ goToAllEmails: string;
2508
+ sendEmail: string;
2509
+ replyAll: string;
2510
+ downloadAll: string;
2511
+ showAll: string;
2512
+ showLess: string;
2513
+ composeEmailPageTitle: string;
2514
+ emailSentMessage: string;
2515
+ from: string;
2516
+ to: string;
2517
+ cc: string;
2518
+ bcc: string;
2519
+ downloadPdfLong: string;
2520
+ downloadPdfShort: string;
2521
+ privateEmailDisclaimer: string;
2522
+ privateLabel: string;
2523
+ settingsLink: string;
2524
+ composeNewEmail: string;
2525
+ startNewCommunication: string;
2526
+ emptyStateTitle: string;
2527
+ emptyStateDescription: string;
2528
+ reply: string;
2529
+ cancel: string;
2530
+ subject: string;
2531
+ subjectPlaceholder: string;
2532
+ };
2533
+ distributionSelect: {
2534
+ noCompany: string;
2535
+ peopleCount: string;
2536
+ distributionGroups: string;
2537
+ people: string;
2538
+ };
2539
+ relatedItems: {
2540
+ cancel: string;
2541
+ close: string;
2542
+ date: string;
2543
+ itemType: string;
2544
+ itemTypeGroupLabel: {
2545
+ dailyLog: string;
2546
+ prostoreFile: string;
2547
+ };
2548
+ itemName: string;
2549
+ loading: string;
2550
+ notes: string;
2551
+ notesPlaceholder: string;
2552
+ newItem: string;
2553
+ noRelatedItems: {
2554
+ title: string;
2555
+ description: string;
2556
+ };
2557
+ noItems: {
2558
+ title: string;
2559
+ description: string;
2560
+ };
2561
+ noResultsSearchQuery: {
2562
+ title: string;
2563
+ description: string;
2564
+ };
2565
+ noResultsServerError: {
2566
+ title: string;
2567
+ description: string;
2568
+ action: string;
2569
+ };
2570
+ panelTitle: string;
2571
+ search: string;
2572
+ searchItemType: string;
2573
+ submit: string;
2574
+ toast: {
2575
+ itemAdded: string;
2576
+ itemAdditionFailed: string;
2577
+ itemRemoved: string;
2578
+ requestError: string;
2579
+ };
2580
+ };
2581
+ };
2582
+ dateTimeFormat: {
2583
+ dateAtTime: string;
2584
+ timeOnDate: string;
2585
+ };
2586
+ dataTable: {
2587
+ emptyState: {
2588
+ noFilteredResults: {
2589
+ description: string;
2590
+ title: string;
2591
+ };
2592
+ };
2593
+ exporting: string;
2594
+ filters: {
2595
+ filters: string;
2596
+ moreFilters: string;
2597
+ clearAllFilters: string;
2598
+ };
2599
+ grandTotals: string;
2600
+ search: string;
2601
+ subtotals: string;
2602
+ tableSettings: {
2603
+ configureColumns: string;
2604
+ resetToDefault: string;
2605
+ rowHeight: string;
2606
+ small: string;
2607
+ medium: string;
2608
+ large: string;
2609
+ tableSettings: string;
2610
+ };
2611
+ };
2612
+ dateInput: {
2613
+ segment: {
2614
+ ariaLabel: {
2615
+ withValue: {
2616
+ month: string;
2617
+ day: string;
2618
+ year: string;
2619
+ };
2620
+ withoutValue: {
2621
+ month: string;
2622
+ day: string;
2623
+ year: string;
2624
+ };
2625
+ };
2626
+ };
2627
+ clearButton: {
2628
+ ariaLabel: string;
2629
+ };
2630
+ };
2631
+ dropdown: {
2632
+ search: string;
2633
+ };
2634
+ dropzone: {
2635
+ uploadFiles: {
2636
+ one: string;
2637
+ other: string;
2638
+ };
2639
+ dragAndDrop: string;
2640
+ incorrectFileTypeMessage: {
2641
+ one: string;
2642
+ other: string;
2643
+ };
2644
+ incorrectFileNumber: string;
2645
+ invalidAmountAttachments: {
2646
+ one: string;
2647
+ other: string;
2648
+ };
2649
+ hideDetails: string;
2650
+ showDetails: string;
2651
+ errorTitle: string;
2652
+ oneFileAtATimeError: string;
2653
+ multipleErrorsMessage: string;
2654
+ maxFileSizeErrorGroup: string;
2655
+ minFileSizeErrorGroup: string;
2656
+ maxFileNumberErrorGroup: string;
2657
+ wrongFileTypeErrorGroup: string;
2658
+ standaloneMaxFileNumberError: string;
2659
+ standaloneUnsupportedFileTypeError: string;
2660
+ standaloneMinFileSizeError: string;
2661
+ standaloneMaxFileSizeError: string;
2662
+ };
2663
+ modal: {
2664
+ a11y: {
2665
+ close: string;
2666
+ };
2667
+ };
2668
+ tearsheet: {
2669
+ a11y: {
2670
+ close: string;
2671
+ };
2672
+ };
2673
+ fileAttacher: {
2674
+ attachFiles: {
2675
+ one: string;
2676
+ other: string;
2677
+ };
2678
+ };
2679
+ tree: {
2680
+ selectionLimit: {
2681
+ one: string;
2682
+ other: string;
2683
+ };
2684
+ unsupportedFileType: {
2685
+ specific: string;
2686
+ unspecific: string;
2687
+ };
2688
+ };
2689
+ fileExplorer: {
2690
+ filesSelectedWithLimit: string;
2691
+ ungroupedThumbnailGridGroup: string;
2692
+ filesSelected: {
2693
+ one: string;
2694
+ other: string;
2695
+ };
2696
+ cancelAction: string;
2697
+ attachAction: string;
2698
+ maxNumberOfFilesSelected: string;
2699
+ modalTitle: string;
2700
+ filesPendingUpload: string;
2701
+ noSelectedItems: string;
2702
+ emptySearchResults: string;
2703
+ noItems: string;
2704
+ searchPlaceholder: string;
2705
+ uploadFailed: string;
2706
+ supportedFileTypes: string;
2707
+ };
2708
+ form: {
2709
+ checkbox: {
2710
+ no: string;
2711
+ yes: string;
2712
+ };
2713
+ errorBanner: {
2714
+ coundNotCreateItem: string;
2715
+ couldNotUpdateItem: string;
2716
+ fixErrorsToCreate: string;
2717
+ fixErrorsToUpdate: string;
2718
+ };
2719
+ };
2720
+ menu: {
2721
+ search: string;
2722
+ };
2723
+ pagination: {
2724
+ interval: string;
2725
+ notation: string;
2726
+ page: string;
2727
+ nextPage: string;
2728
+ prevPage: string;
2729
+ };
2730
+ select: {
2731
+ search: string;
2732
+ };
2733
+ tabs: {
2734
+ more: string;
2735
+ };
2736
+ fileList: {
2737
+ downloadAll: string;
2738
+ download: string;
2739
+ noPreview: string;
2740
+ };
2741
+ tieredSelect: {
2742
+ emptyMessage: string;
2743
+ placeholder: string;
2744
+ quickCreateActionLabel: string;
2745
+ quickCreateCancelLabel: string;
2746
+ quickCreateCreateLabel: string;
2747
+ quickCreatePlaceholder: string;
2748
+ searchEmptyMessage: string;
2749
+ searchPlaceholder: string;
2750
+ spinnerLabel: string;
2751
+ };
2752
+ tieredDropdown: {
2753
+ emptyMessage: string;
2754
+ searchEmptyMessage: string;
2755
+ searchPlaceholder: string;
2756
+ spinnerLabel: string;
2757
+ };
2758
+ fileSelect: {
2759
+ localFilesSource: string;
2760
+ uploadFailed: string;
2761
+ maxNumberOfFilesSelected: string;
2762
+ };
2763
+ required: {
2764
+ requiredFields: string;
2765
+ };
2766
+ wxpDetailPage: {
2767
+ requiredFields: string;
2768
+ };
2769
+ avatarStack: {
2770
+ viewAll: string;
2771
+ close: string;
2772
+ };
2773
+ panel: {
2774
+ close: string;
2775
+ };
2776
+ };
2777
+ };
2778
+ readonly 'is-IS': {
2779
+ core: {
2780
+ connected: {
2781
+ fileSelect: {
2782
+ documents: string;
2783
+ drawings: string;
2784
+ forms: string;
2785
+ photos: string;
2786
+ selectAlbum: string;
2787
+ selectAnAlbum: string;
2788
+ selectArea: string;
2789
+ selectAnArea: string;
2790
+ selectDiscipline: string;
2791
+ selectADiscipline: string;
2792
+ selectSet: string;
2793
+ selectASet: string;
2794
+ selectTemplate: string;
2795
+ selectATemplate: string;
2796
+ };
2797
+ emails: {
2798
+ emailSendErrorTitle: string;
2799
+ emailBodyRequiredError: string;
2800
+ emailContentValidationError: string;
2801
+ emailContentDisclaimer: string;
2802
+ recipientSelectPlaceholder: string;
2803
+ emailRecipientRequiredError: string;
2804
+ emailSubjectRequiredError: string;
2805
+ goToAllEmails: string;
2806
+ sendEmail: string;
2807
+ replyAll: string;
2808
+ downloadAll: string;
2809
+ showAll: string;
2810
+ showLess: string;
2811
+ composeEmailPageTitle: string;
2812
+ emailSentMessage: string;
2813
+ from: string;
2814
+ to: string;
2815
+ cc: string;
2816
+ bcc: string;
2817
+ downloadPdfLong: string;
2818
+ downloadPdfShort: string;
2819
+ privateEmailDisclaimer: string;
2820
+ privateLabel: string;
2821
+ settingsLink: string;
2822
+ composeNewEmail: string;
2823
+ startNewCommunication: string;
2824
+ emptyStateTitle: string;
2825
+ emptyStateDescription: string;
2826
+ reply: string;
2827
+ cancel: string;
2828
+ subject: string;
2829
+ subjectPlaceholder: string;
2830
+ };
2831
+ distributionSelect: {
2832
+ noCompany: string;
2833
+ peopleCount: string;
2834
+ distributionGroups: string;
2835
+ people: string;
2836
+ };
2837
+ relatedItems: {
2838
+ cancel: string;
2839
+ close: string;
2840
+ date: string;
2841
+ itemType: string;
2842
+ itemTypeGroupLabel: {
2843
+ dailyLog: string;
2844
+ prostoreFile: string;
2845
+ };
2846
+ itemName: string;
2847
+ loading: string;
2848
+ notes: string;
2849
+ notesPlaceholder: string;
2850
+ newItem: string;
2851
+ noRelatedItems: {
2852
+ title: string;
2853
+ description: string;
2854
+ };
2855
+ noItems: {
2856
+ title: string;
2857
+ description: string;
2858
+ };
2859
+ noResultsSearchQuery: {
2860
+ title: string;
2861
+ description: string;
2862
+ };
2863
+ noResultsServerError: {
2864
+ title: string;
2865
+ description: string;
2866
+ action: string;
2867
+ };
2868
+ panelTitle: string;
2869
+ search: string;
2870
+ searchItemType: string;
2871
+ submit: string;
2872
+ toast: {
2873
+ itemAdded: string;
2874
+ itemAdditionFailed: string;
2875
+ itemRemoved: string;
2876
+ requestError: string;
2877
+ };
2878
+ };
2879
+ };
2880
+ dateTimeFormat: {
2881
+ dateAtTime: string;
2882
+ timeOnDate: string;
2883
+ };
2884
+ dataTable: {
2885
+ emptyState: {
2886
+ noFilteredResults: {
2887
+ description: string;
2888
+ title: string;
2889
+ };
2890
+ };
2891
+ exporting: string;
2892
+ filters: {
2893
+ filters: string;
2894
+ moreFilters: string;
2895
+ clearAllFilters: string;
2896
+ };
2897
+ grandTotals: string;
2898
+ search: string;
2899
+ subtotals: string;
2900
+ tableSettings: {
2901
+ configureColumns: string;
2902
+ resetToDefault: string;
2903
+ rowHeight: string;
2904
+ small: string;
2905
+ medium: string;
2906
+ large: string;
2907
+ tableSettings: string;
2908
+ };
2909
+ };
2910
+ dateInput: {
2911
+ segment: {
2912
+ ariaLabel: {
2913
+ withValue: {
2914
+ month: string;
2915
+ day: string;
2916
+ year: string;
2917
+ };
2918
+ withoutValue: {
2919
+ month: string;
2920
+ day: string;
2921
+ year: string;
2922
+ };
2923
+ };
2924
+ };
2925
+ clearButton: {
2926
+ ariaLabel: string;
2927
+ };
2928
+ };
2929
+ dropdown: {
2930
+ search: string;
2931
+ };
2932
+ dropzone: {
2933
+ uploadFiles: {
2934
+ one: string;
2935
+ other: string;
2936
+ };
2937
+ dragAndDrop: string;
2938
+ incorrectFileTypeMessage: {
2939
+ one: string;
2940
+ other: string;
2941
+ };
2942
+ incorrectFileNumber: string;
2943
+ invalidAmountAttachments: {
2944
+ one: string;
2945
+ other: string;
2946
+ };
2947
+ hideDetails: string;
2948
+ showDetails: string;
2949
+ errorTitle: string;
2950
+ oneFileAtATimeError: string;
2951
+ multipleErrorsMessage: string;
2952
+ maxFileSizeErrorGroup: string;
2953
+ minFileSizeErrorGroup: string;
2954
+ maxFileNumberErrorGroup: string;
2955
+ wrongFileTypeErrorGroup: string;
2956
+ standaloneMaxFileNumberError: string;
2957
+ standaloneUnsupportedFileTypeError: string;
2958
+ standaloneMinFileSizeError: string;
2959
+ standaloneMaxFileSizeError: string;
2960
+ };
2961
+ modal: {
2962
+ a11y: {
2963
+ close: string;
2964
+ };
2965
+ };
2966
+ tearsheet: {
2967
+ a11y: {
2968
+ close: string;
2969
+ };
2970
+ };
2971
+ fileAttacher: {
2972
+ attachFiles: {
2973
+ one: string;
2974
+ other: string;
2975
+ };
2976
+ };
2977
+ tree: {
2978
+ selectionLimit: {
2979
+ one: string;
2980
+ other: string;
2981
+ };
2982
+ unsupportedFileType: {
2983
+ specific: string;
2984
+ unspecific: string;
2985
+ };
2986
+ };
2987
+ fileExplorer: {
2988
+ filesSelectedWithLimit: string;
2989
+ ungroupedThumbnailGridGroup: string;
2990
+ filesSelected: {
2991
+ one: string;
2992
+ other: string;
2993
+ };
2994
+ cancelAction: string;
2995
+ attachAction: string;
2996
+ maxNumberOfFilesSelected: string;
2997
+ modalTitle: string;
2998
+ filesPendingUpload: string;
2999
+ noSelectedItems: string;
3000
+ emptySearchResults: string;
3001
+ noItems: string;
3002
+ searchPlaceholder: string;
3003
+ uploadFailed: string;
3004
+ supportedFileTypes: string;
3005
+ };
3006
+ form: {
3007
+ checkbox: {
3008
+ no: string;
3009
+ yes: string;
3010
+ };
3011
+ errorBanner: {
3012
+ coundNotCreateItem: string;
3013
+ couldNotUpdateItem: string;
3014
+ fixErrorsToCreate: string;
3015
+ fixErrorsToUpdate: string;
3016
+ };
3017
+ };
3018
+ menu: {
3019
+ search: string;
3020
+ };
3021
+ pagination: {
3022
+ interval: string;
3023
+ notation: string;
3024
+ page: string;
3025
+ nextPage: string;
3026
+ prevPage: string;
3027
+ };
3028
+ select: {
3029
+ search: string;
3030
+ };
3031
+ tabs: {
3032
+ more: string;
3033
+ };
3034
+ fileList: {
3035
+ downloadAll: string;
3036
+ download: string;
3037
+ noPreview: string;
3038
+ };
3039
+ tieredSelect: {
3040
+ emptyMessage: string;
3041
+ placeholder: string;
3042
+ quickCreateActionLabel: string;
3043
+ quickCreateCancelLabel: string;
3044
+ quickCreateCreateLabel: string;
3045
+ quickCreatePlaceholder: string;
3046
+ searchEmptyMessage: string;
3047
+ searchPlaceholder: string;
3048
+ spinnerLabel: string;
3049
+ };
3050
+ tieredDropdown: {
3051
+ emptyMessage: string;
3052
+ searchEmptyMessage: string;
3053
+ searchPlaceholder: string;
3054
+ spinnerLabel: string;
3055
+ };
3056
+ fileSelect: {
3057
+ localFilesSource: string;
3058
+ uploadFailed: string;
3059
+ maxNumberOfFilesSelected: string;
3060
+ };
3061
+ required: {
3062
+ requiredFields: string;
3063
+ };
3064
+ wxpDetailPage: {
3065
+ requiredFields: string;
3066
+ };
3067
+ avatarStack: {
3068
+ viewAll: string;
3069
+ close: string;
3070
+ };
3071
+ panel: {
3072
+ close: string;
3073
+ };
3074
+ };
3075
+ };
3076
+ readonly 'it-IT': {};
3077
+ readonly 'ja-JP': {};
3078
+ readonly ko: {};
3079
+ readonly 'pt-BR': {
3080
+ core: {
3081
+ connected: {
3082
+ fileSelect: {
3083
+ documents: string;
3084
+ drawings: string;
3085
+ forms: string;
3086
+ photos: string;
3087
+ selectAlbum: string;
3088
+ selectAnAlbum: string;
3089
+ selectArea: string;
3090
+ selectAnArea: string;
3091
+ selectDiscipline: string;
3092
+ selectADiscipline: string;
3093
+ selectSet: string;
3094
+ selectASet: string;
3095
+ selectTemplate: string;
3096
+ selectATemplate: string;
3097
+ };
3098
+ emails: {
3099
+ emailSendErrorTitle: string;
3100
+ emailBodyRequiredError: string;
3101
+ emailContentValidationError: string;
3102
+ emailContentDisclaimer: string;
3103
+ recipientSelectPlaceholder: string;
3104
+ emailRecipientRequiredError: string;
3105
+ emailSubjectRequiredError: string;
3106
+ goToAllEmails: string;
3107
+ sendEmail: string;
3108
+ replyAll: string;
3109
+ downloadAll: string;
3110
+ showAll: string;
3111
+ showLess: string;
3112
+ composeEmailPageTitle: string;
3113
+ emailSentMessage: string;
3114
+ from: string;
3115
+ to: string;
3116
+ cc: string;
3117
+ bcc: string;
3118
+ downloadPdfLong: string;
3119
+ downloadPdfShort: string;
3120
+ privateEmailDisclaimer: string;
3121
+ privateLabel: string;
3122
+ settingsLink: string;
3123
+ composeNewEmail: string;
3124
+ startNewCommunication: string;
3125
+ emptyStateTitle: string;
3126
+ emptyStateDescription: string;
3127
+ reply: string;
3128
+ cancel: string;
3129
+ subject: string;
3130
+ subjectPlaceholder: string;
3131
+ };
3132
+ distributionSelect: {
3133
+ noCompany: string;
3134
+ peopleCount: string;
3135
+ distributionGroups: string;
3136
+ people: string;
3137
+ };
3138
+ relatedItems: {
3139
+ cancel: string;
3140
+ close: string;
3141
+ date: string;
3142
+ itemType: string;
3143
+ itemTypeGroupLabel: {
3144
+ dailyLog: string;
3145
+ prostoreFile: string;
3146
+ };
3147
+ itemName: string;
3148
+ loading: string;
3149
+ notes: string;
3150
+ notesPlaceholder: string;
3151
+ newItem: string;
3152
+ noRelatedItems: {
3153
+ title: string;
3154
+ description: string;
3155
+ };
3156
+ noItems: {
3157
+ title: string;
3158
+ description: string;
3159
+ };
3160
+ noResultsSearchQuery: {
3161
+ title: string;
3162
+ description: string;
3163
+ };
3164
+ noResultsServerError: {
3165
+ title: string;
3166
+ description: string;
3167
+ action: string;
3168
+ };
3169
+ panelTitle: string;
3170
+ search: string;
3171
+ searchItemType: string;
3172
+ submit: string;
3173
+ toast: {
3174
+ itemAdded: string;
3175
+ itemAdditionFailed: string;
3176
+ itemRemoved: string;
3177
+ requestError: string;
3178
+ };
3179
+ };
3180
+ };
3181
+ dateTimeFormat: {
3182
+ dateAtTime: string;
3183
+ timeOnDate: string;
3184
+ };
3185
+ dataTable: {
3186
+ emptyState: {
3187
+ noFilteredResults: {
3188
+ description: string;
3189
+ title: string;
3190
+ };
3191
+ };
3192
+ exporting: string;
3193
+ filters: {
3194
+ filters: string;
3195
+ moreFilters: string;
3196
+ clearAllFilters: string;
3197
+ };
3198
+ grandTotals: string;
3199
+ search: string;
3200
+ subtotals: string;
3201
+ tableSettings: {
3202
+ configureColumns: string;
3203
+ resetToDefault: string;
3204
+ rowHeight: string;
3205
+ small: string;
3206
+ medium: string;
3207
+ large: string;
3208
+ tableSettings: string;
3209
+ };
3210
+ };
3211
+ dateInput: {
3212
+ segment: {
3213
+ ariaLabel: {
3214
+ withValue: {
3215
+ month: string;
3216
+ day: string;
3217
+ year: string;
3218
+ };
3219
+ withoutValue: {
3220
+ month: string;
3221
+ day: string;
3222
+ year: string;
3223
+ };
3224
+ };
3225
+ };
3226
+ clearButton: {
3227
+ ariaLabel: string;
3228
+ };
3229
+ };
3230
+ dropdown: {
3231
+ search: string;
3232
+ };
3233
+ dropzone: {
3234
+ uploadFiles: {
3235
+ one: string;
3236
+ other: string;
3237
+ };
3238
+ dragAndDrop: string;
3239
+ incorrectFileTypeMessage: {
3240
+ one: string;
3241
+ other: string;
3242
+ };
3243
+ incorrectFileNumber: string;
3244
+ invalidAmountAttachments: {
3245
+ one: string;
3246
+ other: string;
3247
+ };
3248
+ hideDetails: string;
3249
+ showDetails: string;
3250
+ errorTitle: string;
3251
+ oneFileAtATimeError: string;
3252
+ multipleErrorsMessage: string;
3253
+ maxFileSizeErrorGroup: string;
3254
+ minFileSizeErrorGroup: string;
3255
+ maxFileNumberErrorGroup: string;
3256
+ wrongFileTypeErrorGroup: string;
3257
+ standaloneMaxFileNumberError: string;
3258
+ standaloneUnsupportedFileTypeError: string;
3259
+ standaloneMinFileSizeError: string;
3260
+ standaloneMaxFileSizeError: string;
3261
+ };
3262
+ modal: {
3263
+ a11y: {
3264
+ close: string;
3265
+ };
3266
+ };
3267
+ tearsheet: {
3268
+ a11y: {
3269
+ close: string;
3270
+ };
3271
+ };
3272
+ fileAttacher: {
3273
+ attachFiles: {
3274
+ one: string;
3275
+ other: string;
3276
+ };
3277
+ };
3278
+ tree: {
3279
+ selectionLimit: {
3280
+ one: string;
3281
+ other: string;
3282
+ };
3283
+ unsupportedFileType: {
3284
+ specific: string;
3285
+ unspecific: string;
3286
+ };
3287
+ };
3288
+ fileExplorer: {
3289
+ filesSelectedWithLimit: string;
3290
+ ungroupedThumbnailGridGroup: string;
3291
+ filesSelected: {
3292
+ one: string;
3293
+ other: string;
3294
+ };
3295
+ cancelAction: string;
3296
+ attachAction: string;
3297
+ maxNumberOfFilesSelected: string;
3298
+ modalTitle: string;
3299
+ filesPendingUpload: string;
3300
+ noSelectedItems: string;
3301
+ emptySearchResults: string;
3302
+ noItems: string;
3303
+ searchPlaceholder: string;
3304
+ uploadFailed: string;
3305
+ supportedFileTypes: string;
3306
+ };
3307
+ form: {
3308
+ checkbox: {
3309
+ no: string;
3310
+ yes: string;
3311
+ };
3312
+ errorBanner: {
3313
+ coundNotCreateItem: string;
3314
+ couldNotUpdateItem: string;
3315
+ fixErrorsToCreate: string;
3316
+ fixErrorsToUpdate: string;
3317
+ };
3318
+ };
3319
+ menu: {
3320
+ search: string;
3321
+ };
3322
+ pagination: {
3323
+ interval: string;
3324
+ notation: string;
3325
+ page: string;
3326
+ nextPage: string;
3327
+ prevPage: string;
3328
+ };
3329
+ select: {
3330
+ search: string;
3331
+ };
3332
+ tabs: {
3333
+ more: string;
3334
+ };
3335
+ fileList: {
3336
+ downloadAll: string;
3337
+ download: string;
3338
+ noPreview: string;
3339
+ };
3340
+ tieredSelect: {
3341
+ emptyMessage: string;
3342
+ placeholder: string;
3343
+ quickCreateActionLabel: string;
3344
+ quickCreateCancelLabel: string;
3345
+ quickCreateCreateLabel: string;
3346
+ quickCreatePlaceholder: string;
3347
+ searchEmptyMessage: string;
3348
+ searchPlaceholder: string;
3349
+ spinnerLabel: string;
3350
+ };
3351
+ tieredDropdown: {
3352
+ emptyMessage: string;
3353
+ searchEmptyMessage: string;
3354
+ searchPlaceholder: string;
3355
+ spinnerLabel: string;
3356
+ };
3357
+ fileSelect: {
3358
+ localFilesSource: string;
3359
+ uploadFailed: string;
3360
+ maxNumberOfFilesSelected: string;
3361
+ };
3362
+ required: {
3363
+ requiredFields: string;
3364
+ };
3365
+ wxpDetailPage: {
3366
+ requiredFields: string;
3367
+ };
3368
+ avatarStack: {
3369
+ viewAll: string;
3370
+ close: string;
3371
+ };
3372
+ panel: {
3373
+ close: string;
3374
+ };
3375
+ };
3376
+ };
3377
+ readonly 'th-TH': {
3378
+ core: {
3379
+ connected: {
3380
+ fileSelect: {
3381
+ documents: string;
3382
+ drawings: string;
3383
+ forms: string;
3384
+ photos: string;
3385
+ selectAlbum: string;
3386
+ selectAnAlbum: string;
3387
+ selectArea: string;
3388
+ selectAnArea: string;
3389
+ selectDiscipline: string;
3390
+ selectADiscipline: string;
3391
+ selectSet: string;
3392
+ selectASet: string;
3393
+ selectTemplate: string;
3394
+ selectATemplate: string;
3395
+ };
3396
+ emails: {
3397
+ emailSendErrorTitle: string;
3398
+ emailBodyRequiredError: string;
3399
+ emailContentValidationError: string;
3400
+ emailContentDisclaimer: string;
3401
+ recipientSelectPlaceholder: string;
3402
+ emailRecipientRequiredError: string;
3403
+ emailSubjectRequiredError: string;
3404
+ goToAllEmails: string;
3405
+ sendEmail: string;
3406
+ replyAll: string;
3407
+ downloadAll: string;
3408
+ showAll: string;
3409
+ showLess: string;
3410
+ composeEmailPageTitle: string;
3411
+ emailSentMessage: string;
3412
+ from: string;
3413
+ to: string;
3414
+ cc: string;
3415
+ bcc: string;
3416
+ downloadPdfLong: string;
3417
+ downloadPdfShort: string;
3418
+ privateEmailDisclaimer: string;
3419
+ privateLabel: string;
3420
+ settingsLink: string;
3421
+ composeNewEmail: string;
3422
+ startNewCommunication: string;
3423
+ emptyStateTitle: string;
3424
+ emptyStateDescription: string;
3425
+ reply: string;
3426
+ cancel: string;
3427
+ subject: string;
3428
+ subjectPlaceholder: string;
3429
+ };
3430
+ distributionSelect: {
3431
+ noCompany: string;
3432
+ peopleCount: string;
3433
+ distributionGroups: string;
3434
+ people: string;
3435
+ };
3436
+ relatedItems: {
3437
+ cancel: string;
3438
+ close: string;
3439
+ date: string;
3440
+ itemType: string;
3441
+ itemTypeGroupLabel: {
3442
+ dailyLog: string;
3443
+ prostoreFile: string;
3444
+ };
3445
+ itemName: string;
3446
+ loading: string;
3447
+ notes: string;
3448
+ notesPlaceholder: string;
3449
+ newItem: string;
3450
+ noRelatedItems: {
3451
+ title: string;
3452
+ description: string;
3453
+ };
3454
+ noItems: {
3455
+ title: string;
3456
+ description: string;
3457
+ };
3458
+ noResultsSearchQuery: {
3459
+ title: string;
3460
+ description: string;
3461
+ };
3462
+ noResultsServerError: {
3463
+ title: string;
3464
+ description: string;
3465
+ action: string;
3466
+ };
3467
+ panelTitle: string;
3468
+ search: string;
3469
+ searchItemType: string;
3470
+ submit: string;
3471
+ toast: {
3472
+ itemAdded: string;
3473
+ itemAdditionFailed: string;
3474
+ itemRemoved: string;
3475
+ requestError: string;
3476
+ };
3477
+ };
3478
+ };
3479
+ dateTimeFormat: {
3480
+ dateAtTime: string;
3481
+ timeOnDate: string;
3482
+ };
3483
+ dataTable: {
3484
+ emptyState: {
3485
+ noFilteredResults: {
3486
+ description: string;
3487
+ title: string;
3488
+ };
3489
+ };
3490
+ exporting: string;
3491
+ filters: {
3492
+ filters: string;
3493
+ moreFilters: string;
3494
+ clearAllFilters: string;
3495
+ };
3496
+ grandTotals: string;
3497
+ search: string;
3498
+ subtotals: string;
3499
+ tableSettings: {
3500
+ configureColumns: string;
3501
+ resetToDefault: string;
3502
+ rowHeight: string;
3503
+ small: string;
3504
+ medium: string;
3505
+ large: string;
3506
+ tableSettings: string;
3507
+ };
3508
+ };
3509
+ dateInput: {
3510
+ segment: {
3511
+ ariaLabel: {
3512
+ withValue: {
3513
+ month: string;
3514
+ day: string;
3515
+ year: string;
3516
+ };
3517
+ withoutValue: {
3518
+ month: string;
3519
+ day: string;
3520
+ year: string;
3521
+ };
3522
+ };
3523
+ };
3524
+ clearButton: {
3525
+ ariaLabel: string;
3526
+ };
3527
+ };
3528
+ dropdown: {
3529
+ search: string;
3530
+ };
3531
+ dropzone: {
3532
+ uploadFiles: {
3533
+ one: string;
3534
+ other: string;
3535
+ };
3536
+ dragAndDrop: string;
3537
+ incorrectFileTypeMessage: {
3538
+ one: string;
3539
+ other: string;
3540
+ };
3541
+ incorrectFileNumber: string;
3542
+ invalidAmountAttachments: {
3543
+ one: string;
3544
+ other: string;
3545
+ };
3546
+ hideDetails: string;
3547
+ showDetails: string;
3548
+ errorTitle: string;
3549
+ oneFileAtATimeError: string;
3550
+ multipleErrorsMessage: string;
3551
+ maxFileSizeErrorGroup: string;
3552
+ minFileSizeErrorGroup: string;
3553
+ maxFileNumberErrorGroup: string;
3554
+ wrongFileTypeErrorGroup: string;
3555
+ standaloneMaxFileNumberError: string;
3556
+ standaloneUnsupportedFileTypeError: string;
3557
+ standaloneMinFileSizeError: string;
3558
+ standaloneMaxFileSizeError: string;
3559
+ };
3560
+ modal: {
3561
+ a11y: {
3562
+ close: string;
3563
+ };
3564
+ };
3565
+ tearsheet: {
3566
+ a11y: {
3567
+ close: string;
3568
+ };
3569
+ };
3570
+ fileAttacher: {
3571
+ attachFiles: {
3572
+ one: string;
3573
+ other: string;
3574
+ };
3575
+ };
3576
+ tree: {
3577
+ selectionLimit: {
3578
+ one: string;
3579
+ other: string;
3580
+ };
3581
+ unsupportedFileType: {
3582
+ specific: string;
3583
+ unspecific: string;
3584
+ };
3585
+ };
3586
+ fileExplorer: {
3587
+ filesSelectedWithLimit: string;
3588
+ ungroupedThumbnailGridGroup: string;
3589
+ filesSelected: {
3590
+ one: string;
3591
+ other: string;
3592
+ };
3593
+ cancelAction: string;
3594
+ attachAction: string;
3595
+ maxNumberOfFilesSelected: string;
3596
+ modalTitle: string;
3597
+ filesPendingUpload: string;
3598
+ noSelectedItems: string;
3599
+ emptySearchResults: string;
3600
+ noItems: string;
3601
+ searchPlaceholder: string;
3602
+ uploadFailed: string;
3603
+ supportedFileTypes: string;
3604
+ };
3605
+ form: {
3606
+ checkbox: {
3607
+ no: string;
3608
+ yes: string;
3609
+ };
3610
+ errorBanner: {
3611
+ coundNotCreateItem: string;
3612
+ couldNotUpdateItem: string;
3613
+ fixErrorsToCreate: string;
3614
+ fixErrorsToUpdate: string;
3615
+ };
3616
+ };
3617
+ menu: {
3618
+ search: string;
3619
+ };
3620
+ pagination: {
3621
+ interval: string;
3622
+ notation: string;
3623
+ page: string;
3624
+ nextPage: string;
3625
+ prevPage: string;
3626
+ };
3627
+ select: {
3628
+ search: string;
3629
+ };
3630
+ tabs: {
3631
+ more: string;
3632
+ };
3633
+ fileList: {
3634
+ downloadAll: string;
3635
+ download: string;
3636
+ noPreview: string;
3637
+ };
3638
+ tieredSelect: {
3639
+ emptyMessage: string;
3640
+ placeholder: string;
3641
+ quickCreateActionLabel: string;
3642
+ quickCreateCancelLabel: string;
3643
+ quickCreateCreateLabel: string;
3644
+ quickCreatePlaceholder: string;
3645
+ searchEmptyMessage: string;
3646
+ searchPlaceholder: string;
3647
+ spinnerLabel: string;
3648
+ };
3649
+ tieredDropdown: {
3650
+ emptyMessage: string;
3651
+ searchEmptyMessage: string;
3652
+ searchPlaceholder: string;
3653
+ spinnerLabel: string;
3654
+ };
3655
+ fileSelect: {
3656
+ localFilesSource: string;
3657
+ uploadFailed: string;
3658
+ maxNumberOfFilesSelected: string;
3659
+ };
3660
+ required: {
3661
+ requiredFields: string;
3662
+ };
3663
+ wxpDetailPage: {
3664
+ requiredFields: string;
3665
+ };
3666
+ avatarStack: {
3667
+ viewAll: string;
3668
+ close: string;
3669
+ };
3670
+ panel: {
3671
+ close: string;
3672
+ };
3673
+ };
3674
+ };
3675
+ readonly 'zh-SG': {
3676
+ core: {
3677
+ connected: {
3678
+ fileSelect: {
3679
+ documents: string;
3680
+ drawings: string;
3681
+ forms: string;
3682
+ photos: string;
3683
+ selectAlbum: string;
3684
+ selectAnAlbum: string;
3685
+ selectArea: string;
3686
+ selectAnArea: string;
3687
+ selectDiscipline: string;
3688
+ selectADiscipline: string;
3689
+ selectSet: string;
3690
+ selectASet: string;
3691
+ selectTemplate: string;
3692
+ selectATemplate: string;
3693
+ };
3694
+ emails: {
3695
+ emailSendErrorTitle: string;
3696
+ emailBodyRequiredError: string;
3697
+ emailContentValidationError: string;
3698
+ emailContentDisclaimer: string;
3699
+ recipientSelectPlaceholder: string;
3700
+ emailRecipientRequiredError: string;
3701
+ emailSubjectRequiredError: string;
3702
+ goToAllEmails: string;
3703
+ sendEmail: string;
3704
+ replyAll: string;
3705
+ downloadAll: string;
3706
+ showAll: string;
3707
+ showLess: string;
3708
+ composeEmailPageTitle: string;
3709
+ emailSentMessage: string;
3710
+ from: string;
3711
+ to: string;
3712
+ cc: string;
3713
+ bcc: string;
3714
+ downloadPdfLong: string;
3715
+ downloadPdfShort: string;
3716
+ privateEmailDisclaimer: string;
3717
+ privateLabel: string;
3718
+ settingsLink: string;
3719
+ composeNewEmail: string;
3720
+ startNewCommunication: string;
3721
+ emptyStateTitle: string;
3722
+ emptyStateDescription: string;
3723
+ reply: string;
3724
+ cancel: string;
3725
+ subject: string;
3726
+ subjectPlaceholder: string;
3727
+ };
3728
+ distributionSelect: {
3729
+ noCompany: string;
3730
+ peopleCount: string;
3731
+ distributionGroups: string;
3732
+ people: string;
3733
+ };
3734
+ relatedItems: {
3735
+ cancel: string;
3736
+ close: string;
3737
+ date: string;
3738
+ itemType: string;
3739
+ itemTypeGroupLabel: {
3740
+ dailyLog: string;
3741
+ prostoreFile: string;
3742
+ };
3743
+ itemName: string;
3744
+ loading: string;
3745
+ notes: string;
3746
+ notesPlaceholder: string;
3747
+ newItem: string;
3748
+ noRelatedItems: {
3749
+ title: string;
3750
+ description: string;
3751
+ };
3752
+ noItems: {
3753
+ title: string;
3754
+ description: string;
3755
+ };
3756
+ noResultsSearchQuery: {
3757
+ title: string;
3758
+ description: string;
3759
+ };
3760
+ noResultsServerError: {
3761
+ title: string;
3762
+ description: string;
3763
+ action: string;
3764
+ };
3765
+ panelTitle: string;
3766
+ search: string;
3767
+ searchItemType: string;
3768
+ submit: string;
3769
+ toast: {
3770
+ itemAdded: string;
3771
+ itemAdditionFailed: string;
3772
+ itemRemoved: string;
3773
+ requestError: string;
3774
+ };
3775
+ };
3776
+ };
3777
+ dateTimeFormat: {
3778
+ dateAtTime: string;
3779
+ timeOnDate: string;
3780
+ };
3781
+ dataTable: {
3782
+ emptyState: {
3783
+ noFilteredResults: {
3784
+ description: string;
3785
+ title: string;
3786
+ };
3787
+ };
3788
+ exporting: string;
3789
+ filters: {
3790
+ filters: string;
3791
+ moreFilters: string;
3792
+ clearAllFilters: string;
3793
+ };
3794
+ grandTotals: string;
3795
+ search: string;
3796
+ subtotals: string;
3797
+ tableSettings: {
3798
+ configureColumns: string;
3799
+ resetToDefault: string;
3800
+ rowHeight: string;
3801
+ small: string;
3802
+ medium: string;
3803
+ large: string;
3804
+ tableSettings: string;
3805
+ };
3806
+ };
3807
+ dateInput: {
3808
+ segment: {
3809
+ ariaLabel: {
3810
+ withValue: {
3811
+ month: string;
3812
+ day: string;
3813
+ year: string;
3814
+ };
3815
+ withoutValue: {
3816
+ month: string;
3817
+ day: string;
3818
+ year: string;
3819
+ };
3820
+ };
3821
+ };
3822
+ clearButton: {
3823
+ ariaLabel: string;
3824
+ };
3825
+ };
3826
+ dropdown: {
3827
+ search: string;
3828
+ };
3829
+ dropzone: {
3830
+ uploadFiles: {
3831
+ one: string;
3832
+ other: string;
3833
+ };
3834
+ dragAndDrop: string;
3835
+ incorrectFileTypeMessage: {
3836
+ one: string;
3837
+ other: string;
3838
+ };
3839
+ incorrectFileNumber: string;
3840
+ invalidAmountAttachments: {
3841
+ one: string;
3842
+ other: string;
3843
+ };
3844
+ hideDetails: string;
3845
+ showDetails: string;
3846
+ errorTitle: string;
3847
+ oneFileAtATimeError: string;
3848
+ multipleErrorsMessage: string;
3849
+ maxFileSizeErrorGroup: string;
3850
+ minFileSizeErrorGroup: string;
3851
+ maxFileNumberErrorGroup: string;
3852
+ wrongFileTypeErrorGroup: string;
3853
+ standaloneMaxFileNumberError: string;
3854
+ standaloneUnsupportedFileTypeError: string;
3855
+ standaloneMinFileSizeError: string;
3856
+ standaloneMaxFileSizeError: string;
3857
+ };
3858
+ modal: {
3859
+ a11y: {
3860
+ close: string;
3861
+ };
3862
+ };
3863
+ tearsheet: {
3864
+ a11y: {
3865
+ close: string;
3866
+ };
3867
+ };
3868
+ fileAttacher: {
3869
+ attachFiles: {
3870
+ one: string;
3871
+ other: string;
3872
+ };
3873
+ };
3874
+ tree: {
3875
+ selectionLimit: {
3876
+ one: string;
3877
+ other: string;
3878
+ };
3879
+ unsupportedFileType: {
3880
+ specific: string;
3881
+ unspecific: string;
3882
+ };
3883
+ };
3884
+ fileExplorer: {
3885
+ filesSelectedWithLimit: string;
3886
+ ungroupedThumbnailGridGroup: string;
3887
+ filesSelected: {
3888
+ one: string;
3889
+ other: string;
3890
+ };
3891
+ cancelAction: string;
3892
+ attachAction: string;
3893
+ maxNumberOfFilesSelected: string;
3894
+ modalTitle: string;
3895
+ filesPendingUpload: string;
3896
+ noSelectedItems: string;
3897
+ emptySearchResults: string;
3898
+ noItems: string;
3899
+ searchPlaceholder: string;
3900
+ uploadFailed: string;
3901
+ supportedFileTypes: string;
3902
+ };
3903
+ form: {
3904
+ checkbox: {
3905
+ no: string;
3906
+ yes: string;
3907
+ };
3908
+ errorBanner: {
3909
+ coundNotCreateItem: string;
3910
+ couldNotUpdateItem: string;
3911
+ fixErrorsToCreate: string;
3912
+ fixErrorsToUpdate: string;
3913
+ };
3914
+ };
3915
+ menu: {
3916
+ search: string;
3917
+ };
3918
+ pagination: {
3919
+ interval: string;
3920
+ notation: string;
3921
+ page: string;
3922
+ nextPage: string;
3923
+ prevPage: string;
3924
+ };
3925
+ select: {
3926
+ search: string;
3927
+ };
3928
+ tabs: {
3929
+ more: string;
3930
+ };
3931
+ fileList: {
3932
+ downloadAll: string;
3933
+ download: string;
3934
+ noPreview: string;
3935
+ };
3936
+ tieredSelect: {
3937
+ emptyMessage: string;
3938
+ placeholder: string;
3939
+ quickCreateActionLabel: string;
3940
+ quickCreateCancelLabel: string;
3941
+ quickCreateCreateLabel: string;
3942
+ quickCreatePlaceholder: string;
3943
+ searchEmptyMessage: string;
3944
+ searchPlaceholder: string;
3945
+ spinnerLabel: string;
3946
+ };
3947
+ tieredDropdown: {
3948
+ emptyMessage: string;
3949
+ searchEmptyMessage: string;
3950
+ searchPlaceholder: string;
3951
+ spinnerLabel: string;
3952
+ };
3953
+ fileSelect: {
3954
+ localFilesSource: string;
3955
+ uploadFailed: string;
3956
+ maxNumberOfFilesSelected: string;
3957
+ };
3958
+ required: {
3959
+ requiredFields: string;
3960
+ };
3961
+ wxpDetailPage: {
3962
+ requiredFields: string;
3963
+ };
3964
+ avatarStack: {
3965
+ viewAll: string;
3966
+ close: string;
3967
+ };
3968
+ panel: {
3969
+ close: string;
3970
+ };
3971
+ };
3972
+ };
3973
+ };
3974
+ export declare function useI18n({ locale: _locale, translations: _translations, }: I18njsConfig): I18njs;
3975
+ export declare const I18nContext: React.Context<I18njs>;
3976
+ export declare function I18nProvider({ children, ...props }: I18nConfig & {
3977
+ children: React.ReactNode;
3978
+ }): JSX.Element;
3979
+ export declare function useI18nContext(): I18njs;
3980
+ export {};