@bethinkpl/design-system 37.0.6 → 38.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 (51) hide show
  1. package/README.md +1 -2
  2. package/dist/design-system.css +1 -1
  3. package/dist/design-system.js +6454 -6404
  4. package/dist/design-system.js.map +1 -1
  5. package/dist/lib/js/components/Banner/Banner.consts.d.ts +1 -0
  6. package/dist/lib/js/components/Banner/Banner.vue.d.ts +6 -0
  7. package/dist/lib/js/components/Buttons/Button/Button.consts.d.ts +1 -0
  8. package/dist/lib/js/components/Buttons/Button/useMagicGradient.d.ts +5 -0
  9. package/dist/lib/js/components/Buttons/IconButton/IconButton.consts.d.ts +1 -0
  10. package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +5 -2
  11. package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +3 -0
  12. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +5 -0
  13. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +4 -0
  14. package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +4 -0
  15. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +5 -0
  16. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +5 -0
  17. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +4 -0
  18. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +4 -0
  19. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +4 -0
  20. package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +10 -0
  21. package/dist/lib/js/components/Toast/Toast.vue.d.ts +1 -0
  22. package/lib/js/components/Banner/Banner.consts.ts +1 -0
  23. package/lib/js/components/Banner/Banner.spec.ts +15 -0
  24. package/lib/js/components/Banner/Banner.stories.ts +5 -0
  25. package/lib/js/components/Banner/Banner.vue +16 -1
  26. package/lib/js/components/Buttons/Button/Button.consts.ts +1 -0
  27. package/lib/js/components/Buttons/Button/Button.spec.ts +35 -0
  28. package/lib/js/components/Buttons/Button/Button.vue +19 -0
  29. package/lib/js/components/Buttons/Button/useMagicGradient.spec.ts +47 -0
  30. package/lib/js/components/Buttons/Button/useMagicGradient.ts +50 -0
  31. package/lib/js/components/Buttons/IconButton/IconButton.consts.ts +1 -0
  32. package/lib/js/components/Buttons/IconButton/IconButton.spec.ts +107 -0
  33. package/lib/js/components/Buttons/IconButton/IconButton.stories.ts +5 -1
  34. package/lib/js/components/Buttons/IconButton/IconButton.vue +45 -5
  35. package/lib/js/components/DatePickers/DatePicker/DatePicker.vue +5 -0
  36. package/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue +5 -0
  37. package/lib/js/components/Switch/Switch.vue +3 -3
  38. package/lib/styles/components/_buttons.scss +96 -1
  39. package/lib/styles/design-system.scss +9 -3
  40. package/lib/styles/mixins/_scrollbars.scss +6 -2
  41. package/lib/styles/settings/_gradients-variables.scss +34 -0
  42. package/lib/styles/settings/_gradients.scss +4 -0
  43. package/lib/styles/settings/colors/_magic-variables.scss +10 -0
  44. package/lib/styles/settings/colors/_magic.scss +9 -0
  45. package/lib/styles/settings/colors/_raw-bodywork-dark.scss +22 -0
  46. package/lib/styles/settings/colors/_raw-mc-dark.scss +22 -0
  47. package/lib/styles/settings/colors/_raw-wnl-dark.scss +22 -0
  48. package/lib/styles/settings/colors/_raw.json +1 -1
  49. package/lib/styles/settings/colors/_raw.scss +26 -0
  50. package/lib/styles/settings/colors/_tokens-variables-dark.scss +513 -0
  51. package/package.json +1 -1
package/README.md CHANGED
@@ -25,7 +25,6 @@ If you use the review command more than once and the changes are not visible in
25
25
  `?cd=123`
26
26
 
27
27
  ## Releasing
28
- 1. Wait until `Build and Deploy Dist` Github Action finishes
29
- 2. Publish to NPM by triggering the **Publish to NPM** action manually: Actions → Publish to NPM → Run workflow
28
+ Build, deploy Storybook and publish to NPM by triggering the **Publish to NPM** action manually: Actions → Publish to NPM → Run workflow
30
29
 
31
30
  > **Note:** `NPM_TOKEN` must be set in repository secrets. The recommended token type is a [Granular Access Token](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-granular-access-tokens-on-the-website) scoped to this package only. Avoid running `npm publish` locally.