@expcat/tigercat-core 2.1.3 → 2.2.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/README.md +10 -0
- package/dist/{data-export-D01yjggE.d.ts → data-export-dxdDe47U.d.ts} +1 -1
- package/dist/datepicker-locales/ar-SA.d.ts +1 -1
- package/dist/datepicker-locales/de-DE.d.ts +1 -1
- package/dist/datepicker-locales/en-US.d.ts +1 -1
- package/dist/datepicker-locales/es-ES.d.ts +1 -1
- package/dist/datepicker-locales/fr-FR.d.ts +1 -1
- package/dist/datepicker-locales/id-ID.d.ts +1 -1
- package/dist/datepicker-locales/ja-JP.d.ts +1 -1
- package/dist/datepicker-locales/ko-KR.d.ts +1 -1
- package/dist/datepicker-locales/pt-BR.d.ts +1 -1
- package/dist/datepicker-locales/registry.d.ts +1 -1
- package/dist/datepicker-locales/th-TH.d.ts +1 -1
- package/dist/datepicker-locales/vi-VN.d.ts +1 -1
- package/dist/datepicker-locales/zh-CN.d.ts +1 -1
- package/dist/datepicker-locales/zh-TW.d.ts +1 -1
- package/dist/icons/registry.d.ts +23 -3
- package/dist/icons/registry.js +54 -17
- package/dist/index.d.ts +325 -147
- package/dist/index.js +394 -53
- package/dist/{locale-qoiGEqe_.d.ts → locale-B_jkaex_.d.ts} +38 -1
- package/dist/locales/ar-SA.d.ts +1 -1
- package/dist/locales/ar-SA.js +6 -1
- package/dist/locales/de-DE.d.ts +1 -1
- package/dist/locales/de-DE.js +6 -1
- package/dist/locales/en-US.d.ts +1 -1
- package/dist/locales/en-US.js +6 -1
- package/dist/locales/es-ES.d.ts +1 -1
- package/dist/locales/es-ES.js +6 -1
- package/dist/locales/fr-FR.d.ts +1 -1
- package/dist/locales/fr-FR.js +6 -1
- package/dist/locales/id-ID.d.ts +1 -1
- package/dist/locales/id-ID.js +6 -1
- package/dist/locales/ja-JP.d.ts +1 -1
- package/dist/locales/ja-JP.js +6 -1
- package/dist/locales/ko-KR.d.ts +1 -1
- package/dist/locales/ko-KR.js +6 -1
- package/dist/locales/pt-BR.d.ts +1 -1
- package/dist/locales/pt-BR.js +6 -1
- package/dist/locales/th-TH.d.ts +1 -1
- package/dist/locales/th-TH.js +6 -1
- package/dist/locales/vi-VN.d.ts +1 -1
- package/dist/locales/vi-VN.js +6 -1
- package/dist/locales/zh-CN.d.ts +1 -1
- package/dist/locales/zh-CN.js +6 -1
- package/dist/locales/zh-TW.d.ts +1 -1
- package/dist/locales/zh-TW.js +6 -1
- package/dist/{table-R9Yp1aVa.d.ts → table-GjUkOiNr.d.ts} +1 -1
- package/dist/utils/data-export.d.ts +3 -3
- package/dist/utils/table-export.d.ts +2 -2
- package/package.json +1 -1
|
@@ -281,12 +281,30 @@ interface BaseLayoutProps {
|
|
|
281
281
|
type CalendarMode = 'month' | 'year';
|
|
282
282
|
/** First column of the week. 0 = Sunday … 6 = Saturday. */
|
|
283
283
|
type WeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
284
|
+
/** A date-cell event marker. `date` is a Date or ISO `yyyy-MM-dd` string. */
|
|
285
|
+
interface CalendarEvent {
|
|
286
|
+
key?: string | number;
|
|
287
|
+
title?: string;
|
|
288
|
+
date: Date | string;
|
|
289
|
+
color?: string;
|
|
290
|
+
}
|
|
291
|
+
/** Extra payload passed to `dateCellRender` / the Vue `#dateCell` slot. */
|
|
292
|
+
interface CalendarDateCellExtra {
|
|
293
|
+
iso: string;
|
|
294
|
+
events: CalendarEvent[];
|
|
295
|
+
inCurrentMonth: boolean;
|
|
296
|
+
today: boolean;
|
|
297
|
+
selected: boolean;
|
|
298
|
+
disabled: boolean;
|
|
299
|
+
}
|
|
284
300
|
/**
|
|
285
301
|
* Shared Calendar props (framework-agnostic single source of truth).
|
|
286
302
|
*
|
|
287
303
|
* React extends this directly (`value` + `onChange`/`onPanelChange` callbacks);
|
|
288
304
|
* Vue binds the selected date with `v-model` (`modelValue`) and the same events
|
|
289
305
|
* as emits, so it reuses everything here except `value`/callbacks.
|
|
306
|
+
*
|
|
307
|
+
* Vue uses the `#dateCell` slot instead of `dateCellRender`.
|
|
290
308
|
*/
|
|
291
309
|
interface CalendarProps {
|
|
292
310
|
/** Locale override merged on top of ConfigProvider locale */
|
|
@@ -324,6 +342,18 @@ interface CalendarProps {
|
|
|
324
342
|
* Range highlight used by DatePicker. Calendar still emits one clicked date.
|
|
325
343
|
*/
|
|
326
344
|
rangeValue?: [Date | null, Date | null];
|
|
345
|
+
/**
|
|
346
|
+
* Events shown in month-view date cells. Matched by local calendar day
|
|
347
|
+
* (`yyyy-MM-dd`). Without `dateCellRender` / `#dateCell`, matching days
|
|
348
|
+
* render colored dots.
|
|
349
|
+
*/
|
|
350
|
+
events?: CalendarEvent[];
|
|
351
|
+
/**
|
|
352
|
+
* Custom month-view date cell content (React). Receives the cell date and
|
|
353
|
+
* {@link CalendarDateCellExtra}. Vue uses the `#dateCell` slot with the
|
|
354
|
+
* same payload (`{ date, events, extra }`).
|
|
355
|
+
*/
|
|
356
|
+
dateCellRender?: (date: Date, extra: CalendarDateCellExtra) => unknown;
|
|
327
357
|
/** Called when a date is selected */
|
|
328
358
|
onChange?: (date: Date) => void;
|
|
329
359
|
/**
|
|
@@ -898,6 +928,12 @@ interface TigerLocaleCalendar {
|
|
|
898
928
|
nextMonth?: string;
|
|
899
929
|
previousYear?: string;
|
|
900
930
|
nextYear?: string;
|
|
931
|
+
/** `{n}` is replaced with the event count for the date-cell aria-label. */
|
|
932
|
+
eventCountText?: string;
|
|
933
|
+
}
|
|
934
|
+
interface TigerLocaleFullscreen {
|
|
935
|
+
enterAriaLabel?: string;
|
|
936
|
+
exitAriaLabel?: string;
|
|
901
937
|
}
|
|
902
938
|
interface TigerLocaleFileManager {
|
|
903
939
|
rootText?: string;
|
|
@@ -1447,6 +1483,7 @@ interface TigerLocale {
|
|
|
1447
1483
|
formWizard?: TigerLocaleFormWizard;
|
|
1448
1484
|
tour?: TigerLocaleTour;
|
|
1449
1485
|
calendar?: TigerLocaleCalendar;
|
|
1486
|
+
fullscreen?: TigerLocaleFullscreen;
|
|
1450
1487
|
fileManager?: TigerLocaleFileManager;
|
|
1451
1488
|
imageViewer?: TigerLocaleImageViewer;
|
|
1452
1489
|
imageEditor?: TigerLocaleImageEditor;
|
|
@@ -1504,4 +1541,4 @@ type TigerLocaleLazyModule = Partial<TigerLocale> | {
|
|
|
1504
1541
|
type TigerLocaleLoader = () => PromiseLike<TigerLocaleLazyModule>;
|
|
1505
1542
|
type TigerLocaleInput = Partial<TigerLocale> | PromiseLike<TigerLocaleLazyModule> | TigerLocaleLoader;
|
|
1506
1543
|
|
|
1507
|
-
export { type
|
|
1544
|
+
export { type TigerLocaleScrollArea as $, type TigerLocaleFloatButton as A, type TigerLocaleFormValidation as B, type TigerLocaleFormWizard as C, type DatePickerLocalePreset as D, type TigerLocaleFullscreen as E, type FloatingPlacement as F, type TigerLocaleImageCompare as G, type TigerLocaleImageEditor as H, type TigerLocaleImage as I, type TigerLocaleImageViewer as J, type TigerLocaleInputLabels as K, type TigerLocaleInputNumber as L, type TigerLocaleInputOTP as M, type TigerLocaleList as N, type TigerLocaleDirection as O, type TigerLocaleMarkdownEditor as P, type TigerLocaleMarquee as Q, type TigerLocaleModal as R, type TigerLocaleNotificationCenter as S, type TigerLocale as T, type TigerLocalePageHeader as U, type TigerLocalePrintLayout as V, type TigerLocaleProgress as W, type TigerLocaleQRCode as X, type TigerLocaleRate as Y, type TigerLocaleResizable as Z, type TigerLocaleRichTextEditor as _, type DatePickerLabels as a, type TigerLocaleScrollSpy as a0, type TigerLocaleSelect as a1, type TigerLocaleSlider as a2, type TigerLocaleSplitter as a3, type TigerLocaleSpotlight as a4, type TigerLocaleStatus as a5, type TigerLocaleStepper as a6, type TigerLocaleSteps as a7, type TigerLocaleTabs as a8, type TigerLocaleTagsInput as a9, type DatePickerProps as aA, type FloatingCleanup as aB, type FloatingMiddlewareOptions as aC, type FloatingOptions as aD, type FloatingResult as aE, type InputProps as aF, type InputType as aG, OVERLAY_Z_INDEX as aH, type TigerLocaleCommon as aI, type TigerLocaleTimePicker as aJ, type TigerLocaleTimeline as aK, type TigerLocaleUpload as aL, type TimePickerModelValue as aM, type TimePickerProps as aN, autoUpdateFloating as aO, computeFloatingPosition as aP, getArrowStyles as aQ, getFloatingMiddleware as aR, getPlacementSide as aS, getTransformOrigin as aT, overlayZIndexClass as aU, type TigerLocaleTaskBoard as aa, type TigerLocaleTour as ab, type TigerLocaleTransfer as ac, type TigerLocaleTree as ad, type TigerLocaleLazyModule as ae, type TigerLocaleLoader as af, type DatePickerLocaleConfig as ag, type TimePickerLabels as ah, type InputStatus as ai, type TigerText as aj, type ComponentSize as ak, type DateFormat as al, type WeekStartsOn as am, type TimeFormat as an, type BaseLayoutProps as ao, type ReferrerPolicyAttr as ap, type CalendarEvent as aq, type CalendarDateCellExtra as ar, type CalendarMode as as, type DatePickerShortcut as at, type TimePickerRangeTuple as au, type BaseFormControlProps as av, type BaseInteractiveProps as aw, type CalendarProps as ax, type DatePickerInputDate as ay, type DatePickerModelValue as az, type TigerLocaleInput as b, type TigerLocalePagination as c, type TigerLocaleTable as d, type TigerLocaleNumberKeyboard as e, type TigerLocaleSignature as f, type TigerLocaleActivityFeed as g, type TigerLocaleAlert as h, type TigerLocaleAnchor as i, type TigerLocaleAvatarGroup as j, type TigerLocaleBackTop as k, type TigerLocaleBreadcrumb as l, type TigerLocaleCalendar as m, type TigerLocaleCarousel as n, type TigerLocaleChart as o, type TigerLocaleChatWindow as p, type TigerLocaleCodeEditor as q, type TigerLocaleCode as r, type TigerLocaleColorPicker as s, type TigerLocaleCommentThread as t, type TigerLocaleCronEditor as u, type TigerLocaleDataExport as v, type TigerLocaleDescriptions as w, type TigerLocaleDrawer as x, type TigerLocaleEmpty as y, type TigerLocaleFileManager as z };
|
package/dist/locales/ar-SA.d.ts
CHANGED
package/dist/locales/ar-SA.js
CHANGED
|
@@ -199,7 +199,12 @@ var arSA = {
|
|
|
199
199
|
previousMonth: "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0633\u0627\u0628\u0642",
|
|
200
200
|
nextMonth: "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u062A\u0627\u0644\u064A",
|
|
201
201
|
previousYear: "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629",
|
|
202
|
-
nextYear: "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629"
|
|
202
|
+
nextYear: "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629",
|
|
203
|
+
eventCountText: "{n} \u0623\u062D\u062F\u0627\u062B"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\u062F\u062E\u0648\u0644 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629",
|
|
207
|
+
exitAriaLabel: "\u0625\u0646\u0647\u0627\u0621 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\u0627\u0644\u062C\u0630\u0631",
|
package/dist/locales/de-DE.d.ts
CHANGED
package/dist/locales/de-DE.js
CHANGED
|
@@ -199,7 +199,12 @@ var deDE = {
|
|
|
199
199
|
previousMonth: "Vorheriger Monat",
|
|
200
200
|
nextMonth: "N\xE4chster Monat",
|
|
201
201
|
previousYear: "Vorheriges Jahr",
|
|
202
|
-
nextYear: "N\xE4chstes Jahr"
|
|
202
|
+
nextYear: "N\xE4chstes Jahr",
|
|
203
|
+
eventCountText: "{n} Termine"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Vollbild",
|
|
207
|
+
exitAriaLabel: "Vollbild beenden"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Stammverzeichnis",
|
package/dist/locales/en-US.d.ts
CHANGED
package/dist/locales/en-US.js
CHANGED
|
@@ -199,7 +199,12 @@ var enUS = {
|
|
|
199
199
|
previousMonth: "Previous month",
|
|
200
200
|
nextMonth: "Next month",
|
|
201
201
|
previousYear: "Previous year",
|
|
202
|
-
nextYear: "Next year"
|
|
202
|
+
nextYear: "Next year",
|
|
203
|
+
eventCountText: "{n} events"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Enter fullscreen",
|
|
207
|
+
exitAriaLabel: "Exit fullscreen"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Root",
|
package/dist/locales/es-ES.d.ts
CHANGED
package/dist/locales/es-ES.js
CHANGED
|
@@ -199,7 +199,12 @@ var esES = {
|
|
|
199
199
|
previousMonth: "Mes anterior",
|
|
200
200
|
nextMonth: "Mes siguiente",
|
|
201
201
|
previousYear: "A\xF1o anterior",
|
|
202
|
-
nextYear: "A\xF1o siguiente"
|
|
202
|
+
nextYear: "A\xF1o siguiente",
|
|
203
|
+
eventCountText: "{n} eventos"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Pantalla completa",
|
|
207
|
+
exitAriaLabel: "Salir de pantalla completa"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Ra\xEDz",
|
package/dist/locales/fr-FR.d.ts
CHANGED
package/dist/locales/fr-FR.js
CHANGED
|
@@ -199,7 +199,12 @@ var frFR = {
|
|
|
199
199
|
previousMonth: "Mois pr\xE9c\xE9dent",
|
|
200
200
|
nextMonth: "Mois suivant",
|
|
201
201
|
previousYear: "Ann\xE9e pr\xE9c\xE9dente",
|
|
202
|
-
nextYear: "Ann\xE9e suivante"
|
|
202
|
+
nextYear: "Ann\xE9e suivante",
|
|
203
|
+
eventCountText: "{n} \xE9v\xE9nements"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Plein \xE9cran",
|
|
207
|
+
exitAriaLabel: "Quitter le plein \xE9cran"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Racine",
|
package/dist/locales/id-ID.d.ts
CHANGED
package/dist/locales/id-ID.js
CHANGED
|
@@ -199,7 +199,12 @@ var idID = {
|
|
|
199
199
|
previousMonth: "Bulan sebelumnya",
|
|
200
200
|
nextMonth: "Bulan berikutnya",
|
|
201
201
|
previousYear: "Tahun sebelumnya",
|
|
202
|
-
nextYear: "Tahun berikutnya"
|
|
202
|
+
nextYear: "Tahun berikutnya",
|
|
203
|
+
eventCountText: "{n} acara"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Masuk layar penuh",
|
|
207
|
+
exitAriaLabel: "Keluar layar penuh"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Akar",
|
package/dist/locales/ja-JP.d.ts
CHANGED
package/dist/locales/ja-JP.js
CHANGED
|
@@ -199,7 +199,12 @@ var jaJP = {
|
|
|
199
199
|
previousMonth: "\u524D\u6708",
|
|
200
200
|
nextMonth: "\u7FCC\u6708",
|
|
201
201
|
previousYear: "\u524D\u5E74",
|
|
202
|
-
nextYear: "\u7FCC\u5E74"
|
|
202
|
+
nextYear: "\u7FCC\u5E74",
|
|
203
|
+
eventCountText: "{n} \u4EF6\u306E\u4E88\u5B9A"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\u5168\u753B\u9762\u8868\u793A",
|
|
207
|
+
exitAriaLabel: "\u5168\u753B\u9762\u8868\u793A\u3092\u7D42\u4E86"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\u30EB\u30FC\u30C8",
|
package/dist/locales/ko-KR.d.ts
CHANGED
package/dist/locales/ko-KR.js
CHANGED
|
@@ -199,7 +199,12 @@ var koKR = {
|
|
|
199
199
|
previousMonth: "\uC774\uC804 \uB2EC",
|
|
200
200
|
nextMonth: "\uB2E4\uC74C \uB2EC",
|
|
201
201
|
previousYear: "\uC774\uC804 \uD574",
|
|
202
|
-
nextYear: "\uB2E4\uC74C \uD574"
|
|
202
|
+
nextYear: "\uB2E4\uC74C \uD574",
|
|
203
|
+
eventCountText: "{n}\uAC1C \uC77C\uC815"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\uC804\uCCB4 \uD654\uBA74",
|
|
207
|
+
exitAriaLabel: "\uC804\uCCB4 \uD654\uBA74 \uC885\uB8CC"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\uB8E8\uD2B8",
|
package/dist/locales/pt-BR.d.ts
CHANGED
package/dist/locales/pt-BR.js
CHANGED
|
@@ -199,7 +199,12 @@ var ptBR = {
|
|
|
199
199
|
previousMonth: "M\xEAs anterior",
|
|
200
200
|
nextMonth: "Pr\xF3ximo m\xEAs",
|
|
201
201
|
previousYear: "Ano anterior",
|
|
202
|
-
nextYear: "Pr\xF3ximo ano"
|
|
202
|
+
nextYear: "Pr\xF3ximo ano",
|
|
203
|
+
eventCountText: "{n} eventos"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "Tela cheia",
|
|
207
|
+
exitAriaLabel: "Sair da tela cheia"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "Raiz",
|
package/dist/locales/th-TH.d.ts
CHANGED
package/dist/locales/th-TH.js
CHANGED
|
@@ -199,7 +199,12 @@ var thTH = {
|
|
|
199
199
|
previousMonth: "\u0E40\u0E14\u0E37\u0E2D\u0E19\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",
|
|
200
200
|
nextMonth: "\u0E40\u0E14\u0E37\u0E2D\u0E19\u0E16\u0E31\u0E14\u0E44\u0E1B",
|
|
201
201
|
previousYear: "\u0E1B\u0E35\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",
|
|
202
|
-
nextYear: "\u0E1B\u0E35\u0E16\u0E31\u0E14\u0E44\u0E1B"
|
|
202
|
+
nextYear: "\u0E1B\u0E35\u0E16\u0E31\u0E14\u0E44\u0E1B",
|
|
203
|
+
eventCountText: "{n} \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E40\u0E15\u0E47\u0E21\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D",
|
|
207
|
+
exitAriaLabel: "\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E40\u0E15\u0E47\u0E21\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\u0E23\u0E32\u0E01",
|
package/dist/locales/vi-VN.d.ts
CHANGED
package/dist/locales/vi-VN.js
CHANGED
|
@@ -199,7 +199,12 @@ var viVN = {
|
|
|
199
199
|
previousMonth: "Th\xE1ng tr\u01B0\u1EDBc",
|
|
200
200
|
nextMonth: "Th\xE1ng sau",
|
|
201
201
|
previousYear: "N\u0103m tr\u01B0\u1EDBc",
|
|
202
|
-
nextYear: "N\u0103m sau"
|
|
202
|
+
nextYear: "N\u0103m sau",
|
|
203
|
+
eventCountText: "{n} s\u1EF1 ki\u1EC7n"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "V\xE0o to\xE0n m\xE0n h\xECnh",
|
|
207
|
+
exitAriaLabel: "Tho\xE1t to\xE0n m\xE0n h\xECnh"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "G\u1ED1c",
|
package/dist/locales/zh-CN.d.ts
CHANGED
package/dist/locales/zh-CN.js
CHANGED
|
@@ -199,7 +199,12 @@ var zhCN = {
|
|
|
199
199
|
previousMonth: "\u4E0A\u4E2A\u6708",
|
|
200
200
|
nextMonth: "\u4E0B\u4E2A\u6708",
|
|
201
201
|
previousYear: "\u4E0A\u4E00\u5E74",
|
|
202
|
-
nextYear: "\u4E0B\u4E00\u5E74"
|
|
202
|
+
nextYear: "\u4E0B\u4E00\u5E74",
|
|
203
|
+
eventCountText: "{n} \u4E2A\u65E5\u7A0B"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\u8FDB\u5165\u5168\u5C4F",
|
|
207
|
+
exitAriaLabel: "\u9000\u51FA\u5168\u5C4F"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\u6839\u76EE\u5F55",
|
package/dist/locales/zh-TW.d.ts
CHANGED
package/dist/locales/zh-TW.js
CHANGED
|
@@ -199,7 +199,12 @@ var zhTW = {
|
|
|
199
199
|
previousMonth: "\u4E0A\u500B\u6708",
|
|
200
200
|
nextMonth: "\u4E0B\u500B\u6708",
|
|
201
201
|
previousYear: "\u4E0A\u4E00\u5E74",
|
|
202
|
-
nextYear: "\u4E0B\u4E00\u5E74"
|
|
202
|
+
nextYear: "\u4E0B\u4E00\u5E74",
|
|
203
|
+
eventCountText: "{n} \u500B\u884C\u7A0B"
|
|
204
|
+
},
|
|
205
|
+
fullscreen: {
|
|
206
|
+
enterAriaLabel: "\u9032\u5165\u5168\u87A2\u5E55",
|
|
207
|
+
exitAriaLabel: "\u7D50\u675F\u5168\u87A2\u5E55"
|
|
203
208
|
},
|
|
204
209
|
fileManager: {
|
|
205
210
|
rootText: "\u6839\u76EE\u9304",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as TigerLocaleInput, c as TigerLocalePagination, d as TigerLocaleTable } from './locale-
|
|
1
|
+
import { b as TigerLocaleInput, c as TigerLocalePagination, d as TigerLocaleTable } from './locale-B_jkaex_.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Pagination component types and interfaces
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { T as TableColumn } from '../table-
|
|
2
|
-
import { D as DataExportOptions, a as DataExportFormat } from '../data-export-
|
|
3
|
-
import '../locale-
|
|
1
|
+
import { T as TableColumn } from '../table-GjUkOiNr.js';
|
|
2
|
+
import { D as DataExportOptions, a as DataExportFormat } from '../data-export-dxdDe47U.js';
|
|
3
|
+
import '../locale-B_jkaex_.js';
|
|
4
4
|
import '@floating-ui/dom';
|
|
5
5
|
|
|
6
6
|
/**
|