@linagora/linid-im-front-corelib 0.0.68 → 0.0.70

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.
@@ -33,7 +33,7 @@ export type { Page, Pagination, QTableRequestEvent, QuasarPagination, QueryFilte
33
33
  export type { AttributeInputType, LinidApiEndpointConfiguration, LinidAttributeConfiguration, LinidEntityConfiguration, } from './types/linidConfiguration';
34
34
  export type { FederatedModule, ModuleHostConfig, ModuleZoneDefinition, RemoteModule, } from './types/module';
35
35
  export type { ModuleLifecycleHooks, ModuleLifecycleResult, } from './types/moduleLifecycle';
36
- export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBannerProps, LinidQBtnDropdownProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQDateProps, LinidQDialogProps, LinidQFileProps, LinidQFormProps, LinidQHeaderProps, LinidQIconProps, LinidQImgProps, LinidQInputProps, LinidQItemLabelProps, LinidQItemProps, LinidQItemSectionProps, LinidQListProps, LinidQMenuProps, LinidQRouteTabProps, LinidQSelectProps, LinidQSpinnerProps, LinidQSplitterProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, LinidQTreeProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
36
+ export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBannerProps, LinidQBtnDropdownProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQDateProps, LinidQDialogProps, LinidQFileProps, LinidQFormProps, LinidQHeaderProps, LinidQIconProps, LinidQImgProps, LinidQInputProps, LinidQItemLabelProps, LinidQItemProps, LinidQItemSectionProps, LinidQLayoutProps, LinidQListProps, LinidQMenuProps, LinidQRouteTabProps, LinidQSelectProps, LinidQSpinnerProps, LinidQSplitterProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, LinidQTreeProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
37
37
  export type { NavigationMenuItem } from './types/linidUi';
38
38
  export { ModuleLifecyclePhase } from './types/moduleLifecycle';
39
39
  export { BasicRemoteModule } from './lifecycle/skeleton';
@@ -49,6 +49,27 @@ export interface ModuleHostConfig<T> {
49
49
  * This is the name used to load the remote module via Module Federation.
50
50
  */
51
51
  remoteName: string;
52
+ /**
53
+ * Module Federation exposed module used to load the lifecycle implementation.
54
+ *
55
+ * This remote should expose a module implementing the module lifecycle hooks
56
+ * contract and is typically loaded during the module initialization phase.
57
+ */
58
+ lifecycleRemote: string;
59
+ /**
60
+ * Module Federation exposed module used to load the route definitions.
61
+ *
62
+ * This remote should expose the routes contributed by the module so they can
63
+ * be registered by the host application.
64
+ */
65
+ routesRemote: string;
66
+ /**
67
+ * Module Federation exposed module used to load internationalization resources.
68
+ *
69
+ * This remote should expose the module translations, locale definitions, or
70
+ * i18n registration logic consumed by the host application.
71
+ */
72
+ i18nRemote: string;
52
73
  /**
53
74
  * Name of the entity used in the host configuration.
54
75
  * Allows the module to retrieve associated attributes and other information for this entity.
@@ -1,4 +1,4 @@
1
- import type { NamedColor, QAvatarProps, QBadgeProps, QBannerProps, QBtnDropdownProps, QBtnProps, QCardActionsProps, QCardProps, QDateProps, QDialogProps, QFileProps, QFormProps, QHeaderProps, QIconProps, QImgProps, QInputProps, QItemLabelProps, QItemProps, QItemSectionProps, QListProps, QMenuProps, QRouteTabProps, QSelectProps, QSpinnerProps, QSplitterProps, QTableProps, QTabsProps, QToggleProps, QToolbarProps, QToolbarTitleProps, QTreeProps, VueClassProp, VueStyleObjectProp, VueStyleProp } from 'quasar';
1
+ import type { NamedColor, QAvatarProps, QBadgeProps, QBannerProps, QBtnDropdownProps, QBtnProps, QCardActionsProps, QCardProps, QDateProps, QDialogProps, QFileProps, QFormProps, QHeaderProps, QIconProps, QImgProps, QInputProps, QItemLabelProps, QItemProps, QItemSectionProps, QLayoutProps, QListProps, QMenuProps, QRouteTabProps, QSelectProps, QSpinnerProps, QSplitterProps, QTableProps, QTabsProps, QToggleProps, QToolbarProps, QToolbarTitleProps, QTreeProps, VueClassProp, VueStyleObjectProp, VueStyleProp } from 'quasar';
2
2
  /**
3
3
  * Represents a single primitive value in the UI configuration.
4
4
  */
@@ -108,6 +108,10 @@ declare const Q_SPINNER_PROPS: readonly ["size", "color", "thickness"];
108
108
  * List of QBtnDropdownProps keys for type-safe UI design retrieval.
109
109
  */
110
110
  declare const Q_BTN_DROPDOWN_PROPS: readonly ["split", "disableMainBtn", "disableDropdown", "persistent", "noEscDismiss", "noRouteDismiss", "autoClose", "noRefocus", "noFocus", "icon", "iconRight", "noCaps", "noWrap", "align", "stack", "stretch", "dropdownIcon", "cover", "menuAnchor", "menuSelf", "menuOffset", "size", "outline", "flat", "unelevated", "rounded", "push", "square", "glossy", "fab", "fabMini", "padding", "color", "textColor", "dense", "ripple", "noIconAnimation", "contentStyle", "contentClass", "transitionShow", "transitionHide", "transitionDuration"];
111
+ /**
112
+ * List of QLayoutProps keys for type-safe UI design retrieval.
113
+ */
114
+ declare const Q_LAYOUT_PROPS: readonly ["view", "container"];
111
115
  /**
112
116
  * List of QListProps keys for type-safe UI design retrieval.
113
117
  */
@@ -236,6 +240,10 @@ export type LinidQSpinnerProps = Pick<QSpinnerProps, (typeof Q_SPINNER_PROPS)[nu
236
240
  * Subset of QBtnDropdown props supported in UI design configuration.
237
241
  */
238
242
  export type LinidQBtnDropdownProps = Pick<QBtnDropdownProps, (typeof Q_BTN_DROPDOWN_PROPS)[number]>;
243
+ /**
244
+ * Subset of QLayoutProps props supported in UI design configuration.
245
+ */
246
+ export type LinidQLayoutProps = Pick<QLayoutProps, (typeof Q_LAYOUT_PROPS)[number]>;
239
247
  /**
240
248
  * Subset of QListProps props supported in UI design configuration.
241
249
  */
@@ -275,5 +283,5 @@ export type LinidQComponentProps = LinidQAvatarProps | LinidQBadgeProps | LinidQ
275
283
  /**
276
284
  * Valid Quasar component names for type-safe UI design retrieval.
277
285
  */
278
- export type QComponentName = 'q-avatar' | 'q-badge' | 'q-banner' | 'q-btn' | 'q-btn-dropdown' | 'q-card' | 'q-card-actions' | 'q-date' | 'q-dialog' | 'q-file' | 'q-form' | 'q-header' | 'q-icon' | 'q-img' | 'q-input' | 'q-item' | 'q-item-label' | 'q-item-section' | 'q-list' | 'q-menu' | 'q-route-tab' | 'q-select' | 'q-spinner' | 'q-table' | 'q-tabs' | 'q-toggle' | 'q-toolbar' | 'q-toolbar-title' | 'q-tree' | 'q-splitter';
286
+ export type QComponentName = 'q-avatar' | 'q-badge' | 'q-banner' | 'q-btn' | 'q-btn-dropdown' | 'q-card' | 'q-card-actions' | 'q-date' | 'q-dialog' | 'q-file' | 'q-form' | 'q-header' | 'q-icon' | 'q-img' | 'q-input' | 'q-item' | 'q-item-label' | 'q-item-section' | 'q-layout' | 'q-list' | 'q-menu' | 'q-route-tab' | 'q-select' | 'q-spinner' | 'q-table' | 'q-tabs' | 'q-toggle' | 'q-toolbar' | 'q-toolbar-title' | 'q-tree' | 'q-splitter';
279
287
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linagora/linid-im-front-corelib",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "description": "Core library of the LinID Identity Manager project. Provides shared types, services, components, and utilities for front-end and plugin, enabling consistent integration across the LinID ecosystem.",
5
5
  "type": "module",
6
6
  "files": [