@linagora/linid-im-front-corelib 0.0.49 → 0.0.50
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 +1621 -1602
- package/dist/core-lib.umd.js +14 -14
- package/dist/package.json +4 -3
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types/src/index.d.ts +4 -3
- package/dist/types/src/services/nunjucksService.d.ts +13 -0
- package/package.json +4 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as LinidZoneRenderer } from './components/LinidZoneRenderer.vue';
|
|
2
|
+
export { useDialog } from './composables/useDialog';
|
|
2
3
|
export { useFieldValidation } from './composables/useFieldValidation';
|
|
3
4
|
export { useNotify } from './composables/useNotify';
|
|
4
|
-
export { useDialog } from './composables/useDialog';
|
|
5
5
|
export { usePagination } from './composables/usePagination';
|
|
6
6
|
export { useQuasarFieldValidation } from './composables/useQuasarFieldValidation';
|
|
7
7
|
export { useQuasarRules } from './composables/useQuasarRules';
|
|
@@ -16,6 +16,7 @@ export { getI18nInstance, setI18nInstance } from './services/i18nService';
|
|
|
16
16
|
export { getApiEndpointsConfiguration, getEntitiesConfiguration, getEntityConfiguration, } from './services/linidConfigurationService';
|
|
17
17
|
export { deleteEntityById, getEntities, getEntityById, saveEntity, updateEntity, } from './services/linidEntityService';
|
|
18
18
|
export { getModuleHostConfiguration, registerModuleHostConfiguration, } from './services/linidModuleConfigurationService';
|
|
19
|
+
export { getNunjucksEnv, setNunjucksEnv } from './services/nunjucksService';
|
|
19
20
|
export { deepEqual, fromDot, isObject, merge, renameKeys, } from './services/objectService';
|
|
20
21
|
export { getPiniaStore, setPiniaStore } from './services/piniaStoreService';
|
|
21
22
|
export { getUiDesign, setUiDesign } from './services/uiDesignService';
|
|
@@ -24,9 +25,9 @@ export type { LinidZoneEntry } from './types/linidZone';
|
|
|
24
25
|
export type { LinidRoute, LinidRoutes } from './types/linidRoute';
|
|
25
26
|
export type { Page, Pagination, QTableRequestEvent, QuasarPagination, QueryFilter, } from './types/page';
|
|
26
27
|
export type { AttributeInputType, LinidApiEndpointConfiguration, LinidAttributeConfiguration, LinidEntityConfiguration, } from './types/linidConfiguration';
|
|
27
|
-
export type { FederatedModule, ModuleHostConfig,
|
|
28
|
+
export type { FederatedModule, ModuleHostConfig, ModuleZoneDefinition, RemoteModule, } from './types/module';
|
|
28
29
|
export type { ModuleLifecycleHooks, ModuleLifecycleResult, } from './types/moduleLifecycle';
|
|
29
|
-
export type { LinidQAvatarProps, LinidQBadgeProps,
|
|
30
|
+
export type { LinidQAvatarProps, LinidQBadgeProps, LinidQBtnDropdownProps, LinidQBtnProps, LinidQCardActionsProps, LinidQCardProps, LinidQDateProps, LinidQDialogProps, LinidQFileProps, LinidQFormProps, LinidQHeaderProps, LinidQIconProps, LinidQImgProps, LinidQInputProps, LinidQItemLabelProps, LinidQItemProps, LinidQItemSectionProps, LinidQListProps, LinidQRouteTabProps, LinidQSelectProps, LinidQSpinnerProps, LinidQTableProps, LinidQTabsProps, LinidQToggleProps, LinidQToolbarProps, LinidQToolbarTitleProps, UiDesign, UiDesignNamespace, UiDesignValue, } from './types/uiDesign';
|
|
30
31
|
export type { NavigationMenuItem } from './types/linidUi';
|
|
31
32
|
export { ModuleLifecyclePhase } from './types/moduleLifecycle';
|
|
32
33
|
export { BasicRemoteModule } from './lifecycle/skeleton';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Environment } from 'nunjucks';
|
|
2
|
+
/**
|
|
3
|
+
* Initializes the shared Nunjucks environment instance.
|
|
4
|
+
* Should be called once by the host application during boot.
|
|
5
|
+
* @param env - The Nunjucks Environment instance to use as the shared environment.
|
|
6
|
+
*/
|
|
7
|
+
export declare function setNunjucksEnv(env: Environment): void;
|
|
8
|
+
/**
|
|
9
|
+
* Returns the shared Nunjucks environment instance.
|
|
10
|
+
* Must be called after initialization via `setNunjucksEnv()`.
|
|
11
|
+
* @returns The shared Nunjucks Environment instance.
|
|
12
|
+
*/
|
|
13
|
+
export declare function getNunjucksEnv(): Environment;
|
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.50",
|
|
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": [
|
|
@@ -46,13 +46,14 @@
|
|
|
46
46
|
"axios": "1.13.2",
|
|
47
47
|
"pinia": "3.0.4",
|
|
48
48
|
"quasar": "2.18.6",
|
|
49
|
+
"rxjs": "7.8.2",
|
|
49
50
|
"vue": "3.5.25",
|
|
50
|
-
"vue-i18n": "11.2.2"
|
|
51
|
-
"rxjs": "7.8.2"
|
|
51
|
+
"vue-i18n": "11.2.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@eslint/js": "9.39.1",
|
|
55
55
|
"@types/node": "25.0.0",
|
|
56
|
+
"@types/nunjucks": "3.2.6",
|
|
56
57
|
"@vitejs/plugin-vue": "6.0.2",
|
|
57
58
|
"@vitest/coverage-v8": "4.0.15",
|
|
58
59
|
"@vue/eslint-config-prettier": "10.2.0",
|