@cloudtower/parrot 4100.0.10 → 4100.0.12
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 +35 -6
- package/dist/esm/stats1.html +1 -1
- package/dist/locales/index.d.ts +6 -0
- package/dist/locales/ja-JP/index.d.ts +7 -0
- package/dist/parrotI18n.d.ts +2 -1
- package/dist/umd/index.js +35 -6
- package/dist/umd/stats1.html +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -70,7 +70,7 @@ var colon_with_space$1 = ": ";
|
|
|
70
70
|
var semicolon_with_space$1 = "; ";
|
|
71
71
|
var remove$3 = "Remove";
|
|
72
72
|
var search_log$1 = "Search logs...";
|
|
73
|
-
var common$
|
|
73
|
+
var common$2 = {
|
|
74
74
|
_action_: _action_$1,
|
|
75
75
|
action: action$1,
|
|
76
76
|
all: all$1,
|
|
@@ -236,7 +236,7 @@ var reselect_file$1 = "Re-select";
|
|
|
236
236
|
var exceed_max_count$1 = "Maximum {count} file allowed";
|
|
237
237
|
var exceed_max_count_plural = "Maximum {count} files allowed";
|
|
238
238
|
var upload_file_desc$1 = "Click or drag file to this area to upload";
|
|
239
|
-
var components$
|
|
239
|
+
var components$2 = {
|
|
240
240
|
alert_expand: alert_expand$1,
|
|
241
241
|
alert_collapse: alert_collapse$1,
|
|
242
242
|
contains: contains$2,
|
|
@@ -343,7 +343,7 @@ var components$1 = {
|
|
|
343
343
|
var current$1 = "Current value";
|
|
344
344
|
var empty$3 = "No data in this time range";
|
|
345
345
|
var max$1 = "Max";
|
|
346
|
-
var metric$
|
|
346
|
+
var metric$2 = {
|
|
347
347
|
current: current$1,
|
|
348
348
|
empty: empty$3,
|
|
349
349
|
max: max$1
|
|
@@ -373,7 +373,7 @@ var second$2 = "<0>{count}</0> <1>second</1>";
|
|
|
373
373
|
var second_plural = "<0>{count}</0> <1>seconds</1>";
|
|
374
374
|
var millisecond$1 = "<0>{count}</0> <1>millisecond</1>";
|
|
375
375
|
var millisecond_plural = "<0>{count}</0> <1>milliseconds</1>";
|
|
376
|
-
var unit$
|
|
376
|
+
var unit$2 = {
|
|
377
377
|
year_abbreviation: year_abbreviation$1,
|
|
378
378
|
month_abbreviation: month_abbreviation$1,
|
|
379
379
|
week_abbreviation: week_abbreviation$2,
|
|
@@ -400,6 +400,29 @@ var unit$1 = {
|
|
|
400
400
|
millisecond_plural: millisecond_plural
|
|
401
401
|
};
|
|
402
402
|
|
|
403
|
+
const locale$2 = {
|
|
404
|
+
common: common$2,
|
|
405
|
+
components: components$2,
|
|
406
|
+
metric: metric$2,
|
|
407
|
+
unit: unit$2
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
var common$1 = {
|
|
411
|
+
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
var components$1 = {
|
|
415
|
+
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
var metric$1 = {
|
|
419
|
+
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
var unit$1 = {
|
|
423
|
+
|
|
424
|
+
};
|
|
425
|
+
|
|
403
426
|
const locale$1 = {
|
|
404
427
|
common: common$1,
|
|
405
428
|
components: components$1,
|
|
@@ -778,7 +801,8 @@ const locale = {
|
|
|
778
801
|
};
|
|
779
802
|
|
|
780
803
|
const locales = {
|
|
781
|
-
"en-US": locale$
|
|
804
|
+
"en-US": locale$2,
|
|
805
|
+
"ja-JP": locale$1,
|
|
782
806
|
"zh-CN": locale
|
|
783
807
|
};
|
|
784
808
|
|
|
@@ -804,12 +828,16 @@ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
|
804
828
|
var ParrotLngs = /* @__PURE__ */ ((ParrotLngs2) => {
|
|
805
829
|
ParrotLngs2["zh"] = "zh-CN";
|
|
806
830
|
ParrotLngs2["en"] = "en-US";
|
|
831
|
+
ParrotLngs2["ja"] = "ja-JP";
|
|
807
832
|
return ParrotLngs2;
|
|
808
833
|
})(ParrotLngs || {});
|
|
809
834
|
const defaultOptions = {
|
|
810
835
|
lng: "zh-CN" /* zh */,
|
|
811
836
|
compatibilityJSON: "v3",
|
|
812
|
-
fallbackLng:
|
|
837
|
+
fallbackLng: {
|
|
838
|
+
["ja-JP" /* ja */]: ["en-US" /* en */, "zh-CN" /* zh */],
|
|
839
|
+
default: ["zh-CN" /* zh */, "en-US" /* en */]
|
|
840
|
+
},
|
|
813
841
|
interpolation: {
|
|
814
842
|
prefix: "{",
|
|
815
843
|
suffix: "}",
|
|
@@ -817,6 +845,7 @@ const defaultOptions = {
|
|
|
817
845
|
},
|
|
818
846
|
resources: {
|
|
819
847
|
["en-US" /* en */]: locales["en-US"],
|
|
848
|
+
["ja-JP" /* ja */]: locales["ja-JP"],
|
|
820
849
|
["zh-CN" /* zh */]: locales["zh-CN"]
|
|
821
850
|
},
|
|
822
851
|
nsSeparator: ".",
|
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":"20c4-39","name":"common.json"},{"uid":"20c4-41","name":"components.json"},{"uid":"20c4-43","name":"metric.json"},{"uid":"20c4-45","name":"unit.json"},{"uid":"20c4-47","name":"index.ts"}]},{"name":"ja-JP","children":[{"uid":"20c4-49","name":"common.json"},{"uid":"20c4-51","name":"components.json"},{"uid":"20c4-53","name":"metric.json"},{"uid":"20c4-55","name":"unit.json"},{"uid":"20c4-57","name":"index.ts"}]},{"name":"zh-CN","children":[{"uid":"20c4-59","name":"common.json"},{"uid":"20c4-61","name":"components.json"},{"uid":"20c4-63","name":"metric.json"},{"uid":"20c4-65","name":"unit.json"},{"uid":"20c4-67","name":"index.ts"}]},{"uid":"20c4-69","name":"index.ts"}]},{"uid":"20c4-71","name":"parrotI18n.ts"},{"uid":"20c4-73","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"20c4-39":{"renderedLength":4152,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-38"},"20c4-41":{"renderedLength":8871,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-40"},"20c4-43":{"renderedLength":165,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-42"},"20c4-45":{"renderedLength":1964,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-44"},"20c4-47":{"renderedLength":104,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-46"},"20c4-49":{"renderedLength":21,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-48"},"20c4-51":{"renderedLength":25,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-50"},"20c4-53":{"renderedLength":21,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-52"},"20c4-55":{"renderedLength":19,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-54"},"20c4-57":{"renderedLength":104,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-56"},"20c4-59":{"renderedLength":3607,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-58"},"20c4-61":{"renderedLength":7632,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-60"},"20c4-63":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-62"},"20c4-65":{"renderedLength":1255,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-64"},"20c4-67":{"renderedLength":60,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-66"},"20c4-69":{"renderedLength":80,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-68"},"20c4-71":{"renderedLength":2099,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-70"},"20c4-73":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-72"}},"nodeMetas":{"20c4-38":{"id":"/src/locales/en-US/common.json","moduleParts":{"index.js":"20c4-39"},"imported":[],"importedBy":[{"uid":"20c4-46"}]},"20c4-40":{"id":"/src/locales/en-US/components.json","moduleParts":{"index.js":"20c4-41"},"imported":[],"importedBy":[{"uid":"20c4-46"}]},"20c4-42":{"id":"/src/locales/en-US/metric.json","moduleParts":{"index.js":"20c4-43"},"imported":[],"importedBy":[{"uid":"20c4-46"}]},"20c4-44":{"id":"/src/locales/en-US/unit.json","moduleParts":{"index.js":"20c4-45"},"imported":[],"importedBy":[{"uid":"20c4-46"}]},"20c4-46":{"id":"/src/locales/en-US/index.ts","moduleParts":{"index.js":"20c4-47"},"imported":[{"uid":"20c4-38"},{"uid":"20c4-40"},{"uid":"20c4-42"},{"uid":"20c4-44"}],"importedBy":[{"uid":"20c4-68"}]},"20c4-48":{"id":"/src/locales/ja-JP/common.json","moduleParts":{"index.js":"20c4-49"},"imported":[],"importedBy":[{"uid":"20c4-56"}]},"20c4-50":{"id":"/src/locales/ja-JP/components.json","moduleParts":{"index.js":"20c4-51"},"imported":[],"importedBy":[{"uid":"20c4-56"}]},"20c4-52":{"id":"/src/locales/ja-JP/metric.json","moduleParts":{"index.js":"20c4-53"},"imported":[],"importedBy":[{"uid":"20c4-56"}]},"20c4-54":{"id":"/src/locales/ja-JP/unit.json","moduleParts":{"index.js":"20c4-55"},"imported":[],"importedBy":[{"uid":"20c4-56"}]},"20c4-56":{"id":"/src/locales/ja-JP/index.ts","moduleParts":{"index.js":"20c4-57"},"imported":[{"uid":"20c4-48"},{"uid":"20c4-50"},{"uid":"20c4-52"},{"uid":"20c4-54"}],"importedBy":[{"uid":"20c4-68"}]},"20c4-58":{"id":"/src/locales/zh-CN/common.json","moduleParts":{"index.js":"20c4-59"},"imported":[],"importedBy":[{"uid":"20c4-66"}]},"20c4-60":{"id":"/src/locales/zh-CN/components.json","moduleParts":{"index.js":"20c4-61"},"imported":[],"importedBy":[{"uid":"20c4-66"}]},"20c4-62":{"id":"/src/locales/zh-CN/metric.json","moduleParts":{"index.js":"20c4-63"},"imported":[],"importedBy":[{"uid":"20c4-66"}]},"20c4-64":{"id":"/src/locales/zh-CN/unit.json","moduleParts":{"index.js":"20c4-65"},"imported":[],"importedBy":[{"uid":"20c4-66"}]},"20c4-66":{"id":"/src/locales/zh-CN/index.ts","moduleParts":{"index.js":"20c4-67"},"imported":[{"uid":"20c4-58"},{"uid":"20c4-60"},{"uid":"20c4-62"},{"uid":"20c4-64"}],"importedBy":[{"uid":"20c4-68"}]},"20c4-68":{"id":"/src/locales/index.ts","moduleParts":{"index.js":"20c4-69"},"imported":[{"uid":"20c4-46"},{"uid":"20c4-56"},{"uid":"20c4-66"}],"importedBy":[{"uid":"20c4-72"},{"uid":"20c4-70"}]},"20c4-70":{"id":"/src/parrotI18n.ts","moduleParts":{"index.js":"20c4-71"},"imported":[{"uid":"20c4-74"},{"uid":"20c4-75"},{"uid":"20c4-68"}],"importedBy":[{"uid":"20c4-72"}]},"20c4-72":{"id":"/src/index.ts","moduleParts":{"index.js":"20c4-73"},"imported":[{"uid":"20c4-68"},{"uid":"20c4-70"}],"importedBy":[],"isEntry":true},"20c4-74":{"id":"i18next","moduleParts":{},"imported":[],"importedBy":[{"uid":"20c4-70"}],"isExternal":true},"20c4-75":{"id":"lodash.merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"20c4-70"}],"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/dist/locales/index.d.ts
CHANGED
package/dist/parrotI18n.d.ts
CHANGED
package/dist/umd/index.js
CHANGED
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
var semicolon_with_space$1 = "; ";
|
|
74
74
|
var remove$3 = "Remove";
|
|
75
75
|
var search_log$1 = "Search logs...";
|
|
76
|
-
var common$
|
|
76
|
+
var common$2 = {
|
|
77
77
|
_action_: _action_$1,
|
|
78
78
|
action: action$1,
|
|
79
79
|
all: all$1,
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
var exceed_max_count$1 = "Maximum {count} file allowed";
|
|
240
240
|
var exceed_max_count_plural = "Maximum {count} files allowed";
|
|
241
241
|
var upload_file_desc$1 = "Click or drag file to this area to upload";
|
|
242
|
-
var components$
|
|
242
|
+
var components$2 = {
|
|
243
243
|
alert_expand: alert_expand$1,
|
|
244
244
|
alert_collapse: alert_collapse$1,
|
|
245
245
|
contains: contains$2,
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
var current$1 = "Current value";
|
|
347
347
|
var empty$3 = "No data in this time range";
|
|
348
348
|
var max$1 = "Max";
|
|
349
|
-
var metric$
|
|
349
|
+
var metric$2 = {
|
|
350
350
|
current: current$1,
|
|
351
351
|
empty: empty$3,
|
|
352
352
|
max: max$1
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
var second_plural = "<0>{count}</0> <1>seconds</1>";
|
|
377
377
|
var millisecond$1 = "<0>{count}</0> <1>millisecond</1>";
|
|
378
378
|
var millisecond_plural = "<0>{count}</0> <1>milliseconds</1>";
|
|
379
|
-
var unit$
|
|
379
|
+
var unit$2 = {
|
|
380
380
|
year_abbreviation: year_abbreviation$1,
|
|
381
381
|
month_abbreviation: month_abbreviation$1,
|
|
382
382
|
week_abbreviation: week_abbreviation$2,
|
|
@@ -403,6 +403,29 @@
|
|
|
403
403
|
millisecond_plural: millisecond_plural
|
|
404
404
|
};
|
|
405
405
|
|
|
406
|
+
const locale$2 = {
|
|
407
|
+
common: common$2,
|
|
408
|
+
components: components$2,
|
|
409
|
+
metric: metric$2,
|
|
410
|
+
unit: unit$2
|
|
411
|
+
};
|
|
412
|
+
|
|
413
|
+
var common$1 = {
|
|
414
|
+
|
|
415
|
+
};
|
|
416
|
+
|
|
417
|
+
var components$1 = {
|
|
418
|
+
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
var metric$1 = {
|
|
422
|
+
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
var unit$1 = {
|
|
426
|
+
|
|
427
|
+
};
|
|
428
|
+
|
|
406
429
|
const locale$1 = {
|
|
407
430
|
common: common$1,
|
|
408
431
|
components: components$1,
|
|
@@ -781,7 +804,8 @@
|
|
|
781
804
|
};
|
|
782
805
|
|
|
783
806
|
const locales = {
|
|
784
|
-
"en-US": locale$
|
|
807
|
+
"en-US": locale$2,
|
|
808
|
+
"ja-JP": locale$1,
|
|
785
809
|
"zh-CN": locale
|
|
786
810
|
};
|
|
787
811
|
|
|
@@ -807,12 +831,16 @@
|
|
|
807
831
|
var ParrotLngs = /* @__PURE__ */ ((ParrotLngs2) => {
|
|
808
832
|
ParrotLngs2["zh"] = "zh-CN";
|
|
809
833
|
ParrotLngs2["en"] = "en-US";
|
|
834
|
+
ParrotLngs2["ja"] = "ja-JP";
|
|
810
835
|
return ParrotLngs2;
|
|
811
836
|
})(ParrotLngs || {});
|
|
812
837
|
const defaultOptions = {
|
|
813
838
|
lng: "zh-CN" /* zh */,
|
|
814
839
|
compatibilityJSON: "v3",
|
|
815
|
-
fallbackLng:
|
|
840
|
+
fallbackLng: {
|
|
841
|
+
["ja-JP" /* ja */]: ["en-US" /* en */, "zh-CN" /* zh */],
|
|
842
|
+
default: ["zh-CN" /* zh */, "en-US" /* en */]
|
|
843
|
+
},
|
|
816
844
|
interpolation: {
|
|
817
845
|
prefix: "{",
|
|
818
846
|
suffix: "}",
|
|
@@ -820,6 +848,7 @@
|
|
|
820
848
|
},
|
|
821
849
|
resources: {
|
|
822
850
|
["en-US" /* en */]: locales["en-US"],
|
|
851
|
+
["ja-JP" /* ja */]: locales["ja-JP"],
|
|
823
852
|
["zh-CN" /* zh */]: locales["zh-CN"]
|
|
824
853
|
},
|
|
825
854
|
nsSeparator: ".",
|
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":"20c4-1","name":"common.json"},{"uid":"20c4-3","name":"components.json"},{"uid":"20c4-5","name":"metric.json"},{"uid":"20c4-7","name":"unit.json"},{"uid":"20c4-9","name":"index.ts"}]},{"name":"ja-JP","children":[{"uid":"20c4-11","name":"common.json"},{"uid":"20c4-13","name":"components.json"},{"uid":"20c4-15","name":"metric.json"},{"uid":"20c4-17","name":"unit.json"},{"uid":"20c4-19","name":"index.ts"}]},{"name":"zh-CN","children":[{"uid":"20c4-21","name":"common.json"},{"uid":"20c4-23","name":"components.json"},{"uid":"20c4-25","name":"metric.json"},{"uid":"20c4-27","name":"unit.json"},{"uid":"20c4-29","name":"index.ts"}]},{"uid":"20c4-31","name":"index.ts"}]},{"uid":"20c4-33","name":"parrotI18n.ts"},{"uid":"20c4-35","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"20c4-1":{"renderedLength":4434,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-0"},"20c4-3":{"renderedLength":9263,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-2"},"20c4-5":{"renderedLength":181,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-4"},"20c4-7":{"renderedLength":2064,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-6"},"20c4-9":{"renderedLength":116,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-8"},"20c4-11":{"renderedLength":27,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-10"},"20c4-13":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-12"},"20c4-15":{"renderedLength":27,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-14"},"20c4-17":{"renderedLength":25,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-16"},"20c4-19":{"renderedLength":116,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-18"},"20c4-21":{"renderedLength":3873,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-20"},"20c4-23":{"renderedLength":8000,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-22"},"20c4-25":{"renderedLength":173,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-24"},"20c4-27":{"renderedLength":1323,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-26"},"20c4-29":{"renderedLength":72,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-28"},"20c4-31":{"renderedLength":90,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-30"},"20c4-33":{"renderedLength":2223,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-32"},"20c4-35":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"20c4-34"}},"nodeMetas":{"20c4-0":{"id":"/src/locales/en-US/common.json","moduleParts":{"index.js":"20c4-1"},"imported":[],"importedBy":[{"uid":"20c4-8"}]},"20c4-2":{"id":"/src/locales/en-US/components.json","moduleParts":{"index.js":"20c4-3"},"imported":[],"importedBy":[{"uid":"20c4-8"}]},"20c4-4":{"id":"/src/locales/en-US/metric.json","moduleParts":{"index.js":"20c4-5"},"imported":[],"importedBy":[{"uid":"20c4-8"}]},"20c4-6":{"id":"/src/locales/en-US/unit.json","moduleParts":{"index.js":"20c4-7"},"imported":[],"importedBy":[{"uid":"20c4-8"}]},"20c4-8":{"id":"/src/locales/en-US/index.ts","moduleParts":{"index.js":"20c4-9"},"imported":[{"uid":"20c4-0"},{"uid":"20c4-2"},{"uid":"20c4-4"},{"uid":"20c4-6"}],"importedBy":[{"uid":"20c4-30"}]},"20c4-10":{"id":"/src/locales/ja-JP/common.json","moduleParts":{"index.js":"20c4-11"},"imported":[],"importedBy":[{"uid":"20c4-18"}]},"20c4-12":{"id":"/src/locales/ja-JP/components.json","moduleParts":{"index.js":"20c4-13"},"imported":[],"importedBy":[{"uid":"20c4-18"}]},"20c4-14":{"id":"/src/locales/ja-JP/metric.json","moduleParts":{"index.js":"20c4-15"},"imported":[],"importedBy":[{"uid":"20c4-18"}]},"20c4-16":{"id":"/src/locales/ja-JP/unit.json","moduleParts":{"index.js":"20c4-17"},"imported":[],"importedBy":[{"uid":"20c4-18"}]},"20c4-18":{"id":"/src/locales/ja-JP/index.ts","moduleParts":{"index.js":"20c4-19"},"imported":[{"uid":"20c4-10"},{"uid":"20c4-12"},{"uid":"20c4-14"},{"uid":"20c4-16"}],"importedBy":[{"uid":"20c4-30"}]},"20c4-20":{"id":"/src/locales/zh-CN/common.json","moduleParts":{"index.js":"20c4-21"},"imported":[],"importedBy":[{"uid":"20c4-28"}]},"20c4-22":{"id":"/src/locales/zh-CN/components.json","moduleParts":{"index.js":"20c4-23"},"imported":[],"importedBy":[{"uid":"20c4-28"}]},"20c4-24":{"id":"/src/locales/zh-CN/metric.json","moduleParts":{"index.js":"20c4-25"},"imported":[],"importedBy":[{"uid":"20c4-28"}]},"20c4-26":{"id":"/src/locales/zh-CN/unit.json","moduleParts":{"index.js":"20c4-27"},"imported":[],"importedBy":[{"uid":"20c4-28"}]},"20c4-28":{"id":"/src/locales/zh-CN/index.ts","moduleParts":{"index.js":"20c4-29"},"imported":[{"uid":"20c4-20"},{"uid":"20c4-22"},{"uid":"20c4-24"},{"uid":"20c4-26"}],"importedBy":[{"uid":"20c4-30"}]},"20c4-30":{"id":"/src/locales/index.ts","moduleParts":{"index.js":"20c4-31"},"imported":[{"uid":"20c4-8"},{"uid":"20c4-18"},{"uid":"20c4-28"}],"importedBy":[{"uid":"20c4-34"},{"uid":"20c4-32"}]},"20c4-32":{"id":"/src/parrotI18n.ts","moduleParts":{"index.js":"20c4-33"},"imported":[{"uid":"20c4-36"},{"uid":"20c4-37"},{"uid":"20c4-30"}],"importedBy":[{"uid":"20c4-34"}]},"20c4-34":{"id":"/src/index.ts","moduleParts":{"index.js":"20c4-35"},"imported":[{"uid":"20c4-30"},{"uid":"20c4-32"}],"importedBy":[],"isEntry":true},"20c4-36":{"id":"i18next","moduleParts":{},"imported":[],"importedBy":[{"uid":"20c4-32"}],"isExternal":true},"20c4-37":{"id":"lodash.merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"20c4-32"}],"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;
|