@cloudtower/parrot 481.0.2 → 490.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +98 -38
- package/dist/esm/stats1.html +1 -1
- package/dist/locales/en-US/index.d.ts +23 -7
- package/dist/locales/index.d.ts +37 -7
- package/dist/locales/zh-CN/index.d.ts +14 -0
- package/dist/umd/index.js +98 -38
- package/dist/umd/stats1.html +1 -1
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -46,8 +46,8 @@ var thursday$1 = "Thursday";
|
|
|
46
46
|
var friday$1 = "Friday";
|
|
47
47
|
var saturday$1 = "Saturday";
|
|
48
48
|
var sunday$1 = "Sunday";
|
|
49
|
-
var month$
|
|
50
|
-
var year$
|
|
49
|
+
var month$3 = "Month";
|
|
50
|
+
var year$3 = "Year";
|
|
51
51
|
var day_count$1 = "{count} day";
|
|
52
52
|
var day_count_plural = "{count} days";
|
|
53
53
|
var hour_count$1 = "{count} hour";
|
|
@@ -58,6 +58,9 @@ var month_measure_count$1 = "{count} month";
|
|
|
58
58
|
var month_measure_count_plural = "{count} months";
|
|
59
59
|
var show_unpassed$1 = "Show Failed only";
|
|
60
60
|
var copy$1 = "Copy";
|
|
61
|
+
var click_to_copy$1 = "Copy";
|
|
62
|
+
var copy_done$1 = "Copy successfully";
|
|
63
|
+
var has_copied_to_clipboard$1 = "Copied to clipboard";
|
|
61
64
|
var download$1 = "Download";
|
|
62
65
|
var copy_kubeconfig_success$1 = "Kubeconfig copied.";
|
|
63
66
|
var download_kubeconfig$1 = "Download Kubeconfig";
|
|
@@ -65,6 +68,7 @@ var download_kubeconfig_tip$1 = "You may use the following Kubeconfig file to ac
|
|
|
65
68
|
var obtain_data_error$1 = "Data retrieval error";
|
|
66
69
|
var colon_with_space$1 = ": ";
|
|
67
70
|
var semicolon_with_space$1 = "; ";
|
|
71
|
+
var remove$3 = "Remove";
|
|
68
72
|
var common$1 = {
|
|
69
73
|
_action_: _action_$1,
|
|
70
74
|
action: action$1,
|
|
@@ -112,8 +116,8 @@ var common$1 = {
|
|
|
112
116
|
friday: friday$1,
|
|
113
117
|
saturday: saturday$1,
|
|
114
118
|
sunday: sunday$1,
|
|
115
|
-
month: month$
|
|
116
|
-
year: year$
|
|
119
|
+
month: month$3,
|
|
120
|
+
year: year$3,
|
|
117
121
|
day_count: day_count$1,
|
|
118
122
|
day_count_plural: day_count_plural,
|
|
119
123
|
hour_count: hour_count$1,
|
|
@@ -124,13 +128,17 @@ var common$1 = {
|
|
|
124
128
|
month_measure_count_plural: month_measure_count_plural,
|
|
125
129
|
show_unpassed: show_unpassed$1,
|
|
126
130
|
copy: copy$1,
|
|
131
|
+
click_to_copy: click_to_copy$1,
|
|
132
|
+
copy_done: copy_done$1,
|
|
133
|
+
has_copied_to_clipboard: has_copied_to_clipboard$1,
|
|
127
134
|
download: download$1,
|
|
128
135
|
copy_kubeconfig_success: copy_kubeconfig_success$1,
|
|
129
136
|
download_kubeconfig: download_kubeconfig$1,
|
|
130
137
|
download_kubeconfig_tip: download_kubeconfig_tip$1,
|
|
131
138
|
obtain_data_error: obtain_data_error$1,
|
|
132
139
|
colon_with_space: colon_with_space$1,
|
|
133
|
-
semicolon_with_space: semicolon_with_space$1
|
|
140
|
+
semicolon_with_space: semicolon_with_space$1,
|
|
141
|
+
remove: remove$3
|
|
134
142
|
};
|
|
135
143
|
|
|
136
144
|
var contains$2 = "Contains";
|
|
@@ -153,7 +161,7 @@ var coordinated_universal_time$1 = "Coordinated Universal Time";
|
|
|
153
161
|
var Architecture_AARCH64$1 = "AArch64";
|
|
154
162
|
var Architecture_X86_64$1 = "x86_64";
|
|
155
163
|
var maximum_row_count_desc$1 = "At most {count} items.";
|
|
156
|
-
var remove$
|
|
164
|
+
var remove$2 = "Remove";
|
|
157
165
|
var add$1 = "Add";
|
|
158
166
|
var prefix$1 = "Prefix";
|
|
159
167
|
var suffix$1 = "Suffix";
|
|
@@ -218,6 +226,11 @@ var db_migrated$1 = "<0>{{text}}</0> migrated to <1>{{version}}</1>";
|
|
|
218
226
|
var empty$4 = "No history records";
|
|
219
227
|
var view_detail$1 = "View Details";
|
|
220
228
|
var initializing_failed$1 = "Failed to load the page. Please try again.";
|
|
229
|
+
var select_file$1 = "Select File";
|
|
230
|
+
var reselect_file$1 = "Re-select";
|
|
231
|
+
var exceed_max_count$1 = "Maximum {count} file allowed";
|
|
232
|
+
var exceed_max_count_plural = "Maximum {count} files allowed";
|
|
233
|
+
var upload_file_desc$1 = "Click or drag file to this area to upload";
|
|
221
234
|
var components$1 = {
|
|
222
235
|
contains: contains$2,
|
|
223
236
|
custom_column: custom_column$1,
|
|
@@ -240,7 +253,7 @@ var components$1 = {
|
|
|
240
253
|
Architecture_AARCH64: Architecture_AARCH64$1,
|
|
241
254
|
Architecture_X86_64: Architecture_X86_64$1,
|
|
242
255
|
maximum_row_count_desc: maximum_row_count_desc$1,
|
|
243
|
-
remove: remove$
|
|
256
|
+
remove: remove$2,
|
|
244
257
|
add: add$1,
|
|
245
258
|
prefix: prefix$1,
|
|
246
259
|
suffix: suffix$1,
|
|
@@ -311,7 +324,12 @@ var components$1 = {
|
|
|
311
324
|
db_migrated: db_migrated$1,
|
|
312
325
|
empty: empty$4,
|
|
313
326
|
view_detail: view_detail$1,
|
|
314
|
-
initializing_failed: initializing_failed$1
|
|
327
|
+
initializing_failed: initializing_failed$1,
|
|
328
|
+
select_file: select_file$1,
|
|
329
|
+
reselect_file: reselect_file$1,
|
|
330
|
+
exceed_max_count: exceed_max_count$1,
|
|
331
|
+
exceed_max_count_plural: exceed_max_count_plural,
|
|
332
|
+
upload_file_desc: upload_file_desc$1
|
|
315
333
|
};
|
|
316
334
|
|
|
317
335
|
var current$1 = "Current value";
|
|
@@ -323,41 +341,55 @@ var metric$1 = {
|
|
|
323
341
|
max: max$1
|
|
324
342
|
};
|
|
325
343
|
|
|
326
|
-
var
|
|
327
|
-
var
|
|
328
|
-
var
|
|
329
|
-
var
|
|
344
|
+
var year_abbreviation$1 = "<0>{count}</0> <1>y</1>";
|
|
345
|
+
var month_abbreviation$1 = "<0>{count}</0> <1>m</1>";
|
|
346
|
+
var week_abbreviation$2 = "<0>{count}</0> <1>w</1>";
|
|
347
|
+
var day_abbreviation$2 = "<0>{count}</0> <1>d</1>";
|
|
330
348
|
var hour_abbreviation$2 = "<0>{count}</0> <1>h</1>";
|
|
331
349
|
var minute_abbreviation$2 = "<0>{count}</0> <1>min</1>";
|
|
332
|
-
var second_abbreviation$2 = "<0>{count}</0> <1>
|
|
333
|
-
var
|
|
334
|
-
var
|
|
335
|
-
var
|
|
336
|
-
var
|
|
337
|
-
var
|
|
338
|
-
var week$2 = "<0>{count}</0> <1>
|
|
339
|
-
var
|
|
340
|
-
var
|
|
341
|
-
var
|
|
342
|
-
var
|
|
350
|
+
var second_abbreviation$2 = "<0>{count}</0> <1>s</1>";
|
|
351
|
+
var millisecond_abbreviation$1 = "<0>{count}</0> <1>ms</1>";
|
|
352
|
+
var year$2 = "<0>{count}</0> <1>year</1>";
|
|
353
|
+
var year_plural = "<0>{count}</0> <1>years</1>";
|
|
354
|
+
var month$2 = "<0>{count}</0> <1>month</1>";
|
|
355
|
+
var month_plural = "<0>{count}</0> <1>months</1>";
|
|
356
|
+
var week$2 = "<0>{count}</0> <1>week</1>";
|
|
357
|
+
var week_plural = "<0>{count}</0> <1>weeks</1>";
|
|
358
|
+
var day$2 = "<0>{count}</0> <1>day</1>";
|
|
359
|
+
var day_plural = "<0>{count}</0> <1>days</1>";
|
|
360
|
+
var hour$2 = "<0>{count}</0> <1>hour</1>";
|
|
361
|
+
var hour_plural = "<0>{count}</0> <1>hours</1>";
|
|
362
|
+
var minute$2 = "<0>{count}</0> <1>minute</1>";
|
|
363
|
+
var minute_plural = "<0>{count}</0> <1>minutes</1>";
|
|
364
|
+
var second$2 = "<0>{count}</0> <1>second</1>";
|
|
365
|
+
var second_plural = "<0>{count}</0> <1>seconds</1>";
|
|
366
|
+
var millisecond$1 = "<0>{count}</0> <1>millisecond</1>";
|
|
367
|
+
var millisecond_plural = "<0>{count}</0> <1>milliseconds</1>";
|
|
343
368
|
var unit$1 = {
|
|
369
|
+
year_abbreviation: year_abbreviation$1,
|
|
370
|
+
month_abbreviation: month_abbreviation$1,
|
|
344
371
|
week_abbreviation: week_abbreviation$2,
|
|
345
372
|
day_abbreviation: day_abbreviation$2,
|
|
346
|
-
week_abbreviation_plural: week_abbreviation_plural,
|
|
347
|
-
day_abbreviation_plural: day_abbreviation_plural,
|
|
348
373
|
hour_abbreviation: hour_abbreviation$2,
|
|
349
374
|
minute_abbreviation: minute_abbreviation$2,
|
|
350
375
|
second_abbreviation: second_abbreviation$2,
|
|
376
|
+
millisecond_abbreviation: millisecond_abbreviation$1,
|
|
377
|
+
year: year$2,
|
|
378
|
+
year_plural: year_plural,
|
|
379
|
+
month: month$2,
|
|
380
|
+
month_plural: month_plural,
|
|
381
|
+
week: week$2,
|
|
351
382
|
week_plural: week_plural,
|
|
383
|
+
day: day$2,
|
|
352
384
|
day_plural: day_plural,
|
|
385
|
+
hour: hour$2,
|
|
353
386
|
hour_plural: hour_plural,
|
|
387
|
+
minute: minute$2,
|
|
354
388
|
minute_plural: minute_plural,
|
|
389
|
+
second: second$2,
|
|
355
390
|
second_plural: second_plural,
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
hour: hour$2,
|
|
359
|
-
minute: minute$2,
|
|
360
|
-
second: second$2
|
|
391
|
+
millisecond: millisecond$1,
|
|
392
|
+
millisecond_plural: millisecond_plural
|
|
361
393
|
};
|
|
362
394
|
|
|
363
395
|
const locale$1 = {
|
|
@@ -412,14 +444,17 @@ var thursday = "周四";
|
|
|
412
444
|
var friday = "周五";
|
|
413
445
|
var saturday = "周六";
|
|
414
446
|
var sunday = "周日";
|
|
415
|
-
var month = "月";
|
|
416
|
-
var year = "年";
|
|
447
|
+
var month$1 = "月";
|
|
448
|
+
var year$1 = "年";
|
|
417
449
|
var day_count = "{count} 天";
|
|
418
450
|
var hour_count = "{count} 小时";
|
|
419
451
|
var minute_count = "{count} 分钟";
|
|
420
452
|
var month_measure_count = "{count} 个月";
|
|
421
453
|
var show_unpassed = "只看未满足";
|
|
422
454
|
var copy = "复制";
|
|
455
|
+
var click_to_copy = "点击复制";
|
|
456
|
+
var copy_done = "复制成功";
|
|
457
|
+
var has_copied_to_clipboard = "已复制到剪贴板";
|
|
423
458
|
var download = "下载";
|
|
424
459
|
var copy_kubeconfig_success = "Kubeconfig 复制成功。";
|
|
425
460
|
var download_kubeconfig = "下载 Kubeconfig";
|
|
@@ -427,6 +462,7 @@ var download_kubeconfig_tip = "通过使用 Kubeconfig 文件配置当前集群
|
|
|
427
462
|
var obtain_data_error = "获取数据时遇到问题";
|
|
428
463
|
var colon_with_space = ":";
|
|
429
464
|
var semicolon_with_space = ";";
|
|
465
|
+
var remove$1 = "移除";
|
|
430
466
|
var common = {
|
|
431
467
|
_action_: _action_,
|
|
432
468
|
action: action,
|
|
@@ -474,21 +510,25 @@ var common = {
|
|
|
474
510
|
friday: friday,
|
|
475
511
|
saturday: saturday,
|
|
476
512
|
sunday: sunday,
|
|
477
|
-
month: month,
|
|
478
|
-
year: year,
|
|
513
|
+
month: month$1,
|
|
514
|
+
year: year$1,
|
|
479
515
|
day_count: day_count,
|
|
480
516
|
hour_count: hour_count,
|
|
481
517
|
minute_count: minute_count,
|
|
482
518
|
month_measure_count: month_measure_count,
|
|
483
519
|
show_unpassed: show_unpassed,
|
|
484
520
|
copy: copy,
|
|
521
|
+
click_to_copy: click_to_copy,
|
|
522
|
+
copy_done: copy_done,
|
|
523
|
+
has_copied_to_clipboard: has_copied_to_clipboard,
|
|
485
524
|
download: download,
|
|
486
525
|
copy_kubeconfig_success: copy_kubeconfig_success,
|
|
487
526
|
download_kubeconfig: download_kubeconfig,
|
|
488
527
|
download_kubeconfig_tip: download_kubeconfig_tip,
|
|
489
528
|
obtain_data_error: obtain_data_error,
|
|
490
529
|
colon_with_space: colon_with_space,
|
|
491
|
-
semicolon_with_space: semicolon_with_space
|
|
530
|
+
semicolon_with_space: semicolon_with_space,
|
|
531
|
+
remove: remove$1
|
|
492
532
|
};
|
|
493
533
|
|
|
494
534
|
var contains = "包含";
|
|
@@ -571,6 +611,10 @@ var db_migrated = "<0>{{text}}</0>迁移到<1>{{version}}</1>";
|
|
|
571
611
|
var empty$1 = "暂无历史记录";
|
|
572
612
|
var view_detail = "查看详情";
|
|
573
613
|
var initializing_failed = "加载时遇到问题,请重试";
|
|
614
|
+
var select_file = "选择文件";
|
|
615
|
+
var reselect_file = "重新选择";
|
|
616
|
+
var exceed_max_count = "最多只能选择 {count} 个文件";
|
|
617
|
+
var upload_file_desc = "点击或拖拽文件到此区域上传";
|
|
574
618
|
var components = {
|
|
575
619
|
contains: contains,
|
|
576
620
|
custom_column: custom_column,
|
|
@@ -659,7 +703,11 @@ var components = {
|
|
|
659
703
|
db_migrated: db_migrated,
|
|
660
704
|
empty: empty$1,
|
|
661
705
|
view_detail: view_detail,
|
|
662
|
-
initializing_failed: initializing_failed
|
|
706
|
+
initializing_failed: initializing_failed,
|
|
707
|
+
select_file: select_file,
|
|
708
|
+
reselect_file: reselect_file,
|
|
709
|
+
exceed_max_count: exceed_max_count,
|
|
710
|
+
upload_file_desc: upload_file_desc
|
|
663
711
|
};
|
|
664
712
|
|
|
665
713
|
var current = "当前值";
|
|
@@ -671,27 +719,39 @@ var metric = {
|
|
|
671
719
|
max: max
|
|
672
720
|
};
|
|
673
721
|
|
|
722
|
+
var year_abbreviation = "<0>{count}</0> <1>年</1>";
|
|
723
|
+
var month_abbreviation = "<0>{count}</0> <1>月</1>";
|
|
674
724
|
var week_abbreviation = "<0>{count}</0> <1>周</1>";
|
|
675
725
|
var day_abbreviation = "<0>{count}</0> <1>天</1>";
|
|
676
726
|
var hour_abbreviation = "<0>{count}</0> <1>小时</1>";
|
|
677
|
-
var minute_abbreviation = "<0>{count}</0> <1
|
|
727
|
+
var minute_abbreviation = "<0>{count}</0> <1>分</1>";
|
|
678
728
|
var second_abbreviation = "<0>{count}</0> <1>秒</1>";
|
|
729
|
+
var millisecond_abbreviation = "<0>{count}</0> <1>毫秒</1>";
|
|
730
|
+
var year = "<0>{count}</0> <1>年</1>";
|
|
731
|
+
var month = "<0>{count}</0> <1>月</1>";
|
|
679
732
|
var week = "<0>{count}</0> <1>周</1>";
|
|
680
733
|
var day = "<0>{count}</0> <1>天</1>";
|
|
681
734
|
var hour = "<0>{count}</0> <1>小时</1>";
|
|
682
735
|
var minute = "<0>{count}</0> <1>分钟</1>";
|
|
683
736
|
var second = "<0>{count}</0> <1>秒</1>";
|
|
737
|
+
var millisecond = "<0>{count}</0> <1>毫秒</1>";
|
|
684
738
|
var unit = {
|
|
739
|
+
year_abbreviation: year_abbreviation,
|
|
740
|
+
month_abbreviation: month_abbreviation,
|
|
685
741
|
week_abbreviation: week_abbreviation,
|
|
686
742
|
day_abbreviation: day_abbreviation,
|
|
687
743
|
hour_abbreviation: hour_abbreviation,
|
|
688
744
|
minute_abbreviation: minute_abbreviation,
|
|
689
745
|
second_abbreviation: second_abbreviation,
|
|
746
|
+
millisecond_abbreviation: millisecond_abbreviation,
|
|
747
|
+
year: year,
|
|
748
|
+
month: month,
|
|
690
749
|
week: week,
|
|
691
750
|
day: day,
|
|
692
751
|
hour: hour,
|
|
693
752
|
minute: minute,
|
|
694
|
-
second: second
|
|
753
|
+
second: second,
|
|
754
|
+
millisecond: millisecond
|
|
695
755
|
};
|
|
696
756
|
|
|
697
757
|
const locale = {
|
package/dist/esm/stats1.html
CHANGED
|
@@ -6157,7 +6157,7 @@ var drawChart = (function (exports) {
|
|
|
6157
6157
|
</script>
|
|
6158
6158
|
<script>
|
|
6159
6159
|
/*<!--*/
|
|
6160
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"locales","children":[{"name":"en-US","children":[{"uid":"
|
|
6160
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"locales","children":[{"name":"en-US","children":[{"uid":"5767-29","name":"common.json"},{"uid":"5767-31","name":"components.json"},{"uid":"5767-33","name":"metric.json"},{"uid":"5767-35","name":"unit.json"},{"uid":"5767-37","name":"index.ts"}]},{"name":"zh-CN","children":[{"uid":"5767-39","name":"common.json"},{"uid":"5767-41","name":"components.json"},{"uid":"5767-43","name":"metric.json"},{"uid":"5767-45","name":"unit.json"},{"uid":"5767-47","name":"index.ts"}]},{"uid":"5767-49","name":"index.ts"}]},{"uid":"5767-51","name":"parrotI18n.ts"},{"uid":"5767-53","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"5767-29":{"renderedLength":4088,"gzipLength":0,"brotliLength":0,"metaUid":"5767-28"},"5767-31":{"renderedLength":8667,"gzipLength":0,"brotliLength":0,"metaUid":"5767-30"},"5767-33":{"renderedLength":165,"gzipLength":0,"brotliLength":0,"metaUid":"5767-32"},"5767-35":{"renderedLength":1964,"gzipLength":0,"brotliLength":0,"metaUid":"5767-34"},"5767-37":{"renderedLength":104,"gzipLength":0,"brotliLength":0,"metaUid":"5767-36"},"5767-39":{"renderedLength":3549,"gzipLength":0,"brotliLength":0,"metaUid":"5767-38"},"5767-41":{"renderedLength":7443,"gzipLength":0,"brotliLength":0,"metaUid":"5767-40"},"5767-43":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"5767-42"},"5767-45":{"renderedLength":1255,"gzipLength":0,"brotliLength":0,"metaUid":"5767-44"},"5767-47":{"renderedLength":60,"gzipLength":0,"brotliLength":0,"metaUid":"5767-46"},"5767-49":{"renderedLength":59,"gzipLength":0,"brotliLength":0,"metaUid":"5767-48"},"5767-51":{"renderedLength":1945,"gzipLength":0,"brotliLength":0,"metaUid":"5767-50"},"5767-53":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"5767-52"}},"nodeMetas":{"5767-28":{"id":"/src/locales/en-US/common.json","moduleParts":{"index.js":"5767-29"},"imported":[],"importedBy":[{"uid":"5767-36"}]},"5767-30":{"id":"/src/locales/en-US/components.json","moduleParts":{"index.js":"5767-31"},"imported":[],"importedBy":[{"uid":"5767-36"}]},"5767-32":{"id":"/src/locales/en-US/metric.json","moduleParts":{"index.js":"5767-33"},"imported":[],"importedBy":[{"uid":"5767-36"}]},"5767-34":{"id":"/src/locales/en-US/unit.json","moduleParts":{"index.js":"5767-35"},"imported":[],"importedBy":[{"uid":"5767-36"}]},"5767-36":{"id":"/src/locales/en-US/index.ts","moduleParts":{"index.js":"5767-37"},"imported":[{"uid":"5767-28"},{"uid":"5767-30"},{"uid":"5767-32"},{"uid":"5767-34"}],"importedBy":[{"uid":"5767-48"}]},"5767-38":{"id":"/src/locales/zh-CN/common.json","moduleParts":{"index.js":"5767-39"},"imported":[],"importedBy":[{"uid":"5767-46"}]},"5767-40":{"id":"/src/locales/zh-CN/components.json","moduleParts":{"index.js":"5767-41"},"imported":[],"importedBy":[{"uid":"5767-46"}]},"5767-42":{"id":"/src/locales/zh-CN/metric.json","moduleParts":{"index.js":"5767-43"},"imported":[],"importedBy":[{"uid":"5767-46"}]},"5767-44":{"id":"/src/locales/zh-CN/unit.json","moduleParts":{"index.js":"5767-45"},"imported":[],"importedBy":[{"uid":"5767-46"}]},"5767-46":{"id":"/src/locales/zh-CN/index.ts","moduleParts":{"index.js":"5767-47"},"imported":[{"uid":"5767-38"},{"uid":"5767-40"},{"uid":"5767-42"},{"uid":"5767-44"}],"importedBy":[{"uid":"5767-48"}]},"5767-48":{"id":"/src/locales/index.ts","moduleParts":{"index.js":"5767-49"},"imported":[{"uid":"5767-36"},{"uid":"5767-46"}],"importedBy":[{"uid":"5767-52"},{"uid":"5767-50"}]},"5767-50":{"id":"/src/parrotI18n.ts","moduleParts":{"index.js":"5767-51"},"imported":[{"uid":"5767-54"},{"uid":"5767-55"},{"uid":"5767-48"}],"importedBy":[{"uid":"5767-52"}]},"5767-52":{"id":"/src/index.ts","moduleParts":{"index.js":"5767-53"},"imported":[{"uid":"5767-48"},{"uid":"5767-50"}],"importedBy":[],"isEntry":true},"5767-54":{"id":"i18next","moduleParts":{},"imported":[],"importedBy":[{"uid":"5767-50"}],"isExternal":true},"5767-55":{"id":"lodash.merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"5767-50"}],"isExternal":true}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6161
6161
|
|
|
6162
6162
|
const run = () => {
|
|
6163
6163
|
const width = window.innerWidth;
|
|
@@ -58,6 +58,9 @@ declare const locale: {
|
|
|
58
58
|
month_measure_count_plural: string;
|
|
59
59
|
show_unpassed: string;
|
|
60
60
|
copy: string;
|
|
61
|
+
click_to_copy: string;
|
|
62
|
+
copy_done: string;
|
|
63
|
+
has_copied_to_clipboard: string;
|
|
61
64
|
download: string;
|
|
62
65
|
copy_kubeconfig_success: string;
|
|
63
66
|
download_kubeconfig: string;
|
|
@@ -65,6 +68,7 @@ declare const locale: {
|
|
|
65
68
|
obtain_data_error: string;
|
|
66
69
|
colon_with_space: string;
|
|
67
70
|
semicolon_with_space: string;
|
|
71
|
+
remove: string;
|
|
68
72
|
};
|
|
69
73
|
components: {
|
|
70
74
|
contains: string;
|
|
@@ -160,6 +164,11 @@ declare const locale: {
|
|
|
160
164
|
empty: string;
|
|
161
165
|
view_detail: string;
|
|
162
166
|
initializing_failed: string;
|
|
167
|
+
select_file: string;
|
|
168
|
+
reselect_file: string;
|
|
169
|
+
exceed_max_count: string;
|
|
170
|
+
exceed_max_count_plural: string;
|
|
171
|
+
upload_file_desc: string;
|
|
163
172
|
};
|
|
164
173
|
metric: {
|
|
165
174
|
current: string;
|
|
@@ -167,23 +176,30 @@ declare const locale: {
|
|
|
167
176
|
max: string;
|
|
168
177
|
};
|
|
169
178
|
unit: {
|
|
179
|
+
year_abbreviation: string;
|
|
180
|
+
month_abbreviation: string;
|
|
170
181
|
week_abbreviation: string;
|
|
171
182
|
day_abbreviation: string;
|
|
172
|
-
week_abbreviation_plural: string;
|
|
173
|
-
day_abbreviation_plural: string;
|
|
174
183
|
hour_abbreviation: string;
|
|
175
184
|
minute_abbreviation: string;
|
|
176
185
|
second_abbreviation: string;
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
186
|
+
millisecond_abbreviation: string;
|
|
187
|
+
year: string;
|
|
188
|
+
year_plural: string;
|
|
189
|
+
month: string;
|
|
190
|
+
month_plural: string;
|
|
182
191
|
week: string;
|
|
192
|
+
week_plural: string;
|
|
183
193
|
day: string;
|
|
194
|
+
day_plural: string;
|
|
184
195
|
hour: string;
|
|
196
|
+
hour_plural: string;
|
|
185
197
|
minute: string;
|
|
198
|
+
minute_plural: string;
|
|
186
199
|
second: string;
|
|
200
|
+
second_plural: string;
|
|
201
|
+
millisecond: string;
|
|
202
|
+
millisecond_plural: string;
|
|
187
203
|
};
|
|
188
204
|
};
|
|
189
205
|
export default locale;
|
package/dist/locales/index.d.ts
CHANGED
|
@@ -59,6 +59,9 @@ declare const locales: {
|
|
|
59
59
|
month_measure_count_plural: string;
|
|
60
60
|
show_unpassed: string;
|
|
61
61
|
copy: string;
|
|
62
|
+
click_to_copy: string;
|
|
63
|
+
copy_done: string;
|
|
64
|
+
has_copied_to_clipboard: string;
|
|
62
65
|
download: string;
|
|
63
66
|
copy_kubeconfig_success: string;
|
|
64
67
|
download_kubeconfig: string;
|
|
@@ -66,6 +69,7 @@ declare const locales: {
|
|
|
66
69
|
obtain_data_error: string;
|
|
67
70
|
colon_with_space: string;
|
|
68
71
|
semicolon_with_space: string;
|
|
72
|
+
remove: string;
|
|
69
73
|
};
|
|
70
74
|
components: {
|
|
71
75
|
contains: string;
|
|
@@ -161,6 +165,11 @@ declare const locales: {
|
|
|
161
165
|
empty: string;
|
|
162
166
|
view_detail: string;
|
|
163
167
|
initializing_failed: string;
|
|
168
|
+
select_file: string;
|
|
169
|
+
reselect_file: string;
|
|
170
|
+
exceed_max_count: string;
|
|
171
|
+
exceed_max_count_plural: string;
|
|
172
|
+
upload_file_desc: string;
|
|
164
173
|
};
|
|
165
174
|
metric: {
|
|
166
175
|
current: string;
|
|
@@ -168,23 +177,30 @@ declare const locales: {
|
|
|
168
177
|
max: string;
|
|
169
178
|
};
|
|
170
179
|
unit: {
|
|
180
|
+
year_abbreviation: string;
|
|
181
|
+
month_abbreviation: string;
|
|
171
182
|
week_abbreviation: string;
|
|
172
183
|
day_abbreviation: string;
|
|
173
|
-
week_abbreviation_plural: string;
|
|
174
|
-
day_abbreviation_plural: string;
|
|
175
184
|
hour_abbreviation: string;
|
|
176
185
|
minute_abbreviation: string;
|
|
177
186
|
second_abbreviation: string;
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
187
|
+
millisecond_abbreviation: string;
|
|
188
|
+
year: string;
|
|
189
|
+
year_plural: string;
|
|
190
|
+
month: string;
|
|
191
|
+
month_plural: string;
|
|
183
192
|
week: string;
|
|
193
|
+
week_plural: string;
|
|
184
194
|
day: string;
|
|
195
|
+
day_plural: string;
|
|
185
196
|
hour: string;
|
|
197
|
+
hour_plural: string;
|
|
186
198
|
minute: string;
|
|
199
|
+
minute_plural: string;
|
|
187
200
|
second: string;
|
|
201
|
+
second_plural: string;
|
|
202
|
+
millisecond: string;
|
|
203
|
+
millisecond_plural: string;
|
|
188
204
|
};
|
|
189
205
|
};
|
|
190
206
|
"zh-CN": {
|
|
@@ -243,6 +259,9 @@ declare const locales: {
|
|
|
243
259
|
month_measure_count: string;
|
|
244
260
|
show_unpassed: string;
|
|
245
261
|
copy: string;
|
|
262
|
+
click_to_copy: string;
|
|
263
|
+
copy_done: string;
|
|
264
|
+
has_copied_to_clipboard: string;
|
|
246
265
|
download: string;
|
|
247
266
|
copy_kubeconfig_success: string;
|
|
248
267
|
download_kubeconfig: string;
|
|
@@ -250,6 +269,7 @@ declare const locales: {
|
|
|
250
269
|
obtain_data_error: string;
|
|
251
270
|
colon_with_space: string;
|
|
252
271
|
semicolon_with_space: string;
|
|
272
|
+
remove: string;
|
|
253
273
|
};
|
|
254
274
|
components: {
|
|
255
275
|
contains: string;
|
|
@@ -340,6 +360,10 @@ declare const locales: {
|
|
|
340
360
|
empty: string;
|
|
341
361
|
view_detail: string;
|
|
342
362
|
initializing_failed: string;
|
|
363
|
+
select_file: string;
|
|
364
|
+
reselect_file: string;
|
|
365
|
+
exceed_max_count: string;
|
|
366
|
+
upload_file_desc: string;
|
|
343
367
|
};
|
|
344
368
|
metric: {
|
|
345
369
|
current: string;
|
|
@@ -347,16 +371,22 @@ declare const locales: {
|
|
|
347
371
|
max: string;
|
|
348
372
|
};
|
|
349
373
|
unit: {
|
|
374
|
+
year_abbreviation: string;
|
|
375
|
+
month_abbreviation: string;
|
|
350
376
|
week_abbreviation: string;
|
|
351
377
|
day_abbreviation: string;
|
|
352
378
|
hour_abbreviation: string;
|
|
353
379
|
minute_abbreviation: string;
|
|
354
380
|
second_abbreviation: string;
|
|
381
|
+
millisecond_abbreviation: string;
|
|
382
|
+
year: string;
|
|
383
|
+
month: string;
|
|
355
384
|
week: string;
|
|
356
385
|
day: string;
|
|
357
386
|
hour: string;
|
|
358
387
|
minute: string;
|
|
359
388
|
second: string;
|
|
389
|
+
millisecond: string;
|
|
360
390
|
};
|
|
361
391
|
};
|
|
362
392
|
};
|
|
@@ -54,6 +54,9 @@ declare const locale: {
|
|
|
54
54
|
month_measure_count: string;
|
|
55
55
|
show_unpassed: string;
|
|
56
56
|
copy: string;
|
|
57
|
+
click_to_copy: string;
|
|
58
|
+
copy_done: string;
|
|
59
|
+
has_copied_to_clipboard: string;
|
|
57
60
|
download: string;
|
|
58
61
|
copy_kubeconfig_success: string;
|
|
59
62
|
download_kubeconfig: string;
|
|
@@ -61,6 +64,7 @@ declare const locale: {
|
|
|
61
64
|
obtain_data_error: string;
|
|
62
65
|
colon_with_space: string;
|
|
63
66
|
semicolon_with_space: string;
|
|
67
|
+
remove: string;
|
|
64
68
|
};
|
|
65
69
|
components: {
|
|
66
70
|
contains: string;
|
|
@@ -151,6 +155,10 @@ declare const locale: {
|
|
|
151
155
|
empty: string;
|
|
152
156
|
view_detail: string;
|
|
153
157
|
initializing_failed: string;
|
|
158
|
+
select_file: string;
|
|
159
|
+
reselect_file: string;
|
|
160
|
+
exceed_max_count: string;
|
|
161
|
+
upload_file_desc: string;
|
|
154
162
|
};
|
|
155
163
|
metric: {
|
|
156
164
|
current: string;
|
|
@@ -158,16 +166,22 @@ declare const locale: {
|
|
|
158
166
|
max: string;
|
|
159
167
|
};
|
|
160
168
|
unit: {
|
|
169
|
+
year_abbreviation: string;
|
|
170
|
+
month_abbreviation: string;
|
|
161
171
|
week_abbreviation: string;
|
|
162
172
|
day_abbreviation: string;
|
|
163
173
|
hour_abbreviation: string;
|
|
164
174
|
minute_abbreviation: string;
|
|
165
175
|
second_abbreviation: string;
|
|
176
|
+
millisecond_abbreviation: string;
|
|
177
|
+
year: string;
|
|
178
|
+
month: string;
|
|
166
179
|
week: string;
|
|
167
180
|
day: string;
|
|
168
181
|
hour: string;
|
|
169
182
|
minute: string;
|
|
170
183
|
second: string;
|
|
184
|
+
millisecond: string;
|
|
171
185
|
};
|
|
172
186
|
};
|
|
173
187
|
export default locale;
|
package/dist/umd/index.js
CHANGED
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
var friday$1 = "Friday";
|
|
50
50
|
var saturday$1 = "Saturday";
|
|
51
51
|
var sunday$1 = "Sunday";
|
|
52
|
-
var month$
|
|
53
|
-
var year$
|
|
52
|
+
var month$3 = "Month";
|
|
53
|
+
var year$3 = "Year";
|
|
54
54
|
var day_count$1 = "{count} day";
|
|
55
55
|
var day_count_plural = "{count} days";
|
|
56
56
|
var hour_count$1 = "{count} hour";
|
|
@@ -61,6 +61,9 @@
|
|
|
61
61
|
var month_measure_count_plural = "{count} months";
|
|
62
62
|
var show_unpassed$1 = "Show Failed only";
|
|
63
63
|
var copy$1 = "Copy";
|
|
64
|
+
var click_to_copy$1 = "Copy";
|
|
65
|
+
var copy_done$1 = "Copy successfully";
|
|
66
|
+
var has_copied_to_clipboard$1 = "Copied to clipboard";
|
|
64
67
|
var download$1 = "Download";
|
|
65
68
|
var copy_kubeconfig_success$1 = "Kubeconfig copied.";
|
|
66
69
|
var download_kubeconfig$1 = "Download Kubeconfig";
|
|
@@ -68,6 +71,7 @@
|
|
|
68
71
|
var obtain_data_error$1 = "Data retrieval error";
|
|
69
72
|
var colon_with_space$1 = ": ";
|
|
70
73
|
var semicolon_with_space$1 = "; ";
|
|
74
|
+
var remove$3 = "Remove";
|
|
71
75
|
var common$1 = {
|
|
72
76
|
_action_: _action_$1,
|
|
73
77
|
action: action$1,
|
|
@@ -115,8 +119,8 @@
|
|
|
115
119
|
friday: friday$1,
|
|
116
120
|
saturday: saturday$1,
|
|
117
121
|
sunday: sunday$1,
|
|
118
|
-
month: month$
|
|
119
|
-
year: year$
|
|
122
|
+
month: month$3,
|
|
123
|
+
year: year$3,
|
|
120
124
|
day_count: day_count$1,
|
|
121
125
|
day_count_plural: day_count_plural,
|
|
122
126
|
hour_count: hour_count$1,
|
|
@@ -127,13 +131,17 @@
|
|
|
127
131
|
month_measure_count_plural: month_measure_count_plural,
|
|
128
132
|
show_unpassed: show_unpassed$1,
|
|
129
133
|
copy: copy$1,
|
|
134
|
+
click_to_copy: click_to_copy$1,
|
|
135
|
+
copy_done: copy_done$1,
|
|
136
|
+
has_copied_to_clipboard: has_copied_to_clipboard$1,
|
|
130
137
|
download: download$1,
|
|
131
138
|
copy_kubeconfig_success: copy_kubeconfig_success$1,
|
|
132
139
|
download_kubeconfig: download_kubeconfig$1,
|
|
133
140
|
download_kubeconfig_tip: download_kubeconfig_tip$1,
|
|
134
141
|
obtain_data_error: obtain_data_error$1,
|
|
135
142
|
colon_with_space: colon_with_space$1,
|
|
136
|
-
semicolon_with_space: semicolon_with_space$1
|
|
143
|
+
semicolon_with_space: semicolon_with_space$1,
|
|
144
|
+
remove: remove$3
|
|
137
145
|
};
|
|
138
146
|
|
|
139
147
|
var contains$2 = "Contains";
|
|
@@ -156,7 +164,7 @@
|
|
|
156
164
|
var Architecture_AARCH64$1 = "AArch64";
|
|
157
165
|
var Architecture_X86_64$1 = "x86_64";
|
|
158
166
|
var maximum_row_count_desc$1 = "At most {count} items.";
|
|
159
|
-
var remove$
|
|
167
|
+
var remove$2 = "Remove";
|
|
160
168
|
var add$1 = "Add";
|
|
161
169
|
var prefix$1 = "Prefix";
|
|
162
170
|
var suffix$1 = "Suffix";
|
|
@@ -221,6 +229,11 @@
|
|
|
221
229
|
var empty$4 = "No history records";
|
|
222
230
|
var view_detail$1 = "View Details";
|
|
223
231
|
var initializing_failed$1 = "Failed to load the page. Please try again.";
|
|
232
|
+
var select_file$1 = "Select File";
|
|
233
|
+
var reselect_file$1 = "Re-select";
|
|
234
|
+
var exceed_max_count$1 = "Maximum {count} file allowed";
|
|
235
|
+
var exceed_max_count_plural = "Maximum {count} files allowed";
|
|
236
|
+
var upload_file_desc$1 = "Click or drag file to this area to upload";
|
|
224
237
|
var components$1 = {
|
|
225
238
|
contains: contains$2,
|
|
226
239
|
custom_column: custom_column$1,
|
|
@@ -243,7 +256,7 @@
|
|
|
243
256
|
Architecture_AARCH64: Architecture_AARCH64$1,
|
|
244
257
|
Architecture_X86_64: Architecture_X86_64$1,
|
|
245
258
|
maximum_row_count_desc: maximum_row_count_desc$1,
|
|
246
|
-
remove: remove$
|
|
259
|
+
remove: remove$2,
|
|
247
260
|
add: add$1,
|
|
248
261
|
prefix: prefix$1,
|
|
249
262
|
suffix: suffix$1,
|
|
@@ -314,7 +327,12 @@
|
|
|
314
327
|
db_migrated: db_migrated$1,
|
|
315
328
|
empty: empty$4,
|
|
316
329
|
view_detail: view_detail$1,
|
|
317
|
-
initializing_failed: initializing_failed$1
|
|
330
|
+
initializing_failed: initializing_failed$1,
|
|
331
|
+
select_file: select_file$1,
|
|
332
|
+
reselect_file: reselect_file$1,
|
|
333
|
+
exceed_max_count: exceed_max_count$1,
|
|
334
|
+
exceed_max_count_plural: exceed_max_count_plural,
|
|
335
|
+
upload_file_desc: upload_file_desc$1
|
|
318
336
|
};
|
|
319
337
|
|
|
320
338
|
var current$1 = "Current value";
|
|
@@ -326,41 +344,55 @@
|
|
|
326
344
|
max: max$1
|
|
327
345
|
};
|
|
328
346
|
|
|
329
|
-
var
|
|
330
|
-
var
|
|
331
|
-
var
|
|
332
|
-
var
|
|
347
|
+
var year_abbreviation$1 = "<0>{count}</0> <1>y</1>";
|
|
348
|
+
var month_abbreviation$1 = "<0>{count}</0> <1>m</1>";
|
|
349
|
+
var week_abbreviation$2 = "<0>{count}</0> <1>w</1>";
|
|
350
|
+
var day_abbreviation$2 = "<0>{count}</0> <1>d</1>";
|
|
333
351
|
var hour_abbreviation$2 = "<0>{count}</0> <1>h</1>";
|
|
334
352
|
var minute_abbreviation$2 = "<0>{count}</0> <1>min</1>";
|
|
335
|
-
var second_abbreviation$2 = "<0>{count}</0> <1>
|
|
336
|
-
var
|
|
337
|
-
var
|
|
338
|
-
var
|
|
339
|
-
var
|
|
340
|
-
var
|
|
341
|
-
var week$2 = "<0>{count}</0> <1>
|
|
342
|
-
var
|
|
343
|
-
var
|
|
344
|
-
var
|
|
345
|
-
var
|
|
353
|
+
var second_abbreviation$2 = "<0>{count}</0> <1>s</1>";
|
|
354
|
+
var millisecond_abbreviation$1 = "<0>{count}</0> <1>ms</1>";
|
|
355
|
+
var year$2 = "<0>{count}</0> <1>year</1>";
|
|
356
|
+
var year_plural = "<0>{count}</0> <1>years</1>";
|
|
357
|
+
var month$2 = "<0>{count}</0> <1>month</1>";
|
|
358
|
+
var month_plural = "<0>{count}</0> <1>months</1>";
|
|
359
|
+
var week$2 = "<0>{count}</0> <1>week</1>";
|
|
360
|
+
var week_plural = "<0>{count}</0> <1>weeks</1>";
|
|
361
|
+
var day$2 = "<0>{count}</0> <1>day</1>";
|
|
362
|
+
var day_plural = "<0>{count}</0> <1>days</1>";
|
|
363
|
+
var hour$2 = "<0>{count}</0> <1>hour</1>";
|
|
364
|
+
var hour_plural = "<0>{count}</0> <1>hours</1>";
|
|
365
|
+
var minute$2 = "<0>{count}</0> <1>minute</1>";
|
|
366
|
+
var minute_plural = "<0>{count}</0> <1>minutes</1>";
|
|
367
|
+
var second$2 = "<0>{count}</0> <1>second</1>";
|
|
368
|
+
var second_plural = "<0>{count}</0> <1>seconds</1>";
|
|
369
|
+
var millisecond$1 = "<0>{count}</0> <1>millisecond</1>";
|
|
370
|
+
var millisecond_plural = "<0>{count}</0> <1>milliseconds</1>";
|
|
346
371
|
var unit$1 = {
|
|
372
|
+
year_abbreviation: year_abbreviation$1,
|
|
373
|
+
month_abbreviation: month_abbreviation$1,
|
|
347
374
|
week_abbreviation: week_abbreviation$2,
|
|
348
375
|
day_abbreviation: day_abbreviation$2,
|
|
349
|
-
week_abbreviation_plural: week_abbreviation_plural,
|
|
350
|
-
day_abbreviation_plural: day_abbreviation_plural,
|
|
351
376
|
hour_abbreviation: hour_abbreviation$2,
|
|
352
377
|
minute_abbreviation: minute_abbreviation$2,
|
|
353
378
|
second_abbreviation: second_abbreviation$2,
|
|
379
|
+
millisecond_abbreviation: millisecond_abbreviation$1,
|
|
380
|
+
year: year$2,
|
|
381
|
+
year_plural: year_plural,
|
|
382
|
+
month: month$2,
|
|
383
|
+
month_plural: month_plural,
|
|
384
|
+
week: week$2,
|
|
354
385
|
week_plural: week_plural,
|
|
386
|
+
day: day$2,
|
|
355
387
|
day_plural: day_plural,
|
|
388
|
+
hour: hour$2,
|
|
356
389
|
hour_plural: hour_plural,
|
|
390
|
+
minute: minute$2,
|
|
357
391
|
minute_plural: minute_plural,
|
|
392
|
+
second: second$2,
|
|
358
393
|
second_plural: second_plural,
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
hour: hour$2,
|
|
362
|
-
minute: minute$2,
|
|
363
|
-
second: second$2
|
|
394
|
+
millisecond: millisecond$1,
|
|
395
|
+
millisecond_plural: millisecond_plural
|
|
364
396
|
};
|
|
365
397
|
|
|
366
398
|
const locale$1 = {
|
|
@@ -415,14 +447,17 @@
|
|
|
415
447
|
var friday = "周五";
|
|
416
448
|
var saturday = "周六";
|
|
417
449
|
var sunday = "周日";
|
|
418
|
-
var month = "月";
|
|
419
|
-
var year = "年";
|
|
450
|
+
var month$1 = "月";
|
|
451
|
+
var year$1 = "年";
|
|
420
452
|
var day_count = "{count} 天";
|
|
421
453
|
var hour_count = "{count} 小时";
|
|
422
454
|
var minute_count = "{count} 分钟";
|
|
423
455
|
var month_measure_count = "{count} 个月";
|
|
424
456
|
var show_unpassed = "只看未满足";
|
|
425
457
|
var copy = "复制";
|
|
458
|
+
var click_to_copy = "点击复制";
|
|
459
|
+
var copy_done = "复制成功";
|
|
460
|
+
var has_copied_to_clipboard = "已复制到剪贴板";
|
|
426
461
|
var download = "下载";
|
|
427
462
|
var copy_kubeconfig_success = "Kubeconfig 复制成功。";
|
|
428
463
|
var download_kubeconfig = "下载 Kubeconfig";
|
|
@@ -430,6 +465,7 @@
|
|
|
430
465
|
var obtain_data_error = "获取数据时遇到问题";
|
|
431
466
|
var colon_with_space = ":";
|
|
432
467
|
var semicolon_with_space = ";";
|
|
468
|
+
var remove$1 = "移除";
|
|
433
469
|
var common = {
|
|
434
470
|
_action_: _action_,
|
|
435
471
|
action: action,
|
|
@@ -477,21 +513,25 @@
|
|
|
477
513
|
friday: friday,
|
|
478
514
|
saturday: saturday,
|
|
479
515
|
sunday: sunday,
|
|
480
|
-
month: month,
|
|
481
|
-
year: year,
|
|
516
|
+
month: month$1,
|
|
517
|
+
year: year$1,
|
|
482
518
|
day_count: day_count,
|
|
483
519
|
hour_count: hour_count,
|
|
484
520
|
minute_count: minute_count,
|
|
485
521
|
month_measure_count: month_measure_count,
|
|
486
522
|
show_unpassed: show_unpassed,
|
|
487
523
|
copy: copy,
|
|
524
|
+
click_to_copy: click_to_copy,
|
|
525
|
+
copy_done: copy_done,
|
|
526
|
+
has_copied_to_clipboard: has_copied_to_clipboard,
|
|
488
527
|
download: download,
|
|
489
528
|
copy_kubeconfig_success: copy_kubeconfig_success,
|
|
490
529
|
download_kubeconfig: download_kubeconfig,
|
|
491
530
|
download_kubeconfig_tip: download_kubeconfig_tip,
|
|
492
531
|
obtain_data_error: obtain_data_error,
|
|
493
532
|
colon_with_space: colon_with_space,
|
|
494
|
-
semicolon_with_space: semicolon_with_space
|
|
533
|
+
semicolon_with_space: semicolon_with_space,
|
|
534
|
+
remove: remove$1
|
|
495
535
|
};
|
|
496
536
|
|
|
497
537
|
var contains = "包含";
|
|
@@ -574,6 +614,10 @@
|
|
|
574
614
|
var empty$1 = "暂无历史记录";
|
|
575
615
|
var view_detail = "查看详情";
|
|
576
616
|
var initializing_failed = "加载时遇到问题,请重试";
|
|
617
|
+
var select_file = "选择文件";
|
|
618
|
+
var reselect_file = "重新选择";
|
|
619
|
+
var exceed_max_count = "最多只能选择 {count} 个文件";
|
|
620
|
+
var upload_file_desc = "点击或拖拽文件到此区域上传";
|
|
577
621
|
var components = {
|
|
578
622
|
contains: contains,
|
|
579
623
|
custom_column: custom_column,
|
|
@@ -662,7 +706,11 @@
|
|
|
662
706
|
db_migrated: db_migrated,
|
|
663
707
|
empty: empty$1,
|
|
664
708
|
view_detail: view_detail,
|
|
665
|
-
initializing_failed: initializing_failed
|
|
709
|
+
initializing_failed: initializing_failed,
|
|
710
|
+
select_file: select_file,
|
|
711
|
+
reselect_file: reselect_file,
|
|
712
|
+
exceed_max_count: exceed_max_count,
|
|
713
|
+
upload_file_desc: upload_file_desc
|
|
666
714
|
};
|
|
667
715
|
|
|
668
716
|
var current = "当前值";
|
|
@@ -674,27 +722,39 @@
|
|
|
674
722
|
max: max
|
|
675
723
|
};
|
|
676
724
|
|
|
725
|
+
var year_abbreviation = "<0>{count}</0> <1>年</1>";
|
|
726
|
+
var month_abbreviation = "<0>{count}</0> <1>月</1>";
|
|
677
727
|
var week_abbreviation = "<0>{count}</0> <1>周</1>";
|
|
678
728
|
var day_abbreviation = "<0>{count}</0> <1>天</1>";
|
|
679
729
|
var hour_abbreviation = "<0>{count}</0> <1>小时</1>";
|
|
680
|
-
var minute_abbreviation = "<0>{count}</0> <1
|
|
730
|
+
var minute_abbreviation = "<0>{count}</0> <1>分</1>";
|
|
681
731
|
var second_abbreviation = "<0>{count}</0> <1>秒</1>";
|
|
732
|
+
var millisecond_abbreviation = "<0>{count}</0> <1>毫秒</1>";
|
|
733
|
+
var year = "<0>{count}</0> <1>年</1>";
|
|
734
|
+
var month = "<0>{count}</0> <1>月</1>";
|
|
682
735
|
var week = "<0>{count}</0> <1>周</1>";
|
|
683
736
|
var day = "<0>{count}</0> <1>天</1>";
|
|
684
737
|
var hour = "<0>{count}</0> <1>小时</1>";
|
|
685
738
|
var minute = "<0>{count}</0> <1>分钟</1>";
|
|
686
739
|
var second = "<0>{count}</0> <1>秒</1>";
|
|
740
|
+
var millisecond = "<0>{count}</0> <1>毫秒</1>";
|
|
687
741
|
var unit = {
|
|
742
|
+
year_abbreviation: year_abbreviation,
|
|
743
|
+
month_abbreviation: month_abbreviation,
|
|
688
744
|
week_abbreviation: week_abbreviation,
|
|
689
745
|
day_abbreviation: day_abbreviation,
|
|
690
746
|
hour_abbreviation: hour_abbreviation,
|
|
691
747
|
minute_abbreviation: minute_abbreviation,
|
|
692
748
|
second_abbreviation: second_abbreviation,
|
|
749
|
+
millisecond_abbreviation: millisecond_abbreviation,
|
|
750
|
+
year: year,
|
|
751
|
+
month: month,
|
|
693
752
|
week: week,
|
|
694
753
|
day: day,
|
|
695
754
|
hour: hour,
|
|
696
755
|
minute: minute,
|
|
697
|
-
second: second
|
|
756
|
+
second: second,
|
|
757
|
+
millisecond: millisecond
|
|
698
758
|
};
|
|
699
759
|
|
|
700
760
|
const locale = {
|
package/dist/umd/stats1.html
CHANGED
|
@@ -6157,7 +6157,7 @@ var drawChart = (function (exports) {
|
|
|
6157
6157
|
</script>
|
|
6158
6158
|
<script>
|
|
6159
6159
|
/*<!--*/
|
|
6160
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"locales","children":[{"name":"en-US","children":[{"uid":"
|
|
6160
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"locales","children":[{"name":"en-US","children":[{"uid":"5767-1","name":"common.json"},{"uid":"5767-3","name":"components.json"},{"uid":"5767-5","name":"metric.json"},{"uid":"5767-7","name":"unit.json"},{"uid":"5767-9","name":"index.ts"}]},{"name":"zh-CN","children":[{"uid":"5767-11","name":"common.json"},{"uid":"5767-13","name":"components.json"},{"uid":"5767-15","name":"metric.json"},{"uid":"5767-17","name":"unit.json"},{"uid":"5767-19","name":"index.ts"}]},{"uid":"5767-21","name":"index.ts"}]},{"uid":"5767-23","name":"parrotI18n.ts"},{"uid":"5767-25","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"5767-1":{"renderedLength":4366,"gzipLength":0,"brotliLength":0,"metaUid":"5767-0"},"5767-3":{"renderedLength":9047,"gzipLength":0,"brotliLength":0,"metaUid":"5767-2"},"5767-5":{"renderedLength":181,"gzipLength":0,"brotliLength":0,"metaUid":"5767-4"},"5767-7":{"renderedLength":2064,"gzipLength":0,"brotliLength":0,"metaUid":"5767-6"},"5767-9":{"renderedLength":116,"gzipLength":0,"brotliLength":0,"metaUid":"5767-8"},"5767-11":{"renderedLength":3811,"gzipLength":0,"brotliLength":0,"metaUid":"5767-10"},"5767-13":{"renderedLength":7799,"gzipLength":0,"brotliLength":0,"metaUid":"5767-12"},"5767-15":{"renderedLength":173,"gzipLength":0,"brotliLength":0,"metaUid":"5767-14"},"5767-17":{"renderedLength":1323,"gzipLength":0,"brotliLength":0,"metaUid":"5767-16"},"5767-19":{"renderedLength":72,"gzipLength":0,"brotliLength":0,"metaUid":"5767-18"},"5767-21":{"renderedLength":67,"gzipLength":0,"brotliLength":0,"metaUid":"5767-20"},"5767-23":{"renderedLength":2059,"gzipLength":0,"brotliLength":0,"metaUid":"5767-22"},"5767-25":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"5767-24"}},"nodeMetas":{"5767-0":{"id":"/src/locales/en-US/common.json","moduleParts":{"index.js":"5767-1"},"imported":[],"importedBy":[{"uid":"5767-8"}]},"5767-2":{"id":"/src/locales/en-US/components.json","moduleParts":{"index.js":"5767-3"},"imported":[],"importedBy":[{"uid":"5767-8"}]},"5767-4":{"id":"/src/locales/en-US/metric.json","moduleParts":{"index.js":"5767-5"},"imported":[],"importedBy":[{"uid":"5767-8"}]},"5767-6":{"id":"/src/locales/en-US/unit.json","moduleParts":{"index.js":"5767-7"},"imported":[],"importedBy":[{"uid":"5767-8"}]},"5767-8":{"id":"/src/locales/en-US/index.ts","moduleParts":{"index.js":"5767-9"},"imported":[{"uid":"5767-0"},{"uid":"5767-2"},{"uid":"5767-4"},{"uid":"5767-6"}],"importedBy":[{"uid":"5767-20"}]},"5767-10":{"id":"/src/locales/zh-CN/common.json","moduleParts":{"index.js":"5767-11"},"imported":[],"importedBy":[{"uid":"5767-18"}]},"5767-12":{"id":"/src/locales/zh-CN/components.json","moduleParts":{"index.js":"5767-13"},"imported":[],"importedBy":[{"uid":"5767-18"}]},"5767-14":{"id":"/src/locales/zh-CN/metric.json","moduleParts":{"index.js":"5767-15"},"imported":[],"importedBy":[{"uid":"5767-18"}]},"5767-16":{"id":"/src/locales/zh-CN/unit.json","moduleParts":{"index.js":"5767-17"},"imported":[],"importedBy":[{"uid":"5767-18"}]},"5767-18":{"id":"/src/locales/zh-CN/index.ts","moduleParts":{"index.js":"5767-19"},"imported":[{"uid":"5767-10"},{"uid":"5767-12"},{"uid":"5767-14"},{"uid":"5767-16"}],"importedBy":[{"uid":"5767-20"}]},"5767-20":{"id":"/src/locales/index.ts","moduleParts":{"index.js":"5767-21"},"imported":[{"uid":"5767-8"},{"uid":"5767-18"}],"importedBy":[{"uid":"5767-24"},{"uid":"5767-22"}]},"5767-22":{"id":"/src/parrotI18n.ts","moduleParts":{"index.js":"5767-23"},"imported":[{"uid":"5767-26"},{"uid":"5767-27"},{"uid":"5767-20"}],"importedBy":[{"uid":"5767-24"}]},"5767-24":{"id":"/src/index.ts","moduleParts":{"index.js":"5767-25"},"imported":[{"uid":"5767-20"},{"uid":"5767-22"}],"importedBy":[],"isEntry":true},"5767-26":{"id":"i18next","moduleParts":{},"imported":[],"importedBy":[{"uid":"5767-22"}],"isExternal":true},"5767-27":{"id":"lodash.merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"5767-22"}],"isExternal":true}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6161
6161
|
|
|
6162
6162
|
const run = () => {
|
|
6163
6163
|
const width = window.innerWidth;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/parrot",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "490.0.0",
|
|
4
4
|
"description": "i18n modules for cloudtower sparrow and eagle",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"typescript": "5.0.2",
|
|
46
46
|
"vitest": "^3.1.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "b2b90b25cb350601c00b83a2983fd9513f4dc4b8"
|
|
49
49
|
}
|