@daoyi/nmtl-ui 2.0.1-beta.127 → 2.0.1-beta.128
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/lib/components/{ExtraTools-11d483d5.js → ExtraTools-2691c13e.js} +65 -62
- package/lib/components/ExtraTools.js +1 -1
- package/lib/components/{ForwardLink-fec856b3.js → ForwardLink-5fbd2705.js} +14 -2
- package/lib/components/ForwardLink.js +1 -1
- package/lib/components/KeywordTicker.js +1 -1
- package/lib/components/SNA.js +18 -26
- package/lib/components/globalConfig.js +121 -3
- package/lib/utils/{_rollupPluginBabelHelpers-8dd26e1a.js → _rollupPluginBabelHelpers-9802e640.js} +1 -1
- package/lib/utils/arrayMerge.js +1 -1
- package/lib/utils/exportXlsx.js +57 -71
- package/lib/utils/historyAppendSearch.js +1 -1
- package/lib/utils/snaPreProcess.js +1 -1
- package/package.json +1 -1
|
@@ -2753,6 +2753,12 @@ const downloadGephi = snaData => {
|
|
|
2753
2753
|
|
|
2754
2754
|
/* 轉檔工具, 提供API轉下載tsv/xlsx */
|
|
2755
2755
|
|
|
2756
|
+
/* 欄名走套件自帶的 getIntl():zh-tw 語系表的值與原本寫死的欄名相同,子站(僅 zh-tw)輸出不變;
|
|
2757
|
+
主站英文頁輸出英文欄名(nmtl-web i18n 盤點 D6) */
|
|
2758
|
+
const header = id => getIntl().formatMessage({
|
|
2759
|
+
id
|
|
2760
|
+
});
|
|
2761
|
+
|
|
2756
2762
|
/* 大事年表 */
|
|
2757
2763
|
const chronologyConvert = data => {
|
|
2758
2764
|
const getText = function () {
|
|
@@ -2764,6 +2770,15 @@ const chronologyConvert = data => {
|
|
|
2764
2770
|
};
|
|
2765
2771
|
};
|
|
2766
2772
|
|
|
2773
|
+
/* 資料來源:主站把名稱包在 .tooltipsources 裡(「資料來源:」前綴隨語系變動,無法再靠中文字剝除);
|
|
2774
|
+
子站的時間軸 HTML 沒有這一層,沿用原本剝除「註」「資料來源:」的寫法 */
|
|
2775
|
+
const getSources = function () {
|
|
2776
|
+
let after = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
2777
|
+
const tagged = after.match(/<span class="tooltipsources">([\s\S]*?)<\/span>/);
|
|
2778
|
+
if (tagged) return tagged[1].replaceAll(/(<([^>]+)>)/gi, '').trim();
|
|
2779
|
+
return after.replaceAll('\n', '').replaceAll('\t', '').replace('註', '').replace('資料來源:', '').replaceAll(/(<([^>]+)>)/gi, '');
|
|
2780
|
+
};
|
|
2781
|
+
|
|
2767
2782
|
/* 做資料過濾 */
|
|
2768
2783
|
const newData = (data || []).map(_ref => {
|
|
2769
2784
|
let {
|
|
@@ -2779,11 +2794,11 @@ const chronologyConvert = data => {
|
|
|
2779
2794
|
}
|
|
2780
2795
|
} = _ref;
|
|
2781
2796
|
return {
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2797
|
+
[header('export.chronology.date')]: `${year || ''}/${month || ''}/${day || ''}`,
|
|
2798
|
+
[header('export.chronology.name')]: (displayDate || '').replace('<span>', '').replace('</span>', ''),
|
|
2799
|
+
[header('export.chronology.description')]: (headline || '').replaceAll(/(<([^>]+)>)/gi, ''),
|
|
2800
|
+
[header('export.chronology.type')]: getText(text).before,
|
|
2801
|
+
[header('export.chronology.source')]: getSources(getText(text).after)
|
|
2787
2802
|
};
|
|
2788
2803
|
});
|
|
2789
2804
|
return newData;
|
|
@@ -2800,12 +2815,12 @@ const mapConvert = data => (data || []).map(_ref2 => {
|
|
|
2800
2815
|
posY
|
|
2801
2816
|
} = _ref2;
|
|
2802
2817
|
return {
|
|
2803
|
-
'
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
'
|
|
2807
|
-
|
|
2808
|
-
|
|
2818
|
+
[header('export.works.title')]: title || '',
|
|
2819
|
+
[header('export.works.author')]: author || '',
|
|
2820
|
+
[header('export.map.publisher')]: publisher || '',
|
|
2821
|
+
[header('export.map.location')]: locations || '',
|
|
2822
|
+
[header('export.map.longitude')]: posX || '',
|
|
2823
|
+
[header('export.map.latitude')]: posY || ''
|
|
2809
2824
|
};
|
|
2810
2825
|
});
|
|
2811
2826
|
|
|
@@ -2821,13 +2836,13 @@ const mapLgConvert = data => (data || []).map(_ref3 => {
|
|
|
2821
2836
|
activePosY
|
|
2822
2837
|
} = _ref3;
|
|
2823
2838
|
return {
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2839
|
+
[header('export.mapLg.orgName')]: title || '',
|
|
2840
|
+
[header('export.mapLg.foundingPlace')]: locationOfFormation,
|
|
2841
|
+
[header('export.mapLg.foundingLongitude')]: createPosX || '',
|
|
2842
|
+
[header('export.mapLg.foundingLatitude')]: createPosY || '',
|
|
2843
|
+
[header('export.mapLg.activityPlace')]: workLocations || '',
|
|
2844
|
+
[header('export.mapLg.activityLongitude')]: activePosX || '',
|
|
2845
|
+
[header('export.mapLg.activityLatitude')]: activePosY || ''
|
|
2831
2846
|
};
|
|
2832
2847
|
});
|
|
2833
2848
|
|
|
@@ -2842,16 +2857,16 @@ const worksBarChart = data => (data || []).map(_ref4 => {
|
|
|
2842
2857
|
genreName
|
|
2843
2858
|
} = _ref4;
|
|
2844
2859
|
return {
|
|
2845
|
-
'
|
|
2846
|
-
'
|
|
2847
|
-
|
|
2860
|
+
[header('export.works.publishYear')]: date || year || '',
|
|
2861
|
+
[header('export.works.title')]: title || '',
|
|
2862
|
+
[header('export.works.author')]: (authors || []).map(_ref5 => {
|
|
2848
2863
|
let {
|
|
2849
2864
|
author
|
|
2850
2865
|
} = _ref5;
|
|
2851
2866
|
return author;
|
|
2852
2867
|
}).join(','),
|
|
2853
|
-
|
|
2854
|
-
|
|
2868
|
+
[header('export.works.keywords')]: (keywords || '').replaceAll('\n', ''),
|
|
2869
|
+
[header('export.works.genre')]: genreName || ''
|
|
2855
2870
|
};
|
|
2856
2871
|
});
|
|
2857
2872
|
|
|
@@ -2863,9 +2878,9 @@ const worksSlider = data => (data || []).map(_ref6 => {
|
|
|
2863
2878
|
date
|
|
2864
2879
|
} = _ref6;
|
|
2865
2880
|
return {
|
|
2866
|
-
'
|
|
2867
|
-
|
|
2868
|
-
'
|
|
2881
|
+
[header('export.works.title')]: title || '',
|
|
2882
|
+
[header('export.works.author')]: author || '',
|
|
2883
|
+
[header('export.works.publishDate')]: date || ''
|
|
2869
2884
|
// 文學分類: genreName || '',
|
|
2870
2885
|
// 作品描述地: workDesc || '',
|
|
2871
2886
|
// 作家出生地: locations,
|
|
@@ -3157,6 +3172,15 @@ styleInject(css_248z);
|
|
|
3157
3172
|
|
|
3158
3173
|
/* eslint-disable prefer-destructuring */
|
|
3159
3174
|
|
|
3175
|
+
/* 元件內部字串:呼叫端有傳 intl(各站自己的 react-intl)就沿用;沒傳就走套件自帶的 getIntl(),
|
|
3176
|
+
語系由各站在 IndexProvider 以 getIntl().setLocale() 設定。
|
|
3177
|
+
原本沒傳時直接落在寫死的中文,英文頁的工具列整排都是中文(nmtl-web i18n 盤點 D1) */
|
|
3178
|
+
const translate = (intl, id) => intl ? intl.formatMessage({
|
|
3179
|
+
id
|
|
3180
|
+
}) : getIntl().formatMessage({
|
|
3181
|
+
id
|
|
3182
|
+
});
|
|
3183
|
+
|
|
3160
3184
|
/* 視覺隱藏文字(供按鈕內容作為可及名稱, WCAG 4.1.2) */
|
|
3161
3185
|
const hiddenTextStyle = {
|
|
3162
3186
|
position: 'absolute',
|
|
@@ -3214,10 +3238,8 @@ const DownloadMenu = _ref2 => {
|
|
|
3214
3238
|
/* react-data-export 的隱藏觸發器(見下方 xlsxTrigger 說明) */
|
|
3215
3239
|
const xlsxTriggerRef = useRef(null);
|
|
3216
3240
|
const hideButton = type => (exclude || []).filter(key => key === type).length > 0;
|
|
3217
|
-
const t =
|
|
3218
|
-
|
|
3219
|
-
}) : fallback;
|
|
3220
|
-
const downloadLabel = t('knowledge.writersAndWorksSNA.download', '下載');
|
|
3241
|
+
const t = id => translate(intl, id);
|
|
3242
|
+
const downloadLabel = t('knowledge.writersAndWorksSNA.download');
|
|
3221
3243
|
|
|
3222
3244
|
/* xlsx 需由 react-data-export 產生檔案,但它只會把傳入的 element 包一層 <span onClick>;
|
|
3223
3245
|
若直接把 MenuItem 交給它,選單裡就會出現 <span><li role="menuitem"></span>——
|
|
@@ -3231,11 +3253,11 @@ const DownloadMenu = _ref2 => {
|
|
|
3231
3253
|
id: domToImageId,
|
|
3232
3254
|
fileName: `${exportFileName}_${exportDateSuffix()}`
|
|
3233
3255
|
}),
|
|
3234
|
-
label: t('knowledge.writersAndWorksSNA.download.img'
|
|
3256
|
+
label: t('knowledge.writersAndWorksSNA.download.img')
|
|
3235
3257
|
}, {
|
|
3236
3258
|
key: 'downloadGephi',
|
|
3237
3259
|
onClick: () => downloadGephi(data),
|
|
3238
|
-
label: t('knowledge.writersAndWorksSNA.download.gephi'
|
|
3260
|
+
label: t('knowledge.writersAndWorksSNA.download.gephi')
|
|
3239
3261
|
}, {
|
|
3240
3262
|
key: 'downloadTsv',
|
|
3241
3263
|
onClick: () => exportXlsx({
|
|
@@ -3244,11 +3266,11 @@ const DownloadMenu = _ref2 => {
|
|
|
3244
3266
|
extType: 'tsv',
|
|
3245
3267
|
fileName: exportFileName
|
|
3246
3268
|
}),
|
|
3247
|
-
label: t('knowledge.writersAndWorksSNA.download.tsv'
|
|
3269
|
+
label: t('knowledge.writersAndWorksSNA.download.tsv')
|
|
3248
3270
|
}, {
|
|
3249
3271
|
key: 'downloadXls',
|
|
3250
3272
|
onClick: () => xlsxTriggerRef.current && xlsxTriggerRef.current.click(),
|
|
3251
|
-
label: t('knowledge.writersAndWorksSNA.download.xls'
|
|
3273
|
+
label: t('knowledge.writersAndWorksSNA.download.xls'),
|
|
3252
3274
|
requireExcel: true
|
|
3253
3275
|
}];
|
|
3254
3276
|
const menuItems = btns.filter(_ref3 => {
|
|
@@ -3360,17 +3382,13 @@ const FullscreenBtn = _ref5 => {
|
|
|
3360
3382
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
3361
3383
|
className: classNames('extraTools__fullscreenBtn', className)
|
|
3362
3384
|
}, /*#__PURE__*/React__default.createElement(Tooltip, {
|
|
3363
|
-
title: intl
|
|
3364
|
-
id: 'knowledge.writersAndWorksSNA.fullscreen'
|
|
3365
|
-
}) : '全螢幕模式',
|
|
3385
|
+
title: translate(intl, 'knowledge.writersAndWorksSNA.fullscreen'),
|
|
3366
3386
|
placement: "bottom"
|
|
3367
3387
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
3368
3388
|
className: "extraTools__fullscreenBtn-icon",
|
|
3369
3389
|
role: "button",
|
|
3370
3390
|
tabIndex: 0,
|
|
3371
|
-
"aria-label": intl
|
|
3372
|
-
id: 'knowledge.writersAndWorksSNA.fullscreen'
|
|
3373
|
-
}) : '全螢幕模式',
|
|
3391
|
+
"aria-label": translate(intl, 'knowledge.writersAndWorksSNA.fullscreen'),
|
|
3374
3392
|
onClick: () => {
|
|
3375
3393
|
if (screenfull.isEnabled && fullscreenDomId) screenfull.request(document.getElementById(fullscreenDomId));
|
|
3376
3394
|
},
|
|
@@ -3420,12 +3438,9 @@ const FontSizeChanger = _ref6 => {
|
|
|
3420
3438
|
if (el.getAttribute('tabindex') === '0') return;
|
|
3421
3439
|
const isUp = el.classList.contains('font-size-up');
|
|
3422
3440
|
const labelId = isUp ? 'knowledge.writersAndWorksSNA.big' : 'knowledge.writersAndWorksSNA.small';
|
|
3423
|
-
const fallback = isUp ? '字級放大' : '字級縮小';
|
|
3424
3441
|
el.setAttribute('tabindex', '0');
|
|
3425
3442
|
el.setAttribute('role', 'button');
|
|
3426
|
-
el.setAttribute('aria-label', intl
|
|
3427
|
-
id: labelId
|
|
3428
|
-
}) : fallback);
|
|
3443
|
+
el.setAttribute('aria-label', translate(intl, labelId));
|
|
3429
3444
|
el.addEventListener('keydown', event => {
|
|
3430
3445
|
if (event.key === 'Enter' || event.key === ' ') {
|
|
3431
3446
|
event.preventDefault();
|
|
@@ -3443,29 +3458,21 @@ const FontSizeChanger = _ref6 => {
|
|
|
3443
3458
|
customButtons: {
|
|
3444
3459
|
/* 外層按鈕由 react-font-size-changer 渲染,以 role="img" + aria-label 提供按鈕可及名稱(WCAG 4.1.2) */
|
|
3445
3460
|
up: /*#__PURE__*/React__default.createElement(Tooltip, {
|
|
3446
|
-
title: intl
|
|
3447
|
-
id: 'knowledge.writersAndWorksSNA.big'
|
|
3448
|
-
}) : '字級放大',
|
|
3461
|
+
title: translate(intl, 'knowledge.writersAndWorksSNA.big'),
|
|
3449
3462
|
placement: "bottom"
|
|
3450
3463
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
3451
3464
|
role: "img",
|
|
3452
|
-
"aria-label": intl
|
|
3453
|
-
id: 'knowledge.writersAndWorksSNA.big'
|
|
3454
|
-
}) : '字級放大'
|
|
3465
|
+
"aria-label": translate(intl, 'knowledge.writersAndWorksSNA.big')
|
|
3455
3466
|
}, /*#__PURE__*/React__default.createElement(SVGComponent$2, {
|
|
3456
3467
|
fill: iconColor,
|
|
3457
3468
|
"aria-hidden": "true"
|
|
3458
3469
|
}))),
|
|
3459
3470
|
down: /*#__PURE__*/React__default.createElement(Tooltip, {
|
|
3460
|
-
title: intl
|
|
3461
|
-
id: 'knowledge.writersAndWorksSNA.small'
|
|
3462
|
-
}) : '字級縮小',
|
|
3471
|
+
title: translate(intl, 'knowledge.writersAndWorksSNA.small'),
|
|
3463
3472
|
placement: "bottom"
|
|
3464
3473
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
3465
3474
|
role: "img",
|
|
3466
|
-
"aria-label": intl
|
|
3467
|
-
id: 'knowledge.writersAndWorksSNA.small'
|
|
3468
|
-
}) : '字級縮小'
|
|
3475
|
+
"aria-label": translate(intl, 'knowledge.writersAndWorksSNA.small')
|
|
3469
3476
|
}, /*#__PURE__*/React__default.createElement(SVGComponent$1, {
|
|
3470
3477
|
fill: iconColor,
|
|
3471
3478
|
"aria-hidden": "true"
|
|
@@ -3514,14 +3521,10 @@ const SNAResetBtn = _ref7 => {
|
|
|
3514
3521
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
3515
3522
|
id: "resetBtn"
|
|
3516
3523
|
}, /*#__PURE__*/React__default.createElement(Tooltip, {
|
|
3517
|
-
title: intl
|
|
3518
|
-
id: 'common.sna.reset'
|
|
3519
|
-
}) : '回到原來位置與大小',
|
|
3524
|
+
title: translate(intl, 'common.sna.reset'),
|
|
3520
3525
|
placement: "bottom"
|
|
3521
3526
|
}, /*#__PURE__*/React__default.createElement(IconButton, {
|
|
3522
|
-
"aria-label": intl
|
|
3523
|
-
id: 'common.sna.reset'
|
|
3524
|
-
}) : '回到原來位置與大小',
|
|
3527
|
+
"aria-label": translate(intl, 'common.sna.reset'),
|
|
3525
3528
|
onClick: () => renderSNA(),
|
|
3526
3529
|
style: {
|
|
3527
3530
|
padding: '0px'
|
|
@@ -12,7 +12,19 @@ var css_248z = ".forwardLink {\n width: -moz-fit-content;\n width: fit-content
|
|
|
12
12
|
styleInject(css_248z);
|
|
13
13
|
|
|
14
14
|
var _excluded = ["className", "linkClassName", "title", "target", "disabled", "children", "tip", "onClick"];
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* 導頁前綴沿用目前網址的語系段(/en/…、/zh-tw/…)。
|
|
18
|
+
* 原本寫死 '/zh-tw'(2023-03-18 暫時寫死),英文頁上的 ForwardLink 一律把使用者帶回中文站(nmtl-web i18n 盤點 D2)。
|
|
19
|
+
* history.location.pathname 不含 Router basename(各站 contextRoot),第一段就是語系;
|
|
20
|
+
* 只接受已知語系代碼,避免把 hr/lg/ra 這類兩個字母的子站代碼誤認成語系。
|
|
21
|
+
*/
|
|
22
|
+
var KNOWN_LOCALES = ['zh-tw', 'zh-cn', 'en', 'en-us'];
|
|
23
|
+
var DEFAULT_LOCALE = 'zh-tw';
|
|
24
|
+
var getLocalePrefix = function getLocalePrefix(pathname) {
|
|
25
|
+
var firstSegment = (pathname || '').split('/').filter(Boolean)[0];
|
|
26
|
+
return "/".concat(firstSegment && KNOWN_LOCALES.includes(firstSegment.toLowerCase()) ? firstSegment : DEFAULT_LOCALE);
|
|
27
|
+
};
|
|
16
28
|
|
|
17
29
|
/*
|
|
18
30
|
* ⚠️ 本元件刻意「不輸出 href 屬性」,請勿改回 <a> 或 react-router <Link>。
|
|
@@ -69,7 +81,7 @@ var ForwardLink = function ForwardLink(_ref) {
|
|
|
69
81
|
var go = useCallback(function () {
|
|
70
82
|
if (onClick && onClick() === false) return;
|
|
71
83
|
var to = {
|
|
72
|
-
pathname: "".concat(
|
|
84
|
+
pathname: "".concat(getLocalePrefix(history.location.pathname)).concat(pathname),
|
|
73
85
|
search: search
|
|
74
86
|
};
|
|
75
87
|
if (target === '_blank') {
|
|
@@ -2,7 +2,7 @@ import { a as _slicedToArray } from './_rollupPluginBabelHelpers-a52356f6.js';
|
|
|
2
2
|
import React__default, { useState, useRef, useEffect } from 'react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
4
|
import { c as classNames } from './index-b76a85f4.js';
|
|
5
|
-
import { F as ForwardLink } from './ForwardLink-
|
|
5
|
+
import { F as ForwardLink } from './ForwardLink-5fbd2705.js';
|
|
6
6
|
import { getIntl } from './globalConfig';
|
|
7
7
|
import { s as styleInject } from './style-inject.es-1f59c1d0.js';
|
|
8
8
|
import './index-b47819f3.js';
|
package/lib/components/SNA.js
CHANGED
|
@@ -2,14 +2,14 @@ import React__default, { useMemo, useEffect } from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { c as classNames } from './index-b76a85f4.js';
|
|
4
4
|
import { e as event, d as d3Select, a as dispatch, c as customEvent, D as DragEvent, q as quadtree, m as map, t as timer, T as Transform, i as identity, b as interrupt, o as ordinal, f as category10 } from './transform-3a04288b.js';
|
|
5
|
-
import { E as ExtraTools } from './ExtraTools-
|
|
5
|
+
import { E as ExtraTools } from './ExtraTools-2691c13e.js';
|
|
6
|
+
import { getIntl } from './globalConfig';
|
|
6
7
|
import { s as styleInject } from './style-inject.es-1f59c1d0.js';
|
|
7
8
|
import './_rollupPluginBabelHelpers-a52356f6.js';
|
|
8
9
|
import './_commonjsHelpers-70de2c37.js';
|
|
9
10
|
import '@material-ui/core';
|
|
10
11
|
import './Tooltip-6ebfa9c1.js';
|
|
11
12
|
import './dataExport-a9e3fae1.js';
|
|
12
|
-
import './globalConfig';
|
|
13
13
|
|
|
14
14
|
function sourceEvent() {
|
|
15
15
|
var current = event, source;
|
|
@@ -1418,12 +1418,18 @@ var SNA = function SNA(props) {
|
|
|
1418
1418
|
backgroundColor = props.backgroundColor,
|
|
1419
1419
|
iconColor = props.iconColor;
|
|
1420
1420
|
var g;
|
|
1421
|
+
/* 元件內部字串:有傳 intl 就沿用,沒傳就走套件自帶的 getIntl();原本沒傳時落在寫死的中文(nmtl-web i18n 盤點 D3) */
|
|
1422
|
+
var translateText = function translateText(id) {
|
|
1423
|
+
return intl ? intl.formatMessage({
|
|
1424
|
+
id: id
|
|
1425
|
+
}) : getIntl().formatMessage({
|
|
1426
|
+
id: id
|
|
1427
|
+
});
|
|
1428
|
+
};
|
|
1421
1429
|
if (!SNAData || SNAData.nodes.length === 0) {
|
|
1422
1430
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
1423
1431
|
className: "noData"
|
|
1424
|
-
},
|
|
1425
|
-
id: 'common.noData'
|
|
1426
|
-
}) : '暫無資料');
|
|
1432
|
+
}, translateText('common.noData'));
|
|
1427
1433
|
}
|
|
1428
1434
|
var contentWidth = useMemo(function () {
|
|
1429
1435
|
return screen.width > 1050 ? width : screen.width - 80;
|
|
@@ -1435,39 +1441,25 @@ var SNA = function SNA(props) {
|
|
|
1435
1441
|
switch (type) {
|
|
1436
1442
|
case 'mainNode':
|
|
1437
1443
|
// 主要搜尋中心
|
|
1438
|
-
return
|
|
1439
|
-
id: 'SNA.search.center'
|
|
1440
|
-
}) : '主要搜尋中心';
|
|
1444
|
+
return translateText('SNA.search.center');
|
|
1441
1445
|
case 'organization':
|
|
1442
1446
|
// 組織
|
|
1443
|
-
return
|
|
1444
|
-
id: 'SNA.organization'
|
|
1445
|
-
}) : '組織';
|
|
1447
|
+
return translateText('SNA.organization');
|
|
1446
1448
|
case 'person':
|
|
1447
1449
|
// 作家
|
|
1448
|
-
return
|
|
1449
|
-
id: 'SNA.author'
|
|
1450
|
-
}) : '作家';
|
|
1450
|
+
return translateText('SNA.author');
|
|
1451
1451
|
case 'publication':
|
|
1452
1452
|
// 著作
|
|
1453
|
-
return
|
|
1454
|
-
id: 'SNA.publication'
|
|
1455
|
-
}) : '作家';
|
|
1453
|
+
return translateText('SNA.publication');
|
|
1456
1454
|
case 'article':
|
|
1457
1455
|
// 單篇作品
|
|
1458
|
-
return
|
|
1459
|
-
id: 'SNA.article'
|
|
1460
|
-
}) : '單篇作品';
|
|
1456
|
+
return translateText('SNA.article');
|
|
1461
1457
|
case 'keyword':
|
|
1462
1458
|
// 關鍵字
|
|
1463
|
-
return
|
|
1464
|
-
id: 'SNA.keyword'
|
|
1465
|
-
}) : '關鍵字';
|
|
1459
|
+
return translateText('SNA.keyword');
|
|
1466
1460
|
case 'event':
|
|
1467
1461
|
// 事件
|
|
1468
|
-
return
|
|
1469
|
-
id: 'SNA.event'
|
|
1470
|
-
}) : '事件';
|
|
1462
|
+
return translateText('SNA.event');
|
|
1471
1463
|
default:
|
|
1472
1464
|
return '';
|
|
1473
1465
|
}
|
|
@@ -96,7 +96,45 @@ var zhtw = {
|
|
|
96
96
|
"aria.pagination.changed": "已切換至第 {page} 頁,結果已更新",
|
|
97
97
|
"aria.keyword.groupLabel": "關鍵字,共 {count} 個,可用方向鍵瀏覽",
|
|
98
98
|
"common.select.placeholder": "請選擇…",
|
|
99
|
-
"common.share.facebook": "分享至 Facebook"
|
|
99
|
+
"common.share.facebook": "分享至 Facebook",
|
|
100
|
+
"knowledge.writersAndWorksSNA.download": "下載",
|
|
101
|
+
"knowledge.writersAndWorksSNA.download.img": "下載圖片",
|
|
102
|
+
"knowledge.writersAndWorksSNA.download.gephi": "下載Gephi",
|
|
103
|
+
"knowledge.writersAndWorksSNA.download.tsv": "下載Tsv",
|
|
104
|
+
"knowledge.writersAndWorksSNA.download.xls": "下載Excel",
|
|
105
|
+
"knowledge.writersAndWorksSNA.fullscreen": "全螢幕模式",
|
|
106
|
+
"knowledge.writersAndWorksSNA.big": "字級放大",
|
|
107
|
+
"knowledge.writersAndWorksSNA.small": "字級縮小",
|
|
108
|
+
"common.noData": "暫無資料",
|
|
109
|
+
"SNA.search.center": "主要搜尋中心",
|
|
110
|
+
"SNA.organization": "組織",
|
|
111
|
+
"SNA.author": "作家",
|
|
112
|
+
"SNA.publication": "著作",
|
|
113
|
+
"SNA.article": "單篇作品",
|
|
114
|
+
"SNA.keyword": "關鍵字",
|
|
115
|
+
"SNA.event": "事件",
|
|
116
|
+
"export.chronology.date": "日期",
|
|
117
|
+
"export.chronology.name": "名稱",
|
|
118
|
+
"export.chronology.description": "描述",
|
|
119
|
+
"export.chronology.type": "類型",
|
|
120
|
+
"export.chronology.source": "註(資料集名稱)",
|
|
121
|
+
"export.works.title": "名稱(書名/文章名)",
|
|
122
|
+
"export.works.author": "作者",
|
|
123
|
+
"export.works.publishYear": "出版年/發表年",
|
|
124
|
+
"export.works.keywords": "關鍵字",
|
|
125
|
+
"export.works.genre": "文學分類",
|
|
126
|
+
"export.works.publishDate": "出版日期/發表日期",
|
|
127
|
+
"export.map.publisher": "出版者",
|
|
128
|
+
"export.map.location": "地點(作品描述區域)",
|
|
129
|
+
"export.map.longitude": "經度",
|
|
130
|
+
"export.map.latitude": "緯度",
|
|
131
|
+
"export.mapLg.orgName": "組織名稱",
|
|
132
|
+
"export.mapLg.foundingPlace": "創立地點",
|
|
133
|
+
"export.mapLg.foundingLongitude": "創立地點經度",
|
|
134
|
+
"export.mapLg.foundingLatitude": "創立地點緯度",
|
|
135
|
+
"export.mapLg.activityPlace": "活動地點",
|
|
136
|
+
"export.mapLg.activityLongitude": "活動地點經度",
|
|
137
|
+
"export.mapLg.activityLatitude": "活動地點緯度"
|
|
100
138
|
};
|
|
101
139
|
|
|
102
140
|
var zhcn = {
|
|
@@ -181,7 +219,47 @@ var zhcn = {
|
|
|
181
219
|
"aria.pagination.changed": "已切换至第 {page} 页,结果已更新",
|
|
182
220
|
"aria.keyword.groupLabel": "关键字,共 {count} 个,可用方向键浏览",
|
|
183
221
|
"common.select.placeholder": "请选择…",
|
|
184
|
-
"common.share.facebook": "分享至 Facebook"
|
|
222
|
+
"common.share.facebook": "分享至 Facebook",
|
|
223
|
+
"common.form.code.check": "请输入验证码(点击图片可更换验证码)",
|
|
224
|
+
"common.sna.reset": "回到原来位置与大小",
|
|
225
|
+
"knowledge.writersAndWorksSNA.download": "下载",
|
|
226
|
+
"knowledge.writersAndWorksSNA.download.img": "下载图片",
|
|
227
|
+
"knowledge.writersAndWorksSNA.download.gephi": "下载Gephi",
|
|
228
|
+
"knowledge.writersAndWorksSNA.download.tsv": "下载Tsv",
|
|
229
|
+
"knowledge.writersAndWorksSNA.download.xls": "下载Excel",
|
|
230
|
+
"knowledge.writersAndWorksSNA.fullscreen": "全屏模式",
|
|
231
|
+
"knowledge.writersAndWorksSNA.big": "字号放大",
|
|
232
|
+
"knowledge.writersAndWorksSNA.small": "字号缩小",
|
|
233
|
+
"common.noData": "暂无资料",
|
|
234
|
+
"SNA.search.center": "主要搜寻中心",
|
|
235
|
+
"SNA.organization": "组织",
|
|
236
|
+
"SNA.author": "作家",
|
|
237
|
+
"SNA.publication": "著作",
|
|
238
|
+
"SNA.article": "单篇作品",
|
|
239
|
+
"SNA.keyword": "关键字",
|
|
240
|
+
"SNA.event": "事件",
|
|
241
|
+
"export.chronology.date": "日期",
|
|
242
|
+
"export.chronology.name": "名称",
|
|
243
|
+
"export.chronology.description": "描述",
|
|
244
|
+
"export.chronology.type": "类型",
|
|
245
|
+
"export.chronology.source": "注(资料集名称)",
|
|
246
|
+
"export.works.title": "名称(书名/文章名)",
|
|
247
|
+
"export.works.author": "作者",
|
|
248
|
+
"export.works.publishYear": "出版年/发表年",
|
|
249
|
+
"export.works.keywords": "关键字",
|
|
250
|
+
"export.works.genre": "文学分类",
|
|
251
|
+
"export.works.publishDate": "出版日期/发表日期",
|
|
252
|
+
"export.map.publisher": "出版者",
|
|
253
|
+
"export.map.location": "地点(作品描述区域)",
|
|
254
|
+
"export.map.longitude": "经度",
|
|
255
|
+
"export.map.latitude": "纬度",
|
|
256
|
+
"export.mapLg.orgName": "组织名称",
|
|
257
|
+
"export.mapLg.foundingPlace": "创立地点",
|
|
258
|
+
"export.mapLg.foundingLongitude": "创立地点经度",
|
|
259
|
+
"export.mapLg.foundingLatitude": "创立地点纬度",
|
|
260
|
+
"export.mapLg.activityPlace": "活动地点",
|
|
261
|
+
"export.mapLg.activityLongitude": "活动地点经度",
|
|
262
|
+
"export.mapLg.activityLatitude": "活动地点纬度"
|
|
185
263
|
};
|
|
186
264
|
|
|
187
265
|
var enus = {
|
|
@@ -266,7 +344,47 @@ var enus = {
|
|
|
266
344
|
"aria.pagination.changed": "Moved to page {page}. Results updated",
|
|
267
345
|
"aria.keyword.groupLabel": "Keywords, {count} items, use arrow keys to browse",
|
|
268
346
|
"common.select.placeholder": "Please select...",
|
|
269
|
-
"common.share.facebook": "Share on Facebook"
|
|
347
|
+
"common.share.facebook": "Share on Facebook",
|
|
348
|
+
"common.form.code.check": "Enter the verification code (click the image for a new one)",
|
|
349
|
+
"common.sna.reset": "Reset position and size",
|
|
350
|
+
"knowledge.writersAndWorksSNA.download": "Download",
|
|
351
|
+
"knowledge.writersAndWorksSNA.download.img": "Download image",
|
|
352
|
+
"knowledge.writersAndWorksSNA.download.gephi": "Download Gephi",
|
|
353
|
+
"knowledge.writersAndWorksSNA.download.tsv": "Download TSV",
|
|
354
|
+
"knowledge.writersAndWorksSNA.download.xls": "Download Excel",
|
|
355
|
+
"knowledge.writersAndWorksSNA.fullscreen": "Full screen",
|
|
356
|
+
"knowledge.writersAndWorksSNA.big": "Increase font size",
|
|
357
|
+
"knowledge.writersAndWorksSNA.small": "Decrease font size",
|
|
358
|
+
"common.noData": "No data",
|
|
359
|
+
"SNA.search.center": "Main node",
|
|
360
|
+
"SNA.organization": "Organization",
|
|
361
|
+
"SNA.author": "Author",
|
|
362
|
+
"SNA.publication": "Publication",
|
|
363
|
+
"SNA.article": "Article",
|
|
364
|
+
"SNA.keyword": "Keyword",
|
|
365
|
+
"SNA.event": "Event",
|
|
366
|
+
"export.chronology.date": "Date",
|
|
367
|
+
"export.chronology.name": "Name",
|
|
368
|
+
"export.chronology.description": "Description",
|
|
369
|
+
"export.chronology.type": "Type",
|
|
370
|
+
"export.chronology.source": "Note (dataset)",
|
|
371
|
+
"export.works.title": "Title (book/article)",
|
|
372
|
+
"export.works.author": "Author",
|
|
373
|
+
"export.works.publishYear": "Year of publication",
|
|
374
|
+
"export.works.keywords": "Keywords",
|
|
375
|
+
"export.works.genre": "Literary genre",
|
|
376
|
+
"export.works.publishDate": "Publication date",
|
|
377
|
+
"export.map.publisher": "Publisher",
|
|
378
|
+
"export.map.location": "Location (region described)",
|
|
379
|
+
"export.map.longitude": "Longitude",
|
|
380
|
+
"export.map.latitude": "Latitude",
|
|
381
|
+
"export.mapLg.orgName": "Organization name",
|
|
382
|
+
"export.mapLg.foundingPlace": "Place of founding",
|
|
383
|
+
"export.mapLg.foundingLongitude": "Founding place longitude",
|
|
384
|
+
"export.mapLg.foundingLatitude": "Founding place latitude",
|
|
385
|
+
"export.mapLg.activityPlace": "Place of activity",
|
|
386
|
+
"export.mapLg.activityLongitude": "Activity place longitude",
|
|
387
|
+
"export.mapLg.activityLatitude": "Activity place latitude"
|
|
270
388
|
};
|
|
271
389
|
|
|
272
390
|
var _languages;
|
package/lib/utils/{_rollupPluginBabelHelpers-8dd26e1a.js → _rollupPluginBabelHelpers-9802e640.js}
RENAMED
|
@@ -118,4 +118,4 @@ function _nonIterableRest() {
|
|
|
118
118
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
export { _toConsumableArray as _,
|
|
121
|
+
export { _toConsumableArray as _, _defineProperty as a, _slicedToArray as b, _objectWithoutProperties as c, _objectSpread2 as d };
|
package/lib/utils/arrayMerge.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as _objectSpread2 } from './_rollupPluginBabelHelpers-9802e640.js';
|
|
2
2
|
|
|
3
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
4
4
|
|
package/lib/utils/exportXlsx.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { a as _slicedToArray } from './_rollupPluginBabelHelpers-
|
|
1
|
+
import { a as _defineProperty, b as _slicedToArray } from './_rollupPluginBabelHelpers-9802e640.js';
|
|
2
|
+
import { getIntl } from '../components/globalConfig';
|
|
2
3
|
|
|
3
4
|
var fileDownload = function(data, filename, mime, bom) {
|
|
4
5
|
var blobData = (typeof bom !== 'undefined') ? [bom, data] : [data];
|
|
@@ -78,7 +79,13 @@ var snaToExcel = function snaToExcel(data) {
|
|
|
78
79
|
return [];
|
|
79
80
|
};
|
|
80
81
|
|
|
81
|
-
/*
|
|
82
|
+
/* 欄名走套件自帶的 getIntl():zh-tw 語系表的值與原本寫死的欄名相同,子站(僅 zh-tw)輸出不變;
|
|
83
|
+
主站英文頁輸出英文欄名(nmtl-web i18n 盤點 D6) */
|
|
84
|
+
var header = function header(id) {
|
|
85
|
+
return getIntl().formatMessage({
|
|
86
|
+
id: id
|
|
87
|
+
});
|
|
88
|
+
};
|
|
82
89
|
|
|
83
90
|
/* 大事年表 */
|
|
84
91
|
var chronologyConvert = function chronologyConvert(data) {
|
|
@@ -94,8 +101,18 @@ var chronologyConvert = function chronologyConvert(data) {
|
|
|
94
101
|
};
|
|
95
102
|
};
|
|
96
103
|
|
|
104
|
+
/* 資料來源:主站把名稱包在 .tooltipsources 裡(「資料來源:」前綴隨語系變動,無法再靠中文字剝除);
|
|
105
|
+
子站的時間軸 HTML 沒有這一層,沿用原本剝除「註」「資料來源:」的寫法 */
|
|
106
|
+
var getSources = function getSources() {
|
|
107
|
+
var after = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
108
|
+
var tagged = after.match(/<span class="tooltipsources">([\s\S]*?)<\/span>/);
|
|
109
|
+
if (tagged) return tagged[1].replaceAll(/(<([^>]+)>)/gi, '').trim();
|
|
110
|
+
return after.replaceAll('\n', '').replaceAll('\t', '').replace('註', '').replace('資料來源:', '').replaceAll(/(<([^>]+)>)/gi, '');
|
|
111
|
+
};
|
|
112
|
+
|
|
97
113
|
/* 做資料過濾 */
|
|
98
114
|
var newData = (data || []).map(function (_ref) {
|
|
115
|
+
var _ref2;
|
|
99
116
|
var _ref$start_date = _ref.start_date,
|
|
100
117
|
day = _ref$start_date.day,
|
|
101
118
|
month = _ref$start_date.month,
|
|
@@ -104,96 +121,65 @@ var chronologyConvert = function chronologyConvert(data) {
|
|
|
104
121
|
_ref$text = _ref.text,
|
|
105
122
|
headline = _ref$text.headline,
|
|
106
123
|
text = _ref$text.text;
|
|
107
|
-
return {
|
|
108
|
-
日期: "".concat(year || '', "/").concat(month || '', "/").concat(day || ''),
|
|
109
|
-
名稱: (displayDate || '').replace('<span>', '').replace('</span>', ''),
|
|
110
|
-
描述: (headline || '').replaceAll(/(<([^>]+)>)/gi, ''),
|
|
111
|
-
類型: getText(text).before,
|
|
112
|
-
'註(資料集名稱)': getText(text).after.replaceAll('\n', '').replaceAll('\t', '').replace('註', '').replace('資料來源:', '').replaceAll(/(<([^>]+)>)/gi, '')
|
|
113
|
-
};
|
|
124
|
+
return _ref2 = {}, _defineProperty(_ref2, header('export.chronology.date'), "".concat(year || '', "/").concat(month || '', "/").concat(day || '')), _defineProperty(_ref2, header('export.chronology.name'), (displayDate || '').replace('<span>', '').replace('</span>', '')), _defineProperty(_ref2, header('export.chronology.description'), (headline || '').replaceAll(/(<([^>]+)>)/gi, '')), _defineProperty(_ref2, header('export.chronology.type'), getText(text).before), _defineProperty(_ref2, header('export.chronology.source'), getSources(getText(text).after)), _ref2;
|
|
114
125
|
});
|
|
115
126
|
return newData;
|
|
116
127
|
};
|
|
117
128
|
|
|
118
129
|
/* 文學數據 - 地圖 */
|
|
119
130
|
var mapConvert = function mapConvert(data) {
|
|
120
|
-
return (data || []).map(function (
|
|
121
|
-
var
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
作者: author || '',
|
|
130
|
-
出版者: publisher || '',
|
|
131
|
-
'地點(作品描述區域)': locations || '',
|
|
132
|
-
經度: posX || '',
|
|
133
|
-
緯度: posY || ''
|
|
134
|
-
};
|
|
131
|
+
return (data || []).map(function (_ref3) {
|
|
132
|
+
var _ref4;
|
|
133
|
+
var title = _ref3.title,
|
|
134
|
+
author = _ref3.author,
|
|
135
|
+
publisher = _ref3.publisher,
|
|
136
|
+
locations = _ref3.locations,
|
|
137
|
+
posX = _ref3.posX,
|
|
138
|
+
posY = _ref3.posY;
|
|
139
|
+
return _ref4 = {}, _defineProperty(_ref4, header('export.works.title'), title || ''), _defineProperty(_ref4, header('export.works.author'), author || ''), _defineProperty(_ref4, header('export.map.publisher'), publisher || ''), _defineProperty(_ref4, header('export.map.location'), locations || ''), _defineProperty(_ref4, header('export.map.longitude'), posX || ''), _defineProperty(_ref4, header('export.map.latitude'), posY || ''), _ref4;
|
|
135
140
|
});
|
|
136
141
|
};
|
|
137
142
|
|
|
138
143
|
/* 文學數據 - 地圖(文學聚落) */
|
|
139
144
|
var mapLgConvert = function mapLgConvert(data) {
|
|
140
|
-
return (data || []).map(function (
|
|
141
|
-
var
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
創立地點: locationOfFormation,
|
|
151
|
-
創立地點經度: createPosX || '',
|
|
152
|
-
創立地點緯度: createPosY || '',
|
|
153
|
-
活動地點: workLocations || '',
|
|
154
|
-
活動地點經度: activePosX || '',
|
|
155
|
-
活動地點緯度: activePosY || ''
|
|
156
|
-
};
|
|
145
|
+
return (data || []).map(function (_ref5) {
|
|
146
|
+
var _ref6;
|
|
147
|
+
var title = _ref5.title,
|
|
148
|
+
locationOfFormation = _ref5.locationOfFormation,
|
|
149
|
+
workLocations = _ref5.workLocations,
|
|
150
|
+
createPosX = _ref5.createPosX,
|
|
151
|
+
createPosY = _ref5.createPosY,
|
|
152
|
+
activePosX = _ref5.activePosX,
|
|
153
|
+
activePosY = _ref5.activePosY;
|
|
154
|
+
return _ref6 = {}, _defineProperty(_ref6, header('export.mapLg.orgName'), title || ''), _defineProperty(_ref6, header('export.mapLg.foundingPlace'), locationOfFormation), _defineProperty(_ref6, header('export.mapLg.foundingLongitude'), createPosX || ''), _defineProperty(_ref6, header('export.mapLg.foundingLatitude'), createPosY || ''), _defineProperty(_ref6, header('export.mapLg.activityPlace'), workLocations || ''), _defineProperty(_ref6, header('export.mapLg.activityLongitude'), activePosX || ''), _defineProperty(_ref6, header('export.mapLg.activityLatitude'), activePosY || ''), _ref6;
|
|
157
155
|
});
|
|
158
156
|
};
|
|
159
157
|
|
|
160
158
|
/* 文學數據 - 年度聲量 */
|
|
161
159
|
var worksBarChart = function worksBarChart(data) {
|
|
162
|
-
return (data || []).map(function (
|
|
163
|
-
var
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
return author;
|
|
175
|
-
}).join(','),
|
|
176
|
-
關鍵字: (keywords || '').replaceAll('\n', ''),
|
|
177
|
-
文學分類: genreName || ''
|
|
178
|
-
};
|
|
160
|
+
return (data || []).map(function (_ref7) {
|
|
161
|
+
var _ref9;
|
|
162
|
+
var date = _ref7.date,
|
|
163
|
+
year = _ref7.year,
|
|
164
|
+
title = _ref7.title,
|
|
165
|
+
keywords = _ref7.keywords,
|
|
166
|
+
authors = _ref7.authors,
|
|
167
|
+
genreName = _ref7.genreName;
|
|
168
|
+
return _ref9 = {}, _defineProperty(_ref9, header('export.works.publishYear'), date || year || ''), _defineProperty(_ref9, header('export.works.title'), title || ''), _defineProperty(_ref9, header('export.works.author'), (authors || []).map(function (_ref8) {
|
|
169
|
+
var author = _ref8.author;
|
|
170
|
+
return author;
|
|
171
|
+
}).join(',')), _defineProperty(_ref9, header('export.works.keywords'), (keywords || '').replaceAll('\n', '')), _defineProperty(_ref9, header('export.works.genre'), genreName || ''), _ref9;
|
|
179
172
|
});
|
|
180
173
|
};
|
|
181
174
|
|
|
182
175
|
/* 文學數據 - 文學自由搭配 */
|
|
183
176
|
var worksSlider = function worksSlider(data) {
|
|
184
|
-
return (data || []).map(function (
|
|
185
|
-
var
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
作者: author || '',
|
|
191
|
-
'出版日期/發表日期': date || ''
|
|
192
|
-
// 文學分類: genreName || '',
|
|
193
|
-
// 作品描述地: workDesc || '',
|
|
194
|
-
// 作家出生地: locations,
|
|
195
|
-
// 獲獎獎項: awards || '',
|
|
196
|
-
};
|
|
177
|
+
return (data || []).map(function (_ref10) {
|
|
178
|
+
var _ref11;
|
|
179
|
+
var title = _ref10.title,
|
|
180
|
+
author = _ref10.author,
|
|
181
|
+
date = _ref10.date;
|
|
182
|
+
return _ref11 = {}, _defineProperty(_ref11, header('export.works.title'), title || ''), _defineProperty(_ref11, header('export.works.author'), author || ''), _defineProperty(_ref11, header('export.works.publishDate'), date || ''), _ref11;
|
|
197
183
|
});
|
|
198
184
|
};
|
|
199
185
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { c as _objectWithoutProperties, d as _objectSpread2 } from './_rollupPluginBabelHelpers-9802e640.js';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
|
|
4
4
|
var queryString = {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as _toConsumableArray } from './_rollupPluginBabelHelpers-
|
|
1
|
+
import { _ as _toConsumableArray } from './_rollupPluginBabelHelpers-9802e640.js';
|
|
2
2
|
import { s as snaDefine } from './snaDefine-6a2bcd94.js';
|
|
3
3
|
|
|
4
4
|
var snaPreProcess = function snaPreProcess(_ref) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daoyi/nmtl-ui",
|
|
3
3
|
"packageManager": "pnpm@10.34.5",
|
|
4
|
-
"version": "2.0.1-beta.
|
|
4
|
+
"version": "2.0.1-beta.128",
|
|
5
5
|
"description": "This project is to be used as a starter kit for building React component using Storybook and Rollup",
|
|
6
6
|
"author": "daoyi",
|
|
7
7
|
"main": "lib/index.js",
|