@indico-data/design-system 2.1.3 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (370) hide show
  1. package/.yarn/sdks/eslint/bin/eslint.js +8 -1
  2. package/.yarn/sdks/eslint/package.json +1 -1
  3. package/.yarn/sdks/prettier/bin/prettier.cjs +8 -1
  4. package/.yarn/sdks/prettier/index.cjs +8 -1
  5. package/.yarn/sdks/typescript/bin/tsc +8 -1
  6. package/.yarn/sdks/typescript/bin/tsserver +8 -1
  7. package/.yarn/sdks/typescript/package.json +1 -1
  8. package/.yarnrc.yml +1 -0
  9. package/lib/build/generated/iconTypes.d.ts +2 -0
  10. package/lib/index.css +142 -101
  11. package/lib/index.d.ts +9 -1371
  12. package/lib/index.esm.css +142 -101
  13. package/lib/index.esm.js +26604 -12492
  14. package/lib/index.esm.js.map +1 -1
  15. package/lib/index.js +26647 -12538
  16. package/lib/index.js.map +1 -1
  17. package/lib/{components → src/components}/button/types.d.ts +1 -2
  18. package/lib/src/components/icons/Icon.d.ts +4 -0
  19. package/lib/src/components/icons/Icon.stories.d.ts +10 -0
  20. package/lib/src/components/icons/index.d.ts +1 -0
  21. package/lib/src/components/icons/types.d.ts +10 -0
  22. package/lib/{components → src/components}/index.d.ts +2 -0
  23. package/lib/src/components/tables/table/LoadingComponent.d.ts +1 -0
  24. package/lib/src/components/tables/table/Table.d.ts +78 -0
  25. package/lib/src/components/tables/table/Table.stories.d.ts +6 -0
  26. package/lib/src/components/tables/table/index.d.ts +1 -0
  27. package/lib/src/components/tables/table/sampleData.d.ts +8 -0
  28. package/lib/src/index.d.ts +8 -0
  29. package/lib/{legacy → src/legacy}/components/Accordion/Accordion.stories.d.ts +9 -9
  30. package/lib/src/legacy/components/Accordion/Accordion.styles.d.ts +1 -0
  31. package/lib/src/legacy/components/ListTable/Header/Header.styles.d.ts +1 -0
  32. package/lib/{legacy → src/legacy}/components/ListTable/ListTable.stories.d.ts +7 -7
  33. package/lib/src/legacy/components/ListTable/ListTable.styles.d.ts +1 -0
  34. package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/LoadingAwareContainer.stories.d.ts +2 -2
  35. package/lib/src/legacy/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +2 -0
  36. package/lib/src/legacy/components/Pagination/Pagination.styles.d.ts +1 -0
  37. package/lib/{legacy → src/legacy}/components/Toggle/Toggle.d.ts +2 -1
  38. package/lib/src/legacy/components/Toggle/Toggle.stories.d.ts +21 -0
  39. package/lib/src/legacy/components/Toggle/Toggle.styles.d.ts +1 -0
  40. package/lib/src/legacy/components/Tooltip/Tooltip.styles.d.ts +1 -0
  41. package/lib/{legacy → src/legacy}/components/basic-section/Section/Section.stories.d.ts +1 -2
  42. package/lib/src/legacy/components/basic-section/Section/Section.styles.d.ts +1 -0
  43. package/lib/src/legacy/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -0
  44. package/lib/src/legacy/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -0
  45. package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/SectionHeader.stories.d.ts +1 -1
  46. package/lib/src/legacy/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -0
  47. package/lib/src/legacy/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -0
  48. package/lib/{legacy → src/legacy}/components/buttons/Button/Button.stories.d.ts +1 -1
  49. package/lib/src/legacy/components/buttons/Button/Button.styles.d.ts +1 -0
  50. package/lib/{legacy → src/legacy}/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
  51. package/lib/src/legacy/components/buttons/IconButton/IconButton.styles.d.ts +5 -0
  52. package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/BorderSelect.stories.d.ts +8 -9
  53. package/lib/src/legacy/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -0
  54. package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/MultiCombobox.d.ts +5 -5
  55. package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/MultiCombobox.stories.d.ts +7 -7
  56. package/lib/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +4 -0
  57. package/lib/{legacy → src/legacy}/components/dropdowns/Select/Select.stories.d.ts +6 -7
  58. package/lib/src/legacy/components/dropdowns/Select/Select.styles.d.ts +1 -0
  59. package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/SingleCombobox.d.ts +5 -5
  60. package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/SingleCombobox.stories.d.ts +5 -6
  61. package/lib/src/legacy/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +4 -0
  62. package/lib/{legacy → src/legacy}/components/index.d.ts +0 -2
  63. package/lib/src/legacy/components/inputs/DatePicker/DatePicker.styles.d.ts +1 -0
  64. package/lib/src/legacy/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -0
  65. package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/NoInputDatePicker.d.ts +2 -1
  66. package/lib/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.styles.d.ts +1 -0
  67. package/lib/{legacy → src/legacy}/components/inputs/NumberInput/NumberInput.stories.d.ts +2 -2
  68. package/lib/src/legacy/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -0
  69. package/lib/src/legacy/components/inputs/RadioButtons/RadioButtons.styles.d.ts +13 -0
  70. package/lib/src/legacy/components/inputs/RadioGroup/RadioGroup.styles.d.ts +1 -0
  71. package/lib/{legacy → src/legacy}/components/inputs/SearchInput/SearchInput.stories.d.ts +8 -9
  72. package/lib/src/legacy/components/inputs/SearchInput/SearchInput.styles.d.ts +1 -0
  73. package/lib/{legacy → src/legacy}/components/inputs/TextInput/TextInput.stories.d.ts +9 -9
  74. package/lib/src/legacy/components/inputs/TextInput/TextInput.styles.d.ts +2 -0
  75. package/lib/src/legacy/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -0
  76. package/lib/src/legacy/components/loading-indicators/CirclePulse/CirclePulse.styles.d.ts +7 -0
  77. package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/CircleSpinner.d.ts +3 -4
  78. package/lib/src/legacy/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.d.ts +7 -0
  79. package/lib/src/legacy/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -0
  80. package/lib/src/legacy/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -0
  81. package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/ConfirmModal.stories.d.ts +5 -5
  82. package/lib/src/legacy/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +1 -0
  83. package/lib/src/legacy/components/modals/ModalBase/ModalBase.styles.d.ts +4 -0
  84. package/lib/src/legacy/components/text-truncate/TextTruncate.styles.d.ts +1 -0
  85. package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/Shrug.stories.d.ts +11 -11
  86. package/lib/src/legacy/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -0
  87. package/lib/{legacy → src/legacy}/styles/globals/buttons.d.ts +0 -1
  88. package/lib/{legacy → src/legacy}/styles/globals/forms.d.ts +0 -1
  89. package/lib/{legacy → src/legacy}/styles/globals/layout.d.ts +0 -1
  90. package/lib/{legacy → src/legacy}/styles/globals/lists.d.ts +0 -1
  91. package/lib/{legacy → src/legacy}/styles/globals/margin-padding.d.ts +0 -1
  92. package/lib/{legacy → src/legacy}/styles/globals/media.d.ts +0 -1
  93. package/lib/{legacy → src/legacy}/styles/globals/tables.d.ts +0 -1
  94. package/lib/{legacy → src/legacy}/styles/globals/typography.d.ts +0 -1
  95. package/lib/{legacy → src/legacy}/styles/globals/utility-classes.d.ts +0 -1
  96. package/lib/src/types.d.ts +10 -0
  97. package/package.json +20 -15
  98. package/rollup.config.mjs +2 -2
  99. package/scripts/generateIconTypes.js +50 -0
  100. package/src/components/button/Button.tsx +1 -2
  101. package/src/components/button/types.ts +2 -1
  102. package/src/components/icons/Icon.mdx +49 -0
  103. package/src/components/icons/Icon.stories.tsx +248 -0
  104. package/src/components/icons/Icon.tsx +45 -0
  105. package/src/components/icons/__tests__/Icon.test.tsx +104 -0
  106. package/src/components/icons/index.ts +1 -0
  107. package/src/{legacy/components/Icon → components/icons}/indicons.tsx +17 -17
  108. package/src/components/icons/styles/Icon.scss +23 -0
  109. package/src/components/icons/types.ts +12 -0
  110. package/src/components/index.ts +2 -0
  111. package/src/components/tables/table/LoadingComponent.tsx +5 -0
  112. package/src/components/tables/table/Table.mdx +15 -0
  113. package/src/components/tables/table/Table.scss +79 -0
  114. package/src/components/tables/table/Table.stories.tsx +547 -0
  115. package/src/components/tables/table/Table.tsx +112 -0
  116. package/src/components/tables/table/_variables.scss +19 -0
  117. package/src/components/tables/table/index.ts +1 -0
  118. package/src/components/tables/table/sampleData.ts +162 -0
  119. package/src/index.ts +1 -4
  120. package/src/legacy/components/Accordion/Accordion.tsx +2 -2
  121. package/src/legacy/components/ListTable/Header/Header.tsx +1 -2
  122. package/src/legacy/components/ListTable/ListTable.stories.tsx +2 -1
  123. package/src/legacy/components/Toggle/Toggle.styles.ts +1 -1
  124. package/src/legacy/components/Toggle/Toggle.tsx +17 -4
  125. package/src/legacy/components/basic-section/SectionTable/SectionTable.tsx +1 -1
  126. package/src/legacy/components/buttons/Button/Button.tsx +1 -1
  127. package/src/legacy/components/buttons/IconButton/IconButton.tsx +2 -2
  128. package/src/legacy/components/dropdowns/BorderSelect/BorderSelect.tsx +1 -1
  129. package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.stories.tsx +8 -7
  130. package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.styles.ts +3 -1
  131. package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.tsx +2 -2
  132. package/src/legacy/components/dropdowns/Select/Select.tsx +3 -3
  133. package/src/legacy/components/dropdowns/SingleCombobox/SingleCombobox.tsx +2 -2
  134. package/src/legacy/components/index.ts +1 -2
  135. package/src/legacy/components/inputs/EditableInput/EditableInput.tsx +1 -1
  136. package/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.stories.tsx +2 -2
  137. package/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.tsx +5 -4
  138. package/src/legacy/components/inputs/NumberInput/NumberInput.tsx +1 -1
  139. package/src/legacy/components/inputs/SearchInput/SearchInput.tsx +1 -1
  140. package/src/legacy/components/loading-indicators/CircleSpinner/CircleSpinner.tsx +8 -8
  141. package/src/legacy/components/user-feedback/Shrug/Shrug.styles.ts +2 -0
  142. package/src/legacy/components/user-feedback/Shrug/Shrug.tsx +4 -4
  143. package/src/styles/index.scss +2 -2
  144. package/src/styles/variables/_icons.scss +7 -0
  145. package/src/styles/variables/index.scss +2 -1
  146. package/src/types.ts +2 -14
  147. package/tsconfig.json +1 -1
  148. package/lib/legacy/components/Accordion/Accordion.styles.d.ts +0 -2
  149. package/lib/legacy/components/Icon/Icon.d.ts +0 -17
  150. package/lib/legacy/components/Icon/Icon.stories.d.ts +0 -42
  151. package/lib/legacy/components/Icon/faIcons.d.ts +0 -76
  152. package/lib/legacy/components/Icon/index.d.ts +0 -3
  153. package/lib/legacy/components/Icon/storyHelpers.d.ts +0 -9
  154. package/lib/legacy/components/ListTable/Header/Header.styles.d.ts +0 -2
  155. package/lib/legacy/components/ListTable/ListTable.styles.d.ts +0 -2
  156. package/lib/legacy/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +0 -3
  157. package/lib/legacy/components/Navigation/Drawer/Drawer.d.ts +0 -16
  158. package/lib/legacy/components/Navigation/Drawer/Drawer.stories.d.ts +0 -6
  159. package/lib/legacy/components/Navigation/Drawer/DrawerLinkList.d.ts +0 -9
  160. package/lib/legacy/components/Navigation/Drawer/DrawerLinkList.styles.d.ts +0 -2
  161. package/lib/legacy/components/Navigation/Drawer/__mocks__/mocks.d.ts +0 -3
  162. package/lib/legacy/components/Navigation/Drawer/index.d.ts +0 -1
  163. package/lib/legacy/components/Navigation/Drawer/types.d.ts +0 -7
  164. package/lib/legacy/components/Navigation/index.d.ts +0 -1
  165. package/lib/legacy/components/Pagination/Pagination.styles.d.ts +0 -2
  166. package/lib/legacy/components/Toggle/Toggle.stories.d.ts +0 -21
  167. package/lib/legacy/components/Toggle/Toggle.styles.d.ts +0 -2
  168. package/lib/legacy/components/Tooltip/Tooltip.styles.d.ts +0 -2
  169. package/lib/legacy/components/basic-section/Section/Section.styles.d.ts +0 -2
  170. package/lib/legacy/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +0 -2
  171. package/lib/legacy/components/basic-section/SectionBody/SectionBody.styles.d.ts +0 -2
  172. package/lib/legacy/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +0 -2
  173. package/lib/legacy/components/basic-section/SectionTable/SectionTable.styles.d.ts +0 -2
  174. package/lib/legacy/components/buttons/Button/Button.styles.d.ts +0 -2
  175. package/lib/legacy/components/buttons/IconButton/IconButton.styles.d.ts +0 -4
  176. package/lib/legacy/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +0 -3
  177. package/lib/legacy/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +0 -3
  178. package/lib/legacy/components/dropdowns/Select/Select.styles.d.ts +0 -2
  179. package/lib/legacy/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +0 -3
  180. package/lib/legacy/components/inputs/DatePicker/DatePicker.styles.d.ts +0 -2
  181. package/lib/legacy/components/inputs/EditableInput/EditableInput.styles.d.ts +0 -2
  182. package/lib/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.styles.d.ts +0 -2
  183. package/lib/legacy/components/inputs/NumberInput/NumberInput.styles.d.ts +0 -2
  184. package/lib/legacy/components/inputs/RadioButtons/RadioButtons.styles.d.ts +0 -14
  185. package/lib/legacy/components/inputs/RadioGroup/RadioGroup.styles.d.ts +0 -2
  186. package/lib/legacy/components/inputs/SearchInput/SearchInput.styles.d.ts +0 -2
  187. package/lib/legacy/components/inputs/TextInput/TextInput.styles.d.ts +0 -3
  188. package/lib/legacy/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +0 -2
  189. package/lib/legacy/components/loading-indicators/CirclePulse/CirclePulse.styles.d.ts +0 -8
  190. package/lib/legacy/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.d.ts +0 -8
  191. package/lib/legacy/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +0 -2
  192. package/lib/legacy/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +0 -2
  193. package/lib/legacy/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +0 -2
  194. package/lib/legacy/components/modals/ModalBase/ModalBase.styles.d.ts +0 -4
  195. package/lib/legacy/components/text-truncate/TextTruncate.styles.d.ts +0 -2
  196. package/lib/legacy/components/user-feedback/Shrug/Shrug.styles.d.ts +0 -2
  197. package/lib/types.d.ts +0 -231
  198. package/src/legacy/components/Icon/Icon.stories.tsx +0 -61
  199. package/src/legacy/components/Icon/Icon.tsx +0 -76
  200. package/src/legacy/components/Icon/faIcons.tsx +0 -168
  201. package/src/legacy/components/Icon/index.ts +0 -3
  202. package/src/legacy/components/Icon/storyHelpers.tsx +0 -88
  203. package/src/legacy/components/Navigation/Drawer/Drawer.scss +0 -61
  204. package/src/legacy/components/Navigation/Drawer/Drawer.stories.tsx +0 -43
  205. package/src/legacy/components/Navigation/Drawer/Drawer.tsx +0 -107
  206. package/src/legacy/components/Navigation/Drawer/DrawerLinkList.styles.ts +0 -65
  207. package/src/legacy/components/Navigation/Drawer/DrawerLinkList.tsx +0 -64
  208. package/src/legacy/components/Navigation/Drawer/__mocks__/mocks.ts +0 -49
  209. package/src/legacy/components/Navigation/Drawer/__tests__/Drawer.test.tsx +0 -180
  210. package/src/legacy/components/Navigation/Drawer/__tests__/DrawerLinkList.test.tsx +0 -66
  211. package/src/legacy/components/Navigation/Drawer/index.ts +0 -1
  212. package/src/legacy/components/Navigation/Drawer/types.ts +0 -8
  213. package/src/legacy/components/Navigation/index.ts +0 -1
  214. /package/lib/{components → src/components}/button/Button.d.ts +0 -0
  215. /package/lib/{components → src/components}/button/Button.stories.d.ts +0 -0
  216. /package/lib/{components → src/components}/button/__tests__/Button.test.d.ts +0 -0
  217. /package/lib/{components → src/components}/button/enums.d.ts +0 -0
  218. /package/lib/{components → src/components}/button/index.d.ts +0 -0
  219. /package/lib/{components → src/components}/grid/col/Col.d.ts +0 -0
  220. /package/lib/{components → src/components}/grid/col/Col.stories.d.ts +0 -0
  221. /package/lib/{components → src/components}/grid/container/Container.d.ts +0 -0
  222. /package/lib/{components → src/components}/grid/container/Container.stories.d.ts +0 -0
  223. /package/lib/{components → src/components}/grid/index.d.ts +0 -0
  224. /package/lib/{components → src/components}/grid/row/Row.d.ts +0 -0
  225. /package/lib/{components → src/components}/grid/row/Row.stories.d.ts +0 -0
  226. /package/lib/{legacy/components/Navigation/Drawer/__tests__/DrawerLinkList.test.d.ts → src/components/icons/__tests__/Icon.test.d.ts} +0 -0
  227. /package/lib/{legacy/components/Icon → src/components/icons}/indicons.d.ts +0 -0
  228. /package/lib/{legacy → src/legacy}/components/Accordion/Accordion.d.ts +0 -0
  229. /package/lib/{legacy → src/legacy}/components/Accordion/index.d.ts +0 -0
  230. /package/lib/{legacy → src/legacy}/components/ListTable/Header/Header.d.ts +0 -0
  231. /package/lib/{legacy → src/legacy}/components/ListTable/Header/index.d.ts +0 -0
  232. /package/lib/{legacy → src/legacy}/components/ListTable/ListTable.d.ts +0 -0
  233. /package/lib/{legacy → src/legacy}/components/ListTable/index.d.ts +0 -0
  234. /package/lib/{legacy → src/legacy}/components/ListTable/mock-data/index.d.ts +0 -0
  235. /package/lib/{legacy → src/legacy}/components/ListTable/mock-data/mock-data.d.ts +0 -0
  236. /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/LoadingAwareContainer.d.ts +0 -0
  237. /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/index.d.ts +0 -0
  238. /package/lib/{legacy → src/legacy}/components/Pagination/Pagination.d.ts +0 -0
  239. /package/lib/{legacy → src/legacy}/components/Pagination/Pagination.stories.d.ts +0 -0
  240. /package/lib/{legacy → src/legacy}/components/Pagination/index.d.ts +0 -0
  241. /package/lib/{legacy → src/legacy}/components/Toggle/index.d.ts +0 -0
  242. /package/lib/{legacy → src/legacy}/components/Tooltip/Tooltip.d.ts +0 -0
  243. /package/lib/{legacy → src/legacy}/components/Tooltip/Tooltip.stories.d.ts +0 -0
  244. /package/lib/{legacy → src/legacy}/components/Tooltip/index.d.ts +0 -0
  245. /package/lib/{legacy → src/legacy}/components/basic-section/Section/Section.d.ts +0 -0
  246. /package/lib/{legacy → src/legacy}/components/basic-section/Section/index.d.ts +0 -0
  247. /package/lib/{legacy → src/legacy}/components/basic-section/SectionBlock/SectionBlock.d.ts +0 -0
  248. /package/lib/{legacy → src/legacy}/components/basic-section/SectionBlock/index.d.ts +0 -0
  249. /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/SectionBody.d.ts +0 -0
  250. /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/SectionBody.stories.d.ts +0 -0
  251. /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/index.d.ts +0 -0
  252. /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/SectionHeader.d.ts +0 -0
  253. /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/index.d.ts +0 -0
  254. /package/lib/{legacy → src/legacy}/components/basic-section/SectionTable/SectionTable.d.ts +0 -0
  255. /package/lib/{legacy → src/legacy}/components/basic-section/SectionTable/index.d.ts +0 -0
  256. /package/lib/{legacy → src/legacy}/components/basic-section/index.d.ts +0 -0
  257. /package/lib/{legacy → src/legacy}/components/buttons/Button/Button.d.ts +0 -0
  258. /package/lib/{legacy → src/legacy}/components/buttons/Button/index.d.ts +0 -0
  259. /package/lib/{legacy → src/legacy}/components/buttons/IconButton/IconButton.d.ts +0 -0
  260. /package/lib/{legacy → src/legacy}/components/buttons/IconButton/index.d.ts +0 -0
  261. /package/lib/{legacy → src/legacy}/components/buttons/commonStyles.d.ts +0 -0
  262. /package/lib/{legacy → src/legacy}/components/buttons/index.d.ts +0 -0
  263. /package/lib/{legacy → src/legacy}/components/buttons/types.d.ts +0 -0
  264. /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/BorderSelect.d.ts +0 -0
  265. /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/index.d.ts +0 -0
  266. /package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/index.d.ts +0 -0
  267. /package/lib/{legacy → src/legacy}/components/dropdowns/Select/Select.d.ts +0 -0
  268. /package/lib/{legacy → src/legacy}/components/dropdowns/Select/index.d.ts +0 -0
  269. /package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/index.d.ts +0 -0
  270. /package/lib/{legacy → src/legacy}/components/dropdowns/commonStyles.d.ts +0 -0
  271. /package/lib/{legacy → src/legacy}/components/dropdowns/index.d.ts +0 -0
  272. /package/lib/{legacy → src/legacy}/components/dropdowns/types.d.ts +0 -0
  273. /package/lib/{legacy → src/legacy}/components/dropdowns/useCombobox.d.ts +0 -0
  274. /package/lib/{legacy → src/legacy}/components/dropdowns/utils.d.ts +0 -0
  275. /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/DatePicker.d.ts +0 -0
  276. /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/DatePicker.stories.d.ts +0 -0
  277. /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/index.d.ts +0 -0
  278. /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/EditableInput.d.ts +0 -0
  279. /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/EditableInput.stories.d.ts +0 -0
  280. /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/index.d.ts +0 -0
  281. /package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/NoInputDatePicker.stories.d.ts +0 -0
  282. /package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/index.d.ts +0 -0
  283. /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/NumberInput.d.ts +0 -0
  284. /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/index.d.ts +0 -0
  285. /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/RadioButtons.d.ts +0 -0
  286. /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/RadioButtons.stories.d.ts +0 -0
  287. /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/index.d.ts +0 -0
  288. /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/RadioGroup.d.ts +0 -0
  289. /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/RadioGroup.stories.d.ts +0 -0
  290. /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/index.d.ts +0 -0
  291. /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/SearchInput.d.ts +0 -0
  292. /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/index.d.ts +0 -0
  293. /package/lib/{legacy → src/legacy}/components/inputs/TextInput/TextInput.d.ts +0 -0
  294. /package/lib/{legacy → src/legacy}/components/inputs/TextInput/index.d.ts +0 -0
  295. /package/lib/{legacy → src/legacy}/components/inputs/index.d.ts +0 -0
  296. /package/lib/{legacy → src/legacy}/components/inputs/inputsCommon.styles.d.ts +0 -0
  297. /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/BarSpinner.d.ts +0 -0
  298. /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/BarSpinner.stories.d.ts +0 -0
  299. /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/index.d.ts +0 -0
  300. /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/CirclePulse.d.ts +0 -0
  301. /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/CirclePulse.stories.d.ts +0 -0
  302. /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/index.d.ts +0 -0
  303. /package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/CircleSpinner.stories.d.ts +0 -0
  304. /package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/index.d.ts +0 -0
  305. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/LoadingIndicator.d.ts +0 -0
  306. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.d.ts +0 -0
  307. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/index.d.ts +0 -0
  308. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/LoadingList.d.ts +0 -0
  309. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/LoadingList.stories.d.ts +0 -0
  310. /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/index.d.ts +0 -0
  311. /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/PercentageRing.d.ts +0 -0
  312. /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/PercentageRing.stories.d.ts +0 -0
  313. /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/index.d.ts +0 -0
  314. /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.d.ts +0 -0
  315. /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.stories.d.ts +0 -0
  316. /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/index.d.ts +0 -0
  317. /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/random-messages.d.ts +0 -0
  318. /package/lib/{legacy → src/legacy}/components/loading-indicators/index.d.ts +0 -0
  319. /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/ConfirmModal.d.ts +0 -0
  320. /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/index.d.ts +0 -0
  321. /package/lib/{legacy → src/legacy}/components/modals/ModalBase/ModalBase.d.ts +0 -0
  322. /package/lib/{legacy → src/legacy}/components/modals/ModalBase/ModalBase.stories.d.ts +0 -0
  323. /package/lib/{legacy → src/legacy}/components/modals/ModalBase/index.d.ts +0 -0
  324. /package/lib/{legacy → src/legacy}/components/modals/index.d.ts +0 -0
  325. /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.d.ts +0 -0
  326. /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.stories.d.ts +0 -0
  327. /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.test.d.ts +0 -0
  328. /package/lib/{legacy → src/legacy}/components/text-truncate/index.d.ts +0 -0
  329. /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/Shrug.d.ts +0 -0
  330. /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/index.d.ts +0 -0
  331. /package/lib/{legacy → src/legacy}/components/user-feedback/index.d.ts +0 -0
  332. /package/lib/{legacy → src/legacy}/styles/globals/index.d.ts +0 -0
  333. /package/lib/{legacy → src/legacy}/styles/index.d.ts +0 -0
  334. /package/lib/{legacy → src/legacy}/tokens/animation.d.ts +0 -0
  335. /package/lib/{legacy → src/legacy}/tokens/breakpoints.d.ts +0 -0
  336. /package/lib/{legacy → src/legacy}/tokens/colors.d.ts +0 -0
  337. /package/lib/{legacy → src/legacy}/tokens/index.d.ts +0 -0
  338. /package/lib/{legacy → src/legacy}/tokens/margin.d.ts +0 -0
  339. /package/lib/{legacy → src/legacy}/tokens/numbers.d.ts +0 -0
  340. /package/lib/{legacy → src/legacy}/tokens/padding.d.ts +0 -0
  341. /package/lib/{legacy → src/legacy}/tokens/spacings.d.ts +0 -0
  342. /package/lib/{legacy → src/legacy}/tokens/typography.d.ts +0 -0
  343. /package/lib/{legacy → src/legacy}/utils/color.d.ts +0 -0
  344. /package/lib/{legacy → src/legacy}/utils/index.d.ts +0 -0
  345. /package/lib/{legacy → src/legacy}/utils/number.d.ts +0 -0
  346. /package/lib/{legacy → src/legacy}/utils/string.d.ts +0 -0
  347. /package/lib/{setupTests.d.ts → src/setupTests.d.ts} +0 -0
  348. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderColor.d.ts +0 -0
  349. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderColor.stories.d.ts +0 -0
  350. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderRadius.d.ts +0 -0
  351. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderRadius.stories.d.ts +0 -0
  352. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderStyles.d.ts +0 -0
  353. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderStyles.stories.d.ts +0 -0
  354. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderThickness.d.ts +0 -0
  355. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderThickness.stories.d.ts +0 -0
  356. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/index.d.ts +0 -0
  357. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Colors.d.ts +0 -0
  358. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Colors.stories.d.ts +0 -0
  359. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Swatch.d.ts +0 -0
  360. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/UtilityClasses.d.ts +0 -0
  361. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/UtilityClasses.stories.d.ts +0 -0
  362. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/constants.d.ts +0 -0
  363. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/hooks.d.ts +0 -0
  364. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/index.d.ts +0 -0
  365. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/Sizing.d.ts +0 -0
  366. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/Sizing.stories.d.ts +0 -0
  367. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/index.d.ts +0 -0
  368. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/Typography.d.ts +0 -0
  369. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/Typography.stories.d.ts +0 -0
  370. /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/index.d.ts +0 -0
@@ -1,5 +1,6 @@
1
1
  @import 'typography';
2
2
  @import 'colors';
3
+ @import 'icons';
3
4
  @import 'borders';
4
5
  @import 'padding';
5
- @import 'margin';
6
+ @import 'margin';
package/src/types.ts CHANGED
@@ -1,13 +1,3 @@
1
- import { faIcons } from './legacy/components/Icon/faIcons';
2
- import { indicons } from './legacy/components/Icon/indicons';
3
-
4
- const allIcons = {
5
- ...faIcons,
6
- ...indicons,
7
- } as const;
8
-
9
- export type IconName = keyof typeof allIcons;
10
-
11
1
  export type PermafrostComponent = {
12
2
  id?: string;
13
3
  className?: string;
@@ -18,7 +8,5 @@ export type PermafrostComponent = {
18
8
  export type ButtonVariant = 'default' | 'primary' | 'destructive';
19
9
  export type ButtonSize = 'normal' | 'large';
20
10
 
21
- // Component types -- TODO -- move to their own files
22
- import { ListItem } from './legacy/components/Navigation/Drawer/types';
23
-
24
- export type { ListItem };
11
+ import { IconName } from '../build/generated/iconTypes';
12
+ export type { IconName };
package/tsconfig.json CHANGED
@@ -22,6 +22,6 @@
22
22
  "@/*": ["src/*"]
23
23
  }
24
24
  },
25
- "include": ["./src/**/*"],
25
+ "include": ["src", "build/generated"],
26
26
  "exclude": ["node_modules", "lib"]
27
27
  }
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledAccordion: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, never>>;
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import { PermafrostComponent, IconName } from '@/types';
3
- type Props = PermafrostComponent & {
4
- ariaLabel?: string;
5
- fill?: string;
6
- name: IconName;
7
- size?: [string | number] | [string | number, string | number];
8
- style?: any;
9
- onClick?(): void;
10
- ref?: React.Ref<SVGSVGElement>;
11
- };
12
- /**
13
- * Generic icon component, hidden from Assistive Technology by default.
14
- * If icon should be available to AT, pass the desired name into the `ariaLabel` prop.
15
- */
16
- export declare function Icon({ style, ...props }: Props): React.ReactElement | null;
17
- export {};
@@ -1,42 +0,0 @@
1
- import React from 'react';
2
- import { StoryObj } from '@storybook/react';
3
- import { Icon } from './Icon';
4
- declare const meta: {
5
- component: typeof Icon;
6
- title: string;
7
- argTypes: {
8
- ariaLabel: {
9
- control: {
10
- disable: boolean;
11
- };
12
- };
13
- size: {
14
- description: string;
15
- };
16
- name: {
17
- control: {
18
- type: string;
19
- options: ("search" | "split" | "indico-o-white" | "account" | "address" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "bookmark" | "bookmarks" | "bookmark-saved" | "branch" | "calendar" | "check-circle" | "circle-help" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "cog" | "collection" | "compare" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "choose-library" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "document" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "exclamation-circle-stroke" | "extraction" | "eye" | "file" | "fileHappy" | "filter" | "filter-outline" | "folder" | "form" | "gallery" | "find-documents" | "graphiql" | "grid-view" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "label" | "layout-complex" | "layout-simple" | "list-view" | "libraries" | "location" | "logout" | "lock" | "menu" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-collections" | "no-libraries" | "no_results" | "no-format" | "object-detection" | "organizations" | "output" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "preview-view" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "reset" | "retrain" | "sad" | "search-thin" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "text" | "thumbs-down" | "thumbs-up" | "time" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "warning-stroke" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list")[];
20
- };
21
- };
22
- };
23
- decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react/dist/types-bf5e6555").R, {
24
- id?: string | undefined;
25
- className?: string | undefined;
26
- 'data-cy'?: string | undefined;
27
- 'data-testid'?: string | undefined;
28
- ariaLabel?: string | undefined;
29
- fill?: string | undefined;
30
- name: "search" | "split" | "indico-o-white" | "account" | "address" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "bookmark" | "bookmarks" | "bookmark-saved" | "branch" | "calendar" | "check-circle" | "circle-help" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "cog" | "collection" | "compare" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "choose-library" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "document" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "exclamation-circle-stroke" | "extraction" | "eye" | "file" | "fileHappy" | "filter" | "filter-outline" | "folder" | "form" | "gallery" | "find-documents" | "graphiql" | "grid-view" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "label" | "layout-complex" | "layout-simple" | "list-view" | "libraries" | "location" | "logout" | "lock" | "menu" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-collections" | "no-libraries" | "no_results" | "no-format" | "object-detection" | "organizations" | "output" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "preview-view" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "reset" | "retrain" | "sad" | "search-thin" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "text" | "thumbs-down" | "thumbs-up" | "time" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "warning-stroke" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list";
31
- size?: [string | number] | [string | number, string | number] | undefined;
32
- style?: any;
33
- onClick?: (() => void) | undefined;
34
- ref?: React.Ref<SVGSVGElement> | undefined;
35
- }>) => import("react/jsx-runtime").JSX.Element)[];
36
- };
37
- export default meta;
38
- type Story = StoryObj<typeof Icon>;
39
- export declare const General: Story;
40
- export declare const Indicon: Story;
41
- export declare const FontAwesome: Story;
42
- export declare const SizeSpecified: Story;
@@ -1,76 +0,0 @@
1
- import React from 'react';
2
- declare const faIcons: {
3
- 'fa-dot-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
4
- 'fa-file': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
5
- 'fa-file-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
6
- 'fa-file-pdf': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
7
- 'fa-file-word': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
8
- 'fa-check-square': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
9
- 'fa-square': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
10
- 'fa-angle-double-left': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
11
- 'fa-arrow-circle-right': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
12
- 'fa-arrow-down': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
13
- 'fa-arrow-left': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
14
- 'fa-arrow-right': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
15
- 'fa-arrow-up': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
16
- 'fa-ban': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
17
- 'fa-caret-down': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
18
- 'fa-caret-up': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
19
- 'fa-chart-bar': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
20
- 'fa-check': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
21
- 'fa-check-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
22
- 'fa-circle-notch': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
23
- 'fa-clipboard': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
24
- 'fa-clock': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
25
- 'fa-clone': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
26
- 'fa-cloud': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
27
- 'fa-cog': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
28
- 'fa-cogs': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
29
- 'fa-coins': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
30
- 'fa-cube': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
31
- 'fa-cut': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
32
- 'fa-download': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
33
- 'fa-exclamation-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
34
- 'fa-exclamation-triangle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
35
- 'fa-external-link-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
36
- 'fa-eye-dropper': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
37
- 'fa-file-download': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
38
- 'fa-file-export': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
39
- 'fa-file-upload': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
40
- 'fa-filter': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
41
- 'fa-ghost': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
42
- 'fa-hat-wizard': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
43
- 'fa-info-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
44
- 'fa-key': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
45
- 'fa-keyboard': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
46
- 'fa-layer-group': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
47
- 'fa-pencil-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
48
- 'fa-plus': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
49
- 'fa-plus-square': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
50
- 'fa-question-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
51
- 'fa-robot': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
52
- 'fa-search': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
53
- 'fa-sign-out-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
54
- 'fa-sliders-h': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
55
- 'fa-sync-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
56
- 'fa-tag': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
57
- 'fa-times': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
58
- 'fa-times-circle': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
59
- 'fa-tint': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
60
- 'fa-toggle-off': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
61
- 'fa-toggle-on': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
62
- 'fa-trash': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
63
- 'fa-trash-alt': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
64
- 'fa-undo': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
65
- 'fa-user': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
66
- 'fa-users': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
67
- 'fa-mouse-pointer': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
68
- 'fa-step-forward': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
69
- 'fa-search-minus': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
70
- 'fa-search-plus': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
71
- 'fa-table': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
72
- 'fa-image': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
73
- 'fa-link': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
74
- 'fa-list': React.ReactElement<any, string | React.JSXElementConstructor<any>>;
75
- };
76
- export { faIcons };
@@ -1,3 +0,0 @@
1
- export { Icon } from './Icon';
2
- export { faIcons } from './faIcons';
3
- export { indicons } from './indicons';
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- interface IconGroupProps {
3
- groupObject: any;
4
- }
5
- export declare function IconGroup(props: IconGroupProps): React.ReactElement;
6
- export declare const IconContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>;
7
- export declare const IconGroupContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, never>>;
8
- export declare const SpecifiedSizeContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
9
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledHeader: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledListTable: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledStatusContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
3
- export declare const StyledLoadingAwareContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- import { IconName, PermafrostComponent } from '@/types';
3
- import { ListItem } from './types';
4
- import './Drawer.scss';
5
- type Props = PermafrostComponent & {
6
- style?: React.CSSProperties;
7
- logoText?: string;
8
- logoIcon?: IconName;
9
- headerComponent?: React.ReactNode;
10
- navigationItems?: ListItem[];
11
- footerItems?: ListItem[];
12
- expandedWidth?: string;
13
- collapsedWidth?: string;
14
- };
15
- export declare const Drawer: (props: Props) => import("react/jsx-runtime").JSX.Element;
16
- export {};
@@ -1,6 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { Drawer } from '@/legacy/components/Navigation/Drawer';
3
- declare const meta: Meta<typeof Drawer>;
4
- export default meta;
5
- type Story = StoryObj<typeof Drawer>;
6
- export declare const Normal: Story;
@@ -1,9 +0,0 @@
1
- import { PermafrostComponent } from '@/types';
2
- import { ListItem } from './types';
3
- type Props = PermafrostComponent & {
4
- style?: object;
5
- listItems?: ListItem[];
6
- isOpen: boolean;
7
- };
8
- export declare const DrawerLinkList: (props: Props) => import("react/jsx-runtime").JSX.Element;
9
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledDrawerLinkList: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,3 +0,0 @@
1
- import { ListItem } from '../types';
2
- export declare const navigationItems: ListItem[];
3
- export declare const footerItems: ListItem[];
@@ -1 +0,0 @@
1
- export { Drawer } from './Drawer';
@@ -1,7 +0,0 @@
1
- import { IconName } from '@/types';
2
- export type ListItem = {
3
- id: string;
4
- icon: IconName;
5
- label: string;
6
- path: string;
7
- };
@@ -1 +0,0 @@
1
- export { Drawer } from './Drawer';
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledPagination: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,21 +0,0 @@
1
- import type { StoryObj } from '@storybook/react';
2
- import { Toggle } from './Toggle';
3
- declare const meta: {
4
- component: (props: {
5
- disabled: boolean;
6
- onChange: any;
7
- value: boolean;
8
- "aria-label"?: string | undefined;
9
- iconSize?: string | number | undefined;
10
- checkedIconName?: "search" | "split" | "indico-o-white" | "account" | "address" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "bookmark" | "bookmarks" | "bookmark-saved" | "branch" | "calendar" | "check-circle" | "circle-help" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "cog" | "collection" | "compare" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "choose-library" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "document" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "exclamation-circle-stroke" | "extraction" | "eye" | "file" | "fileHappy" | "filter" | "filter-outline" | "folder" | "form" | "gallery" | "find-documents" | "graphiql" | "grid-view" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "label" | "layout-complex" | "layout-simple" | "list-view" | "libraries" | "location" | "logout" | "lock" | "menu" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-collections" | "no-libraries" | "no_results" | "no-format" | "object-detection" | "organizations" | "output" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "preview-view" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "reset" | "retrain" | "sad" | "search-thin" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "text" | "thumbs-down" | "thumbs-up" | "time" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "warning-stroke" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list" | undefined;
11
- notCheckedIconName?: "search" | "split" | "indico-o-white" | "account" | "address" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "bookmark" | "bookmarks" | "bookmark-saved" | "branch" | "calendar" | "check-circle" | "circle-help" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "cog" | "collection" | "compare" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "choose-library" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "document" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "exclamation-circle-stroke" | "extraction" | "eye" | "file" | "fileHappy" | "filter" | "filter-outline" | "folder" | "form" | "gallery" | "find-documents" | "graphiql" | "grid-view" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "label" | "layout-complex" | "layout-simple" | "list-view" | "libraries" | "location" | "logout" | "lock" | "menu" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-collections" | "no-libraries" | "no_results" | "no-format" | "object-detection" | "organizations" | "output" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "preview-view" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "reset" | "retrain" | "sad" | "search-thin" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "text" | "thumbs-down" | "thumbs-up" | "time" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "warning-stroke" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list" | undefined;
12
- } & import("../../../types").PermafrostComponent) => import("react/jsx-runtime").JSX.Element;
13
- title: string;
14
- argTypes: {};
15
- args: {};
16
- };
17
- export default meta;
18
- type Story = StoryObj<typeof Toggle>;
19
- export declare const Normal: Story;
20
- export declare const Disabled: Story;
21
- export declare const Icons: Story;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledToggle: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledTooltip: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSection: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSectionBlock: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSectionBody: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSectionHeader: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSectionTable: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>>;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const iconButton: import("styled-components").RuleSet<object>;
3
- export declare const StyledIconButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>>;
4
- export declare const StyledIconButtonLink: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react-router-dom").LinkProps & import("react").RefAttributes<HTMLAnchorElement>, never>> & Omit<import("react").ForwardRefExoticComponent<import("react-router-dom").LinkProps & import("react").RefAttributes<HTMLAnchorElement>>, keyof import("react").Component<any, {}, any>>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSelect: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
3
- export declare const StyledValidationError: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import ReactSelect from 'react-select';
3
- export declare const StyledMultiCombobox: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<unknown, boolean, import("react-select").GroupBase<unknown>>, "onChange" | "value" | "inputValue" | "menuIsOpen" | "onInputChange" | "onMenuOpen" | "onMenuClose"> & Partial<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<unknown, boolean, import("react-select").GroupBase<unknown>>> & import("react-select/dist/declarations/src/useStateManager").StateManagerAdditionalProps<unknown> & import("react").RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>, never>> & Omit<ReactSelect, keyof import("react").Component<any, {}, any>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSelect: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import ReactSelect from 'react-select';
3
- export declare const StyledSingleCombobox: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<unknown, boolean, import("react-select").GroupBase<unknown>>, "onChange" | "value" | "inputValue" | "menuIsOpen" | "onInputChange" | "onMenuOpen" | "onMenuClose"> & Partial<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<unknown, boolean, import("react-select").GroupBase<unknown>>> & import("react-select/dist/declarations/src/useStateManager").StateManagerAdditionalProps<unknown> & import("react").RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>, never>> & Omit<ReactSelect, keyof import("react").Component<any, {}, any>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledDatePicker: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledEditableInput: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledNoInputDatePicker: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledNumberField: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,14 +0,0 @@
1
- /// <reference types="react" />
2
- import { AbstractRadioGroup } from '../RadioGroup';
3
- export declare const StyledRadioGroup: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("../../../../types").PermafrostComponent & {
4
- value?: string | undefined;
5
- onChange?: ((value: string) => void) | undefined;
6
- children: import("react").ReactNode;
7
- className?: string | undefined;
8
- } & import("@react-types/radio").AriaRadioGroupProps, {
9
- hideFocusRing: boolean;
10
- color: string;
11
- labelColor: string;
12
- hoverAndSelectedColor: string;
13
- focusRingColor: string;
14
- }>> & Omit<typeof AbstractRadioGroup, keyof import("react").Component<any, {}, any>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledRadioGroup: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledSearchField: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledTextInput: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
3
- export declare const StyledInputInfo: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledBarSpinner: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledLoadingIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
- overallsize: string;
4
- ripplesize: string;
5
- }>>;
6
- export declare const StyledMessageLoadingIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
7
- overallsize: string;
8
- }>>;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledLoadingIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
- overallsize: string;
4
- ripplesize: string;
5
- }>>;
6
- export declare const StyledMessageLoadingIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
7
- overallsize: string;
8
- }>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledLoadingList: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledPercentageRing: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledConfirmModal: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- declare function ModalAdapter(props: any): React.ReactElement;
3
- export declare const StyledModalBase: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<any, never>> & Omit<typeof ModalAdapter, keyof React.Component<any, {}, any>>;
4
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledTextTruncate: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const StyledShrug: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;