@bethinkpl/design-system 40.1.0 → 41.0.1

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 (68) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +7004 -6905
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +2 -9
  5. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +2 -36
  6. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +1 -1
  7. package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +2 -2
  8. package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.d.ts +17 -0
  9. package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue.d.ts +27 -0
  10. package/dist/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue.d.ts +13 -0
  11. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -2
  12. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +3 -12
  13. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +1 -1
  14. package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +6 -2
  15. package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +6 -2
  16. package/dist/lib/js/components/Stepper/Stepper.vue.d.ts +23 -0
  17. package/dist/lib/js/components/Stepper/index.d.ts +3 -0
  18. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +2 -36
  19. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +2 -36
  20. package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +0 -3
  21. package/dist/lib/js/components/Tile/Tile.vue.d.ts +1 -1
  22. package/dist/lib/js/components/Toast/Toast.vue.d.ts +2 -36
  23. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -1
  24. package/dist/lib/js/components/TopNav/TopNav/TopNav.vue.d.ts +17 -0
  25. package/dist/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue.d.ts +33 -0
  26. package/dist/lib/js/components/TopNav/topNavStoryLogo.d.ts +1 -0
  27. package/dist/lib/js/index.d.ts +6 -5
  28. package/lib/js/components/Cards/Card/Card.spec.ts +50 -0
  29. package/lib/js/components/Cards/Card/Card.stories.ts +5 -0
  30. package/lib/js/components/Cards/Card/Card.vue +14 -11
  31. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.ts +20 -0
  32. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.spec.ts +125 -0
  33. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.stories.ts +69 -0
  34. package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue +101 -0
  35. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.spec.ts +24 -0
  36. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.stories.ts +31 -0
  37. package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue +19 -0
  38. package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.stories.ts +93 -8
  39. package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +3 -0
  40. package/lib/js/components/RichList/RichListItem/RichListItem.stories.ts +83 -0
  41. package/lib/js/components/RichList/RichListItem/RichListItem.vue +11 -4
  42. package/lib/js/components/SelectList/SelectListItem/SelectListItem.stories.ts +7 -0
  43. package/lib/js/components/SelectList/SelectListItem/SelectListItem.vue +9 -3
  44. package/lib/js/components/Stepper/Stepper.spec.ts +99 -0
  45. package/lib/js/components/Stepper/Stepper.stories.ts +62 -0
  46. package/lib/js/components/Stepper/Stepper.vue +97 -0
  47. package/lib/js/components/Stepper/index.ts +3 -0
  48. package/lib/js/components/TextGroup/TextGroup.vue +0 -5
  49. package/lib/js/components/TopNav/TopNav/TopNav.spec.ts +56 -0
  50. package/lib/js/components/TopNav/TopNav/TopNav.stories.ts +99 -0
  51. package/lib/js/components/TopNav/TopNav/TopNav.vue +79 -0
  52. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.spec.ts +103 -0
  53. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.stories.ts +107 -0
  54. package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue +102 -0
  55. package/lib/js/components/TopNav/topNavStoryLogo.ts +19 -0
  56. package/lib/js/index.ts +6 -5
  57. package/lib/js/styles/Radiuses/Radiuses.stories.ts +44 -0
  58. package/lib/js/styles/Shadows/Shadows.stories.scss +33 -0
  59. package/lib/js/styles/Shadows/Shadows.stories.ts +37 -0
  60. package/package.json +1 -1
  61. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.d.ts +0 -5
  62. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +0 -406
  63. package/dist/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue.d.ts +0 -2
  64. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.ts +0 -7
  65. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.stories.ts +0 -44
  66. package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue +0 -83
  67. package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.stories.ts +0 -31
  68. package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue +0 -21
@@ -1,21 +0,0 @@
1
- <template>
2
- <div class="ds-drawerListItemGroup">
3
- <slot />
4
- </div>
5
- </template>
6
-
7
- <style lang="scss" scoped>
8
- @import '../../../../styles/settings/spacings';
9
-
10
- .ds-drawerListItemGroup {
11
- padding: 0 0 $space-3;
12
- }
13
- </style>
14
-
15
- <script lang="ts">
16
- import { defineComponent } from 'vue';
17
-
18
- export default defineComponent({
19
- name: 'DrawerListItemGroup',
20
- });
21
- </script>