@vc-shell/framework 1.1.38 → 1.1.39

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": "@vc-shell/framework",
3
- "version": "1.1.38",
3
+ "version": "1.1.39",
4
4
  "type": "module",
5
5
  "main": "./dist/framework.js",
6
6
  "types": "./dist/index.d.ts",
@@ -70,9 +70,9 @@
70
70
  "devDependencies": {
71
71
  "@fullhuman/postcss-purgecss": "^7.0.2",
72
72
  "@types/dompurify": "^3.0.5",
73
- "@vc-shell/api-client-generator": "^1.1.38",
74
- "@vc-shell/config-generator": "^1.1.38",
75
- "@vc-shell/ts-config": "^1.1.38",
73
+ "@vc-shell/api-client-generator": "^1.1.39",
74
+ "@vc-shell/config-generator": "^1.1.39",
75
+ "@vc-shell/ts-config": "^1.1.39",
76
76
  "@vitejs/plugin-vue": "^5.2.3",
77
77
  "@vue/test-utils": "^2.4.5",
78
78
  "cypress-signalr-mock": "^1.5.0",
@@ -100,7 +100,7 @@
100
100
  v-bind="item"
101
101
  >
102
102
  <div class="vc-select__multiple-item">
103
- <template v-if="loading || defaultOptionLoading">
103
+ <template v-if="loading">
104
104
  <span class="vc-select__loading">{{
105
105
  t("COMPONENTS.MOLECULES.VC_SELECT.LOADING")
106
106
  }}</span>
@@ -119,7 +119,7 @@
119
119
  </slot>
120
120
  </template>
121
121
  <template v-else-if="!multiple">
122
- <template v-if="loading || defaultOptionLoading">
122
+ <template v-if="loading">
123
123
  <span class="vc-select__loading">{{
124
124
  t("COMPONENTS.MOLECULES.VC_SELECT.LOADING")
125
125
  }}</span>
@@ -130,7 +130,7 @@
130
130
  v-bind="item"
131
131
  >
132
132
  {{
133
- loading || defaultOptionLoading
133
+ loading
134
134
  ? t("COMPONENTS.MOLECULES.VC_SELECT.LOADING")
135
135
  : getEmittingOptionValue(item.opt)
136
136
  }}