@linagora/linid-im-front-corelib 0.0.69 → 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';
|
|
@@ -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.
|
|
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": [
|