survey-vue3-ui 2.5.27 → 2.5.29
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": "survey-vue3-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.29",
|
|
4
4
|
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "https://github.com/surveyjs/surveyjs.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"survey-core": "2.5.
|
|
22
|
+
"survey-core": "2.5.29",
|
|
23
23
|
"vue": "^3.4.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/survey-vue3-ui.es.js
CHANGED
|
@@ -4958,30 +4958,32 @@ const et = /* @__PURE__ */ Go(Jo, [["render", xo]]), st = /* @__PURE__ */ p("use
|
|
|
4958
4958
|
}), Dt = ["aria-label"], G = /* @__PURE__ */ y({
|
|
4959
4959
|
__name: "Progress",
|
|
4960
4960
|
props: {
|
|
4961
|
-
|
|
4961
|
+
model: {},
|
|
4962
4962
|
container: {},
|
|
4963
4963
|
css: {}
|
|
4964
4964
|
},
|
|
4965
4965
|
setup(a) {
|
|
4966
|
-
const e = a
|
|
4966
|
+
const e = a;
|
|
4967
|
+
I(() => e.model);
|
|
4968
|
+
const n = b(() => e.model.progressValue + "%"), s = (t) => pe.getProgressTextInBarCss(t), o = (t) => pe.getProgressTextUnderBarCss(t);
|
|
4967
4969
|
return (t, r) => (i(), u("div", {
|
|
4968
|
-
class: l(t.
|
|
4970
|
+
class: l(t.model.getProgressCssClasses(t.container))
|
|
4969
4971
|
}, [
|
|
4970
4972
|
p("div", {
|
|
4971
|
-
class: l(t.
|
|
4973
|
+
class: l(t.model.css.progressBar),
|
|
4972
4974
|
style: L({ width: n.value }),
|
|
4973
4975
|
role: "progressbar",
|
|
4974
4976
|
"aria-valuemin": "0",
|
|
4975
4977
|
"aria-valuemax": "100",
|
|
4976
|
-
"aria-label": t.
|
|
4978
|
+
"aria-label": t.model.progressBarAriaLabel
|
|
4977
4979
|
}, [
|
|
4978
4980
|
p("span", {
|
|
4979
|
-
class: l(s(t.
|
|
4980
|
-
}, H(t.
|
|
4981
|
+
class: l(s(t.model.css))
|
|
4982
|
+
}, H(t.model.progressText), 3)
|
|
4981
4983
|
], 14, Dt),
|
|
4982
4984
|
p("span", {
|
|
4983
|
-
class: l(o(t.
|
|
4984
|
-
}, H(t.
|
|
4985
|
+
class: l(o(t.model.css))
|
|
4986
|
+
}, H(t.model.progressText), 3)
|
|
4985
4987
|
], 2));
|
|
4986
4988
|
}
|
|
4987
4989
|
}), At = ["aria-label"], Pt = ["title"], Nt = ["onClick", "data-page-number"], Et = ["title"], Wt = ["title"], Ft = ["title"], zt = /* @__PURE__ */ y({
|