@icvdeveloper/common-module 0.0.15 → 0.0.17

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/module.d.ts CHANGED
@@ -1,5 +1,22 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
 
3
+ declare enum ConferenceState {
4
+ LIVE = "live",
5
+ MIXED = "mixed",
6
+ ARCHIVED = "archive",
7
+ UPCOMING = "upcoming",
8
+ HIDDEN = "hidden"
9
+ }
10
+ declare enum PresentationType {
11
+ ZOOM = "zoom",
12
+ VIDEO_SLIDE = "video_slide",
13
+ VIDEO = "video",
14
+ AUDIO_SLIDE = "audio_slide",
15
+ AUDIO = "audio",
16
+ EMBED = "embed",
17
+ LINK = "link"
18
+ }
19
+
3
20
  interface ModuleOptions {
4
21
  portalHash?: null | string;
5
22
  apiUrl?: null | string;
@@ -7,4 +24,4 @@ interface ModuleOptions {
7
24
  }
8
25
  declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
9
26
 
10
- export { ModuleOptions, _default as default };
27
+ export { ConferenceState, ModuleOptions, PresentationType, _default as default };
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.0.15"
7
+ "version": "0.0.17"
8
8
  }
package/dist/module.mjs CHANGED
@@ -12,6 +12,25 @@ const __dirname = __cjs_path__.dirname(__filename);
12
12
  const require = __cjs_mod__.createRequire(import.meta.url);
13
13
 
14
14
 
15
+ var ConferenceState = /* @__PURE__ */ ((ConferenceState2) => {
16
+ ConferenceState2["LIVE"] = "live";
17
+ ConferenceState2["MIXED"] = "mixed";
18
+ ConferenceState2["ARCHIVED"] = "archive";
19
+ ConferenceState2["UPCOMING"] = "upcoming";
20
+ ConferenceState2["HIDDEN"] = "hidden";
21
+ return ConferenceState2;
22
+ })(ConferenceState || {});
23
+ var PresentationType = /* @__PURE__ */ ((PresentationType2) => {
24
+ PresentationType2["ZOOM"] = "zoom";
25
+ PresentationType2["VIDEO_SLIDE"] = "video_slide";
26
+ PresentationType2["VIDEO"] = "video";
27
+ PresentationType2["AUDIO_SLIDE"] = "audio_slide";
28
+ PresentationType2["AUDIO"] = "audio";
29
+ PresentationType2["EMBED"] = "embed";
30
+ PresentationType2["LINK"] = "link";
31
+ return PresentationType2;
32
+ })(PresentationType || {});
33
+
15
34
  const module = defineNuxtModule({
16
35
  meta: {
17
36
  name: "v3plus-common-module",
@@ -59,7 +78,6 @@ const module = defineNuxtModule({
59
78
  tailwindConfig.config = {
60
79
  content: [join(runtimeDir, "components/**/*.{vue,js}")]
61
80
  };
62
- console.log(tailwindConfig);
63
81
  await installModule("@nuxtjs/tailwindcss", tailwindConfig);
64
82
  logger.success("Tailwindcss installed!");
65
83
  } else {
@@ -84,6 +102,7 @@ const module = defineNuxtModule({
84
102
  };
85
103
  }
86
104
  addAutoImportDir(join(runtimeDir, "store"));
105
+ addAutoImportDir(join(runtimeDir, "composables"));
87
106
  addComponentsDir({
88
107
  path: join(runtimeDir, "components/core"),
89
108
  extensions: ["vue"],
@@ -127,4 +146,4 @@ const module = defineNuxtModule({
127
146
  }
128
147
  });
129
148
 
130
- export { module as default };
149
+ export { ConferenceState, PresentationType, module as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -40,7 +40,7 @@
40
40
  "@nuxt/module-builder": "latest",
41
41
  "@nuxtjs/eslint-config-typescript": "latest",
42
42
  "@tailwindcss/typography": "^0.5.4",
43
- "eslint": "latest",
43
+ "eslint": "^8.22.0",
44
44
  "eslint-config-prettier": "^8.5.0",
45
45
  "nuxt": "^3.0.0-rc.6"
46
46
  },