@pristy/pristy-libvue 2.2.0 → 2.3.0

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.
Files changed (33) hide show
  1. package/dist/components/TreeExplorer.vue.d.ts +8 -2
  2. package/dist/components/TreeExplorer.vue.d.ts.map +1 -1
  3. package/dist/components/layouts/AppLayout.vue.d.ts.map +1 -1
  4. package/dist/components/navigation/ColumnTogglePanel.vue.d.ts +50 -0
  5. package/dist/components/navigation/ColumnTogglePanel.vue.d.ts.map +1 -0
  6. package/dist/components/navigation/DynamicContentView.vue.d.ts +80 -10
  7. package/dist/components/navigation/DynamicContentView.vue.d.ts.map +1 -1
  8. package/dist/components/pdfTools/PdfToolsComponent.vue.d.ts.map +1 -1
  9. package/dist/components/popup/CopyOrMovePopup.vue.d.ts +8 -2
  10. package/dist/components/popup/CopyOrMovePopup.vue.d.ts.map +1 -1
  11. package/dist/components/popup/CreateWorkflowPopup.vue.d.ts +4 -4
  12. package/dist/components/popup/MemberListPopup.vue.d.ts +2 -2
  13. package/dist/components/search/AdvancedSearchPanel.vue.d.ts +16 -6
  14. package/dist/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
  15. package/dist/components/search/AdvancedViewPanel.vue.d.ts +16 -6
  16. package/dist/components/search/AdvancedViewPanel.vue.d.ts.map +1 -1
  17. package/dist/components/toast/CustomToastContent.vue.d.ts +1 -1
  18. package/dist/components/users/MemberList.vue.d.ts +2 -2
  19. package/dist/i18n/index.d.ts +8 -0
  20. package/dist/i18n/index.d.ts.map +1 -1
  21. package/dist/index.d.ts +0 -1
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/pages/ErrorPage.vue.d.ts.map +1 -1
  24. package/dist/pristy-libvue.css +1 -1
  25. package/dist/pristy-libvue.es.js +7530 -7190
  26. package/dist/pristy-libvue.es.js.map +1 -1
  27. package/dist/pristy-libvue.umd.js +20 -20
  28. package/dist/pristy-libvue.umd.js.map +1 -1
  29. package/dist/stores/config.d.ts +0 -3
  30. package/dist/stores/config.d.ts.map +1 -1
  31. package/package.json +1 -1
  32. package/dist/stores/theme.d.ts +0 -37
  33. package/dist/stores/theme.d.ts.map +0 -1
@@ -13,7 +13,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
13
13
  ALFRESCO_ROOT: string;
14
14
  AUTH: string;
15
15
  PREVIEW_URL: string;
16
- PRIMEVUE_THEMES_URL: string;
17
16
  BREADCRUMB_ROOT_URL: string;
18
17
  EDIT_WITH_MSOFFICE: boolean;
19
18
  NEW_PASSWORD_RULES: string;
@@ -86,7 +85,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
86
85
  ALFRESCO_ROOT: string;
87
86
  AUTH: string;
88
87
  PREVIEW_URL: string;
89
- PRIMEVUE_THEMES_URL: string;
90
88
  BREADCRUMB_ROOT_URL: string;
91
89
  EDIT_WITH_MSOFFICE: boolean;
92
90
  NEW_PASSWORD_RULES: string;
@@ -158,7 +156,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
158
156
  ALFRESCO_ROOT: string;
159
157
  AUTH: string;
160
158
  PREVIEW_URL: string;
161
- PRIMEVUE_THEMES_URL: string;
162
159
  BREADCRUMB_ROOT_URL: string;
163
160
  EDIT_WITH_MSOFFICE: boolean;
164
161
  NEW_PASSWORD_RULES: string;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/stores/config.js"],"names":[],"mappings":";AAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6JI;;OAEG;;IAiBH;;;;;OAKG;0CADS,OAAO,CAAC,IAAI,CAAC;GA6B1B"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/stores/config.js"],"names":[],"mappings":";AAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4JI;;OAEG;;IAiBH;;;;;OAKG;0CADS,OAAO,CAAC,IAAI,CAAC;GA6B1B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pristy/pristy-libvue",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "Core library used by all Pristy applications",
5
5
  "homepage": "https://pristy.fr/en/",
6
6
  "author": "JECI SARL",
@@ -1,37 +0,0 @@
1
- import { StoreDefinition } from 'pinia';
2
- /**
3
- * `useThemeStore` is a Pinia store that manages theme-related settings such as the application's theme,
4
- * font size scaling, and dark mode toggle.
5
- *
6
- * The store contains the following properties and methods:
7
- *
8
- * State:
9
- * - `theme`: Stores the name of the current application theme.
10
- * - `indexScale`: Represents the index of the selected font size scale.
11
- * - `dark`: Indicates whether the current theme is in dark mode.
12
- *
13
- * Actions:
14
- * - `initScale()`: Initializes the font size scale by reading a previously saved index from local storage
15
- * or defaults to a pre-defined value. Updates the application's base font size accordingly.
16
- *
17
- * - `updateScale(index)`: Updates the font size scale to the specified index and reflects the changes
18
- * in the application's base font size. Saves the selected index to local storage for persistence.
19
- *
20
- * - `changeTheme(selectedTheme)`: Changes the current theme to the specified theme. Handles theme
21
- * stylesheet loading, updates the DOM, and saves the theme to local storage. Also toggles dark mode based
22
- * on the presence of "dark" in the theme name.
23
- *
24
- * - `initTheme()`: Initializes the theme by reading a previously saved theme from local storage or
25
- * defaults to a pre-defined theme. Applies the chosen theme to the application.
26
- */
27
- export const useThemeStore: StoreDefinition<"ThemeStore", {
28
- theme: string;
29
- indexScale: string;
30
- dark: boolean;
31
- }, {}, {
32
- initScale(): void;
33
- updateScale(index: any): void;
34
- changeTheme(selectedTheme: any): void;
35
- initTheme(): void;
36
- }>;
37
- //# sourceMappingURL=theme.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/stores/theme.js"],"names":[],"mappings":";AAmBA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH;;;;;;;;;GA+DG"}