@bethinkpl/design-system 40.0.1 → 41.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +7456 -7361
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +1 -0
  5. package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +0 -9
  6. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +0 -36
  7. package/dist/lib/js/components/ContainerRibbon/ContainerRibbon.consts.d.ts +1 -0
  8. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +1 -1
  9. package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +2 -2
  10. package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.d.ts +17 -0
  11. package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue.d.ts +27 -0
  12. package/dist/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue.d.ts +13 -0
  13. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -2
  14. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +3 -12
  15. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +1 -1
  16. package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +6 -2
  17. package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +6 -2
  18. package/dist/lib/js/components/Stepper/Stepper.vue.d.ts +23 -0
  19. package/dist/lib/js/components/Stepper/index.d.ts +3 -0
  20. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +0 -36
  21. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +0 -36
  22. package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +0 -3
  23. package/dist/lib/js/components/Tile/Tile.vue.d.ts +1 -1
  24. package/dist/lib/js/components/Toast/Toast.vue.d.ts +0 -36
  25. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -1
  26. package/dist/lib/js/components/TopNav/TopNav/TopNav.vue.d.ts +17 -0
  27. package/dist/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue.d.ts +33 -0
  28. package/dist/lib/js/components/TopNav/topNavStoryLogo.d.ts +1 -0
  29. package/dist/lib/js/components/Well/Well.consts.d.ts +1 -0
  30. package/dist/lib/js/index.d.ts +6 -5
  31. package/lib/js/components/Cards/Card/Card.vue +0 -11
  32. package/lib/js/components/ContainerRibbon/ContainerRibbon.consts.ts +1 -0
  33. package/lib/js/components/ContainerRibbon/ContainerRibbon.spec.ts +9 -6
  34. package/lib/js/components/ContainerRibbon/ContainerRibbon.vue +11 -0
  35. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.ts +20 -0
  36. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.spec.ts +125 -0
  37. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.stories.ts +69 -0
  38. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue +101 -0
  39. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.spec.ts +24 -0
  40. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.stories.ts +31 -0
  41. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue +19 -0
  42. package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.stories.ts +93 -8
  43. package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +3 -0
  44. package/lib/js/components/RichList/RichListItem/RichListItem.stories.ts +83 -0
  45. package/lib/js/components/RichList/RichListItem/RichListItem.vue +11 -4
  46. package/lib/js/components/SelectList/SelectListItem/SelectListItem.stories.ts +7 -0
  47. package/lib/js/components/SelectList/SelectListItem/SelectListItem.vue +9 -3
  48. package/lib/js/components/Stepper/Stepper.spec.ts +99 -0
  49. package/lib/js/components/Stepper/Stepper.stories.ts +62 -0
  50. package/lib/js/components/Stepper/Stepper.vue +97 -0
  51. package/lib/js/components/Stepper/index.ts +3 -0
  52. package/lib/js/components/TextGroup/TextGroup.vue +0 -5
  53. package/lib/js/components/TopNav/TopNav/TopNav.spec.ts +56 -0
  54. package/lib/js/components/TopNav/TopNav/TopNav.stories.ts +99 -0
  55. package/lib/js/components/TopNav/TopNav/TopNav.vue +79 -0
  56. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.spec.ts +103 -0
  57. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.stories.ts +107 -0
  58. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue +102 -0
  59. package/lib/js/components/TopNav/topNavStoryLogo.ts +19 -0
  60. package/lib/js/index.ts +6 -5
  61. package/lib/js/styles/Radiuses/Radiuses.stories.ts +44 -0
  62. package/lib/js/styles/Shadows/Shadows.stories.scss +33 -0
  63. package/lib/js/styles/Shadows/Shadows.stories.ts +37 -0
  64. package/package.json +1 -1
  65. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.d.ts +0 -5
  66. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +0 -406
  67. package/dist/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue.d.ts +0 -2
  68. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.ts +0 -7
  69. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.stories.ts +0 -44
  70. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue +0 -83
  71. package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.stories.ts +0 -31
  72. package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue +0 -21

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.