@linagora/linid-im-front-corelib 0.0.69 → 0.0.71
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/core-lib.es.js +765 -752
- package/dist/core-lib.umd.js +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types/src/index.d.ts +1 -1
- package/dist/types/src/types/uiDesign.d.ts +19 -3
- package/package.json +1 -1
|
@@ -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, LinidQCheckboxProps, 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, QCheckboxProps, 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
|
*/
|
|
@@ -76,6 +76,10 @@ declare const Q_ICON_PROPS: readonly ["left", "right", "name", "size", "color"];
|
|
|
76
76
|
* List of QToggleProps keys for type-safe UI design retrieval.
|
|
77
77
|
*/
|
|
78
78
|
declare const Q_TOGGLE_PROPS: readonly ["toggleOrder", "toggleIndeterminate", "keepColor", "icon", "checkedIcon", "uncheckedIcon", "indeterminateIcon", "leftLabel", "size", "color", "dark", "dense", "iconColor"];
|
|
79
|
+
/**
|
|
80
|
+
* List of QToggleProps keys for type-safe UI design retrieval.
|
|
81
|
+
*/
|
|
82
|
+
declare const Q_CHECKBOX_PROPS: readonly ["toggleOrder", "toggleIndeterminate", "keepColor", "checkedIcon", "uncheckedIcon", "indeterminateIcon", "size", "color", "dark", "dense"];
|
|
79
83
|
/**
|
|
80
84
|
* List of QInputProps keys for type-safe UI design retrieval.
|
|
81
85
|
*/
|
|
@@ -108,6 +112,10 @@ declare const Q_SPINNER_PROPS: readonly ["size", "color", "thickness"];
|
|
|
108
112
|
* List of QBtnDropdownProps keys for type-safe UI design retrieval.
|
|
109
113
|
*/
|
|
110
114
|
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"];
|
|
115
|
+
/**
|
|
116
|
+
* List of QLayoutProps keys for type-safe UI design retrieval.
|
|
117
|
+
*/
|
|
118
|
+
declare const Q_LAYOUT_PROPS: readonly ["view", "container"];
|
|
111
119
|
/**
|
|
112
120
|
* List of QListProps keys for type-safe UI design retrieval.
|
|
113
121
|
*/
|
|
@@ -192,6 +200,10 @@ export type LinidQCardProps = Pick<QCardProps, (typeof Q_CARD_PROPS)[number]>;
|
|
|
192
200
|
* Subset of QCardActions props supported in UI design configuration.
|
|
193
201
|
*/
|
|
194
202
|
export type LinidQCardActionsProps = Pick<QCardActionsProps, (typeof Q_CARD_ACTIONS_PROPS)[number]>;
|
|
203
|
+
/**
|
|
204
|
+
* Subset of QCheckboxProps props supported in UI design configuration.
|
|
205
|
+
*/
|
|
206
|
+
export type LinidQCheckboxProps = Pick<QCheckboxProps, (typeof Q_CHECKBOX_PROPS)[number]>;
|
|
195
207
|
/**
|
|
196
208
|
* Subset of QIcon props supported in UI design configuration.
|
|
197
209
|
*/
|
|
@@ -236,6 +248,10 @@ export type LinidQSpinnerProps = Pick<QSpinnerProps, (typeof Q_SPINNER_PROPS)[nu
|
|
|
236
248
|
* Subset of QBtnDropdown props supported in UI design configuration.
|
|
237
249
|
*/
|
|
238
250
|
export type LinidQBtnDropdownProps = Pick<QBtnDropdownProps, (typeof Q_BTN_DROPDOWN_PROPS)[number]>;
|
|
251
|
+
/**
|
|
252
|
+
* Subset of QLayoutProps props supported in UI design configuration.
|
|
253
|
+
*/
|
|
254
|
+
export type LinidQLayoutProps = Pick<QLayoutProps, (typeof Q_LAYOUT_PROPS)[number]>;
|
|
239
255
|
/**
|
|
240
256
|
* Subset of QListProps props supported in UI design configuration.
|
|
241
257
|
*/
|
|
@@ -271,9 +287,9 @@ export type LinidQSplitterProps = Pick<QSplitterProps, (typeof Q_SPLITTER_PROPS)
|
|
|
271
287
|
/**
|
|
272
288
|
* Union type of all supported Quasar component props subsets.
|
|
273
289
|
*/
|
|
274
|
-
export type LinidQComponentProps = LinidQAvatarProps | LinidQBadgeProps | LinidQBannerProps | LinidQBtnDropdownProps | LinidQBtnProps | LinidQCardActionsProps | LinidQCardProps | LinidQDateProps | LinidQDialogProps | LinidQFileProps | LinidQFormProps | LinidQHeaderProps | LinidQIconProps | LinidQImgProps | LinidQInputProps | LinidQItemLabelProps | LinidQItemProps | LinidQItemSectionProps | LinidQListProps | LinidQMenuProps | LinidQRouteTabProps | LinidQSelectProps | LinidQSpinnerProps | LinidQTableProps | LinidQTabsProps | LinidQToggleProps | LinidQToolbarProps | LinidQToolbarTitleProps | LinidQTreeProps;
|
|
290
|
+
export type LinidQComponentProps = LinidQAvatarProps | LinidQBadgeProps | LinidQBannerProps | LinidQBtnDropdownProps | LinidQBtnProps | LinidQCardActionsProps | LinidQCardProps | LinidQCheckboxProps | LinidQDateProps | LinidQDialogProps | LinidQFileProps | LinidQFormProps | LinidQHeaderProps | LinidQIconProps | LinidQImgProps | LinidQInputProps | LinidQItemLabelProps | LinidQItemProps | LinidQItemSectionProps | LinidQListProps | LinidQMenuProps | LinidQRouteTabProps | LinidQSelectProps | LinidQSpinnerProps | LinidQSplitterProps | LinidQTableProps | LinidQTabsProps | LinidQToggleProps | LinidQToolbarProps | LinidQToolbarTitleProps | LinidQTreeProps;
|
|
275
291
|
/**
|
|
276
292
|
* Valid Quasar component names for type-safe UI design retrieval.
|
|
277
293
|
*/
|
|
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';
|
|
294
|
+
export type QComponentName = 'q-avatar' | 'q-badge' | 'q-banner' | 'q-btn' | 'q-btn-dropdown' | 'q-card' | 'q-card-actions' | 'q-checkbox' | '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
295
|
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.71",
|
|
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": [
|