@octans/ui 1.6.0 → 1.6.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/dist/components/CalendarHeatmap/types.d.ts +7 -0
- package/dist/components/Checkbox/Checkbox.vue.d.ts +22 -0
- package/dist/components/Choice/Choice.vue.d.ts +27 -0
- package/dist/components/ChoiceList/ChoiceList.vue.d.ts +28 -0
- package/dist/components/ChoiceList/types.d.ts +7 -0
- package/dist/components/ColorSelector/types.d.ts +7 -0
- package/dist/components/DatePicker/types.d.ts +7 -0
- package/dist/components/FileInput/FileInput.vue.d.ts +39 -0
- package/dist/components/Filters/FilterItem.vue.d.ts +29 -0
- package/dist/components/Filters/Filters.vue.d.ts +29 -0
- package/dist/components/Labelled/Labelled.vue.d.ts +45 -0
- package/dist/components/NavField/NavField.vue.d.ts +39 -0
- package/dist/components/OtpInput/types.d.ts +7 -0
- package/dist/components/RadioButton/RadioButton.vue.d.ts +22 -0
- package/dist/components/RangeSlider/RangeSlider.vue.d.ts +39 -0
- package/dist/components/Rating/types.d.ts +7 -0
- package/dist/components/SegmentedControl/types.d.ts +7 -0
- package/dist/components/Select/Select.vue.d.ts +39 -0
- package/dist/components/TextField/types.d.ts +7 -0
- package/dist/components/TimePicker/types.d.ts +7 -0
- package/dist/components/TimezonePicker/types.d.ts +7 -0
- package/dist/components/ToggleSwitch/types.d.ts +7 -0
- package/dist/style.css +1 -1
- package/dist/ui.js +156 -35
- package/dist/ui.umd.js +3 -3
- package/package.json +1 -1
package/dist/ui.js
CHANGED
|
@@ -8524,10 +8524,12 @@ var Q = lp, up = /* @__PURE__ */ y({
|
|
|
8524
8524
|
return () => {
|
|
8525
8525
|
let n = G(), r = e.helpLink && w("a", {
|
|
8526
8526
|
href: e.helpLink,
|
|
8527
|
-
target: "_blank"
|
|
8527
|
+
target: "_blank",
|
|
8528
|
+
"data-ui-tooltip": e.helpLinkTooltip || void 0,
|
|
8529
|
+
"data-ui-tooltip-position": e.helpLinkTooltip ? "top" : void 0
|
|
8528
8530
|
}, [w(Y, {
|
|
8529
8531
|
class: n.helpIcon,
|
|
8530
|
-
icon:
|
|
8532
|
+
icon: e.helpLinkIcon
|
|
8531
8533
|
})]), i = e.required && w("span", {
|
|
8532
8534
|
class: n.requiredMark,
|
|
8533
8535
|
"aria-hidden": "true"
|
|
@@ -8579,6 +8581,14 @@ var Q = lp, up = /* @__PURE__ */ y({
|
|
|
8579
8581
|
type: [String, Boolean],
|
|
8580
8582
|
required: !1
|
|
8581
8583
|
},
|
|
8584
|
+
helpLinkIcon: {
|
|
8585
|
+
type: String,
|
|
8586
|
+
default: "mdi:information"
|
|
8587
|
+
},
|
|
8588
|
+
helpLinkTooltip: {
|
|
8589
|
+
type: String,
|
|
8590
|
+
required: !1
|
|
8591
|
+
},
|
|
8582
8592
|
required: {
|
|
8583
8593
|
type: Boolean,
|
|
8584
8594
|
required: !1
|
|
@@ -8790,6 +8800,8 @@ var Q = lp, up = /* @__PURE__ */ y({
|
|
|
8790
8800
|
helpText: { type: [String, Boolean] },
|
|
8791
8801
|
helpTextHtml: { type: [String, Boolean] },
|
|
8792
8802
|
helpLink: { type: [String, Boolean] },
|
|
8803
|
+
helpLinkIcon: {},
|
|
8804
|
+
helpLinkTooltip: {},
|
|
8793
8805
|
modelValue: {},
|
|
8794
8806
|
placeholder: {},
|
|
8795
8807
|
multiline: { type: [
|
|
@@ -8899,6 +8911,8 @@ var Q = lp, up = /* @__PURE__ */ y({
|
|
|
8899
8911
|
"help-text": e.helpText,
|
|
8900
8912
|
"help-text-html": e.helpTextHtml,
|
|
8901
8913
|
"help-link": e.helpLink,
|
|
8914
|
+
"help-link-icon": e.helpLinkIcon,
|
|
8915
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
8902
8916
|
required: e.required
|
|
8903
8917
|
}, h({
|
|
8904
8918
|
default: q(() => [_(W(gp), { enabled: e.autocomplete === "off" }, {
|
|
@@ -9000,26 +9014,28 @@ var Q = lp, up = /* @__PURE__ */ y({
|
|
|
9000
9014
|
"help-text",
|
|
9001
9015
|
"help-text-html",
|
|
9002
9016
|
"help-link",
|
|
9017
|
+
"help-link-icon",
|
|
9018
|
+
"help-link-tooltip",
|
|
9003
9019
|
"required"
|
|
9004
9020
|
]));
|
|
9005
9021
|
}
|
|
9006
9022
|
}), [["__cssModules", { $style: {
|
|
9007
|
-
TextField: "
|
|
9008
|
-
TextField_control: "
|
|
9009
|
-
TextField__hasLeft: "
|
|
9010
|
-
TextField__hasRight: "
|
|
9011
|
-
TextField__hasError: "
|
|
9012
|
-
TextField_input: "
|
|
9013
|
-
isDisabled: "
|
|
9014
|
-
TextField__multiline: "
|
|
9015
|
-
TextField__align_right: "
|
|
9016
|
-
TextField__hasPrefix: "
|
|
9017
|
-
TextField__hasSuffix: "
|
|
9018
|
-
TextField_ghost: "
|
|
9019
|
-
TextField_prefix: "
|
|
9020
|
-
TextField_suffix: "
|
|
9021
|
-
TextField_left: "
|
|
9022
|
-
TextField_right: "
|
|
9023
|
+
TextField: "_TextField_1gyxa_1",
|
|
9024
|
+
TextField_control: "_TextField_control_1gyxa_5",
|
|
9025
|
+
TextField__hasLeft: "_TextField__hasLeft_1gyxa_22",
|
|
9026
|
+
TextField__hasRight: "_TextField__hasRight_1gyxa_26",
|
|
9027
|
+
TextField__hasError: "_TextField__hasError_1gyxa_30",
|
|
9028
|
+
TextField_input: "_TextField_input_1gyxa_34",
|
|
9029
|
+
isDisabled: "_isDisabled_1gyxa_40",
|
|
9030
|
+
TextField__multiline: "_TextField__multiline_1gyxa_59",
|
|
9031
|
+
TextField__align_right: "_TextField__align_right_1gyxa_65",
|
|
9032
|
+
TextField__hasPrefix: "_TextField__hasPrefix_1gyxa_68",
|
|
9033
|
+
TextField__hasSuffix: "_TextField__hasSuffix_1gyxa_71",
|
|
9034
|
+
TextField_ghost: "_TextField_ghost_1gyxa_92",
|
|
9035
|
+
TextField_prefix: "_TextField_prefix_1gyxa_101",
|
|
9036
|
+
TextField_suffix: "_TextField_suffix_1gyxa_102",
|
|
9037
|
+
TextField_left: "_TextField_left_1gyxa_116",
|
|
9038
|
+
TextField_right: "_TextField_right_1gyxa_124"
|
|
9023
9039
|
} }]]), Pp = /* @__PURE__ */ y({
|
|
9024
9040
|
__name: "PromptModal",
|
|
9025
9041
|
props: {
|
|
@@ -10023,6 +10039,8 @@ var Dm = /*#__PURE__*/ J(wm, [["render", Em], ["__cssModules", { $style: Tm }]])
|
|
|
10023
10039
|
helpText: { type: [String, Boolean] },
|
|
10024
10040
|
helpTextHtml: { type: [String, Boolean] },
|
|
10025
10041
|
helpLink: { type: [String, Boolean] },
|
|
10042
|
+
helpLinkIcon: {},
|
|
10043
|
+
helpLinkTooltip: {},
|
|
10026
10044
|
data: { default: () => [] },
|
|
10027
10045
|
series: { default: () => [] },
|
|
10028
10046
|
startDate: {},
|
|
@@ -10270,7 +10288,9 @@ var Dm = /*#__PURE__*/ J(wm, [["render", Em], ["__cssModules", { $style: Tm }]])
|
|
|
10270
10288
|
error: e.error,
|
|
10271
10289
|
"help-text": e.helpText,
|
|
10272
10290
|
"help-text-html": e.helpTextHtml,
|
|
10273
|
-
"help-link": e.helpLink
|
|
10291
|
+
"help-link": e.helpLink,
|
|
10292
|
+
"help-link-icon": e.helpLinkIcon,
|
|
10293
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
10274
10294
|
}, h({
|
|
10275
10295
|
default: q(() => [m("div", {
|
|
10276
10296
|
class: j([
|
|
@@ -10376,7 +10396,9 @@ var Dm = /*#__PURE__*/ J(wm, [["render", Em], ["__cssModules", { $style: Tm }]])
|
|
|
10376
10396
|
"error",
|
|
10377
10397
|
"help-text",
|
|
10378
10398
|
"help-text-html",
|
|
10379
|
-
"help-link"
|
|
10399
|
+
"help-link",
|
|
10400
|
+
"help-link-icon",
|
|
10401
|
+
"help-link-tooltip"
|
|
10380
10402
|
]));
|
|
10381
10403
|
}
|
|
10382
10404
|
}), [["__cssModules", { $style: {
|
|
@@ -10510,10 +10532,12 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10510
10532
|
return () => {
|
|
10511
10533
|
let n = G(), r = t.slots, i = e.helpLink && w("a", {
|
|
10512
10534
|
href: e.helpLink,
|
|
10513
|
-
target: "_blank"
|
|
10535
|
+
target: "_blank",
|
|
10536
|
+
"data-ui-tooltip": e.helpLinkTooltip || void 0,
|
|
10537
|
+
"data-ui-tooltip-position": e.helpLinkTooltip ? "top" : void 0
|
|
10514
10538
|
}, [w(Y, {
|
|
10515
10539
|
class: n.HelpIcon,
|
|
10516
|
-
icon:
|
|
10540
|
+
icon: e.helpLinkIcon
|
|
10517
10541
|
})]), a = w("label", {
|
|
10518
10542
|
class: [
|
|
10519
10543
|
"UIElement",
|
|
@@ -10539,6 +10563,11 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10539
10563
|
label: { type: [String, Boolean] },
|
|
10540
10564
|
helpText: { type: [String, Boolean] },
|
|
10541
10565
|
helpLink: { type: [String, Boolean] },
|
|
10566
|
+
helpLinkIcon: {
|
|
10567
|
+
type: String,
|
|
10568
|
+
default: "mdi:information"
|
|
10569
|
+
},
|
|
10570
|
+
helpLinkTooltip: { type: String },
|
|
10542
10571
|
error: { type: [String, Boolean] },
|
|
10543
10572
|
type: {
|
|
10544
10573
|
type: String,
|
|
@@ -10648,6 +10677,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10648
10677
|
error: e.error,
|
|
10649
10678
|
helpText: e.helpText,
|
|
10650
10679
|
helpLink: e.helpLink,
|
|
10680
|
+
helpLinkIcon: e.helpLinkIcon,
|
|
10681
|
+
helpLinkTooltip: e.helpLinkTooltip,
|
|
10651
10682
|
disabled: e.disabled,
|
|
10652
10683
|
readonly: e.readonly,
|
|
10653
10684
|
tooltip: e.tooltip,
|
|
@@ -10672,6 +10703,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10672
10703
|
type: [String, Boolean],
|
|
10673
10704
|
required: !1
|
|
10674
10705
|
},
|
|
10706
|
+
helpLinkIcon: { type: String },
|
|
10707
|
+
helpLinkTooltip: { type: String },
|
|
10675
10708
|
name: { type: String },
|
|
10676
10709
|
modelValue: { type: null },
|
|
10677
10710
|
trueValue: {
|
|
@@ -10771,6 +10804,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10771
10804
|
error: e.error,
|
|
10772
10805
|
helpText: e.helpText,
|
|
10773
10806
|
helpLink: e.helpLink,
|
|
10807
|
+
helpLinkIcon: e.helpLinkIcon,
|
|
10808
|
+
helpLinkTooltip: e.helpLinkTooltip,
|
|
10774
10809
|
disabled: e.disabled,
|
|
10775
10810
|
readonly: e.readonly
|
|
10776
10811
|
}, {
|
|
@@ -10787,6 +10822,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10787
10822
|
error: { type: [String, Boolean] },
|
|
10788
10823
|
helpText: { type: [String, Boolean] },
|
|
10789
10824
|
helpLink: { type: [String, Boolean] },
|
|
10825
|
+
helpLinkIcon: { type: String },
|
|
10826
|
+
helpLinkTooltip: { type: String },
|
|
10790
10827
|
name: { type: String },
|
|
10791
10828
|
modelValue: { type: null },
|
|
10792
10829
|
trueValue: { type: null },
|
|
@@ -10866,7 +10903,9 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10866
10903
|
],
|
|
10867
10904
|
default: void 0
|
|
10868
10905
|
},
|
|
10869
|
-
helpLink: { default: void 0 }
|
|
10906
|
+
helpLink: { default: void 0 },
|
|
10907
|
+
helpLinkIcon: {},
|
|
10908
|
+
helpLinkTooltip: {}
|
|
10870
10909
|
},
|
|
10871
10910
|
emits: ["update:modelValue", "change"],
|
|
10872
10911
|
setup(e, { emit: t }) {
|
|
@@ -10884,7 +10923,9 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10884
10923
|
label: e.label,
|
|
10885
10924
|
error: e.error,
|
|
10886
10925
|
"help-text": e.helpText,
|
|
10887
|
-
"help-link": e.helpLink
|
|
10926
|
+
"help-link": e.helpLink,
|
|
10927
|
+
"help-link-icon": e.helpLinkIcon,
|
|
10928
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
10888
10929
|
}, h({
|
|
10889
10930
|
default: q(() => [m("div", {
|
|
10890
10931
|
role: "radiogroup",
|
|
@@ -10946,7 +10987,9 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10946
10987
|
"label",
|
|
10947
10988
|
"error",
|
|
10948
10989
|
"help-text",
|
|
10949
|
-
"help-link"
|
|
10990
|
+
"help-link",
|
|
10991
|
+
"help-link-icon",
|
|
10992
|
+
"help-link-tooltip"
|
|
10950
10993
|
]));
|
|
10951
10994
|
}
|
|
10952
10995
|
}), [["__cssModules", { $style: {
|
|
@@ -10997,6 +11040,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
10997
11040
|
label: n.label,
|
|
10998
11041
|
helpText: n.helpText,
|
|
10999
11042
|
helpLink: n.helpLink,
|
|
11043
|
+
helpLinkIcon: n.helpLinkIcon,
|
|
11044
|
+
helpLinkTooltip: n.helpLinkTooltip,
|
|
11000
11045
|
disabled: n.disabled || e.disabled,
|
|
11001
11046
|
readonly: n.readonly || e.readonly,
|
|
11002
11047
|
checked: r,
|
|
@@ -11011,6 +11056,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
11011
11056
|
label: n.label,
|
|
11012
11057
|
helpText: n.helpText,
|
|
11013
11058
|
helpLink: n.helpLink,
|
|
11059
|
+
helpLinkIcon: n.helpLinkIcon,
|
|
11060
|
+
helpLinkTooltip: n.helpLinkTooltip,
|
|
11014
11061
|
disabled: n.disabled || e.disabled,
|
|
11015
11062
|
readonly: n.readonly || e.readonly,
|
|
11016
11063
|
trueValue: n.value,
|
|
@@ -11026,7 +11073,9 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
11026
11073
|
label: e.label,
|
|
11027
11074
|
error: e.error,
|
|
11028
11075
|
helpText: e.helpText,
|
|
11029
|
-
helpLink: e.helpLink
|
|
11076
|
+
helpLink: e.helpLink,
|
|
11077
|
+
helpLinkIcon: e.helpLinkIcon,
|
|
11078
|
+
helpLinkTooltip: e.helpLinkTooltip
|
|
11030
11079
|
}, () => [t ? i() : a()]);
|
|
11031
11080
|
};
|
|
11032
11081
|
},
|
|
@@ -11035,6 +11084,8 @@ var Um = /*#__PURE__*/ J(y({
|
|
|
11035
11084
|
error: { type: [String, Boolean] },
|
|
11036
11085
|
helpText: { type: [String, Boolean] },
|
|
11037
11086
|
helpLink: { type: String },
|
|
11087
|
+
helpLinkIcon: { type: String },
|
|
11088
|
+
helpLinkTooltip: { type: String },
|
|
11038
11089
|
options: {
|
|
11039
11090
|
type: Array,
|
|
11040
11091
|
default: () => []
|
|
@@ -12331,6 +12382,8 @@ var eg = ["title"], tg = [
|
|
|
12331
12382
|
Boolean,
|
|
12332
12383
|
null
|
|
12333
12384
|
] },
|
|
12385
|
+
helpLinkIcon: {},
|
|
12386
|
+
helpLinkTooltip: {},
|
|
12334
12387
|
placement: { default: "bottom-start" },
|
|
12335
12388
|
trigger: { default: "button" },
|
|
12336
12389
|
fullWidth: {
|
|
@@ -12487,7 +12540,9 @@ var eg = ["title"], tg = [
|
|
|
12487
12540
|
error: e.error,
|
|
12488
12541
|
"help-text": e.helpText,
|
|
12489
12542
|
"help-text-html": e.helpTextHtml,
|
|
12490
|
-
"help-link": e.helpLink
|
|
12543
|
+
"help-link": e.helpLink,
|
|
12544
|
+
"help-link-icon": e.helpLinkIcon,
|
|
12545
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
12491
12546
|
}, h({
|
|
12492
12547
|
default: q(() => [m("div", {
|
|
12493
12548
|
class: j([W(i).ColorSelector, e.fullWidth && W(i).ColorSelector__full]),
|
|
@@ -12666,7 +12721,9 @@ var eg = ["title"], tg = [
|
|
|
12666
12721
|
"error",
|
|
12667
12722
|
"help-text",
|
|
12668
12723
|
"help-text-html",
|
|
12669
|
-
"help-link"
|
|
12724
|
+
"help-link",
|
|
12725
|
+
"help-link-icon",
|
|
12726
|
+
"help-link-tooltip"
|
|
12670
12727
|
]));
|
|
12671
12728
|
}
|
|
12672
12729
|
}), [["__cssModules", { $style: {
|
|
@@ -13435,6 +13492,8 @@ var Rg = /*#__PURE__*/ J(Fg, [["render", Lg], ["__cssModules", { $style: Ig }]])
|
|
|
13435
13492
|
helpText: { type: [String, Boolean] },
|
|
13436
13493
|
helpTextHtml: { type: [String, Boolean] },
|
|
13437
13494
|
helpLink: { type: [String, Boolean] },
|
|
13495
|
+
helpLinkIcon: {},
|
|
13496
|
+
helpLinkTooltip: {},
|
|
13438
13497
|
placeholder: {},
|
|
13439
13498
|
disabled: {
|
|
13440
13499
|
type: Boolean,
|
|
@@ -13505,6 +13564,8 @@ var Rg = /*#__PURE__*/ J(Fg, [["render", Lg], ["__cssModules", { $style: Ig }]])
|
|
|
13505
13564
|
"help-text": e.helpText,
|
|
13506
13565
|
"help-text-html": e.helpTextHtml,
|
|
13507
13566
|
"help-link": e.helpLink,
|
|
13567
|
+
"help-link-icon": e.helpLinkIcon,
|
|
13568
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
13508
13569
|
required: e.required
|
|
13509
13570
|
}, h({
|
|
13510
13571
|
default: q(() => [_(W(xa), {
|
|
@@ -13586,6 +13647,8 @@ var Rg = /*#__PURE__*/ J(Fg, [["render", Lg], ["__cssModules", { $style: Ig }]])
|
|
|
13586
13647
|
"help-text",
|
|
13587
13648
|
"help-text-html",
|
|
13588
13649
|
"help-link",
|
|
13650
|
+
"help-link-icon",
|
|
13651
|
+
"help-link-tooltip",
|
|
13589
13652
|
"required"
|
|
13590
13653
|
]));
|
|
13591
13654
|
}
|
|
@@ -13919,6 +13982,8 @@ var w_ = y({
|
|
|
13919
13982
|
helpText: { type: [String, Boolean] },
|
|
13920
13983
|
helpTextHtml: { type: [String, Boolean] },
|
|
13921
13984
|
helpLink: { type: [String, Boolean] },
|
|
13985
|
+
helpLinkIcon: { type: String },
|
|
13986
|
+
helpLinkTooltip: { type: String },
|
|
13922
13987
|
required: {
|
|
13923
13988
|
type: Boolean,
|
|
13924
13989
|
default: !1
|
|
@@ -14040,6 +14105,8 @@ function O_(e, t, n, i, a, o) {
|
|
|
14040
14105
|
"help-text": e.helpText,
|
|
14041
14106
|
"help-text-html": e.helpTextHtml,
|
|
14042
14107
|
"help-link": e.helpLink,
|
|
14108
|
+
"help-link-icon": e.helpLinkIcon,
|
|
14109
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
14043
14110
|
required: e.required
|
|
14044
14111
|
}, h({
|
|
14045
14112
|
default: q(() => [m("div", { class: j(["UIElement", e.$style.FileInput]) }, [
|
|
@@ -14096,6 +14163,8 @@ function O_(e, t, n, i, a, o) {
|
|
|
14096
14163
|
"help-text",
|
|
14097
14164
|
"help-text-html",
|
|
14098
14165
|
"help-link",
|
|
14166
|
+
"help-link-icon",
|
|
14167
|
+
"help-link-tooltip",
|
|
14099
14168
|
"required"
|
|
14100
14169
|
]);
|
|
14101
14170
|
}
|
|
@@ -14607,6 +14676,8 @@ var $_ = y({
|
|
|
14607
14676
|
helpText: { type: [String, Boolean] },
|
|
14608
14677
|
helpTextHtml: { type: [String, Boolean] },
|
|
14609
14678
|
helpLink: { type: [String, Boolean] },
|
|
14679
|
+
helpLinkIcon: { type: String },
|
|
14680
|
+
helpLinkTooltip: { type: String },
|
|
14610
14681
|
required: {
|
|
14611
14682
|
type: Boolean,
|
|
14612
14683
|
default: !1
|
|
@@ -15030,6 +15101,8 @@ function ov(e, t, r, i, a, o) {
|
|
|
15030
15101
|
"help-text": e.helpText,
|
|
15031
15102
|
"help-text-html": e.helpTextHtml,
|
|
15032
15103
|
"help-link": e.helpLink,
|
|
15104
|
+
"help-link-icon": e.helpLinkIcon,
|
|
15105
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
15033
15106
|
required: e.required
|
|
15034
15107
|
}), h({
|
|
15035
15108
|
default: q(() => [m("div", { class: j(["UIElement", [
|
|
@@ -15210,6 +15283,8 @@ function ov(e, t, r, i, a, o) {
|
|
|
15210
15283
|
"help-text",
|
|
15211
15284
|
"help-text-html",
|
|
15212
15285
|
"help-link",
|
|
15286
|
+
"help-link-icon",
|
|
15287
|
+
"help-link-tooltip",
|
|
15213
15288
|
"required"
|
|
15214
15289
|
]);
|
|
15215
15290
|
}
|
|
@@ -16133,6 +16208,8 @@ var jv = /*#__PURE__*/ J(kv, [["render", Av], ["__cssModules", { $style: Ov }]])
|
|
|
16133
16208
|
helpText: { type: [String, Boolean] },
|
|
16134
16209
|
helpTextHtml: { type: [String, Boolean] },
|
|
16135
16210
|
helpLink: { type: [String, Boolean] },
|
|
16211
|
+
helpLinkIcon: { type: String },
|
|
16212
|
+
helpLinkTooltip: { type: String },
|
|
16136
16213
|
placeholder: { type: String },
|
|
16137
16214
|
title: { type: String },
|
|
16138
16215
|
description: { type: String },
|
|
@@ -16169,7 +16246,9 @@ function Uv(e, t, n, r, i, a) {
|
|
|
16169
16246
|
error: e.error,
|
|
16170
16247
|
"help-text": e.helpText,
|
|
16171
16248
|
"help-text-html": e.helpTextHtml,
|
|
16172
|
-
"help-link": e.helpLink
|
|
16249
|
+
"help-link": e.helpLink,
|
|
16250
|
+
"help-link-icon": e.helpLinkIcon,
|
|
16251
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
16173
16252
|
}, h({
|
|
16174
16253
|
default: q(() => [m("div", k({ class: [
|
|
16175
16254
|
"UIElement",
|
|
@@ -16213,7 +16292,9 @@ function Uv(e, t, n, r, i, a) {
|
|
|
16213
16292
|
"error",
|
|
16214
16293
|
"help-text",
|
|
16215
16294
|
"help-text-html",
|
|
16216
|
-
"help-link"
|
|
16295
|
+
"help-link",
|
|
16296
|
+
"help-link-icon",
|
|
16297
|
+
"help-link-tooltip"
|
|
16217
16298
|
]);
|
|
16218
16299
|
}
|
|
16219
16300
|
var Wv = /*#__PURE__*/ J(Bv, [["render", Uv], ["__cssModules", { $style: Vv }]]), Gv = ["href"], Kv = ["href"], qv = [
|
|
@@ -16695,6 +16776,8 @@ var Wv = /*#__PURE__*/ J(Bv, [["render", Uv], ["__cssModules", { $style: Vv }]])
|
|
|
16695
16776
|
helpText: { type: [String, Boolean] },
|
|
16696
16777
|
helpTextHtml: { type: [String, Boolean] },
|
|
16697
16778
|
helpLink: { type: [String, Boolean] },
|
|
16779
|
+
helpLinkIcon: {},
|
|
16780
|
+
helpLinkTooltip: {},
|
|
16698
16781
|
modelValue: { default: "" },
|
|
16699
16782
|
length: { default: 4 },
|
|
16700
16783
|
groups: {},
|
|
@@ -16807,7 +16890,9 @@ var Wv = /*#__PURE__*/ J(Bv, [["render", Uv], ["__cssModules", { $style: Vv }]])
|
|
|
16807
16890
|
error: e.error,
|
|
16808
16891
|
"help-text": e.helpText,
|
|
16809
16892
|
"help-text-html": e.helpTextHtml,
|
|
16810
|
-
"help-link": e.helpLink
|
|
16893
|
+
"help-link": e.helpLink,
|
|
16894
|
+
"help-link-icon": e.helpLinkIcon,
|
|
16895
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
16811
16896
|
}, h({
|
|
16812
16897
|
default: q(() => [m("div", {
|
|
16813
16898
|
class: j([
|
|
@@ -16856,7 +16941,9 @@ var Wv = /*#__PURE__*/ J(Bv, [["render", Uv], ["__cssModules", { $style: Vv }]])
|
|
|
16856
16941
|
"error",
|
|
16857
16942
|
"help-text",
|
|
16858
16943
|
"help-text-html",
|
|
16859
|
-
"help-link"
|
|
16944
|
+
"help-link",
|
|
16945
|
+
"help-link-icon",
|
|
16946
|
+
"help-link-tooltip"
|
|
16860
16947
|
]));
|
|
16861
16948
|
}
|
|
16862
16949
|
}), [["__cssModules", { $style: {
|
|
@@ -17239,6 +17326,8 @@ var Wv = /*#__PURE__*/ J(Bv, [["render", Uv], ["__cssModules", { $style: Vv }]])
|
|
|
17239
17326
|
helpText: { type: [String, Boolean] },
|
|
17240
17327
|
helpTextHtml: { type: [String, Boolean] },
|
|
17241
17328
|
helpLink: { type: [String, Boolean] },
|
|
17329
|
+
helpLinkIcon: { type: String },
|
|
17330
|
+
helpLinkTooltip: { type: String },
|
|
17242
17331
|
disabled: {
|
|
17243
17332
|
type: Boolean,
|
|
17244
17333
|
default: !1
|
|
@@ -17315,6 +17404,8 @@ function dy(e, t, n, r, i, a) {
|
|
|
17315
17404
|
"help-text": e.helpText,
|
|
17316
17405
|
"help-text-html": e.helpTextHtml,
|
|
17317
17406
|
"help-link": e.helpLink,
|
|
17407
|
+
"help-link-icon": e.helpLinkIcon,
|
|
17408
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
17318
17409
|
required: e.required
|
|
17319
17410
|
}, h({
|
|
17320
17411
|
default: q(() => [m("div", { class: j(e.$style.InputGroup) }, [m("div", {
|
|
@@ -17371,6 +17462,8 @@ function dy(e, t, n, r, i, a) {
|
|
|
17371
17462
|
"help-text",
|
|
17372
17463
|
"help-text-html",
|
|
17373
17464
|
"help-link",
|
|
17465
|
+
"help-link-icon",
|
|
17466
|
+
"help-link-tooltip",
|
|
17374
17467
|
"required"
|
|
17375
17468
|
]);
|
|
17376
17469
|
}
|
|
@@ -17393,6 +17486,8 @@ var fy = /*#__PURE__*/ J(cy, [["render", dy], ["__cssModules", { $style: ly }]])
|
|
|
17393
17486
|
helpText: { type: [String, Boolean] },
|
|
17394
17487
|
helpTextHtml: { type: [String, Boolean] },
|
|
17395
17488
|
helpLink: { type: [String, Boolean] },
|
|
17489
|
+
helpLinkIcon: {},
|
|
17490
|
+
helpLinkTooltip: {},
|
|
17396
17491
|
modelValue: {},
|
|
17397
17492
|
stars: { default: 5 },
|
|
17398
17493
|
allowHalf: { type: Boolean },
|
|
@@ -17463,7 +17558,9 @@ var fy = /*#__PURE__*/ J(cy, [["render", dy], ["__cssModules", { $style: ly }]])
|
|
|
17463
17558
|
error: e.error,
|
|
17464
17559
|
"help-text": e.helpText,
|
|
17465
17560
|
"help-text-html": e.helpTextHtml,
|
|
17466
|
-
"help-link": e.helpLink
|
|
17561
|
+
"help-link": e.helpLink,
|
|
17562
|
+
"help-link-icon": e.helpLinkIcon,
|
|
17563
|
+
"help-link-tooltip": e.helpLinkTooltip
|
|
17467
17564
|
}, h({
|
|
17468
17565
|
default: q(() => [m("div", {
|
|
17469
17566
|
ref_key: "root",
|
|
@@ -17524,7 +17621,9 @@ var fy = /*#__PURE__*/ J(cy, [["render", dy], ["__cssModules", { $style: ly }]])
|
|
|
17524
17621
|
"error",
|
|
17525
17622
|
"help-text",
|
|
17526
17623
|
"help-text-html",
|
|
17527
|
-
"help-link"
|
|
17624
|
+
"help-link",
|
|
17625
|
+
"help-link-icon",
|
|
17626
|
+
"help-link-tooltip"
|
|
17528
17627
|
]));
|
|
17529
17628
|
}
|
|
17530
17629
|
}), [["__cssModules", { $style: {
|
|
@@ -18609,6 +18708,8 @@ var Yy = [
|
|
|
18609
18708
|
helpText: { type: [String, Boolean] },
|
|
18610
18709
|
helpTextHtml: { type: [String, Boolean] },
|
|
18611
18710
|
helpLink: { type: [String, Boolean] },
|
|
18711
|
+
helpLinkIcon: {},
|
|
18712
|
+
helpLinkTooltip: {},
|
|
18612
18713
|
placeholder: { default: "" },
|
|
18613
18714
|
prefixIcon: {
|
|
18614
18715
|
type: Boolean,
|
|
@@ -18803,6 +18904,8 @@ var Yy = [
|
|
|
18803
18904
|
"help-text": e.helpText,
|
|
18804
18905
|
"help-text-html": e.helpTextHtml,
|
|
18805
18906
|
"help-link": e.helpLink,
|
|
18907
|
+
"help-link-icon": e.helpLinkIcon,
|
|
18908
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
18806
18909
|
required: e.required
|
|
18807
18910
|
}, h({
|
|
18808
18911
|
default: q(() => [v.value ? (L(), p("div", {
|
|
@@ -18957,6 +19060,8 @@ var Yy = [
|
|
|
18957
19060
|
"help-text",
|
|
18958
19061
|
"help-text-html",
|
|
18959
19062
|
"help-link",
|
|
19063
|
+
"help-link-icon",
|
|
19064
|
+
"help-link-tooltip",
|
|
18960
19065
|
"required"
|
|
18961
19066
|
]));
|
|
18962
19067
|
}
|
|
@@ -19090,6 +19195,8 @@ var _b = [
|
|
|
19090
19195
|
helpText: {},
|
|
19091
19196
|
helpTextHtml: {},
|
|
19092
19197
|
helpLink: {},
|
|
19198
|
+
helpLinkIcon: {},
|
|
19199
|
+
helpLinkTooltip: {},
|
|
19093
19200
|
disabled: {
|
|
19094
19201
|
type: Boolean,
|
|
19095
19202
|
default: !1
|
|
@@ -19208,6 +19315,8 @@ var _b = [
|
|
|
19208
19315
|
"help-text": e.helpText,
|
|
19209
19316
|
"help-text-html": e.helpTextHtml,
|
|
19210
19317
|
"help-link": e.helpLink,
|
|
19318
|
+
"help-link-icon": e.helpLinkIcon,
|
|
19319
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
19211
19320
|
searchable: "",
|
|
19212
19321
|
"onUpdate:modelValue": C
|
|
19213
19322
|
}, null, 8, [
|
|
@@ -19220,7 +19329,9 @@ var _b = [
|
|
|
19220
19329
|
"error",
|
|
19221
19330
|
"help-text",
|
|
19222
19331
|
"help-text-html",
|
|
19223
|
-
"help-link"
|
|
19332
|
+
"help-link",
|
|
19333
|
+
"help-link-icon",
|
|
19334
|
+
"help-link-tooltip"
|
|
19224
19335
|
])]),
|
|
19225
19336
|
_: 1
|
|
19226
19337
|
}, 8, ["condensed"]))]),
|
|
@@ -19282,6 +19393,8 @@ var _b = [
|
|
|
19282
19393
|
"help-text": e.helpText,
|
|
19283
19394
|
"help-text-html": e.helpTextHtml,
|
|
19284
19395
|
"help-link": e.helpLink,
|
|
19396
|
+
"help-link-icon": e.helpLinkIcon,
|
|
19397
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
19285
19398
|
label: e.label,
|
|
19286
19399
|
title: v.value && v.value.title,
|
|
19287
19400
|
description: v.value && v.value.description,
|
|
@@ -19294,6 +19407,8 @@ var _b = [
|
|
|
19294
19407
|
"help-text",
|
|
19295
19408
|
"help-text-html",
|
|
19296
19409
|
"help-link",
|
|
19410
|
+
"help-link-icon",
|
|
19411
|
+
"help-link-tooltip",
|
|
19297
19412
|
"label",
|
|
19298
19413
|
"title",
|
|
19299
19414
|
"description",
|
|
@@ -19350,6 +19465,8 @@ var _b = [
|
|
|
19350
19465
|
],
|
|
19351
19466
|
default: void 0
|
|
19352
19467
|
},
|
|
19468
|
+
helpLinkIcon: {},
|
|
19469
|
+
helpLinkTooltip: {},
|
|
19353
19470
|
required: {
|
|
19354
19471
|
type: Boolean,
|
|
19355
19472
|
default: !1
|
|
@@ -19419,6 +19536,8 @@ var _b = [
|
|
|
19419
19536
|
"help-text": e.helpText,
|
|
19420
19537
|
"help-text-html": e.helpTextHtml,
|
|
19421
19538
|
"help-link": e.helpLink,
|
|
19539
|
+
"help-link-icon": e.helpLinkIcon,
|
|
19540
|
+
"help-link-tooltip": e.helpLinkTooltip,
|
|
19422
19541
|
required: e.required,
|
|
19423
19542
|
class: j(i.value),
|
|
19424
19543
|
style: N(a.value)
|
|
@@ -19467,6 +19586,8 @@ var _b = [
|
|
|
19467
19586
|
"help-text",
|
|
19468
19587
|
"help-text-html",
|
|
19469
19588
|
"help-link",
|
|
19589
|
+
"help-link-icon",
|
|
19590
|
+
"help-link-tooltip",
|
|
19470
19591
|
"required",
|
|
19471
19592
|
"class",
|
|
19472
19593
|
"style"
|