@esic-lab/data-core-ui 0.0.37 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +649 -241
- package/dist/index.mjs +655 -225
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5,6 +5,9 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
9
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
|
+
};
|
|
8
11
|
var __export = (target, all) => {
|
|
9
12
|
for (var name in all)
|
|
10
13
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -27,6 +30,328 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
27
30
|
));
|
|
28
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
32
|
|
|
33
|
+
// node_modules/dayjs/dayjs.min.js
|
|
34
|
+
var require_dayjs_min = __commonJS({
|
|
35
|
+
"node_modules/dayjs/dayjs.min.js"(exports2, module2) {
|
|
36
|
+
"use strict";
|
|
37
|
+
!(function(t, e) {
|
|
38
|
+
"object" == typeof exports2 && "undefined" != typeof module2 ? module2.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = "undefined" != typeof globalThis ? globalThis : t || self).dayjs = e();
|
|
39
|
+
})(exports2, (function() {
|
|
40
|
+
"use strict";
|
|
41
|
+
var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|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, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t2) {
|
|
42
|
+
var e2 = ["th", "st", "nd", "rd"], n2 = t2 % 100;
|
|
43
|
+
return "[" + t2 + (e2[(n2 - 20) % 10] || e2[n2] || e2[0]) + "]";
|
|
44
|
+
} }, m = function(t2, e2, n2) {
|
|
45
|
+
var r2 = String(t2);
|
|
46
|
+
return !r2 || r2.length >= e2 ? t2 : "" + Array(e2 + 1 - r2.length).join(n2) + t2;
|
|
47
|
+
}, v = { s: m, z: function(t2) {
|
|
48
|
+
var e2 = -t2.utcOffset(), n2 = Math.abs(e2), r2 = Math.floor(n2 / 60), i2 = n2 % 60;
|
|
49
|
+
return (e2 <= 0 ? "+" : "-") + m(r2, 2, "0") + ":" + m(i2, 2, "0");
|
|
50
|
+
}, m: function t2(e2, n2) {
|
|
51
|
+
if (e2.date() < n2.date()) return -t2(n2, e2);
|
|
52
|
+
var r2 = 12 * (n2.year() - e2.year()) + (n2.month() - e2.month()), i2 = e2.clone().add(r2, c), s2 = n2 - i2 < 0, u2 = e2.clone().add(r2 + (s2 ? -1 : 1), c);
|
|
53
|
+
return +(-(r2 + (n2 - i2) / (s2 ? i2 - u2 : u2 - i2)) || 0);
|
|
54
|
+
}, a: function(t2) {
|
|
55
|
+
return t2 < 0 ? Math.ceil(t2) || 0 : Math.floor(t2);
|
|
56
|
+
}, p: function(t2) {
|
|
57
|
+
return { M: c, y: h, w: o, d: a, D: d, h: u, m: s, s: i, ms: r, Q: f }[t2] || String(t2 || "").toLowerCase().replace(/s$/, "");
|
|
58
|
+
}, u: function(t2) {
|
|
59
|
+
return void 0 === t2;
|
|
60
|
+
} }, g = "en", D = {};
|
|
61
|
+
D[g] = M;
|
|
62
|
+
var p = "$isDayjsObject", S = function(t2) {
|
|
63
|
+
return t2 instanceof _ || !(!t2 || !t2[p]);
|
|
64
|
+
}, w = function t2(e2, n2, r2) {
|
|
65
|
+
var i2;
|
|
66
|
+
if (!e2) return g;
|
|
67
|
+
if ("string" == typeof e2) {
|
|
68
|
+
var s2 = e2.toLowerCase();
|
|
69
|
+
D[s2] && (i2 = s2), n2 && (D[s2] = n2, i2 = s2);
|
|
70
|
+
var u2 = e2.split("-");
|
|
71
|
+
if (!i2 && u2.length > 1) return t2(u2[0]);
|
|
72
|
+
} else {
|
|
73
|
+
var a2 = e2.name;
|
|
74
|
+
D[a2] = e2, i2 = a2;
|
|
75
|
+
}
|
|
76
|
+
return !r2 && i2 && (g = i2), i2 || !r2 && g;
|
|
77
|
+
}, O = function(t2, e2) {
|
|
78
|
+
if (S(t2)) return t2.clone();
|
|
79
|
+
var n2 = "object" == typeof e2 ? e2 : {};
|
|
80
|
+
return n2.date = t2, n2.args = arguments, new _(n2);
|
|
81
|
+
}, b = v;
|
|
82
|
+
b.l = w, b.i = S, b.w = function(t2, e2) {
|
|
83
|
+
return O(t2, { locale: e2.$L, utc: e2.$u, x: e2.$x, $offset: e2.$offset });
|
|
84
|
+
};
|
|
85
|
+
var _ = (function() {
|
|
86
|
+
function M2(t2) {
|
|
87
|
+
this.$L = w(t2.locale, null, true), this.parse(t2), this.$x = this.$x || t2.x || {}, this[p] = true;
|
|
88
|
+
}
|
|
89
|
+
var m2 = M2.prototype;
|
|
90
|
+
return m2.parse = function(t2) {
|
|
91
|
+
this.$d = (function(t3) {
|
|
92
|
+
var e2 = t3.date, n2 = t3.utc;
|
|
93
|
+
if (null === e2) return /* @__PURE__ */ new Date(NaN);
|
|
94
|
+
if (b.u(e2)) return /* @__PURE__ */ new Date();
|
|
95
|
+
if (e2 instanceof Date) return new Date(e2);
|
|
96
|
+
if ("string" == typeof e2 && !/Z$/i.test(e2)) {
|
|
97
|
+
var r2 = e2.match($);
|
|
98
|
+
if (r2) {
|
|
99
|
+
var i2 = r2[2] - 1 || 0, s2 = (r2[7] || "0").substring(0, 3);
|
|
100
|
+
return n2 ? new Date(Date.UTC(r2[1], i2, r2[3] || 1, r2[4] || 0, r2[5] || 0, r2[6] || 0, s2)) : new Date(r2[1], i2, r2[3] || 1, r2[4] || 0, r2[5] || 0, r2[6] || 0, s2);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return new Date(e2);
|
|
104
|
+
})(t2), this.init();
|
|
105
|
+
}, m2.init = function() {
|
|
106
|
+
var t2 = this.$d;
|
|
107
|
+
this.$y = t2.getFullYear(), this.$M = t2.getMonth(), this.$D = t2.getDate(), this.$W = t2.getDay(), this.$H = t2.getHours(), this.$m = t2.getMinutes(), this.$s = t2.getSeconds(), this.$ms = t2.getMilliseconds();
|
|
108
|
+
}, m2.$utils = function() {
|
|
109
|
+
return b;
|
|
110
|
+
}, m2.isValid = function() {
|
|
111
|
+
return !(this.$d.toString() === l);
|
|
112
|
+
}, m2.isSame = function(t2, e2) {
|
|
113
|
+
var n2 = O(t2);
|
|
114
|
+
return this.startOf(e2) <= n2 && n2 <= this.endOf(e2);
|
|
115
|
+
}, m2.isAfter = function(t2, e2) {
|
|
116
|
+
return O(t2) < this.startOf(e2);
|
|
117
|
+
}, m2.isBefore = function(t2, e2) {
|
|
118
|
+
return this.endOf(e2) < O(t2);
|
|
119
|
+
}, m2.$g = function(t2, e2, n2) {
|
|
120
|
+
return b.u(t2) ? this[e2] : this.set(n2, t2);
|
|
121
|
+
}, m2.unix = function() {
|
|
122
|
+
return Math.floor(this.valueOf() / 1e3);
|
|
123
|
+
}, m2.valueOf = function() {
|
|
124
|
+
return this.$d.getTime();
|
|
125
|
+
}, m2.startOf = function(t2, e2) {
|
|
126
|
+
var n2 = this, r2 = !!b.u(e2) || e2, f2 = b.p(t2), l2 = function(t3, e3) {
|
|
127
|
+
var i2 = b.w(n2.$u ? Date.UTC(n2.$y, e3, t3) : new Date(n2.$y, e3, t3), n2);
|
|
128
|
+
return r2 ? i2 : i2.endOf(a);
|
|
129
|
+
}, $2 = function(t3, e3) {
|
|
130
|
+
return b.w(n2.toDate()[t3].apply(n2.toDate("s"), (r2 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e3)), n2);
|
|
131
|
+
}, y2 = this.$W, M3 = this.$M, m3 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
|
|
132
|
+
switch (f2) {
|
|
133
|
+
case h:
|
|
134
|
+
return r2 ? l2(1, 0) : l2(31, 11);
|
|
135
|
+
case c:
|
|
136
|
+
return r2 ? l2(1, M3) : l2(0, M3 + 1);
|
|
137
|
+
case o:
|
|
138
|
+
var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
|
|
139
|
+
return l2(r2 ? m3 - D2 : m3 + (6 - D2), M3);
|
|
140
|
+
case a:
|
|
141
|
+
case d:
|
|
142
|
+
return $2(v2 + "Hours", 0);
|
|
143
|
+
case u:
|
|
144
|
+
return $2(v2 + "Minutes", 1);
|
|
145
|
+
case s:
|
|
146
|
+
return $2(v2 + "Seconds", 2);
|
|
147
|
+
case i:
|
|
148
|
+
return $2(v2 + "Milliseconds", 3);
|
|
149
|
+
default:
|
|
150
|
+
return this.clone();
|
|
151
|
+
}
|
|
152
|
+
}, m2.endOf = function(t2) {
|
|
153
|
+
return this.startOf(t2, false);
|
|
154
|
+
}, m2.$set = function(t2, e2) {
|
|
155
|
+
var n2, o2 = b.p(t2), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n2 = {}, n2[a] = f2 + "Date", n2[d] = f2 + "Date", n2[c] = f2 + "Month", n2[h] = f2 + "FullYear", n2[u] = f2 + "Hours", n2[s] = f2 + "Minutes", n2[i] = f2 + "Seconds", n2[r] = f2 + "Milliseconds", n2)[o2], $2 = o2 === a ? this.$D + (e2 - this.$W) : e2;
|
|
156
|
+
if (o2 === c || o2 === h) {
|
|
157
|
+
var y2 = this.clone().set(d, 1);
|
|
158
|
+
y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
|
|
159
|
+
} else l2 && this.$d[l2]($2);
|
|
160
|
+
return this.init(), this;
|
|
161
|
+
}, m2.set = function(t2, e2) {
|
|
162
|
+
return this.clone().$set(t2, e2);
|
|
163
|
+
}, m2.get = function(t2) {
|
|
164
|
+
return this[b.p(t2)]();
|
|
165
|
+
}, m2.add = function(r2, f2) {
|
|
166
|
+
var d2, l2 = this;
|
|
167
|
+
r2 = Number(r2);
|
|
168
|
+
var $2 = b.p(f2), y2 = function(t2) {
|
|
169
|
+
var e2 = O(l2);
|
|
170
|
+
return b.w(e2.date(e2.date() + Math.round(t2 * r2)), l2);
|
|
171
|
+
};
|
|
172
|
+
if ($2 === c) return this.set(c, this.$M + r2);
|
|
173
|
+
if ($2 === h) return this.set(h, this.$y + r2);
|
|
174
|
+
if ($2 === a) return y2(1);
|
|
175
|
+
if ($2 === o) return y2(7);
|
|
176
|
+
var M3 = (d2 = {}, d2[s] = e, d2[u] = n, d2[i] = t, d2)[$2] || 1, m3 = this.$d.getTime() + r2 * M3;
|
|
177
|
+
return b.w(m3, this);
|
|
178
|
+
}, m2.subtract = function(t2, e2) {
|
|
179
|
+
return this.add(-1 * t2, e2);
|
|
180
|
+
}, m2.format = function(t2) {
|
|
181
|
+
var e2 = this, n2 = this.$locale();
|
|
182
|
+
if (!this.isValid()) return n2.invalidDate || l;
|
|
183
|
+
var r2 = t2 || "YYYY-MM-DDTHH:mm:ssZ", i2 = b.z(this), s2 = this.$H, u2 = this.$m, a2 = this.$M, o2 = n2.weekdays, c2 = n2.months, f2 = n2.meridiem, h2 = function(t3, n3, i3, s3) {
|
|
184
|
+
return t3 && (t3[n3] || t3(e2, r2)) || i3[n3].slice(0, s3);
|
|
185
|
+
}, d2 = function(t3) {
|
|
186
|
+
return b.s(s2 % 12 || 12, t3, "0");
|
|
187
|
+
}, $2 = f2 || function(t3, e3, n3) {
|
|
188
|
+
var r3 = t3 < 12 ? "AM" : "PM";
|
|
189
|
+
return n3 ? r3.toLowerCase() : r3;
|
|
190
|
+
};
|
|
191
|
+
return r2.replace(y, (function(t3, r3) {
|
|
192
|
+
return r3 || (function(t4) {
|
|
193
|
+
switch (t4) {
|
|
194
|
+
case "YY":
|
|
195
|
+
return String(e2.$y).slice(-2);
|
|
196
|
+
case "YYYY":
|
|
197
|
+
return b.s(e2.$y, 4, "0");
|
|
198
|
+
case "M":
|
|
199
|
+
return a2 + 1;
|
|
200
|
+
case "MM":
|
|
201
|
+
return b.s(a2 + 1, 2, "0");
|
|
202
|
+
case "MMM":
|
|
203
|
+
return h2(n2.monthsShort, a2, c2, 3);
|
|
204
|
+
case "MMMM":
|
|
205
|
+
return h2(c2, a2);
|
|
206
|
+
case "D":
|
|
207
|
+
return e2.$D;
|
|
208
|
+
case "DD":
|
|
209
|
+
return b.s(e2.$D, 2, "0");
|
|
210
|
+
case "d":
|
|
211
|
+
return String(e2.$W);
|
|
212
|
+
case "dd":
|
|
213
|
+
return h2(n2.weekdaysMin, e2.$W, o2, 2);
|
|
214
|
+
case "ddd":
|
|
215
|
+
return h2(n2.weekdaysShort, e2.$W, o2, 3);
|
|
216
|
+
case "dddd":
|
|
217
|
+
return o2[e2.$W];
|
|
218
|
+
case "H":
|
|
219
|
+
return String(s2);
|
|
220
|
+
case "HH":
|
|
221
|
+
return b.s(s2, 2, "0");
|
|
222
|
+
case "h":
|
|
223
|
+
return d2(1);
|
|
224
|
+
case "hh":
|
|
225
|
+
return d2(2);
|
|
226
|
+
case "a":
|
|
227
|
+
return $2(s2, u2, true);
|
|
228
|
+
case "A":
|
|
229
|
+
return $2(s2, u2, false);
|
|
230
|
+
case "m":
|
|
231
|
+
return String(u2);
|
|
232
|
+
case "mm":
|
|
233
|
+
return b.s(u2, 2, "0");
|
|
234
|
+
case "s":
|
|
235
|
+
return String(e2.$s);
|
|
236
|
+
case "ss":
|
|
237
|
+
return b.s(e2.$s, 2, "0");
|
|
238
|
+
case "SSS":
|
|
239
|
+
return b.s(e2.$ms, 3, "0");
|
|
240
|
+
case "Z":
|
|
241
|
+
return i2;
|
|
242
|
+
}
|
|
243
|
+
return null;
|
|
244
|
+
})(t3) || i2.replace(":", "");
|
|
245
|
+
}));
|
|
246
|
+
}, m2.utcOffset = function() {
|
|
247
|
+
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
248
|
+
}, m2.diff = function(r2, d2, l2) {
|
|
249
|
+
var $2, y2 = this, M3 = b.p(d2), m3 = O(r2), v2 = (m3.utcOffset() - this.utcOffset()) * e, g2 = this - m3, D2 = function() {
|
|
250
|
+
return b.m(y2, m3);
|
|
251
|
+
};
|
|
252
|
+
switch (M3) {
|
|
253
|
+
case h:
|
|
254
|
+
$2 = D2() / 12;
|
|
255
|
+
break;
|
|
256
|
+
case c:
|
|
257
|
+
$2 = D2();
|
|
258
|
+
break;
|
|
259
|
+
case f:
|
|
260
|
+
$2 = D2() / 3;
|
|
261
|
+
break;
|
|
262
|
+
case o:
|
|
263
|
+
$2 = (g2 - v2) / 6048e5;
|
|
264
|
+
break;
|
|
265
|
+
case a:
|
|
266
|
+
$2 = (g2 - v2) / 864e5;
|
|
267
|
+
break;
|
|
268
|
+
case u:
|
|
269
|
+
$2 = g2 / n;
|
|
270
|
+
break;
|
|
271
|
+
case s:
|
|
272
|
+
$2 = g2 / e;
|
|
273
|
+
break;
|
|
274
|
+
case i:
|
|
275
|
+
$2 = g2 / t;
|
|
276
|
+
break;
|
|
277
|
+
default:
|
|
278
|
+
$2 = g2;
|
|
279
|
+
}
|
|
280
|
+
return l2 ? $2 : b.a($2);
|
|
281
|
+
}, m2.daysInMonth = function() {
|
|
282
|
+
return this.endOf(c).$D;
|
|
283
|
+
}, m2.$locale = function() {
|
|
284
|
+
return D[this.$L];
|
|
285
|
+
}, m2.locale = function(t2, e2) {
|
|
286
|
+
if (!t2) return this.$L;
|
|
287
|
+
var n2 = this.clone(), r2 = w(t2, e2, true);
|
|
288
|
+
return r2 && (n2.$L = r2), n2;
|
|
289
|
+
}, m2.clone = function() {
|
|
290
|
+
return b.w(this.$d, this);
|
|
291
|
+
}, m2.toDate = function() {
|
|
292
|
+
return new Date(this.valueOf());
|
|
293
|
+
}, m2.toJSON = function() {
|
|
294
|
+
return this.isValid() ? this.toISOString() : null;
|
|
295
|
+
}, m2.toISOString = function() {
|
|
296
|
+
return this.$d.toISOString();
|
|
297
|
+
}, m2.toString = function() {
|
|
298
|
+
return this.$d.toUTCString();
|
|
299
|
+
}, M2;
|
|
300
|
+
})(), k = _.prototype;
|
|
301
|
+
return O.prototype = k, [["$ms", r], ["$s", i], ["$m", s], ["$H", u], ["$W", a], ["$M", c], ["$y", h], ["$D", d]].forEach((function(t2) {
|
|
302
|
+
k[t2[1]] = function(e2) {
|
|
303
|
+
return this.$g(e2, t2[0], t2[1]);
|
|
304
|
+
};
|
|
305
|
+
})), O.extend = function(t2, e2) {
|
|
306
|
+
return t2.$i || (t2(e2, _, O), t2.$i = true), O;
|
|
307
|
+
}, O.locale = w, O.isDayjs = S, O.unix = function(t2) {
|
|
308
|
+
return O(1e3 * t2);
|
|
309
|
+
}, O.en = D[g], O.Ls = D, O.p = {}, O;
|
|
310
|
+
}));
|
|
311
|
+
}
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
// node_modules/dayjs/locale/th.js
|
|
315
|
+
var require_th = __commonJS({
|
|
316
|
+
"node_modules/dayjs/locale/th.js"(exports2, module2) {
|
|
317
|
+
"use strict";
|
|
318
|
+
!(function(_, e) {
|
|
319
|
+
"object" == typeof exports2 && "undefined" != typeof module2 ? module2.exports = e(require_dayjs_min()) : "function" == typeof define && define.amd ? define(["dayjs"], e) : (_ = "undefined" != typeof globalThis ? globalThis : _ || self).dayjs_locale_th = e(_.dayjs);
|
|
320
|
+
})(exports2, (function(_) {
|
|
321
|
+
"use strict";
|
|
322
|
+
function e(_2) {
|
|
323
|
+
return _2 && "object" == typeof _2 && "default" in _2 ? _2 : { default: _2 };
|
|
324
|
+
}
|
|
325
|
+
var t = e(_), d = { name: "th", weekdays: "\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C_\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C_\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23_\u0E1E\u0E38\u0E18_\u0E1E\u0E24\u0E2B\u0E31\u0E2A\u0E1A\u0E14\u0E35_\u0E28\u0E38\u0E01\u0E23\u0E4C_\u0E40\u0E2A\u0E32\u0E23\u0E4C".split("_"), weekdaysShort: "\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C_\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C_\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23_\u0E1E\u0E38\u0E18_\u0E1E\u0E24\u0E2B\u0E31\u0E2A_\u0E28\u0E38\u0E01\u0E23\u0E4C_\u0E40\u0E2A\u0E32\u0E23\u0E4C".split("_"), weekdaysMin: "\u0E2D\u0E32._\u0E08._\u0E2D._\u0E1E._\u0E1E\u0E24._\u0E28._\u0E2A.".split("_"), months: "\u0E21\u0E01\u0E23\u0E32\u0E04\u0E21_\u0E01\u0E38\u0E21\u0E20\u0E32\u0E1E\u0E31\u0E19\u0E18\u0E4C_\u0E21\u0E35\u0E19\u0E32\u0E04\u0E21_\u0E40\u0E21\u0E29\u0E32\u0E22\u0E19_\u0E1E\u0E24\u0E29\u0E20\u0E32\u0E04\u0E21_\u0E21\u0E34\u0E16\u0E38\u0E19\u0E32\u0E22\u0E19_\u0E01\u0E23\u0E01\u0E0E\u0E32\u0E04\u0E21_\u0E2A\u0E34\u0E07\u0E2B\u0E32\u0E04\u0E21_\u0E01\u0E31\u0E19\u0E22\u0E32\u0E22\u0E19_\u0E15\u0E38\u0E25\u0E32\u0E04\u0E21_\u0E1E\u0E24\u0E28\u0E08\u0E34\u0E01\u0E32\u0E22\u0E19_\u0E18\u0E31\u0E19\u0E27\u0E32\u0E04\u0E21".split("_"), monthsShort: "\u0E21.\u0E04._\u0E01.\u0E1E._\u0E21\u0E35.\u0E04._\u0E40\u0E21.\u0E22._\u0E1E.\u0E04._\u0E21\u0E34.\u0E22._\u0E01.\u0E04._\u0E2A.\u0E04._\u0E01.\u0E22._\u0E15.\u0E04._\u0E1E.\u0E22._\u0E18.\u0E04.".split("_"), formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY \u0E40\u0E27\u0E25\u0E32 H:mm", LLLL: "\u0E27\u0E31\u0E19dddd\u0E17\u0E35\u0E48 D MMMM YYYY \u0E40\u0E27\u0E25\u0E32 H:mm" }, relativeTime: { future: "\u0E2D\u0E35\u0E01 %s", past: "%s\u0E17\u0E35\u0E48\u0E41\u0E25\u0E49\u0E27", s: "\u0E44\u0E21\u0E48\u0E01\u0E35\u0E48\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35", m: "1 \u0E19\u0E32\u0E17\u0E35", mm: "%d \u0E19\u0E32\u0E17\u0E35", h: "1 \u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07", hh: "%d \u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07", d: "1 \u0E27\u0E31\u0E19", dd: "%d \u0E27\u0E31\u0E19", M: "1 \u0E40\u0E14\u0E37\u0E2D\u0E19", MM: "%d \u0E40\u0E14\u0E37\u0E2D\u0E19", y: "1 \u0E1B\u0E35", yy: "%d \u0E1B\u0E35" }, ordinal: function(_2) {
|
|
326
|
+
return _2 + ".";
|
|
327
|
+
} };
|
|
328
|
+
return t.default.locale(d, null, true), d;
|
|
329
|
+
}));
|
|
330
|
+
}
|
|
331
|
+
});
|
|
332
|
+
|
|
333
|
+
// node_modules/dayjs/plugin/buddhistEra.js
|
|
334
|
+
var require_buddhistEra = __commonJS({
|
|
335
|
+
"node_modules/dayjs/plugin/buddhistEra.js"(exports2, module2) {
|
|
336
|
+
"use strict";
|
|
337
|
+
!(function(t, e) {
|
|
338
|
+
"object" == typeof exports2 && "undefined" != typeof module2 ? module2.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = "undefined" != typeof globalThis ? globalThis : t || self).dayjs_plugin_buddhistEra = e();
|
|
339
|
+
})(exports2, (function() {
|
|
340
|
+
"use strict";
|
|
341
|
+
return function(t, e) {
|
|
342
|
+
var n = e.prototype, i = n.format;
|
|
343
|
+
n.format = function(t2) {
|
|
344
|
+
var e2 = this, n2 = (t2 || "YYYY-MM-DDTHH:mm:ssZ").replace(/(\[[^\]]+])|BBBB|BB/g, (function(t3, n3) {
|
|
345
|
+
var i2, o = String(e2.$y + 543), f = "BB" === t3 ? [o.slice(-2), 2] : [o, 4];
|
|
346
|
+
return n3 || (i2 = e2.$utils()).s.apply(i2, f.concat(["0"]));
|
|
347
|
+
}));
|
|
348
|
+
return i.bind(this)(n2);
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
}));
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
|
|
30
355
|
// src/index.ts
|
|
31
356
|
var index_exports = {};
|
|
32
357
|
__export(index_exports, {
|
|
@@ -39,6 +364,7 @@ __export(index_exports, {
|
|
|
39
364
|
ColorPalettePickerBasic: () => ColorPalettePickerBasic,
|
|
40
365
|
ColorPickerBasic: () => ColorPickerBasic,
|
|
41
366
|
DataTable: () => DataTable,
|
|
367
|
+
DatePickerBasic: () => DatePickerBasic,
|
|
42
368
|
FileUploader: () => FileUploader,
|
|
43
369
|
FilterPopUp: () => FilterPopUp,
|
|
44
370
|
GhostButton: () => GhostButton,
|
|
@@ -958,24 +1284,48 @@ function InputFieldNumber({
|
|
|
958
1284
|
);
|
|
959
1285
|
}
|
|
960
1286
|
|
|
961
|
-
// src/
|
|
1287
|
+
// src/DatePicker/DatePickerBasic/DatePickerBasic.tsx
|
|
962
1288
|
var import_antd5 = require("antd");
|
|
1289
|
+
var import_dayjs = __toESM(require_dayjs_min());
|
|
1290
|
+
var import_th_TH = __toESM(require("antd/es/date-picker/locale/th_TH"));
|
|
1291
|
+
var import_th_TH2 = __toESM(require("antd/locale/th_TH"));
|
|
1292
|
+
var import_th2 = __toESM(require_th());
|
|
1293
|
+
var import_buddhistEra = __toESM(require_buddhistEra());
|
|
1294
|
+
var import_locale = require("date-fns/locale");
|
|
1295
|
+
var import_date_fns = require("date-fns");
|
|
963
1296
|
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
964
|
-
|
|
1297
|
+
import_dayjs.default.extend(import_buddhistEra.default);
|
|
1298
|
+
function DatePickerBasic({
|
|
965
1299
|
value,
|
|
966
1300
|
onChange,
|
|
967
1301
|
required,
|
|
968
1302
|
label,
|
|
969
1303
|
error,
|
|
1304
|
+
placeholder = "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48",
|
|
970
1305
|
disabled,
|
|
971
|
-
|
|
972
|
-
|
|
1306
|
+
defaultValue,
|
|
1307
|
+
minDate,
|
|
1308
|
+
maxDate,
|
|
1309
|
+
disabledDate,
|
|
973
1310
|
className,
|
|
974
|
-
|
|
1311
|
+
size
|
|
975
1312
|
}) {
|
|
1313
|
+
const dateFormat = "DD/MM/YYYY";
|
|
1314
|
+
import_dayjs.default.locale("th_TH");
|
|
1315
|
+
const buddhistLocale = {
|
|
1316
|
+
...import_th_TH.default,
|
|
1317
|
+
lang: {
|
|
1318
|
+
...import_th_TH.default.lang,
|
|
1319
|
+
fieldDateFormat: "BBBB-MM-DD",
|
|
1320
|
+
fieldDateTimeFormat: "BBBB-MM-DD HH:mm:ss",
|
|
1321
|
+
yearFormat: "BBBB",
|
|
1322
|
+
cellYearFormat: "BBBB"
|
|
1323
|
+
}
|
|
1324
|
+
};
|
|
976
1325
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
977
1326
|
import_antd5.ConfigProvider,
|
|
978
1327
|
{
|
|
1328
|
+
locale: import_th_TH2.default,
|
|
979
1329
|
theme: {
|
|
980
1330
|
token: {
|
|
981
1331
|
fontFamily: "Kanit",
|
|
@@ -989,7 +1339,64 @@ function ColorPickerBasic({
|
|
|
989
1339
|
required && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: "text-red-500", children: "*" })
|
|
990
1340
|
] }),
|
|
991
1341
|
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
992
|
-
import_antd5.
|
|
1342
|
+
import_antd5.DatePicker,
|
|
1343
|
+
{
|
|
1344
|
+
className: `body-1 w-full ${className ?? ""}`,
|
|
1345
|
+
value,
|
|
1346
|
+
placeholder,
|
|
1347
|
+
onChange,
|
|
1348
|
+
allowClear: true,
|
|
1349
|
+
disabled,
|
|
1350
|
+
format: (date) => date ? (0, import_date_fns.format)(date.toDate(), "dd/MM/yyyy", { locale: import_locale.th }).replace(
|
|
1351
|
+
/\d{4}$/,
|
|
1352
|
+
(y) => String(parseInt(y) + 543)
|
|
1353
|
+
) : "",
|
|
1354
|
+
defaultValue,
|
|
1355
|
+
disabledDate: (d) => disabledDate ? disabledDate(d.toDate()) : false,
|
|
1356
|
+
minDate: minDate ? (0, import_dayjs.default)(minDate) : void 0,
|
|
1357
|
+
maxDate: maxDate ? (0, import_dayjs.default)(maxDate) : void 0,
|
|
1358
|
+
size,
|
|
1359
|
+
locale: buddhistLocale
|
|
1360
|
+
}
|
|
1361
|
+
),
|
|
1362
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
1363
|
+
] })
|
|
1364
|
+
}
|
|
1365
|
+
);
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
// src/ColorPicker/ColorPickerBasic/ColorPicker.tsx
|
|
1369
|
+
var import_antd6 = require("antd");
|
|
1370
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
1371
|
+
function ColorPickerBasic({
|
|
1372
|
+
value,
|
|
1373
|
+
onChange,
|
|
1374
|
+
required,
|
|
1375
|
+
label,
|
|
1376
|
+
error,
|
|
1377
|
+
disabled,
|
|
1378
|
+
allowClear,
|
|
1379
|
+
defaultFormat,
|
|
1380
|
+
className,
|
|
1381
|
+
placeholder = "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2A\u0E35"
|
|
1382
|
+
}) {
|
|
1383
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1384
|
+
import_antd6.ConfigProvider,
|
|
1385
|
+
{
|
|
1386
|
+
theme: {
|
|
1387
|
+
token: {
|
|
1388
|
+
fontFamily: "Kanit",
|
|
1389
|
+
fontSize: 16
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "container-input", children: [
|
|
1393
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { children: [
|
|
1394
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "body-1", children: label }),
|
|
1395
|
+
" ",
|
|
1396
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "text-red-500", children: "*" })
|
|
1397
|
+
] }),
|
|
1398
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1399
|
+
import_antd6.ColorPicker,
|
|
993
1400
|
{
|
|
994
1401
|
defaultFormat,
|
|
995
1402
|
className: `body-1 w-full ${className ?? ""}`,
|
|
@@ -1000,9 +1407,9 @@ function ColorPickerBasic({
|
|
|
1000
1407
|
showText: (color) => {
|
|
1001
1408
|
const hex = color.toHexString();
|
|
1002
1409
|
if (!value) {
|
|
1003
|
-
return /* @__PURE__ */ (0,
|
|
1410
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { children: placeholder });
|
|
1004
1411
|
}
|
|
1005
|
-
return /* @__PURE__ */ (0,
|
|
1412
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("span", { children: [
|
|
1006
1413
|
"(",
|
|
1007
1414
|
hex,
|
|
1008
1415
|
")"
|
|
@@ -1011,14 +1418,14 @@ function ColorPickerBasic({
|
|
|
1011
1418
|
disabled
|
|
1012
1419
|
}
|
|
1013
1420
|
),
|
|
1014
|
-
error && /* @__PURE__ */ (0,
|
|
1421
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
1015
1422
|
] })
|
|
1016
1423
|
}
|
|
1017
1424
|
);
|
|
1018
1425
|
}
|
|
1019
1426
|
|
|
1020
1427
|
// src/ColorPicker/ColorPalettePickerBasic/ColorPalettePickerBasic.tsx
|
|
1021
|
-
var
|
|
1428
|
+
var import_antd7 = require("antd");
|
|
1022
1429
|
|
|
1023
1430
|
// node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
1024
1431
|
function _typeof(o) {
|
|
@@ -1720,7 +2127,7 @@ var greyDark = ["#151515", "#1f1f1f", "#2d2d2d", "#393939", "#494949", "#5a5a5a"
|
|
|
1720
2127
|
greyDark.primary = greyDark[5];
|
|
1721
2128
|
|
|
1722
2129
|
// src/ColorPicker/ColorPalettePickerBasic/ColorPalettePickerBasic.tsx
|
|
1723
|
-
var
|
|
2130
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1724
2131
|
function genPresets(presets = presetPalettes) {
|
|
1725
2132
|
return Object.entries(presets).map(([label, colors]) => ({
|
|
1726
2133
|
label,
|
|
@@ -1741,14 +2148,14 @@ function ColorPalettePickerBasic({
|
|
|
1741
2148
|
placeholder = "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2A\u0E35",
|
|
1742
2149
|
onClear
|
|
1743
2150
|
}) {
|
|
1744
|
-
const { token } =
|
|
2151
|
+
const { token } = import_antd7.theme.useToken();
|
|
1745
2152
|
const presets = genPresets({
|
|
1746
2153
|
primary: generate(token.colorPrimary),
|
|
1747
2154
|
red,
|
|
1748
2155
|
green
|
|
1749
2156
|
});
|
|
1750
|
-
return /* @__PURE__ */ (0,
|
|
1751
|
-
|
|
2157
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2158
|
+
import_antd7.ConfigProvider,
|
|
1752
2159
|
{
|
|
1753
2160
|
theme: {
|
|
1754
2161
|
token: {
|
|
@@ -1756,14 +2163,14 @@ function ColorPalettePickerBasic({
|
|
|
1756
2163
|
fontSize: 16
|
|
1757
2164
|
}
|
|
1758
2165
|
},
|
|
1759
|
-
children: /* @__PURE__ */ (0,
|
|
1760
|
-
/* @__PURE__ */ (0,
|
|
1761
|
-
/* @__PURE__ */ (0,
|
|
2166
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: "container-input", children: [
|
|
2167
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { children: [
|
|
2168
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "body-1", children: label }),
|
|
1762
2169
|
" ",
|
|
1763
|
-
required && /* @__PURE__ */ (0,
|
|
2170
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "text-red-500", children: "*" })
|
|
1764
2171
|
] }),
|
|
1765
|
-
/* @__PURE__ */ (0,
|
|
1766
|
-
|
|
2172
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2173
|
+
import_antd7.ColorPicker,
|
|
1767
2174
|
{
|
|
1768
2175
|
defaultFormat,
|
|
1769
2176
|
className: `body-1 w-full ${className ?? ""}`,
|
|
@@ -1775,9 +2182,9 @@ function ColorPalettePickerBasic({
|
|
|
1775
2182
|
showText: (color) => {
|
|
1776
2183
|
const hex = color.toHexString();
|
|
1777
2184
|
if (!value) {
|
|
1778
|
-
return /* @__PURE__ */ (0,
|
|
2185
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: placeholder });
|
|
1779
2186
|
}
|
|
1780
|
-
return /* @__PURE__ */ (0,
|
|
2187
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("span", { children: [
|
|
1781
2188
|
"(",
|
|
1782
2189
|
hex,
|
|
1783
2190
|
")"
|
|
@@ -1787,15 +2194,15 @@ function ColorPalettePickerBasic({
|
|
|
1787
2194
|
onClear
|
|
1788
2195
|
}
|
|
1789
2196
|
),
|
|
1790
|
-
error && /* @__PURE__ */ (0,
|
|
2197
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
1791
2198
|
] })
|
|
1792
2199
|
}
|
|
1793
2200
|
);
|
|
1794
2201
|
}
|
|
1795
2202
|
|
|
1796
2203
|
// src/Select/SelectField/SelectField.tsx
|
|
1797
|
-
var
|
|
1798
|
-
var
|
|
2204
|
+
var import_antd8 = require("antd");
|
|
2205
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1799
2206
|
function SelectField({
|
|
1800
2207
|
value,
|
|
1801
2208
|
onChange,
|
|
@@ -1813,8 +2220,8 @@ function SelectField({
|
|
|
1813
2220
|
className,
|
|
1814
2221
|
onClear
|
|
1815
2222
|
}) {
|
|
1816
|
-
return /* @__PURE__ */ (0,
|
|
1817
|
-
|
|
2223
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2224
|
+
import_antd8.ConfigProvider,
|
|
1818
2225
|
{
|
|
1819
2226
|
theme: {
|
|
1820
2227
|
token: {
|
|
@@ -1822,14 +2229,14 @@ function SelectField({
|
|
|
1822
2229
|
fontSize: 16
|
|
1823
2230
|
}
|
|
1824
2231
|
},
|
|
1825
|
-
children: /* @__PURE__ */ (0,
|
|
1826
|
-
/* @__PURE__ */ (0,
|
|
1827
|
-
/* @__PURE__ */ (0,
|
|
2232
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: "container-input", children: [
|
|
2233
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { children: [
|
|
2234
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: "body-1", children: label }),
|
|
1828
2235
|
" ",
|
|
1829
|
-
required && /* @__PURE__ */ (0,
|
|
2236
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: "text-red-500", children: "*" })
|
|
1830
2237
|
] }),
|
|
1831
|
-
/* @__PURE__ */ (0,
|
|
1832
|
-
|
|
2238
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2239
|
+
import_antd8.Select,
|
|
1833
2240
|
{
|
|
1834
2241
|
showSearch: true,
|
|
1835
2242
|
value,
|
|
@@ -1843,7 +2250,7 @@ function SelectField({
|
|
|
1843
2250
|
options,
|
|
1844
2251
|
mode,
|
|
1845
2252
|
onSearch: handleSearch,
|
|
1846
|
-
prefix: prefix ? /* @__PURE__ */ (0,
|
|
2253
|
+
prefix: prefix ? /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1847
2254
|
"span",
|
|
1848
2255
|
{
|
|
1849
2256
|
style: {
|
|
@@ -1860,15 +2267,15 @@ function SelectField({
|
|
|
1860
2267
|
onClear
|
|
1861
2268
|
}
|
|
1862
2269
|
),
|
|
1863
|
-
error && /* @__PURE__ */ (0,
|
|
2270
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
1864
2271
|
] })
|
|
1865
2272
|
}
|
|
1866
2273
|
);
|
|
1867
2274
|
}
|
|
1868
2275
|
|
|
1869
2276
|
// src/Select/SelectFieldGroup/SelectFieldGroup.tsx
|
|
1870
|
-
var
|
|
1871
|
-
var
|
|
2277
|
+
var import_antd9 = require("antd");
|
|
2278
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1872
2279
|
function SelectFieldGroup({
|
|
1873
2280
|
value,
|
|
1874
2281
|
onChange,
|
|
@@ -1885,22 +2292,22 @@ function SelectFieldGroup({
|
|
|
1885
2292
|
handleSearch,
|
|
1886
2293
|
className
|
|
1887
2294
|
}) {
|
|
1888
|
-
return /* @__PURE__ */ (0,
|
|
1889
|
-
|
|
2295
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2296
|
+
import_antd9.ConfigProvider,
|
|
1890
2297
|
{
|
|
1891
2298
|
theme: {
|
|
1892
2299
|
token: {
|
|
1893
2300
|
fontFamily: "Kanit"
|
|
1894
2301
|
}
|
|
1895
2302
|
},
|
|
1896
|
-
children: /* @__PURE__ */ (0,
|
|
1897
|
-
/* @__PURE__ */ (0,
|
|
1898
|
-
/* @__PURE__ */ (0,
|
|
2303
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "container-input", children: [
|
|
2304
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { children: [
|
|
2305
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "body-1", children: label }),
|
|
1899
2306
|
" ",
|
|
1900
|
-
required && /* @__PURE__ */ (0,
|
|
2307
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "text-red-500", children: "*" })
|
|
1901
2308
|
] }),
|
|
1902
|
-
/* @__PURE__ */ (0,
|
|
1903
|
-
|
|
2309
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2310
|
+
import_antd9.Select,
|
|
1904
2311
|
{
|
|
1905
2312
|
showSearch: true,
|
|
1906
2313
|
value,
|
|
@@ -1914,7 +2321,7 @@ function SelectFieldGroup({
|
|
|
1914
2321
|
options,
|
|
1915
2322
|
mode,
|
|
1916
2323
|
onSearch: handleSearch,
|
|
1917
|
-
prefix: prefix ? /* @__PURE__ */ (0,
|
|
2324
|
+
prefix: prefix ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1918
2325
|
"span",
|
|
1919
2326
|
{
|
|
1920
2327
|
style: {
|
|
@@ -1930,14 +2337,14 @@ function SelectFieldGroup({
|
|
|
1930
2337
|
allowClear: true
|
|
1931
2338
|
}
|
|
1932
2339
|
),
|
|
1933
|
-
error && /* @__PURE__ */ (0,
|
|
2340
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
1934
2341
|
] })
|
|
1935
2342
|
}
|
|
1936
2343
|
);
|
|
1937
2344
|
}
|
|
1938
2345
|
|
|
1939
2346
|
// src/Select/SelectFieldStatus/SelectFieldStatus.tsx
|
|
1940
|
-
var
|
|
2347
|
+
var import_antd10 = require("antd");
|
|
1941
2348
|
|
|
1942
2349
|
// src/Select/SelectFieldStatus/StatusMockup.ts
|
|
1943
2350
|
var status = [
|
|
@@ -1950,7 +2357,7 @@ var status = [
|
|
|
1950
2357
|
|
|
1951
2358
|
// src/Select/SelectFieldStatus/SelectFieldStatus.tsx
|
|
1952
2359
|
var import_icons = require("@ant-design/icons");
|
|
1953
|
-
var
|
|
2360
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1954
2361
|
function SelectFieldStatus({
|
|
1955
2362
|
value,
|
|
1956
2363
|
onChange,
|
|
@@ -1963,8 +2370,8 @@ function SelectFieldStatus({
|
|
|
1963
2370
|
className
|
|
1964
2371
|
}) {
|
|
1965
2372
|
const selectedItem = status.find((s) => s.value === value);
|
|
1966
|
-
return /* @__PURE__ */ (0,
|
|
1967
|
-
|
|
2373
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2374
|
+
import_antd10.ConfigProvider,
|
|
1968
2375
|
{
|
|
1969
2376
|
theme: {
|
|
1970
2377
|
components: {
|
|
@@ -1979,17 +2386,17 @@ function SelectFieldStatus({
|
|
|
1979
2386
|
fontFamily: "Kanit"
|
|
1980
2387
|
}
|
|
1981
2388
|
},
|
|
1982
|
-
children: /* @__PURE__ */ (0,
|
|
1983
|
-
/* @__PURE__ */ (0,
|
|
1984
|
-
/* @__PURE__ */ (0,
|
|
2389
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "container-input", children: [
|
|
2390
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { children: [
|
|
2391
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "body-1", children: label }),
|
|
1985
2392
|
" ",
|
|
1986
|
-
required && /* @__PURE__ */ (0,
|
|
2393
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "text-red-500", children: "*" })
|
|
1987
2394
|
] }),
|
|
1988
|
-
/* @__PURE__ */ (0,
|
|
1989
|
-
|
|
2395
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2396
|
+
import_antd10.Select,
|
|
1990
2397
|
{
|
|
1991
2398
|
disabled,
|
|
1992
|
-
suffixIcon: /* @__PURE__ */ (0,
|
|
2399
|
+
suffixIcon: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_icons.DownOutlined, { style: { color: value ? "#fff" : "#D9D9D9" } }),
|
|
1993
2400
|
value,
|
|
1994
2401
|
onChange,
|
|
1995
2402
|
className: `body-3 custom-select flex justify-center w-full ${className ?? ""}`,
|
|
@@ -2000,14 +2407,14 @@ function SelectFieldStatus({
|
|
|
2000
2407
|
showSearch: true
|
|
2001
2408
|
}
|
|
2002
2409
|
),
|
|
2003
|
-
error && /* @__PURE__ */ (0,
|
|
2410
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
2004
2411
|
] })
|
|
2005
2412
|
}
|
|
2006
2413
|
);
|
|
2007
2414
|
}
|
|
2008
2415
|
|
|
2009
2416
|
// src/Select/SelectFieldStatusReport/SelectFieldStatusReport.tsx
|
|
2010
|
-
var
|
|
2417
|
+
var import_antd11 = require("antd");
|
|
2011
2418
|
|
|
2012
2419
|
// src/Select/SelectFieldStatusReport/StatusReportMockup.ts
|
|
2013
2420
|
var status2 = [
|
|
@@ -2017,7 +2424,7 @@ var status2 = [
|
|
|
2017
2424
|
|
|
2018
2425
|
// src/Select/SelectFieldStatusReport/SelectFieldStatusReport.tsx
|
|
2019
2426
|
var import_icons2 = require("@ant-design/icons");
|
|
2020
|
-
var
|
|
2427
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2021
2428
|
function SelectFieldStatusReport({
|
|
2022
2429
|
value,
|
|
2023
2430
|
onChange,
|
|
@@ -2030,8 +2437,8 @@ function SelectFieldStatusReport({
|
|
|
2030
2437
|
options
|
|
2031
2438
|
}) {
|
|
2032
2439
|
const selectedItem = status2.find((s) => s.value === value);
|
|
2033
|
-
return /* @__PURE__ */ (0,
|
|
2034
|
-
|
|
2440
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2441
|
+
import_antd11.ConfigProvider,
|
|
2035
2442
|
{
|
|
2036
2443
|
theme: {
|
|
2037
2444
|
components: {
|
|
@@ -2046,17 +2453,17 @@ function SelectFieldStatusReport({
|
|
|
2046
2453
|
fontFamily: "Kanit"
|
|
2047
2454
|
}
|
|
2048
2455
|
},
|
|
2049
|
-
children: /* @__PURE__ */ (0,
|
|
2050
|
-
/* @__PURE__ */ (0,
|
|
2051
|
-
/* @__PURE__ */ (0,
|
|
2456
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "container-input", children: [
|
|
2457
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { children: [
|
|
2458
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: "body-1", children: label }),
|
|
2052
2459
|
" ",
|
|
2053
|
-
required && /* @__PURE__ */ (0,
|
|
2460
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: "text-red-500", children: "*" })
|
|
2054
2461
|
] }),
|
|
2055
|
-
/* @__PURE__ */ (0,
|
|
2056
|
-
|
|
2462
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2463
|
+
import_antd11.Select,
|
|
2057
2464
|
{
|
|
2058
2465
|
disabled,
|
|
2059
|
-
suffixIcon: /* @__PURE__ */ (0,
|
|
2466
|
+
suffixIcon: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_icons2.DownOutlined, { style: { color: value ? "#fff" : "#D9D9D9" } }),
|
|
2060
2467
|
value,
|
|
2061
2468
|
onChange,
|
|
2062
2469
|
className: `body-3 custom-select flex justify-center w-full ${className ?? ""}`,
|
|
@@ -2067,16 +2474,16 @@ function SelectFieldStatusReport({
|
|
|
2067
2474
|
showSearch: true
|
|
2068
2475
|
}
|
|
2069
2476
|
),
|
|
2070
|
-
error && /* @__PURE__ */ (0,
|
|
2477
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
2071
2478
|
] })
|
|
2072
2479
|
}
|
|
2073
2480
|
);
|
|
2074
2481
|
}
|
|
2075
2482
|
|
|
2076
2483
|
// src/Select/SelectFieldTag/SelectFieldTag.tsx
|
|
2077
|
-
var
|
|
2484
|
+
var import_antd12 = require("antd");
|
|
2078
2485
|
var import_react8 = require("react");
|
|
2079
|
-
var
|
|
2486
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2080
2487
|
function SelectFieldTag({
|
|
2081
2488
|
label,
|
|
2082
2489
|
required,
|
|
@@ -2109,22 +2516,22 @@ function SelectFieldTag({
|
|
|
2109
2516
|
}
|
|
2110
2517
|
onChange?.([]);
|
|
2111
2518
|
};
|
|
2112
|
-
return /* @__PURE__ */ (0,
|
|
2113
|
-
|
|
2519
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2520
|
+
import_antd12.ConfigProvider,
|
|
2114
2521
|
{
|
|
2115
2522
|
theme: {
|
|
2116
2523
|
token: {
|
|
2117
2524
|
fontFamily: "Kanit"
|
|
2118
2525
|
}
|
|
2119
2526
|
},
|
|
2120
|
-
children: /* @__PURE__ */ (0,
|
|
2121
|
-
/* @__PURE__ */ (0,
|
|
2122
|
-
/* @__PURE__ */ (0,
|
|
2527
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "container-input", children: [
|
|
2528
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { children: [
|
|
2529
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "body-1", children: label }),
|
|
2123
2530
|
" ",
|
|
2124
|
-
required && /* @__PURE__ */ (0,
|
|
2531
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "text-red-500", children: "*" })
|
|
2125
2532
|
] }),
|
|
2126
|
-
/* @__PURE__ */ (0,
|
|
2127
|
-
|
|
2533
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2534
|
+
import_antd12.Select,
|
|
2128
2535
|
{
|
|
2129
2536
|
mode: "tags",
|
|
2130
2537
|
className: `body-1 flex justify-center w-full ${className ?? ""}`,
|
|
@@ -2142,7 +2549,7 @@ function SelectFieldTag({
|
|
|
2142
2549
|
onClear
|
|
2143
2550
|
}
|
|
2144
2551
|
),
|
|
2145
|
-
error && /* @__PURE__ */ (0,
|
|
2552
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("p", { className: "text-red-500 caption-1", children: error })
|
|
2146
2553
|
] })
|
|
2147
2554
|
}
|
|
2148
2555
|
);
|
|
@@ -2150,9 +2557,9 @@ function SelectFieldTag({
|
|
|
2150
2557
|
|
|
2151
2558
|
// src/Select/SelectCustom/SelectCustom.tsx
|
|
2152
2559
|
var import_icons_react8 = require("@tabler/icons-react");
|
|
2153
|
-
var
|
|
2560
|
+
var import_antd13 = require("antd");
|
|
2154
2561
|
var import_react9 = require("react");
|
|
2155
|
-
var
|
|
2562
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2156
2563
|
function SelectCustom({
|
|
2157
2564
|
label = "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23",
|
|
2158
2565
|
placeholder = "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E25\u0E37\u0E2D\u0E01",
|
|
@@ -2181,8 +2588,8 @@ function SelectCustom({
|
|
|
2181
2588
|
});
|
|
2182
2589
|
};
|
|
2183
2590
|
const filteredOptions = options.filter((opt) => !valueList.includes(opt.value)).map((opt) => ({ value: opt.value, label: opt.label }));
|
|
2184
|
-
return /* @__PURE__ */ (0,
|
|
2185
|
-
|
|
2591
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2592
|
+
import_antd13.ConfigProvider,
|
|
2186
2593
|
{
|
|
2187
2594
|
theme: {
|
|
2188
2595
|
token: {
|
|
@@ -2190,14 +2597,14 @@ function SelectCustom({
|
|
|
2190
2597
|
fontSize: 16
|
|
2191
2598
|
}
|
|
2192
2599
|
},
|
|
2193
|
-
children: /* @__PURE__ */ (0,
|
|
2194
|
-
/* @__PURE__ */ (0,
|
|
2195
|
-
/* @__PURE__ */ (0,
|
|
2600
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "container-input", children: [
|
|
2601
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { children: [
|
|
2602
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "body-1", children: label }),
|
|
2196
2603
|
" ",
|
|
2197
|
-
required && /* @__PURE__ */ (0,
|
|
2604
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "text-red-500", children: "*" })
|
|
2198
2605
|
] }),
|
|
2199
|
-
/* @__PURE__ */ (0,
|
|
2200
|
-
|
|
2606
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2607
|
+
import_antd13.Select,
|
|
2201
2608
|
{
|
|
2202
2609
|
value,
|
|
2203
2610
|
onChange: handleChange,
|
|
@@ -2207,16 +2614,16 @@ function SelectCustom({
|
|
|
2207
2614
|
onClear
|
|
2208
2615
|
}
|
|
2209
2616
|
),
|
|
2210
|
-
error && /* @__PURE__ */ (0,
|
|
2211
|
-
/* @__PURE__ */ (0,
|
|
2212
|
-
/* @__PURE__ */ (0,
|
|
2213
|
-
/* @__PURE__ */ (0,
|
|
2617
|
+
error && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("p", { className: "text-red-500 caption-1", children: error }),
|
|
2618
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "w-full p-[2px] overflow-y-auto", children: valueList.map((v, index) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex justify-between items-center py-[2px] body-1", children: [
|
|
2619
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex flex-row gap-[8px]", children: [
|
|
2620
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("p", { children: [
|
|
2214
2621
|
index + 1,
|
|
2215
2622
|
"."
|
|
2216
2623
|
] }),
|
|
2217
|
-
/* @__PURE__ */ (0,
|
|
2624
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("p", { children: v })
|
|
2218
2625
|
] }),
|
|
2219
|
-
/* @__PURE__ */ (0,
|
|
2626
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(import_icons_react8.IconTrash, { className: "cursor-pointer", onClick: () => handleDelete(v) })
|
|
2220
2627
|
] }, index)) })
|
|
2221
2628
|
] })
|
|
2222
2629
|
}
|
|
@@ -2224,7 +2631,7 @@ function SelectCustom({
|
|
|
2224
2631
|
}
|
|
2225
2632
|
|
|
2226
2633
|
// src/SortFilter/SortFilter.tsx
|
|
2227
|
-
var
|
|
2634
|
+
var import_antd14 = require("antd");
|
|
2228
2635
|
var import_icons3 = require("@ant-design/icons");
|
|
2229
2636
|
|
|
2230
2637
|
// src/SortFilter/DataMockSortFilter.ts
|
|
@@ -2257,7 +2664,7 @@ var quarters = [
|
|
|
2257
2664
|
// src/SortFilter/SortFilter.tsx
|
|
2258
2665
|
var import_react10 = require("react");
|
|
2259
2666
|
var import_icons_react9 = require("@tabler/icons-react");
|
|
2260
|
-
var
|
|
2667
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2261
2668
|
function SortFilter({
|
|
2262
2669
|
showYear = true,
|
|
2263
2670
|
showQuarter = true,
|
|
@@ -2268,20 +2675,20 @@ function SortFilter({
|
|
|
2268
2675
|
const [yearValue, setYearValue] = (0, import_react10.useState)();
|
|
2269
2676
|
const [monthValue, setMonthValue] = (0, import_react10.useState)();
|
|
2270
2677
|
const [quarterValue, setQuartersValue] = (0, import_react10.useState)();
|
|
2271
|
-
return /* @__PURE__ */ (0,
|
|
2272
|
-
|
|
2678
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2679
|
+
import_antd14.ConfigProvider,
|
|
2273
2680
|
{
|
|
2274
2681
|
theme: {
|
|
2275
2682
|
token: {
|
|
2276
2683
|
fontFamily: "Kanit"
|
|
2277
2684
|
}
|
|
2278
2685
|
},
|
|
2279
|
-
children: /* @__PURE__ */ (0,
|
|
2280
|
-
/* @__PURE__ */ (0,
|
|
2281
|
-
showYear && /* @__PURE__ */ (0,
|
|
2686
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "w-full flex items-center justify-between", children: [
|
|
2687
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "w-full flex gap-[10px]", children: [
|
|
2688
|
+
showYear && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "w-[200px]", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2282
2689
|
SelectField,
|
|
2283
2690
|
{
|
|
2284
|
-
prefix: /* @__PURE__ */ (0,
|
|
2691
|
+
prefix: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_icons3.CalendarOutlined, {}),
|
|
2285
2692
|
onChange: setYearValue,
|
|
2286
2693
|
options: years.map((s) => ({
|
|
2287
2694
|
value: s.value,
|
|
@@ -2291,10 +2698,10 @@ function SortFilter({
|
|
|
2291
2698
|
value: yearValue
|
|
2292
2699
|
}
|
|
2293
2700
|
) }),
|
|
2294
|
-
showMonth && /* @__PURE__ */ (0,
|
|
2701
|
+
showMonth && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "w-[200px]", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2295
2702
|
SelectField,
|
|
2296
2703
|
{
|
|
2297
|
-
prefix: /* @__PURE__ */ (0,
|
|
2704
|
+
prefix: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_icons3.CalendarOutlined, {}),
|
|
2298
2705
|
onChange: setMonthValue,
|
|
2299
2706
|
options: months.map((s) => ({
|
|
2300
2707
|
value: s.value,
|
|
@@ -2304,10 +2711,10 @@ function SortFilter({
|
|
|
2304
2711
|
placeholder: "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E40\u0E14\u0E37\u0E2D\u0E19"
|
|
2305
2712
|
}
|
|
2306
2713
|
) }),
|
|
2307
|
-
showQuarter && /* @__PURE__ */ (0,
|
|
2714
|
+
showQuarter && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "w-[200px]", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2308
2715
|
SelectField,
|
|
2309
2716
|
{
|
|
2310
|
-
prefix: /* @__PURE__ */ (0,
|
|
2717
|
+
prefix: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_icons3.CalendarOutlined, {}),
|
|
2311
2718
|
onChange: setQuartersValue,
|
|
2312
2719
|
options: quarters.map((s) => ({
|
|
2313
2720
|
value: s.value,
|
|
@@ -2318,8 +2725,8 @@ function SortFilter({
|
|
|
2318
2725
|
}
|
|
2319
2726
|
) })
|
|
2320
2727
|
] }),
|
|
2321
|
-
/* @__PURE__ */ (0,
|
|
2322
|
-
/* @__PURE__ */ (0,
|
|
2728
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "flex gap-[10px]", children: [
|
|
2729
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2323
2730
|
import_icons_react9.IconSortDescending,
|
|
2324
2731
|
{
|
|
2325
2732
|
size: 24,
|
|
@@ -2327,7 +2734,7 @@ function SortFilter({
|
|
|
2327
2734
|
onClick: onSortClick
|
|
2328
2735
|
}
|
|
2329
2736
|
),
|
|
2330
|
-
/* @__PURE__ */ (0,
|
|
2737
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2331
2738
|
import_icons_react9.IconFilter,
|
|
2332
2739
|
{
|
|
2333
2740
|
size: 24,
|
|
@@ -2344,7 +2751,7 @@ function SortFilter({
|
|
|
2344
2751
|
// src/Upload/FileUploader/FileUploader.tsx
|
|
2345
2752
|
var import_icons_react10 = require("@tabler/icons-react");
|
|
2346
2753
|
var import_react11 = require("react");
|
|
2347
|
-
var
|
|
2754
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2348
2755
|
function FileUploader({
|
|
2349
2756
|
onUpload,
|
|
2350
2757
|
onError,
|
|
@@ -2415,10 +2822,10 @@ function FileUploader({
|
|
|
2415
2822
|
}
|
|
2416
2823
|
if (inputRef.current) inputRef.current.value = "";
|
|
2417
2824
|
};
|
|
2418
|
-
return /* @__PURE__ */ (0,
|
|
2419
|
-
label && /* @__PURE__ */ (0,
|
|
2420
|
-
/* @__PURE__ */ (0,
|
|
2421
|
-
mode === "upload" ? /* @__PURE__ */ (0,
|
|
2825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "w-full", children: [
|
|
2826
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("p", { className: "body-1", children: label }),
|
|
2827
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { children: [
|
|
2828
|
+
mode === "upload" ? /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2422
2829
|
"button",
|
|
2423
2830
|
{
|
|
2424
2831
|
type: "button",
|
|
@@ -2426,15 +2833,15 @@ function FileUploader({
|
|
|
2426
2833
|
className: `h-[34px] flex justify-center items-center gap-2 w-full rounded-[2px] border border-gray-200 body-1
|
|
2427
2834
|
${disabled ? "cursor-not-allowed text-gray-400 bg-gray-100" : "cursor-pointer hover:text-primary-400 hover:border-primary-200 duration-300"}`,
|
|
2428
2835
|
disabled: disabled ? disabled : uploading,
|
|
2429
|
-
children: uploading ? /* @__PURE__ */ (0,
|
|
2430
|
-
/* @__PURE__ */ (0,
|
|
2836
|
+
children: uploading ? /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(import_jsx_runtime33.Fragment, { children: [
|
|
2837
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Loader, { size: 15 }),
|
|
2431
2838
|
" \u0E01\u0E33\u0E25\u0E31\u0E07\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14"
|
|
2432
|
-
] }) : /* @__PURE__ */ (0,
|
|
2433
|
-
/* @__PURE__ */ (0,
|
|
2839
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(import_jsx_runtime33.Fragment, { children: [
|
|
2840
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_icons_react10.IconUpload, { size: 15, className: "text-gray-400" }),
|
|
2434
2841
|
" \u0E41\u0E19\u0E1A\u0E44\u0E1F\u0E25\u0E4C"
|
|
2435
2842
|
] })
|
|
2436
2843
|
}
|
|
2437
|
-
) : /* @__PURE__ */ (0,
|
|
2844
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2438
2845
|
"div",
|
|
2439
2846
|
{
|
|
2440
2847
|
className: `min-w-[400px] min-h-[120px] flex justify-center items-center border-2 border-dashed rounded-md p-4 transition-colors body-1
|
|
@@ -2448,17 +2855,17 @@ function FileUploader({
|
|
|
2448
2855
|
},
|
|
2449
2856
|
onDragLeave: () => setDragActive(false),
|
|
2450
2857
|
onDrop: handleDrop,
|
|
2451
|
-
children: uploading ? /* @__PURE__ */ (0,
|
|
2452
|
-
/* @__PURE__ */ (0,
|
|
2858
|
+
children: uploading ? /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex justify-center items-center gap-2", children: [
|
|
2859
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Loader, { size: 15 }),
|
|
2453
2860
|
" \u0E01\u0E33\u0E25\u0E31\u0E07\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14"
|
|
2454
|
-
] }) : /* @__PURE__ */ (0,
|
|
2455
|
-
/* @__PURE__ */ (0,
|
|
2456
|
-
/* @__PURE__ */ (0,
|
|
2457
|
-
/* @__PURE__ */ (0,
|
|
2861
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex flex-col items-center gap-2", children: [
|
|
2862
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_icons_react10.IconUpload, { size: 20 }),
|
|
2863
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "body-1", children: "\u0E04\u0E25\u0E34\u0E01\u0E2B\u0E23\u0E37\u0E2D\u0E25\u0E32\u0E01\u0E44\u0E1F\u0E25\u0E4C\u0E21\u0E32\u0E17\u0E35\u0E48\u0E1A\u0E23\u0E34\u0E40\u0E27\u0E13\u0E19\u0E35\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14" }),
|
|
2864
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "text-gray-400 body-3", children: "\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E1A\u0E1A\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E1F\u0E25\u0E4C" })
|
|
2458
2865
|
] })
|
|
2459
2866
|
}
|
|
2460
2867
|
),
|
|
2461
|
-
/* @__PURE__ */ (0,
|
|
2868
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2462
2869
|
"input",
|
|
2463
2870
|
{
|
|
2464
2871
|
type: "file",
|
|
@@ -2471,13 +2878,13 @@ function FileUploader({
|
|
|
2471
2878
|
}
|
|
2472
2879
|
)
|
|
2473
2880
|
] }),
|
|
2474
|
-
description && /* @__PURE__ */ (0,
|
|
2475
|
-
/* @__PURE__ */ (0,
|
|
2476
|
-
/* @__PURE__ */ (0,
|
|
2477
|
-
/* @__PURE__ */ (0,
|
|
2478
|
-
/* @__PURE__ */ (0,
|
|
2881
|
+
description && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("p", { className: "text-gray-400 body-4", children: description }),
|
|
2882
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "mt-[8px]", children: fileList.length !== 0 && fileList.map((file, index) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex items-center gap-2 rounded-[4px] px-[8px] py-[4px] body-1", children: [
|
|
2883
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex items-center gap-2 w-[75%] overflow-hidden", children: [
|
|
2884
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "w-[15px] h-[15px]", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_icons_react10.IconPaperclip, { size: 15 }) }),
|
|
2885
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "truncate", children: file.name })
|
|
2479
2886
|
] }),
|
|
2480
|
-
/* @__PURE__ */ (0,
|
|
2887
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2481
2888
|
import_icons_react10.IconTrash,
|
|
2482
2889
|
{
|
|
2483
2890
|
size: 20,
|
|
@@ -2511,9 +2918,9 @@ function messageLoading(content, duration) {
|
|
|
2511
2918
|
}
|
|
2512
2919
|
|
|
2513
2920
|
// src/Breadcrumb/Breadcrumb.tsx
|
|
2514
|
-
var import_antd14 = require("antd");
|
|
2515
2921
|
var import_antd15 = require("antd");
|
|
2516
|
-
var
|
|
2922
|
+
var import_antd16 = require("antd");
|
|
2923
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2517
2924
|
function Breadcrumbs({
|
|
2518
2925
|
items,
|
|
2519
2926
|
separator,
|
|
@@ -2521,16 +2928,16 @@ function Breadcrumbs({
|
|
|
2521
2928
|
classname,
|
|
2522
2929
|
params
|
|
2523
2930
|
}) {
|
|
2524
|
-
return /* @__PURE__ */ (0,
|
|
2525
|
-
|
|
2931
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2932
|
+
import_antd15.ConfigProvider,
|
|
2526
2933
|
{
|
|
2527
2934
|
theme: {
|
|
2528
2935
|
token: {
|
|
2529
2936
|
fontFamily: "Kanit"
|
|
2530
2937
|
}
|
|
2531
2938
|
},
|
|
2532
|
-
children: /* @__PURE__ */ (0,
|
|
2533
|
-
|
|
2939
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2940
|
+
import_antd16.Breadcrumb,
|
|
2534
2941
|
{
|
|
2535
2942
|
items,
|
|
2536
2943
|
separator,
|
|
@@ -2544,8 +2951,8 @@ function Breadcrumbs({
|
|
|
2544
2951
|
}
|
|
2545
2952
|
|
|
2546
2953
|
// src/HeadingPage/HeadingPage.tsx
|
|
2547
|
-
var
|
|
2548
|
-
var
|
|
2954
|
+
var import_antd17 = require("antd");
|
|
2955
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2549
2956
|
function HeadingPage({ Heading }) {
|
|
2550
2957
|
const today = (/* @__PURE__ */ new Date()).toLocaleDateString("th-TH", {
|
|
2551
2958
|
weekday: "long",
|
|
@@ -2553,17 +2960,17 @@ function HeadingPage({ Heading }) {
|
|
|
2553
2960
|
month: "long",
|
|
2554
2961
|
year: "numeric"
|
|
2555
2962
|
});
|
|
2556
|
-
return /* @__PURE__ */ (0,
|
|
2557
|
-
|
|
2963
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2964
|
+
import_antd17.ConfigProvider,
|
|
2558
2965
|
{
|
|
2559
2966
|
theme: {
|
|
2560
2967
|
token: {
|
|
2561
2968
|
fontFamily: "Kanit"
|
|
2562
2969
|
}
|
|
2563
2970
|
},
|
|
2564
|
-
children: /* @__PURE__ */ (0,
|
|
2565
|
-
/* @__PURE__ */ (0,
|
|
2566
|
-
/* @__PURE__ */ (0,
|
|
2971
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex flex-col gap-[10px] px-[20px] py-[10px]", children: [
|
|
2972
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("p", { className: "headline-5", children: Heading }),
|
|
2973
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("p", { className: "body-1", children: [
|
|
2567
2974
|
" \u0E27\u0E31\u0E19\u0E19\u0E35\u0E49 ",
|
|
2568
2975
|
today
|
|
2569
2976
|
] })
|
|
@@ -2573,9 +2980,9 @@ function HeadingPage({ Heading }) {
|
|
|
2573
2980
|
}
|
|
2574
2981
|
|
|
2575
2982
|
// src/Progress/ProgressBar.tsx
|
|
2576
|
-
var
|
|
2983
|
+
var import_antd18 = require("antd");
|
|
2577
2984
|
var import_react12 = require("react");
|
|
2578
|
-
var
|
|
2985
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2579
2986
|
function ProgressBar({
|
|
2580
2987
|
percent = 0,
|
|
2581
2988
|
size = "default",
|
|
@@ -2606,17 +3013,17 @@ function ProgressBar({
|
|
|
2606
3013
|
observer.observe(inner);
|
|
2607
3014
|
return () => observer.disconnect();
|
|
2608
3015
|
}, []);
|
|
2609
|
-
return /* @__PURE__ */ (0,
|
|
2610
|
-
|
|
3016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
3017
|
+
import_antd18.ConfigProvider,
|
|
2611
3018
|
{
|
|
2612
3019
|
theme: {
|
|
2613
3020
|
token: {
|
|
2614
3021
|
fontFamily: "Kanit"
|
|
2615
3022
|
}
|
|
2616
3023
|
},
|
|
2617
|
-
children: /* @__PURE__ */ (0,
|
|
2618
|
-
/* @__PURE__ */ (0,
|
|
2619
|
-
|
|
3024
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "relative w-full", ref: progressRef, children: [
|
|
3025
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
3026
|
+
import_antd18.Progress,
|
|
2620
3027
|
{
|
|
2621
3028
|
className: "w-full",
|
|
2622
3029
|
percent,
|
|
@@ -2631,7 +3038,7 @@ function ProgressBar({
|
|
|
2631
3038
|
strokeColor
|
|
2632
3039
|
}
|
|
2633
3040
|
),
|
|
2634
|
-
barWidth > 0 && isCheckPoints && type !== "circle" && checkpoints.map((cp) => /* @__PURE__ */ (0,
|
|
3041
|
+
barWidth > 0 && isCheckPoints && type !== "circle" && checkpoints.map((cp) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2635
3042
|
"div",
|
|
2636
3043
|
{
|
|
2637
3044
|
className: "checkpoint absolute top-0",
|
|
@@ -2653,7 +3060,7 @@ function ProgressBar({
|
|
|
2653
3060
|
}
|
|
2654
3061
|
|
|
2655
3062
|
// src/KpiSection/KpiSection.tsx
|
|
2656
|
-
var
|
|
3063
|
+
var import_antd19 = require("antd");
|
|
2657
3064
|
var import_react14 = require("react");
|
|
2658
3065
|
|
|
2659
3066
|
// src/KpiSection/hooks/useGetKpiSection.ts
|
|
@@ -2804,7 +3211,7 @@ function useGetKpiSection() {
|
|
|
2804
3211
|
|
|
2805
3212
|
// src/KpiSection/KpiSection.tsx
|
|
2806
3213
|
var import_icons_react11 = require("@tabler/icons-react");
|
|
2807
|
-
var
|
|
3214
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2808
3215
|
function KpiSection({ type, onChangeKpiList }) {
|
|
2809
3216
|
const {
|
|
2810
3217
|
handleAddKpi,
|
|
@@ -2824,7 +3231,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2824
3231
|
itemErrors,
|
|
2825
3232
|
setItemErrors
|
|
2826
3233
|
} = useGetKpiSection();
|
|
2827
|
-
const [messageApi2, messageContainer] =
|
|
3234
|
+
const [messageApi2, messageContainer] = import_antd19.message.useMessage();
|
|
2828
3235
|
const [hasShownError, setHasShownError] = (0, import_react14.useState)(false);
|
|
2829
3236
|
(0, import_react14.useEffect)(() => {
|
|
2830
3237
|
setMessageApi(messageApi2);
|
|
@@ -2834,8 +3241,8 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2834
3241
|
onChangeKpiList(kpiList);
|
|
2835
3242
|
}
|
|
2836
3243
|
}, [kpiList]);
|
|
2837
|
-
return /* @__PURE__ */ (0,
|
|
2838
|
-
|
|
3244
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3245
|
+
import_antd19.ConfigProvider,
|
|
2839
3246
|
{
|
|
2840
3247
|
theme: {
|
|
2841
3248
|
token: {
|
|
@@ -2843,11 +3250,11 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2843
3250
|
fontSize: 16
|
|
2844
3251
|
}
|
|
2845
3252
|
},
|
|
2846
|
-
children: /* @__PURE__ */ (0,
|
|
3253
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "container-input", children: [
|
|
2847
3254
|
messageContainer,
|
|
2848
|
-
type === "number" && /* @__PURE__ */ (0,
|
|
2849
|
-
/* @__PURE__ */ (0,
|
|
2850
|
-
/* @__PURE__ */ (0,
|
|
3255
|
+
type === "number" && /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "space-y-4", children: [
|
|
3256
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "grid grid-cols-[1fr_200px_200px_50px] w-full gap-[24px] items-start", children: [
|
|
3257
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2851
3258
|
InputField,
|
|
2852
3259
|
{
|
|
2853
3260
|
value: nameKpi,
|
|
@@ -2859,7 +3266,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2859
3266
|
error: errors.nameKpi
|
|
2860
3267
|
}
|
|
2861
3268
|
),
|
|
2862
|
-
/* @__PURE__ */ (0,
|
|
3269
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2863
3270
|
InputField,
|
|
2864
3271
|
{
|
|
2865
3272
|
value: kpiValue,
|
|
@@ -2883,7 +3290,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2883
3290
|
error: errors.kpiValue
|
|
2884
3291
|
}
|
|
2885
3292
|
),
|
|
2886
|
-
/* @__PURE__ */ (0,
|
|
3293
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2887
3294
|
InputField,
|
|
2888
3295
|
{
|
|
2889
3296
|
value: unitValue,
|
|
@@ -2895,7 +3302,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2895
3302
|
error: errors.unitValue
|
|
2896
3303
|
}
|
|
2897
3304
|
),
|
|
2898
|
-
/* @__PURE__ */ (0,
|
|
3305
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: `flex justify-end mt-[28px]`, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2899
3306
|
import_icons_react11.IconCirclePlus,
|
|
2900
3307
|
{
|
|
2901
3308
|
className: "w-[40px] h-[40px] cursor-pointer hover:scale-110 transition",
|
|
@@ -2904,17 +3311,17 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2904
3311
|
}
|
|
2905
3312
|
) })
|
|
2906
3313
|
] }),
|
|
2907
|
-
/* @__PURE__ */ (0,
|
|
3314
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { children: kpiList.map((kpi, index) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
2908
3315
|
"div",
|
|
2909
3316
|
{
|
|
2910
3317
|
className: "grid grid-cols-[30px_1fr_100px_120px_80px] items-start py-2 body-1 gap-[8px]",
|
|
2911
3318
|
children: [
|
|
2912
|
-
/* @__PURE__ */ (0,
|
|
3319
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("p", { className: `body-1 ${kpi.isEditing ? "mt-[12px]" : ""}`, children: [
|
|
2913
3320
|
index + 1,
|
|
2914
3321
|
"."
|
|
2915
3322
|
] }),
|
|
2916
|
-
kpi.isEditing ? /* @__PURE__ */ (0,
|
|
2917
|
-
/* @__PURE__ */ (0,
|
|
3323
|
+
kpi.isEditing ? /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_jsx_runtime37.Fragment, { children: [
|
|
3324
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2918
3325
|
InputField,
|
|
2919
3326
|
{
|
|
2920
3327
|
value: kpi.name,
|
|
@@ -2924,7 +3331,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2924
3331
|
error: itemErrors[kpi.id]?.name
|
|
2925
3332
|
}
|
|
2926
3333
|
),
|
|
2927
|
-
/* @__PURE__ */ (0,
|
|
3334
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2928
3335
|
InputField,
|
|
2929
3336
|
{
|
|
2930
3337
|
value: kpi.value?.toString(),
|
|
@@ -2949,7 +3356,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2949
3356
|
error: itemErrors[kpi.id]?.value
|
|
2950
3357
|
}
|
|
2951
3358
|
),
|
|
2952
|
-
/* @__PURE__ */ (0,
|
|
3359
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2953
3360
|
InputField,
|
|
2954
3361
|
{
|
|
2955
3362
|
value: kpi.unit,
|
|
@@ -2959,29 +3366,29 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2959
3366
|
error: itemErrors[kpi.id]?.unit
|
|
2960
3367
|
}
|
|
2961
3368
|
),
|
|
2962
|
-
/* @__PURE__ */ (0,
|
|
3369
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
2963
3370
|
"div",
|
|
2964
3371
|
{
|
|
2965
3372
|
className: `flex gap-2 justify-end self-center ${!!itemErrors[kpi.id]?.value || !!itemErrors[kpi.id]?.unit || !!itemErrors[kpi.id]?.name ? "mt-[-12px]" : ""}`,
|
|
2966
3373
|
children: [
|
|
2967
|
-
/* @__PURE__ */ (0,
|
|
3374
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2968
3375
|
import_icons_react11.IconCheck,
|
|
2969
3376
|
{
|
|
2970
3377
|
className: "w-[30px] h-[30px] cursor-pointer",
|
|
2971
3378
|
onClick: () => handleSave(kpi.id, type)
|
|
2972
3379
|
}
|
|
2973
3380
|
),
|
|
2974
|
-
/* @__PURE__ */ (0,
|
|
3381
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconX, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleCancel(kpi.id) })
|
|
2975
3382
|
]
|
|
2976
3383
|
}
|
|
2977
3384
|
)
|
|
2978
|
-
] }) : /* @__PURE__ */ (0,
|
|
2979
|
-
/* @__PURE__ */ (0,
|
|
2980
|
-
/* @__PURE__ */ (0,
|
|
2981
|
-
/* @__PURE__ */ (0,
|
|
2982
|
-
/* @__PURE__ */ (0,
|
|
2983
|
-
/* @__PURE__ */ (0,
|
|
2984
|
-
/* @__PURE__ */ (0,
|
|
3385
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_jsx_runtime37.Fragment, { children: [
|
|
3386
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: "body-1", children: kpi.name }),
|
|
3387
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: "body-1", children: kpi.value }),
|
|
3388
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: "body-1", children: kpi.unit }),
|
|
3389
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "flex gap-3 justify-end", children: [
|
|
3390
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconPencil, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleEdit(kpi.id) }),
|
|
3391
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconTrash, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleDelete(kpi.id) })
|
|
2985
3392
|
] })
|
|
2986
3393
|
] })
|
|
2987
3394
|
]
|
|
@@ -2989,9 +3396,9 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
2989
3396
|
kpi.id
|
|
2990
3397
|
)) })
|
|
2991
3398
|
] }),
|
|
2992
|
-
type === "text" && /* @__PURE__ */ (0,
|
|
2993
|
-
/* @__PURE__ */ (0,
|
|
2994
|
-
/* @__PURE__ */ (0,
|
|
3399
|
+
type === "text" && /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "space-y-4", children: [
|
|
3400
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "grid grid-cols-[1fr_50px] w-full gap-[24px] items-start", children: [
|
|
3401
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2995
3402
|
InputField,
|
|
2996
3403
|
{
|
|
2997
3404
|
value: nameKpi,
|
|
@@ -3003,7 +3410,7 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
3003
3410
|
error: errors.nameKpi
|
|
3004
3411
|
}
|
|
3005
3412
|
),
|
|
3006
|
-
/* @__PURE__ */ (0,
|
|
3413
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: `flex justify-end mt-[28px]`, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3007
3414
|
import_icons_react11.IconCirclePlus,
|
|
3008
3415
|
{
|
|
3009
3416
|
className: "w-[40px] h-[40px] cursor-pointer hover:scale-110 transition",
|
|
@@ -3012,13 +3419,13 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
3012
3419
|
}
|
|
3013
3420
|
) })
|
|
3014
3421
|
] }),
|
|
3015
|
-
/* @__PURE__ */ (0,
|
|
3016
|
-
/* @__PURE__ */ (0,
|
|
3422
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { children: kpiList.map((kpi, index) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "grid grid-cols-[30px_1fr_80px] items-start py-2 body-1 gap-[8px]", children: [
|
|
3423
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("p", { className: `body-1 ${kpi.isEditing ? "mt-[12px]" : ""}`, children: [
|
|
3017
3424
|
index + 1,
|
|
3018
3425
|
"."
|
|
3019
3426
|
] }),
|
|
3020
|
-
kpi.isEditing ? /* @__PURE__ */ (0,
|
|
3021
|
-
/* @__PURE__ */ (0,
|
|
3427
|
+
kpi.isEditing ? /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_jsx_runtime37.Fragment, { children: [
|
|
3428
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3022
3429
|
InputField,
|
|
3023
3430
|
{
|
|
3024
3431
|
value: kpi.name,
|
|
@@ -3028,27 +3435,27 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
3028
3435
|
error: itemErrors[kpi.id]?.name
|
|
3029
3436
|
}
|
|
3030
3437
|
),
|
|
3031
|
-
/* @__PURE__ */ (0,
|
|
3438
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
3032
3439
|
"div",
|
|
3033
3440
|
{
|
|
3034
3441
|
className: `flex gap-2 justify-end self-center ${!!itemErrors[kpi.id]?.name ? "mt-[-12px]" : ""}`,
|
|
3035
3442
|
children: [
|
|
3036
|
-
/* @__PURE__ */ (0,
|
|
3443
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3037
3444
|
import_icons_react11.IconCheck,
|
|
3038
3445
|
{
|
|
3039
3446
|
className: "w-[30px] h-[30px] cursor-pointer",
|
|
3040
3447
|
onClick: () => handleSave(kpi.id, type)
|
|
3041
3448
|
}
|
|
3042
3449
|
),
|
|
3043
|
-
/* @__PURE__ */ (0,
|
|
3450
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconX, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleCancel(kpi.id) })
|
|
3044
3451
|
]
|
|
3045
3452
|
}
|
|
3046
3453
|
)
|
|
3047
|
-
] }) : /* @__PURE__ */ (0,
|
|
3048
|
-
/* @__PURE__ */ (0,
|
|
3049
|
-
/* @__PURE__ */ (0,
|
|
3050
|
-
/* @__PURE__ */ (0,
|
|
3051
|
-
/* @__PURE__ */ (0,
|
|
3454
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_jsx_runtime37.Fragment, { children: [
|
|
3455
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: "body-1", children: kpi.name }),
|
|
3456
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "flex gap-3 justify-end", children: [
|
|
3457
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconPencil, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleEdit(kpi.id) }),
|
|
3458
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_icons_react11.IconTrash, { className: "w-[30px] h-[30px] cursor-pointer", onClick: () => handleDelete(kpi.id) })
|
|
3052
3459
|
] })
|
|
3053
3460
|
] })
|
|
3054
3461
|
] }, kpi.id)) })
|
|
@@ -3059,17 +3466,17 @@ function KpiSection({ type, onChangeKpiList }) {
|
|
|
3059
3466
|
}
|
|
3060
3467
|
|
|
3061
3468
|
// src/Modal/Modal/Modal.tsx
|
|
3062
|
-
var
|
|
3063
|
-
var
|
|
3469
|
+
var import_antd20 = require("antd");
|
|
3470
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
3064
3471
|
function AntDModal({ children, isOpen, width, onCancel }) {
|
|
3065
|
-
return /* @__PURE__ */ (0,
|
|
3472
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_antd20.Modal, { open: isOpen, onCancel, width, centered: true, footer: null, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children }) }) });
|
|
3066
3473
|
}
|
|
3067
3474
|
|
|
3068
3475
|
// src/Indicator/Indicator/Indicator.tsx
|
|
3069
3476
|
var import_icons_react12 = require("@tabler/icons-react");
|
|
3070
3477
|
var import_react15 = require("react");
|
|
3071
|
-
var
|
|
3072
|
-
var
|
|
3478
|
+
var import_antd21 = require("antd");
|
|
3479
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
3073
3480
|
function Indicator({
|
|
3074
3481
|
option = [
|
|
3075
3482
|
{ value: "TEXT", label: "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21" },
|
|
@@ -3151,14 +3558,14 @@ function Indicator({
|
|
|
3151
3558
|
}));
|
|
3152
3559
|
console.log(cacheEditData);
|
|
3153
3560
|
};
|
|
3154
|
-
return /* @__PURE__ */ (0,
|
|
3155
|
-
/* @__PURE__ */ (0,
|
|
3561
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "w-full", children: [
|
|
3562
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
3156
3563
|
"div",
|
|
3157
3564
|
{
|
|
3158
3565
|
className: `space-x-2 grid ${valueSwitch === "TEXT" ? `grid-cols-[140px_1fr_50px]` : `grid-cols-[140px_1fr_200px_200px_50px]`} items-start`,
|
|
3159
3566
|
children: [
|
|
3160
|
-
/* @__PURE__ */ (0,
|
|
3161
|
-
/* @__PURE__ */ (0,
|
|
3567
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(SwitchSelect, { option, onClick: handleClick, value: valueSwitch, label: "\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17", required: true }),
|
|
3568
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3162
3569
|
InputField,
|
|
3163
3570
|
{
|
|
3164
3571
|
label: `\u0E0A\u0E37\u0E48\u0E2D\u0E15\u0E31\u0E27\u0E0A\u0E35\u0E49\u0E27\u0E31\u0E14${type === "OUTPUT" ? "\u0E1C\u0E25\u0E1C\u0E25\u0E34\u0E15" : "\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C"}`,
|
|
@@ -3169,8 +3576,8 @@ function Indicator({
|
|
|
3169
3576
|
required: true
|
|
3170
3577
|
}
|
|
3171
3578
|
),
|
|
3172
|
-
valueSwitch === "NUMBER" && /* @__PURE__ */ (0,
|
|
3173
|
-
/* @__PURE__ */ (0,
|
|
3579
|
+
valueSwitch === "NUMBER" && /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_jsx_runtime39.Fragment, { children: [
|
|
3580
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3174
3581
|
InputFieldNumber,
|
|
3175
3582
|
{
|
|
3176
3583
|
label: `\u0E04\u0E48\u0E32\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22${type === "OUTPUT" ? "\u0E1C\u0E25\u0E1C\u0E25\u0E34\u0E15" : "\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C"}`,
|
|
@@ -3181,7 +3588,7 @@ function Indicator({
|
|
|
3181
3588
|
required: true
|
|
3182
3589
|
}
|
|
3183
3590
|
),
|
|
3184
|
-
/* @__PURE__ */ (0,
|
|
3591
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3185
3592
|
InputField,
|
|
3186
3593
|
{
|
|
3187
3594
|
label: `\u0E2B\u0E19\u0E48\u0E27\u0E22`,
|
|
@@ -3193,18 +3600,18 @@ function Indicator({
|
|
|
3193
3600
|
}
|
|
3194
3601
|
)
|
|
3195
3602
|
] }),
|
|
3196
|
-
/* @__PURE__ */ (0,
|
|
3603
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_icons_react12.IconCirclePlus, { onClick: handleAddIndicator, className: "mt-7 cursor-pointer", size: 32 })
|
|
3197
3604
|
]
|
|
3198
3605
|
}
|
|
3199
3606
|
),
|
|
3200
|
-
/* @__PURE__ */ (0,
|
|
3607
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_jsx_runtime39.Fragment, { children: arrayData.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
3201
3608
|
"div",
|
|
3202
3609
|
{
|
|
3203
3610
|
className: `space-y-4 grid ${item.inputType === "TEXT" ? `grid-cols-[140px_1fr_50px_50px]` : `grid-cols-[140px_1fr_200px_150px_50px_50px]`} items-start`,
|
|
3204
3611
|
children: [
|
|
3205
|
-
/* @__PURE__ */ (0,
|
|
3206
|
-
index === editIndex ? /* @__PURE__ */ (0,
|
|
3207
|
-
|
|
3612
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2", children: item.inputType === "TEXT" ? "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21" : "\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02" }),
|
|
3613
|
+
index === editIndex ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3614
|
+
import_antd21.Input,
|
|
3208
3615
|
{
|
|
3209
3616
|
className: "body-1 mt-2",
|
|
3210
3617
|
variant: "underlined",
|
|
@@ -3212,10 +3619,10 @@ function Indicator({
|
|
|
3212
3619
|
name: "textValue",
|
|
3213
3620
|
onChange: (e) => handleChangeEditCashData(e)
|
|
3214
3621
|
}
|
|
3215
|
-
) : /* @__PURE__ */ (0,
|
|
3216
|
-
item.inputType === "NUMBER" && /* @__PURE__ */ (0,
|
|
3217
|
-
index === editIndex ? /* @__PURE__ */ (0,
|
|
3218
|
-
|
|
3622
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2", children: item.textValue }),
|
|
3623
|
+
item.inputType === "NUMBER" && /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_jsx_runtime39.Fragment, { children: [
|
|
3624
|
+
index === editIndex ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3625
|
+
import_antd21.Input,
|
|
3219
3626
|
{
|
|
3220
3627
|
className: "body-1 mt-2",
|
|
3221
3628
|
variant: "underlined",
|
|
@@ -3223,9 +3630,9 @@ function Indicator({
|
|
|
3223
3630
|
name: "numberValue",
|
|
3224
3631
|
onChange: (e) => handleChangeEditCashData(e)
|
|
3225
3632
|
}
|
|
3226
|
-
) : /* @__PURE__ */ (0,
|
|
3227
|
-
index === editIndex ? /* @__PURE__ */ (0,
|
|
3228
|
-
|
|
3633
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2", children: item.numberValue }),
|
|
3634
|
+
index === editIndex ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3635
|
+
import_antd21.Input,
|
|
3229
3636
|
{
|
|
3230
3637
|
className: "body-1 mt-2",
|
|
3231
3638
|
variant: "underlined",
|
|
@@ -3233,19 +3640,19 @@ function Indicator({
|
|
|
3233
3640
|
name: "unit",
|
|
3234
3641
|
onChange: (e) => handleChangeEditCashData(e)
|
|
3235
3642
|
}
|
|
3236
|
-
) : /* @__PURE__ */ (0,
|
|
3643
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2", children: item.unit })
|
|
3237
3644
|
] }),
|
|
3238
|
-
/* @__PURE__ */ (0,
|
|
3239
|
-
/* @__PURE__ */ (0,
|
|
3645
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2 flex", children: editIndex !== null ? editIndex === index ? /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex", children: [
|
|
3646
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
3240
3647
|
import_icons_react12.IconCheck,
|
|
3241
3648
|
{
|
|
3242
3649
|
className: "cursor-pointer text-green-600",
|
|
3243
3650
|
onClick: () => handleConfirmEditIndicator(index)
|
|
3244
3651
|
}
|
|
3245
3652
|
),
|
|
3246
|
-
/* @__PURE__ */ (0,
|
|
3247
|
-
] }) : void 0 : /* @__PURE__ */ (0,
|
|
3248
|
-
/* @__PURE__ */ (0,
|
|
3653
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_icons_react12.IconX, { className: "cursor-pointer text-red-600", onClick: handleCancelEditIndicator })
|
|
3654
|
+
] }) : void 0 : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_icons_react12.IconPencil, { className: "cursor-pointer", onClick: () => handleEditIndicator(index) }) }),
|
|
3655
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-1 mt-2 cursor-pointer", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_icons_react12.IconTrash, { onClick: () => handleDeleteIndicator(index) }) })
|
|
3249
3656
|
]
|
|
3250
3657
|
}
|
|
3251
3658
|
)) })
|
|
@@ -3255,7 +3662,7 @@ function Indicator({
|
|
|
3255
3662
|
// src/FilterPopUp/FilterPopUp.tsx
|
|
3256
3663
|
var import_icons_react13 = require("@tabler/icons-react");
|
|
3257
3664
|
var import_react16 = require("react");
|
|
3258
|
-
var
|
|
3665
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
3259
3666
|
var FilterPopUp = (filter) => {
|
|
3260
3667
|
const [isAction, setIsAction] = (0, import_react16.useState)(true);
|
|
3261
3668
|
const [filterArray, setFilterArray] = (0, import_react16.useState)([""]);
|
|
@@ -3265,20 +3672,20 @@ var FilterPopUp = (filter) => {
|
|
|
3265
3672
|
const handleSubmitFilter = () => {
|
|
3266
3673
|
filter.handleSearch(filterArray);
|
|
3267
3674
|
};
|
|
3268
|
-
return /* @__PURE__ */ (0,
|
|
3269
|
-
/* @__PURE__ */ (0,
|
|
3270
|
-
/* @__PURE__ */ (0,
|
|
3675
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "relative", children: [
|
|
3676
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("button", { className: "flex px-2 py-1 rounded-lg border-1", onClick: () => setIsAction(!isAction), children: [
|
|
3677
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_icons_react13.IconFilter, {}),
|
|
3271
3678
|
"filter"
|
|
3272
3679
|
] }),
|
|
3273
|
-
isAction ? /* @__PURE__ */ (0,
|
|
3274
|
-
/* @__PURE__ */ (0,
|
|
3275
|
-
/* @__PURE__ */ (0,
|
|
3276
|
-
/* @__PURE__ */ (0,
|
|
3277
|
-
/* @__PURE__ */ (0,
|
|
3680
|
+
isAction ? /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "absolute bg-white p-5 rounded-lg shadow-2xl w-[600px]", children: [
|
|
3681
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex justify-end", children: [
|
|
3682
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex justify-end text-nowrap gap-2", children: [
|
|
3683
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(GhostButton, { title: "\u0E43\u0E0A\u0E49\u0E1F\u0E34\u0E25\u0E40\u0E15\u0E2D\u0E23\u0E4C", onClick: handleSubmitFilter, iconLeft: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_icons_react13.IconCheck, {}) }),
|
|
3684
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(GhostButton, { title: "\u0E25\u0E49\u0E32\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14", onClick: handleClearFilter, iconLeft: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_icons_react13.IconTrash, {}) })
|
|
3278
3685
|
] }),
|
|
3279
3686
|
""
|
|
3280
3687
|
] }),
|
|
3281
|
-
/* @__PURE__ */ (0,
|
|
3688
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
3282
3689
|
SelectCustom,
|
|
3283
3690
|
{
|
|
3284
3691
|
options: filter.selectionFilter,
|
|
@@ -3300,6 +3707,7 @@ var FilterPopUp = (filter) => {
|
|
|
3300
3707
|
ColorPalettePickerBasic,
|
|
3301
3708
|
ColorPickerBasic,
|
|
3302
3709
|
DataTable,
|
|
3710
|
+
DatePickerBasic,
|
|
3303
3711
|
FileUploader,
|
|
3304
3712
|
FilterPopUp,
|
|
3305
3713
|
GhostButton,
|