@linagora/linid-im-front-corelib 0.0.22 → 0.0.24
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/README.md +17 -13
- package/dist/core-lib.es.js +2097 -1609
- package/dist/core-lib.umd.js +10 -8
- package/dist/package.json +3 -2
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types/src/composables/useNotify.d.ts +9 -0
- package/dist/types/src/composables/useScopedI18n.d.ts +19 -0
- package/dist/types/src/index.d.ts +2 -0
- package/dist/types/src/services/uiEventService.d.ts +3 -0
- package/dist/types/src/types/uiEvent.d.ts +17 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ structures for identity management features such as CRUD operations on persons,
|
|
|
31
31
|
## **Tech Stack 🛠️**
|
|
32
32
|
|
|
33
33
|
| Area | Technology |
|
|
34
|
-
|
|
34
|
+
| --------------- | ------------------------ |
|
|
35
35
|
| Language | TypeScript |
|
|
36
36
|
| Framework | Vue.js (Composition API) |
|
|
37
37
|
| UI Toolkit | Quasar Framework |
|
|
@@ -80,31 +80,35 @@ This project is licensed under: GNU Affero General Public License version 3
|
|
|
80
80
|
|
|
81
81
|
A full technical documentation is available in the `docs/` directory:
|
|
82
82
|
|
|
83
|
-
- 🔄 **Module Lifecycle System**
|
|
84
|
-
Learn how business modules initialize themselves with the standardized lifecycle system.
|
|
83
|
+
- 🔄 **Module Lifecycle System**
|
|
84
|
+
Learn how business modules initialize themselves with the standardized lifecycle system.
|
|
85
85
|
→ [`docs/module-lifecycle.md`](docs/module-lifecycle.md)
|
|
86
86
|
|
|
87
|
-
- 🔌 **Plugin Zone Component**
|
|
88
|
-
Learn how to use the component that dynamically renders remote Vue plugins.
|
|
87
|
+
- 🔌 **Plugin Zone Component**
|
|
88
|
+
Learn how to use the component that dynamically renders remote Vue plugins.
|
|
89
89
|
→ [`docs/components-plugin-zones.md`](docs/components-plugin-zones.md)
|
|
90
90
|
|
|
91
|
-
- 🧰 **Services**
|
|
92
|
-
Detailed description of all services provided by the library.
|
|
91
|
+
- 🧰 **Services**
|
|
92
|
+
Detailed description of all services provided by the library.
|
|
93
93
|
→ [`docs/services.md`](docs/services.md)
|
|
94
94
|
|
|
95
|
-
- 🧩 **TypeScript Types & Interfaces**
|
|
96
|
-
Detailed description of all types and interfaces used in the plugin system.
|
|
95
|
+
- 🧩 **TypeScript Types & Interfaces**
|
|
96
|
+
Detailed description of all types and interfaces used in the plugin system.
|
|
97
97
|
→ [`docs/types-and-interfaces.md`](docs/types-and-interfaces.md)
|
|
98
98
|
|
|
99
|
-
- 🎨 **UI Design Configuration (`UiDesign`)**
|
|
99
|
+
- 🎨 **UI Design Configuration (`UiDesign`)**
|
|
100
100
|
Learn how to initialize and use the `UiDesign` singleton and the `useUiDesign` composable for dynamic UI
|
|
101
|
-
personalization.
|
|
101
|
+
personalization.
|
|
102
102
|
→ [`docs/ui-design.md`](docs/ui-design.md)
|
|
103
103
|
|
|
104
|
-
- 🎨 **I18n Configuration (`i18n`)**
|
|
105
|
-
Learn how to initialize and use the `i18n` singleton and the `useScopedI18n` composable for internationalization.
|
|
104
|
+
- 🎨 **I18n Configuration (`i18n`)**
|
|
105
|
+
Learn how to initialize and use the `i18n` singleton and the `useScopedI18n` composable for internationalization.
|
|
106
106
|
→ [`docs/i18n.md`](docs/ui-design.md)
|
|
107
107
|
|
|
108
|
+
- 🔔 **Notification System (`useNotify`)**
|
|
109
|
+
Learn how to use the `useNotify` composable to display notifications within your application.
|
|
110
|
+
→ [`docs/notify.md`](docs/notify.md)
|
|
111
|
+
|
|
108
112
|
More documents will be added as the library evolves.
|
|
109
113
|
|
|
110
114
|
---
|