@varlet/ui 3.9.0-alpha.1736270797421 → 3.9.0
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/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/input/Input.mjs +7 -3
- package/es/input/props.mjs +1 -0
- package/es/locale/index.mjs +3 -0
- package/es/locale/ja-JP.d.ts +5 -0
- package/es/locale/ja-JP.mjs +108 -0
- package/es/locale/zh-TW.mjs +4 -1
- package/es/pagination/Pagination.mjs +49 -47
- package/es/pagination/pagination.css +1 -1
- package/es/radio/Radio.mjs +77 -65
- package/es/radio-group/RadioGroup.mjs +37 -34
- package/es/radio-group/props.mjs +4 -0
- package/es/select/select.css +1 -1
- package/es/themes/dark/pagination.mjs +3 -2
- package/es/themes/dark/select.mjs +3 -1
- package/es/themes/md3-dark/pagination.mjs +3 -2
- package/es/themes/md3-dark/select.mjs +3 -1
- package/es/themes/md3-light/pagination.mjs +3 -2
- package/es/themes/md3-light/select.mjs +3 -1
- package/es/{style.css → varlet.css} +1 -1
- package/es/varlet.esm.js +5396 -5269
- package/highlight/web-types.en-US.json +19 -1
- package/highlight/web-types.zh-CN.json +19 -1
- package/lib/varlet.cjs.js +377 -234
- package/lib/{style.css → varlet.css} +1 -1
- package/package.json +41 -41
- package/types/input.d.ts +1 -0
- package/types/locale.d.ts +5 -0
- package/types/radioGroup.d.ts +2 -1
- package/types/space.d.ts +1 -1
- package/types/styleVars.d.ts +5 -0
- package/umd/varlet.js +8 -8
package/lib/varlet.cjs.js
CHANGED
|
@@ -1926,7 +1926,7 @@ const MaybeVNode = vue.defineComponent({
|
|
|
1926
1926
|
return () => isString(props2.is) ? vue.h(props2.tag, props2.is) : props2.is;
|
|
1927
1927
|
}
|
|
1928
1928
|
});
|
|
1929
|
-
var stdin_default$
|
|
1929
|
+
var stdin_default$6d = {
|
|
1930
1930
|
// Dialog
|
|
1931
1931
|
dialogTitle: "Hint",
|
|
1932
1932
|
dialogConfirmButtonText: "Confirm",
|
|
@@ -2031,7 +2031,7 @@ var stdin_default$6c = {
|
|
|
2031
2031
|
// time-picker
|
|
2032
2032
|
timePickerHint: "SELECT TIME"
|
|
2033
2033
|
};
|
|
2034
|
-
var stdin_default$
|
|
2034
|
+
var stdin_default$6c = {
|
|
2035
2035
|
// Dialog
|
|
2036
2036
|
dialogTitle: "اشاره",
|
|
2037
2037
|
dialogConfirmButtonText: "تایید",
|
|
@@ -2136,6 +2136,111 @@ var stdin_default$6b = {
|
|
|
2136
2136
|
// time-picker
|
|
2137
2137
|
timePickerHint: "انتخاب زمان"
|
|
2138
2138
|
};
|
|
2139
|
+
var stdin_default$6b = {
|
|
2140
|
+
// Dialog
|
|
2141
|
+
dialogTitle: "確認",
|
|
2142
|
+
dialogConfirmButtonText: "確認",
|
|
2143
|
+
dialogCancelButtonText: "キャンセル",
|
|
2144
|
+
// ActionSheet
|
|
2145
|
+
actionSheetTitle: "いずれかを選択",
|
|
2146
|
+
// List
|
|
2147
|
+
listLoadingText: "読み込み中",
|
|
2148
|
+
listFinishedText: "以上です",
|
|
2149
|
+
listErrorText: "読み込み失敗",
|
|
2150
|
+
// Picker
|
|
2151
|
+
pickerTitle: "選択してください",
|
|
2152
|
+
pickerConfirmButtonText: "確認",
|
|
2153
|
+
pickerCancelButtonText: "キャンセル",
|
|
2154
|
+
// date-picker
|
|
2155
|
+
datePickerMonthDict: {
|
|
2156
|
+
"01": {
|
|
2157
|
+
name: "1月",
|
|
2158
|
+
abbr: "1月"
|
|
2159
|
+
},
|
|
2160
|
+
"02": {
|
|
2161
|
+
name: "2月",
|
|
2162
|
+
abbr: "2月"
|
|
2163
|
+
},
|
|
2164
|
+
"03": {
|
|
2165
|
+
name: "3月",
|
|
2166
|
+
abbr: "3月"
|
|
2167
|
+
},
|
|
2168
|
+
"04": {
|
|
2169
|
+
name: "4月",
|
|
2170
|
+
abbr: "4月"
|
|
2171
|
+
},
|
|
2172
|
+
"05": {
|
|
2173
|
+
name: "5月",
|
|
2174
|
+
abbr: "5月"
|
|
2175
|
+
},
|
|
2176
|
+
"06": {
|
|
2177
|
+
name: "6月",
|
|
2178
|
+
abbr: "6月"
|
|
2179
|
+
},
|
|
2180
|
+
"07": {
|
|
2181
|
+
name: "7月",
|
|
2182
|
+
abbr: "7月"
|
|
2183
|
+
},
|
|
2184
|
+
"08": {
|
|
2185
|
+
name: "8月",
|
|
2186
|
+
abbr: "8月"
|
|
2187
|
+
},
|
|
2188
|
+
"09": {
|
|
2189
|
+
name: "9月",
|
|
2190
|
+
abbr: "9月"
|
|
2191
|
+
},
|
|
2192
|
+
"10": {
|
|
2193
|
+
name: "10月",
|
|
2194
|
+
abbr: "10月"
|
|
2195
|
+
},
|
|
2196
|
+
"11": {
|
|
2197
|
+
name: "11月",
|
|
2198
|
+
abbr: "11月"
|
|
2199
|
+
},
|
|
2200
|
+
"12": {
|
|
2201
|
+
name: "12月",
|
|
2202
|
+
abbr: "12月"
|
|
2203
|
+
}
|
|
2204
|
+
},
|
|
2205
|
+
datePickerWeekDict: {
|
|
2206
|
+
"0": {
|
|
2207
|
+
name: "日曜日",
|
|
2208
|
+
abbr: "日"
|
|
2209
|
+
},
|
|
2210
|
+
"1": {
|
|
2211
|
+
name: "月曜日",
|
|
2212
|
+
abbr: "月"
|
|
2213
|
+
},
|
|
2214
|
+
"2": {
|
|
2215
|
+
name: "火曜日",
|
|
2216
|
+
abbr: "火"
|
|
2217
|
+
},
|
|
2218
|
+
"3": {
|
|
2219
|
+
name: "水曜日",
|
|
2220
|
+
abbr: "水"
|
|
2221
|
+
},
|
|
2222
|
+
"4": {
|
|
2223
|
+
name: "木曜日",
|
|
2224
|
+
abbr: "木"
|
|
2225
|
+
},
|
|
2226
|
+
"5": {
|
|
2227
|
+
name: "金曜日",
|
|
2228
|
+
abbr: "金"
|
|
2229
|
+
},
|
|
2230
|
+
"6": {
|
|
2231
|
+
name: "土曜日",
|
|
2232
|
+
abbr: "土"
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
datePickerSelected: "件選択済み",
|
|
2236
|
+
datePickerHint: "日付を選択",
|
|
2237
|
+
// pagination
|
|
2238
|
+
paginationItem: "件",
|
|
2239
|
+
paginationPage: "ページ",
|
|
2240
|
+
paginationJump: "ジャンプ",
|
|
2241
|
+
// time-picker
|
|
2242
|
+
timePickerHint: "時間を選択"
|
|
2243
|
+
};
|
|
2139
2244
|
var stdin_default$6a = {
|
|
2140
2245
|
// Dialog
|
|
2141
2246
|
dialogTitle: "提示",
|
|
@@ -2338,10 +2443,13 @@ var stdin_default$69 = {
|
|
|
2338
2443
|
}
|
|
2339
2444
|
},
|
|
2340
2445
|
datePickerSelected: "個被選擇",
|
|
2446
|
+
datePickerHint: "選擇日期",
|
|
2341
2447
|
// pagination
|
|
2342
2448
|
paginationItem: "條",
|
|
2343
2449
|
paginationPage: "頁",
|
|
2344
|
-
paginationJump: "前往"
|
|
2450
|
+
paginationJump: "前往",
|
|
2451
|
+
// time-picker
|
|
2452
|
+
timePickerHint: "選擇時間"
|
|
2345
2453
|
};
|
|
2346
2454
|
var stdin_default$68 = stdin_default$69;
|
|
2347
2455
|
var __defProp$y = Object.defineProperty;
|
|
@@ -2401,10 +2509,11 @@ add$2("zh-CN", stdin_default$6a);
|
|
|
2401
2509
|
use("zh-CN");
|
|
2402
2510
|
const _LocaleComponent = {
|
|
2403
2511
|
zhCN: stdin_default$6a,
|
|
2404
|
-
enUS: stdin_default$
|
|
2512
|
+
enUS: stdin_default$6d,
|
|
2405
2513
|
zhTW: stdin_default$69,
|
|
2406
2514
|
zhHK: stdin_default$68,
|
|
2407
|
-
faIR: stdin_default$
|
|
2515
|
+
faIR: stdin_default$6c,
|
|
2516
|
+
jaJP: stdin_default$6b,
|
|
2408
2517
|
messages,
|
|
2409
2518
|
currentMessage,
|
|
2410
2519
|
add: add$2,
|
|
@@ -2415,10 +2524,11 @@ const _LocaleComponent = {
|
|
|
2415
2524
|
};
|
|
2416
2525
|
var stdin_default$67 = {
|
|
2417
2526
|
zhCN: stdin_default$6a,
|
|
2418
|
-
enUS: stdin_default$
|
|
2527
|
+
enUS: stdin_default$6d,
|
|
2419
2528
|
zhTW: stdin_default$69,
|
|
2420
2529
|
zhHK: stdin_default$68,
|
|
2421
|
-
faIR: stdin_default$
|
|
2530
|
+
faIR: stdin_default$6c,
|
|
2531
|
+
jaJP: stdin_default$6b,
|
|
2422
2532
|
messages,
|
|
2423
2533
|
currentMessage,
|
|
2424
2534
|
add: add$2,
|
|
@@ -4064,8 +4174,8 @@ const props$1f = {
|
|
|
4064
4174
|
}
|
|
4065
4175
|
};
|
|
4066
4176
|
const { name: name$1h, n: n$1o } = createNamespace("form-details");
|
|
4067
|
-
const _hoisted_1$
|
|
4068
|
-
const _hoisted_2$
|
|
4177
|
+
const _hoisted_1$B = { key: 0 };
|
|
4178
|
+
const _hoisted_2$a = { key: 0 };
|
|
4069
4179
|
function __render__$1m(_ctx, _cache) {
|
|
4070
4180
|
return vue.openBlock(), vue.createBlock(vue.Transition, {
|
|
4071
4181
|
name: _ctx.n()
|
|
@@ -4090,7 +4200,7 @@ function __render__$1m(_ctx, _cache) {
|
|
|
4090
4200
|
default: vue.withCtx(() => [
|
|
4091
4201
|
_ctx.errorMessage ? (vue.openBlock(), vue.createElementBlock(
|
|
4092
4202
|
"div",
|
|
4093
|
-
_hoisted_1$
|
|
4203
|
+
_hoisted_1$B,
|
|
4094
4204
|
vue.toDisplayString(_ctx.errorMessage),
|
|
4095
4205
|
1
|
|
4096
4206
|
/* TEXT */
|
|
@@ -4116,7 +4226,7 @@ function __render__$1m(_ctx, _cache) {
|
|
|
4116
4226
|
vue.renderSlot(_ctx.$slots, "extra-message", {}, () => [
|
|
4117
4227
|
_ctx.extraMessage ? (vue.openBlock(), vue.createElementBlock(
|
|
4118
4228
|
"div",
|
|
4119
|
-
_hoisted_2$
|
|
4229
|
+
_hoisted_2$a,
|
|
4120
4230
|
vue.toDisplayString(_ctx.extraMessage),
|
|
4121
4231
|
1
|
|
4122
4232
|
/* TEXT */
|
|
@@ -4286,7 +4396,7 @@ var __async$j = (__this, __arguments, generator) => {
|
|
|
4286
4396
|
});
|
|
4287
4397
|
};
|
|
4288
4398
|
const { name: name$1g, n: n$1n, classes: classes$15 } = createNamespace("field-decorator");
|
|
4289
|
-
const _hoisted_1$
|
|
4399
|
+
const _hoisted_1$A = ["for"];
|
|
4290
4400
|
function __render__$1l(_ctx, _cache) {
|
|
4291
4401
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
4292
4402
|
return vue.openBlock(), vue.createElementBlock(
|
|
@@ -4366,7 +4476,7 @@ function __render__$1l(_ctx, _cache) {
|
|
|
4366
4476
|
1
|
|
4367
4477
|
/* TEXT */
|
|
4368
4478
|
)
|
|
4369
|
-
], 14, _hoisted_1$
|
|
4479
|
+
], 14, _hoisted_1$A)) : vue.createCommentVNode("v-if", true),
|
|
4370
4480
|
vue.createElementVNode(
|
|
4371
4481
|
"div",
|
|
4372
4482
|
{
|
|
@@ -4605,6 +4715,7 @@ const props$1d = __spreadProps$a(__spreadValues$s({
|
|
|
4605
4715
|
default: "text"
|
|
4606
4716
|
},
|
|
4607
4717
|
textarea: Boolean,
|
|
4718
|
+
ariaLabel: String,
|
|
4608
4719
|
rows: {
|
|
4609
4720
|
type: [String, Number],
|
|
4610
4721
|
default: 8
|
|
@@ -4655,9 +4766,9 @@ const props$1d = __spreadProps$a(__spreadValues$s({
|
|
|
4655
4766
|
// internal end
|
|
4656
4767
|
});
|
|
4657
4768
|
const { name: name$1f, n: n$1m, classes: classes$14 } = createNamespace("input");
|
|
4658
|
-
const _hoisted_1$
|
|
4659
|
-
const _hoisted_2$
|
|
4660
|
-
const _hoisted_3$4 = ["id", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "inputmode"];
|
|
4769
|
+
const _hoisted_1$z = ["aria-label", "placeholder", "enterkeyhint"];
|
|
4770
|
+
const _hoisted_2$9 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "rows", "enterkeyhint", "inputmode"];
|
|
4771
|
+
const _hoisted_3$4 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "inputmode"];
|
|
4661
4772
|
function __render__$1k(_ctx, _cache) {
|
|
4662
4773
|
const _component_var_field_decorator = vue.resolveComponent("var-field-decorator");
|
|
4663
4774
|
const _component_var_form_details = vue.resolveComponent("var-form-details");
|
|
@@ -4676,6 +4787,7 @@ function __render__$1k(_ctx, _cache) {
|
|
|
4676
4787
|
size: _ctx.size,
|
|
4677
4788
|
variant: _ctx.variant,
|
|
4678
4789
|
placeholder: _ctx.placeholder,
|
|
4790
|
+
ariaLabel: _ctx.ariaLabel,
|
|
4679
4791
|
line: _ctx.line,
|
|
4680
4792
|
hint: _ctx.hint,
|
|
4681
4793
|
textColor: _ctx.textColor,
|
|
@@ -4703,17 +4815,19 @@ function __render__$1k(_ctx, _cache) {
|
|
|
4703
4815
|
_ctx.normalizedType === "password" ? (vue.openBlock(), vue.createElementBlock("input", {
|
|
4704
4816
|
key: 0,
|
|
4705
4817
|
tabindex: "-1",
|
|
4818
|
+
"aria-label": _ctx.ariaLabel,
|
|
4706
4819
|
class: vue.normalizeClass(_ctx.n("autocomplete")),
|
|
4707
4820
|
placeholder: !_ctx.hint ? _ctx.placeholder : void 0,
|
|
4708
4821
|
style: vue.normalizeStyle({
|
|
4709
4822
|
"--input-placeholder-color": _ctx.placeholderColor
|
|
4710
4823
|
}),
|
|
4711
4824
|
enterkeyhint: _ctx.enterkeyhint
|
|
4712
|
-
}, null, 14, _hoisted_1$
|
|
4825
|
+
}, null, 14, _hoisted_1$z)) : vue.createCommentVNode("v-if", true),
|
|
4713
4826
|
_ctx.textarea ? (vue.openBlock(), vue.createElementBlock("textarea", {
|
|
4714
4827
|
key: 1,
|
|
4715
4828
|
id: _ctx.id,
|
|
4716
4829
|
ref: "el",
|
|
4830
|
+
"aria-label": _ctx.ariaLabel,
|
|
4717
4831
|
class: vue.normalizeClass(
|
|
4718
4832
|
_ctx.classes(
|
|
4719
4833
|
_ctx.n("input"),
|
|
@@ -4745,10 +4859,11 @@ function __render__$1k(_ctx, _cache) {
|
|
|
4745
4859
|
onChange: _cache[3] || (_cache[3] = (...args) => _ctx.handleChange && _ctx.handleChange(...args)),
|
|
4746
4860
|
onCompositionstart: _cache[4] || (_cache[4] = (...args) => _ctx.handleCompositionStart && _ctx.handleCompositionStart(...args)),
|
|
4747
4861
|
onCompositionend: _cache[5] || (_cache[5] = (...args) => _ctx.handleCompositionEnd && _ctx.handleCompositionEnd(...args))
|
|
4748
|
-
}, null, 46, _hoisted_2$
|
|
4862
|
+
}, null, 46, _hoisted_2$9)) : (vue.openBlock(), vue.createElementBlock("input", {
|
|
4749
4863
|
key: 2,
|
|
4750
4864
|
id: _ctx.id,
|
|
4751
4865
|
ref: "el",
|
|
4866
|
+
"aria-label": _ctx.ariaLabel,
|
|
4752
4867
|
class: vue.normalizeClass(
|
|
4753
4868
|
_ctx.classes(
|
|
4754
4869
|
_ctx.n("input"),
|
|
@@ -5079,7 +5194,7 @@ function useCheckboxGroup() {
|
|
|
5079
5194
|
};
|
|
5080
5195
|
}
|
|
5081
5196
|
const { name: name$1e, n: n$1l, classes: classes$13 } = createNamespace("checkbox");
|
|
5082
|
-
const _hoisted_1$
|
|
5197
|
+
const _hoisted_1$y = ["tabindex"];
|
|
5083
5198
|
function __render__$1j(_ctx, _cache) {
|
|
5084
5199
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
5085
5200
|
const _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
|
|
@@ -5142,7 +5257,7 @@ function __render__$1j(_ctx, _cache) {
|
|
|
5142
5257
|
hovering: !_ctx.disabled && !_ctx.formDisabled && _ctx.hovering,
|
|
5143
5258
|
focusing: !_ctx.disabled && !_ctx.formDisabled && _ctx.isFocusing
|
|
5144
5259
|
}, null, 8, ["hovering", "focusing"])
|
|
5145
|
-
], 46, _hoisted_1$
|
|
5260
|
+
], 46, _hoisted_1$y)), [
|
|
5146
5261
|
[_directive_hover, _ctx.handleHovering, "desktop"],
|
|
5147
5262
|
[_directive_ripple, { disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled || !_ctx.ripple }]
|
|
5148
5263
|
]),
|
|
@@ -5376,7 +5491,7 @@ var __async$i = (__this, __arguments, generator) => {
|
|
|
5376
5491
|
});
|
|
5377
5492
|
};
|
|
5378
5493
|
const { name: name$1d, n: n$1k, classes: classes$12 } = createNamespace("menu-option");
|
|
5379
|
-
const _hoisted_1$
|
|
5494
|
+
const _hoisted_1$x = ["tabindex"];
|
|
5380
5495
|
function __render__$1i(_ctx, _cache) {
|
|
5381
5496
|
const _component_var_checkbox = vue.resolveComponent("var-checkbox");
|
|
5382
5497
|
const _component_maybe_v_node = vue.resolveComponent("maybe-v-node");
|
|
@@ -5458,7 +5573,7 @@ function __render__$1i(_ctx, _cache) {
|
|
|
5458
5573
|
hovering: (_ctx.hovering || _ctx.highlight) && !_ctx.disabled,
|
|
5459
5574
|
focusing: _ctx.isFocusing && !_ctx.disabled
|
|
5460
5575
|
}, null, 8, ["hovering", "focusing"])
|
|
5461
|
-
], 42, _hoisted_1$
|
|
5576
|
+
], 42, _hoisted_1$x)), [
|
|
5462
5577
|
[_directive_ripple, { disabled: _ctx.disabled || !_ctx.ripple }],
|
|
5463
5578
|
[_directive_hover, _ctx.handleHovering, "desktop"]
|
|
5464
5579
|
]);
|
|
@@ -6209,7 +6324,6 @@ function detectOverflow(state, options) {
|
|
|
6209
6324
|
var popperOffsets2 = computeOffsets({
|
|
6210
6325
|
reference: referenceClientRect,
|
|
6211
6326
|
element: popperRect,
|
|
6212
|
-
strategy: "absolute",
|
|
6213
6327
|
placement
|
|
6214
6328
|
});
|
|
6215
6329
|
var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets2));
|
|
@@ -6833,7 +6947,6 @@ function popperOffsets(_ref) {
|
|
|
6833
6947
|
state.modifiersData[name2] = computeOffsets({
|
|
6834
6948
|
reference: state.rects.reference,
|
|
6835
6949
|
element: state.rects.popper,
|
|
6836
|
-
strategy: "absolute",
|
|
6837
6950
|
placement: state.placement
|
|
6838
6951
|
});
|
|
6839
6952
|
}
|
|
@@ -7598,7 +7711,7 @@ var __async$g = (__this, __arguments, generator) => {
|
|
|
7598
7711
|
});
|
|
7599
7712
|
};
|
|
7600
7713
|
const { name: name$1b, n: n$1i } = createNamespace("menu-children");
|
|
7601
|
-
const _hoisted_1$
|
|
7714
|
+
const _hoisted_1$w = { ref: "menuOptions" };
|
|
7602
7715
|
function __render__$1g(_ctx, _cache) {
|
|
7603
7716
|
const _component_var_menu_option = vue.resolveComponent("var-menu-option");
|
|
7604
7717
|
const _component_var_menu_children = vue.resolveComponent("var-menu-children");
|
|
@@ -7638,7 +7751,7 @@ function __render__$1g(_ctx, _cache) {
|
|
|
7638
7751
|
fn: vue.withCtx(() => [
|
|
7639
7752
|
vue.createElementVNode(
|
|
7640
7753
|
"div",
|
|
7641
|
-
_hoisted_1$
|
|
7754
|
+
_hoisted_1$w,
|
|
7642
7755
|
[
|
|
7643
7756
|
(vue.openBlock(true), vue.createElementBlock(
|
|
7644
7757
|
vue.Fragment,
|
|
@@ -8220,7 +8333,7 @@ var __async$f = (__this, __arguments, generator) => {
|
|
|
8220
8333
|
});
|
|
8221
8334
|
};
|
|
8222
8335
|
const { name: name$19, n: n$1g } = createNamespace("auto-complete");
|
|
8223
|
-
const _hoisted_1$
|
|
8336
|
+
const _hoisted_1$v = ["tabindex"];
|
|
8224
8337
|
function __render__$1e(_ctx, _cache) {
|
|
8225
8338
|
const _component_var_input = vue.resolveComponent("var-input");
|
|
8226
8339
|
const _component_var_menu_option = vue.resolveComponent("var-menu-option");
|
|
@@ -8341,7 +8454,7 @@ function __render__$1e(_ctx, _cache) {
|
|
|
8341
8454
|
"error-message": _ctx.errorMessage,
|
|
8342
8455
|
"extra-message": _ctx.maxlengthText
|
|
8343
8456
|
}, null, 8, ["error-message", "extra-message"])
|
|
8344
|
-
], 42, _hoisted_1$
|
|
8457
|
+
], 42, _hoisted_1$v);
|
|
8345
8458
|
}
|
|
8346
8459
|
const __sfc__$1h = vue.defineComponent({
|
|
8347
8460
|
name: name$19,
|
|
@@ -8824,8 +8937,8 @@ const props$17 = {
|
|
|
8824
8937
|
};
|
|
8825
8938
|
const isInternalSize$1 = (size) => ["mini", "small", "normal", "large"].includes(size);
|
|
8826
8939
|
const { name: name$18, n: n$1f, classes: classes$$ } = createNamespace("avatar");
|
|
8827
|
-
const _hoisted_1$
|
|
8828
|
-
const _hoisted_2$
|
|
8940
|
+
const _hoisted_1$u = ["src", "alt", "lazy-loading", "lazy-error"];
|
|
8941
|
+
const _hoisted_2$8 = ["src", "alt"];
|
|
8829
8942
|
function __render__$1d(_ctx, _cache) {
|
|
8830
8943
|
const _directive_lazy = vue.resolveDirective("lazy");
|
|
8831
8944
|
return vue.openBlock(), vue.createElementBlock(
|
|
@@ -8865,7 +8978,7 @@ function __render__$1d(_ctx, _cache) {
|
|
|
8865
8978
|
"lazy-loading": _ctx.loading,
|
|
8866
8979
|
"lazy-error": _ctx.error,
|
|
8867
8980
|
onLoad: _cache[0] || (_cache[0] = (...args) => _ctx.handleLoad && _ctx.handleLoad(...args))
|
|
8868
|
-
}, null, 46, _hoisted_1$
|
|
8981
|
+
}, null, 46, _hoisted_1$u)), [
|
|
8869
8982
|
[_directive_lazy, _ctx.src]
|
|
8870
8983
|
]) : (vue.openBlock(), vue.createElementBlock("img", {
|
|
8871
8984
|
key: 1,
|
|
@@ -8876,7 +8989,7 @@ function __render__$1d(_ctx, _cache) {
|
|
|
8876
8989
|
style: vue.normalizeStyle({ objectFit: _ctx.fit }),
|
|
8877
8990
|
onLoad: _cache[1] || (_cache[1] = (...args) => _ctx.handleLoad && _ctx.handleLoad(...args)),
|
|
8878
8991
|
onError: _cache[2] || (_cache[2] = (...args) => _ctx.handleError && _ctx.handleError(...args))
|
|
8879
|
-
}, null, 46, _hoisted_2$
|
|
8992
|
+
}, null, 46, _hoisted_2$8))
|
|
8880
8993
|
],
|
|
8881
8994
|
64
|
|
8882
8995
|
/* STABLE_FRAGMENT */
|
|
@@ -9275,7 +9388,7 @@ function useButtonGroup() {
|
|
|
9275
9388
|
};
|
|
9276
9389
|
}
|
|
9277
9390
|
const { name: name$15, n: n$1c, classes: classes$Y } = createNamespace("button");
|
|
9278
|
-
const _hoisted_1$
|
|
9391
|
+
const _hoisted_1$t = ["tabindex", "type", "disabled"];
|
|
9279
9392
|
function __render__$1a(_ctx, _cache) {
|
|
9280
9393
|
const _component_var_loading = vue.resolveComponent("var-loading");
|
|
9281
9394
|
const _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
|
|
@@ -9335,7 +9448,7 @@ function __render__$1a(_ctx, _cache) {
|
|
|
9335
9448
|
hovering: _ctx.disabled || _ctx.loading || _ctx.pending ? false : _ctx.hovering,
|
|
9336
9449
|
focusing: _ctx.disabled || _ctx.loading || _ctx.pending ? false : _ctx.isFocusing
|
|
9337
9450
|
}, null, 8, ["hovering", "focusing"])
|
|
9338
|
-
], 46, _hoisted_1$
|
|
9451
|
+
], 46, _hoisted_1$t)), [
|
|
9339
9452
|
[_directive_ripple, { disabled: _ctx.disabled || !_ctx.ripple || _ctx.loading || _ctx.pending }],
|
|
9340
9453
|
[_directive_hover, _ctx.handleHovering, "desktop"]
|
|
9341
9454
|
]);
|
|
@@ -9597,7 +9710,7 @@ var __spreadValues$k = (a, b) => {
|
|
|
9597
9710
|
return a;
|
|
9598
9711
|
};
|
|
9599
9712
|
const { name: name$13, n: n$1a, classes: classes$W } = createNamespace("badge");
|
|
9600
|
-
const _hoisted_1$
|
|
9713
|
+
const _hoisted_1$s = { key: 0 };
|
|
9601
9714
|
function __render__$18(_ctx, _cache) {
|
|
9602
9715
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
9603
9716
|
return vue.openBlock(), vue.createElementBlock(
|
|
@@ -9635,7 +9748,7 @@ function __render__$18(_ctx, _cache) {
|
|
|
9635
9748
|
vue.renderSlot(_ctx.$slots, "value", {}, () => [
|
|
9636
9749
|
!_ctx.icon && !_ctx.dot ? (vue.openBlock(), vue.createElementBlock(
|
|
9637
9750
|
"span",
|
|
9638
|
-
_hoisted_1$
|
|
9751
|
+
_hoisted_1$s,
|
|
9639
9752
|
vue.toDisplayString(_ctx.value),
|
|
9640
9753
|
1
|
|
9641
9754
|
/* TEXT */
|
|
@@ -10357,7 +10470,7 @@ var __async$d = (__this, __arguments, generator) => {
|
|
|
10357
10470
|
};
|
|
10358
10471
|
const { name: name$Z, n: n$14, classes: classes$R } = createNamespace("card");
|
|
10359
10472
|
const RIPPLE_DELAY = 500;
|
|
10360
|
-
const _hoisted_1$
|
|
10473
|
+
const _hoisted_1$r = ["src", "alt"];
|
|
10361
10474
|
function __render__$12(_ctx, _cache) {
|
|
10362
10475
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
10363
10476
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
@@ -10410,7 +10523,7 @@ function __render__$12(_ctx, _cache) {
|
|
|
10410
10523
|
}),
|
|
10411
10524
|
src: _ctx.src,
|
|
10412
10525
|
alt: _ctx.alt
|
|
10413
|
-
}, null, 14, _hoisted_1$
|
|
10526
|
+
}, null, 14, _hoisted_1$r)) : vue.createCommentVNode("v-if", true)
|
|
10414
10527
|
]),
|
|
10415
10528
|
vue.createElementVNode(
|
|
10416
10529
|
"div",
|
|
@@ -11174,12 +11287,12 @@ var __async$c = (__this, __arguments, generator) => {
|
|
|
11174
11287
|
});
|
|
11175
11288
|
};
|
|
11176
11289
|
const { name: name$V, n: n$10, classes: classes$N } = createNamespace("code");
|
|
11177
|
-
const _hoisted_1$
|
|
11290
|
+
const _hoisted_1$q = ["innerHTML"];
|
|
11178
11291
|
function __render__$_(_ctx, _cache) {
|
|
11179
11292
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
11180
11293
|
class: vue.normalizeClass(_ctx.classes(_ctx.n(), [_ctx.wordWrap, _ctx.n("--word-wrap")])),
|
|
11181
11294
|
innerHTML: _ctx.highlightedCode
|
|
11182
|
-
}, null, 10, _hoisted_1$
|
|
11295
|
+
}, null, 10, _hoisted_1$q);
|
|
11183
11296
|
}
|
|
11184
11297
|
const __sfc__$11 = vue.defineComponent({
|
|
11185
11298
|
name: name$V,
|
|
@@ -11593,7 +11706,7 @@ function useCollapse() {
|
|
|
11593
11706
|
};
|
|
11594
11707
|
}
|
|
11595
11708
|
const { name: name$S, n: n$Z, classes: classes$L } = createNamespace("collapse-item");
|
|
11596
|
-
const _hoisted_1$
|
|
11709
|
+
const _hoisted_1$p = ["aria-expanded", "aria-disabled", "role"];
|
|
11597
11710
|
function __render__$X(_ctx, _cache) {
|
|
11598
11711
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
11599
11712
|
return vue.openBlock(), vue.createElementBlock(
|
|
@@ -11660,7 +11773,7 @@ function __render__$X(_ctx, _cache) {
|
|
|
11660
11773
|
2
|
|
11661
11774
|
/* CLASS */
|
|
11662
11775
|
)
|
|
11663
|
-
], 10, _hoisted_1$
|
|
11776
|
+
], 10, _hoisted_1$p),
|
|
11664
11777
|
vue.withDirectives(vue.createElementVNode(
|
|
11665
11778
|
"div",
|
|
11666
11779
|
{
|
|
@@ -12127,7 +12240,7 @@ var EXP_LIMIT = 9e15, MAX_DIGITS = 1e9, NUMERALS = "0123456789abcdef", LN10 = "2
|
|
|
12127
12240
|
// 0 to EXP_LIMIT
|
|
12128
12241
|
// The minimum exponent value, beneath which underflow to zero occurs.
|
|
12129
12242
|
// JavaScript numbers: -324 (5e-324)
|
|
12130
|
-
minE: -
|
|
12243
|
+
minE: -9e15,
|
|
12131
12244
|
// -1 to -EXP_LIMIT
|
|
12132
12245
|
// The maximum exponent value, above which overflow to Infinity occurs.
|
|
12133
12246
|
// JavaScript numbers: 308 (1.7976931348623157e+308)
|
|
@@ -13881,7 +13994,7 @@ function config(obj) {
|
|
|
13881
13994
|
0,
|
|
13882
13995
|
8,
|
|
13883
13996
|
"toExpNeg",
|
|
13884
|
-
-
|
|
13997
|
+
-9e15,
|
|
13885
13998
|
0,
|
|
13886
13999
|
"toExpPos",
|
|
13887
14000
|
0,
|
|
@@ -13890,7 +14003,7 @@ function config(obj) {
|
|
|
13890
14003
|
0,
|
|
13891
14004
|
EXP_LIMIT,
|
|
13892
14005
|
"minE",
|
|
13893
|
-
-
|
|
14006
|
+
-9e15,
|
|
13894
14007
|
0,
|
|
13895
14008
|
"modulo",
|
|
13896
14009
|
0,
|
|
@@ -14270,7 +14383,7 @@ const props$N = {
|
|
|
14270
14383
|
const SPEED = 100;
|
|
14271
14384
|
const DELAY = 600;
|
|
14272
14385
|
const { name: name$O, n: n$V, classes: classes$K } = createNamespace("counter");
|
|
14273
|
-
const _hoisted_1$
|
|
14386
|
+
const _hoisted_1$o = ["inputmode", "readonly", "disabled"];
|
|
14274
14387
|
function __render__$T(_ctx, _cache) {
|
|
14275
14388
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
14276
14389
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
@@ -14330,7 +14443,7 @@ function __render__$T(_ctx, _cache) {
|
|
|
14330
14443
|
readonly: _ctx.readonly || _ctx.formReadonly,
|
|
14331
14444
|
disabled: _ctx.disabled || _ctx.formDisabled || _ctx.disableInput,
|
|
14332
14445
|
onChange: _cache[1] || (_cache[1] = (...args) => _ctx.handleChange && _ctx.handleChange(...args))
|
|
14333
|
-
}, null, 46, _hoisted_1$
|
|
14446
|
+
}, null, 46, _hoisted_1$o), [
|
|
14334
14447
|
[vue.vModelText, _ctx.inputValue]
|
|
14335
14448
|
]),
|
|
14336
14449
|
vue.createVNode(_component_var_button, {
|
|
@@ -17935,7 +18048,7 @@ var __spreadValues$b = (a, b) => {
|
|
|
17935
18048
|
return a;
|
|
17936
18049
|
};
|
|
17937
18050
|
const { name: name$H, n: n$K, classes: classes$A } = createNamespace("ellipsis");
|
|
17938
|
-
const _hoisted_1$
|
|
18051
|
+
const _hoisted_1$n = { key: 0 };
|
|
17939
18052
|
function __render__$I(_ctx, _cache) {
|
|
17940
18053
|
const _component_var_tooltip = vue.resolveComponent("var-tooltip");
|
|
17941
18054
|
return vue.openBlock(), vue.createBlock(
|
|
@@ -17948,7 +18061,7 @@ function __render__$I(_ctx, _cache) {
|
|
|
17948
18061
|
return [
|
|
17949
18062
|
((_a = _ctx.tooltipProps) == null ? void 0 : _a.content) ? (vue.openBlock(), vue.createElementBlock(
|
|
17950
18063
|
"span",
|
|
17951
|
-
_hoisted_1$
|
|
18064
|
+
_hoisted_1$n,
|
|
17952
18065
|
vue.toDisplayString(_ctx.tooltipProps.content),
|
|
17953
18066
|
1
|
|
17954
18067
|
/* TEXT */
|
|
@@ -18612,8 +18725,8 @@ const props$B = {
|
|
|
18612
18725
|
onError: defineListenerProp()
|
|
18613
18726
|
};
|
|
18614
18727
|
const { name: name$C, n: n$F, classes: classes$x } = createNamespace("image");
|
|
18615
|
-
const _hoisted_1$
|
|
18616
|
-
const _hoisted_2$
|
|
18728
|
+
const _hoisted_1$m = ["alt", "title", "referrerpolicy", "lazy-loading", "lazy-error"];
|
|
18729
|
+
const _hoisted_2$7 = ["alt", "title", "referrerpolicy", "src"];
|
|
18617
18730
|
function __render__$F(_ctx, _cache) {
|
|
18618
18731
|
var _a;
|
|
18619
18732
|
const _directive_lazy = vue.resolveDirective("lazy");
|
|
@@ -18641,7 +18754,7 @@ function __render__$F(_ctx, _cache) {
|
|
|
18641
18754
|
style: vue.normalizeStyle({ objectFit: _ctx.fit, objectPosition: _ctx.position }),
|
|
18642
18755
|
onLoad: _cache[0] || (_cache[0] = (...args) => _ctx.handleLoad && _ctx.handleLoad(...args)),
|
|
18643
18756
|
onClick: _cache[1] || (_cache[1] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
|
|
18644
|
-
}, null, 46, _hoisted_1$
|
|
18757
|
+
}, null, 46, _hoisted_1$m)), [
|
|
18645
18758
|
[_directive_lazy, (_a = _ctx.src) != null ? _a : ""]
|
|
18646
18759
|
]) : vue.createCommentVNode("v-if", true),
|
|
18647
18760
|
!_ctx.lazy && !_ctx.showErrorSlot ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
@@ -18656,7 +18769,7 @@ function __render__$F(_ctx, _cache) {
|
|
|
18656
18769
|
onLoad: _cache[2] || (_cache[2] = (...args) => _ctx.handleLoad && _ctx.handleLoad(...args)),
|
|
18657
18770
|
onError: _cache[3] || (_cache[3] = (...args) => _ctx.handleError && _ctx.handleError(...args)),
|
|
18658
18771
|
onClick: _cache[4] || (_cache[4] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
|
|
18659
|
-
}, null, 46, _hoisted_2$
|
|
18772
|
+
}, null, 46, _hoisted_2$7)) : vue.createCommentVNode("v-if", true),
|
|
18660
18773
|
_ctx.showErrorSlot ? vue.renderSlot(_ctx.$slots, "error", { key: 2 }) : vue.createCommentVNode("v-if", true)
|
|
18661
18774
|
],
|
|
18662
18775
|
6
|
|
@@ -18771,7 +18884,7 @@ var __async$7 = (__this, __arguments, generator) => {
|
|
|
18771
18884
|
const SWIPE_DELAY = 250;
|
|
18772
18885
|
const SWIPE_OFFSET = 20;
|
|
18773
18886
|
const { name: name$B, n: n$E, classes: classes$w } = createNamespace("swipe");
|
|
18774
|
-
const _hoisted_1$
|
|
18887
|
+
const _hoisted_1$l = ["onClick"];
|
|
18775
18888
|
function __render__$E(_ctx, _cache) {
|
|
18776
18889
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
18777
18890
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
@@ -18917,7 +19030,7 @@ function __render__$E(_ctx, _cache) {
|
|
|
18917
19030
|
),
|
|
18918
19031
|
style: vue.normalizeStyle({ background: _ctx.indicatorColor }),
|
|
18919
19032
|
onClick: ($event) => _ctx.to(idx)
|
|
18920
|
-
}, null, 14, _hoisted_1$
|
|
19033
|
+
}, null, 14, _hoisted_1$l);
|
|
18921
19034
|
}),
|
|
18922
19035
|
128
|
|
18923
19036
|
/* KEYED_FRAGMENT */
|
|
@@ -19281,7 +19394,7 @@ function useSwipe() {
|
|
|
19281
19394
|
};
|
|
19282
19395
|
}
|
|
19283
19396
|
const { name: name$A, n: n$D } = createNamespace("swipe-item");
|
|
19284
|
-
const _hoisted_1$
|
|
19397
|
+
const _hoisted_1$k = ["aria-hidden"];
|
|
19285
19398
|
function __render__$D(_ctx, _cache) {
|
|
19286
19399
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
19287
19400
|
class: vue.normalizeClass(_ctx.n()),
|
|
@@ -19296,7 +19409,7 @@ function __render__$D(_ctx, _cache) {
|
|
|
19296
19409
|
onBlur: _cache[1] || (_cache[1] = ($event) => _ctx.isFocusing = false)
|
|
19297
19410
|
}, [
|
|
19298
19411
|
vue.renderSlot(_ctx.$slots, "default")
|
|
19299
|
-
], 46, _hoisted_1$
|
|
19412
|
+
], 46, _hoisted_1$k);
|
|
19300
19413
|
}
|
|
19301
19414
|
const __sfc__$F = vue.defineComponent({
|
|
19302
19415
|
name: name$A,
|
|
@@ -19384,8 +19497,8 @@ const TAP_DELAY = 350;
|
|
|
19384
19497
|
const ANIMATION_DURATION = 200;
|
|
19385
19498
|
const LONG_PRESS_DELAY = 500;
|
|
19386
19499
|
const BASE_RATIO = 1;
|
|
19387
|
-
const _hoisted_1$
|
|
19388
|
-
const _hoisted_2$
|
|
19500
|
+
const _hoisted_1$j = ["onTouchstart"];
|
|
19501
|
+
const _hoisted_2$6 = ["src", "alt"];
|
|
19389
19502
|
function __render__$C(_ctx, _cache) {
|
|
19390
19503
|
const _component_var_swipe_item = vue.resolveComponent("var-swipe-item");
|
|
19391
19504
|
const _component_var_swipe = vue.resolveComponent("var-swipe");
|
|
@@ -19447,8 +19560,8 @@ function __render__$C(_ctx, _cache) {
|
|
|
19447
19560
|
class: vue.normalizeClass(_ctx.classes(_ctx.n("image"), [_ctx.isPreventDefault, _ctx.n("--prevent")])),
|
|
19448
19561
|
src: image,
|
|
19449
19562
|
alt: image
|
|
19450
|
-
}, null, 10, _hoisted_2$
|
|
19451
|
-
], 46, _hoisted_1$
|
|
19563
|
+
}, null, 10, _hoisted_2$6)
|
|
19564
|
+
], 46, _hoisted_1$j)
|
|
19452
19565
|
]),
|
|
19453
19566
|
_: 2
|
|
19454
19567
|
/* DYNAMIC */
|
|
@@ -19926,7 +20039,7 @@ var __async$6 = (__this, __arguments, generator) => {
|
|
|
19926
20039
|
});
|
|
19927
20040
|
};
|
|
19928
20041
|
const { name: name$x, n: n$A, classes: classes$t } = createNamespace("index-bar");
|
|
19929
|
-
const _hoisted_1$
|
|
20042
|
+
const _hoisted_1$i = ["onClick"];
|
|
19930
20043
|
function __render__$A(_ctx, _cache) {
|
|
19931
20044
|
return vue.openBlock(), vue.createElementBlock(
|
|
19932
20045
|
"div",
|
|
@@ -19960,7 +20073,7 @@ function __render__$A(_ctx, _cache) {
|
|
|
19960
20073
|
/* TEXT */
|
|
19961
20074
|
)
|
|
19962
20075
|
])
|
|
19963
|
-
], 14, _hoisted_1$
|
|
20076
|
+
], 14, _hoisted_1$i);
|
|
19964
20077
|
}),
|
|
19965
20078
|
128
|
|
19966
20079
|
/* KEYED_FRAGMENT */
|
|
@@ -20688,7 +20801,7 @@ function useSelect() {
|
|
|
20688
20801
|
};
|
|
20689
20802
|
}
|
|
20690
20803
|
const { name: name$s, n: n$v, classes: classes$p } = createNamespace("option");
|
|
20691
|
-
const _hoisted_1$
|
|
20804
|
+
const _hoisted_1$h = ["tabindex"];
|
|
20692
20805
|
function __render__$x(_ctx, _cache) {
|
|
20693
20806
|
const _component_var_checkbox = vue.resolveComponent("var-checkbox");
|
|
20694
20807
|
const _component_maybe_v_node = vue.resolveComponent("maybe-v-node");
|
|
@@ -20746,7 +20859,7 @@ function __render__$x(_ctx, _cache) {
|
|
|
20746
20859
|
hovering: _ctx.hovering && !_ctx.disabled,
|
|
20747
20860
|
focusing: _ctx.isFocusing && !_ctx.disabled
|
|
20748
20861
|
}, null, 8, ["hovering", "focusing"])
|
|
20749
|
-
], 46, _hoisted_1$
|
|
20862
|
+
], 46, _hoisted_1$h)), [
|
|
20750
20863
|
[_directive_ripple, { disabled: _ctx.disabled || !_ctx.ripple }],
|
|
20751
20864
|
[_directive_hover, _ctx.handleHovering, "desktop"]
|
|
20752
20865
|
]);
|
|
@@ -20990,7 +21103,7 @@ const props$q = {
|
|
|
20990
21103
|
"onUpdate:size": defineListenerProp()
|
|
20991
21104
|
};
|
|
20992
21105
|
const { name: name$q, n: n$t, classes: classes$o } = createNamespace("pagination");
|
|
20993
|
-
const _hoisted_1$
|
|
21106
|
+
const _hoisted_1$g = ["item-mode", "onClick"];
|
|
20994
21107
|
function __render__$w(_ctx, _cache) {
|
|
20995
21108
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
20996
21109
|
const _component_var_input = vue.resolveComponent("var-input");
|
|
@@ -21037,6 +21150,7 @@ function __render__$w(_ctx, _cache) {
|
|
|
21037
21150
|
modelValue: _ctx.simpleCurrentValue,
|
|
21038
21151
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.simpleCurrentValue = $event),
|
|
21039
21152
|
"var-pagination-cover": "",
|
|
21153
|
+
variant: "standard",
|
|
21040
21154
|
hint: false,
|
|
21041
21155
|
disabled: _ctx.disabled,
|
|
21042
21156
|
onBlur: _cache[2] || (_cache[2] = ($event) => _ctx.setPage("simple", _ctx.simpleCurrentValue, $event)),
|
|
@@ -21085,7 +21199,7 @@ function __render__$w(_ctx, _cache) {
|
|
|
21085
21199
|
1
|
|
21086
21200
|
/* TEXT */
|
|
21087
21201
|
)
|
|
21088
|
-
], 10, _hoisted_1$
|
|
21202
|
+
], 10, _hoisted_1$g)), [
|
|
21089
21203
|
[_directive_ripple, { disabled: _ctx.disabled }]
|
|
21090
21204
|
]);
|
|
21091
21205
|
}),
|
|
@@ -21115,45 +21229,45 @@ function __render__$w(_ctx, _cache) {
|
|
|
21115
21229
|
)), [
|
|
21116
21230
|
[_directive_ripple, { disabled: _ctx.current >= _ctx.pageCount || _ctx.disabled }]
|
|
21117
21231
|
]),
|
|
21118
|
-
_ctx.showSizeChanger ? (vue.openBlock(), vue.
|
|
21119
|
-
|
|
21120
|
-
|
|
21121
|
-
|
|
21122
|
-
|
|
21123
|
-
|
|
21124
|
-
|
|
21125
|
-
|
|
21126
|
-
|
|
21127
|
-
|
|
21128
|
-
|
|
21129
|
-
|
|
21130
|
-
|
|
21131
|
-
|
|
21132
|
-
|
|
21133
|
-
|
|
21134
|
-
|
|
21135
|
-
vue.
|
|
21136
|
-
|
|
21137
|
-
|
|
21138
|
-
|
|
21139
|
-
|
|
21140
|
-
|
|
21141
|
-
|
|
21142
|
-
|
|
21143
|
-
|
|
21144
|
-
|
|
21145
|
-
|
|
21146
|
-
|
|
21147
|
-
|
|
21148
|
-
|
|
21149
|
-
|
|
21150
|
-
|
|
21151
|
-
|
|
21152
|
-
|
|
21153
|
-
|
|
21154
|
-
))
|
|
21155
|
-
|
|
21156
|
-
|
|
21232
|
+
_ctx.showSizeChanger ? (vue.openBlock(), vue.createBlock(_component_var_menu_select, {
|
|
21233
|
+
key: 2,
|
|
21234
|
+
modelValue: _ctx.size,
|
|
21235
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.size = $event),
|
|
21236
|
+
placement: "cover-top",
|
|
21237
|
+
disabled: _ctx.disabled
|
|
21238
|
+
}, {
|
|
21239
|
+
options: vue.withCtx(() => [
|
|
21240
|
+
(vue.openBlock(true), vue.createElementBlock(
|
|
21241
|
+
vue.Fragment,
|
|
21242
|
+
null,
|
|
21243
|
+
vue.renderList(_ctx.sizeOption, (option, index) => {
|
|
21244
|
+
return vue.openBlock(), vue.createBlock(_component_var_menu_option, {
|
|
21245
|
+
key: index,
|
|
21246
|
+
value: option,
|
|
21247
|
+
onClick: _ctx.clickSize
|
|
21248
|
+
}, {
|
|
21249
|
+
default: vue.withCtx(() => [
|
|
21250
|
+
vue.createTextVNode(
|
|
21251
|
+
vue.toDisplayString(option) + vue.toDisplayString((_ctx.pt ? _ctx.pt : _ctx.t)("paginationItem")) + " / " + vue.toDisplayString((_ctx.pt ? _ctx.pt : _ctx.t)("paginationPage")),
|
|
21252
|
+
1
|
|
21253
|
+
/* TEXT */
|
|
21254
|
+
)
|
|
21255
|
+
]),
|
|
21256
|
+
_: 2
|
|
21257
|
+
/* DYNAMIC */
|
|
21258
|
+
}, 1032, ["value", "onClick"]);
|
|
21259
|
+
}),
|
|
21260
|
+
128
|
|
21261
|
+
/* KEYED_FRAGMENT */
|
|
21262
|
+
))
|
|
21263
|
+
]),
|
|
21264
|
+
default: vue.withCtx(() => [
|
|
21265
|
+
vue.createElementVNode(
|
|
21266
|
+
"li",
|
|
21267
|
+
{
|
|
21268
|
+
class: vue.normalizeClass(_ctx.classes(_ctx.n("size"), [_ctx.disabled, _ctx.n("item--disabled")]))
|
|
21269
|
+
},
|
|
21270
|
+
[
|
|
21157
21271
|
vue.createElementVNode(
|
|
21158
21272
|
"div",
|
|
21159
21273
|
{
|
|
@@ -21176,14 +21290,14 @@ function __render__$w(_ctx, _cache) {
|
|
|
21176
21290
|
2
|
|
21177
21291
|
/* CLASS */
|
|
21178
21292
|
)
|
|
21179
|
-
]
|
|
21180
|
-
|
|
21181
|
-
/*
|
|
21182
|
-
|
|
21183
|
-
],
|
|
21184
|
-
|
|
21185
|
-
/*
|
|
21186
|
-
)) : vue.createCommentVNode("v-if", true),
|
|
21293
|
+
],
|
|
21294
|
+
2
|
|
21295
|
+
/* CLASS */
|
|
21296
|
+
)
|
|
21297
|
+
]),
|
|
21298
|
+
_: 1
|
|
21299
|
+
/* STABLE */
|
|
21300
|
+
}, 8, ["modelValue", "disabled"])) : vue.createCommentVNode("v-if", true),
|
|
21187
21301
|
_ctx.showQuickJumper && !_ctx.simple ? (vue.openBlock(), vue.createElementBlock(
|
|
21188
21302
|
"li",
|
|
21189
21303
|
{
|
|
@@ -21201,6 +21315,7 @@ function __render__$w(_ctx, _cache) {
|
|
|
21201
21315
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => _ctx.quickJumperValue = $event),
|
|
21202
21316
|
disabled: _ctx.disabled,
|
|
21203
21317
|
hint: false,
|
|
21318
|
+
variant: "standard",
|
|
21204
21319
|
"var-pagination-cover": "",
|
|
21205
21320
|
onBlur: _cache[7] || (_cache[7] = ($event) => _ctx.setPage("quick", _ctx.quickJumperValue, $event)),
|
|
21206
21321
|
onKeydown: _cache[8] || (_cache[8] = vue.withKeys(($event) => _ctx.setPage("quick", _ctx.quickJumperValue, $event), ["enter"]))
|
|
@@ -21549,8 +21664,8 @@ const MOMENTUM_ALLOW_DISTANCE = 15;
|
|
|
21549
21664
|
const TRANSITION_DURATION = 200;
|
|
21550
21665
|
const MOMENTUM_TRANSITION_DURATION = 1e3;
|
|
21551
21666
|
let sid$1 = 0;
|
|
21552
|
-
const _hoisted_1$
|
|
21553
|
-
const _hoisted_2$
|
|
21667
|
+
const _hoisted_1$f = ["onTouchstartPassive", "onTouchmove", "onTouchend"];
|
|
21668
|
+
const _hoisted_2$5 = ["onTransitionend"];
|
|
21554
21669
|
const _hoisted_3$3 = ["onClick"];
|
|
21555
21670
|
function __render__$u(_ctx, _cache) {
|
|
21556
21671
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
@@ -21706,8 +21821,8 @@ function __render__$u(_ctx, _cache) {
|
|
|
21706
21821
|
128
|
|
21707
21822
|
/* KEYED_FRAGMENT */
|
|
21708
21823
|
))
|
|
21709
|
-
], 46, _hoisted_2$
|
|
21710
|
-
], 42, _hoisted_1$
|
|
21824
|
+
], 46, _hoisted_2$5)
|
|
21825
|
+
], 42, _hoisted_1$f);
|
|
21711
21826
|
}),
|
|
21712
21827
|
128
|
|
21713
21828
|
/* KEYED_FRAGMENT */
|
|
@@ -22145,8 +22260,8 @@ const MIN = 0;
|
|
|
22145
22260
|
const RADIUS = 20;
|
|
22146
22261
|
const CIRCUMFERENCE = 2 * Math.PI * RADIUS;
|
|
22147
22262
|
const { name: name$n, n: n$q, classes: classes$l } = createNamespace("progress");
|
|
22148
|
-
const _hoisted_1$
|
|
22149
|
-
const _hoisted_2$
|
|
22263
|
+
const _hoisted_1$e = ["aria-valuenow"];
|
|
22264
|
+
const _hoisted_2$4 = ["viewBox"];
|
|
22150
22265
|
const _hoisted_3$2 = { key: 0 };
|
|
22151
22266
|
const _hoisted_4$2 = ["id"];
|
|
22152
22267
|
const _hoisted_5$1 = ["offset", "stop-color"];
|
|
@@ -22300,7 +22415,7 @@ function __render__$t(_ctx, _cache) {
|
|
|
22300
22415
|
transformOrigin: "50% 50%"
|
|
22301
22416
|
})
|
|
22302
22417
|
}, null, 14, _hoisted_7)
|
|
22303
|
-
], 10, _hoisted_2$
|
|
22418
|
+
], 10, _hoisted_2$4)),
|
|
22304
22419
|
_ctx.label ? (vue.openBlock(), vue.createElementBlock(
|
|
22305
22420
|
"div",
|
|
22306
22421
|
{
|
|
@@ -22323,7 +22438,7 @@ function __render__$t(_ctx, _cache) {
|
|
|
22323
22438
|
6
|
|
22324
22439
|
/* CLASS, STYLE */
|
|
22325
22440
|
)) : vue.createCommentVNode("v-if", true)
|
|
22326
|
-
], 10, _hoisted_1$
|
|
22441
|
+
], 10, _hoisted_1$e);
|
|
22327
22442
|
}
|
|
22328
22443
|
const __sfc__$u = vue.defineComponent({
|
|
22329
22444
|
name: name$n,
|
|
@@ -22348,11 +22463,11 @@ const __sfc__$u = vue.defineComponent({
|
|
|
22348
22463
|
const strokeOffset = `${(MAX - roundValue) / MAX * CIRCUMFERENCE}`;
|
|
22349
22464
|
const strokeWidth = toPxNum(lineWidth) / toPxNum(size) * diameter;
|
|
22350
22465
|
const beginPositionX = 0;
|
|
22351
|
-
const beginPositionY = -
|
|
22466
|
+
const beginPositionY = -20;
|
|
22352
22467
|
const endPositionX = 0;
|
|
22353
22468
|
const endPositionY = -2 * RADIUS;
|
|
22354
22469
|
const path = `M ${diameter / 2} ${diameter / 2} m ${beginPositionX} ${beginPositionY} a ${RADIUS} ${RADIUS}
|
|
22355
|
-
0 1 1 ${endPositionX} ${
|
|
22470
|
+
0 1 1 ${endPositionX} ${40} a ${RADIUS} ${RADIUS} 0 1 1 ${-0} ${endPositionY}`;
|
|
22356
22471
|
return {
|
|
22357
22472
|
strokeWidth,
|
|
22358
22473
|
viewBox,
|
|
@@ -22670,7 +22785,8 @@ function useRadioGroup() {
|
|
|
22670
22785
|
};
|
|
22671
22786
|
}
|
|
22672
22787
|
const { name: name$l, n: n$o, classes: classes$j } = createNamespace("radio");
|
|
22673
|
-
const _hoisted_1$
|
|
22788
|
+
const _hoisted_1$d = ["aria-checked"];
|
|
22789
|
+
const _hoisted_2$3 = ["tabindex"];
|
|
22674
22790
|
function __render__$r(_ctx, _cache) {
|
|
22675
22791
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
22676
22792
|
const _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
|
|
@@ -22683,75 +22799,71 @@ function __render__$r(_ctx, _cache) {
|
|
|
22683
22799
|
class: vue.normalizeClass(_ctx.n("wrap"))
|
|
22684
22800
|
},
|
|
22685
22801
|
[
|
|
22686
|
-
vue.createElementVNode(
|
|
22687
|
-
"
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
|
|
22695
|
-
|
|
22802
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
22803
|
+
role: "radio",
|
|
22804
|
+
"aria-checked": _ctx.checked,
|
|
22805
|
+
class: _ctx.n()
|
|
22806
|
+
}, _ctx.$attrs, {
|
|
22807
|
+
onClick: _cache[3] || (_cache[3] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
|
|
22808
|
+
}), [
|
|
22809
|
+
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
22810
|
+
ref: "action",
|
|
22811
|
+
class: vue.normalizeClass(
|
|
22812
|
+
_ctx.classes(
|
|
22813
|
+
_ctx.n("action"),
|
|
22814
|
+
[_ctx.checked, _ctx.n("--checked"), _ctx.n("--unchecked")],
|
|
22815
|
+
[_ctx.errorMessage || _ctx.radioGroupErrorMessage, _ctx.n("--error")],
|
|
22816
|
+
[_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")]
|
|
22817
|
+
)
|
|
22818
|
+
),
|
|
22819
|
+
tabindex: _ctx.tabIndex,
|
|
22820
|
+
style: vue.normalizeStyle({ color: _ctx.checked ? _ctx.checkedColor : _ctx.uncheckedColor }),
|
|
22821
|
+
onFocus: _cache[0] || (_cache[0] = ($event) => _ctx.isFocusing = true),
|
|
22822
|
+
onBlur: _cache[1] || (_cache[1] = ($event) => _ctx.isFocusing = false)
|
|
22823
|
+
}, [
|
|
22824
|
+
_ctx.checked ? vue.renderSlot(_ctx.$slots, "checked-icon", { key: 0 }, () => [
|
|
22825
|
+
vue.createVNode(_component_var_icon, {
|
|
22826
|
+
class: vue.normalizeClass(_ctx.n("icon")),
|
|
22827
|
+
"var-radio-cover": "",
|
|
22828
|
+
name: "radio-marked",
|
|
22829
|
+
size: _ctx.iconSize
|
|
22830
|
+
}, null, 8, ["class", "size"])
|
|
22831
|
+
]) : vue.renderSlot(_ctx.$slots, "unchecked-icon", { key: 1 }, () => [
|
|
22832
|
+
vue.createVNode(_component_var_icon, {
|
|
22833
|
+
class: vue.normalizeClass(_ctx.n("icon")),
|
|
22834
|
+
"var-radio-cover": "",
|
|
22835
|
+
name: "radio-blank",
|
|
22836
|
+
size: _ctx.iconSize
|
|
22837
|
+
}, null, 8, ["class", "size"])
|
|
22838
|
+
]),
|
|
22839
|
+
vue.createVNode(_component_var_hover_overlay, {
|
|
22840
|
+
hovering: !_ctx.disabled && !_ctx.formDisabled && _ctx.hovering,
|
|
22841
|
+
focusing: !_ctx.disabled && !_ctx.formDisabled && _ctx.isFocusing
|
|
22842
|
+
}, null, 8, ["hovering", "focusing"])
|
|
22843
|
+
], 46, _hoisted_2$3)), [
|
|
22844
|
+
[_directive_ripple, { disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled || !_ctx.ripple }],
|
|
22845
|
+
[_directive_hover, _ctx.handleHovering, "desktop"]
|
|
22846
|
+
]),
|
|
22847
|
+
_ctx.$slots.default ? (vue.openBlock(), vue.createElementBlock(
|
|
22848
|
+
"div",
|
|
22849
|
+
{
|
|
22850
|
+
key: 0,
|
|
22696
22851
|
class: vue.normalizeClass(
|
|
22697
22852
|
_ctx.classes(
|
|
22698
|
-
_ctx.n("
|
|
22699
|
-
[_ctx.checked, _ctx.n("--checked"), _ctx.n("--unchecked")],
|
|
22853
|
+
_ctx.n("text"),
|
|
22700
22854
|
[_ctx.errorMessage || _ctx.radioGroupErrorMessage, _ctx.n("--error")],
|
|
22701
22855
|
[_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")]
|
|
22702
22856
|
)
|
|
22703
22857
|
),
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
name: "radio-marked",
|
|
22714
|
-
size: _ctx.iconSize
|
|
22715
|
-
}, null, 8, ["class", "size"])
|
|
22716
|
-
]) : vue.renderSlot(_ctx.$slots, "unchecked-icon", { key: 1 }, () => [
|
|
22717
|
-
vue.createVNode(_component_var_icon, {
|
|
22718
|
-
class: vue.normalizeClass(_ctx.n("icon")),
|
|
22719
|
-
"var-radio-cover": "",
|
|
22720
|
-
name: "radio-blank",
|
|
22721
|
-
size: _ctx.iconSize
|
|
22722
|
-
}, null, 8, ["class", "size"])
|
|
22723
|
-
]),
|
|
22724
|
-
vue.createVNode(_component_var_hover_overlay, {
|
|
22725
|
-
hovering: !_ctx.disabled && !_ctx.formDisabled && _ctx.hovering,
|
|
22726
|
-
focusing: !_ctx.disabled && !_ctx.formDisabled && _ctx.isFocusing
|
|
22727
|
-
}, null, 8, ["hovering", "focusing"])
|
|
22728
|
-
], 46, _hoisted_1$c)), [
|
|
22729
|
-
[_directive_ripple, { disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled || !_ctx.ripple }],
|
|
22730
|
-
[_directive_hover, _ctx.handleHovering, "desktop"]
|
|
22731
|
-
]),
|
|
22732
|
-
_ctx.$slots.default ? (vue.openBlock(), vue.createElementBlock(
|
|
22733
|
-
"div",
|
|
22734
|
-
{
|
|
22735
|
-
key: 0,
|
|
22736
|
-
class: vue.normalizeClass(
|
|
22737
|
-
_ctx.classes(
|
|
22738
|
-
_ctx.n("text"),
|
|
22739
|
-
[_ctx.errorMessage || _ctx.radioGroupErrorMessage, _ctx.n("--error")],
|
|
22740
|
-
[_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")]
|
|
22741
|
-
)
|
|
22742
|
-
),
|
|
22743
|
-
onClick: _cache[2] || (_cache[2] = (...args) => _ctx.handleTextClick && _ctx.handleTextClick(...args))
|
|
22744
|
-
},
|
|
22745
|
-
[
|
|
22746
|
-
vue.renderSlot(_ctx.$slots, "default", { checked: _ctx.checked })
|
|
22747
|
-
],
|
|
22748
|
-
2
|
|
22749
|
-
/* CLASS */
|
|
22750
|
-
)) : vue.createCommentVNode("v-if", true)
|
|
22751
|
-
],
|
|
22752
|
-
16
|
|
22753
|
-
/* FULL_PROPS */
|
|
22754
|
-
),
|
|
22858
|
+
onClick: _cache[2] || (_cache[2] = (...args) => _ctx.handleTextClick && _ctx.handleTextClick(...args))
|
|
22859
|
+
},
|
|
22860
|
+
[
|
|
22861
|
+
vue.renderSlot(_ctx.$slots, "default", { checked: _ctx.checked })
|
|
22862
|
+
],
|
|
22863
|
+
2
|
|
22864
|
+
/* CLASS */
|
|
22865
|
+
)) : vue.createCommentVNode("v-if", true)
|
|
22866
|
+
], 16, _hoisted_1$d),
|
|
22755
22867
|
vue.createVNode(_component_var_form_details, { "error-message": _ctx.errorMessage }, null, 8, ["error-message"])
|
|
22756
22868
|
],
|
|
22757
22869
|
2
|
|
@@ -22776,6 +22888,18 @@ const __sfc__$s = vue.defineComponent({
|
|
|
22776
22888
|
const { radioGroup, bindRadioGroup } = useRadioGroup();
|
|
22777
22889
|
const { hovering, handleHovering } = useHoverOverlay();
|
|
22778
22890
|
const { form, bindForm } = useForm();
|
|
22891
|
+
const tabIndex = vue.computed(() => {
|
|
22892
|
+
const disabled = (form == null ? void 0 : form.disabled.value) || props2.disabled;
|
|
22893
|
+
const isChecked = checked.value;
|
|
22894
|
+
const hasCheckedInRadioGroup = radioGroup == null ? void 0 : radioGroup.hasChecked.value;
|
|
22895
|
+
if (disabled) {
|
|
22896
|
+
return;
|
|
22897
|
+
}
|
|
22898
|
+
if (radioGroup && hasCheckedInRadioGroup && !isChecked) {
|
|
22899
|
+
return "-1";
|
|
22900
|
+
}
|
|
22901
|
+
return "0";
|
|
22902
|
+
});
|
|
22779
22903
|
const {
|
|
22780
22904
|
errorMessage,
|
|
22781
22905
|
validateWithTrigger: vt,
|
|
@@ -22855,7 +22979,9 @@ const __sfc__$s = vue.defineComponent({
|
|
|
22855
22979
|
}
|
|
22856
22980
|
function sync(v2) {
|
|
22857
22981
|
const { checkedValue, uncheckedValue } = props2;
|
|
22858
|
-
|
|
22982
|
+
const checked2 = v2 === checkedValue;
|
|
22983
|
+
value.value = checked2 ? checkedValue : uncheckedValue;
|
|
22984
|
+
return checked2;
|
|
22859
22985
|
}
|
|
22860
22986
|
function reset() {
|
|
22861
22987
|
value.value = props2.uncheckedValue;
|
|
@@ -22881,6 +23007,7 @@ const __sfc__$s = vue.defineComponent({
|
|
|
22881
23007
|
formDisabled: form == null ? void 0 : form.disabled,
|
|
22882
23008
|
formReadonly: form == null ? void 0 : form.readonly,
|
|
22883
23009
|
hovering,
|
|
23010
|
+
tabIndex,
|
|
22884
23011
|
handleHovering,
|
|
22885
23012
|
n: n$o,
|
|
22886
23013
|
classes: classes$j,
|
|
@@ -22912,6 +23039,10 @@ const props$k = {
|
|
|
22912
23039
|
type: Array,
|
|
22913
23040
|
default: () => []
|
|
22914
23041
|
},
|
|
23042
|
+
ariaLabel: {
|
|
23043
|
+
type: String,
|
|
23044
|
+
default: ""
|
|
23045
|
+
},
|
|
22915
23046
|
labelKey: {
|
|
22916
23047
|
type: String,
|
|
22917
23048
|
default: "label"
|
|
@@ -22929,6 +23060,7 @@ const props$k = {
|
|
|
22929
23060
|
"onUpdate:modelValue": defineListenerProp()
|
|
22930
23061
|
};
|
|
22931
23062
|
const { name: name$k, n: n$n, classes: classes$i } = createNamespace("radio-group");
|
|
23063
|
+
const _hoisted_1$c = ["aria-label"];
|
|
22932
23064
|
function __render__$q(_ctx, _cache) {
|
|
22933
23065
|
const _component_maybe_v_node = vue.resolveComponent("maybe-v-node");
|
|
22934
23066
|
const _component_var_radio = vue.resolveComponent("var-radio");
|
|
@@ -22939,38 +23071,34 @@ function __render__$q(_ctx, _cache) {
|
|
|
22939
23071
|
class: vue.normalizeClass(_ctx.n("wrap"))
|
|
22940
23072
|
},
|
|
22941
23073
|
[
|
|
22942
|
-
vue.createElementVNode(
|
|
22943
|
-
"
|
|
22944
|
-
|
|
22945
|
-
|
|
22946
|
-
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
|
|
22951
|
-
vue.
|
|
22952
|
-
|
|
22953
|
-
|
|
22954
|
-
|
|
22955
|
-
|
|
22956
|
-
}
|
|
22957
|
-
|
|
22958
|
-
|
|
22959
|
-
|
|
22960
|
-
|
|
22961
|
-
|
|
22962
|
-
|
|
22963
|
-
|
|
22964
|
-
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
|
|
22969
|
-
|
|
22970
|
-
],
|
|
22971
|
-
2
|
|
22972
|
-
/* CLASS */
|
|
22973
|
-
),
|
|
23074
|
+
vue.createElementVNode("div", {
|
|
23075
|
+
"aria-label": _ctx.ariaLabel,
|
|
23076
|
+
role: "radiogroup",
|
|
23077
|
+
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n(`--${_ctx.direction}`)))
|
|
23078
|
+
}, [
|
|
23079
|
+
_ctx.options.length ? (vue.openBlock(true), vue.createElementBlock(
|
|
23080
|
+
vue.Fragment,
|
|
23081
|
+
{ key: 0 },
|
|
23082
|
+
vue.renderList(_ctx.options, (option) => {
|
|
23083
|
+
return vue.openBlock(), vue.createBlock(_component_var_radio, {
|
|
23084
|
+
key: option[_ctx.valueKey],
|
|
23085
|
+
"checked-value": option[_ctx.valueKey],
|
|
23086
|
+
disabled: option.disabled
|
|
23087
|
+
}, {
|
|
23088
|
+
default: vue.withCtx(({ checked }) => [
|
|
23089
|
+
vue.createVNode(_component_maybe_v_node, {
|
|
23090
|
+
is: _ctx.isFunction(option[_ctx.labelKey]) ? option[_ctx.labelKey](option, checked) : option[_ctx.labelKey]
|
|
23091
|
+
}, null, 8, ["is"])
|
|
23092
|
+
]),
|
|
23093
|
+
_: 2
|
|
23094
|
+
/* DYNAMIC */
|
|
23095
|
+
}, 1032, ["checked-value", "disabled"]);
|
|
23096
|
+
}),
|
|
23097
|
+
128
|
|
23098
|
+
/* KEYED_FRAGMENT */
|
|
23099
|
+
)) : vue.createCommentVNode("v-if", true),
|
|
23100
|
+
vue.renderSlot(_ctx.$slots, "default")
|
|
23101
|
+
], 10, _hoisted_1$c),
|
|
22974
23102
|
vue.createVNode(_component_var_form_details, { "error-message": _ctx.errorMessage }, null, 8, ["error-message"])
|
|
22975
23103
|
],
|
|
22976
23104
|
2
|
|
@@ -22992,11 +23120,13 @@ const __sfc__$r = vue.defineComponent({
|
|
|
22992
23120
|
resetValidation
|
|
22993
23121
|
} = useValidation();
|
|
22994
23122
|
const radioGroupErrorMessage = vue.computed(() => errorMessage.value);
|
|
23123
|
+
const hasChecked = vue.ref(false);
|
|
22995
23124
|
const radioGroupProvider = {
|
|
22996
23125
|
onToggle,
|
|
22997
23126
|
validate,
|
|
22998
23127
|
reset,
|
|
22999
23128
|
resetValidation,
|
|
23129
|
+
hasChecked: vue.computed(() => hasChecked.value),
|
|
23000
23130
|
errorMessage: radioGroupErrorMessage
|
|
23001
23131
|
};
|
|
23002
23132
|
vue.watch(() => props2.modelValue, syncRadios);
|
|
@@ -23052,7 +23182,11 @@ const __sfc__$r = vue.defineComponent({
|
|
|
23052
23182
|
});
|
|
23053
23183
|
}
|
|
23054
23184
|
function syncRadios() {
|
|
23055
|
-
|
|
23185
|
+
radios.forEach(({ sync }) => {
|
|
23186
|
+
if (sync(props2.modelValue)) {
|
|
23187
|
+
hasChecked.value = true;
|
|
23188
|
+
}
|
|
23189
|
+
});
|
|
23056
23190
|
}
|
|
23057
23191
|
function onToggle(changedValue) {
|
|
23058
23192
|
call(props2["onUpdate:modelValue"], changedValue);
|
|
@@ -27412,7 +27546,7 @@ var stdin_default$2B = {
|
|
|
27412
27546
|
"--pagination-font-size": "var(--font-size-md)",
|
|
27413
27547
|
"--pagination-active-color": "var(--color-on-primary)",
|
|
27414
27548
|
"--pagination-active-bg-color": "var(--color-primary)",
|
|
27415
|
-
"--pagination-total-margin": "0
|
|
27549
|
+
"--pagination-total-margin": "0 10px",
|
|
27416
27550
|
"--pagination-total-line-height": "24px",
|
|
27417
27551
|
"--pagination-item-width": "32px",
|
|
27418
27552
|
"--pagination-item-height": "32px",
|
|
@@ -27423,7 +27557,8 @@ var stdin_default$2B = {
|
|
|
27423
27557
|
"--pagination-disabled-color": "var(--color-text-disabled)",
|
|
27424
27558
|
"--pagination-bg-disabled-color": "var(--color-disabled)",
|
|
27425
27559
|
"--pagination-size-line-height": "24px",
|
|
27426
|
-
"--pagination-size-padding": "0
|
|
27560
|
+
"--pagination-size-padding": "0 4px",
|
|
27561
|
+
"--pagination-quick-jumper-margin": "0 10px"
|
|
27427
27562
|
};
|
|
27428
27563
|
var stdin_default$2A = {
|
|
27429
27564
|
"--paper-background": "var(--color-surface-container-highest)",
|
|
@@ -27518,7 +27653,9 @@ var stdin_default$2r = {
|
|
|
27518
27653
|
"--select-scroller-padding": "6px 0",
|
|
27519
27654
|
"--select-scroller-max-height": "278px",
|
|
27520
27655
|
"--select-scroller-border-radius": "2px",
|
|
27521
|
-
"--select-
|
|
27656
|
+
"--select-chips-margin": "-5px 0 0 0",
|
|
27657
|
+
"--select-chips-padding": "2px 0",
|
|
27658
|
+
"--select-chip-margin": "5px 5px 0 0",
|
|
27522
27659
|
"--select-arrow-size": "20px",
|
|
27523
27660
|
"--select-standard-menu-margin": `calc(var(--field-decorator-placeholder-size) * 0.75 + 12px) 0 0 0`,
|
|
27524
27661
|
"--select-label-font-size": "16px"
|
|
@@ -28446,7 +28583,7 @@ var stdin_default$1z = {
|
|
|
28446
28583
|
"--pagination-active-color": "var(--color-on-primary)",
|
|
28447
28584
|
"--pagination-active-bg-color": "var(--color-primary)",
|
|
28448
28585
|
"--pagination-hover-bg-color": "rgba(85, 85, 85, 0.15)",
|
|
28449
|
-
"--pagination-total-margin": "0
|
|
28586
|
+
"--pagination-total-margin": "0 10px",
|
|
28450
28587
|
"--pagination-total-line-height": "24px",
|
|
28451
28588
|
"--pagination-item-width": "32px",
|
|
28452
28589
|
"--pagination-item-height": "32px",
|
|
@@ -28457,7 +28594,8 @@ var stdin_default$1z = {
|
|
|
28457
28594
|
"--pagination-disabled-color": "var(--color-text-disabled)",
|
|
28458
28595
|
"--pagination-bg-disabled-color": "var(--color-disabled)",
|
|
28459
28596
|
"--pagination-size-line-height": "24px",
|
|
28460
|
-
"--pagination-size-padding": "0
|
|
28597
|
+
"--pagination-size-padding": "0 4px",
|
|
28598
|
+
"--pagination-quick-jumper-margin": "0 10px"
|
|
28461
28599
|
};
|
|
28462
28600
|
var stdin_default$1y = {
|
|
28463
28601
|
"--paper-background": "var(--color-surface-container-highest)",
|
|
@@ -28552,7 +28690,9 @@ var stdin_default$1p = {
|
|
|
28552
28690
|
"--select-scroller-border-radius": "4px",
|
|
28553
28691
|
"--select-scroller-padding": "6px 0",
|
|
28554
28692
|
"--select-scroller-max-height": "278px",
|
|
28555
|
-
"--select-
|
|
28693
|
+
"--select-chips-margin": "-5px 0 0 0",
|
|
28694
|
+
"--select-chips-padding": "2px 0",
|
|
28695
|
+
"--select-chip-margin": "5px 5px 0 0",
|
|
28556
28696
|
"--select-arrow-size": "20px",
|
|
28557
28697
|
"--select-standard-menu-margin": `calc(var(--field-decorator-placeholder-size) * 0.75 + 12px) 0 0 0`,
|
|
28558
28698
|
"--select-label-font-size": "16px"
|
|
@@ -29464,7 +29604,7 @@ var stdin_default$x = {
|
|
|
29464
29604
|
"--pagination-active-color": "var(--color-on-primary)",
|
|
29465
29605
|
"--pagination-active-bg-color": "var(--color-primary)",
|
|
29466
29606
|
"--pagination-hover-bg-color": "rgba(85, 85, 85, 0.15)",
|
|
29467
|
-
"--pagination-total-margin": "0
|
|
29607
|
+
"--pagination-total-margin": "0 10px",
|
|
29468
29608
|
"--pagination-total-line-height": "24px",
|
|
29469
29609
|
"--pagination-item-width": "32px",
|
|
29470
29610
|
"--pagination-item-height": "32px",
|
|
@@ -29476,7 +29616,8 @@ var stdin_default$x = {
|
|
|
29476
29616
|
"--pagination-disabled-color": "var(--color-text-disabled)",
|
|
29477
29617
|
"--pagination-bg-disabled-color": "var(--color-disabled)",
|
|
29478
29618
|
"--pagination-size-line-height": "24px",
|
|
29479
|
-
"--pagination-size-padding": "0
|
|
29619
|
+
"--pagination-size-padding": "0 4px",
|
|
29620
|
+
"--pagination-quick-jumper-margin": "0 10px"
|
|
29480
29621
|
};
|
|
29481
29622
|
var stdin_default$w = {
|
|
29482
29623
|
"--paper-background": "var(--color-surface-container-low)",
|
|
@@ -29571,7 +29712,9 @@ var stdin_default$n = {
|
|
|
29571
29712
|
"--select-scroller-border-radius": "4px",
|
|
29572
29713
|
"--select-scroller-padding": "6px 0",
|
|
29573
29714
|
"--select-scroller-max-height": "278px",
|
|
29574
|
-
"--select-
|
|
29715
|
+
"--select-chips-margin": "-5px 0 0 0",
|
|
29716
|
+
"--select-chips-padding": "2px 0",
|
|
29717
|
+
"--select-chip-margin": "5px 5px 0 0",
|
|
29575
29718
|
"--select-arrow-size": "20px",
|
|
29576
29719
|
"--select-standard-menu-margin": `calc(var(--field-decorator-placeholder-size) * 0.75 + 12px) 0 0 0`,
|
|
29577
29720
|
"--select-label-font-size": "16px"
|
|
@@ -31708,7 +31851,7 @@ withInstall(stdin_default$1);
|
|
|
31708
31851
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
31709
31852
|
const _WatermarkComponent = stdin_default$1;
|
|
31710
31853
|
var stdin_default = stdin_default$1;
|
|
31711
|
-
const version = "3.9.0
|
|
31854
|
+
const version = "3.9.0";
|
|
31712
31855
|
function install(app) {
|
|
31713
31856
|
stdin_default$5X.install && app.use(stdin_default$5X);
|
|
31714
31857
|
stdin_default$5V.install && app.use(stdin_default$5V);
|
|
@@ -32124,8 +32267,8 @@ exports.dialogProps = props$K;
|
|
|
32124
32267
|
exports.dividerProps = props$J;
|
|
32125
32268
|
exports.dragProps = props$I;
|
|
32126
32269
|
exports.ellipsisProps = props$G;
|
|
32127
|
-
exports.enUS = stdin_default$
|
|
32128
|
-
exports.faIR = stdin_default$
|
|
32270
|
+
exports.enUS = stdin_default$6d;
|
|
32271
|
+
exports.faIR = stdin_default$6c;
|
|
32129
32272
|
exports.fabProps = props$F;
|
|
32130
32273
|
exports.fieldDecoratorProps = props$1e;
|
|
32131
32274
|
exports.formDetailsProps = props$1f;
|