@dcrackel/meyersquaredui 1.0.235 → 1.0.238
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/dist/meyersquaredui.es.js +2154 -1811
- package/dist/meyersquaredui.umd.js +5 -5
- package/package.json +7 -7
- package/src/index.js +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcrackel/meyersquaredui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.238",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/meyersquaredui.cjs.js",
|
|
7
7
|
"module": "dist/meyersquaredui.esm.js",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"vue3-google-map": "^0.21.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@chromatic-com/storybook": "^4.0.
|
|
46
|
-
"@storybook/addon-docs": "^9.0.
|
|
47
|
-
"@storybook/addon-links": "^9.0.
|
|
48
|
-
"@storybook/addon-onboarding": "^9.0.
|
|
49
|
-
"@storybook/vue3-vite": "^9.0.
|
|
45
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
46
|
+
"@storybook/addon-docs": "^9.0.13",
|
|
47
|
+
"@storybook/addon-links": "^9.0.13",
|
|
48
|
+
"@storybook/addon-onboarding": "^9.0.13",
|
|
49
|
+
"@storybook/vue3-vite": "^9.0.13",
|
|
50
50
|
"@vitejs/plugin-vue": "^5.1.2",
|
|
51
51
|
"autoprefixer": "^10.4.20",
|
|
52
52
|
"postcss": "^8.4.45",
|
|
53
|
-
"storybook": "^9.0.
|
|
53
|
+
"storybook": "^9.0.13",
|
|
54
54
|
"tailwindcss": "^3.4.11",
|
|
55
55
|
"vite": "^6.3.5"
|
|
56
56
|
},
|
package/src/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export { default as Icon } from './stories/Atoms/Icon/Icon.vue';
|
|
|
4
4
|
export { default as InputField } from './stories/Atoms/InputField/InputField.vue';
|
|
5
5
|
|
|
6
6
|
export { default as SearchBox } from './stories/Molecules/Searchbox/SearchBox.vue';
|
|
7
|
+
export { default as BasicDropDown } from './stories/Molecules/DropDowns/BasicDropDown.vue';
|
|
7
8
|
export { default as Calendar } from './stories/Molecules/Calendar/Calendar.vue';
|
|
8
9
|
export { default as Mapbox } from './stories/Molecules/Mapbox/Mapbox.vue';
|
|
9
10
|
export { default as ProgressTracker } from './stories/Molecules/ProgressTracker/ProgressTracker.vue';
|
|
@@ -29,7 +30,9 @@ export { default as GridPool } from './stories/Organisms/Grids/GridPool/GridPool
|
|
|
29
30
|
export { default as ArticleCard } from './stories/Organisms/Cards/ArticleCard/ArticleCard.vue'
|
|
30
31
|
export { default as ClubListCard } from './stories/Organisms/Cards/ClubListCard/ClubListCard.vue'
|
|
31
32
|
export { default as ClubMember } from './stories/Organisms/Cards/ClubMember/ClubMember.vue'
|
|
33
|
+
export { default as Cart } from './stories/Organisms/Cart/Cart.vue'
|
|
32
34
|
export { default as EventListCard } from './stories/Organisms/Cards/EventListCard/EventListCard.vue'
|
|
35
|
+
export { default as EventCartCard } from './stories/Organisms/Cards/EventCartCard/EventCartCard.vue'
|
|
33
36
|
export { default as FencerCard } from './stories/Organisms/Cards/FencerCard/FencerCard.vue'
|
|
34
37
|
export { default as FencerListCard } from './stories/Organisms/Cards/FencerListCard/FencerListCard.vue'
|
|
35
38
|
export { default as FencerPoolStatsCard } from './stories/Organisms/Cards/FencerPoolStatsCards/FencerPoolStatsCard.vue'
|
|
@@ -41,6 +44,7 @@ export { default as Tableau } from './stories/Organisms/Tableau/Tableau.vue'
|
|
|
41
44
|
export { default as RatingSystemAnnouncement } from './stories/Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue'
|
|
42
45
|
export { default as SocialMediaLinkCard } from './stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue'
|
|
43
46
|
export { default as TournamentCard } from './stories/Organisms/Cards/TournamentCard/TournamentCard.vue'
|
|
47
|
+
export { default as MerchCartCard } from './stories/Organisms/Cards/MerchCartCard/MerchCartCard.vue';
|
|
44
48
|
export { default as TournamentDetails } from './stories/Organisms/Cards/TournamentDetails/TournamentDetails.vue'
|
|
45
49
|
export { default as TournamentListCard } from './stories/Organisms/Cards/TournamentListCard/TournamentListCard.vue'
|
|
46
50
|
export { default as HeroBanner } from './stories/Organisms/HeroBanners/HomePage/HeroBanner.vue'
|