@saooti/octopus-sdk 29.0.3 → 29.0.4

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 (3) hide show
  1. package/README.md +1 -0
  2. package/package.json +8 -11
  3. package/src/main.ts +0 -24
package/README.md CHANGED
@@ -468,6 +468,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
468
468
  * 29.0.1 Upgrade npm
469
469
  * 29.0.2 Début de suppression bootstrap vue
470
470
  * 29.0.3 Début de suppression bootstrap vue
471
+ * 29.0.4 vue3
471
472
 
472
473
 
473
474
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "29.0.3",
3
+ "version": "29.0.4",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -19,10 +19,8 @@
19
19
  "@vue/cli": "^5.0.0-beta.4",
20
20
  "@vue/compat": "^3.1.0",
21
21
  "axios": "^0.21.4",
22
- "bootstrap": "^5.1.1",
23
- "bootstrap-vue": "^2.4.0",
24
- "bootstrap-vue-3": "0.0.4",
25
- "core-js": "^3.18.1",
22
+ "bootstrap": "^5.1.2",
23
+ "core-js": "^3.18.2",
26
24
  "hls.js": "^1.0.10",
27
25
  "humanize-duration": "^3.27.0",
28
26
  "jquery": "^3.6.0",
@@ -30,11 +28,10 @@
30
28
  "moment": "^2.29.0",
31
29
  "moment-locales-webpack-plugin": "^1.2.0",
32
30
  "popper.js": "^1.16.1",
33
- "portal-vue": "^2.1.7",
34
31
  "qrcode.vue": "^3.3.2",
35
32
  "sass": "^1.42.1",
36
33
  "sass-loader": "^12.1.0",
37
- "v-calendar": "^3.0.0-alpha.5",
34
+ "v-calendar": "^3.0.0-alpha.6",
38
35
  "vue": "^3.1.0",
39
36
  "vue-class-component": "^7.2.3",
40
37
  "vue-i18n": "^9.2.0-beta.7",
@@ -44,15 +41,15 @@
44
41
  "vue-router": "^4.0.11",
45
42
  "vue3-swatches": "^1.0.3",
46
43
  "vuex": "^4.0.2",
47
- "webpack": "^5.55.1"
44
+ "webpack": "^5.58.0"
48
45
  },
49
46
  "devDependencies": {
50
47
  "@types/bootstrap": "^5.1.6",
51
48
  "@types/hls.js": "^1.0.0",
52
49
  "@types/jquery": "^3.5.6",
53
50
  "@types/vue-datetime": "^1.0.1",
54
- "@typescript-eslint/eslint-plugin": "^4.32.0",
55
- "@typescript-eslint/parser": "^4.32.0",
51
+ "@typescript-eslint/eslint-plugin": "^4.33.0",
52
+ "@typescript-eslint/parser": "^4.33.0",
56
53
  "@vue/cli-plugin-babel": "^5.0.0-beta.4",
57
54
  "@vue/cli-plugin-eslint": "^5.0.0-beta.4",
58
55
  "@vue/cli-plugin-typescript": "^5.0.0-beta.4",
@@ -61,7 +58,7 @@
61
58
  "@vue/eslint-config-typescript": "^7.0.0",
62
59
  "babel-eslint": "^10.0.3",
63
60
  "eslint": "^7.32.0",
64
- "eslint-plugin-vue": "^7.18.0",
61
+ "eslint-plugin-vue": "^7.19.1",
65
62
  "typescript": "^4.4.3"
66
63
  },
67
64
  "eslintConfig": {
package/src/main.ts CHANGED
@@ -1,18 +1,5 @@
1
1
  import { createApp } from 'vue';
2
2
  import { VueReCaptcha } from 'vue-recaptcha-v3';
3
- /* import {
4
- ModalPlugin,
5
- FormRadioPlugin,
6
- CardPlugin,
7
- ButtonPlugin,
8
- DropdownPlugin,
9
- PopoverPlugin,
10
- TabsPlugin,
11
- FormGroupPlugin,
12
- FormTextareaPlugin,
13
- CollapsePlugin } from 'bootstrap-vue-3'; */
14
- /* import bootstrap from 'bootstrap-vue-3';
15
- import 'bootstrap-vue-3/dist/bootstrap-vue-3.css'; */
16
3
  import App from './App.vue';
17
4
  import { createI18n } from 'vue-i18n';
18
5
  import I18nResources from './locale/messages';
@@ -67,17 +54,6 @@ paramStore
67
54
  .use(i18n)
68
55
  .use(store)
69
56
  .use(router)
70
- /* .use(bootstrap) */
71
57
  .use(VueReCaptcha, { siteKey: '6LfyP_4ZAAAAAPODj8nov2LvosIwcX0GYeBSungh' })
72
- /* .use(ModalPlugin)
73
- .use(FormRadioPlugin)
74
- .use(CardPlugin)
75
- .use(ButtonPlugin)
76
- .use(FormTextareaPlugin)
77
- .use(DropdownPlugin)
78
- .use(PopoverPlugin)
79
- .use(TabsPlugin)
80
- .use(FormGroupPlugin)
81
- .use(CollapsePlugin) */
82
58
  .mount('#app');
83
59
  });