@witlink/usercenter 1.2.23 → 1.2.25

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.
@@ -1,1055 +0,0 @@
1
- import { a4 as A, a5 as et, c as j, a as T, a6 as tt, a7 as Ae, a8 as v, a9 as F, aa as Z, ab as xe, ac as ie, g as nt, ad as at, ae as rt, af as Te, ag as je, ah as We, ai as He, aj as lt, ak as it, al as ot, am as st, an as ut, ao as dt, ap as ct, aq as ft, u as pt, ar as mt, as as gt, at as Se, au as vt, D as ht, av as Ve, aw as Oe, ax as bt, P as $e } from "./index.b7fe889a.mjs";
2
- import { defineComponent as Ee, ref as Ge, onBeforeUnmount as qe, createVNode as b, shallowRef as M, computed as W, watch as ee } from "vue";
3
- import { U as St } from "./UpOutlined.122ec2e3.mjs";
4
- function we() {
5
- return typeof BigInt == "function";
6
- }
7
- function te(e) {
8
- let t = e.trim(), n = t.startsWith("-");
9
- n && (t = t.slice(1)), t = t.replace(/(\.\d*[^0])0*$/, "$1").replace(/\.0*$/, "").replace(/^0+/, ""), t.startsWith(".") && (t = `0${t}`);
10
- const r = t || "0", o = r.split("."), l = o[0] || "0", d = o[1] || "0";
11
- l === "0" && d === "0" && (n = !1);
12
- const c = n ? "-" : "";
13
- return {
14
- negative: n,
15
- negativeStr: c,
16
- trimStr: r,
17
- integerStr: l,
18
- decimalStr: d,
19
- fullStr: `${c}${r}`
20
- };
21
- }
22
- function Ce(e) {
23
- const t = String(e);
24
- return !Number.isNaN(Number(t)) && t.includes("e");
25
- }
26
- function ne(e) {
27
- const t = String(e);
28
- if (Ce(e)) {
29
- let n = Number(t.slice(t.indexOf("e-") + 2));
30
- const r = t.match(/\.(\d+)/);
31
- return r != null && r[1] && (n += r[1].length), n;
32
- }
33
- return t.includes(".") && _e(t) ? t.length - t.indexOf(".") - 1 : 0;
34
- }
35
- function De(e) {
36
- let t = String(e);
37
- if (Ce(e)) {
38
- if (e > Number.MAX_SAFE_INTEGER)
39
- return String(we() ? BigInt(e).toString() : Number.MAX_SAFE_INTEGER);
40
- if (e < Number.MIN_SAFE_INTEGER)
41
- return String(we() ? BigInt(e).toString() : Number.MIN_SAFE_INTEGER);
42
- t = e.toFixed(ne(t));
43
- }
44
- return te(t).fullStr;
45
- }
46
- function _e(e) {
47
- return typeof e == "number" ? !Number.isNaN(e) : e ? /^\s*-?\d+(\.\d+)?\s*$/.test(e) || /^\s*-?\d+\.\s*$/.test(e) || /^\s*-?\.\d+\s*$/.test(e) : !1;
48
- }
49
- function Le(e) {
50
- return !e && e !== 0 && !Number.isNaN(e) || !String(e).trim();
51
- }
52
- class z {
53
- constructor(t) {
54
- if (this.origin = "", Le(t)) {
55
- this.empty = !0;
56
- return;
57
- }
58
- this.origin = String(t), this.number = Number(t);
59
- }
60
- negate() {
61
- return new z(-this.toNumber());
62
- }
63
- add(t) {
64
- if (this.isInvalidate())
65
- return new z(t);
66
- const n = Number(t);
67
- if (Number.isNaN(n))
68
- return this;
69
- const r = this.number + n;
70
- if (r > Number.MAX_SAFE_INTEGER)
71
- return new z(Number.MAX_SAFE_INTEGER);
72
- if (r < Number.MIN_SAFE_INTEGER)
73
- return new z(Number.MIN_SAFE_INTEGER);
74
- const o = Math.max(ne(this.number), ne(n));
75
- return new z(r.toFixed(o));
76
- }
77
- isEmpty() {
78
- return this.empty;
79
- }
80
- isNaN() {
81
- return Number.isNaN(this.number);
82
- }
83
- isInvalidate() {
84
- return this.isEmpty() || this.isNaN();
85
- }
86
- equals(t) {
87
- return this.toNumber() === (t == null ? void 0 : t.toNumber());
88
- }
89
- lessEquals(t) {
90
- return this.add(t.negate().toString()).toNumber() <= 0;
91
- }
92
- toNumber() {
93
- return this.number;
94
- }
95
- toString() {
96
- return (arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !0) ? this.isInvalidate() ? "" : De(this.number) : this.origin;
97
- }
98
- }
99
- class U {
100
- constructor(t) {
101
- if (this.origin = "", Le(t)) {
102
- this.empty = !0;
103
- return;
104
- }
105
- if (this.origin = String(t), t === "-" || Number.isNaN(t)) {
106
- this.nan = !0;
107
- return;
108
- }
109
- let n = t;
110
- if (Ce(n) && (n = Number(n)), n = typeof n == "string" ? n : De(n), _e(n)) {
111
- const r = te(n);
112
- this.negative = r.negative;
113
- const o = r.trimStr.split(".");
114
- this.integer = BigInt(o[0]);
115
- const l = o[1] || "0";
116
- this.decimal = BigInt(l), this.decimalLen = l.length;
117
- } else
118
- this.nan = !0;
119
- }
120
- getMark() {
121
- return this.negative ? "-" : "";
122
- }
123
- getIntegerStr() {
124
- return this.integer.toString();
125
- }
126
- getDecimalStr() {
127
- return this.decimal.toString().padStart(this.decimalLen, "0");
128
- }
129
- alignDecimal(t) {
130
- const n = `${this.getMark()}${this.getIntegerStr()}${this.getDecimalStr().padEnd(t, "0")}`;
131
- return BigInt(n);
132
- }
133
- negate() {
134
- const t = new U(this.toString());
135
- return t.negative = !t.negative, t;
136
- }
137
- add(t) {
138
- if (this.isInvalidate())
139
- return new U(t);
140
- const n = new U(t);
141
- if (n.isInvalidate())
142
- return this;
143
- const r = Math.max(this.getDecimalStr().length, n.getDecimalStr().length), o = this.alignDecimal(r), l = n.alignDecimal(r), d = (o + l).toString(), {
144
- negativeStr: c,
145
- trimStr: f
146
- } = te(d), p = `${c}${f.padStart(r + 1, "0")}`;
147
- return new U(`${p.slice(0, -r)}.${p.slice(-r)}`);
148
- }
149
- isEmpty() {
150
- return this.empty;
151
- }
152
- isNaN() {
153
- return this.nan;
154
- }
155
- isInvalidate() {
156
- return this.isEmpty() || this.isNaN();
157
- }
158
- equals(t) {
159
- return this.toString() === (t == null ? void 0 : t.toString());
160
- }
161
- lessEquals(t) {
162
- return this.add(t.negate().toString()).toNumber() <= 0;
163
- }
164
- toNumber() {
165
- return this.isNaN() ? NaN : Number(this.toString());
166
- }
167
- toString() {
168
- return (arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !0) ? this.isInvalidate() ? "" : te(`${this.getMark()}${this.getIntegerStr()}.${this.getDecimalStr()}`).fullStr : this.origin;
169
- }
170
- }
171
- function _(e) {
172
- return we() ? new U(e) : new z(e);
173
- }
174
- function Ie(e, t, n) {
175
- let r = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : !1;
176
- if (e === "")
177
- return "";
178
- const {
179
- negativeStr: o,
180
- integerStr: l,
181
- decimalStr: d
182
- } = te(e), c = `${t}${d}`, f = `${o}${l}`;
183
- if (n >= 0) {
184
- const p = Number(d[n]);
185
- if (p >= 5 && !r) {
186
- const s = _(e).add(`${o}0.${"0".repeat(n)}${10 - p}`);
187
- return Ie(s.toString(), t, n, r);
188
- }
189
- return n === 0 ? f : `${f}${t}${d.padEnd(n, "0").slice(0, n)}`;
190
- }
191
- return c === ".0" ? f : `${f}${c}`;
192
- }
193
- const $t = 200, Nt = 600, yt = Ee({
194
- compatConfig: {
195
- MODE: 3
196
- },
197
- name: "StepHandler",
198
- inheritAttrs: !1,
199
- props: {
200
- prefixCls: String,
201
- upDisabled: Boolean,
202
- downDisabled: Boolean,
203
- onStep: A()
204
- },
205
- slots: Object,
206
- setup(e, t) {
207
- let {
208
- slots: n,
209
- emit: r
210
- } = t;
211
- const o = Ge(), l = (c, f) => {
212
- c.preventDefault(), r("step", f);
213
- function p() {
214
- r("step", f), o.value = setTimeout(p, $t);
215
- }
216
- o.value = setTimeout(p, Nt);
217
- }, d = () => {
218
- clearTimeout(o.value);
219
- };
220
- return qe(() => {
221
- d();
222
- }), () => {
223
- if (et())
224
- return null;
225
- const {
226
- prefixCls: c,
227
- upDisabled: f,
228
- downDisabled: p
229
- } = e, s = `${c}-handler`, x = j(s, `${s}-up`, {
230
- [`${s}-up-disabled`]: f
231
- }), S = j(s, `${s}-down`, {
232
- [`${s}-down-disabled`]: p
233
- }), I = {
234
- unselectable: "on",
235
- role: "button",
236
- onMouseup: d,
237
- onMouseleave: d
238
- }, {
239
- upNode: $,
240
- downNode: E
241
- } = n;
242
- return b("div", {
243
- class: `${s}-wrap`
244
- }, [b("span", T(T({}, I), {}, {
245
- onMousedown: (P) => {
246
- l(P, !0);
247
- },
248
- "aria-label": "Increase Value",
249
- "aria-disabled": f,
250
- class: x
251
- }), [($ == null ? void 0 : $()) || b("span", {
252
- unselectable: "on",
253
- class: `${c}-handler-up-inner`
254
- }, null)]), b("span", T(T({}, I), {}, {
255
- onMousedown: (P) => {
256
- l(P, !1);
257
- },
258
- "aria-label": "Decrease Value",
259
- "aria-disabled": p,
260
- class: S
261
- }), [(E == null ? void 0 : E()) || b("span", {
262
- unselectable: "on",
263
- class: `${c}-handler-down-inner`
264
- }, null)])]);
265
- };
266
- }
267
- });
268
- function xt(e, t) {
269
- const n = Ge(null);
270
- function r() {
271
- try {
272
- const {
273
- selectionStart: l,
274
- selectionEnd: d,
275
- value: c
276
- } = e.value, f = c.substring(0, l), p = c.substring(d);
277
- n.value = {
278
- start: l,
279
- end: d,
280
- value: c,
281
- beforeTxt: f,
282
- afterTxt: p
283
- };
284
- } catch {
285
- }
286
- }
287
- function o() {
288
- if (e.value && n.value && t.value)
289
- try {
290
- const {
291
- value: l
292
- } = e.value, {
293
- beforeTxt: d,
294
- afterTxt: c,
295
- start: f
296
- } = n.value;
297
- let p = l.length;
298
- if (l.endsWith(c))
299
- p = l.length - n.value.afterTxt.length;
300
- else if (l.startsWith(d))
301
- p = d.length;
302
- else {
303
- const s = d[f - 1], x = l.indexOf(s, f - 1);
304
- x !== -1 && (p = x + 1);
305
- }
306
- e.value.setSelectionRange(p, p);
307
- } catch (l) {
308
- tt(!1, `Something warning of cursor restore. Please fire issue about this: ${l.message}`);
309
- }
310
- }
311
- return [r, o];
312
- }
313
- const wt = () => {
314
- const e = M(0), t = () => {
315
- Ae.cancel(e.value);
316
- };
317
- return qe(() => {
318
- t();
319
- }), (n) => {
320
- t(), e.value = Ae(() => {
321
- n();
322
- });
323
- };
324
- };
325
- var It = globalThis && globalThis.__rest || function(e, t) {
326
- var n = {};
327
- for (var r in e)
328
- Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]);
329
- if (e != null && typeof Object.getOwnPropertySymbols == "function")
330
- for (var o = 0, r = Object.getOwnPropertySymbols(e); o < r.length; o++)
331
- t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]);
332
- return n;
333
- };
334
- const Be = (e, t) => e || t.isEmpty() ? t.toString() : t.toNumber(), Fe = (e) => {
335
- const t = _(e);
336
- return t.isInvalidate() ? null : t;
337
- }, Ue = () => ({
338
- stringMode: F(),
339
- defaultValue: Z([String, Number]),
340
- value: Z([String, Number]),
341
- prefixCls: xe(),
342
- min: Z([String, Number]),
343
- max: Z([String, Number]),
344
- step: Z([String, Number], 1),
345
- tabindex: Number,
346
- controls: F(!0),
347
- readonly: F(),
348
- disabled: F(),
349
- autofocus: F(),
350
- keyboard: F(!0),
351
- parser: A(),
352
- formatter: A(),
353
- precision: Number,
354
- decimalSeparator: String,
355
- onInput: A(),
356
- onChange: A(),
357
- onPressEnter: A(),
358
- onStep: A(),
359
- onBlur: A(),
360
- onFocus: A()
361
- }), Et = Ee({
362
- compatConfig: {
363
- MODE: 3
364
- },
365
- name: "InnerInputNumber",
366
- inheritAttrs: !1,
367
- props: v(v({}, Ue()), {
368
- lazy: Boolean
369
- }),
370
- slots: Object,
371
- setup(e, t) {
372
- let {
373
- attrs: n,
374
- slots: r,
375
- emit: o,
376
- expose: l
377
- } = t;
378
- const d = M(), c = M(!1), f = M(!1), p = M(!1), s = M(_(e.value));
379
- function x(a) {
380
- e.value === void 0 && (s.value = a);
381
- }
382
- const S = (a, i) => {
383
- if (!i)
384
- return e.precision >= 0 ? e.precision : Math.max(ne(a), ne(e.step));
385
- }, I = (a) => {
386
- const i = String(a);
387
- if (e.parser)
388
- return e.parser(i);
389
- let u = i;
390
- return e.decimalSeparator && (u = u.replace(e.decimalSeparator, ".")), u.replace(/[^\w.-]+/g, "");
391
- }, $ = M(""), E = (a, i) => {
392
- if (e.formatter)
393
- return e.formatter(a, {
394
- userTyping: i,
395
- input: String($.value)
396
- });
397
- let u = typeof a == "number" ? De(a) : a;
398
- if (!i) {
399
- const m = S(u, i);
400
- if (_e(u) && (e.decimalSeparator || m >= 0)) {
401
- const y = e.decimalSeparator || ".";
402
- u = Ie(u, y, m);
403
- }
404
- }
405
- return u;
406
- }, P = (() => {
407
- const a = e.value;
408
- return s.value.isInvalidate() && ["string", "number"].includes(typeof a) ? Number.isNaN(a) ? "" : a : E(s.value.toString(), !1);
409
- })();
410
- $.value = P;
411
- function C(a, i) {
412
- $.value = E(
413
- a.isInvalidate() ? a.toString(!1) : a.toString(!i),
414
- i
415
- );
416
- }
417
- const D = W(() => Fe(e.max)), N = W(() => Fe(e.min)), w = W(() => !D.value || !s.value || s.value.isInvalidate() ? !1 : D.value.lessEquals(s.value)), V = W(() => !N.value || !s.value || s.value.isInvalidate() ? !1 : s.value.lessEquals(N.value)), [k, K] = xt(d, c), X = (a) => D.value && !a.lessEquals(D.value) ? D.value : N.value && !N.value.lessEquals(a) ? N.value : null, oe = (a) => !X(a), Y = (a, i) => {
418
- var u;
419
- let m = a, y = oe(m) || m.isEmpty();
420
- if (!m.isEmpty() && !i && (m = X(m) || m, y = !0), !e.readonly && !e.disabled && y) {
421
- const R = m.toString(), q = S(R, i);
422
- return q >= 0 && (m = _(Ie(R, ".", q))), m.equals(s.value) || (x(m), (u = e.onChange) === null || u === void 0 || u.call(e, m.isEmpty() ? null : Be(e.stringMode, m)), e.value === void 0 && C(m, i)), m;
423
- }
424
- return s.value;
425
- }, se = wt(), J = (a) => {
426
- var i;
427
- if (k(), $.value = a, !p.value) {
428
- const u = I(a), m = _(u);
429
- m.isNaN() || Y(m, !0);
430
- }
431
- (i = e.onInput) === null || i === void 0 || i.call(e, a), se(() => {
432
- let u = a;
433
- e.parser || (u = a.replace(/。/g, ".")), u !== a && J(u);
434
- });
435
- }, h = () => {
436
- p.value = !0;
437
- }, Q = () => {
438
- p.value = !1, J(d.value.value);
439
- }, H = (a) => {
440
- J(a.target.value);
441
- }, G = (a) => {
442
- var i, u;
443
- if (a && w.value || !a && V.value)
444
- return;
445
- f.value = !1;
446
- let m = _(e.step);
447
- a || (m = m.negate());
448
- const y = (s.value || _(0)).add(m.toString()), R = Y(y, !1);
449
- (i = e.onStep) === null || i === void 0 || i.call(e, Be(e.stringMode, R), {
450
- offset: e.step,
451
- type: a ? "up" : "down"
452
- }), (u = d.value) === null || u === void 0 || u.focus();
453
- }, O = (a) => {
454
- const i = _(I($.value));
455
- let u = i;
456
- i.isNaN() ? u = s.value : u = Y(i, a), e.value !== void 0 ? C(s.value, !1) : u.isNaN() || C(u, !1);
457
- }, ue = () => {
458
- f.value = !0;
459
- }, de = (a) => {
460
- var i;
461
- const {
462
- which: u
463
- } = a;
464
- f.value = !0, u === ie.ENTER && (p.value || (f.value = !1), O(!1), (i = e.onPressEnter) === null || i === void 0 || i.call(e, a)), e.keyboard !== !1 && !p.value && [ie.UP, ie.DOWN].includes(u) && (G(ie.UP === u), a.preventDefault());
465
- }, ce = () => {
466
- f.value = !1;
467
- }, ae = (a) => {
468
- O(!1), c.value = !1, f.value = !1, o("blur", a);
469
- };
470
- return ee(() => e.precision, () => {
471
- s.value.isInvalidate() || C(s.value, !1);
472
- }, {
473
- flush: "post"
474
- }), ee(() => e.value, () => {
475
- const a = _(e.value);
476
- s.value = a;
477
- const i = _(I($.value));
478
- (!a.equals(i) || !f.value || e.formatter) && C(a, f.value);
479
- }, {
480
- flush: "post"
481
- }), ee($, () => {
482
- e.formatter && K();
483
- }, {
484
- flush: "post"
485
- }), ee(() => e.disabled, (a) => {
486
- a && (c.value = !1);
487
- }), l({
488
- focus: () => {
489
- var a;
490
- (a = d.value) === null || a === void 0 || a.focus();
491
- },
492
- blur: () => {
493
- var a;
494
- (a = d.value) === null || a === void 0 || a.blur();
495
- }
496
- }), () => {
497
- const a = v(v({}, n), e), {
498
- prefixCls: i = "rc-input-number",
499
- min: u,
500
- max: m,
501
- step: y = 1,
502
- defaultValue: R,
503
- value: q,
504
- disabled: re,
505
- readonly: le,
506
- keyboard: g,
507
- controls: fe = !0,
508
- autofocus: B,
509
- stringMode: pe,
510
- parser: me,
511
- formatter: L,
512
- precision: ge,
513
- decimalSeparator: ve,
514
- onChange: he,
515
- onInput: Me,
516
- onPressEnter: Pe,
517
- onStep: Rt,
518
- lazy: ke,
519
- class: Ke,
520
- style: Xe
521
- } = a, Ye = It(a, ["prefixCls", "min", "max", "step", "defaultValue", "value", "disabled", "readonly", "keyboard", "controls", "autofocus", "stringMode", "parser", "formatter", "precision", "decimalSeparator", "onChange", "onInput", "onPressEnter", "onStep", "lazy", "class", "style"]), {
522
- upHandler: Je,
523
- downHandler: Qe
524
- } = r, Re = `${i}-input`, be = {};
525
- return ke ? be.onChange = H : be.onInput = H, b("div", {
526
- class: j(i, Ke, {
527
- [`${i}-focused`]: c.value,
528
- [`${i}-disabled`]: re,
529
- [`${i}-readonly`]: le,
530
- [`${i}-not-a-number`]: s.value.isNaN(),
531
- [`${i}-out-of-range`]: !s.value.isInvalidate() && !oe(s.value)
532
- }),
533
- style: Xe,
534
- onKeydown: de,
535
- onKeyup: ce
536
- }, [fe && b(yt, {
537
- prefixCls: i,
538
- upDisabled: w.value,
539
- downDisabled: V.value,
540
- onStep: G
541
- }, {
542
- upNode: Je,
543
- downNode: Qe
544
- }), b("div", {
545
- class: `${Re}-wrap`
546
- }, [b("input", T(T(T({
547
- autofocus: B,
548
- autocomplete: "off",
549
- role: "spinbutton",
550
- "aria-valuemin": u,
551
- "aria-valuemax": m,
552
- "aria-valuenow": s.value.isInvalidate() ? null : s.value.toString(),
553
- step: y
554
- }, Ye), {}, {
555
- ref: d,
556
- class: Re,
557
- value: $.value,
558
- disabled: re,
559
- readonly: le,
560
- onFocus: (Ze) => {
561
- c.value = !0, o("focus", Ze);
562
- }
563
- }, be), {}, {
564
- onBlur: ae,
565
- onCompositionstart: h,
566
- onCompositionend: Q,
567
- onBeforeinput: ue
568
- }), null)])]);
569
- };
570
- }
571
- });
572
- function Ne(e) {
573
- return e != null;
574
- }
575
- const Ct = (e) => {
576
- const {
577
- componentCls: t,
578
- lineWidth: n,
579
- lineType: r,
580
- colorBorder: o,
581
- borderRadius: l,
582
- fontSizeLG: d,
583
- controlHeightLG: c,
584
- controlHeightSM: f,
585
- colorError: p,
586
- inputPaddingHorizontalSM: s,
587
- colorTextDescription: x,
588
- motionDurationMid: S,
589
- colorPrimary: I,
590
- controlHeight: $,
591
- inputPaddingHorizontal: E,
592
- colorBgContainer: P,
593
- colorTextDisabled: C,
594
- borderRadiusSM: D,
595
- borderRadiusLG: N,
596
- controlWidth: w,
597
- handleVisible: V
598
- } = e;
599
- return [
600
- {
601
- [t]: v(v(v(v({}, Te(e)), je(e)), We(e, t)), {
602
- display: "inline-block",
603
- width: w,
604
- margin: 0,
605
- padding: 0,
606
- border: `${n}px ${r} ${o}`,
607
- borderRadius: l,
608
- "&-rtl": {
609
- direction: "rtl",
610
- [`${t}-input`]: {
611
- direction: "rtl"
612
- }
613
- },
614
- "&-lg": {
615
- padding: 0,
616
- fontSize: d,
617
- borderRadius: N,
618
- [`input${t}-input`]: {
619
- height: c - 2 * n
620
- }
621
- },
622
- "&-sm": {
623
- padding: 0,
624
- borderRadius: D,
625
- [`input${t}-input`]: {
626
- height: f - 2 * n,
627
- padding: `0 ${s}px`
628
- }
629
- },
630
- "&:hover": v({}, He(e)),
631
- "&-focused": v({}, lt(e)),
632
- "&-disabled": v(v({}, it(e)), {
633
- [`${t}-input`]: {
634
- cursor: "not-allowed"
635
- }
636
- }),
637
- "&-out-of-range": {
638
- input: {
639
- color: p
640
- }
641
- },
642
- "&-group": v(v(v({}, Te(e)), ot(e)), {
643
- "&-wrapper": {
644
- display: "inline-block",
645
- textAlign: "start",
646
- verticalAlign: "top",
647
- [`${t}-affix-wrapper`]: {
648
- width: "100%"
649
- },
650
- "&-lg": {
651
- [`${t}-group-addon`]: {
652
- borderRadius: N
653
- }
654
- },
655
- "&-sm": {
656
- [`${t}-group-addon`]: {
657
- borderRadius: D
658
- }
659
- }
660
- }
661
- }),
662
- [t]: {
663
- "&-input": v(v({
664
- width: "100%",
665
- height: $ - 2 * n,
666
- padding: `0 ${E}px`,
667
- textAlign: "start",
668
- backgroundColor: "transparent",
669
- border: 0,
670
- borderRadius: l,
671
- outline: 0,
672
- transition: `all ${S} linear`,
673
- appearance: "textfield",
674
- color: e.colorText,
675
- fontSize: "inherit",
676
- verticalAlign: "top"
677
- }, st(e.colorTextPlaceholder)), {
678
- '&[type="number"]::-webkit-inner-spin-button, &[type="number"]::-webkit-outer-spin-button': {
679
- margin: 0,
680
- webkitAppearance: "none",
681
- appearance: "none"
682
- }
683
- })
684
- }
685
- })
686
- },
687
- {
688
- [t]: {
689
- [`&:hover ${t}-handler-wrap, &-focused ${t}-handler-wrap`]: {
690
- opacity: 1
691
- },
692
- [`${t}-handler-wrap`]: {
693
- position: "absolute",
694
- insetBlockStart: 0,
695
- insetInlineEnd: 0,
696
- width: e.handleWidth,
697
- height: "100%",
698
- background: P,
699
- borderStartStartRadius: 0,
700
- borderStartEndRadius: l,
701
- borderEndEndRadius: l,
702
- borderEndStartRadius: 0,
703
- opacity: V === !0 ? 1 : 0,
704
- display: "flex",
705
- flexDirection: "column",
706
- alignItems: "stretch",
707
- transition: `opacity ${S} linear ${S}`,
708
- [`${t}-handler`]: {
709
- display: "flex",
710
- alignItems: "center",
711
- justifyContent: "center",
712
- flex: "auto",
713
- height: "40%",
714
- [`
715
- ${t}-handler-up-inner,
716
- ${t}-handler-down-inner
717
- `]: {
718
- marginInlineEnd: 0,
719
- fontSize: e.handleFontSize
720
- }
721
- }
722
- },
723
- [`${t}-handler`]: {
724
- height: "50%",
725
- overflow: "hidden",
726
- color: x,
727
- fontWeight: "bold",
728
- lineHeight: 0,
729
- textAlign: "center",
730
- cursor: "pointer",
731
- borderInlineStart: `${n}px ${r} ${o}`,
732
- transition: `all ${S} linear`,
733
- "&:active": {
734
- background: e.colorFillAlter
735
- },
736
- "&:hover": {
737
- height: "60%",
738
- [`
739
- ${t}-handler-up-inner,
740
- ${t}-handler-down-inner
741
- `]: {
742
- color: I
743
- }
744
- },
745
- "&-up-inner, &-down-inner": v(v({}, ut()), {
746
- color: x,
747
- transition: `all ${S} linear`,
748
- userSelect: "none"
749
- })
750
- },
751
- [`${t}-handler-up`]: {
752
- borderStartEndRadius: l
753
- },
754
- [`${t}-handler-down`]: {
755
- borderBlockStart: `${n}px ${r} ${o}`,
756
- borderEndEndRadius: l
757
- },
758
- "&-disabled, &-readonly": {
759
- [`${t}-handler-wrap`]: {
760
- display: "none"
761
- },
762
- [`${t}-input`]: {
763
- color: "inherit"
764
- }
765
- },
766
- [`
767
- ${t}-handler-up-disabled,
768
- ${t}-handler-down-disabled
769
- `]: {
770
- cursor: "not-allowed"
771
- },
772
- [`
773
- ${t}-handler-up-disabled:hover &-handler-up-inner,
774
- ${t}-handler-down-disabled:hover &-handler-down-inner
775
- `]: {
776
- color: C
777
- }
778
- }
779
- },
780
- {
781
- [`${t}-borderless`]: {
782
- borderColor: "transparent",
783
- boxShadow: "none",
784
- [`${t}-handler-down`]: {
785
- borderBlockStartWidth: 0
786
- }
787
- }
788
- }
789
- ];
790
- }, Dt = (e) => {
791
- const {
792
- componentCls: t,
793
- inputPaddingHorizontal: n,
794
- inputAffixPadding: r,
795
- controlWidth: o,
796
- borderRadiusLG: l,
797
- borderRadiusSM: d
798
- } = e;
799
- return {
800
- [`${t}-affix-wrapper`]: v(v(v({}, je(e)), We(e, `${t}-affix-wrapper`)), {
801
- position: "relative",
802
- display: "inline-flex",
803
- width: o,
804
- padding: 0,
805
- paddingInlineStart: n,
806
- "&-lg": {
807
- borderRadius: l
808
- },
809
- "&-sm": {
810
- borderRadius: d
811
- },
812
- [`&:not(${t}-affix-wrapper-disabled):hover`]: v(v({}, He(e)), {
813
- zIndex: 1
814
- }),
815
- "&-focused, &:focus": {
816
- zIndex: 1
817
- },
818
- "&-disabled": {
819
- [`${t}[disabled]`]: {
820
- background: "transparent"
821
- }
822
- },
823
- [`> div${t}`]: {
824
- width: "100%",
825
- border: "none",
826
- outline: "none",
827
- [`&${t}-focused`]: {
828
- boxShadow: "none !important"
829
- }
830
- },
831
- [`input${t}-input`]: {
832
- padding: 0
833
- },
834
- "&::before": {
835
- width: 0,
836
- visibility: "hidden",
837
- content: '"\\a0"'
838
- },
839
- [`${t}-handler-wrap`]: {
840
- zIndex: 2
841
- },
842
- [t]: {
843
- "&-prefix, &-suffix": {
844
- display: "flex",
845
- flex: "none",
846
- alignItems: "center",
847
- pointerEvents: "none"
848
- },
849
- "&-prefix": {
850
- marginInlineEnd: r
851
- },
852
- "&-suffix": {
853
- position: "absolute",
854
- insetBlockStart: 0,
855
- insetInlineEnd: 0,
856
- zIndex: 1,
857
- height: "100%",
858
- marginInlineEnd: n,
859
- marginInlineStart: r
860
- }
861
- }
862
- })
863
- };
864
- }, _t = nt("InputNumber", (e) => {
865
- const t = at(e);
866
- return [
867
- Ct(t),
868
- Dt(t),
869
- rt(t)
870
- ];
871
- }, (e) => ({
872
- controlWidth: 90,
873
- handleWidth: e.controlHeightSM - e.lineWidth * 2,
874
- handleFontSize: e.fontSize / 2,
875
- handleVisible: "auto"
876
- }));
877
- var Mt = globalThis && globalThis.__rest || function(e, t) {
878
- var n = {};
879
- for (var r in e)
880
- Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]);
881
- if (e != null && typeof Object.getOwnPropertySymbols == "function")
882
- for (var o = 0, r = Object.getOwnPropertySymbols(e); o < r.length; o++)
883
- t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]);
884
- return n;
885
- };
886
- const ze = Ue(), Pt = () => v(v({}, ze), {
887
- size: xe(),
888
- bordered: F(!0),
889
- placeholder: String,
890
- name: String,
891
- id: String,
892
- type: String,
893
- addonBefore: $e.any,
894
- addonAfter: $e.any,
895
- prefix: $e.any,
896
- "onUpdate:value": ze.onChange,
897
- valueModifiers: Object,
898
- status: xe()
899
- }), ye = Ee({
900
- compatConfig: {
901
- MODE: 3
902
- },
903
- name: "AInputNumber",
904
- inheritAttrs: !1,
905
- props: Pt(),
906
- slots: Object,
907
- setup(e, t) {
908
- let {
909
- emit: n,
910
- expose: r,
911
- attrs: o,
912
- slots: l
913
- } = t;
914
- var d;
915
- const c = dt(), f = ct.useInject(), p = W(() => ft(f.status, e.status)), {
916
- prefixCls: s,
917
- size: x,
918
- direction: S,
919
- disabled: I
920
- } = pt("input-number", e), {
921
- compactSize: $,
922
- compactItemClassnames: E
923
- } = mt(s, S), P = gt(), C = W(() => {
924
- var h;
925
- return (h = I.value) !== null && h !== void 0 ? h : P.value;
926
- }), [D, N] = _t(s), w = W(() => $.value || x.value), V = M((d = e.value) !== null && d !== void 0 ? d : e.defaultValue), k = M(!1);
927
- ee(() => e.value, () => {
928
- V.value = e.value;
929
- });
930
- const K = M(null), X = () => {
931
- var h;
932
- (h = K.value) === null || h === void 0 || h.focus();
933
- };
934
- r({
935
- focus: X,
936
- blur: () => {
937
- var h;
938
- (h = K.value) === null || h === void 0 || h.blur();
939
- }
940
- });
941
- const Y = (h) => {
942
- e.value === void 0 && (V.value = h), n("update:value", h), n("change", h), c.onFieldChange();
943
- }, se = (h) => {
944
- k.value = !1, n("blur", h), c.onFieldBlur();
945
- }, J = (h) => {
946
- k.value = !0, n("focus", h);
947
- };
948
- return () => {
949
- var h, Q, H, G;
950
- const {
951
- hasFeedback: O,
952
- isFormItemInput: ue,
953
- feedbackIcon: de
954
- } = f, ce = (h = e.id) !== null && h !== void 0 ? h : c.id.value, ae = v(v(v({}, o), e), {
955
- id: ce,
956
- disabled: C.value
957
- }), {
958
- class: a,
959
- bordered: i,
960
- readonly: u,
961
- style: m,
962
- addonBefore: y = (Q = l.addonBefore) === null || Q === void 0 ? void 0 : Q.call(l),
963
- addonAfter: R = (H = l.addonAfter) === null || H === void 0 ? void 0 : H.call(l),
964
- prefix: q = (G = l.prefix) === null || G === void 0 ? void 0 : G.call(l),
965
- valueModifiers: re = {}
966
- } = ae, le = Mt(ae, ["class", "bordered", "readonly", "style", "addonBefore", "addonAfter", "prefix", "valueModifiers"]), g = s.value, fe = j({
967
- [`${g}-lg`]: w.value === "large",
968
- [`${g}-sm`]: w.value === "small",
969
- [`${g}-rtl`]: S.value === "rtl",
970
- [`${g}-readonly`]: u,
971
- [`${g}-borderless`]: !i,
972
- [`${g}-in-form-item`]: ue
973
- }, Se(g, p.value), a, E.value, N.value);
974
- let B = b(Et, T(T({}, vt(le, ["size", "defaultValue"])), {}, {
975
- ref: K,
976
- lazy: !!re.lazy,
977
- value: V.value,
978
- class: fe,
979
- prefixCls: g,
980
- readonly: u,
981
- onChange: Y,
982
- onBlur: se,
983
- onFocus: J
984
- }), {
985
- upHandler: l.upIcon ? () => b("span", {
986
- class: `${g}-handler-up-inner`
987
- }, [l.upIcon()]) : () => b(St, {
988
- class: `${g}-handler-up-inner`
989
- }, null),
990
- downHandler: l.downIcon ? () => b("span", {
991
- class: `${g}-handler-down-inner`
992
- }, [l.downIcon()]) : () => b(ht, {
993
- class: `${g}-handler-down-inner`
994
- }, null)
995
- });
996
- const pe = Ne(y) || Ne(R), me = Ne(q);
997
- if (me || O) {
998
- const L = j(`${g}-affix-wrapper`, Se(`${g}-affix-wrapper`, p.value, O), {
999
- [`${g}-affix-wrapper-focused`]: k.value,
1000
- [`${g}-affix-wrapper-disabled`]: C.value,
1001
- [`${g}-affix-wrapper-sm`]: w.value === "small",
1002
- [`${g}-affix-wrapper-lg`]: w.value === "large",
1003
- [`${g}-affix-wrapper-rtl`]: S.value === "rtl",
1004
- [`${g}-affix-wrapper-readonly`]: u,
1005
- [`${g}-affix-wrapper-borderless`]: !i,
1006
- [`${a}`]: !pe && a
1007
- }, N.value);
1008
- B = b("div", {
1009
- class: L,
1010
- style: m,
1011
- onClick: X
1012
- }, [me && b("span", {
1013
- class: `${g}-prefix`
1014
- }, [q]), B, O && b("span", {
1015
- class: `${g}-suffix`
1016
- }, [de])]);
1017
- }
1018
- if (pe) {
1019
- const L = `${g}-group`, ge = `${L}-addon`, ve = y ? b("div", {
1020
- class: ge
1021
- }, [y]) : null, he = R ? b("div", {
1022
- class: ge
1023
- }, [R]) : null, Me = j(`${g}-wrapper`, L, {
1024
- [`${L}-rtl`]: S.value === "rtl"
1025
- }, N.value), Pe = j(`${g}-group-wrapper`, {
1026
- [`${g}-group-wrapper-sm`]: w.value === "small",
1027
- [`${g}-group-wrapper-lg`]: w.value === "large",
1028
- [`${g}-group-wrapper-rtl`]: S.value === "rtl"
1029
- }, Se(`${s}-group-wrapper`, p.value, O), a, N.value);
1030
- B = b("div", {
1031
- class: Pe,
1032
- style: m
1033
- }, [b("div", {
1034
- class: Me
1035
- }, [ve && b(Ve, null, {
1036
- default: () => [b(Oe, null, {
1037
- default: () => [ve]
1038
- })]
1039
- }), B, he && b(Ve, null, {
1040
- default: () => [b(Oe, null, {
1041
- default: () => [he]
1042
- })]
1043
- })])]);
1044
- }
1045
- return D(bt(B, {
1046
- style: m
1047
- }));
1048
- };
1049
- }
1050
- }), Ot = v(ye, {
1051
- install: (e) => (e.component(ye.name, ye), e)
1052
- });
1053
- export {
1054
- Ot as _
1055
- };