@icvdeveloper/common-module 2.2.0 → 2.2.2

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/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 2.2.2 - 2024-10-04
11
+
12
+ ## 2.2.1 - 2024-10-04
13
+
10
14
  ## 2.2.0 - 2024-10-03
11
15
 
12
16
  ## 2.1.4 - 2024-09-17
package/dist/module.d.mts CHANGED
@@ -1072,6 +1072,18 @@ type VirtualNestedKeyOf<ObjectType extends object> = {
1072
1072
  [Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends AgendaPlayerPageConfigs | ArchivePlayerPageConfigs | ExhibitorPageConfigs | MainPageConfigs | EntryWayConfigs | ExhibitHallConfigs | AffiliateBoothSmallConfigs | AffiliateBoothMedConfigs | AffiliateBoothLgConfigs | AuditoriumConfigs | NetworkingConfigs | ResourcesConfigs | AttendeesConfigs | MeetingsConfigs | PresentersConfigs | SpotlightConfigs | Spotlight1Configs | Spotlight2Configs | PresenterPageConfigs | RegistrationPageConfigs | SponsorsPageConfigs | SupportPageConfigs | WebcastPageConfigs ? "" | `${Key}.${VirtualNestedKeyOf<ObjectType[Key]>}` : `${Key}`;
1073
1073
  }[keyof ObjectType & (string | number)];
1074
1074
 
1075
+ type LoadAction = {
1076
+ loaded(count?: number, pageSize?: number): State;
1077
+ noMore(): void;
1078
+ noResults(): void;
1079
+ error(): void;
1080
+ };
1081
+ type LoadPayload = {
1082
+ isFirstLoad: boolean;
1083
+ };
1084
+ type State = 'loading' | 'error' | 'no-more' | 'no-results';
1085
+ type Position = 'top' | 'left' | 'default';
1086
+
1075
1087
  interface ModuleOptions {
1076
1088
  portalHash?: null | string;
1077
1089
  apiUrl?: null | string;
@@ -1080,4 +1092,4 @@ interface ModuleOptions {
1080
1092
  }
1081
1093
  declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
1082
1094
 
1083
- export { type AdobeLaunchFunctions, type Affiliate, type AffiliateBoothLgConfigs, type AffiliateBoothMedConfigs, type AffiliateBoothSmallConfigs, type AgendaPlayerPageConfigs, type Analytics, type ArchiveContentTabsVariable, type ArchivePlayerPageConfigs, type AttendeeList, type AttendeeListResult, type AttendeesConfigs, type AuditoriumConfigs, type AuthUser, type CeCreditConfig, type Conference, ConferenceState, type ContentData, type Conversation, type Day, type Document, type EntryWayConfigs, type ExhibitHallConfigs, type ExhibitorPageConfigs, type GlobalConfig, type GlobalConfigKey, type GlobalConfigKeyType, type GlobalElements, type Group, type GroupVariable, type Icon, type Icons, type Link, type LoginParams, type MainPageConfigs, type MeetingsConfigs, type Merchant, type Message, type MessagesRead, type Meta, type MiscElements, type ModuleOptions, type NavigationConfig, type NestedKeyOf, type NetworkingConfigs, PAGE_LENGTH, type Pages, type PagesElements, type Pagination, type PlayerContentTabsVariable, type PlayerObj, type PlayerPresentation, type Portal, type Presentation, PresentationType, type Presenter, type PresenterPageConfigs, type PresenterWithPivot, type PresentersConfigs, type RegistrationField, type RegistrationForm, type RegistrationPageConfigs, type ResourcesConfigs, type SettingElements, type Sponsor, type SponsorsPageConfigs, type Spotlight1Configs, type Spotlight2Configs, type SpotlightConfigs, type Stream, type SupportPageConfigs, type TemplateConfig, type Track, type TrackGroup, type User, type UserSearchParams, type UsersResult, type Video, type VirtualGlobal, type VirtualMainPageConfigs, type VirtualNestedKeyOf, type VirtualPages, type VirtualPresentation, type WebcastPageConfigs, _default as default };
1095
+ export { type AdobeLaunchFunctions, type Affiliate, type AffiliateBoothLgConfigs, type AffiliateBoothMedConfigs, type AffiliateBoothSmallConfigs, type AgendaPlayerPageConfigs, type Analytics, type ArchiveContentTabsVariable, type ArchivePlayerPageConfigs, type AttendeeList, type AttendeeListResult, type AttendeesConfigs, type AuditoriumConfigs, type AuthUser, type CeCreditConfig, type Conference, ConferenceState, type ContentData, type Conversation, type Day, type Document, type EntryWayConfigs, type ExhibitHallConfigs, type ExhibitorPageConfigs, type GlobalConfig, type GlobalConfigKey, type GlobalConfigKeyType, type GlobalElements, type Group, type GroupVariable, type Icon, type Icons, type Link, type LoadAction, type LoadPayload, type LoginParams, type MainPageConfigs, type MeetingsConfigs, type Merchant, type Message, type MessagesRead, type Meta, type MiscElements, type ModuleOptions, type NavigationConfig, type NestedKeyOf, type NetworkingConfigs, PAGE_LENGTH, type Pages, type PagesElements, type Pagination, type PlayerContentTabsVariable, type PlayerObj, type PlayerPresentation, type Portal, type Position, type Presentation, PresentationType, type Presenter, type PresenterPageConfigs, type PresenterWithPivot, type PresentersConfigs, type RegistrationField, type RegistrationForm, type RegistrationPageConfigs, type ResourcesConfigs, type SettingElements, type Sponsor, type SponsorsPageConfigs, type Spotlight1Configs, type Spotlight2Configs, type SpotlightConfigs, type State, type Stream, type SupportPageConfigs, type TemplateConfig, type Track, type TrackGroup, type User, type UserSearchParams, type UsersResult, type Video, type VirtualGlobal, type VirtualMainPageConfigs, type VirtualNestedKeyOf, type VirtualPages, type VirtualPresentation, type WebcastPageConfigs, _default as default };
package/dist/module.d.ts CHANGED
@@ -1072,6 +1072,18 @@ type VirtualNestedKeyOf<ObjectType extends object> = {
1072
1072
  [Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends AgendaPlayerPageConfigs | ArchivePlayerPageConfigs | ExhibitorPageConfigs | MainPageConfigs | EntryWayConfigs | ExhibitHallConfigs | AffiliateBoothSmallConfigs | AffiliateBoothMedConfigs | AffiliateBoothLgConfigs | AuditoriumConfigs | NetworkingConfigs | ResourcesConfigs | AttendeesConfigs | MeetingsConfigs | PresentersConfigs | SpotlightConfigs | Spotlight1Configs | Spotlight2Configs | PresenterPageConfigs | RegistrationPageConfigs | SponsorsPageConfigs | SupportPageConfigs | WebcastPageConfigs ? "" | `${Key}.${VirtualNestedKeyOf<ObjectType[Key]>}` : `${Key}`;
1073
1073
  }[keyof ObjectType & (string | number)];
1074
1074
 
1075
+ type LoadAction = {
1076
+ loaded(count?: number, pageSize?: number): State;
1077
+ noMore(): void;
1078
+ noResults(): void;
1079
+ error(): void;
1080
+ };
1081
+ type LoadPayload = {
1082
+ isFirstLoad: boolean;
1083
+ };
1084
+ type State = 'loading' | 'error' | 'no-more' | 'no-results';
1085
+ type Position = 'top' | 'left' | 'default';
1086
+
1075
1087
  interface ModuleOptions {
1076
1088
  portalHash?: null | string;
1077
1089
  apiUrl?: null | string;
@@ -1080,4 +1092,4 @@ interface ModuleOptions {
1080
1092
  }
1081
1093
  declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
1082
1094
 
1083
- export { type AdobeLaunchFunctions, type Affiliate, type AffiliateBoothLgConfigs, type AffiliateBoothMedConfigs, type AffiliateBoothSmallConfigs, type AgendaPlayerPageConfigs, type Analytics, type ArchiveContentTabsVariable, type ArchivePlayerPageConfigs, type AttendeeList, type AttendeeListResult, type AttendeesConfigs, type AuditoriumConfigs, type AuthUser, type CeCreditConfig, type Conference, ConferenceState, type ContentData, type Conversation, type Day, type Document, type EntryWayConfigs, type ExhibitHallConfigs, type ExhibitorPageConfigs, type GlobalConfig, type GlobalConfigKey, type GlobalConfigKeyType, type GlobalElements, type Group, type GroupVariable, type Icon, type Icons, type Link, type LoginParams, type MainPageConfigs, type MeetingsConfigs, type Merchant, type Message, type MessagesRead, type Meta, type MiscElements, type ModuleOptions, type NavigationConfig, type NestedKeyOf, type NetworkingConfigs, PAGE_LENGTH, type Pages, type PagesElements, type Pagination, type PlayerContentTabsVariable, type PlayerObj, type PlayerPresentation, type Portal, type Presentation, PresentationType, type Presenter, type PresenterPageConfigs, type PresenterWithPivot, type PresentersConfigs, type RegistrationField, type RegistrationForm, type RegistrationPageConfigs, type ResourcesConfigs, type SettingElements, type Sponsor, type SponsorsPageConfigs, type Spotlight1Configs, type Spotlight2Configs, type SpotlightConfigs, type Stream, type SupportPageConfigs, type TemplateConfig, type Track, type TrackGroup, type User, type UserSearchParams, type UsersResult, type Video, type VirtualGlobal, type VirtualMainPageConfigs, type VirtualNestedKeyOf, type VirtualPages, type VirtualPresentation, type WebcastPageConfigs, _default as default };
1095
+ export { type AdobeLaunchFunctions, type Affiliate, type AffiliateBoothLgConfigs, type AffiliateBoothMedConfigs, type AffiliateBoothSmallConfigs, type AgendaPlayerPageConfigs, type Analytics, type ArchiveContentTabsVariable, type ArchivePlayerPageConfigs, type AttendeeList, type AttendeeListResult, type AttendeesConfigs, type AuditoriumConfigs, type AuthUser, type CeCreditConfig, type Conference, ConferenceState, type ContentData, type Conversation, type Day, type Document, type EntryWayConfigs, type ExhibitHallConfigs, type ExhibitorPageConfigs, type GlobalConfig, type GlobalConfigKey, type GlobalConfigKeyType, type GlobalElements, type Group, type GroupVariable, type Icon, type Icons, type Link, type LoadAction, type LoadPayload, type LoginParams, type MainPageConfigs, type MeetingsConfigs, type Merchant, type Message, type MessagesRead, type Meta, type MiscElements, type ModuleOptions, type NavigationConfig, type NestedKeyOf, type NetworkingConfigs, PAGE_LENGTH, type Pages, type PagesElements, type Pagination, type PlayerContentTabsVariable, type PlayerObj, type PlayerPresentation, type Portal, type Position, type Presentation, PresentationType, type Presenter, type PresenterPageConfigs, type PresenterWithPivot, type PresentersConfigs, type RegistrationField, type RegistrationForm, type RegistrationPageConfigs, type ResourcesConfigs, type SettingElements, type Sponsor, type SponsorsPageConfigs, type Spotlight1Configs, type Spotlight2Configs, type SpotlightConfigs, type State, type Stream, type SupportPageConfigs, type TemplateConfig, type Track, type TrackGroup, type User, type UserSearchParams, type UsersResult, type Video, type VirtualGlobal, type VirtualMainPageConfigs, type VirtualNestedKeyOf, type VirtualPages, type VirtualPresentation, type WebcastPageConfigs, _default as default };
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "2.2.0"
4
+ "version": "2.2.2"
5
5
  }
@@ -204,17 +204,26 @@ const emitStreamTest = (): void => {
204
204
  <nuxt-link
205
205
  v-if="item.slug == 'stream-test'"
206
206
  :class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
207
- @click.enter="emitSearchModal"
207
+ @click.enter="emitStreamTest"
208
208
  >
209
209
  {{ item.label }}
210
210
  </nuxt-link>
211
211
  <nuxt-link
212
- v-if="isSearchEnabled && item.slug == 'search'"
212
+ v-else-if="item.slug == 'search' && isSearchEnabled"
213
213
  :class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
214
214
  @click.enter="emitSearchModal"
215
215
  >
216
216
  {{ item.label }}
217
217
  </nuxt-link>
218
+ <nuxt-link
219
+ v-else
220
+ :to="formatLink(item)"
221
+ exact
222
+ :class="classBinding(classObject, 'navigationItemLink', 'nav-link')"
223
+ @click.enter="toggleMenu"
224
+ >
225
+ {{ item.label }}
226
+ </nuxt-link>
218
227
  </template>
219
228
  <nuxt-link
220
229
  v-else
@@ -18,3 +18,4 @@ export * from './user';
18
18
  export * from './vButton';
19
19
  export * from './video';
20
20
  export * from './virtualPagesConfig';
21
+ export * from './vueEternalLoading';
@@ -18,3 +18,4 @@ export * from "./user.mjs";
18
18
  export * from "./vButton.mjs";
19
19
  export * from "./video.mjs";
20
20
  export * from "./virtualPagesConfig.mjs";
21
+ export * from "./vueEternalLoading.mjs";
package/dist/types.d.mts CHANGED
@@ -13,4 +13,4 @@ declare module 'nuxt/schema' {
13
13
  }
14
14
 
15
15
 
16
- export type { AdobeLaunchFunctions, Affiliate, AffiliateBoothLgConfigs, AffiliateBoothMedConfigs, AffiliateBoothSmallConfigs, AgendaPlayerPageConfigs, Analytics, ArchiveContentTabsVariable, ArchivePlayerPageConfigs, AttendeeList, AttendeeListResult, AttendeesConfigs, AuditoriumConfigs, AuthUser, CeCreditConfig, Conference, ConferenceState, ContentData, Conversation, Day, Document, EntryWayConfigs, ExhibitHallConfigs, ExhibitorPageConfigs, GlobalConfig, GlobalConfigKey, GlobalConfigKeyType, GlobalElements, Group, GroupVariable, Icon, Icons, Link, LoginParams, MainPageConfigs, MeetingsConfigs, Merchant, Message, MessagesRead, Meta, MiscElements, ModuleOptions, NavigationConfig, NestedKeyOf, NetworkingConfigs, PAGE_LENGTH, Pages, PagesElements, Pagination, PlayerContentTabsVariable, PlayerObj, PlayerPresentation, Portal, Presentation, PresentationType, Presenter, PresenterPageConfigs, PresenterWithPivot, PresentersConfigs, RegistrationField, RegistrationForm, RegistrationPageConfigs, ResourcesConfigs, SettingElements, Sponsor, SponsorsPageConfigs, Spotlight1Configs, Spotlight2Configs, SpotlightConfigs, Stream, SupportPageConfigs, TemplateConfig, Track, TrackGroup, User, UserSearchParams, UsersResult, Video, VirtualGlobal, VirtualMainPageConfigs, VirtualNestedKeyOf, VirtualPages, VirtualPresentation, WebcastPageConfigs, default } from './module.js'
16
+ export type { AdobeLaunchFunctions, Affiliate, AffiliateBoothLgConfigs, AffiliateBoothMedConfigs, AffiliateBoothSmallConfigs, AgendaPlayerPageConfigs, Analytics, ArchiveContentTabsVariable, ArchivePlayerPageConfigs, AttendeeList, AttendeeListResult, AttendeesConfigs, AuditoriumConfigs, AuthUser, CeCreditConfig, Conference, ConferenceState, ContentData, Conversation, Day, Document, EntryWayConfigs, ExhibitHallConfigs, ExhibitorPageConfigs, GlobalConfig, GlobalConfigKey, GlobalConfigKeyType, GlobalElements, Group, GroupVariable, Icon, Icons, Link, LoadAction, LoadPayload, LoginParams, MainPageConfigs, MeetingsConfigs, Merchant, Message, MessagesRead, Meta, MiscElements, ModuleOptions, NavigationConfig, NestedKeyOf, NetworkingConfigs, PAGE_LENGTH, Pages, PagesElements, Pagination, PlayerContentTabsVariable, PlayerObj, PlayerPresentation, Portal, Position, Presentation, PresentationType, Presenter, PresenterPageConfigs, PresenterWithPivot, PresentersConfigs, RegistrationField, RegistrationForm, RegistrationPageConfigs, ResourcesConfigs, SettingElements, Sponsor, SponsorsPageConfigs, Spotlight1Configs, Spotlight2Configs, SpotlightConfigs, State, Stream, SupportPageConfigs, TemplateConfig, Track, TrackGroup, User, UserSearchParams, UsersResult, Video, VirtualGlobal, VirtualMainPageConfigs, VirtualNestedKeyOf, VirtualPages, VirtualPresentation, WebcastPageConfigs, default } from './module.js'
package/dist/types.d.ts CHANGED
@@ -13,4 +13,4 @@ declare module 'nuxt/schema' {
13
13
  }
14
14
 
15
15
 
16
- export type { AdobeLaunchFunctions, Affiliate, AffiliateBoothLgConfigs, AffiliateBoothMedConfigs, AffiliateBoothSmallConfigs, AgendaPlayerPageConfigs, Analytics, ArchiveContentTabsVariable, ArchivePlayerPageConfigs, AttendeeList, AttendeeListResult, AttendeesConfigs, AuditoriumConfigs, AuthUser, CeCreditConfig, Conference, ConferenceState, ContentData, Conversation, Day, Document, EntryWayConfigs, ExhibitHallConfigs, ExhibitorPageConfigs, GlobalConfig, GlobalConfigKey, GlobalConfigKeyType, GlobalElements, Group, GroupVariable, Icon, Icons, Link, LoginParams, MainPageConfigs, MeetingsConfigs, Merchant, Message, MessagesRead, Meta, MiscElements, ModuleOptions, NavigationConfig, NestedKeyOf, NetworkingConfigs, PAGE_LENGTH, Pages, PagesElements, Pagination, PlayerContentTabsVariable, PlayerObj, PlayerPresentation, Portal, Presentation, PresentationType, Presenter, PresenterPageConfigs, PresenterWithPivot, PresentersConfigs, RegistrationField, RegistrationForm, RegistrationPageConfigs, ResourcesConfigs, SettingElements, Sponsor, SponsorsPageConfigs, Spotlight1Configs, Spotlight2Configs, SpotlightConfigs, Stream, SupportPageConfigs, TemplateConfig, Track, TrackGroup, User, UserSearchParams, UsersResult, Video, VirtualGlobal, VirtualMainPageConfigs, VirtualNestedKeyOf, VirtualPages, VirtualPresentation, WebcastPageConfigs, default } from './module'
16
+ export type { AdobeLaunchFunctions, Affiliate, AffiliateBoothLgConfigs, AffiliateBoothMedConfigs, AffiliateBoothSmallConfigs, AgendaPlayerPageConfigs, Analytics, ArchiveContentTabsVariable, ArchivePlayerPageConfigs, AttendeeList, AttendeeListResult, AttendeesConfigs, AuditoriumConfigs, AuthUser, CeCreditConfig, Conference, ConferenceState, ContentData, Conversation, Day, Document, EntryWayConfigs, ExhibitHallConfigs, ExhibitorPageConfigs, GlobalConfig, GlobalConfigKey, GlobalConfigKeyType, GlobalElements, Group, GroupVariable, Icon, Icons, Link, LoadAction, LoadPayload, LoginParams, MainPageConfigs, MeetingsConfigs, Merchant, Message, MessagesRead, Meta, MiscElements, ModuleOptions, NavigationConfig, NestedKeyOf, NetworkingConfigs, PAGE_LENGTH, Pages, PagesElements, Pagination, PlayerContentTabsVariable, PlayerObj, PlayerPresentation, Portal, Position, Presentation, PresentationType, Presenter, PresenterPageConfigs, PresenterWithPivot, PresentersConfigs, RegistrationField, RegistrationForm, RegistrationPageConfigs, ResourcesConfigs, SettingElements, Sponsor, SponsorsPageConfigs, Spotlight1Configs, Spotlight2Configs, SpotlightConfigs, State, Stream, SupportPageConfigs, TemplateConfig, Track, TrackGroup, User, UserSearchParams, UsersResult, Video, VirtualGlobal, VirtualMainPageConfigs, VirtualNestedKeyOf, VirtualPages, VirtualPresentation, WebcastPageConfigs, default } from './module'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {