@linagora/linid-im-front-corelib 0.0.73 → 0.0.75
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 +159 -122
- package/dist/core-lib.umd.js +17 -17
- 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
|
@@ -37,7 +37,7 @@ export type { Page, Pagination, QTableRequestEvent, QuasarPagination, QueryFilte
|
|
|
37
37
|
export type { AttributeInputType, LinidApiEndpointConfiguration, LinidAttributeConfiguration, LinidEntityConfiguration, } from './types/linidConfiguration';
|
|
38
38
|
export type { FederatedModule, ModuleHostConfig, ModuleZoneDefinition, RemoteModule, } from './types/module';
|
|
39
39
|
export type { ModuleLifecycleHooks, ModuleLifecycleResult, } from './types/moduleLifecycle';
|
|
40
|
-
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';
|
|
40
|
+
export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBannerProps, LinidQBtnDropdownProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQCheckboxProps, LinidQDateProps, LinidQDialogProps, LinidQFieldProps, LinidQFileProps, LinidQFormProps, LinidQHeaderProps, LinidQIconProps, LinidQChipProps, LinidQImgProps, LinidQInputProps, LinidQItemLabelProps, LinidQItemProps, LinidQItemSectionProps, LinidQLayoutProps, LinidQListProps, LinidQMenuProps, LinidQRouteTabProps, LinidQSelectProps, LinidQSpinnerProps, LinidQSplitterProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, LinidQTreeProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
|
|
41
41
|
export type { NavigationMenuItem } from './types/linidUi';
|
|
42
42
|
export { ModuleLifecyclePhase } from './types/moduleLifecycle';
|
|
43
43
|
export { BasicRemoteModule } from './lifecycle/skeleton';
|
|
@@ -1,4 +1,4 @@
|
|
|
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';
|
|
1
|
+
import type { NamedColor, QAvatarProps, QBadgeProps, QBannerProps, QBtnDropdownProps, QBtnProps, QCardActionsProps, QCardProps, QCheckboxProps, QChipProps, QDateProps, QDialogProps, QFieldProps, 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
|
*/
|
|
@@ -72,6 +72,10 @@ declare const Q_CARD_ACTIONS_PROPS: readonly ["align", "vertical"];
|
|
|
72
72
|
* List of QIconProps keys for type-safe UI design retrieval.
|
|
73
73
|
*/
|
|
74
74
|
declare const Q_ICON_PROPS: readonly ["left", "right", "name", "size", "color"];
|
|
75
|
+
/**
|
|
76
|
+
* List of QChipProps keys for type-safe UI design retrieval.
|
|
77
|
+
*/
|
|
78
|
+
declare const Q_CHIP_PROPS: readonly ["removeAriaLabel", "icon", "iconRight", "iconRemove", "iconSelected", "dense", "size", "dark", "color", "textColor", "square", "outline", "ripple"];
|
|
75
79
|
/**
|
|
76
80
|
* List of QToggleProps keys for type-safe UI design retrieval.
|
|
77
81
|
*/
|
|
@@ -92,6 +96,10 @@ declare const Q_DATE_PROPS: readonly ["landscape", "yearsInMonthView", "todayBtn
|
|
|
92
96
|
* List of QImgProps keys for type-safe UI design retrieval.
|
|
93
97
|
*/
|
|
94
98
|
declare const Q_IMG_PROPS: readonly ["loading", "loadingShowDelay", "noSpinner", "noNativeMenu", "noTransition", "draggable", "src", "srcset", "sizes", "placeholderSrc", "errorSrc", "ratio", "initialRatio", "width", "height", "fit", "position", "imgClass", "imgStyle", "spinnerColor", "spinnerSize"];
|
|
99
|
+
/**
|
|
100
|
+
* List of QFieldProps keys for type-safe UI design retrieval.
|
|
101
|
+
*/
|
|
102
|
+
declare const Q_FIELD_PROPS: readonly ["clearable", "autofocus", "stackLabel", "hideHint", "clearIcon", "counter", "labelColor", "color", "bgColor", "dark", "filled", "outlined", "borderless", "standout", "hideBottomSpace", "rounded", "square", "dense", "itemAligned", "noErrorIcon"];
|
|
95
103
|
/**
|
|
96
104
|
* List of QFileProps keys for type-safe UI design retrieval.
|
|
97
105
|
*/
|
|
@@ -208,6 +216,10 @@ export type LinidQCheckboxProps = Pick<QCheckboxProps, (typeof Q_CHECKBOX_PROPS)
|
|
|
208
216
|
* Subset of QIcon props supported in UI design configuration.
|
|
209
217
|
*/
|
|
210
218
|
export type LinidQIconProps = Pick<QIconProps, (typeof Q_ICON_PROPS)[number]>;
|
|
219
|
+
/**
|
|
220
|
+
* Subset of QChip props supported in UI design configuration.
|
|
221
|
+
*/
|
|
222
|
+
export type LinidQChipProps = Pick<QChipProps, (typeof Q_CHIP_PROPS)[number]>;
|
|
211
223
|
/**
|
|
212
224
|
* Subset of QToggle props supported in UI design configuration.
|
|
213
225
|
*/
|
|
@@ -224,6 +236,10 @@ export type LinidQDateProps = Pick<QDateProps, (typeof Q_DATE_PROPS)[number]>;
|
|
|
224
236
|
* Subset of QImg props supported in UI design configuration.
|
|
225
237
|
*/
|
|
226
238
|
export type LinidQImgProps = Pick<QImgProps, (typeof Q_IMG_PROPS)[number]>;
|
|
239
|
+
/**
|
|
240
|
+
* Subset of QFieldProps props supported in UI design configuration.
|
|
241
|
+
*/
|
|
242
|
+
export type LinidQFieldProps = Pick<QFieldProps, (typeof Q_FIELD_PROPS)[number]>;
|
|
227
243
|
/**
|
|
228
244
|
* Subset of QFile props supported in UI design configuration.
|
|
229
245
|
*/
|
|
@@ -287,9 +303,9 @@ export type LinidQSplitterProps = Pick<QSplitterProps, (typeof Q_SPLITTER_PROPS)
|
|
|
287
303
|
/**
|
|
288
304
|
* Union type of all supported Quasar component props subsets.
|
|
289
305
|
*/
|
|
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;
|
|
306
|
+
export type LinidQComponentProps = LinidQAvatarProps | LinidQBadgeProps | LinidQBannerProps | LinidQBtnDropdownProps | LinidQBtnProps | LinidQCardActionsProps | LinidQCardProps | LinidQCheckboxProps | LinidQDateProps | LinidQDialogProps | LinidQFieldProps | LinidQFileProps | LinidQFormProps | LinidQHeaderProps | LinidQIconProps | LinidQChipProps | LinidQImgProps | LinidQInputProps | LinidQItemLabelProps | LinidQItemProps | LinidQItemSectionProps | LinidQListProps | LinidQMenuProps | LinidQRouteTabProps | LinidQSelectProps | LinidQSpinnerProps | LinidQSplitterProps | LinidQTableProps | LinidQTabsProps | LinidQToggleProps | LinidQToolbarProps | LinidQToolbarTitleProps | LinidQTreeProps;
|
|
291
307
|
/**
|
|
292
308
|
* Valid Quasar component names for type-safe UI design retrieval.
|
|
293
309
|
*/
|
|
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';
|
|
310
|
+
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-field' | 'q-file' | 'q-form' | 'q-header' | 'q-icon' | 'q-chip' | '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';
|
|
295
311
|
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.75",
|
|
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": [
|