@icvdeveloper/common-module 0.0.46 → 0.0.49
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/README.md +6 -6
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/@types/components.d.ts +3 -0
- package/dist/runtime/assets/svg/answer.svg +14 -14
- package/dist/runtime/assets/svg/avatar.svg +1 -1
- package/dist/runtime/assets/svg/bell-icon.svg +3 -3
- package/dist/runtime/assets/svg/checkmark-icon.svg +1 -1
- package/dist/runtime/assets/svg/close-icon.svg +1 -1
- package/dist/runtime/assets/svg/icon-avatar.svg +1 -1
- package/dist/runtime/assets/svg/icon-close.svg +1 -1
- package/dist/runtime/assets/svg/icon-info.svg +2 -2
- package/dist/runtime/assets/svg/icon-new-window.svg +11 -11
- package/dist/runtime/assets/svg/icon-offline.svg +3 -3
- package/dist/runtime/assets/svg/icon-online.svg +3 -3
- package/dist/runtime/assets/svg/icon-person.svg +2 -2
- package/dist/runtime/assets/svg/icon-play.svg +2 -2
- package/dist/runtime/assets/svg/icon-star-filled.svg +29 -29
- package/dist/runtime/assets/svg/icon-star.svg +24 -24
- package/dist/runtime/assets/svg/icon-video-chat.svg +14 -14
- package/dist/runtime/assets/svg/icon-website.svg +2 -2
- package/dist/runtime/assets/svg/icon-zoom.svg +10 -10
- package/dist/runtime/assets/svg/notification-icon.svg +32 -32
- package/dist/runtime/assets/svg/offline-icon.svg +1 -1
- package/dist/runtime/assets/svg/online-icon.svg +3 -3
- package/dist/runtime/assets/svg/peer2peer.svg +3 -3
- package/dist/runtime/assets/svg/phone.svg +1 -1
- package/dist/runtime/assets/svg/plus-icon.svg +1 -1
- package/dist/runtime/assets/svg/red-icon.svg +3 -3
- package/dist/runtime/assets/svg/reject.svg +14 -14
- package/dist/runtime/assets/svg/search-icon.svg +3 -3
- package/dist/runtime/components/affiliates/AffiliatePage.vue +17 -17
- package/dist/runtime/components/agenda/AgendaTabbed.vue +300 -300
- package/dist/runtime/components/agenda/components/InfoLink.vue +56 -56
- package/dist/runtime/components/agenda/components/PlayIcon.vue +49 -49
- package/dist/runtime/components/agenda/components/PresentationLink.vue +137 -137
- package/dist/runtime/components/agenda/components/Sponsor.vue +132 -132
- package/dist/runtime/components/auth/LoginFullWidth.vue +78 -78
- package/dist/runtime/components/auth/PasswordReset.vue +60 -60
- package/dist/runtime/components/auth/Registration.vue +27 -27
- package/dist/runtime/components/auth/Ucc.vue +52 -0
- package/dist/runtime/components/core/Accordion.vue +39 -39
- package/dist/runtime/components/core/CountdownTimer.vue +308 -308
- package/dist/runtime/components/core/DynamicHtml.vue +1 -1
- package/dist/runtime/components/core/Modal.vue +111 -111
- package/dist/runtime/components/core/Navbar.vue +154 -154
- package/dist/runtime/components/core/SvgIcon.vue +139 -139
- package/dist/runtime/components/core/ZoomModal.vue +37 -37
- package/dist/runtime/components/events/EventHeader.vue +133 -133
- package/dist/runtime/components/events/ListEvents.vue +477 -477
- package/dist/runtime/components/forms/AlertBox.vue +21 -21
- package/dist/runtime/components/forms/ErrorField.vue +17 -17
- package/dist/runtime/components/forms/Message.vue +27 -27
- package/dist/runtime/components/forms/SearchInput.vue +38 -38
- package/dist/runtime/components/forms/SupportForm.vue +112 -112
- package/dist/runtime/components/forms/SwitchInput.vue +42 -42
- package/dist/runtime/components/forms/TextArea.vue +26 -26
- package/dist/runtime/components/forms/TextInput.vue +28 -28
- package/dist/runtime/components/layouts/Accordion.vue +78 -78
- package/dist/runtime/components/presenters/PresenterListing.vue +164 -164
- package/dist/runtime/components/presenters/PresenterModal.vue +225 -225
- package/dist/runtime/components/profile/Profile.vue +149 -149
- package/dist/runtime/components/profile/components/Sidebar.vue +27 -27
- package/dist/runtime/components/profile/components/SidebarNavItem.vue +39 -39
- package/dist/runtime/components/profile/tabs/Favorites.vue +21 -21
- package/dist/runtime/components/profile/tabs/GeneralInformation.vue +122 -122
- package/dist/runtime/components/profile/tabs/ProfileImage.vue +75 -75
- package/dist/runtime/components/support/FAQAccordion.vue +247 -247
- package/dist/runtime/composables/index.d.ts +1 -0
- package/dist/runtime/composables/index.mjs +1 -0
- package/dist/runtime/composables/useClassBinding.d.ts +1 -1
- package/dist/runtime/composables/useClassBinding.mjs +1 -1
- package/dist/runtime/composables/useDateFormat.d.ts +2 -2
- package/dist/runtime/composables/useDateFormat.mjs +4 -4
- package/dist/runtime/composables/useUcc.d.ts +11 -0
- package/dist/runtime/composables/useUcc.mjs +67 -0
- package/package.json +59 -59
package/package.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@icvdeveloper/common-module",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"import": "./dist/module.mjs",
|
|
9
|
-
"require": "./dist/module.cjs"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
"main": "./dist/module.mjs",
|
|
13
|
-
"types": "./dist/types.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"dist"
|
|
16
|
-
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"prepack": "nuxt-module-build",
|
|
19
|
-
"dev": "nuxi dev playground",
|
|
20
|
-
"dev:build": "nuxi build playground",
|
|
21
|
-
"dev:docker": "rm -rf /tmp/nitro && nuxi dev --host 0.0.0.0 --port 3005 playground",
|
|
22
|
-
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@analytics/google-analytics": "^1.0.3",
|
|
26
|
-
"@nuxt/kit": "^3.0.0",
|
|
27
|
-
"@nuxtjs/tailwindcss": "^6.1.3",
|
|
28
|
-
"@pinia/nuxt": "^0.3.1",
|
|
29
|
-
"analytics": "^0.8.1",
|
|
30
|
-
"date-fns": "^2.29.1",
|
|
31
|
-
"date-fns-tz": "^1.3.6",
|
|
32
|
-
"lodash-es": "^4.17.21",
|
|
33
|
-
"nprogress": "^0.2.0",
|
|
34
|
-
"pinia": "^2.0.17",
|
|
35
|
-
"pinia-plugin-persistedstate": "^2.1.1",
|
|
36
|
-
"sass": "^1.54.2",
|
|
37
|
-
"sass-loader": "^13.0.2",
|
|
38
|
-
"tailwindcss-opentype": "^1.1.0",
|
|
39
|
-
"vite-svg-loader": "^3.4.0"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@nuxt/module-builder": "^0.2.1",
|
|
43
|
-
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
|
44
|
-
"@tailwindcss/typography": "^0.5.4",
|
|
45
|
-
"eslint": "^8.22.0",
|
|
46
|
-
"eslint-config-prettier": "^8.5.0",
|
|
47
|
-
"nuxt": "^3.0.0"
|
|
48
|
-
},
|
|
49
|
-
"description": "## Development",
|
|
50
|
-
"repository": {
|
|
51
|
-
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/ICVDM/v3plus-common.git"
|
|
53
|
-
},
|
|
54
|
-
"author": "",
|
|
55
|
-
"bugs": {
|
|
56
|
-
"url": "https://github.com/ICVDM/v3plus-common/issues"
|
|
57
|
-
},
|
|
58
|
-
"homepage": "https://github.com/ICVDM/v3plus-common#readme"
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@icvdeveloper/common-module",
|
|
3
|
+
"version": "0.0.49",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./dist/module.mjs",
|
|
9
|
+
"require": "./dist/module.cjs"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/module.mjs",
|
|
13
|
+
"types": "./dist/types.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"prepack": "nuxt-module-build",
|
|
19
|
+
"dev": "nuxi dev playground",
|
|
20
|
+
"dev:build": "nuxi build playground",
|
|
21
|
+
"dev:docker": "rm -rf /tmp/nitro && nuxi dev --host 0.0.0.0 --port 3005 playground",
|
|
22
|
+
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@analytics/google-analytics": "^1.0.3",
|
|
26
|
+
"@nuxt/kit": "^3.0.0",
|
|
27
|
+
"@nuxtjs/tailwindcss": "^6.1.3",
|
|
28
|
+
"@pinia/nuxt": "^0.3.1",
|
|
29
|
+
"analytics": "^0.8.1",
|
|
30
|
+
"date-fns": "^2.29.1",
|
|
31
|
+
"date-fns-tz": "^1.3.6",
|
|
32
|
+
"lodash-es": "^4.17.21",
|
|
33
|
+
"nprogress": "^0.2.0",
|
|
34
|
+
"pinia": "^2.0.17",
|
|
35
|
+
"pinia-plugin-persistedstate": "^2.1.1",
|
|
36
|
+
"sass": "^1.54.2",
|
|
37
|
+
"sass-loader": "^13.0.2",
|
|
38
|
+
"tailwindcss-opentype": "^1.1.0",
|
|
39
|
+
"vite-svg-loader": "^3.4.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@nuxt/module-builder": "^0.2.1",
|
|
43
|
+
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
|
44
|
+
"@tailwindcss/typography": "^0.5.4",
|
|
45
|
+
"eslint": "^8.22.0",
|
|
46
|
+
"eslint-config-prettier": "^8.5.0",
|
|
47
|
+
"nuxt": "^3.0.0"
|
|
48
|
+
},
|
|
49
|
+
"description": "## Development",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "git+https://github.com/ICVDM/v3plus-common.git"
|
|
53
|
+
},
|
|
54
|
+
"author": "",
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/ICVDM/v3plus-common/issues"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://github.com/ICVDM/v3plus-common#readme"
|
|
59
|
+
}
|