@tidbcloud/uikit 2.1.4 → 2.1.6

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/_virtual/customParseFormat.cjs +4 -0
  3. package/dist/_virtual/customParseFormat.mjs +4 -0
  4. package/dist/_virtual/duration.cjs +4 -0
  5. package/dist/_virtual/duration.mjs +4 -0
  6. package/dist/_virtual/minMax.cjs +4 -0
  7. package/dist/_virtual/minMax.mjs +4 -0
  8. package/dist/biz/DateTimePicker/TimeScollerPicker.cjs +6 -8
  9. package/dist/biz/DateTimePicker/TimeScollerPicker.mjs +1 -3
  10. package/dist/biz/DateTimePicker/index.cjs +143 -126
  11. package/dist/biz/DateTimePicker/index.mjs +135 -118
  12. package/dist/biz/TimeRangePicker/AbsoluteTimeRangePicker.cjs +7 -9
  13. package/dist/biz/TimeRangePicker/AbsoluteTimeRangePicker.mjs +1 -3
  14. package/dist/biz/TimeRangePicker/helpers.cjs +3 -5
  15. package/dist/biz/TimeRangePicker/helpers.mjs +1 -3
  16. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/customParseFormat.cjs +129 -0
  17. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/customParseFormat.mjs +129 -0
  18. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/duration.cjs +136 -0
  19. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/duration.mjs +136 -0
  20. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/minMax.cjs +32 -0
  21. package/dist/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/minMax.mjs +32 -0
  22. package/dist/utils/dayjs.cjs +15 -0
  23. package/dist/utils/dayjs.d.cts +2 -2
  24. package/dist/utils/dayjs.d.mts +2 -2
  25. package/dist/utils/dayjs.mjs +15 -0
  26. package/dist/utils/index.cjs +2 -2
  27. package/dist/utils/index.d.cts +1 -1
  28. package/dist/utils/index.d.mts +1 -1
  29. package/dist/utils/index.mjs +2 -2
  30. package/package.json +1 -1
@@ -0,0 +1,136 @@
1
+ "use strict";
2
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
+ const _commonjsHelpers = require("../../../../../../_virtual/_commonjsHelpers.cjs");
4
+ const duration$1 = require("../../../../../../_virtual/duration.cjs");
5
+ (function(module2, exports2) {
6
+ !function(t, s) {
7
+ module2.exports = s();
8
+ }(_commonjsHelpers.commonjsGlobal, function() {
9
+ var t, s, n = 1e3, i = 6e4, e = 36e5, r = 864e5, o = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, u = 31536e6, d = 2628e6, a = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, h = { years: u, months: d, days: r, hours: e, minutes: i, seconds: n, milliseconds: 1, weeks: 6048e5 }, c = function(t2) {
10
+ return t2 instanceof g;
11
+ }, f = function(t2, s2, n2) {
12
+ return new g(t2, n2, s2.$l);
13
+ }, m = function(t2) {
14
+ return s.p(t2) + "s";
15
+ }, l = function(t2) {
16
+ return t2 < 0;
17
+ }, $ = function(t2) {
18
+ return l(t2) ? Math.ceil(t2) : Math.floor(t2);
19
+ }, y = function(t2) {
20
+ return Math.abs(t2);
21
+ }, v = function(t2, s2) {
22
+ return t2 ? l(t2) ? { negative: true, format: "" + y(t2) + s2 } : { negative: false, format: "" + t2 + s2 } : { negative: false, format: "" };
23
+ }, g = function() {
24
+ function l2(t2, s2, n2) {
25
+ var i2 = this;
26
+ if (this.$d = {}, this.$l = n2, void 0 === t2 && (this.$ms = 0, this.parseFromMilliseconds()), s2) return f(t2 * h[m(s2)], this);
27
+ if ("number" == typeof t2) return this.$ms = t2, this.parseFromMilliseconds(), this;
28
+ if ("object" == typeof t2) return Object.keys(t2).forEach(function(s3) {
29
+ i2.$d[m(s3)] = t2[s3];
30
+ }), this.calMilliseconds(), this;
31
+ if ("string" == typeof t2) {
32
+ var e2 = t2.match(a);
33
+ if (e2) {
34
+ var r2 = e2.slice(2).map(function(t3) {
35
+ return null != t3 ? Number(t3) : 0;
36
+ });
37
+ return this.$d.years = r2[0], this.$d.months = r2[1], this.$d.weeks = r2[2], this.$d.days = r2[3], this.$d.hours = r2[4], this.$d.minutes = r2[5], this.$d.seconds = r2[6], this.calMilliseconds(), this;
38
+ }
39
+ }
40
+ return this;
41
+ }
42
+ var y2 = l2.prototype;
43
+ return y2.calMilliseconds = function() {
44
+ var t2 = this;
45
+ this.$ms = Object.keys(this.$d).reduce(function(s2, n2) {
46
+ return s2 + (t2.$d[n2] || 0) * h[n2];
47
+ }, 0);
48
+ }, y2.parseFromMilliseconds = function() {
49
+ var t2 = this.$ms;
50
+ this.$d.years = $(t2 / u), t2 %= u, this.$d.months = $(t2 / d), t2 %= d, this.$d.days = $(t2 / r), t2 %= r, this.$d.hours = $(t2 / e), t2 %= e, this.$d.minutes = $(t2 / i), t2 %= i, this.$d.seconds = $(t2 / n), t2 %= n, this.$d.milliseconds = t2;
51
+ }, y2.toISOString = function() {
52
+ var t2 = v(this.$d.years, "Y"), s2 = v(this.$d.months, "M"), n2 = +this.$d.days || 0;
53
+ this.$d.weeks && (n2 += 7 * this.$d.weeks);
54
+ var i2 = v(n2, "D"), e2 = v(this.$d.hours, "H"), r2 = v(this.$d.minutes, "M"), o2 = this.$d.seconds || 0;
55
+ this.$d.milliseconds && (o2 += this.$d.milliseconds / 1e3, o2 = Math.round(1e3 * o2) / 1e3);
56
+ var u2 = v(o2, "S"), d2 = t2.negative || s2.negative || i2.negative || e2.negative || r2.negative || u2.negative, a2 = e2.format || r2.format || u2.format ? "T" : "", h2 = (d2 ? "-" : "") + "P" + t2.format + s2.format + i2.format + a2 + e2.format + r2.format + u2.format;
57
+ return "P" === h2 || "-P" === h2 ? "P0D" : h2;
58
+ }, y2.toJSON = function() {
59
+ return this.toISOString();
60
+ }, y2.format = function(t2) {
61
+ var n2 = t2 || "YYYY-MM-DDTHH:mm:ss", i2 = { Y: this.$d.years, YY: s.s(this.$d.years, 2, "0"), YYYY: s.s(this.$d.years, 4, "0"), M: this.$d.months, MM: s.s(this.$d.months, 2, "0"), D: this.$d.days, DD: s.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: s.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: s.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: s.s(this.$d.seconds, 2, "0"), SSS: s.s(this.$d.milliseconds, 3, "0") };
62
+ return n2.replace(o, function(t3, s2) {
63
+ return s2 || String(i2[t3]);
64
+ });
65
+ }, y2.as = function(t2) {
66
+ return this.$ms / h[m(t2)];
67
+ }, y2.get = function(t2) {
68
+ var s2 = this.$ms, n2 = m(t2);
69
+ return "milliseconds" === n2 ? s2 %= 1e3 : s2 = "weeks" === n2 ? $(s2 / h[n2]) : this.$d[n2], s2 || 0;
70
+ }, y2.add = function(t2, s2, n2) {
71
+ var i2;
72
+ return i2 = s2 ? t2 * h[m(s2)] : c(t2) ? t2.$ms : f(t2, this).$ms, f(this.$ms + i2 * (n2 ? -1 : 1), this);
73
+ }, y2.subtract = function(t2, s2) {
74
+ return this.add(t2, s2, true);
75
+ }, y2.locale = function(t2) {
76
+ var s2 = this.clone();
77
+ return s2.$l = t2, s2;
78
+ }, y2.clone = function() {
79
+ return f(this.$ms, this);
80
+ }, y2.humanize = function(s2) {
81
+ return t().add(this.$ms, "ms").locale(this.$l).fromNow(!s2);
82
+ }, y2.valueOf = function() {
83
+ return this.asMilliseconds();
84
+ }, y2.milliseconds = function() {
85
+ return this.get("milliseconds");
86
+ }, y2.asMilliseconds = function() {
87
+ return this.as("milliseconds");
88
+ }, y2.seconds = function() {
89
+ return this.get("seconds");
90
+ }, y2.asSeconds = function() {
91
+ return this.as("seconds");
92
+ }, y2.minutes = function() {
93
+ return this.get("minutes");
94
+ }, y2.asMinutes = function() {
95
+ return this.as("minutes");
96
+ }, y2.hours = function() {
97
+ return this.get("hours");
98
+ }, y2.asHours = function() {
99
+ return this.as("hours");
100
+ }, y2.days = function() {
101
+ return this.get("days");
102
+ }, y2.asDays = function() {
103
+ return this.as("days");
104
+ }, y2.weeks = function() {
105
+ return this.get("weeks");
106
+ }, y2.asWeeks = function() {
107
+ return this.as("weeks");
108
+ }, y2.months = function() {
109
+ return this.get("months");
110
+ }, y2.asMonths = function() {
111
+ return this.as("months");
112
+ }, y2.years = function() {
113
+ return this.get("years");
114
+ }, y2.asYears = function() {
115
+ return this.as("years");
116
+ }, l2;
117
+ }(), p = function(t2, s2, n2) {
118
+ return t2.add(s2.years() * n2, "y").add(s2.months() * n2, "M").add(s2.days() * n2, "d").add(s2.hours() * n2, "h").add(s2.minutes() * n2, "m").add(s2.seconds() * n2, "s").add(s2.milliseconds() * n2, "ms");
119
+ };
120
+ return function(n2, i2, e2) {
121
+ t = e2, s = e2().$utils(), e2.duration = function(t2, s2) {
122
+ var n3 = e2.locale();
123
+ return f(t2, { $l: n3 }, s2);
124
+ }, e2.isDuration = c;
125
+ var r2 = i2.prototype.add, o2 = i2.prototype.subtract;
126
+ i2.prototype.add = function(t2, s2) {
127
+ return c(t2) ? p(this, t2, 1) : r2.bind(this)(t2, s2);
128
+ }, i2.prototype.subtract = function(t2, s2) {
129
+ return c(t2) ? p(this, t2, -1) : o2.bind(this)(t2, s2);
130
+ };
131
+ };
132
+ });
133
+ })(duration$1.__module);
134
+ var durationExports = duration$1.__module.exports;
135
+ const duration = /* @__PURE__ */ _commonjsHelpers.getDefaultExportFromCjs(durationExports);
136
+ exports.default = duration;
@@ -0,0 +1,136 @@
1
+ import { commonjsGlobal, getDefaultExportFromCjs } from "../../../../../../_virtual/_commonjsHelpers.mjs";
2
+ import { __module as duration$1 } from "../../../../../../_virtual/duration.mjs";
3
+ (function(module, exports) {
4
+ !function(t, s) {
5
+ module.exports = s();
6
+ }(commonjsGlobal, function() {
7
+ var t, s, n = 1e3, i = 6e4, e = 36e5, r = 864e5, o = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, u = 31536e6, d = 2628e6, a = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, h = { years: u, months: d, days: r, hours: e, minutes: i, seconds: n, milliseconds: 1, weeks: 6048e5 }, c = function(t2) {
8
+ return t2 instanceof g;
9
+ }, f = function(t2, s2, n2) {
10
+ return new g(t2, n2, s2.$l);
11
+ }, m = function(t2) {
12
+ return s.p(t2) + "s";
13
+ }, l = function(t2) {
14
+ return t2 < 0;
15
+ }, $ = function(t2) {
16
+ return l(t2) ? Math.ceil(t2) : Math.floor(t2);
17
+ }, y = function(t2) {
18
+ return Math.abs(t2);
19
+ }, v = function(t2, s2) {
20
+ return t2 ? l(t2) ? { negative: true, format: "" + y(t2) + s2 } : { negative: false, format: "" + t2 + s2 } : { negative: false, format: "" };
21
+ }, g = function() {
22
+ function l2(t2, s2, n2) {
23
+ var i2 = this;
24
+ if (this.$d = {}, this.$l = n2, void 0 === t2 && (this.$ms = 0, this.parseFromMilliseconds()), s2) return f(t2 * h[m(s2)], this);
25
+ if ("number" == typeof t2) return this.$ms = t2, this.parseFromMilliseconds(), this;
26
+ if ("object" == typeof t2) return Object.keys(t2).forEach(function(s3) {
27
+ i2.$d[m(s3)] = t2[s3];
28
+ }), this.calMilliseconds(), this;
29
+ if ("string" == typeof t2) {
30
+ var e2 = t2.match(a);
31
+ if (e2) {
32
+ var r2 = e2.slice(2).map(function(t3) {
33
+ return null != t3 ? Number(t3) : 0;
34
+ });
35
+ return this.$d.years = r2[0], this.$d.months = r2[1], this.$d.weeks = r2[2], this.$d.days = r2[3], this.$d.hours = r2[4], this.$d.minutes = r2[5], this.$d.seconds = r2[6], this.calMilliseconds(), this;
36
+ }
37
+ }
38
+ return this;
39
+ }
40
+ var y2 = l2.prototype;
41
+ return y2.calMilliseconds = function() {
42
+ var t2 = this;
43
+ this.$ms = Object.keys(this.$d).reduce(function(s2, n2) {
44
+ return s2 + (t2.$d[n2] || 0) * h[n2];
45
+ }, 0);
46
+ }, y2.parseFromMilliseconds = function() {
47
+ var t2 = this.$ms;
48
+ this.$d.years = $(t2 / u), t2 %= u, this.$d.months = $(t2 / d), t2 %= d, this.$d.days = $(t2 / r), t2 %= r, this.$d.hours = $(t2 / e), t2 %= e, this.$d.minutes = $(t2 / i), t2 %= i, this.$d.seconds = $(t2 / n), t2 %= n, this.$d.milliseconds = t2;
49
+ }, y2.toISOString = function() {
50
+ var t2 = v(this.$d.years, "Y"), s2 = v(this.$d.months, "M"), n2 = +this.$d.days || 0;
51
+ this.$d.weeks && (n2 += 7 * this.$d.weeks);
52
+ var i2 = v(n2, "D"), e2 = v(this.$d.hours, "H"), r2 = v(this.$d.minutes, "M"), o2 = this.$d.seconds || 0;
53
+ this.$d.milliseconds && (o2 += this.$d.milliseconds / 1e3, o2 = Math.round(1e3 * o2) / 1e3);
54
+ var u2 = v(o2, "S"), d2 = t2.negative || s2.negative || i2.negative || e2.negative || r2.negative || u2.negative, a2 = e2.format || r2.format || u2.format ? "T" : "", h2 = (d2 ? "-" : "") + "P" + t2.format + s2.format + i2.format + a2 + e2.format + r2.format + u2.format;
55
+ return "P" === h2 || "-P" === h2 ? "P0D" : h2;
56
+ }, y2.toJSON = function() {
57
+ return this.toISOString();
58
+ }, y2.format = function(t2) {
59
+ var n2 = t2 || "YYYY-MM-DDTHH:mm:ss", i2 = { Y: this.$d.years, YY: s.s(this.$d.years, 2, "0"), YYYY: s.s(this.$d.years, 4, "0"), M: this.$d.months, MM: s.s(this.$d.months, 2, "0"), D: this.$d.days, DD: s.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: s.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: s.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: s.s(this.$d.seconds, 2, "0"), SSS: s.s(this.$d.milliseconds, 3, "0") };
60
+ return n2.replace(o, function(t3, s2) {
61
+ return s2 || String(i2[t3]);
62
+ });
63
+ }, y2.as = function(t2) {
64
+ return this.$ms / h[m(t2)];
65
+ }, y2.get = function(t2) {
66
+ var s2 = this.$ms, n2 = m(t2);
67
+ return "milliseconds" === n2 ? s2 %= 1e3 : s2 = "weeks" === n2 ? $(s2 / h[n2]) : this.$d[n2], s2 || 0;
68
+ }, y2.add = function(t2, s2, n2) {
69
+ var i2;
70
+ return i2 = s2 ? t2 * h[m(s2)] : c(t2) ? t2.$ms : f(t2, this).$ms, f(this.$ms + i2 * (n2 ? -1 : 1), this);
71
+ }, y2.subtract = function(t2, s2) {
72
+ return this.add(t2, s2, true);
73
+ }, y2.locale = function(t2) {
74
+ var s2 = this.clone();
75
+ return s2.$l = t2, s2;
76
+ }, y2.clone = function() {
77
+ return f(this.$ms, this);
78
+ }, y2.humanize = function(s2) {
79
+ return t().add(this.$ms, "ms").locale(this.$l).fromNow(!s2);
80
+ }, y2.valueOf = function() {
81
+ return this.asMilliseconds();
82
+ }, y2.milliseconds = function() {
83
+ return this.get("milliseconds");
84
+ }, y2.asMilliseconds = function() {
85
+ return this.as("milliseconds");
86
+ }, y2.seconds = function() {
87
+ return this.get("seconds");
88
+ }, y2.asSeconds = function() {
89
+ return this.as("seconds");
90
+ }, y2.minutes = function() {
91
+ return this.get("minutes");
92
+ }, y2.asMinutes = function() {
93
+ return this.as("minutes");
94
+ }, y2.hours = function() {
95
+ return this.get("hours");
96
+ }, y2.asHours = function() {
97
+ return this.as("hours");
98
+ }, y2.days = function() {
99
+ return this.get("days");
100
+ }, y2.asDays = function() {
101
+ return this.as("days");
102
+ }, y2.weeks = function() {
103
+ return this.get("weeks");
104
+ }, y2.asWeeks = function() {
105
+ return this.as("weeks");
106
+ }, y2.months = function() {
107
+ return this.get("months");
108
+ }, y2.asMonths = function() {
109
+ return this.as("months");
110
+ }, y2.years = function() {
111
+ return this.get("years");
112
+ }, y2.asYears = function() {
113
+ return this.as("years");
114
+ }, l2;
115
+ }(), p = function(t2, s2, n2) {
116
+ return t2.add(s2.years() * n2, "y").add(s2.months() * n2, "M").add(s2.days() * n2, "d").add(s2.hours() * n2, "h").add(s2.minutes() * n2, "m").add(s2.seconds() * n2, "s").add(s2.milliseconds() * n2, "ms");
117
+ };
118
+ return function(n2, i2, e2) {
119
+ t = e2, s = e2().$utils(), e2.duration = function(t2, s2) {
120
+ var n3 = e2.locale();
121
+ return f(t2, { $l: n3 }, s2);
122
+ }, e2.isDuration = c;
123
+ var r2 = i2.prototype.add, o2 = i2.prototype.subtract;
124
+ i2.prototype.add = function(t2, s2) {
125
+ return c(t2) ? p(this, t2, 1) : r2.bind(this)(t2, s2);
126
+ }, i2.prototype.subtract = function(t2, s2) {
127
+ return c(t2) ? p(this, t2, -1) : o2.bind(this)(t2, s2);
128
+ };
129
+ };
130
+ });
131
+ })(duration$1);
132
+ var durationExports = duration$1.exports;
133
+ const duration = /* @__PURE__ */ getDefaultExportFromCjs(durationExports);
134
+ export {
135
+ duration as default
136
+ };
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
+ const _commonjsHelpers = require("../../../../../../_virtual/_commonjsHelpers.cjs");
4
+ const minMax$1 = require("../../../../../../_virtual/minMax.cjs");
5
+ (function(module2, exports2) {
6
+ !function(e, n) {
7
+ module2.exports = n();
8
+ }(_commonjsHelpers.commonjsGlobal, function() {
9
+ return function(e, n, t) {
10
+ var i = function(e2, n2) {
11
+ if (!n2 || !n2.length || 1 === n2.length && !n2[0] || 1 === n2.length && Array.isArray(n2[0]) && !n2[0].length) return null;
12
+ var t2;
13
+ 1 === n2.length && n2[0].length > 0 && (n2 = n2[0]);
14
+ t2 = (n2 = n2.filter(function(e3) {
15
+ return e3;
16
+ }))[0];
17
+ for (var i2 = 1; i2 < n2.length; i2 += 1) n2[i2].isValid() && !n2[i2][e2](t2) || (t2 = n2[i2]);
18
+ return t2;
19
+ };
20
+ t.max = function() {
21
+ var e2 = [].slice.call(arguments, 0);
22
+ return i("isAfter", e2);
23
+ }, t.min = function() {
24
+ var e2 = [].slice.call(arguments, 0);
25
+ return i("isBefore", e2);
26
+ };
27
+ };
28
+ });
29
+ })(minMax$1.__module);
30
+ var minMaxExports = minMax$1.__module.exports;
31
+ const minMax = /* @__PURE__ */ _commonjsHelpers.getDefaultExportFromCjs(minMaxExports);
32
+ exports.default = minMax;
@@ -0,0 +1,32 @@
1
+ import { commonjsGlobal, getDefaultExportFromCjs } from "../../../../../../_virtual/_commonjsHelpers.mjs";
2
+ import { __module as minMax$1 } from "../../../../../../_virtual/minMax.mjs";
3
+ (function(module, exports) {
4
+ !function(e, n) {
5
+ module.exports = n();
6
+ }(commonjsGlobal, function() {
7
+ return function(e, n, t) {
8
+ var i = function(e2, n2) {
9
+ if (!n2 || !n2.length || 1 === n2.length && !n2[0] || 1 === n2.length && Array.isArray(n2[0]) && !n2[0].length) return null;
10
+ var t2;
11
+ 1 === n2.length && n2[0].length > 0 && (n2 = n2[0]);
12
+ t2 = (n2 = n2.filter(function(e3) {
13
+ return e3;
14
+ }))[0];
15
+ for (var i2 = 1; i2 < n2.length; i2 += 1) n2[i2].isValid() && !n2[i2][e2](t2) || (t2 = n2[i2]);
16
+ return t2;
17
+ };
18
+ t.max = function() {
19
+ var e2 = [].slice.call(arguments, 0);
20
+ return i("isAfter", e2);
21
+ }, t.min = function() {
22
+ var e2 = [].slice.call(arguments, 0);
23
+ return i("isBefore", e2);
24
+ };
25
+ };
26
+ });
27
+ })(minMax$1);
28
+ var minMaxExports = minMax$1.exports;
29
+ const minMax = /* @__PURE__ */ getDefaultExportFromCjs(minMaxExports);
30
+ export {
31
+ minMax as default
32
+ };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const dayjs$1 = require("dayjs");
4
+ const customParseFormat = require("../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/customParseFormat.cjs");
5
+ const duration = require("../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/duration.cjs");
6
+ const minMax = require("../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/minMax.cjs");
7
+ const timezone = require("../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/timezone.cjs");
8
+ const utc = require("../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/utc.cjs");
9
+ dayjs$1.extend(duration.default);
10
+ dayjs$1.extend(minMax.default);
11
+ dayjs$1.extend(customParseFormat.default);
12
+ dayjs$1.extend(utc.default);
13
+ dayjs$1.extend(timezone.default);
14
+ const dayjs = dayjs$1;
15
+ exports.dayjs = dayjs;
@@ -1,3 +1,3 @@
1
- import { default as dayjs } from 'dayjs';
2
- export { dayjs };
1
+ import { default as _dayjs } from 'dayjs';
2
+ export declare const dayjs: typeof _dayjs;
3
3
  export type { Dayjs } from 'dayjs';
@@ -1,3 +1,3 @@
1
- import { default as dayjs } from 'dayjs';
2
- export { dayjs };
1
+ import { default as _dayjs } from 'dayjs';
2
+ export declare const dayjs: typeof _dayjs;
3
3
  export type { Dayjs } from 'dayjs';
@@ -0,0 +1,15 @@
1
+ import dayjs$1 from "dayjs";
2
+ import customParseFormat from "../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/customParseFormat.mjs";
3
+ import duration from "../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/duration.mjs";
4
+ import minMax from "../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/minMax.mjs";
5
+ import timezonePlugin from "../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/timezone.mjs";
6
+ import utcPlugin from "../node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/plugin/utc.mjs";
7
+ dayjs$1.extend(duration);
8
+ dayjs$1.extend(minMax);
9
+ dayjs$1.extend(customParseFormat);
10
+ dayjs$1.extend(utcPlugin);
11
+ dayjs$1.extend(timezonePlugin);
12
+ const dayjs = dayjs$1;
13
+ export {
14
+ dayjs
15
+ };
@@ -2,19 +2,19 @@
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const clsx = require("clsx");
4
4
  const styles = require("./styles.cjs");
5
+ const dayjs = require("./dayjs.cjs");
5
6
  const rgba = require("../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/rgba/rgba.cjs");
6
7
  const rem = require("../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/utils/units-converters/rem.cjs");
7
8
  const getPrimaryShade = require("../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-primary-shade/get-primary-shade.cjs");
8
9
  const getThemeColor = require("../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-theme-color/get-theme-color.cjs");
9
- const dayjs = require("dayjs");
10
10
  Object.defineProperty(exports, "clsx", {
11
11
  enumerable: true,
12
12
  get: () => clsx.clsx
13
13
  });
14
14
  exports.mergeStylesList = styles.mergeStylesList;
15
15
  exports.mergeSxList = styles.mergeSxList;
16
+ exports.dayjs = dayjs.dayjs;
16
17
  exports.rgba = rgba.rgba;
17
18
  exports.rem = rem.rem;
18
19
  exports.getPrimaryShade = getPrimaryShade.getPrimaryShade;
19
20
  exports.getThemeColor = getThemeColor.getThemeColor;
20
- exports.dayjs = dayjs;
@@ -31,4 +31,4 @@ declare module '@mantine/core' {
31
31
  export { clsx } from 'clsx';
32
32
  export { rgba, rem, getPrimaryShade, getThemeColor } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
33
33
  export * from './styles.cjs';
34
- export * from './dayjs.cjs';
34
+ export { dayjs, type Dayjs } from './dayjs.cjs';
@@ -31,4 +31,4 @@ declare module '@mantine/core' {
31
31
  export { clsx } from 'clsx';
32
32
  export { rgba, rem, getPrimaryShade, getThemeColor } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
33
33
  export * from './styles.mjs';
34
- export * from './dayjs.mjs';
34
+ export { dayjs, type Dayjs } from './dayjs.mjs';
@@ -1,13 +1,13 @@
1
1
  import { clsx } from "clsx";
2
2
  import { mergeStylesList, mergeSxList } from "./styles.mjs";
3
+ import { dayjs } from "./dayjs.mjs";
3
4
  import { rgba } from "../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/rgba/rgba.mjs";
4
5
  import { rem } from "../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/utils/units-converters/rem.mjs";
5
6
  import { getPrimaryShade } from "../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-primary-shade/get-primary-shade.mjs";
6
7
  import { getThemeColor } from "../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_szqfuioo5damkjdixckhzmwycq/node_modules/@mantine/core/esm/core/MantineProvider/color-functions/get-theme-color/get-theme-color.mjs";
7
- import { default as default2 } from "dayjs";
8
8
  export {
9
9
  clsx,
10
- default2 as dayjs,
10
+ dayjs,
11
11
  getPrimaryShade,
12
12
  getThemeColor,
13
13
  mergeStylesList,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.1.4",
3
+ "version": "2.1.6",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",