@linagora/linid-im-front-corelib 0.0.57 → 0.0.59
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 +4 -0
- package/dist/core-lib.es.js +3043 -2713
- package/dist/core-lib.umd.js +15 -15
- package/dist/package.json +2 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types/src/composables/useFieldValidation.d.ts +2 -0
- package/dist/types/src/composables/useQuasarFieldValidation.d.ts +5 -4
- package/dist/types/src/composables/useTree.d.ts +16 -0
- package/dist/types/src/index.d.ts +3 -1
- package/dist/types/src/types/fieldValidation.d.ts +1 -1
- package/dist/types/src/types/linidTree.d.ts +21 -0
- package/dist/types/src/types/uiDesign.d.ts +11 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -117,6 +117,10 @@ A full technical documentation is available in the `docs/` directory:
|
|
|
117
117
|
Learn how to implement field validation compatible with Quasar framework.
|
|
118
118
|
→ [`docs/field-validation.md`](docs/field-validation.md)
|
|
119
119
|
|
|
120
|
+
- 🌳 **Tree (`useTree`)**
|
|
121
|
+
Learn how to convert between LinID tree models and Quasar QTree component formats.
|
|
122
|
+
→ [`docs/useTree.md`](docs/useTree.md)
|
|
123
|
+
|
|
120
124
|
More documents will be added as the library evolves.
|
|
121
125
|
|
|
122
126
|
---
|