@indico-data/design-system 1.0.47 → 1.0.48

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 (163) hide show
  1. package/README.md +5 -0
  2. package/jest.config.js +15 -0
  3. package/lib/components/Accordion/Accordion.d.ts +1 -1
  4. package/lib/components/Accordion/Accordion.stories.d.ts +2 -2
  5. package/lib/components/Accordion/Accordion.styles.d.ts +1 -1
  6. package/lib/components/Icon/Icon.stories.d.ts +3 -4
  7. package/lib/components/Icon/indicons.d.ts +143 -125
  8. package/lib/components/Icon/storyHelpers.d.ts +3 -3
  9. package/lib/components/ListTable/Header/Header.d.ts +1 -1
  10. package/lib/components/ListTable/Header/Header.styles.d.ts +1 -1
  11. package/lib/components/ListTable/ListTable.d.ts +1 -1
  12. package/lib/components/ListTable/ListTable.stories.d.ts +1 -1
  13. package/lib/components/ListTable/ListTable.styles.d.ts +1 -1
  14. package/lib/components/LoadingAwareContainer/LoadingAwareContainer.d.ts +15 -0
  15. package/lib/components/LoadingAwareContainer/LoadingAwareContainer.stories.d.ts +22 -0
  16. package/lib/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +544 -0
  17. package/lib/components/LoadingAwareContainer/index.d.ts +1 -0
  18. package/lib/components/Navigation/Drawer/Drawer.d.ts +15 -0
  19. package/lib/components/Navigation/Drawer/Drawer.stories.d.ts +6 -0
  20. package/lib/components/Navigation/Drawer/Drawer.styles.d.ts +7 -0
  21. package/lib/components/Navigation/Drawer/DrawerLinkList.d.ts +9 -0
  22. package/lib/components/Navigation/Drawer/DrawerLinkList.styles.d.ts +273 -0
  23. package/lib/components/Navigation/Drawer/__mocks__/mocks.d.ts +3 -0
  24. package/lib/components/Navigation/Drawer/__tests__/Drawer.test.d.ts +1 -0
  25. package/lib/components/Navigation/Drawer/__tests__/DrawerLinkList.test.d.ts +1 -0
  26. package/lib/components/Navigation/Drawer/constants.d.ts +3 -0
  27. package/lib/components/Navigation/Drawer/index.d.ts +1 -0
  28. package/lib/components/Navigation/Drawer/types.d.ts +7 -0
  29. package/lib/components/Navigation/index.d.ts +1 -0
  30. package/lib/components/Pagination/Pagination.d.ts +1 -2
  31. package/lib/components/Pagination/Pagination.styles.d.ts +1 -1
  32. package/lib/components/Wizard/Wizard.d.ts +48 -0
  33. package/lib/components/Wizard/Wizard.stories.d.ts +29 -0
  34. package/lib/components/Wizard/Wizard.styles.d.ts +815 -0
  35. package/lib/components/Wizard/index.d.ts +2 -0
  36. package/lib/components/WizardWithSidebar/WizardWithSidebar.d.ts +58 -0
  37. package/lib/components/WizardWithSidebar/WizardWithSidebar.stories.d.ts +46 -0
  38. package/lib/components/WizardWithSidebar/WizardWithSidebar.styles.d.ts +9 -0
  39. package/lib/components/WizardWithSidebar/index.d.ts +2 -0
  40. package/lib/components/basic-section/Section/Section.d.ts +1 -1
  41. package/lib/components/basic-section/Section/Section.stories.d.ts +1 -1
  42. package/lib/components/basic-section/Section/Section.styles.d.ts +1 -1
  43. package/lib/components/basic-section/SectionBlock/SectionBlock.d.ts +1 -1
  44. package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -1
  45. package/lib/components/basic-section/SectionBody/SectionBody.d.ts +1 -1
  46. package/lib/components/basic-section/SectionBody/SectionBody.stories.d.ts +1 -2
  47. package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -1
  48. package/lib/components/basic-section/SectionHeader/SectionHeader.d.ts +1 -1
  49. package/lib/components/basic-section/SectionHeader/SectionHeader.stories.d.ts +1 -1
  50. package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -1
  51. package/lib/components/basic-section/SectionTable/SectionTable.d.ts +1 -2
  52. package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -1
  53. package/lib/components/buttons/Button/Button.styles.d.ts +1 -1
  54. package/lib/components/buttons/IconButton/IconButton.d.ts +4 -5
  55. package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
  56. package/lib/components/buttons/IconButton/IconButton.styles.d.ts +5 -5
  57. package/lib/components/buttons/types.d.ts +2 -1
  58. package/lib/components/dropdowns/BorderSelect/BorderSelect.d.ts +1 -1
  59. package/lib/components/dropdowns/BorderSelect/BorderSelect.stories.d.ts +1 -1
  60. package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -2
  61. package/lib/components/dropdowns/Select/Select.d.ts +1 -1
  62. package/lib/components/dropdowns/Select/Select.stories.d.ts +1 -1
  63. package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -1
  64. package/lib/components/dropdowns/utils.d.ts +1 -2
  65. package/lib/components/index.d.ts +6 -1
  66. package/lib/components/inputs/EditableInput/EditableInput.d.ts +1 -1
  67. package/lib/components/inputs/EditableInput/EditableInput.stories.d.ts +1 -2
  68. package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -1
  69. package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -1
  70. package/lib/components/inputs/SearchInput/SearchInput.d.ts +1 -1
  71. package/lib/components/inputs/SearchInput/SearchInput.stories.d.ts +1 -1
  72. package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +272 -5
  73. package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -2
  74. package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -1
  75. package/lib/components/loading-indicators/CirclePulse/CirclePulse.styles.d.ts +3 -3
  76. package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.d.ts +10 -0
  77. package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.d.ts +11 -0
  78. package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.d.ts +8 -0
  79. package/lib/components/loading-indicators/LoadingIndicator/index.d.ts +1 -0
  80. package/lib/components/loading-indicators/LoadingList/LoadingList.d.ts +1 -2
  81. package/lib/components/loading-indicators/LoadingList/LoadingList.stories.d.ts +1 -2
  82. package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -1
  83. package/lib/components/loading-indicators/PercentageRing/PercentageRing.d.ts +1 -2
  84. package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -1
  85. package/lib/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.d.ts +1 -2
  86. package/lib/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.stories.d.ts +1 -2
  87. package/lib/components/loading-indicators/index.d.ts +1 -0
  88. package/lib/components/modals/ConfirmModal/ConfirmModal.d.ts +17 -0
  89. package/lib/components/modals/ConfirmModal/ConfirmModal.stories.d.ts +44 -0
  90. package/lib/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +273 -0
  91. package/lib/components/modals/ConfirmModal/index.d.ts +1 -0
  92. package/lib/components/modals/ModalBase/ModalBase.d.ts +27 -0
  93. package/lib/components/modals/ModalBase/ModalBase.stories.d.ts +9 -0
  94. package/lib/components/modals/ModalBase/ModalBase.styles.d.ts +6 -0
  95. package/lib/components/modals/ModalBase/index.d.ts +2 -0
  96. package/lib/components/modals/index.d.ts +2 -0
  97. package/lib/components/user-feedback/Shrug/Shrug.stories.d.ts +1 -1
  98. package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -1
  99. package/lib/index.d.ts +1293 -270
  100. package/lib/index.esm.js +4082 -622
  101. package/lib/index.esm.js.map +1 -1
  102. package/lib/index.js +4131 -661
  103. package/lib/index.js.map +1 -1
  104. package/lib/setupTests.d.ts +1 -0
  105. package/lib/styles/globals/index.d.ts +1 -2
  106. package/lib/tokens/colors.d.ts +7 -0
  107. package/lib/tokens/typography.d.ts +12 -0
  108. package/lib/types.d.ts +147 -125
  109. package/package.json +18 -3
  110. package/src/components/Icon/Icon.tsx +1 -0
  111. package/src/components/Icon/indicons.tsx +138 -15
  112. package/src/components/ListTable/ListTable.stories.tsx +1 -1
  113. package/src/components/LoadingAwareContainer/LoadingAwareContainer.stories.tsx +45 -0
  114. package/src/components/LoadingAwareContainer/LoadingAwareContainer.styles.ts +16 -0
  115. package/src/components/LoadingAwareContainer/LoadingAwareContainer.tsx +36 -0
  116. package/src/components/LoadingAwareContainer/index.ts +1 -0
  117. package/src/components/Navigation/Drawer/Drawer.stories.tsx +44 -0
  118. package/src/components/Navigation/Drawer/Drawer.styles.ts +75 -0
  119. package/src/components/Navigation/Drawer/Drawer.tsx +108 -0
  120. package/src/components/Navigation/Drawer/DrawerLinkList.styles.ts +66 -0
  121. package/src/components/Navigation/Drawer/DrawerLinkList.tsx +64 -0
  122. package/src/components/Navigation/Drawer/__mocks__/mocks.ts +49 -0
  123. package/src/components/Navigation/Drawer/__tests__/Drawer.test.tsx +175 -0
  124. package/src/components/Navigation/Drawer/__tests__/DrawerLinkList.test.tsx +66 -0
  125. package/src/components/Navigation/Drawer/index.ts +1 -0
  126. package/src/components/Navigation/Drawer/types.ts +8 -0
  127. package/src/components/Navigation/index.ts +1 -0
  128. package/src/components/Wizard/Wizard.stories.tsx +180 -0
  129. package/src/components/Wizard/Wizard.styles.ts +72 -0
  130. package/src/components/Wizard/Wizard.tsx +212 -0
  131. package/src/components/Wizard/index.ts +2 -0
  132. package/src/components/WizardWithSidebar/WizardWithSidebar.stories.tsx +143 -0
  133. package/src/components/WizardWithSidebar/WizardWithSidebar.styles.ts +123 -0
  134. package/src/components/WizardWithSidebar/WizardWithSidebar.tsx +261 -0
  135. package/src/components/WizardWithSidebar/index.ts +2 -0
  136. package/src/components/buttons/IconButton/IconButton.styles.ts +31 -0
  137. package/src/components/buttons/IconButton/IconButton.tsx +8 -6
  138. package/src/components/buttons/types.ts +2 -1
  139. package/src/components/index.ts +6 -0
  140. package/src/components/inputs/SearchInput/SearchInput.styles.ts +27 -41
  141. package/src/components/inputs/SearchInput/SearchInput.tsx +6 -4
  142. package/src/components/loading-indicators/CirclePulse/CirclePulse.styles.ts +7 -7
  143. package/src/components/loading-indicators/CirclePulse/CirclePulse.tsx +3 -3
  144. package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.tsx +23 -0
  145. package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.ts +81 -0
  146. package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.tsx +61 -0
  147. package/src/components/loading-indicators/LoadingIndicator/index.ts +1 -0
  148. package/src/components/loading-indicators/index.ts +1 -0
  149. package/src/components/modals/ConfirmModal/ConfirmModal.stories.tsx +76 -0
  150. package/src/components/modals/ConfirmModal/ConfirmModal.styles.ts +30 -0
  151. package/src/components/modals/ConfirmModal/ConfirmModal.tsx +84 -0
  152. package/src/components/modals/ConfirmModal/index.ts +1 -0
  153. package/src/components/modals/ModalBase/ModalBase.stories.tsx +47 -0
  154. package/src/components/modals/ModalBase/ModalBase.styles.tsx +73 -0
  155. package/src/components/modals/ModalBase/ModalBase.tsx +72 -0
  156. package/src/components/modals/ModalBase/index.ts +2 -0
  157. package/src/components/modals/index.ts +2 -0
  158. package/src/index.ts +9 -0
  159. package/src/setupTests.ts +4 -0
  160. package/src/tokens/colors.ts +7 -0
  161. package/src/tokens/typography.ts +7 -1
  162. package/src/types.ts +8 -0
  163. package/tsconfig.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.