vue-lib-exo-corrected 1.0.1-beta.1 → 1.0.1-beta.2
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 +31 -0
- package/dist/components/Atoms/Dropdown/Dropdown.vue.d.ts +117 -0
- package/dist/components/Atoms/Tag/Tag.vue.d.ts +33 -0
- package/dist/components/Molecules/ColorPicker/ColorPicker.vue.d.ts +27 -0
- package/dist/components/Molecules/ListNote/ListNote.vue.d.ts +8 -6
- package/dist/components/Molecules/ListUsers/ListUsers.vue.d.ts +6 -6
- package/dist/components/Molecules/LoginForm/LoginForm.vue.d.ts +48 -0
- package/dist/components/Molecules/MarkdownText/MarkdownText.vue.d.ts +3 -3
- package/dist/components/Molecules/ModalLayout/ModalLayout.vue.d.ts +46 -0
- package/dist/components/Molecules/NoteCard/NoteCard.vue.d.ts +8 -6
- package/dist/components/Molecules/NoteCreation/NoteCreation.vue.d.ts +14 -2
- package/dist/components/Molecules/RegisterForm/RegisterForm.vue.d.ts +66 -0
- package/dist/components/Molecules/SidebarTags/SidebarTags.vue.d.ts +57 -0
- package/dist/components/Molecules/TagCreationModal/TagCreationModal.vue.d.ts +16 -0
- package/dist/components/Molecules/TagDropdown/TagDropdown.vue.d.ts +54 -0
- package/dist/components/Molecules/UserCard/UserCard.vue.d.ts +6 -6
- package/dist/components/Organisms/Header/Header.vue.d.ts +2 -0
- package/dist/components/Organisms/Layout/Layout.vue.d.ts +80 -1
- package/dist/components/TodoListEasyExercice/AddItem.vue.d.ts +4 -0
- package/dist/components/TodoListEasyExercice/TodoItem.vue.d.ts +23 -0
- package/dist/components/TodoListEasyExercice/TodoList.vue.d.ts +16 -0
- package/dist/components/TodoListEasyExercice/TodoListVModel.vue.d.ts +15 -0
- package/dist/composables/useValidation/useValidation.d.ts +22 -0
- package/dist/index.d.ts +15 -9
- package/dist/lidinAppKitConfig/createLidinAppKit.d.ts +13 -7
- package/dist/lidinAppKitConfig/vuetifyConfig/defaultVuetifyConfig.d.ts +42 -42
- package/dist/schemas/note.schema.d.ts +77 -0
- package/dist/schemas/note.schema.ts +47 -0
- package/dist/schemas/tag.schema.d.ts +57 -0
- package/dist/schemas/tag.schema.ts +32 -0
- package/dist/style.css +2 -2
- package/dist/types/NoteType.d.ts +26 -0
- package/dist/types/TagType.d.ts +24 -0
- package/dist/vue-lib-exo-corrected.js +15394 -11347
- package/dist/vue-lib-exo-corrected.umd.cjs +9 -7
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-lib-exo-corrected",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "yarn@4.5.0",
|
|
6
6
|
"description": "A lightweight UI kit for Vue 3",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "vite build && yarn postbuild",
|
|
10
|
+
"build:watch": "BUILD_WATCH=1 vite build --watch",
|
|
10
11
|
"postbuild": "node postprocess-dts.cjs",
|
|
11
12
|
"dev": "vite --config playground/vite.config.ts",
|
|
12
13
|
"lint": "eslint . --ext .ts,.vue",
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"sass": "^1.80.4",
|
|
46
47
|
"uuid": "^9.0.0",
|
|
47
48
|
"vue": "^3.0.0",
|
|
48
|
-
"vue-i18n": "^
|
|
49
|
+
"vue-i18n": "^10.0.0",
|
|
49
50
|
"vuedraggable": "^4.1.0",
|
|
50
51
|
"vuetify": "^3.7.3",
|
|
51
52
|
"zod": "^3.25.32"
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
"vite": "^4.3.9",
|
|
91
92
|
"vite-plugin-dts": "^2.3.0",
|
|
92
93
|
"vue": "^3.5.13",
|
|
93
|
-
"vue-i18n": "^
|
|
94
|
+
"vue-i18n": "^10.0.0",
|
|
94
95
|
"vue-tsc": "^1.4.2",
|
|
95
96
|
"vuedraggable": "^4.1.0",
|
|
96
97
|
"vuetify": "^3.7.3",
|