@magicgol/polyjuice 0.9.0 → 0.9.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/package.json +1 -1
- package/src/main.js +8 -1
package/package.json
CHANGED
package/src/main.js
CHANGED
|
@@ -20,13 +20,20 @@ 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
|
+
|
|
23
24
|
export MgPrimaryClubButton from './components/club/button/primary-club-button/PrimaryClubButton';
|
|
24
25
|
export MgSecondaryClubButton from './components/club/button/secondary-club-button/SecondaryClubButton';
|
|
26
|
+
|
|
25
27
|
export MgPrimaryButton from './components/form/button/primary-button/PrimaryButton';
|
|
26
28
|
export MgSecondaryButton from './components/form/button/secondary-button/SecondaryButton';
|
|
27
29
|
export MgTertiaryButton from './components/form/button/tertiary-button/TertiaryButton';
|
|
28
30
|
export MgToggleButton from './components/form/button/toggle-button/ToggleButton';
|
|
31
|
+
export MgCheckbox from './components/form/checkbox/checkbox/Checkbox';
|
|
32
|
+
export MgSwitch from './components/form/checkbox/switch/Switch';
|
|
33
|
+
|
|
29
34
|
export MgMagicCoinButton from './components/magic-coin/button/MagicCoinButton';
|
|
30
35
|
export MgCredits from './components/magic-coin/credits/Credits';
|
|
31
|
-
|
|
36
|
+
|
|
37
|
+
export MgSoccerBallLoader from './components/loader/soccer-ball/SoccerBall';
|
|
38
|
+
|
|
32
39
|
export MgTabButton from './components/navigation/tab-button/TabButton';
|