@linagora/linid-im-front-corelib 0.0.25 → 0.0.26
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.
|
@@ -21,7 +21,7 @@ export type { Page, Pagination, QTableRequestEvent, QuasarPagination, QueryFilte
|
|
|
21
21
|
export type { LinidApiEndpointConfiguration, LinidAttributeConfiguration, LinidEntityConfiguration, } from './types/linidConfiguration';
|
|
22
22
|
export type { FederatedModule, ModuleHostConfig, RemoteModule, } from './types/module';
|
|
23
23
|
export type { ModuleLifecycleHooks, ModuleLifecycleResult, } from './types/moduleLifecycle';
|
|
24
|
-
export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQHeaderProps, LinidQIconProps, LinidQInputProps, LinidQRouteTabProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
|
|
24
|
+
export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQHeaderProps, LinidQIconProps, LinidQInputProps, LinidQDateProps, LinidQRouteTabProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
|
|
25
25
|
export type { NavigationMenuItem } from './types/linidUi';
|
|
26
26
|
export { ModuleLifecyclePhase } from './types/moduleLifecycle';
|
|
27
27
|
export { BasicRemoteModule } from './lifecycle/skeleton';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { NamedColor, QAvatarProps, QBadgeProps, QBtnProps, QCardActionsProps, QCardProps, QHeaderProps, QIconProps, QInputProps, QRouteTabProps, QTableProps, QTabsProps, QToggleProps, QToolbarProps, QToolbarTitleProps, VueClassProp, VueStyleProp } from 'quasar';
|
|
1
|
+
import type { NamedColor, QAvatarProps, QBadgeProps, QBtnProps, QCardActionsProps, QCardProps, QDateProps, QHeaderProps, QIconProps, QInputProps, QRouteTabProps, QTableProps, QTabsProps, QToggleProps, QToolbarProps, QToolbarTitleProps, VueClassProp, VueStyleProp } from 'quasar';
|
|
2
2
|
/**
|
|
3
3
|
* Represents a single primitive value in the UI configuration.
|
|
4
4
|
*/
|
|
@@ -80,6 +80,10 @@ declare const Q_TOGGLE_PROPS: readonly ["toggleOrder", "toggleIndeterminate", "k
|
|
|
80
80
|
* List of QInputProps keys for type-safe UI design retrieval.
|
|
81
81
|
*/
|
|
82
82
|
declare const Q_INPUT_PROPS: readonly ["autofocus", "stackLabel", "hideHint", "clearable", "clearIcon", "counter", "autogrow", "fillMask", "reverseFillMask", "unmaskedValue", "debounce", "labelColor", "color", "bgColor", "dark", "filled", "outlined", "borderless", "standout", "hideBottomSpace", "rounded", "square", "dense", "itemAligned", "noErrorIcon"];
|
|
83
|
+
/**
|
|
84
|
+
* List of QDateProps keys for type-safe UI design retrieval.
|
|
85
|
+
*/
|
|
86
|
+
declare const Q_DATE_PROPS: readonly ["landscape", "yearsInMonthView", "todayBtn", "minimal", "defaultView", "color", "textColor", "dark", "square", "flat", "bordered"];
|
|
83
87
|
/**
|
|
84
88
|
* Maps Quasar component names to their respective props keys for UI design retrieval.
|
|
85
89
|
*/
|
|
@@ -140,12 +144,16 @@ export type LinidQToggleProps = Pick<QToggleProps, (typeof Q_TOGGLE_PROPS)[numbe
|
|
|
140
144
|
* Subset of QInput props supported in UI design configuration.
|
|
141
145
|
*/
|
|
142
146
|
export type LinidQInputProps = Pick<QInputProps, (typeof Q_INPUT_PROPS)[number]>;
|
|
147
|
+
/**
|
|
148
|
+
* Subset of QInput props supported in UI design configuration.
|
|
149
|
+
*/
|
|
150
|
+
export type LinidQDateProps = Pick<QDateProps, (typeof Q_DATE_PROPS)[number]>;
|
|
143
151
|
/**
|
|
144
152
|
* Union type of all supported Quasar component props subsets.
|
|
145
153
|
*/
|
|
146
|
-
export type LinidQComponentProps = LinidQBtnProps | LinidQTabsProps | LinidQRouteTabProps | LinidQHeaderProps | LinidQToolbarProps | LinidQToolbarTitleProps | LinidQAvatarProps | LinidQBadgeProps | LinidQTableProps | LinidQCardProps | LinidQCardActionsProps | LinidQIconProps | LinidQToggleProps | LinidQInputProps;
|
|
154
|
+
export type LinidQComponentProps = LinidQBtnProps | LinidQTabsProps | LinidQRouteTabProps | LinidQHeaderProps | LinidQToolbarProps | LinidQToolbarTitleProps | LinidQAvatarProps | LinidQBadgeProps | LinidQTableProps | LinidQCardProps | LinidQCardActionsProps | LinidQIconProps | LinidQToggleProps | LinidQInputProps | LinidQDateProps;
|
|
147
155
|
/**
|
|
148
156
|
* Valid Quasar component names for type-safe UI design retrieval.
|
|
149
157
|
*/
|
|
150
|
-
export type QComponentName = 'q-btn' | 'q-tabs' | 'q-route-tab' | 'q-header' | 'q-toolbar' | 'q-toolbar-title' | 'q-avatar' | 'q-badge' | 'q-table' | 'q-card' | 'q-card-actions' | 'q-icon' | 'q-toggle' | 'q-input';
|
|
158
|
+
export type QComponentName = 'q-btn' | 'q-tabs' | 'q-route-tab' | 'q-header' | 'q-toolbar' | 'q-toolbar-title' | 'q-avatar' | 'q-badge' | 'q-table' | 'q-card' | 'q-card-actions' | 'q-icon' | 'q-toggle' | 'q-input' | 'q-date';
|
|
151
159
|
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.26",
|
|
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": [
|