@bethinkpl/design-system 17.1.0 → 18.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.
- package/.github/workflows/build.yml +1 -1
- package/.github/workflows/storybook.yml +1 -1
- package/dist/design-system.umd.js +403 -939
- package/dist/design-system.umd.js.map +1 -1
- package/dist/lib/js/components/Buttons/Button/Button.vue.d.ts +0 -3
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +0 -3
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +0 -3
- package/dist/lib/js/components/Outline/OutlineItem/OutlineItem.vue.d.ts +0 -1
- package/dist/lib/js/components/SurveyToggle/SurveyToggle.vue.d.ts +0 -3
- package/dist/lib/js/components/Tile/Tile.shared.d.ts +52 -0
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +7 -8
- package/dist/lib/js/components/Toggles/CounterToggle/CounterToggle.vue.d.ts +0 -3
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +2 -4
- package/dist/lib/js/index.d.ts +0 -2
- package/docs/{639.2a03ddc2.iframe.bundle.js → 388.5d881a8a.iframe.bundle.js} +2 -2
- package/docs/iframe.html +1 -1
- package/docs/main.f0ac179f.iframe.bundle.js +1 -0
- package/docs/project.json +1 -1
- package/jest.config.js +0 -1
- package/lib/js/components/Buttons/Button/Button.vue +0 -5
- package/lib/js/components/Buttons/IconButton/IconButton.vue +2 -32
- package/lib/js/components/Cards/CardExpandable/CardExpandable.vue +1 -9
- package/lib/js/components/Drawer/DrawerTile/DrawerTile.vue +7 -1
- package/lib/js/components/Outline/OutlineItem/OutlineItem.vue +55 -59
- package/lib/js/components/SelectList/SelectListItem/SelectListItem.vue +0 -10
- package/lib/js/components/SurveyToggle/SurveyToggle.vue +4 -23
- package/lib/js/components/Tile/Tile.shared.ts +63 -0
- package/lib/js/components/Tile/Tile.vue +32 -108
- package/lib/js/components/Toggles/CounterToggle/CounterToggle.vue +3 -26
- package/lib/js/components/Toggles/ToggleButton/ToggleButton.vue +2 -36
- package/lib/js/index.ts +0 -2
- package/lib/js/typings.d.ts +0 -6
- package/lib/styles/components/_buttons.scss +1 -18
- package/lib/styles/settings/_buttons.scss +0 -22
- package/package.json +1 -2
- package/docs/main.38046cab.iframe.bundle.js +0 -1
- package/lib/js/components/Ripple/Ripple.consts.ts +0 -16
- package/lib/js/components/Ripple/Ripple.stories.ts +0 -37
- package/lib/js/components/Ripple/Ripple.vue +0 -98
- package/lib/js/components/Ripple/index.ts +0 -4
- /package/docs/{639.2a03ddc2.iframe.bundle.js.LICENSE.txt → 388.5d881a8a.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
yarn install --pure-lockfile
|
|
21
21
|
yarn build
|
|
22
22
|
- name: Deploy 🚀
|
|
23
|
-
uses: JamesIves/github-pages-deploy-action@
|
|
23
|
+
uses: JamesIves/github-pages-deploy-action@v4
|
|
24
24
|
with:
|
|
25
25
|
branch: master # The branch the action should deploy to.
|
|
26
26
|
folder: dist # The folder that the build script generates files.
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
yarn install --pure-lockfile
|
|
21
21
|
yarn storybook:build
|
|
22
22
|
- name: Deploy 🚀
|
|
23
|
-
uses: JamesIves/github-pages-deploy-action@
|
|
23
|
+
uses: JamesIves/github-pages-deploy-action@v4
|
|
24
24
|
with:
|
|
25
25
|
branch: master # The branch the action should deploy to.
|
|
26
26
|
folder: public/storybook # The folder that the build-storybook script generates files.
|