@magicgol/polyjuice 0.6.0 → 0.6.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 (2) hide show
  1. package/package.json +3 -3
  2. package/src/main.js +3 -0
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
7
7
  "lint": "vue-cli-service lint",
8
8
  "storybook": "start-storybook -p 6006",
9
9
  "build-storybook": "build-storybook",
10
- "chromatic": "npx chromatic --project-token=process.env.CHROMATIC_PROJECT_TOKEN",
11
- "svg": "vsvg -s ./src/svg -t ./src/assets/svg"
10
+ "svg": "vsvg -s ./src/svg -t ./src/assets/svg",
11
+ "chromatic": "npx chromatic --project-token=e18a9d1a4420"
12
12
  },
13
13
  "dependencies": {
14
14
  "@fortawesome/fontawesome-svg-core": "^6.1.1",
package/src/main.js CHANGED
@@ -20,6 +20,9 @@ new Vue({
20
20
 
21
21
  export MgHCard from './components/card/horizontal-card/HCard';
22
22
  export MgVCard from './components/card/vertical-card/VCard';
23
+ export MgPrimaryClubButton from './components/club/button/primary-club-button/PrimaryClubButton';
23
24
  export MgPrimaryButton from './components/form/primary-button/PrimaryButton';
24
25
  export MgSecondaryButton from './components/form/secondary-button/SecondaryButton';
25
26
  export MgTertiaryButton from './components/form/tertiary-button/TertiaryButton';
27
+ export MgToggleButton from './components/form/toggle-button/ToggleButton';
28
+ export MgTabButton from './components/navigation/tab-button/TabButton';