@innovaccer/design-system 2.9.1 → 3.0.0-2

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 (785) hide show
  1. package/.eslintignore +2 -1
  2. package/.github/workflows/next.yml +55 -0
  3. package/{docs/src/components/PropsTable → .storybook/docPage}/generateImports.tsx +3 -6
  4. package/.storybook/docPage/index.tsx +374 -0
  5. package/{docs/src/components/PropsTable → .storybook/docPage}/sandbox.tsx +14 -7
  6. package/.storybook/main.js +15 -14
  7. package/.storybook/preview.js +1 -1
  8. package/CHANGELOG.md +0 -40
  9. package/README.md +0 -6
  10. package/core/components/atoms/button/Button.tsx +2 -1
  11. package/core/components/atoms/checkbox/__stories__/Group.story.tsx +1 -1
  12. package/core/components/atoms/checkbox/__stories__/Nested.story.tsx +0 -2
  13. package/core/components/atoms/dropdown/DropdownList.tsx +29 -56
  14. package/core/components/atoms/popperWrapper/PopperWrapper.tsx +38 -25
  15. package/core/components/atoms/toast/__stories__/WithDescription.story.tsx +1 -3
  16. package/core/components/css-utilities/designTokens/Data.tsx +0 -18
  17. package/core/components/molecules/dialog/__tests__/__snapshots__/Dialog.test.tsx.snap +195 -260
  18. package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +12 -13
  19. package/core/components/molecules/fullscreenModal/__tests__/Fullscreen.test.tsx +5 -2
  20. package/core/components/molecules/fullscreenModal/__tests__/__snapshots__/Fullscreen.test.tsx.snap +96 -126
  21. package/core/components/molecules/modal/Modal.tsx +9 -11
  22. package/core/components/molecules/modal/__tests__/__snapshots__/Modal.test.tsx.snap +180 -240
  23. package/core/components/molecules/popover/Popover.tsx +0 -9
  24. package/core/components/molecules/popover/__tests__/__snapshots__/Popover.test.tsx.snap +8 -8
  25. package/core/components/molecules/sidesheet/Sidesheet.tsx +22 -23
  26. package/core/components/molecules/sidesheet/__tests__/__snapshots__/Sidesheet.test.tsx.snap +30 -40
  27. package/core/components/molecules/tooltip/Tooltip.tsx +1 -20
  28. package/core/components/organisms/dateRangePicker/DateRangePicker.tsx +1 -2
  29. package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +6 -6
  30. package/core/components/organisms/grid/GridBody.tsx +2 -1
  31. package/core/components/organisms/pageHeader/__stories__/variants/withTabs.story.tsx +7 -7
  32. package/core/components/organisms/table/Table.tsx +1 -0
  33. package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +2 -2
  34. package/core/components/organisms/verticalNav/MenuItem.tsx +2 -6
  35. package/core/components/organisms/verticalNav/VerticalNav.tsx +2 -8
  36. package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +1 -162
  37. package/core/utils/docPage/index.tsx +15 -2
  38. package/css/dist/index.css +61 -303
  39. package/css/dist/index.css.map +1 -1
  40. package/css/src/components/avatarGroup.css +9 -0
  41. package/css/src/components/button.css +4 -3
  42. package/css/src/components/calendar.css +0 -1
  43. package/css/src/components/checkbox.css +0 -1
  44. package/css/src/components/chip.css +0 -1
  45. package/css/src/components/dropdown.css +9 -6
  46. package/css/src/components/dropdownButton.css +0 -3
  47. package/css/src/components/fullscreenModal.css +5 -0
  48. package/css/src/components/grid.css +11 -0
  49. package/css/src/components/horizontalNav.css +0 -1
  50. package/css/src/components/input.css +0 -1
  51. package/css/src/components/link.css +0 -1
  52. package/css/src/components/metricInput.css +0 -1
  53. package/css/src/components/overlay.css +11 -0
  54. package/css/src/components/popover.css +0 -12
  55. package/css/src/components/radio.css +0 -2
  56. package/css/src/components/slider.css +0 -2
  57. package/css/src/components/tabs.css +1 -1
  58. package/css/src/components/textarea.css +11 -0
  59. package/css/src/components/tooltip.css +0 -115
  60. package/css/src/components/verticalNav.css +0 -3
  61. package/css/src/core/animation.css +0 -8
  62. package/css/src/core/utilities.css +0 -11
  63. package/css/src/variables/index.css +0 -19
  64. package/dist/index.esm.js +217 -20104
  65. package/dist/index.js +114 -14754
  66. package/dist/index.js.map +1 -1
  67. package/dist/index.umd.js +1 -1
  68. package/dist/index.umd.js.br +0 -0
  69. package/dist/index.umd.js.gz +0 -0
  70. package/dist/{core → src}/accessibility/utils/index.d.ts +0 -0
  71. package/dist/{core → src}/accessibility/utils/isEnterKey.d.ts +0 -0
  72. package/dist/{core → src}/accessibility/utils/isSpaceKey.d.ts +0 -0
  73. package/dist/{core → src}/accessibility/utils/useAccessibilityProps.d.ts +0 -0
  74. package/dist/{core → src}/common.type.d.ts +0 -5
  75. package/dist/{core/components/atoms → src/components}/_text/index.d.ts +1 -1
  76. package/dist/src/components/avatar/Avatar.d.ts +22 -0
  77. package/dist/{core/components/atoms → src/components}/avatar/index.d.ts +0 -0
  78. package/dist/{core/components/atoms → src/components}/badge/Badge.d.ts +4 -3
  79. package/dist/{core/components/atoms → src/components}/badge/index.d.ts +0 -0
  80. package/dist/{core/components/atoms → src/components}/icon/Icon.d.ts +1 -1
  81. package/dist/{core/components/atoms → src/components}/icon/index.d.ts +0 -0
  82. package/dist/{core/components/atoms → src/components}/pills/Pills.d.ts +4 -3
  83. package/dist/{core/components/atoms → src/components}/pills/index.d.ts +0 -0
  84. package/dist/{core/components/atoms → src/components}/text/Text.d.ts +1 -1
  85. package/dist/{core/components/atoms → src/components}/text/index.d.ts +0 -0
  86. package/dist/src/index.d.ts +7 -0
  87. package/dist/src/index.type.d.ts +2 -0
  88. package/dist/{core → src}/utils/Keys.d.ts +0 -0
  89. package/dist/{core → src}/utils/OverlayManager.d.ts +0 -0
  90. package/dist/{core → src}/utils/css.d.ts +0 -0
  91. package/dist/src/utils/index.d.ts +1 -0
  92. package/dist/{core → src}/utils/navigationHelper.d.ts +2 -6
  93. package/dist/{core → src}/utils/overlayHelper.d.ts +0 -1
  94. package/dist/{core → src}/utils/storybookEventEmitter.d.ts +0 -0
  95. package/dist/{core → src}/utils/testHelper.d.ts +0 -0
  96. package/dist/{core → src}/utils/types.d.ts +0 -1
  97. package/dist/{core → src}/utils/uidGenerator.d.ts +0 -0
  98. package/dist/src/utils/validators.d.ts +1 -0
  99. package/dist/static/logo.png +0 -0
  100. package/docs/AppTutorial.md +474 -0
  101. package/docs/images/BasicLayout.png +0 -0
  102. package/docs/images/Breadcrumb.png +0 -0
  103. package/docs/images/Covid-App.png +0 -0
  104. package/docs/images/DrilledLayout.png +0 -0
  105. package/docs/images/DrilledPage.png +0 -0
  106. package/docs/images/Footer.png +0 -0
  107. package/docs/images/Graph1.png +0 -0
  108. package/docs/images/Graph2.png +0 -0
  109. package/docs/images/Header.png +0 -0
  110. package/docs/images/Map.png +0 -0
  111. package/docs/images/StaticComponent.png +0 -0
  112. package/docs/images/Summary.png +0 -0
  113. package/docs/images/Table.png +0 -0
  114. package/dts.config.js +18 -18
  115. package/jest.config.js +11 -10
  116. package/package.json +10 -9
  117. package/rollup.config.js +7 -7
  118. package/scripts/setupTest.ts +4 -7
  119. package/scripts/version.sh +4 -4
  120. package/src/accessibility/utils/index.ts +5 -0
  121. package/src/accessibility/utils/isEnterKey.ts +5 -0
  122. package/src/accessibility/utils/isSpaceKey.ts +5 -0
  123. package/src/accessibility/utils/useAccessibilityProps.ts +57 -0
  124. package/src/common.type.tsx +22 -0
  125. package/src/components/_text/__tests__/Text.test.tsx +10 -0
  126. package/src/components/_text/__tests__/__snapshots__/Text.test.tsx.snap +11 -0
  127. package/src/components/_text/index.tsx +13 -0
  128. package/src/components/avatar/Avatar.tsx +123 -0
  129. package/src/components/avatar/__stories__/index.story.jsx +128 -0
  130. package/src/components/avatar/__tests__/Avatar.test.tsx +105 -0
  131. package/src/components/avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +911 -0
  132. package/src/components/avatar/index.tsx +2 -0
  133. package/src/components/badge/Badge.tsx +51 -0
  134. package/src/components/badge/__tests__/Badge.test.tsx +90 -0
  135. package/src/components/badge/__tests__/__snapshots__/Badge.test.tsx.snap +257 -0
  136. package/src/components/badge/_stories_/index.story.jsx +87 -0
  137. package/src/components/badge/index.tsx +2 -0
  138. package/src/components/icon/Icon.tsx +133 -0
  139. package/src/components/icon/__stories__/index.story.tsx +42 -0
  140. package/src/components/icon/__stories__/variants/Appearance.story.tsx +75 -0
  141. package/src/components/icon/__stories__/variants/Image.story.tsx +27 -0
  142. package/src/components/icon/__stories__/variants/Type.story.tsx +37 -0
  143. package/src/components/icon/__tests__/Icon.test.tsx +79 -0
  144. package/src/components/icon/__tests__/__snapshots__/Icon.test.tsx.snap +630 -0
  145. package/src/components/icon/index.tsx +2 -0
  146. package/src/components/pills/Pills.tsx +51 -0
  147. package/src/components/pills/__stories__/index.story.jsx +94 -0
  148. package/src/components/pills/__tests__/Pills.test.tsx +86 -0
  149. package/src/components/pills/__tests__/__snapshots__/Pills.test.tsx.snap +257 -0
  150. package/src/components/pills/index.tsx +2 -0
  151. package/src/components/text/Text.tsx +60 -0
  152. package/src/components/text/__stories__/index.story.tsx +55 -0
  153. package/src/components/text/__stories__/variants/Appearance.story.tsx +30 -0
  154. package/src/components/text/__stories__/variants/Size.story.tsx +31 -0
  155. package/src/components/text/__stories__/variants/Weight.story.tsx +28 -0
  156. package/src/components/text/__tests__/Text.test.tsx +134 -0
  157. package/src/components/text/__tests__/__snapshots__/Text.test.tsx.snap +335 -0
  158. package/src/components/text/index.tsx +2 -0
  159. package/src/global.d.ts +9 -0
  160. package/src/index.tsx +9 -0
  161. package/src/index.type.tsx +2 -0
  162. package/src/utils/Keys.ts +15 -0
  163. package/src/utils/OverlayManager.tsx +45 -0
  164. package/src/utils/__tests__/TS.test.tsx +95 -0
  165. package/src/utils/__tests__/TimeZone.test.tsx +5 -0
  166. package/src/utils/__tests__/__snapshots__/TS.test.tsx.snap +33 -0
  167. package/src/utils/css.ts +1 -0
  168. package/src/utils/index.tsx +3 -0
  169. package/src/utils/masks.ts +170 -0
  170. package/src/utils/navigationHelper.tsx +53 -0
  171. package/src/utils/overlayHelper.ts +48 -0
  172. package/src/utils/storybookEventEmitter.ts +5 -0
  173. package/src/utils/testHelper.ts +153 -0
  174. package/src/utils/types.tsx +54 -0
  175. package/src/utils/uidGenerator.tsx +12 -0
  176. package/src/utils/validators.ts +94 -0
  177. package/tsconfig.json +2 -2
  178. package/tsconfig.type.json +5 -5
  179. package/.github/workflows/docs_pull_request.yml +0 -20
  180. package/core/components/css-utilities/designTokens/Transitions.story.tsx +0 -37
  181. package/core/components/organisms/verticalNav/__stories__/CustomItemsRenderer.story.tsx +0 -238
  182. package/dist/core/components/atoms/_chip/index.d.ts +0 -17
  183. package/dist/core/components/atoms/avatar/Avatar.d.ts +0 -23
  184. package/dist/core/components/atoms/avatarGroup/AvatarCount.d.ts +0 -2
  185. package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +0 -34
  186. package/dist/core/components/atoms/avatarGroup/AvatarPopperBody.d.ts +0 -2
  187. package/dist/core/components/atoms/avatarGroup/Avatars.d.ts +0 -2
  188. package/dist/core/components/atoms/avatarGroup/index.d.ts +0 -2
  189. package/dist/core/components/atoms/backdrop/Backdrop.d.ts +0 -8
  190. package/dist/core/components/atoms/backdrop/index.d.ts +0 -2
  191. package/dist/core/components/atoms/badge/_stories_/SolidAlert.story.d.ts +0 -19
  192. package/dist/core/components/atoms/badge/_stories_/SolidSecondary.story.d.ts +0 -19
  193. package/dist/core/components/atoms/badge/_stories_/SolidWarning.story.d.ts +0 -19
  194. package/dist/core/components/atoms/badge/_stories_/SubtleAlert.story.d.ts +0 -19
  195. package/dist/core/components/atoms/badge/_stories_/SubtleSecondary.story.d.ts +0 -19
  196. package/dist/core/components/atoms/badge/_stories_/SubtleWarning.story.d.ts +0 -19
  197. package/dist/core/components/atoms/badge/_stories_/Success.story.d.ts +0 -19
  198. package/dist/core/components/atoms/badge/_stories_/index.story.d.ts +0 -12
  199. package/dist/core/components/atoms/badge/_stories_/variants/Appearance.story.d.ts +0 -19
  200. package/dist/core/components/atoms/badge/_stories_/variants/Subtle.story.d.ts +0 -19
  201. package/dist/core/components/atoms/breadcrumbs/Breadcrumbs.d.ts +0 -11
  202. package/dist/core/components/atoms/breadcrumbs/index.d.ts +0 -2
  203. package/dist/core/components/atoms/button/Button.d.ts +0 -27
  204. package/dist/core/components/atoms/button/index.d.ts +0 -2
  205. package/dist/core/components/atoms/caption/Caption.d.ts +0 -13
  206. package/dist/core/components/atoms/caption/index.d.ts +0 -2
  207. package/dist/core/components/atoms/card/Card.d.ts +0 -8
  208. package/dist/core/components/atoms/card/index.d.ts +0 -2
  209. package/dist/core/components/atoms/cardBody/CardBody.d.ts +0 -10
  210. package/dist/core/components/atoms/cardBody/index.d.ts +0 -2
  211. package/dist/core/components/atoms/cardFooter/CardFooter.d.ts +0 -14
  212. package/dist/core/components/atoms/cardFooter/index.d.ts +0 -2
  213. package/dist/core/components/atoms/cardHeader/CardHeader.d.ts +0 -10
  214. package/dist/core/components/atoms/cardHeader/index.d.ts +0 -2
  215. package/dist/core/components/atoms/cardSubdued/CardSubdued.d.ts +0 -8
  216. package/dist/core/components/atoms/cardSubdued/index.d.ts +0 -2
  217. package/dist/core/components/atoms/checkbox/Checkbox.d.ts +0 -19
  218. package/dist/core/components/atoms/checkbox/index.d.ts +0 -2
  219. package/dist/core/components/atoms/chip/Chip.d.ts +0 -22
  220. package/dist/core/components/atoms/chip/index.d.ts +0 -2
  221. package/dist/core/components/atoms/chipGroup/ChipGroup.d.ts +0 -12
  222. package/dist/core/components/atoms/chipGroup/_stories_/index.story.d.ts +0 -9
  223. package/dist/core/components/atoms/chipGroup/index.d.ts +0 -2
  224. package/dist/core/components/atoms/collapsible/Collapsible.d.ts +0 -21
  225. package/dist/core/components/atoms/collapsible/index.d.ts +0 -2
  226. package/dist/core/components/atoms/column/Column.d.ts +0 -13
  227. package/dist/core/components/atoms/column/index.d.ts +0 -2
  228. package/dist/core/components/atoms/divider/Divider.d.ts +0 -15
  229. package/dist/core/components/atoms/divider/index.d.ts +0 -2
  230. package/dist/core/components/atoms/dropdown/Dropdown.d.ts +0 -95
  231. package/dist/core/components/atoms/dropdown/DropdownButton.d.ts +0 -17
  232. package/dist/core/components/atoms/dropdown/DropdownList.d.ts +0 -75
  233. package/dist/core/components/atoms/dropdown/Loading.d.ts +0 -2
  234. package/dist/core/components/atoms/dropdown/index.d.ts +0 -2
  235. package/dist/core/components/atoms/dropdown/option/CheckboxOption.d.ts +0 -3
  236. package/dist/core/components/atoms/dropdown/option/DefaultOption.d.ts +0 -3
  237. package/dist/core/components/atoms/dropdown/option/IconOption.d.ts +0 -3
  238. package/dist/core/components/atoms/dropdown/option/IconWithMetaOption.d.ts +0 -3
  239. package/dist/core/components/atoms/dropdown/option/MetaOption.d.ts +0 -3
  240. package/dist/core/components/atoms/dropdown/option/index.d.ts +0 -46
  241. package/dist/core/components/atoms/dropdown/utility.d.ts +0 -13
  242. package/dist/core/components/atoms/editable/Editable.d.ts +0 -12
  243. package/dist/core/components/atoms/editable/index.d.ts +0 -2
  244. package/dist/core/components/atoms/heading/Heading.d.ts +0 -18
  245. package/dist/core/components/atoms/heading/index.d.ts +0 -2
  246. package/dist/core/components/atoms/input/Input.d.ts +0 -37
  247. package/dist/core/components/atoms/input/index.d.ts +0 -2
  248. package/dist/core/components/atoms/label/Label.d.ts +0 -14
  249. package/dist/core/components/atoms/label/index.d.ts +0 -2
  250. package/dist/core/components/atoms/legend/Legend.d.ts +0 -22
  251. package/dist/core/components/atoms/legend/index.d.ts +0 -2
  252. package/dist/core/components/atoms/link/Link.d.ts +0 -28
  253. package/dist/core/components/atoms/link/index.d.ts +0 -2
  254. package/dist/core/components/atoms/message/Message.d.ts +0 -19
  255. package/dist/core/components/atoms/message/index.d.ts +0 -2
  256. package/dist/core/components/atoms/metaList/Meta.d.ts +0 -12
  257. package/dist/core/components/atoms/metaList/MetaList.d.ts +0 -20
  258. package/dist/core/components/atoms/metaList/_stories_/index.story.d.ts +0 -14
  259. package/dist/core/components/atoms/metaList/index.d.ts +0 -2
  260. package/dist/core/components/atoms/metricInput/MetricInput.d.ts +0 -27
  261. package/dist/core/components/atoms/metricInput/index.d.ts +0 -2
  262. package/dist/core/components/atoms/multiSlider/Handle.d.ts +0 -52
  263. package/dist/core/components/atoms/multiSlider/SliderUtils.d.ts +0 -9
  264. package/dist/core/components/atoms/multiSlider/index.d.ts +0 -68
  265. package/dist/core/components/atoms/outsideClick/OutsideClick.d.ts +0 -8
  266. package/dist/core/components/atoms/outsideClick/index.d.ts +0 -2
  267. package/dist/core/components/atoms/paragraph/Paragraph.d.ts +0 -15
  268. package/dist/core/components/atoms/paragraph/index.d.ts +0 -2
  269. package/dist/core/components/atoms/placeholderImage/PlaceholderImage.d.ts +0 -14
  270. package/dist/core/components/atoms/placeholderImage/index.d.ts +0 -2
  271. package/dist/core/components/atoms/placeholderParagraph/PlaceholderParagraph.d.ts +0 -15
  272. package/dist/core/components/atoms/placeholderParagraph/index.d.ts +0 -2
  273. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +0 -859
  274. package/dist/core/components/atoms/popperWrapper/index.d.ts +0 -2
  275. package/dist/core/components/atoms/progressBar/ProgressBar.d.ts +0 -13
  276. package/dist/core/components/atoms/progressBar/index.d.ts +0 -2
  277. package/dist/core/components/atoms/progressRing/ProgressRing.d.ts +0 -16
  278. package/dist/core/components/atoms/progressRing/index.d.ts +0 -2
  279. package/dist/core/components/atoms/radio/Radio.d.ts +0 -17
  280. package/dist/core/components/atoms/radio/index.d.ts +0 -2
  281. package/dist/core/components/atoms/rangeSlider/RangeSlider.d.ts +0 -21
  282. package/dist/core/components/atoms/rangeSlider/index.d.ts +0 -2
  283. package/dist/core/components/atoms/row/Row.d.ts +0 -5
  284. package/dist/core/components/atoms/row/index.d.ts +0 -2
  285. package/dist/core/components/atoms/slider/Slider.d.ts +0 -20
  286. package/dist/core/components/atoms/slider/index.d.ts +0 -2
  287. package/dist/core/components/atoms/spinner/Spinner.d.ts +0 -16
  288. package/dist/core/components/atoms/spinner/index.d.ts +0 -2
  289. package/dist/core/components/atoms/statusHint/StatusHint.d.ts +0 -18
  290. package/dist/core/components/atoms/statusHint/index.d.ts +0 -2
  291. package/dist/core/components/atoms/subheading/Subheading.d.ts +0 -15
  292. package/dist/core/components/atoms/subheading/index.d.ts +0 -2
  293. package/dist/core/components/atoms/switchInput/Switch.d.ts +0 -18
  294. package/dist/core/components/atoms/switchInput/index.d.ts +0 -2
  295. package/dist/core/components/atoms/textarea/Textarea.d.ts +0 -19
  296. package/dist/core/components/atoms/textarea/index.d.ts +0 -2
  297. package/dist/core/components/atoms/toast/ActionButton.d.ts +0 -15
  298. package/dist/core/components/atoms/toast/Toast.d.ts +0 -22
  299. package/dist/core/components/atoms/toast/index.d.ts +0 -2
  300. package/dist/core/components/css-utilities/Align/Align.story.d.ts +0 -13
  301. package/dist/core/components/css-utilities/Animation/Animation.story.d.ts +0 -13
  302. package/dist/core/components/css-utilities/Background/Background.story.d.ts +0 -13
  303. package/dist/core/components/css-utilities/Border/Border.story.d.ts +0 -13
  304. package/dist/core/components/css-utilities/Display/Display.story.d.ts +0 -13
  305. package/dist/core/components/css-utilities/Flex/Flex.story.d.ts +0 -13
  306. package/dist/core/components/css-utilities/Miscellaneous/Miscellaneous.story.d.ts +0 -13
  307. package/dist/core/components/css-utilities/Overflow/Overflow.story.d.ts +0 -13
  308. package/dist/core/components/css-utilities/Position/Position.story.d.ts +0 -13
  309. package/dist/core/components/css-utilities/Schema.d.ts +0 -3
  310. package/dist/core/components/css-utilities/Sizing/Sizing.story.d.ts +0 -13
  311. package/dist/core/components/css-utilities/Spacing/Data.d.ts +0 -10
  312. package/dist/core/components/css-utilities/Spacing/Schema.d.ts +0 -3
  313. package/dist/core/components/css-utilities/Spacing/Spacing.story.d.ts +0 -13
  314. package/dist/core/components/css-utilities/designTokens/Colors.story.d.ts +0 -12
  315. package/dist/core/components/css-utilities/designTokens/Data.d.ts +0 -53
  316. package/dist/core/components/css-utilities/designTokens/Miscellaneous.story.d.ts +0 -12
  317. package/dist/core/components/css-utilities/designTokens/Schema.d.ts +0 -17
  318. package/dist/core/components/css-utilities/designTokens/Spacing.story.d.ts +0 -12
  319. package/dist/core/components/css-utilities/designTokens/Transitions.story.d.ts +0 -12
  320. package/dist/core/components/css-utilities/designTokens/Typography.story.d.ts +0 -12
  321. package/dist/core/components/css-utilities/designTokens/Utilities.d.ts +0 -1
  322. package/dist/core/components/molecules/Layout/index.story.d.ts +0 -10
  323. package/dist/core/components/molecules/chatMessage/Box.d.ts +0 -16
  324. package/dist/core/components/molecules/chatMessage/ChatMessage.d.ts +0 -21
  325. package/dist/core/components/molecules/chatMessage/MessageText.d.ts +0 -16
  326. package/dist/core/components/molecules/chatMessage/Status.d.ts +0 -14
  327. package/dist/core/components/molecules/chatMessage/index.d.ts +0 -2
  328. package/dist/core/components/molecules/chipInput/ChipInput.d.ts +0 -32
  329. package/dist/core/components/molecules/chipInput/index.d.ts +0 -2
  330. package/dist/core/components/molecules/dialog/Dialog.d.ts +0 -27
  331. package/dist/core/components/molecules/dialog/index.d.ts +0 -2
  332. package/dist/core/components/molecules/dropzone/Dropzone.d.ts +0 -25
  333. package/dist/core/components/molecules/dropzone/DropzoneActive.d.ts +0 -9
  334. package/dist/core/components/molecules/dropzone/DropzoneBase.d.ts +0 -42
  335. package/dist/core/components/molecules/dropzone/DropzoneError.d.ts +0 -10
  336. package/dist/core/components/molecules/dropzone/FileErrors.d.ts +0 -26
  337. package/dist/core/components/molecules/dropzone/FileSelectorUtils.d.ts +0 -11
  338. package/dist/core/components/molecules/dropzone/index.d.ts +0 -2
  339. package/dist/core/components/molecules/dropzone/utils.d.ts +0 -10
  340. package/dist/core/components/molecules/editableChipInput/EditableChipInput.d.ts +0 -17
  341. package/dist/core/components/molecules/editableChipInput/index.d.ts +0 -2
  342. package/dist/core/components/molecules/editableDropdown/EditableDropdown.d.ts +0 -18
  343. package/dist/core/components/molecules/editableDropdown/index.d.ts +0 -2
  344. package/dist/core/components/molecules/editableInput/EditableInput.d.ts +0 -21
  345. package/dist/core/components/molecules/editableInput/index.d.ts +0 -2
  346. package/dist/core/components/molecules/emptyState/EmptyState.d.ts +0 -23
  347. package/dist/core/components/molecules/emptyState/_tests_/EmptyState.test.d.ts +0 -1
  348. package/dist/core/components/molecules/emptyState/index.d.ts +0 -2
  349. package/dist/core/components/molecules/fileList/FileIcon.d.ts +0 -15
  350. package/dist/core/components/molecules/fileList/FileList.d.ts +0 -16
  351. package/dist/core/components/molecules/fileList/FileListItem.d.ts +0 -27
  352. package/dist/core/components/molecules/fileList/index.d.ts +0 -1
  353. package/dist/core/components/molecules/fileUploader/FileUploader.d.ts +0 -21
  354. package/dist/core/components/molecules/fileUploader/FileUploaderButton.d.ts +0 -21
  355. package/dist/core/components/molecules/fileUploader/FileUploaderFormat.d.ts +0 -8
  356. package/dist/core/components/molecules/fileUploader/FileUploaderItem.d.ts +0 -24
  357. package/dist/core/components/molecules/fileUploader/FileUploaderList.d.ts +0 -16
  358. package/dist/core/components/molecules/fileUploader/FileUploaderStatus.d.ts +0 -17
  359. package/dist/core/components/molecules/fileUploader/index.d.ts +0 -2
  360. package/dist/core/components/molecules/fullscreenModal/FullscreenModal.d.ts +0 -36
  361. package/dist/core/components/molecules/fullscreenModal/index.d.ts +0 -2
  362. package/dist/core/components/molecules/inputMask/InputMask.d.ts +0 -24
  363. package/dist/core/components/molecules/inputMask/index.d.ts +0 -2
  364. package/dist/core/components/molecules/inputMask/utilites.d.ts +0 -3
  365. package/dist/core/components/molecules/modal/Modal.d.ts +0 -38
  366. package/dist/core/components/molecules/modal/ModalBody.d.ts +0 -16
  367. package/dist/core/components/molecules/modal/ModalFooter.d.ts +0 -14
  368. package/dist/core/components/molecules/modal/ModalHeader.d.ts +0 -15
  369. package/dist/core/components/molecules/modal/index.d.ts +0 -5
  370. package/dist/core/components/molecules/modalDescription/ModalDescription.d.ts +0 -10
  371. package/dist/core/components/molecules/modalDescription/index.d.ts +0 -2
  372. package/dist/core/components/molecules/overlayBody/OverlayBody.d.ts +0 -14
  373. package/dist/core/components/molecules/overlayBody/index.d.ts +0 -2
  374. package/dist/core/components/molecules/overlayFooter/OverlayFooter.d.ts +0 -13
  375. package/dist/core/components/molecules/overlayFooter/index.d.ts +0 -2
  376. package/dist/core/components/molecules/overlayHeader/OverlayHeader.d.ts +0 -17
  377. package/dist/core/components/molecules/overlayHeader/index.d.ts +0 -2
  378. package/dist/core/components/molecules/pagination/Pagination.d.ts +0 -18
  379. package/dist/core/components/molecules/pagination/index.d.ts +0 -2
  380. package/dist/core/components/molecules/placeholder/Placeholder.d.ts +0 -19
  381. package/dist/core/components/molecules/placeholder/index.d.ts +0 -2
  382. package/dist/core/components/molecules/popover/Popover.d.ts +0 -39
  383. package/dist/core/components/molecules/popover/index.d.ts +0 -2
  384. package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +0 -42
  385. package/dist/core/components/molecules/sidesheet/index.d.ts +0 -2
  386. package/dist/core/components/molecules/stepper/Step.d.ts +0 -14
  387. package/dist/core/components/molecules/stepper/Stepper.d.ts +0 -23
  388. package/dist/core/components/molecules/stepper/index.d.ts +0 -2
  389. package/dist/core/components/molecules/tabs/Tab.d.ts +0 -13
  390. package/dist/core/components/molecules/tabs/Tabs.d.ts +0 -24
  391. package/dist/core/components/molecules/tabs/TabsWrapper.d.ts +0 -12
  392. package/dist/core/components/molecules/tabs/index.d.ts +0 -3
  393. package/dist/core/components/molecules/tooltip/Tooltip.d.ts +0 -15
  394. package/dist/core/components/molecules/tooltip/index.d.ts +0 -2
  395. package/dist/core/components/molecules/verificationCodeInput/VerificationCodeInput.d.ts +0 -13
  396. package/dist/core/components/molecules/verificationCodeInput/index.d.ts +0 -2
  397. package/dist/core/components/organisms/calendar/Calendar.d.ts +0 -102
  398. package/dist/core/components/organisms/calendar/config.d.ts +0 -13
  399. package/dist/core/components/organisms/calendar/index.d.ts +0 -4
  400. package/dist/core/components/organisms/calendar/types.d.ts +0 -13
  401. package/dist/core/components/organisms/calendar/utility.d.ts +0 -14
  402. package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +0 -32
  403. package/dist/core/components/organisms/choiceList/index.d.ts +0 -2
  404. package/dist/core/components/organisms/datePicker/DatePicker.d.ts +0 -48
  405. package/dist/core/components/organisms/datePicker/Trigger.d.ts +0 -10
  406. package/dist/core/components/organisms/datePicker/index.d.ts +0 -2
  407. package/dist/core/components/organisms/dateRangePicker/DateRangePicker.d.ts +0 -104
  408. package/dist/core/components/organisms/dateRangePicker/SingleInputTrigger.d.ts +0 -10
  409. package/dist/core/components/organisms/dateRangePicker/Trigger.d.ts +0 -11
  410. package/dist/core/components/organisms/dateRangePicker/index.d.ts +0 -2
  411. package/dist/core/components/organisms/dateRangePicker/utilities.d.ts +0 -22
  412. package/dist/core/components/organisms/grid/Cell.d.ts +0 -25
  413. package/dist/core/components/organisms/grid/Grid.d.ts +0 -139
  414. package/dist/core/components/organisms/grid/GridBody.d.ts +0 -9
  415. package/dist/core/components/organisms/grid/GridCell.d.ts +0 -27
  416. package/dist/core/components/organisms/grid/GridContext.d.ts +0 -9
  417. package/dist/core/components/organisms/grid/GridHead.d.ts +0 -12
  418. package/dist/core/components/organisms/grid/GridNestedRow.d.ts +0 -15
  419. package/dist/core/components/organisms/grid/GridRow.d.ts +0 -16
  420. package/dist/core/components/organisms/grid/columnUtility.d.ts +0 -26
  421. package/dist/core/components/organisms/grid/defaultProps.d.ts +0 -3
  422. package/dist/core/components/organisms/grid/index.d.ts +0 -2
  423. package/dist/core/components/organisms/grid/rowUtility.d.ts +0 -9
  424. package/dist/core/components/organisms/grid/utility.d.ts +0 -13
  425. package/dist/core/components/organisms/horizontalNav/HorizontalNav.d.ts +0 -6
  426. package/dist/core/components/organisms/horizontalNav/index.d.ts +0 -2
  427. package/dist/core/components/organisms/inlineMessage/InlineMessage.d.ts +0 -15
  428. package/dist/core/components/organisms/inlineMessage/index.d.ts +0 -1
  429. package/dist/core/components/organisms/list/List.d.ts +0 -33
  430. package/dist/core/components/organisms/list/index.d.ts +0 -2
  431. package/dist/core/components/organisms/navigation/Navigation.d.ts +0 -28
  432. package/dist/core/components/organisms/navigation/VerticalNavigation.d.ts +0 -22
  433. package/dist/core/components/organisms/navigation/index.d.ts +0 -2
  434. package/dist/core/components/organisms/pageHeader/PageHeader.d.ts +0 -24
  435. package/dist/core/components/organisms/pageHeader/index.d.ts +0 -2
  436. package/dist/core/components/organisms/table/DraggableDropdown.d.ts +0 -7
  437. package/dist/core/components/organisms/table/Header.d.ts +0 -41
  438. package/dist/core/components/organisms/table/Table.d.ts +0 -128
  439. package/dist/core/components/organisms/table/index.d.ts +0 -2
  440. package/dist/core/components/organisms/timePicker/TimePicker.d.ts +0 -24
  441. package/dist/core/components/organisms/timePicker/index.d.ts +0 -2
  442. package/dist/core/components/organisms/timePicker/utils.d.ts +0 -13
  443. package/dist/core/components/organisms/verticalNav/MenuItem.d.ts +0 -20
  444. package/dist/core/components/organisms/verticalNav/VerticalNav.d.ts +0 -21
  445. package/dist/core/components/organisms/verticalNav/index.d.ts +0 -2
  446. package/dist/core/components/patterns/datePicker/dateAndTimePicker.story.d.ts +0 -14
  447. package/dist/core/components/patterns/datePicker/datePickerWithPresets.story.d.ts +0 -15
  448. package/dist/core/components/patterns/dateRangePicker/withCustomPopover.story.d.ts +0 -24
  449. package/dist/core/components/patterns/forms/CreatePassword.story.d.ts +0 -14
  450. package/dist/core/components/patterns/forms/CreateUser.story.d.ts +0 -14
  451. package/dist/core/components/patterns/forms/InlineForm.story.d.ts +0 -14
  452. package/dist/core/components/patterns/forms/InlineLabelForm.story.d.ts +0 -14
  453. package/dist/core/components/patterns/forms/StepperForm.story.d.ts +0 -14
  454. package/dist/core/components/patterns/forms/TimePeriodForm.story.d.ts +0 -14
  455. package/dist/core/components/patterns/forms/VerificationCodeInput.story.d.ts +0 -17
  456. package/dist/core/components/patterns/forms/basicForm.story.d.ts +0 -14
  457. package/dist/core/components/patterns/layouts/blankTemplate.story.d.ts +0 -14
  458. package/dist/core/components/patterns/layouts/level1HeaderTemplate.story.d.ts +0 -14
  459. package/dist/core/components/patterns/layouts/miniSidebarTemplate.story.d.ts +0 -14
  460. package/dist/core/components/patterns/layouts/narrowWidthContentTemplate.story.d.ts +0 -14
  461. package/dist/core/components/patterns/layouts/resourceTableTemplate.story.d.ts +0 -14
  462. package/dist/core/components/patterns/layouts/sidebarTemplate.story.d.ts +0 -14
  463. package/dist/core/components/patterns/verticalNavigation/sideNav.story.d.ts +0 -14
  464. package/dist/core/index.d.ts +0 -84
  465. package/dist/core/index.type.d.ts +0 -82
  466. package/dist/core/utils/docPage/generateImports.d.ts +0 -2
  467. package/dist/core/utils/docPage/index.d.ts +0 -9
  468. package/dist/core/utils/docPage/sandbox.d.ts +0 -2
  469. package/dist/core/utils/index.d.ts +0 -3
  470. package/dist/core/utils/masks.d.ts +0 -9
  471. package/dist/core/utils/validators.d.ts +0 -4
  472. package/docs/.eslintrc.json +0 -1
  473. package/docs/.unotes/templates/title_date.hbs +0 -4
  474. package/docs/.unotes/unotes_meta.json +0 -302
  475. package/docs/LICENSE +0 -21
  476. package/docs/README.md +0 -31
  477. package/docs/gatsby-browser.js +0 -6
  478. package/docs/gatsby-config.js +0 -171
  479. package/docs/gatsby-node.js +0 -75
  480. package/docs/index.js +0 -1
  481. package/docs/package.json +0 -54
  482. package/docs/src/components/Colors/Colors.css +0 -19
  483. package/docs/src/components/Colors/Colors.js +0 -82
  484. package/docs/src/components/Container/ComponentsContainer.js +0 -75
  485. package/docs/src/components/Container/Container.js +0 -114
  486. package/docs/src/components/Container/index.js +0 -3
  487. package/docs/src/components/Footer/Footer.css +0 -7
  488. package/docs/src/components/Footer/Footer.js +0 -40
  489. package/docs/src/components/Header/Header.css +0 -32
  490. package/docs/src/components/Header/Header.js +0 -58
  491. package/docs/src/components/Header/index.js +0 -3
  492. package/docs/src/components/LastModifiedDate/LastModifiedDate.js +0 -24
  493. package/docs/src/components/LastModifiedDate/index.js +0 -3
  494. package/docs/src/components/Layout.js +0 -286
  495. package/docs/src/components/LeftNav/LeftNav.js +0 -101
  496. package/docs/src/components/LeftNav/index.js +0 -3
  497. package/docs/src/components/Logos/Logos.css +0 -29
  498. package/docs/src/components/Logos/Logos.js +0 -64
  499. package/docs/src/components/Meta.js +0 -104
  500. package/docs/src/components/PropsTable/ArgJsDoc.tsx +0 -102
  501. package/docs/src/components/PropsTable/ArgRow.tsx +0 -142
  502. package/docs/src/components/PropsTable/ArgValue.tsx +0 -182
  503. package/docs/src/components/PropsTable/EmptyBlock.tsx +0 -22
  504. package/docs/src/components/PropsTable/SectionRow.tsx +0 -126
  505. package/docs/src/components/PropsTable/Shared.tsx +0 -53
  506. package/docs/src/components/PropsTable/Table.tsx +0 -463
  507. package/docs/src/components/PropsTable/card.css +0 -7
  508. package/docs/src/components/PropsTable/index.js +0 -248
  509. package/docs/src/components/PropsTable/prism.css +0 -146
  510. package/docs/src/components/PropsTable/theme.js +0 -53
  511. package/docs/src/components/PropsTable/types.tsx +0 -44
  512. package/docs/src/components/Rules/DONTs.js +0 -13
  513. package/docs/src/components/Rules/DOs.js +0 -13
  514. package/docs/src/components/Rules/IconWrapper.js +0 -18
  515. package/docs/src/components/Rules/InlineMessage.js +0 -11
  516. package/docs/src/components/Rules/Rules.css +0 -17
  517. package/docs/src/components/Rules/Rules.js +0 -39
  518. package/docs/src/components/TableOfContent/TableOfContent.css +0 -37
  519. package/docs/src/components/TableOfContent/TableOfContent.js +0 -126
  520. package/docs/src/components/css/global.css +0 -15
  521. package/docs/src/components/css/prism.css +0 -38
  522. package/docs/src/components/css/style.css +0 -101
  523. package/docs/src/components/templates/Default.js +0 -23
  524. package/docs/src/components/templates/Homepage.js +0 -13
  525. package/docs/src/data/components/images/Avatars.png +0 -0
  526. package/docs/src/data/components/images/Datepicker.png +0 -0
  527. package/docs/src/data/components/images/EditableChipInput.png +0 -0
  528. package/docs/src/data/components/images/Modal.png +0 -0
  529. package/docs/src/data/components/images/Sidesheet.png +0 -0
  530. package/docs/src/data/components/images/Table.png +0 -0
  531. package/docs/src/data/components/index.js +0 -285
  532. package/docs/src/data/footer-items.yaml +0 -16
  533. package/docs/src/data/header-items.yaml +0 -20
  534. package/docs/src/data/home-menu.yaml +0 -23
  535. package/docs/src/data/home-resources.yaml +0 -14
  536. package/docs/src/data/nav/components.yaml +0 -45
  537. package/docs/src/data/nav/content.yaml +0 -25
  538. package/docs/src/data/nav/default.yaml +0 -11
  539. package/docs/src/data/nav/foundations.yaml +0 -22
  540. package/docs/src/data/nav/guide-items.yaml +0 -6
  541. package/docs/src/data/nav/introduction.yaml +0 -11
  542. package/docs/src/data/storybook.json +0 -345189
  543. package/docs/src/pages/404.js +0 -31
  544. package/docs/src/pages/components/avatar/code.mdx +0 -13
  545. package/docs/src/pages/components/avatar/images/avatar-1.png +0 -0
  546. package/docs/src/pages/components/avatar/images/avatar-2.png +0 -0
  547. package/docs/src/pages/components/avatar/images/avatar-3.png +0 -0
  548. package/docs/src/pages/components/avatar/images/avatar-4.png +0 -0
  549. package/docs/src/pages/components/avatar/images/avatar-5.png +0 -0
  550. package/docs/src/pages/components/avatar/usage.mdx +0 -52
  551. package/docs/src/pages/components/badges/code.mdx +0 -14
  552. package/docs/src/pages/components/badges/images/badges-1.png +0 -0
  553. package/docs/src/pages/components/badges/images/badges-2.png +0 -0
  554. package/docs/src/pages/components/badges/usage.mdx +0 -42
  555. package/docs/src/pages/components/breadcrumbs/code.mdx +0 -14
  556. package/docs/src/pages/components/breadcrumbs/usage.mdx +0 -29
  557. package/docs/src/pages/components/button/code.mdx +0 -17
  558. package/docs/src/pages/components/button/content.mdx +0 -651
  559. package/docs/src/pages/components/button/images/buttons-1.png +0 -0
  560. package/docs/src/pages/components/button/images/buttons-2.png +0 -0
  561. package/docs/src/pages/components/button/usage.mdx +0 -99
  562. package/docs/src/pages/components/calendar/code.mdx +0 -14
  563. package/docs/src/pages/components/calendar/usage.mdx +0 -8
  564. package/docs/src/pages/components/card/code.mdx +0 -14
  565. package/docs/src/pages/components/card/usage.mdx +0 -53
  566. package/docs/src/pages/components/checkbox/code.mdx +0 -15
  567. package/docs/src/pages/components/checkbox/usage.mdx +0 -48
  568. package/docs/src/pages/components/chips/code.mdx +0 -14
  569. package/docs/src/pages/components/chips/usage.mdx +0 -33
  570. package/docs/src/pages/components/datePicker/code.mdx +0 -7
  571. package/docs/src/pages/components/datePicker/images/datePicker-1.png +0 -0
  572. package/docs/src/pages/components/datePicker/images/datePicker-2.png +0 -0
  573. package/docs/src/pages/components/datePicker/images/datePicker-3.png +0 -0
  574. package/docs/src/pages/components/datePicker/images/datePicker-4.png +0 -0
  575. package/docs/src/pages/components/datePicker/images/datePicker-5.png +0 -0
  576. package/docs/src/pages/components/datePicker/usage.mdx +0 -58
  577. package/docs/src/pages/components/index.mdx +0 -6
  578. package/docs/src/pages/components/message/code.mdx +0 -15
  579. package/docs/src/pages/components/message/usage.mdx +0 -25
  580. package/docs/src/pages/components/overview/index.mdx +0 -6
  581. package/docs/src/pages/components/overview/tabs/Overview.js +0 -72
  582. package/docs/src/pages/components/overview/tabs/all-components.mdx +0 -10
  583. package/docs/src/pages/components/overview/tabs/overview.css +0 -29
  584. package/docs/src/pages/components/overview/tabs/status.mdx +0 -22
  585. package/docs/src/pages/components/radio/code.mdx +0 -16
  586. package/docs/src/pages/components/radio/usage.mdx +0 -125
  587. package/docs/src/pages/components/sidesheet/code.mdx +0 -7
  588. package/docs/src/pages/components/sidesheet/interactions.mdx +0 -7
  589. package/docs/src/pages/components/sidesheet/usage.mdx +0 -24
  590. package/docs/src/pages/components/slider/code.mdx +0 -14
  591. package/docs/src/pages/components/slider/usage.mdx +0 -48
  592. package/docs/src/pages/components/statushint/code.mdx +0 -14
  593. package/docs/src/pages/components/statushint/usage.mdx +0 -18
  594. package/docs/src/pages/components/steppers/code.mdx +0 -15
  595. package/docs/src/pages/components/steppers/images/stepper-1.gif +0 -0
  596. package/docs/src/pages/components/steppers/images/stepper-2.png +0 -0
  597. package/docs/src/pages/components/steppers/images/stepper-3.png +0 -0
  598. package/docs/src/pages/components/steppers/images/stepper-4.png +0 -0
  599. package/docs/src/pages/components/steppers/images/stepper-5.png +0 -0
  600. package/docs/src/pages/components/steppers/images/stepper-6.png +0 -0
  601. package/docs/src/pages/components/steppers/interactions.mdx +0 -27
  602. package/docs/src/pages/components/steppers/usage.mdx +0 -200
  603. package/docs/src/pages/components/switch/code.mdx +0 -15
  604. package/docs/src/pages/components/switch/images/switch-1.gif +0 -0
  605. package/docs/src/pages/components/switch/images/switch-2.gif +0 -0
  606. package/docs/src/pages/components/switch/images/switch-3.png +0 -0
  607. package/docs/src/pages/components/switch/interactions.mdx +0 -391
  608. package/docs/src/pages/components/switch/usage.mdx +0 -113
  609. package/docs/src/pages/components/table/code.mdx +0 -13
  610. package/docs/src/pages/components/table/images/table-1.png +0 -0
  611. package/docs/src/pages/components/table/images/table-10.png +0 -0
  612. package/docs/src/pages/components/table/images/table-11.gif +0 -0
  613. package/docs/src/pages/components/table/images/table-12.png +0 -0
  614. package/docs/src/pages/components/table/images/table-13.png +0 -0
  615. package/docs/src/pages/components/table/images/table-14.png +0 -0
  616. package/docs/src/pages/components/table/images/table-15.png +0 -0
  617. package/docs/src/pages/components/table/images/table-16.png +0 -0
  618. package/docs/src/pages/components/table/images/table-17.png +0 -0
  619. package/docs/src/pages/components/table/images/table-18.png +0 -0
  620. package/docs/src/pages/components/table/images/table-19.png +0 -0
  621. package/docs/src/pages/components/table/images/table-2.png +0 -0
  622. package/docs/src/pages/components/table/images/table-20.png +0 -0
  623. package/docs/src/pages/components/table/images/table-21.png +0 -0
  624. package/docs/src/pages/components/table/images/table-22.png +0 -0
  625. package/docs/src/pages/components/table/images/table-23.png +0 -0
  626. package/docs/src/pages/components/table/images/table-24.png +0 -0
  627. package/docs/src/pages/components/table/images/table-25.png +0 -0
  628. package/docs/src/pages/components/table/images/table-26.png +0 -0
  629. package/docs/src/pages/components/table/images/table-27.png +0 -0
  630. package/docs/src/pages/components/table/images/table-28.png +0 -0
  631. package/docs/src/pages/components/table/images/table-29.png +0 -0
  632. package/docs/src/pages/components/table/images/table-3.png +0 -0
  633. package/docs/src/pages/components/table/images/table-30.png +0 -0
  634. package/docs/src/pages/components/table/images/table-4.png +0 -0
  635. package/docs/src/pages/components/table/images/table-5.png +0 -0
  636. package/docs/src/pages/components/table/images/table-6.png +0 -0
  637. package/docs/src/pages/components/table/images/table-7.png +0 -0
  638. package/docs/src/pages/components/table/images/table-8.png +0 -0
  639. package/docs/src/pages/components/table/images/table-9.png +0 -0
  640. package/docs/src/pages/components/table/interactions.mdx +0 -96
  641. package/docs/src/pages/components/table/usage.mdx +0 -363
  642. package/docs/src/pages/components/tabs/code.mdx +0 -14
  643. package/docs/src/pages/components/tabs/images/tabs-1.png +0 -0
  644. package/docs/src/pages/components/tabs/images/tabs-2.png +0 -0
  645. package/docs/src/pages/components/tabs/images/tabs-3.png +0 -0
  646. package/docs/src/pages/components/tabs/images/tabs-4.png +0 -0
  647. package/docs/src/pages/components/tabs/images/tabs-5.png +0 -0
  648. package/docs/src/pages/components/tabs/images/tabs-6.png +0 -0
  649. package/docs/src/pages/components/tabs/images/tabs-7.png +0 -0
  650. package/docs/src/pages/components/tabs/interactions.mdx +0 -486
  651. package/docs/src/pages/components/tabs/usage.mdx +0 -163
  652. package/docs/src/pages/components/toast/code.mdx +0 -14
  653. package/docs/src/pages/components/toast/images/toast-1.png +0 -0
  654. package/docs/src/pages/components/toast/images/toast-2.gif +0 -0
  655. package/docs/src/pages/components/toast/images/toast-3.gif +0 -0
  656. package/docs/src/pages/components/toast/images/toast-4.png +0 -0
  657. package/docs/src/pages/components/toast/images/toast-5.gif +0 -0
  658. package/docs/src/pages/components/toast/images/toast-6.gif +0 -0
  659. package/docs/src/pages/components/toast/interactions.mdx +0 -217
  660. package/docs/src/pages/components/toast/usage.mdx +0 -155
  661. package/docs/src/pages/components/tooltip/code.mdx +0 -15
  662. package/docs/src/pages/components/tooltip/images/Tooltip-1.png +0 -0
  663. package/docs/src/pages/components/tooltip/images/tooltip-2.gif +0 -0
  664. package/docs/src/pages/components/tooltip/images/tooltip-3.gif +0 -0
  665. package/docs/src/pages/components/tooltip/interactions.mdx +0 -218
  666. package/docs/src/pages/components/tooltip/usage.mdx +0 -79
  667. package/docs/src/pages/content/button-guidelines/index.mdx +0 -7
  668. package/docs/src/pages/content/button-guidelines/tabs/button-glossary.mdx +0 -144
  669. package/docs/src/pages/content/button-guidelines/tabs/confusing-buttons.mdx +0 -184
  670. package/docs/src/pages/content/email-guidelines.mdx +0 -107
  671. package/docs/src/pages/content/empty-states.mdx +0 -8
  672. package/docs/src/pages/content/error-messages.mdx +0 -165
  673. package/docs/src/pages/content/house-rules/tabs/basics.mdx +0 -236
  674. package/docs/src/pages/content/house-rules/tabs/date,-time-&-numbers.mdx +0 -462
  675. package/docs/src/pages/content/house-rules/tabs/grammer.mdx +0 -744
  676. package/docs/src/pages/content/house-rules/tabs/punctuations.mdx +0 -666
  677. package/docs/src/pages/content/placeholder-text.mdx +0 -58
  678. package/docs/src/pages/content/rules.mdx +0 -136
  679. package/docs/src/pages/content/voice-and-tone-guidelines/index.mdx +0 -7
  680. package/docs/src/pages/content/voice-and-tone-guidelines/tabs/usage.mdx +0 -309
  681. package/docs/src/pages/content/voice-and-tone-guidelines/tabs/voice-and-tone.mdx +0 -38
  682. package/docs/src/pages/contributions.mdx +0 -16
  683. package/docs/src/pages/foundations/colors.mdx +0 -149
  684. package/docs/src/pages/foundations/interactions.mdx +0 -192
  685. package/docs/src/pages/foundations/layout/images/baseline-grid.png +0 -0
  686. package/docs/src/pages/foundations/layout/images/grid-column.jpeg +0 -0
  687. package/docs/src/pages/foundations/layout/images/grid-layout.jpeg +0 -0
  688. package/docs/src/pages/foundations/layout/images/grid-margin.jpeg +0 -0
  689. package/docs/src/pages/foundations/layout/images/spacing.png +0 -0
  690. package/docs/src/pages/foundations/layout/images/typography.png +0 -0
  691. package/docs/src/pages/foundations/layout/index.mdx +0 -151
  692. package/docs/src/pages/foundations/logos.mdx +0 -88
  693. package/docs/src/pages/foundations/principles.mdx +0 -60
  694. package/docs/src/pages/foundations/response-time.mdx +0 -124
  695. package/docs/src/pages/foundations/typography.mdx +0 -8
  696. package/docs/src/pages/getting-started/index.mdx +0 -9
  697. package/docs/src/pages/guides/MDX.mdx +0 -17
  698. package/docs/src/pages/home/HomeBanner.png +0 -0
  699. package/docs/src/pages/home/homepage.css +0 -23
  700. package/docs/src/pages/index.js +0 -241
  701. package/docs/src/pages/introduction/get-started/designers.mdx +0 -89
  702. package/docs/src/pages/introduction/get-started/developers.mdx +0 -128
  703. package/docs/src/pages/introduction/what's-new.mdx +0 -801
  704. package/docs/src/pages/mobile/components/avatar/code.mdx +0 -12
  705. package/docs/src/pages/mobile/components/avatar/usage.mdx +0 -20
  706. package/docs/src/pages/mobile/components/badges/code.mdx +0 -16
  707. package/docs/src/pages/mobile/components/badges/usage.mdx +0 -23
  708. package/docs/src/pages/mobile/components/breadcrumbs/code.mdx +0 -16
  709. package/docs/src/pages/mobile/components/breadcrumbs/usage.mdx +0 -34
  710. package/docs/src/pages/mobile/components/button/code.mdx +0 -12
  711. package/docs/src/pages/mobile/components/button/content.mdx +0 -1
  712. package/docs/src/pages/mobile/components/button/usage.mdx +0 -55
  713. package/docs/src/pages/mobile/components/card/code.mdx +0 -16
  714. package/docs/src/pages/mobile/components/card/usage.mdx +0 -23
  715. package/docs/src/pages/mobile/components/checkbox/code.mdx +0 -16
  716. package/docs/src/pages/mobile/components/checkbox/usage.mdx +0 -49
  717. package/docs/src/pages/mobile/components/index.mdx +0 -7
  718. package/docs/src/pages/mobile/components/message/code.mdx +0 -16
  719. package/docs/src/pages/mobile/components/message/usage.mdx +0 -26
  720. package/docs/src/pages/mobile/components/overview/index.mdx +0 -8
  721. package/docs/src/pages/mobile/components/overview/tabs/all-components.mdx +0 -8
  722. package/docs/src/pages/mobile/components/overview/tabs/status.mdx +0 -115
  723. package/docs/src/pages/mobile/foundations/colors.mdx +0 -149
  724. package/docs/src/pages/mobile/foundations/interactions.mdx +0 -192
  725. package/docs/src/pages/mobile/foundations/layout/images/baseline-grid.png +0 -0
  726. package/docs/src/pages/mobile/foundations/layout/images/grid-column.jpeg +0 -0
  727. package/docs/src/pages/mobile/foundations/layout/images/grid-layout.jpeg +0 -0
  728. package/docs/src/pages/mobile/foundations/layout/images/grid-margin.jpeg +0 -0
  729. package/docs/src/pages/mobile/foundations/layout/images/spacing.png +0 -0
  730. package/docs/src/pages/mobile/foundations/layout/images/typography.png +0 -0
  731. package/docs/src/pages/mobile/foundations/layout/index.mdx +0 -151
  732. package/docs/src/pages/mobile/foundations/logos.mdx +0 -88
  733. package/docs/src/pages/mobile/foundations/principles.mdx +0 -47
  734. package/docs/src/pages/mobile/foundations/response-time.mdx +0 -124
  735. package/docs/src/pages/mobile/foundations/typography.mdx +0 -8
  736. package/docs/src/pages/patterns/index.mdx +0 -7
  737. package/docs/src/pages/resources/index.mdx +0 -7
  738. package/docs/src/util/FooterItems.js +0 -21
  739. package/docs/src/util/Frontmatter.js +0 -33
  740. package/docs/src/util/HeaderItems.js +0 -21
  741. package/docs/src/util/Helpers.js +0 -7
  742. package/docs/src/util/HomeMenu.js +0 -24
  743. package/docs/src/util/HomeResources.js +0 -23
  744. package/docs/src/util/InPageNavItems.js +0 -36
  745. package/docs/src/util/Logos.js +0 -19
  746. package/docs/src/util/MdsChangelog.js +0 -55
  747. package/docs/src/util/MediumBlogs.js +0 -27
  748. package/docs/src/util/NavItems.js +0 -82
  749. package/docs/src/util/StorybookData.js +0 -24
  750. package/docs/src/util/constants.js +0 -7
  751. package/docs/src/util/context/NavContext.js +0 -54
  752. package/docs/src/util/hooks/index.js +0 -1
  753. package/docs/src/util/hooks/useMetadata.js +0 -21
  754. package/docs/src/util/index.js +0 -4
  755. package/docs/static/icons/4691539_codesandbox_icon.svg +0 -1
  756. package/docs/static/icons/card-image.png +0 -0
  757. package/docs/static/icons/favicon_io/android-chrome-192x192.png +0 -0
  758. package/docs/static/icons/favicon_io/android-chrome-512x512.png +0 -0
  759. package/docs/static/icons/favicon_io/apple-touch-icon.png +0 -0
  760. package/docs/static/icons/favicon_io/favicon-16x16.png +0 -0
  761. package/docs/static/icons/favicon_io/favicon-32x32.png +0 -0
  762. package/docs/static/icons/favicon_io/favicon.ico +0 -0
  763. package/docs/static/images/P360.png +0 -0
  764. package/docs/static/images/dap.png +0 -0
  765. package/docs/static/images/default.png +0 -0
  766. package/docs/static/images/designtoken.png +0 -0
  767. package/docs/static/images/figma.png +0 -0
  768. package/docs/static/images/headerLogo.png +0 -0
  769. package/docs/static/images/inacademy.png +0 -0
  770. package/docs/static/images/inapi.png +0 -0
  771. package/docs/static/images/incare.png +0 -0
  772. package/docs/static/images/inconnect.png +0 -0
  773. package/docs/static/images/indata.png +0 -0
  774. package/docs/static/images/ingraph.png +0 -0
  775. package/docs/static/images/innote.png +0 -0
  776. package/docs/static/images/inoffice.png +0 -0
  777. package/docs/static/images/inreport.png +0 -0
  778. package/docs/static/images/storybook.png +0 -0
  779. package/docs/static/images/withoutType.png +0 -0
  780. package/docs/tools/build.sh +0 -6
  781. package/docs/tools/changelog.sh +0 -1
  782. package/docs/tools/changeloghead.md +0 -14
  783. package/docs/tools/develop.sh +0 -5
  784. package/docs/tools/extract.js +0 -52
  785. package/docs/tools/update-mds.sh +0 -3
@@ -0,0 +1,911 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Avatar component
4
+ appearance: "accent1"
5
+ 1`] = `
6
+ Object {
7
+ "asFragment": [Function],
8
+ "baseElement": <body>
9
+ <div>
10
+ <span
11
+ class="Avatar Avatar--regular Avatar--accent1 Avatar--disabled overflow-hidden"
12
+ data-test="DesignSystem-Avatar"
13
+ >
14
+ <i
15
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent1"
16
+ data-test="DesignSystem-Avatar--Icon"
17
+ role="button"
18
+ style="font-size: 16px; width: 16px;"
19
+ >
20
+ person_round
21
+ </i>
22
+ </span>
23
+ </div>
24
+ </body>,
25
+ "container": <div>
26
+ <span
27
+ class="Avatar Avatar--regular Avatar--accent1 Avatar--disabled overflow-hidden"
28
+ data-test="DesignSystem-Avatar"
29
+ >
30
+ <i
31
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent1"
32
+ data-test="DesignSystem-Avatar--Icon"
33
+ role="button"
34
+ style="font-size: 16px; width: 16px;"
35
+ >
36
+ person_round
37
+ </i>
38
+ </span>
39
+ </div>,
40
+ "debug": [Function],
41
+ "findAllByAltText": [Function],
42
+ "findAllByDisplayValue": [Function],
43
+ "findAllByLabelText": [Function],
44
+ "findAllByPlaceholderText": [Function],
45
+ "findAllByRole": [Function],
46
+ "findAllByTestId": [Function],
47
+ "findAllByText": [Function],
48
+ "findAllByTitle": [Function],
49
+ "findByAltText": [Function],
50
+ "findByDisplayValue": [Function],
51
+ "findByLabelText": [Function],
52
+ "findByPlaceholderText": [Function],
53
+ "findByRole": [Function],
54
+ "findByTestId": [Function],
55
+ "findByText": [Function],
56
+ "findByTitle": [Function],
57
+ "getAllByAltText": [Function],
58
+ "getAllByDisplayValue": [Function],
59
+ "getAllByLabelText": [Function],
60
+ "getAllByPlaceholderText": [Function],
61
+ "getAllByRole": [Function],
62
+ "getAllByTestId": [Function],
63
+ "getAllByText": [Function],
64
+ "getAllByTitle": [Function],
65
+ "getByAltText": [Function],
66
+ "getByDisplayValue": [Function],
67
+ "getByLabelText": [Function],
68
+ "getByPlaceholderText": [Function],
69
+ "getByRole": [Function],
70
+ "getByTestId": [Function],
71
+ "getByText": [Function],
72
+ "getByTitle": [Function],
73
+ "queryAllByAltText": [Function],
74
+ "queryAllByDisplayValue": [Function],
75
+ "queryAllByLabelText": [Function],
76
+ "queryAllByPlaceholderText": [Function],
77
+ "queryAllByRole": [Function],
78
+ "queryAllByTestId": [Function],
79
+ "queryAllByText": [Function],
80
+ "queryAllByTitle": [Function],
81
+ "queryByAltText": [Function],
82
+ "queryByDisplayValue": [Function],
83
+ "queryByLabelText": [Function],
84
+ "queryByPlaceholderText": [Function],
85
+ "queryByRole": [Function],
86
+ "queryByTestId": [Function],
87
+ "queryByText": [Function],
88
+ "queryByTitle": [Function],
89
+ "rerender": [Function],
90
+ "unmount": [Function],
91
+ }
92
+ `;
93
+
94
+ exports[`Avatar component
95
+ appearance: "accent2"
96
+ 1`] = `
97
+ Object {
98
+ "asFragment": [Function],
99
+ "baseElement": <body>
100
+ <div>
101
+ <span
102
+ class="Avatar Avatar--regular Avatar--accent2 Avatar--disabled overflow-hidden"
103
+ data-test="DesignSystem-Avatar"
104
+ >
105
+ <i
106
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent2"
107
+ data-test="DesignSystem-Avatar--Icon"
108
+ role="button"
109
+ style="font-size: 16px; width: 16px;"
110
+ >
111
+ person_round
112
+ </i>
113
+ </span>
114
+ </div>
115
+ </body>,
116
+ "container": <div>
117
+ <span
118
+ class="Avatar Avatar--regular Avatar--accent2 Avatar--disabled overflow-hidden"
119
+ data-test="DesignSystem-Avatar"
120
+ >
121
+ <i
122
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent2"
123
+ data-test="DesignSystem-Avatar--Icon"
124
+ role="button"
125
+ style="font-size: 16px; width: 16px;"
126
+ >
127
+ person_round
128
+ </i>
129
+ </span>
130
+ </div>,
131
+ "debug": [Function],
132
+ "findAllByAltText": [Function],
133
+ "findAllByDisplayValue": [Function],
134
+ "findAllByLabelText": [Function],
135
+ "findAllByPlaceholderText": [Function],
136
+ "findAllByRole": [Function],
137
+ "findAllByTestId": [Function],
138
+ "findAllByText": [Function],
139
+ "findAllByTitle": [Function],
140
+ "findByAltText": [Function],
141
+ "findByDisplayValue": [Function],
142
+ "findByLabelText": [Function],
143
+ "findByPlaceholderText": [Function],
144
+ "findByRole": [Function],
145
+ "findByTestId": [Function],
146
+ "findByText": [Function],
147
+ "findByTitle": [Function],
148
+ "getAllByAltText": [Function],
149
+ "getAllByDisplayValue": [Function],
150
+ "getAllByLabelText": [Function],
151
+ "getAllByPlaceholderText": [Function],
152
+ "getAllByRole": [Function],
153
+ "getAllByTestId": [Function],
154
+ "getAllByText": [Function],
155
+ "getAllByTitle": [Function],
156
+ "getByAltText": [Function],
157
+ "getByDisplayValue": [Function],
158
+ "getByLabelText": [Function],
159
+ "getByPlaceholderText": [Function],
160
+ "getByRole": [Function],
161
+ "getByTestId": [Function],
162
+ "getByText": [Function],
163
+ "getByTitle": [Function],
164
+ "queryAllByAltText": [Function],
165
+ "queryAllByDisplayValue": [Function],
166
+ "queryAllByLabelText": [Function],
167
+ "queryAllByPlaceholderText": [Function],
168
+ "queryAllByRole": [Function],
169
+ "queryAllByTestId": [Function],
170
+ "queryAllByText": [Function],
171
+ "queryAllByTitle": [Function],
172
+ "queryByAltText": [Function],
173
+ "queryByDisplayValue": [Function],
174
+ "queryByLabelText": [Function],
175
+ "queryByPlaceholderText": [Function],
176
+ "queryByRole": [Function],
177
+ "queryByTestId": [Function],
178
+ "queryByText": [Function],
179
+ "queryByTitle": [Function],
180
+ "rerender": [Function],
181
+ "unmount": [Function],
182
+ }
183
+ `;
184
+
185
+ exports[`Avatar component
186
+ appearance: "accent3"
187
+ 1`] = `
188
+ Object {
189
+ "asFragment": [Function],
190
+ "baseElement": <body>
191
+ <div>
192
+ <span
193
+ class="Avatar Avatar--regular Avatar--accent3 Avatar--disabled overflow-hidden"
194
+ data-test="DesignSystem-Avatar"
195
+ >
196
+ <i
197
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent3"
198
+ data-test="DesignSystem-Avatar--Icon"
199
+ role="button"
200
+ style="font-size: 16px; width: 16px;"
201
+ >
202
+ person_round
203
+ </i>
204
+ </span>
205
+ </div>
206
+ </body>,
207
+ "container": <div>
208
+ <span
209
+ class="Avatar Avatar--regular Avatar--accent3 Avatar--disabled overflow-hidden"
210
+ data-test="DesignSystem-Avatar"
211
+ >
212
+ <i
213
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent3"
214
+ data-test="DesignSystem-Avatar--Icon"
215
+ role="button"
216
+ style="font-size: 16px; width: 16px;"
217
+ >
218
+ person_round
219
+ </i>
220
+ </span>
221
+ </div>,
222
+ "debug": [Function],
223
+ "findAllByAltText": [Function],
224
+ "findAllByDisplayValue": [Function],
225
+ "findAllByLabelText": [Function],
226
+ "findAllByPlaceholderText": [Function],
227
+ "findAllByRole": [Function],
228
+ "findAllByTestId": [Function],
229
+ "findAllByText": [Function],
230
+ "findAllByTitle": [Function],
231
+ "findByAltText": [Function],
232
+ "findByDisplayValue": [Function],
233
+ "findByLabelText": [Function],
234
+ "findByPlaceholderText": [Function],
235
+ "findByRole": [Function],
236
+ "findByTestId": [Function],
237
+ "findByText": [Function],
238
+ "findByTitle": [Function],
239
+ "getAllByAltText": [Function],
240
+ "getAllByDisplayValue": [Function],
241
+ "getAllByLabelText": [Function],
242
+ "getAllByPlaceholderText": [Function],
243
+ "getAllByRole": [Function],
244
+ "getAllByTestId": [Function],
245
+ "getAllByText": [Function],
246
+ "getAllByTitle": [Function],
247
+ "getByAltText": [Function],
248
+ "getByDisplayValue": [Function],
249
+ "getByLabelText": [Function],
250
+ "getByPlaceholderText": [Function],
251
+ "getByRole": [Function],
252
+ "getByTestId": [Function],
253
+ "getByText": [Function],
254
+ "getByTitle": [Function],
255
+ "queryAllByAltText": [Function],
256
+ "queryAllByDisplayValue": [Function],
257
+ "queryAllByLabelText": [Function],
258
+ "queryAllByPlaceholderText": [Function],
259
+ "queryAllByRole": [Function],
260
+ "queryAllByTestId": [Function],
261
+ "queryAllByText": [Function],
262
+ "queryAllByTitle": [Function],
263
+ "queryByAltText": [Function],
264
+ "queryByDisplayValue": [Function],
265
+ "queryByLabelText": [Function],
266
+ "queryByPlaceholderText": [Function],
267
+ "queryByRole": [Function],
268
+ "queryByTestId": [Function],
269
+ "queryByText": [Function],
270
+ "queryByTitle": [Function],
271
+ "rerender": [Function],
272
+ "unmount": [Function],
273
+ }
274
+ `;
275
+
276
+ exports[`Avatar component
277
+ appearance: "accent4"
278
+ 1`] = `
279
+ Object {
280
+ "asFragment": [Function],
281
+ "baseElement": <body>
282
+ <div>
283
+ <span
284
+ class="Avatar Avatar--regular Avatar--accent4 Avatar--disabled overflow-hidden"
285
+ data-test="DesignSystem-Avatar"
286
+ >
287
+ <i
288
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent4"
289
+ data-test="DesignSystem-Avatar--Icon"
290
+ role="button"
291
+ style="font-size: 16px; width: 16px;"
292
+ >
293
+ person_round
294
+ </i>
295
+ </span>
296
+ </div>
297
+ </body>,
298
+ "container": <div>
299
+ <span
300
+ class="Avatar Avatar--regular Avatar--accent4 Avatar--disabled overflow-hidden"
301
+ data-test="DesignSystem-Avatar"
302
+ >
303
+ <i
304
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--accent4"
305
+ data-test="DesignSystem-Avatar--Icon"
306
+ role="button"
307
+ style="font-size: 16px; width: 16px;"
308
+ >
309
+ person_round
310
+ </i>
311
+ </span>
312
+ </div>,
313
+ "debug": [Function],
314
+ "findAllByAltText": [Function],
315
+ "findAllByDisplayValue": [Function],
316
+ "findAllByLabelText": [Function],
317
+ "findAllByPlaceholderText": [Function],
318
+ "findAllByRole": [Function],
319
+ "findAllByTestId": [Function],
320
+ "findAllByText": [Function],
321
+ "findAllByTitle": [Function],
322
+ "findByAltText": [Function],
323
+ "findByDisplayValue": [Function],
324
+ "findByLabelText": [Function],
325
+ "findByPlaceholderText": [Function],
326
+ "findByRole": [Function],
327
+ "findByTestId": [Function],
328
+ "findByText": [Function],
329
+ "findByTitle": [Function],
330
+ "getAllByAltText": [Function],
331
+ "getAllByDisplayValue": [Function],
332
+ "getAllByLabelText": [Function],
333
+ "getAllByPlaceholderText": [Function],
334
+ "getAllByRole": [Function],
335
+ "getAllByTestId": [Function],
336
+ "getAllByText": [Function],
337
+ "getAllByTitle": [Function],
338
+ "getByAltText": [Function],
339
+ "getByDisplayValue": [Function],
340
+ "getByLabelText": [Function],
341
+ "getByPlaceholderText": [Function],
342
+ "getByRole": [Function],
343
+ "getByTestId": [Function],
344
+ "getByText": [Function],
345
+ "getByTitle": [Function],
346
+ "queryAllByAltText": [Function],
347
+ "queryAllByDisplayValue": [Function],
348
+ "queryAllByLabelText": [Function],
349
+ "queryAllByPlaceholderText": [Function],
350
+ "queryAllByRole": [Function],
351
+ "queryAllByTestId": [Function],
352
+ "queryAllByText": [Function],
353
+ "queryAllByTitle": [Function],
354
+ "queryByAltText": [Function],
355
+ "queryByDisplayValue": [Function],
356
+ "queryByLabelText": [Function],
357
+ "queryByPlaceholderText": [Function],
358
+ "queryByRole": [Function],
359
+ "queryByTestId": [Function],
360
+ "queryByText": [Function],
361
+ "queryByTitle": [Function],
362
+ "rerender": [Function],
363
+ "unmount": [Function],
364
+ }
365
+ `;
366
+
367
+ exports[`Avatar component
368
+ appearance: "alert"
369
+ 1`] = `
370
+ Object {
371
+ "asFragment": [Function],
372
+ "baseElement": <body>
373
+ <div>
374
+ <span
375
+ class="Avatar Avatar--regular Avatar--alert Avatar--disabled overflow-hidden"
376
+ data-test="DesignSystem-Avatar"
377
+ >
378
+ <i
379
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--alert"
380
+ data-test="DesignSystem-Avatar--Icon"
381
+ role="button"
382
+ style="font-size: 16px; width: 16px;"
383
+ >
384
+ person_round
385
+ </i>
386
+ </span>
387
+ </div>
388
+ </body>,
389
+ "container": <div>
390
+ <span
391
+ class="Avatar Avatar--regular Avatar--alert Avatar--disabled overflow-hidden"
392
+ data-test="DesignSystem-Avatar"
393
+ >
394
+ <i
395
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--alert"
396
+ data-test="DesignSystem-Avatar--Icon"
397
+ role="button"
398
+ style="font-size: 16px; width: 16px;"
399
+ >
400
+ person_round
401
+ </i>
402
+ </span>
403
+ </div>,
404
+ "debug": [Function],
405
+ "findAllByAltText": [Function],
406
+ "findAllByDisplayValue": [Function],
407
+ "findAllByLabelText": [Function],
408
+ "findAllByPlaceholderText": [Function],
409
+ "findAllByRole": [Function],
410
+ "findAllByTestId": [Function],
411
+ "findAllByText": [Function],
412
+ "findAllByTitle": [Function],
413
+ "findByAltText": [Function],
414
+ "findByDisplayValue": [Function],
415
+ "findByLabelText": [Function],
416
+ "findByPlaceholderText": [Function],
417
+ "findByRole": [Function],
418
+ "findByTestId": [Function],
419
+ "findByText": [Function],
420
+ "findByTitle": [Function],
421
+ "getAllByAltText": [Function],
422
+ "getAllByDisplayValue": [Function],
423
+ "getAllByLabelText": [Function],
424
+ "getAllByPlaceholderText": [Function],
425
+ "getAllByRole": [Function],
426
+ "getAllByTestId": [Function],
427
+ "getAllByText": [Function],
428
+ "getAllByTitle": [Function],
429
+ "getByAltText": [Function],
430
+ "getByDisplayValue": [Function],
431
+ "getByLabelText": [Function],
432
+ "getByPlaceholderText": [Function],
433
+ "getByRole": [Function],
434
+ "getByTestId": [Function],
435
+ "getByText": [Function],
436
+ "getByTitle": [Function],
437
+ "queryAllByAltText": [Function],
438
+ "queryAllByDisplayValue": [Function],
439
+ "queryAllByLabelText": [Function],
440
+ "queryAllByPlaceholderText": [Function],
441
+ "queryAllByRole": [Function],
442
+ "queryAllByTestId": [Function],
443
+ "queryAllByText": [Function],
444
+ "queryAllByTitle": [Function],
445
+ "queryByAltText": [Function],
446
+ "queryByDisplayValue": [Function],
447
+ "queryByLabelText": [Function],
448
+ "queryByPlaceholderText": [Function],
449
+ "queryByRole": [Function],
450
+ "queryByTestId": [Function],
451
+ "queryByText": [Function],
452
+ "queryByTitle": [Function],
453
+ "rerender": [Function],
454
+ "unmount": [Function],
455
+ }
456
+ `;
457
+
458
+ exports[`Avatar component
459
+ appearance: "primary"
460
+ 1`] = `
461
+ Object {
462
+ "asFragment": [Function],
463
+ "baseElement": <body>
464
+ <div>
465
+ <span
466
+ class="Avatar Avatar--regular Avatar--primary Avatar--disabled overflow-hidden"
467
+ data-test="DesignSystem-Avatar"
468
+ >
469
+ <i
470
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--primary"
471
+ data-test="DesignSystem-Avatar--Icon"
472
+ role="button"
473
+ style="font-size: 16px; width: 16px;"
474
+ >
475
+ person_round
476
+ </i>
477
+ </span>
478
+ </div>
479
+ </body>,
480
+ "container": <div>
481
+ <span
482
+ class="Avatar Avatar--regular Avatar--primary Avatar--disabled overflow-hidden"
483
+ data-test="DesignSystem-Avatar"
484
+ >
485
+ <i
486
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--primary"
487
+ data-test="DesignSystem-Avatar--Icon"
488
+ role="button"
489
+ style="font-size: 16px; width: 16px;"
490
+ >
491
+ person_round
492
+ </i>
493
+ </span>
494
+ </div>,
495
+ "debug": [Function],
496
+ "findAllByAltText": [Function],
497
+ "findAllByDisplayValue": [Function],
498
+ "findAllByLabelText": [Function],
499
+ "findAllByPlaceholderText": [Function],
500
+ "findAllByRole": [Function],
501
+ "findAllByTestId": [Function],
502
+ "findAllByText": [Function],
503
+ "findAllByTitle": [Function],
504
+ "findByAltText": [Function],
505
+ "findByDisplayValue": [Function],
506
+ "findByLabelText": [Function],
507
+ "findByPlaceholderText": [Function],
508
+ "findByRole": [Function],
509
+ "findByTestId": [Function],
510
+ "findByText": [Function],
511
+ "findByTitle": [Function],
512
+ "getAllByAltText": [Function],
513
+ "getAllByDisplayValue": [Function],
514
+ "getAllByLabelText": [Function],
515
+ "getAllByPlaceholderText": [Function],
516
+ "getAllByRole": [Function],
517
+ "getAllByTestId": [Function],
518
+ "getAllByText": [Function],
519
+ "getAllByTitle": [Function],
520
+ "getByAltText": [Function],
521
+ "getByDisplayValue": [Function],
522
+ "getByLabelText": [Function],
523
+ "getByPlaceholderText": [Function],
524
+ "getByRole": [Function],
525
+ "getByTestId": [Function],
526
+ "getByText": [Function],
527
+ "getByTitle": [Function],
528
+ "queryAllByAltText": [Function],
529
+ "queryAllByDisplayValue": [Function],
530
+ "queryAllByLabelText": [Function],
531
+ "queryAllByPlaceholderText": [Function],
532
+ "queryAllByRole": [Function],
533
+ "queryAllByTestId": [Function],
534
+ "queryAllByText": [Function],
535
+ "queryAllByTitle": [Function],
536
+ "queryByAltText": [Function],
537
+ "queryByDisplayValue": [Function],
538
+ "queryByLabelText": [Function],
539
+ "queryByPlaceholderText": [Function],
540
+ "queryByRole": [Function],
541
+ "queryByTestId": [Function],
542
+ "queryByText": [Function],
543
+ "queryByTitle": [Function],
544
+ "rerender": [Function],
545
+ "unmount": [Function],
546
+ }
547
+ `;
548
+
549
+ exports[`Avatar component
550
+ appearance: "success"
551
+ 1`] = `
552
+ Object {
553
+ "asFragment": [Function],
554
+ "baseElement": <body>
555
+ <div>
556
+ <span
557
+ class="Avatar Avatar--regular Avatar--success Avatar--disabled overflow-hidden"
558
+ data-test="DesignSystem-Avatar"
559
+ >
560
+ <i
561
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--success"
562
+ data-test="DesignSystem-Avatar--Icon"
563
+ role="button"
564
+ style="font-size: 16px; width: 16px;"
565
+ >
566
+ person_round
567
+ </i>
568
+ </span>
569
+ </div>
570
+ </body>,
571
+ "container": <div>
572
+ <span
573
+ class="Avatar Avatar--regular Avatar--success Avatar--disabled overflow-hidden"
574
+ data-test="DesignSystem-Avatar"
575
+ >
576
+ <i
577
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--success"
578
+ data-test="DesignSystem-Avatar--Icon"
579
+ role="button"
580
+ style="font-size: 16px; width: 16px;"
581
+ >
582
+ person_round
583
+ </i>
584
+ </span>
585
+ </div>,
586
+ "debug": [Function],
587
+ "findAllByAltText": [Function],
588
+ "findAllByDisplayValue": [Function],
589
+ "findAllByLabelText": [Function],
590
+ "findAllByPlaceholderText": [Function],
591
+ "findAllByRole": [Function],
592
+ "findAllByTestId": [Function],
593
+ "findAllByText": [Function],
594
+ "findAllByTitle": [Function],
595
+ "findByAltText": [Function],
596
+ "findByDisplayValue": [Function],
597
+ "findByLabelText": [Function],
598
+ "findByPlaceholderText": [Function],
599
+ "findByRole": [Function],
600
+ "findByTestId": [Function],
601
+ "findByText": [Function],
602
+ "findByTitle": [Function],
603
+ "getAllByAltText": [Function],
604
+ "getAllByDisplayValue": [Function],
605
+ "getAllByLabelText": [Function],
606
+ "getAllByPlaceholderText": [Function],
607
+ "getAllByRole": [Function],
608
+ "getAllByTestId": [Function],
609
+ "getAllByText": [Function],
610
+ "getAllByTitle": [Function],
611
+ "getByAltText": [Function],
612
+ "getByDisplayValue": [Function],
613
+ "getByLabelText": [Function],
614
+ "getByPlaceholderText": [Function],
615
+ "getByRole": [Function],
616
+ "getByTestId": [Function],
617
+ "getByText": [Function],
618
+ "getByTitle": [Function],
619
+ "queryAllByAltText": [Function],
620
+ "queryAllByDisplayValue": [Function],
621
+ "queryAllByLabelText": [Function],
622
+ "queryAllByPlaceholderText": [Function],
623
+ "queryAllByRole": [Function],
624
+ "queryAllByTestId": [Function],
625
+ "queryAllByText": [Function],
626
+ "queryAllByTitle": [Function],
627
+ "queryByAltText": [Function],
628
+ "queryByDisplayValue": [Function],
629
+ "queryByLabelText": [Function],
630
+ "queryByPlaceholderText": [Function],
631
+ "queryByRole": [Function],
632
+ "queryByTestId": [Function],
633
+ "queryByText": [Function],
634
+ "queryByTitle": [Function],
635
+ "rerender": [Function],
636
+ "unmount": [Function],
637
+ }
638
+ `;
639
+
640
+ exports[`Avatar component
641
+ appearance: "warning"
642
+ 1`] = `
643
+ Object {
644
+ "asFragment": [Function],
645
+ "baseElement": <body>
646
+ <div>
647
+ <span
648
+ class="Avatar Avatar--regular Avatar--warning Avatar--disabled overflow-hidden"
649
+ data-test="DesignSystem-Avatar"
650
+ >
651
+ <i
652
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--warning"
653
+ data-test="DesignSystem-Avatar--Icon"
654
+ role="button"
655
+ style="font-size: 16px; width: 16px;"
656
+ >
657
+ person_round
658
+ </i>
659
+ </span>
660
+ </div>
661
+ </body>,
662
+ "container": <div>
663
+ <span
664
+ class="Avatar Avatar--regular Avatar--warning Avatar--disabled overflow-hidden"
665
+ data-test="DesignSystem-Avatar"
666
+ >
667
+ <i
668
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--warning"
669
+ data-test="DesignSystem-Avatar--Icon"
670
+ role="button"
671
+ style="font-size: 16px; width: 16px;"
672
+ >
673
+ person_round
674
+ </i>
675
+ </span>
676
+ </div>,
677
+ "debug": [Function],
678
+ "findAllByAltText": [Function],
679
+ "findAllByDisplayValue": [Function],
680
+ "findAllByLabelText": [Function],
681
+ "findAllByPlaceholderText": [Function],
682
+ "findAllByRole": [Function],
683
+ "findAllByTestId": [Function],
684
+ "findAllByText": [Function],
685
+ "findAllByTitle": [Function],
686
+ "findByAltText": [Function],
687
+ "findByDisplayValue": [Function],
688
+ "findByLabelText": [Function],
689
+ "findByPlaceholderText": [Function],
690
+ "findByRole": [Function],
691
+ "findByTestId": [Function],
692
+ "findByText": [Function],
693
+ "findByTitle": [Function],
694
+ "getAllByAltText": [Function],
695
+ "getAllByDisplayValue": [Function],
696
+ "getAllByLabelText": [Function],
697
+ "getAllByPlaceholderText": [Function],
698
+ "getAllByRole": [Function],
699
+ "getAllByTestId": [Function],
700
+ "getAllByText": [Function],
701
+ "getAllByTitle": [Function],
702
+ "getByAltText": [Function],
703
+ "getByDisplayValue": [Function],
704
+ "getByLabelText": [Function],
705
+ "getByPlaceholderText": [Function],
706
+ "getByRole": [Function],
707
+ "getByTestId": [Function],
708
+ "getByText": [Function],
709
+ "getByTitle": [Function],
710
+ "queryAllByAltText": [Function],
711
+ "queryAllByDisplayValue": [Function],
712
+ "queryAllByLabelText": [Function],
713
+ "queryAllByPlaceholderText": [Function],
714
+ "queryAllByRole": [Function],
715
+ "queryAllByTestId": [Function],
716
+ "queryAllByText": [Function],
717
+ "queryAllByTitle": [Function],
718
+ "queryByAltText": [Function],
719
+ "queryByDisplayValue": [Function],
720
+ "queryByLabelText": [Function],
721
+ "queryByPlaceholderText": [Function],
722
+ "queryByRole": [Function],
723
+ "queryByTestId": [Function],
724
+ "queryByText": [Function],
725
+ "queryByTitle": [Function],
726
+ "rerender": [Function],
727
+ "unmount": [Function],
728
+ }
729
+ `;
730
+
731
+ exports[`Avatar component
732
+ size: "regular"
733
+ 1`] = `
734
+ Object {
735
+ "asFragment": [Function],
736
+ "baseElement": <body>
737
+ <div>
738
+ <span
739
+ class="Avatar Avatar--regular Avatar--secondary Avatar--disabled overflow-hidden"
740
+ data-test="DesignSystem-Avatar"
741
+ >
742
+ <i
743
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--secondary"
744
+ data-test="DesignSystem-Avatar--Icon"
745
+ role="button"
746
+ style="font-size: 16px; width: 16px;"
747
+ >
748
+ person_round
749
+ </i>
750
+ </span>
751
+ </div>
752
+ </body>,
753
+ "container": <div>
754
+ <span
755
+ class="Avatar Avatar--regular Avatar--secondary Avatar--disabled overflow-hidden"
756
+ data-test="DesignSystem-Avatar"
757
+ >
758
+ <i
759
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--secondary"
760
+ data-test="DesignSystem-Avatar--Icon"
761
+ role="button"
762
+ style="font-size: 16px; width: 16px;"
763
+ >
764
+ person_round
765
+ </i>
766
+ </span>
767
+ </div>,
768
+ "debug": [Function],
769
+ "findAllByAltText": [Function],
770
+ "findAllByDisplayValue": [Function],
771
+ "findAllByLabelText": [Function],
772
+ "findAllByPlaceholderText": [Function],
773
+ "findAllByRole": [Function],
774
+ "findAllByTestId": [Function],
775
+ "findAllByText": [Function],
776
+ "findAllByTitle": [Function],
777
+ "findByAltText": [Function],
778
+ "findByDisplayValue": [Function],
779
+ "findByLabelText": [Function],
780
+ "findByPlaceholderText": [Function],
781
+ "findByRole": [Function],
782
+ "findByTestId": [Function],
783
+ "findByText": [Function],
784
+ "findByTitle": [Function],
785
+ "getAllByAltText": [Function],
786
+ "getAllByDisplayValue": [Function],
787
+ "getAllByLabelText": [Function],
788
+ "getAllByPlaceholderText": [Function],
789
+ "getAllByRole": [Function],
790
+ "getAllByTestId": [Function],
791
+ "getAllByText": [Function],
792
+ "getAllByTitle": [Function],
793
+ "getByAltText": [Function],
794
+ "getByDisplayValue": [Function],
795
+ "getByLabelText": [Function],
796
+ "getByPlaceholderText": [Function],
797
+ "getByRole": [Function],
798
+ "getByTestId": [Function],
799
+ "getByText": [Function],
800
+ "getByTitle": [Function],
801
+ "queryAllByAltText": [Function],
802
+ "queryAllByDisplayValue": [Function],
803
+ "queryAllByLabelText": [Function],
804
+ "queryAllByPlaceholderText": [Function],
805
+ "queryAllByRole": [Function],
806
+ "queryAllByTestId": [Function],
807
+ "queryAllByText": [Function],
808
+ "queryAllByTitle": [Function],
809
+ "queryByAltText": [Function],
810
+ "queryByDisplayValue": [Function],
811
+ "queryByLabelText": [Function],
812
+ "queryByPlaceholderText": [Function],
813
+ "queryByRole": [Function],
814
+ "queryByTestId": [Function],
815
+ "queryByText": [Function],
816
+ "queryByTitle": [Function],
817
+ "rerender": [Function],
818
+ "unmount": [Function],
819
+ }
820
+ `;
821
+
822
+ exports[`Avatar component
823
+ size: "tiny"
824
+ 1`] = `
825
+ Object {
826
+ "asFragment": [Function],
827
+ "baseElement": <body>
828
+ <div>
829
+ <span
830
+ class="Avatar Avatar--tiny Avatar--secondary Avatar--disabled overflow-hidden"
831
+ data-test="DesignSystem-Avatar"
832
+ >
833
+ <i
834
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--secondary"
835
+ data-test="DesignSystem-Avatar--Icon"
836
+ role="button"
837
+ style="font-size: 12px; width: 12px;"
838
+ >
839
+ person_round
840
+ </i>
841
+ </span>
842
+ </div>
843
+ </body>,
844
+ "container": <div>
845
+ <span
846
+ class="Avatar Avatar--tiny Avatar--secondary Avatar--disabled overflow-hidden"
847
+ data-test="DesignSystem-Avatar"
848
+ >
849
+ <i
850
+ class="material-icons material-icons-round Icon Icon--white Avatar-content--secondary"
851
+ data-test="DesignSystem-Avatar--Icon"
852
+ role="button"
853
+ style="font-size: 12px; width: 12px;"
854
+ >
855
+ person_round
856
+ </i>
857
+ </span>
858
+ </div>,
859
+ "debug": [Function],
860
+ "findAllByAltText": [Function],
861
+ "findAllByDisplayValue": [Function],
862
+ "findAllByLabelText": [Function],
863
+ "findAllByPlaceholderText": [Function],
864
+ "findAllByRole": [Function],
865
+ "findAllByTestId": [Function],
866
+ "findAllByText": [Function],
867
+ "findAllByTitle": [Function],
868
+ "findByAltText": [Function],
869
+ "findByDisplayValue": [Function],
870
+ "findByLabelText": [Function],
871
+ "findByPlaceholderText": [Function],
872
+ "findByRole": [Function],
873
+ "findByTestId": [Function],
874
+ "findByText": [Function],
875
+ "findByTitle": [Function],
876
+ "getAllByAltText": [Function],
877
+ "getAllByDisplayValue": [Function],
878
+ "getAllByLabelText": [Function],
879
+ "getAllByPlaceholderText": [Function],
880
+ "getAllByRole": [Function],
881
+ "getAllByTestId": [Function],
882
+ "getAllByText": [Function],
883
+ "getAllByTitle": [Function],
884
+ "getByAltText": [Function],
885
+ "getByDisplayValue": [Function],
886
+ "getByLabelText": [Function],
887
+ "getByPlaceholderText": [Function],
888
+ "getByRole": [Function],
889
+ "getByTestId": [Function],
890
+ "getByText": [Function],
891
+ "getByTitle": [Function],
892
+ "queryAllByAltText": [Function],
893
+ "queryAllByDisplayValue": [Function],
894
+ "queryAllByLabelText": [Function],
895
+ "queryAllByPlaceholderText": [Function],
896
+ "queryAllByRole": [Function],
897
+ "queryAllByTestId": [Function],
898
+ "queryAllByText": [Function],
899
+ "queryAllByTitle": [Function],
900
+ "queryByAltText": [Function],
901
+ "queryByDisplayValue": [Function],
902
+ "queryByLabelText": [Function],
903
+ "queryByPlaceholderText": [Function],
904
+ "queryByRole": [Function],
905
+ "queryByTestId": [Function],
906
+ "queryByText": [Function],
907
+ "queryByTitle": [Function],
908
+ "rerender": [Function],
909
+ "unmount": [Function],
910
+ }
911
+ `;