@varlet/ui 3.12.0 → 3.12.2

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.
@@ -3,5 +3,5 @@ import '../../icon/icon.css'
3
3
  import '../../ripple/ripple.css'
4
4
  import '../../popup/popup.css'
5
5
  import '../actionSheet.css'
6
- import '../ActionItemSfc.css'
7
6
  import '../ActionSheetSfc.css'
7
+ import '../ActionItemSfc.css'
@@ -39,7 +39,7 @@ function __render__(_ctx, _cache) {
39
39
  return _openBlock(), _createElementBlock("div", {
40
40
  ref: "root",
41
41
  class: _normalizeClass(_ctx.n()),
42
- tabindex: _ctx.disabled || _ctx.formDisabled ? void 0 : "0",
42
+ tabindex: _ctx.tabindex == null ? _ctx.disabled || _ctx.formDisabled ? void 0 : "0" : _ctx.tabindex,
43
43
  onFocusin: _cache[2] || (_cache[2] = (...args) => _ctx.focus && _ctx.focus(...args)),
44
44
  onClick: _cache[3] || (_cache[3] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
45
45
  }, [
@@ -106,6 +106,7 @@ function __render__(_ctx, _cache) {
106
106
  "is-force-focusing-effect": _ctx.isFocusing,
107
107
  "is-force-error-effect": !!_ctx.errorMessage,
108
108
  "is-show-form-details": false,
109
+ tabindex: _ctx.tabindex,
109
110
  onInput: _ctx.handleInput,
110
111
  onBlur: _ctx.handleBlur,
111
112
  onClear: _ctx.handleClear,
@@ -142,7 +143,7 @@ function __render__(_ctx, _cache) {
142
143
  ]),
143
144
  key: "3"
144
145
  } : void 0
145
- ]), 1040, ["modelValue", "is-force-focusing-effect", "is-force-error-effect", "onInput", "onBlur", "onClear", "onChange"])
146
+ ]), 1040, ["modelValue", "is-force-focusing-effect", "is-force-error-effect", "tabindex", "onInput", "onBlur", "onClear", "onChange"])
146
147
  ]),
147
148
  _: 3
148
149
  /* FORWARDED */
@@ -51,6 +51,7 @@ const props = __spreadValues({
51
51
  "variant",
52
52
  "placeholder",
53
53
  "enterkeyhint",
54
+ "tabindex",
54
55
  "line",
55
56
  "hint",
56
57
  "textColor",
@@ -31,7 +31,7 @@ function __render__(_ctx, _cache) {
31
31
  "aria-checked": _ctx.isIndeterminate ? "mixed" : _ctx.checked,
32
32
  "aria-disabled": _ctx.formDisabled || _ctx.disabled,
33
33
  class: _normalizeClass(_ctx.n()),
34
- tabindex: _ctx.disabled || _ctx.formDisabled ? void 0 : "0",
34
+ tabindex: _ctx.tabindex == null ? _ctx.disabled || _ctx.formDisabled ? void 0 : "0" : _ctx.tabindex,
35
35
  onFocus: _cache[1] || (_cache[1] = ($event) => _ctx.isFocusing = true),
36
36
  onBlur: _cache[2] || (_cache[2] = ($event) => _ctx.isFocusing = false),
37
37
  onClick: _cache[3] || (_cache[3] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
@@ -17,6 +17,7 @@ const props = {
17
17
  disabled: Boolean,
18
18
  readonly: Boolean,
19
19
  indeterminate: Boolean,
20
+ tabindex: String,
20
21
  iconSize: [String, Number],
21
22
  ripple: {
22
23
  type: Boolean,
@@ -283,7 +283,7 @@ import './tooltip/style/index.mjs'
283
283
  import './uploader/style/index.mjs'
284
284
  import './watermark/style/index.mjs'
285
285
 
286
- const version = '3.12.0'
286
+ const version = '3.12.2'
287
287
 
288
288
  function install(app) {
289
289
  ActionSheet.install && app.use(ActionSheet)
package/es/index.mjs CHANGED
@@ -188,7 +188,7 @@ export * from './tooltip/index.mjs'
188
188
  export * from './uploader/index.mjs'
189
189
  export * from './watermark/index.mjs'
190
190
 
191
- const version = '3.12.0'
191
+ const version = '3.12.2'
192
192
 
193
193
  function install(app) {
194
194
  ActionSheet.install && app.use(ActionSheet)
@@ -9,8 +9,8 @@ import { props } from "./props.mjs";
9
9
  const { name, n, classes } = createNamespace("input");
10
10
  import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, resolveComponent as _resolveComponent, normalizeProps as _normalizeProps, guardReactiveProps as _guardReactiveProps, withCtx as _withCtx, createSlots as _createSlots, createVNode as _createVNode, createBlock as _createBlock } from "vue";
11
11
  const _hoisted_1 = ["aria-label", "placeholder", "enterkeyhint"];
12
- const _hoisted_2 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "rows", "enterkeyhint", "inputmode"];
13
- const _hoisted_3 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "inputmode"];
12
+ const _hoisted_2 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "rows", "enterkeyhint", "inputmode", "tabindex"];
13
+ const _hoisted_3 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "tabindex", "inputmode"];
14
14
  function __render__(_ctx, _cache) {
15
15
  const _component_var_field_decorator = _resolveComponent("var-field-decorator");
16
16
  const _component_var_form_details = _resolveComponent("var-form-details");
@@ -89,6 +89,7 @@ function __render__(_ctx, _cache) {
89
89
  rows: _ctx.rows,
90
90
  enterkeyhint: _ctx.enterkeyhint,
91
91
  inputmode: _ctx.inputmode != null ? _ctx.inputmode : _ctx.type === "number" ? "decimal" : void 0,
92
+ tabindex: _ctx.tabindex,
92
93
  style: _normalizeStyle({
93
94
  color: !_ctx.errorMessage ? _ctx.textColor : void 0,
94
95
  caretColor: !_ctx.errorMessage ? _ctx.focusColor : void 0,
@@ -122,6 +123,7 @@ function __render__(_ctx, _cache) {
122
123
  placeholder: !_ctx.hint ? _ctx.placeholder : void 0,
123
124
  maxlength: _ctx.maxlength,
124
125
  enterkeyhint: _ctx.enterkeyhint,
126
+ tabindex: _ctx.tabindex,
125
127
  inputmode: _ctx.inputmode != null ? _ctx.inputmode : _ctx.type === "number" ? "decimal" : void 0,
126
128
  style: _normalizeStyle({
127
129
  color: !_ctx.errorMessage ? _ctx.textColor : void 0,
@@ -50,6 +50,7 @@ const props = __spreadProps(__spreadValues({
50
50
  default: true
51
51
  },
52
52
  inputmode: String,
53
+ tabindex: String,
53
54
  onFocus: defineListenerProp(),
54
55
  onBlur: defineListenerProp(),
55
56
  onInput: defineListenerProp(),
@@ -125,6 +125,9 @@ const __sfc__ = defineComponent({
125
125
  const disabled = (form == null ? void 0 : form.disabled.value) || props2.disabled;
126
126
  const isChecked = checked.value;
127
127
  const hasCheckedInRadioGroup = radioGroup == null ? void 0 : radioGroup.hasChecked.value;
128
+ if (props2.tabindex != null) {
129
+ return props2.tabindex;
130
+ }
128
131
  if (disabled) {
129
132
  return;
130
133
  }
@@ -16,6 +16,7 @@ const props = {
16
16
  readonly: Boolean,
17
17
  checkedColor: String,
18
18
  uncheckedColor: String,
19
+ tabindex: String,
19
20
  iconSize: [String, Number],
20
21
  ripple: {
21
22
  type: Boolean,
@@ -27,7 +27,7 @@ function __render__(_ctx, _cache) {
27
27
  return _openBlock(), _createElementBlock("div", {
28
28
  ref: "root",
29
29
  class: _normalizeClass(_ctx.n()),
30
- tabindex: _ctx.disabled || _ctx.formDisabled ? void 0 : "0",
30
+ tabindex: _ctx.tabindex == null ? _ctx.disabled || _ctx.formDisabled ? void 0 : "0" : _ctx.tabindex,
31
31
  onFocus: _cache[3] || (_cache[3] = (...args) => _ctx.handleFocus && _ctx.handleFocus(...args)),
32
32
  onBlur: _cache[4] || (_cache[4] = (...args) => _ctx.handleRootBlur && _ctx.handleRootBlur(...args))
33
33
  }, [
@@ -53,6 +53,7 @@ const props = __spreadValues({
53
53
  default: () => ["onChange", "onClear", "onClose"]
54
54
  },
55
55
  rules: [Array, Function, Object],
56
+ tabindex: String,
56
57
  onFocus: defineListenerProp(),
57
58
  onBlur: defineListenerProp(),
58
59
  onClose: defineListenerProp(),
@@ -45,7 +45,7 @@ function __render__(_ctx, _cache) {
45
45
  _withDirectives((_openBlock(), _createElementBlock("div", {
46
46
  class: _normalizeClass(_ctx.classes(_ctx.n("ripple"), [_ctx.isActive, _ctx.n("ripple--active")])),
47
47
  style: _normalizeStyle(_ctx.styleComputed.ripple),
48
- tabindex: _ctx.disabled || _ctx.formDisabled ? void 0 : "0",
48
+ tabindex: _ctx.tabindex == null ? _ctx.disabled || _ctx.formDisabled ? void 0 : "0" : _ctx.tabindex,
49
49
  onFocus: _cache[0] || (_cache[0] = ($event) => _ctx.isFocusing = true),
50
50
  onBlur: _cache[1] || (_cache[1] = ($event) => _ctx.isFocusing = false)
51
51
  }, [
@@ -19,6 +19,7 @@ const props = {
19
19
  size: [String, Number],
20
20
  variant: Boolean,
21
21
  rules: [Array, Function, Object],
22
+ tabindex: String,
22
23
  ripple: {
23
24
  type: Boolean,
24
25
  default: true
package/es/varlet.esm.js CHANGED
@@ -3792,6 +3792,7 @@ const vu = w1(y1({
3792
3792
  default: !0
3793
3793
  },
3794
3794
  inputmode: String,
3795
+ tabindex: String,
3795
3796
  onFocus: F(),
3796
3797
  onBlur: F(),
3797
3798
  onInput: F(),
@@ -3826,7 +3827,7 @@ const vu = w1(y1({
3826
3827
  default: !0
3827
3828
  }
3828
3829
  // internal end
3829
- }), { name: k1, n: $1, classes: C1 } = ne("input"), S1 = ["aria-label", "placeholder", "enterkeyhint"], P1 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "rows", "enterkeyhint", "inputmode"], O1 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "inputmode"];
3830
+ }), { name: k1, n: $1, classes: C1 } = ne("input"), S1 = ["aria-label", "placeholder", "enterkeyhint"], P1 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "rows", "enterkeyhint", "inputmode", "tabindex"], O1 = ["id", "aria-label", "autocomplete", "disabled", "readonly", "type", "value", "placeholder", "maxlength", "enterkeyhint", "tabindex", "inputmode"];
3830
3831
  function z1(e, n) {
3831
3832
  const o = _("var-field-decorator"), t = _("var-form-details");
3832
3833
  return g(), P(
@@ -3904,6 +3905,7 @@ function z1(e, n) {
3904
3905
  rows: e.rows,
3905
3906
  enterkeyhint: e.enterkeyhint,
3906
3907
  inputmode: e.inputmode != null ? e.inputmode : e.type === "number" ? "decimal" : void 0,
3908
+ tabindex: e.tabindex,
3907
3909
  style: Z({
3908
3910
  color: e.errorMessage ? void 0 : e.textColor,
3909
3911
  caretColor: e.errorMessage ? void 0 : e.focusColor,
@@ -3937,6 +3939,7 @@ function z1(e, n) {
3937
3939
  placeholder: e.hint ? void 0 : e.placeholder,
3938
3940
  maxlength: e.maxlength,
3939
3941
  enterkeyhint: e.enterkeyhint,
3942
+ tabindex: e.tabindex,
3940
3943
  inputmode: e.inputmode != null ? e.inputmode : e.type === "number" ? "decimal" : void 0,
3941
3944
  style: Z({
3942
3945
  color: e.errorMessage ? void 0 : e.textColor,
@@ -4145,6 +4148,7 @@ const Yp = {
4145
4148
  disabled: Boolean,
4146
4149
  readonly: Boolean,
4147
4150
  indeterminate: Boolean,
4151
+ tabindex: String,
4148
4152
  iconSize: [String, Number],
4149
4153
  ripple: {
4150
4154
  type: Boolean,
@@ -4195,7 +4199,7 @@ function M1(e, n) {
4195
4199
  "aria-checked": e.isIndeterminate ? "mixed" : e.checked,
4196
4200
  "aria-disabled": e.formDisabled || e.disabled,
4197
4201
  class: p(e.n()),
4198
- tabindex: e.disabled || e.formDisabled ? void 0 : "0",
4202
+ tabindex: e.tabindex == null ? e.disabled || e.formDisabled ? void 0 : "0" : e.tabindex,
4199
4203
  onFocus: n[1] || (n[1] = (l) => e.isFocusing = !0),
4200
4204
  onBlur: n[2] || (n[2] = (l) => e.isFocusing = !1),
4201
4205
  onClick: n[3] || (n[3] = (...l) => e.handleClick && e.handleClick(...l))
@@ -6437,6 +6441,7 @@ const lv = Bk({
6437
6441
  "variant",
6438
6442
  "placeholder",
6439
6443
  "enterkeyhint",
6444
+ "tabindex",
6440
6445
  "line",
6441
6446
  "hint",
6442
6447
  "textColor",
@@ -6466,7 +6471,7 @@ function Mk(e, n) {
6466
6471
  return g(), P("div", {
6467
6472
  ref: "root",
6468
6473
  class: p(e.n()),
6469
- tabindex: e.disabled || e.formDisabled ? void 0 : "0",
6474
+ tabindex: e.tabindex == null ? e.disabled || e.formDisabled ? void 0 : "0" : e.tabindex,
6470
6475
  onFocusin: n[2] || (n[2] = (...i) => e.focus && e.focus(...i)),
6471
6476
  onClick: n[3] || (n[3] = (...i) => e.handleClick && e.handleClick(...i))
6472
6477
  }, [
@@ -6531,6 +6536,7 @@ function Mk(e, n) {
6531
6536
  "is-force-focusing-effect": e.isFocusing,
6532
6537
  "is-force-error-effect": !!e.errorMessage,
6533
6538
  "is-show-form-details": !1,
6539
+ tabindex: e.tabindex,
6534
6540
  onInput: e.handleInput,
6535
6541
  onBlur: e.handleBlur,
6536
6542
  onClear: e.handleClear,
@@ -6567,7 +6573,7 @@ function Mk(e, n) {
6567
6573
  ]),
6568
6574
  key: "3"
6569
6575
  } : void 0
6570
- ]), 1040, ["modelValue", "is-force-focusing-effect", "is-force-error-effect", "onInput", "onBlur", "onClear", "onChange"])
6576
+ ]), 1040, ["modelValue", "is-force-focusing-effect", "is-force-error-effect", "tabindex", "onInput", "onBlur", "onClear", "onChange"])
6571
6577
  ]),
6572
6578
  _: 3
6573
6579
  /* FORWARDED */
@@ -17276,6 +17282,7 @@ const Fh = {
17276
17282
  readonly: Boolean,
17277
17283
  checkedColor: String,
17278
17284
  uncheckedColor: String,
17285
+ tabindex: String,
17279
17286
  iconSize: [String, Number],
17280
17287
  ripple: {
17281
17288
  type: Boolean,
@@ -17408,6 +17415,8 @@ const Hh = ee({
17408
17415
  setup(e) {
17409
17416
  const n = w(), o = w(!1), t = Pn(e, "modelValue"), r = B(() => t.value === e.checkedValue), { radioGroup: a, bindRadioGroup: i } = gz(), { hovering: l, handleHovering: s } = no(), { form: u, bindForm: c } = Yn(), d = B(() => {
17410
17417
  const Y = u?.disabled.value || e.disabled, z = r.value, I = a?.hasChecked.value;
17418
+ if (e.tabindex != null)
17419
+ return e.tabindex;
17411
17420
  if (!Y)
17412
17421
  return a && I && !z ? "-1" : "0";
17413
17422
  }), {
@@ -18258,6 +18267,7 @@ const og = l3({
18258
18267
  default: () => ["onChange", "onClear", "onClose"]
18259
18268
  },
18260
18269
  rules: [Array, Function, Object],
18270
+ tabindex: String,
18261
18271
  onFocus: F(),
18262
18272
  onBlur: F(),
18263
18273
  onClose: F(),
@@ -18282,7 +18292,7 @@ function f3(e, n) {
18282
18292
  return g(), P("div", {
18283
18293
  ref: "root",
18284
18294
  class: p(e.n()),
18285
- tabindex: e.disabled || e.formDisabled ? void 0 : "0",
18295
+ tabindex: e.tabindex == null ? e.disabled || e.formDisabled ? void 0 : "0" : e.tabindex,
18286
18296
  onFocus: n[3] || (n[3] = (...u) => e.handleFocus && e.handleFocus(...u)),
18287
18297
  onBlur: n[4] || (n[4] = (...u) => e.handleRootBlur && e.handleRootBlur(...u))
18288
18298
  }, [
@@ -20176,6 +20186,7 @@ const Sg = {
20176
20186
  size: [String, Number],
20177
20187
  variant: Boolean,
20178
20188
  rules: [Array, Function, Object],
20189
+ tabindex: String,
20179
20190
  ripple: {
20180
20191
  type: Boolean,
20181
20192
  default: !0
@@ -20222,7 +20233,7 @@ function y2(e, n) {
20222
20233
  Ne((g(), P("div", {
20223
20234
  class: p(e.classes(e.n("ripple"), [e.isActive, e.n("ripple--active")])),
20224
20235
  style: Z(e.styleComputed.ripple),
20225
- tabindex: e.disabled || e.formDisabled ? void 0 : "0",
20236
+ tabindex: e.tabindex == null ? e.disabled || e.formDisabled ? void 0 : "0" : e.tabindex,
20226
20237
  onFocus: n[0] || (n[0] = (i) => e.isFocusing = !0),
20227
20238
  onBlur: n[1] || (n[1] = (i) => e.isFocusing = !1)
20228
20239
  }, [
@@ -25263,7 +25274,7 @@ re(xi);
25263
25274
  ie(xi, Kg);
25264
25275
  const lI = xi;
25265
25276
  var js = xi;
25266
- const yB = "3.12.0";
25277
+ const yB = "3.12.2";
25267
25278
  function wB(e) {
25268
25279
  ml.install && e.use(ml), hl.install && e.use(hl), gl.install && e.use(gl), wl.install && e.use(wl), Cl.install && e.use(Cl), Sl.install && e.use(Sl), Pl.install && e.use(Pl), _r.install && e.use(_r), Ol.install && e.use(Ol), zl.install && e.use(zl), El.install && e.use(El), Tl.install && e.use(Tl), Dn.install && e.use(Dn), Bl.install && e.use(Bl), Dl.install && e.use(Dl), Il.install && e.use(Il), dt.install && e.use(dt), Al.install && e.use(Al), xr.install && e.use(xr), Nl.install && e.use(Nl), Vl.install && e.use(Vl), Rl.install && e.use(Rl), Ll.install && e.use(Ll), Fl.install && e.use(Fl), Rn.install && e.use(Rn), Ul.install && e.use(Ul), Wl.install && e.use(Wl), Jl.install && e.use(Jl), _l.install && e.use(_l), xl.install && e.use(xl), es.install && e.use(es), aa.install && e.use(aa), ns.install && e.use(ns), os.install && e.use(os), Lt.install && e.use(Lt), ts.install && e.use(ts), rs.install && e.use(rs), Bn.install && e.use(Bn), as.install && e.use(as), An.install && e.use(An), Hn.install && e.use(Hn), Ge.install && e.use(Ge), is.install && e.use(is), Gt.install && e.use(Gt), ls.install && e.use(ls), ss.install && e.use(ss), Ft.install && e.use(Ft), Wt.install && e.use(Wt), us.install && e.use(us), cs.install && e.use(cs), ht.install && e.use(ht), ds.install && e.use(ds), pl.install && e.use(pl), fs.install && e.use(fs), jt.install && e.use(jt), ft.install && e.use(ft), Yt.install && e.use(Yt), la.install && e.use(la), ps.install && e.use(ps), vs.install && e.use(vs), ms.install && e.use(ms), hs.install && e.use(hs), Mo.install && e.use(Mo), gs.install && e.use(gs), bs.install && e.use(bs), sa.install && e.use(sa), ys.install && e.use(ys), ws.install && e.use(ws), ks.install && e.use(ks), rn.install && e.use(rn), $s.install && e.use($s), Cs.install && e.use(Cs), Ss.install && e.use(Ss), Ps.install && e.use(Ps), Os.install && e.use(Os), Es.install && e.use(Es), Ts.install && e.use(Ts), Bs.install && e.use(Bs), Ds.install && e.use(Ds), yt.install && e.use(yt), Is.install && e.use(Is), qt.install && e.use(qt), Xt.install && e.use(Xt), As.install && e.use(As), Ms.install && e.use(Ms), Ns.install && e.use(Ns), Vs.install && e.use(Vs), Rs.install && e.use(Rs), Ls.install && e.use(Ls), Fs.install && e.use(Fs), Us.install && e.use(Us), ia.install && e.use(ia), Hs.install && e.use(Hs), js.install && e.use(js);
25269
25280
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
- "version": "3.12.0",
4
+ "version": "3.12.2",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
@@ -578,6 +578,15 @@
578
578
  "type": "(v: string) => boolean",
579
579
  "kind": "expression"
580
580
  }
581
+ },
582
+ {
583
+ "name": "tabindex",
584
+ "description": "Consistent with the tabindex property of native input",
585
+ "default": "-",
586
+ "value": {
587
+ "type": "string",
588
+ "kind": "expression"
589
+ }
581
590
  }
582
591
  ],
583
592
  "events": [
@@ -1840,6 +1849,15 @@
1840
1849
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
1841
1850
  "kind": "expression"
1842
1851
  }
1852
+ },
1853
+ {
1854
+ "name": "tabindex",
1855
+ "description": "Consistent with the tabindex property of native input",
1856
+ "default": "-",
1857
+ "value": {
1858
+ "type": "string",
1859
+ "kind": "expression"
1860
+ }
1843
1861
  }
1844
1862
  ],
1845
1863
  "events": [
@@ -4536,6 +4554,15 @@
4536
4554
  "type": "string",
4537
4555
  "kind": "expression"
4538
4556
  }
4557
+ },
4558
+ {
4559
+ "name": "tabindex",
4560
+ "description": "Consistent with the tabindex property of native input",
4561
+ "default": "-",
4562
+ "value": {
4563
+ "type": "string",
4564
+ "kind": "expression"
4565
+ }
4539
4566
  }
4540
4567
  ],
4541
4568
  "events": [
@@ -6378,6 +6405,15 @@
6378
6405
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
6379
6406
  "kind": "expression"
6380
6407
  }
6408
+ },
6409
+ {
6410
+ "name": "tabindex",
6411
+ "description": "Consistent with the tabindex property of native input",
6412
+ "default": "-",
6413
+ "value": {
6414
+ "type": "string",
6415
+ "kind": "expression"
6416
+ }
6381
6417
  }
6382
6418
  ],
6383
6419
  "events": [
@@ -6797,6 +6833,15 @@
6797
6833
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
6798
6834
  "kind": "expression"
6799
6835
  }
6836
+ },
6837
+ {
6838
+ "name": "tabindex",
6839
+ "description": "Consistent with the tabindex property of native select",
6840
+ "default": "-",
6841
+ "value": {
6842
+ "type": "string",
6843
+ "kind": "expression"
6844
+ }
6800
6845
  }
6801
6846
  ],
6802
6847
  "events": [
@@ -7897,6 +7942,15 @@
7897
7942
  "type": "boolean",
7898
7943
  "kind": "expression"
7899
7944
  }
7945
+ },
7946
+ {
7947
+ "name": "tabindex",
7948
+ "description": "Consistent with the tabindex property of native input",
7949
+ "default": "-",
7950
+ "value": {
7951
+ "type": "string",
7952
+ "kind": "expression"
7953
+ }
7900
7954
  }
7901
7955
  ],
7902
7956
  "events": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
- "version": "3.12.0",
4
+ "version": "3.12.2",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
@@ -578,6 +578,15 @@
578
578
  "type": "(v: string) => boolean",
579
579
  "kind": "expression"
580
580
  }
581
+ },
582
+ {
583
+ "name": "tabindex",
584
+ "description": "与原生 input 的 tabindex 属性一致",
585
+ "default": "-",
586
+ "value": {
587
+ "type": "string",
588
+ "kind": "expression"
589
+ }
581
590
  }
582
591
  ],
583
592
  "events": [
@@ -1891,6 +1900,15 @@
1891
1900
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
1892
1901
  "kind": "expression"
1893
1902
  }
1903
+ },
1904
+ {
1905
+ "name": "tabindex",
1906
+ "description": "与原生 input 的 tabindex 属性一致",
1907
+ "default": "-",
1908
+ "value": {
1909
+ "type": "string",
1910
+ "kind": "expression"
1911
+ }
1894
1912
  }
1895
1913
  ],
1896
1914
  "events": [
@@ -4587,6 +4605,15 @@
4587
4605
  "type": "string",
4588
4606
  "kind": "expression"
4589
4607
  }
4608
+ },
4609
+ {
4610
+ "name": "tabindex",
4611
+ "description": "与原生 input 的 tabindex 属性一致",
4612
+ "default": "-",
4613
+ "value": {
4614
+ "type": "string",
4615
+ "kind": "expression"
4616
+ }
4590
4617
  }
4591
4618
  ],
4592
4619
  "events": [
@@ -6420,6 +6447,15 @@
6420
6447
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
6421
6448
  "kind": "expression"
6422
6449
  }
6450
+ },
6451
+ {
6452
+ "name": "tabindex",
6453
+ "description": "与原生 input 的 tabindex 属性一致",
6454
+ "default": "-",
6455
+ "value": {
6456
+ "type": "string",
6457
+ "kind": "expression"
6458
+ }
6423
6459
  }
6424
6460
  ],
6425
6461
  "events": [
@@ -7011,6 +7047,15 @@
7011
7047
  "type": "((v: any) => any) | ZodType | Array<((v: any) => any) | ZodType>",
7012
7048
  "kind": "expression"
7013
7049
  }
7050
+ },
7051
+ {
7052
+ "name": "tabindex",
7053
+ "description": "与原生 select 的 tabindex 属性一致",
7054
+ "default": "-",
7055
+ "value": {
7056
+ "type": "string",
7057
+ "kind": "expression"
7058
+ }
7014
7059
  }
7015
7060
  ],
7016
7061
  "events": [
@@ -8111,6 +8156,15 @@
8111
8156
  "type": "boolean",
8112
8157
  "kind": "expression"
8113
8158
  }
8159
+ },
8160
+ {
8161
+ "name": "tabindex",
8162
+ "description": "与原生 input 的 tabindex 属性一致",
8163
+ "default": "-",
8164
+ "value": {
8165
+ "type": "string",
8166
+ "kind": "expression"
8167
+ }
8114
8168
  }
8115
8169
  ],
8116
8170
  "events": [