codevdesign 1.0.59 → 1.0.60

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.
@@ -20,7 +20,7 @@
20
20
  import * as tinymce from 'tinymce'
21
21
  import Editor from '@tinymce/tinymce-vue'
22
22
  import type { Editor as TinyMCEEditor } from 'tinymce'
23
- void tinymce
23
+ ;(globalThis as typeof globalThis & { tinymce: typeof tinymce }).tinymce = tinymce
24
24
  // Core / skins / thème
25
25
  import 'tinymce/icons/default/icons.min.js'
26
26
  import 'tinymce/themes/silver/theme.min.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",
@@ -13,12 +13,8 @@
13
13
  "build": "vite build"
14
14
  },
15
15
  "dependencies": {
16
- "vuetify": "^3.11.2",
17
- "vue-i18n": "^11.2.1",
18
16
  "tinymce": "^8.3.2",
19
17
  "tinymce-i18n": "^26.1.12",
20
- "@tinymce/tinymce-vue": "^6.3.0",
21
- "vue": "^3.5.18",
22
18
  "sortablejs": "^1.15.6",
23
19
  "@e965/xlsx": "^0.20.3"
24
20
  },
@@ -28,5 +24,10 @@
28
24
  "typescript": "^5.8.3",
29
25
  "vite": "^7.0.0"
30
26
  },
31
- "peerDependencies": {}
27
+ "peerDependencies": {
28
+ "vue": "^3.5.0",
29
+ "vuetify": "^3.11.0",
30
+ "vue-i18n": "^11.0.0",
31
+ "@tinymce/tinymce-vue": "^6.3.0"
32
+ }
32
33
  }