@dcrackel/hematournamentui 1.0.686 → 1.0.688
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/HemaTournamentUI-lib.es.js +6702 -6086
- package/dist/HemaTournamentUI-lib.umd.js +27 -27
- package/package.json +8 -8
- package/src/mocks/getDirectors.js +18 -0
- package/src/mocks/personsMock.js +17505 -69
- package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.stories.js +45 -0
- package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.vue +111 -0
- package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +4 -1
- package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.stories.js +27 -8
- package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.vue +57 -30
- package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.stories.js +45 -0
- package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.vue +78 -0
- package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +71 -38
- package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +118 -15
- package/src/stories/Templates/PersonManagement/Admin/Administration.vue +87 -0
- package/src/stories/Templates/PersonManagement/Admin/FencerAdmin.vue +58 -75
- package/src/stories/Templates/PersonManagement/Admin/MergeAccounts.vue +242 -0
- package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +5 -0
- package/src/stories/Templates/PersonManagement/PersonManagement.vue +15 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcrackel/hematournamentui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.688",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/HemaTournamentUI-lib.umd.js",
|
|
7
7
|
"module": "dist/HemaTournamentUI-lib.es.js",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@babel/eslint-parser": "^7.25.1",
|
|
54
|
-
"@chromatic-com/storybook": "^5.0.
|
|
54
|
+
"@chromatic-com/storybook": "^5.0.1",
|
|
55
55
|
"@eslint/eslintrc": "^3.1.0",
|
|
56
|
-
"@storybook/addon-docs": "^10.2.
|
|
57
|
-
"@storybook/addon-links": "^10.2.
|
|
58
|
-
"@storybook/react": "^10.2.
|
|
59
|
-
"@storybook/vue3-vite": "^10.2.
|
|
56
|
+
"@storybook/addon-docs": "^10.2.8",
|
|
57
|
+
"@storybook/addon-links": "^10.2.8",
|
|
58
|
+
"@storybook/react": "^10.2.8",
|
|
59
|
+
"@storybook/vue3-vite": "^10.2.8",
|
|
60
60
|
"@tailwindcss/postcss": "^4.1.6",
|
|
61
61
|
"@typescript-eslint/eslint-plugin": "^8.2.0",
|
|
62
62
|
"@typescript-eslint/parser": "^8.2.0",
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"eslint": "^9.9.0",
|
|
70
70
|
"eslint-plugin-jest": "^28.8.0",
|
|
71
71
|
"eslint-plugin-prettier": "^5.2.1",
|
|
72
|
-
"eslint-plugin-storybook": "^10.2.
|
|
72
|
+
"eslint-plugin-storybook": "^10.2.8",
|
|
73
73
|
"eslint-plugin-vue": "^10.1.0",
|
|
74
74
|
"happy-dom": "^20.3.1",
|
|
75
75
|
"patch-package": "^8.0.1",
|
|
76
76
|
"postcss": "^8.5.3",
|
|
77
|
-
"storybook": "^10.2.
|
|
77
|
+
"storybook": "^10.2.8",
|
|
78
78
|
"storybook-vue3-router": "^7.0.0",
|
|
79
79
|
"tailwindcss": "^4.1.6",
|
|
80
80
|
"vite": "^6.3.5",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const getDirectors = [
|
|
2
|
+
{
|
|
3
|
+
PersonId: 79,
|
|
4
|
+
DisplayName: "Tom Testerlou",
|
|
5
|
+
Ring: { PoolId: 776, RingName: "Ring 1" },
|
|
6
|
+
ClubName: "Columbus United Fencing Club",
|
|
7
|
+
PortraitUrl: null
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
PersonId: 1,
|
|
11
|
+
DisplayName: "Dwain Crackel",
|
|
12
|
+
Ring: { PoolId: 777, RingName: "Ring 2" },
|
|
13
|
+
ClubName: "Columbus United Fencing Club",
|
|
14
|
+
PortraitUrl: "https://meyersquaredimages.com/uploads/p-b7bbafd7.png"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
export default getDirectors;
|