@saooti/octopus-sdk 35.0.0 → 35.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "35.0.0",
3
+ "version": "35.0.1",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -20,19 +20,19 @@
20
20
  "@vue/cli": "^5.0.8",
21
21
  "@vue/compat": "^3.2.45",
22
22
  "autoprefixer": "^10.4.13",
23
- "axios": "^1.2.2",
23
+ "axios": "^1.3.0",
24
24
  "dayjs": "^1.11.7",
25
25
  "express": "^4.18.2",
26
- "hls.js": "^1.2.9",
26
+ "hls.js": "^1.3.2",
27
27
  "humanize-duration": "^3.27.2",
28
- "jest": "^29.3.1",
28
+ "jest": "^29.4.1",
29
29
  "jquery": "^3.6.3",
30
30
  "qrcode.vue": "^3.3.3",
31
- "sass": "^1.57.1",
32
- "sonarqube-scanner": "^2.9.1",
33
- "swiper": "^8.4.5",
31
+ "sass": "^1.58.0",
32
+ "sonarqube-scanner": "^3.0.0",
33
+ "swiper": "^8.4.7",
34
34
  "v-calendar": "^3.0.0-alpha.8",
35
- "vite": "^3.2.5",
35
+ "vite": "^4.0.4",
36
36
  "vue": "^3.2.45",
37
37
  "vue-i18n": "^9.2.2",
38
38
  "vue-multiselect": "^3.0.0-alpha.2",
@@ -44,14 +44,14 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/jquery": "^3.5.16",
47
- "@typescript-eslint/eslint-plugin": "^5.48.0",
48
- "@typescript-eslint/parser": "^5.48.0",
49
- "@vitejs/plugin-vue": "^3.2.0",
47
+ "@typescript-eslint/eslint-plugin": "^5.50.0",
48
+ "@typescript-eslint/parser": "^5.50.0",
49
+ "@vitejs/plugin-vue": "^4.0.0",
50
50
  "@vue/compiler-sfc": "^3.2.45",
51
51
  "@vue/eslint-config-typescript": "^11.0.2",
52
- "eslint": "^8.31.0",
53
- "eslint-plugin-vue": "^7.17.0",
54
- "typescript": "^4.9.4"
52
+ "eslint": "^8.33.0",
53
+ "eslint-plugin-vue": "^9.9.0",
54
+ "typescript": "^4.9.5"
55
55
  },
56
56
  "eslintConfig": {
57
57
  "root": true,
@@ -28,7 +28,7 @@
28
28
  "
29
29
  :name="transitionName"
30
30
  class="element-list-inline"
31
- tag="ul"
31
+ tag="div"
32
32
  :class="[
33
33
  alignLeft ? 'justify-content-start' : '',
34
34
  overflowScroll ? 'overflowScroll' : '',
@@ -27,7 +27,7 @@
27
27
  <transition-group
28
28
  :name="transitionName"
29
29
  class="element-list-inline"
30
- tag="ul"
30
+ tag="div"
31
31
  :class="[
32
32
  alignLeft ? 'justify-content-start' : '',
33
33
  overflowScroll ? 'overflowScroll' : '',
@@ -27,7 +27,7 @@
27
27
  v-show="!loading"
28
28
  :name="transitionName"
29
29
  class="element-list-inline"
30
- tag="ul"
30
+ tag="div"
31
31
  :class="[
32
32
  alignLeft ? 'justify-content-start' : '',
33
33
  overflowScroll ? 'overflowScroll' : '',
package/src/i18n.ts CHANGED
@@ -16,7 +16,7 @@ export function setupI18n(options: { locale: string }, isEducation: boolean) {
16
16
 
17
17
  export function setI18nLanguage(i18n: any, locale: string) {
18
18
  i18n.locale = locale;
19
- dayjs.locale(locale)
19
+ dayjs.locale(locale);
20
20
  const html= document.querySelector('html');
21
21
  if(html){
22
22
  html.setAttribute('lang', locale);