@expcat/tigercat-react 1.2.33 → 1.2.34
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/{chunk-UQOMRXTD.mjs → chunk-7E24KEVK.mjs} +60 -44
- package/dist/{chunk-P4INKEQ3.js → chunk-7JFP3MIW.js} +60 -44
- package/dist/{chunk-FXVKJWUP.js → chunk-ANN5P7TJ.js} +5 -1
- package/dist/{chunk-D62GWQBX.mjs → chunk-CHS54PVQ.mjs} +14 -3
- package/dist/{chunk-IUOTJ73N.mjs → chunk-D4FXVNRW.mjs} +1 -1
- package/dist/{chunk-SXHP4Q7O.js → chunk-DSXII6ZF.js} +23 -10
- package/dist/{chunk-UHRZKZVU.mjs → chunk-FWIYDMJA.mjs} +19 -5
- package/dist/{chunk-KTV3ZDSQ.js → chunk-H2YHUFMK.js} +2 -2
- package/dist/{chunk-WWDCH2XX.mjs → chunk-JOB47R6Q.mjs} +5 -1
- package/dist/{chunk-K5B4XXAI.js → chunk-LROHXQWX.js} +2 -2
- package/dist/{chunk-AKDBQOKX.mjs → chunk-RL6HARKE.mjs} +20 -7
- package/dist/{chunk-CPNDCACQ.mjs → chunk-RVO6R37N.mjs} +1 -1
- package/dist/{chunk-OHSJ4KTU.js → chunk-TLU3ROLT.js} +17 -6
- package/dist/{chunk-KEF2PEP4.js → chunk-WYKUC5MM.js} +19 -5
- package/dist/components/CropUpload.js +4 -3
- package/dist/components/CropUpload.mjs +3 -2
- package/dist/components/Drawer.js +3 -2
- package/dist/components/Drawer.mjs +2 -1
- package/dist/components/FormWizard.js +2 -2
- package/dist/components/FormWizard.mjs +1 -1
- package/dist/components/Kanban.js +3 -3
- package/dist/components/Kanban.mjs +2 -2
- package/dist/components/Modal.js +3 -2
- package/dist/components/Modal.mjs +2 -1
- package/dist/components/Pagination.js +3 -2
- package/dist/components/Pagination.mjs +2 -1
- package/dist/components/TaskBoard.js +2 -2
- package/dist/components/TaskBoard.mjs +1 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +7 -7
- package/package.json +2 -2
|
@@ -72,6 +72,7 @@ var FormWizard = ({
|
|
|
72
72
|
nextText,
|
|
73
73
|
finishText,
|
|
74
74
|
locale,
|
|
75
|
+
labels: labelsOverride,
|
|
75
76
|
beforeNext,
|
|
76
77
|
autoSave,
|
|
77
78
|
onChange,
|
|
@@ -86,7 +87,10 @@ var FormWizard = ({
|
|
|
86
87
|
() => mergeTigerLocale(config.locale, locale),
|
|
87
88
|
[config.locale, locale]
|
|
88
89
|
);
|
|
89
|
-
const labels = useMemo(
|
|
90
|
+
const labels = useMemo(
|
|
91
|
+
() => getFormWizardLabels(mergedLocale, labelsOverride),
|
|
92
|
+
[mergedLocale, labelsOverride]
|
|
93
|
+
);
|
|
90
94
|
const [innerCurrent, setInnerCurrent] = useState(defaultCurrent);
|
|
91
95
|
useEffect(() => {
|
|
92
96
|
if (current !== void 0) setInnerCurrent(current);
|
|
@@ -180,52 +184,64 @@ var FormWizard = ({
|
|
|
180
184
|
[steps]
|
|
181
185
|
);
|
|
182
186
|
return /* @__PURE__ */ jsxs("div", { className: wrapperClasses, style, "data-tiger-form-wizard": true, ...props, children: [
|
|
183
|
-
showSteps && steps.length > 0 && /* @__PURE__ */ jsx(
|
|
184
|
-
"
|
|
185
|
-
bordered ? "border-b border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
186
|
-
), children: /* @__PURE__ */ jsx(
|
|
187
|
-
Steps,
|
|
187
|
+
showSteps && steps.length > 0 && /* @__PURE__ */ jsx(
|
|
188
|
+
"div",
|
|
188
189
|
{
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
190
|
+
className: classNames(
|
|
191
|
+
"px-6 py-5 bg-[var(--tiger-surface-muted,#f9fafb)]/95 backdrop-blur-sm transition-all duration-300",
|
|
192
|
+
bordered ? "border-b border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
193
|
+
),
|
|
194
|
+
children: /* @__PURE__ */ jsx(
|
|
195
|
+
Steps,
|
|
196
|
+
{
|
|
197
|
+
current: currentIndex,
|
|
198
|
+
direction,
|
|
199
|
+
size,
|
|
200
|
+
simple,
|
|
201
|
+
clickable,
|
|
202
|
+
onChange: handleStepChange,
|
|
203
|
+
children: stepsNodes
|
|
204
|
+
}
|
|
205
|
+
)
|
|
196
206
|
}
|
|
197
|
-
)
|
|
207
|
+
),
|
|
198
208
|
/* @__PURE__ */ jsx("div", { className: "px-8 py-6 flex flex-col items-center w-full min-h-[120px] transition-all duration-300", children: contentNode }),
|
|
199
|
-
showActions && /* @__PURE__ */ jsxs(
|
|
200
|
-
"
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
209
|
+
showActions && /* @__PURE__ */ jsxs(
|
|
210
|
+
"div",
|
|
211
|
+
{
|
|
212
|
+
className: classNames(
|
|
213
|
+
"flex items-center justify-between gap-3 px-8 py-4 bg-[var(--tiger-surface-muted,#f9fafb)]/95 backdrop-blur-sm transition-all duration-300",
|
|
214
|
+
bordered ? "border-t border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
215
|
+
),
|
|
216
|
+
children: [
|
|
217
|
+
!isFirst ? /* @__PURE__ */ jsx(
|
|
218
|
+
Button,
|
|
219
|
+
{
|
|
220
|
+
htmlType: "button",
|
|
221
|
+
variant: "secondary",
|
|
222
|
+
className: "group",
|
|
223
|
+
onClick: handlePrev,
|
|
224
|
+
size: size === "small" ? "sm" : "md",
|
|
225
|
+
icon: /* @__PURE__ */ jsx(ArrowLeftIcon, {}),
|
|
226
|
+
children: resolveLocaleText(labels.prevText, prevText)
|
|
227
|
+
}
|
|
228
|
+
) : /* @__PURE__ */ jsx("div", {}),
|
|
229
|
+
/* @__PURE__ */ jsx(
|
|
230
|
+
Button,
|
|
231
|
+
{
|
|
232
|
+
htmlType: "button",
|
|
233
|
+
variant: "primary",
|
|
234
|
+
className: "group",
|
|
235
|
+
onClick: handleNext,
|
|
236
|
+
size: size === "small" ? "sm" : "md",
|
|
237
|
+
icon: isLast ? /* @__PURE__ */ jsx(CheckIcon, {}) : /* @__PURE__ */ jsx(ArrowRightIcon, {}),
|
|
238
|
+
iconPosition: isLast ? "left" : "right",
|
|
239
|
+
children: isLast ? resolveLocaleText(labels.finishText, finishText) : resolveLocaleText(labels.nextText, nextText)
|
|
240
|
+
}
|
|
241
|
+
)
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
)
|
|
229
245
|
] });
|
|
230
246
|
};
|
|
231
247
|
var FormWizard_default = FormWizard;
|
|
@@ -72,6 +72,7 @@ var FormWizard = ({
|
|
|
72
72
|
nextText,
|
|
73
73
|
finishText,
|
|
74
74
|
locale,
|
|
75
|
+
labels: labelsOverride,
|
|
75
76
|
beforeNext,
|
|
76
77
|
autoSave,
|
|
77
78
|
onChange,
|
|
@@ -86,7 +87,10 @@ var FormWizard = ({
|
|
|
86
87
|
() => _tigercatcore.mergeTigerLocale.call(void 0, config.locale, locale),
|
|
87
88
|
[config.locale, locale]
|
|
88
89
|
);
|
|
89
|
-
const labels = _react.useMemo.call(void 0,
|
|
90
|
+
const labels = _react.useMemo.call(void 0,
|
|
91
|
+
() => _tigercatcore.getFormWizardLabels.call(void 0, mergedLocale, labelsOverride),
|
|
92
|
+
[mergedLocale, labelsOverride]
|
|
93
|
+
);
|
|
90
94
|
const [innerCurrent, setInnerCurrent] = _react.useState.call(void 0, defaultCurrent);
|
|
91
95
|
_react.useEffect.call(void 0, () => {
|
|
92
96
|
if (current !== void 0) setInnerCurrent(current);
|
|
@@ -180,52 +184,64 @@ var FormWizard = ({
|
|
|
180
184
|
[steps]
|
|
181
185
|
);
|
|
182
186
|
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: wrapperClasses, style, "data-tiger-form-wizard": true, ...props, children: [
|
|
183
|
-
showSteps && steps.length > 0 && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
184
|
-
"
|
|
185
|
-
bordered ? "border-b border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
186
|
-
), children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
187
|
-
_chunkM7HBWFQOjs.Steps,
|
|
187
|
+
showSteps && steps.length > 0 && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
188
|
+
"div",
|
|
188
189
|
{
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
190
|
+
className: _tigercatcore.classNames.call(void 0,
|
|
191
|
+
"px-6 py-5 bg-[var(--tiger-surface-muted,#f9fafb)]/95 backdrop-blur-sm transition-all duration-300",
|
|
192
|
+
bordered ? "border-b border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
193
|
+
),
|
|
194
|
+
children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
195
|
+
_chunkM7HBWFQOjs.Steps,
|
|
196
|
+
{
|
|
197
|
+
current: currentIndex,
|
|
198
|
+
direction,
|
|
199
|
+
size,
|
|
200
|
+
simple,
|
|
201
|
+
clickable,
|
|
202
|
+
onChange: handleStepChange,
|
|
203
|
+
children: stepsNodes
|
|
204
|
+
}
|
|
205
|
+
)
|
|
196
206
|
}
|
|
197
|
-
)
|
|
207
|
+
),
|
|
198
208
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "px-8 py-6 flex flex-col items-center w-full min-h-[120px] transition-all duration-300", children: contentNode }),
|
|
199
|
-
showActions && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
200
|
-
"
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
209
|
+
showActions && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
210
|
+
"div",
|
|
211
|
+
{
|
|
212
|
+
className: _tigercatcore.classNames.call(void 0,
|
|
213
|
+
"flex items-center justify-between gap-3 px-8 py-4 bg-[var(--tiger-surface-muted,#f9fafb)]/95 backdrop-blur-sm transition-all duration-300",
|
|
214
|
+
bordered ? "border-t border-[var(--tiger-border,#e5e7eb)]" : ""
|
|
215
|
+
),
|
|
216
|
+
children: [
|
|
217
|
+
!isFirst ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
218
|
+
_chunk56ZV3VVYjs.Button,
|
|
219
|
+
{
|
|
220
|
+
htmlType: "button",
|
|
221
|
+
variant: "secondary",
|
|
222
|
+
className: "group",
|
|
223
|
+
onClick: handlePrev,
|
|
224
|
+
size: size === "small" ? "sm" : "md",
|
|
225
|
+
icon: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ArrowLeftIcon, {}),
|
|
226
|
+
children: _tigercatcore.resolveLocaleText.call(void 0, labels.prevText, prevText)
|
|
227
|
+
}
|
|
228
|
+
) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", {}),
|
|
229
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
230
|
+
_chunk56ZV3VVYjs.Button,
|
|
231
|
+
{
|
|
232
|
+
htmlType: "button",
|
|
233
|
+
variant: "primary",
|
|
234
|
+
className: "group",
|
|
235
|
+
onClick: handleNext,
|
|
236
|
+
size: size === "small" ? "sm" : "md",
|
|
237
|
+
icon: isLast ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CheckIcon, {}) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ArrowRightIcon, {}),
|
|
238
|
+
iconPosition: isLast ? "left" : "right",
|
|
239
|
+
children: isLast ? _tigercatcore.resolveLocaleText.call(void 0, labels.finishText, finishText) : _tigercatcore.resolveLocaleText.call(void 0, labels.nextText, nextText)
|
|
240
|
+
}
|
|
241
|
+
)
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
)
|
|
229
245
|
] });
|
|
230
246
|
};
|
|
231
247
|
var FormWizard_default = FormWizard;
|
|
@@ -271,6 +271,7 @@ var TaskBoard = ({
|
|
|
271
271
|
renderColumnFooter,
|
|
272
272
|
renderEmptyColumn,
|
|
273
273
|
locale,
|
|
274
|
+
labels: labelsOverride,
|
|
274
275
|
className,
|
|
275
276
|
style,
|
|
276
277
|
...rest
|
|
@@ -280,7 +281,10 @@ var TaskBoard = ({
|
|
|
280
281
|
() => _tigercatcore.mergeTigerLocale.call(void 0, config.locale, locale),
|
|
281
282
|
[config.locale, locale]
|
|
282
283
|
);
|
|
283
|
-
const labels = _react.useMemo.call(void 0,
|
|
284
|
+
const labels = _react.useMemo.call(void 0,
|
|
285
|
+
() => _tigercatcore.getTaskBoardLabels.call(void 0, mergedLocale, labelsOverride),
|
|
286
|
+
[mergedLocale, labelsOverride]
|
|
287
|
+
);
|
|
284
288
|
const [innerColumns, setInnerColumns] = _react.useState.call(void 0, defaultColumns);
|
|
285
289
|
_react.useEffect.call(void 0, () => {
|
|
286
290
|
if (controlledColumns !== void 0) setInnerColumns(controlledColumns);
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import {
|
|
2
|
+
useTigerConfig
|
|
3
|
+
} from "./chunk-QAIBQHIO.mjs";
|
|
1
4
|
import {
|
|
2
5
|
renderBodyPortal,
|
|
3
6
|
useBodyScrollLock,
|
|
@@ -30,7 +33,8 @@ import {
|
|
|
30
33
|
resolveLocaleText,
|
|
31
34
|
resolveSwipeGesture,
|
|
32
35
|
restoreFocus,
|
|
33
|
-
shouldCloseOnMaskClick
|
|
36
|
+
shouldCloseOnMaskClick,
|
|
37
|
+
mergeTigerLocale
|
|
34
38
|
} from "@expcat/tigercat-core";
|
|
35
39
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
36
40
|
var CloseIcon = () => /* @__PURE__ */ jsx(
|
|
@@ -76,11 +80,17 @@ var Drawer = ({
|
|
|
76
80
|
onAfterLeave,
|
|
77
81
|
closeAriaLabel,
|
|
78
82
|
locale,
|
|
83
|
+
labels,
|
|
79
84
|
children,
|
|
80
85
|
footer,
|
|
81
86
|
style,
|
|
82
87
|
...rest
|
|
83
88
|
}) => {
|
|
89
|
+
const config = useTigerConfig();
|
|
90
|
+
const mergedLocale = useMemo(
|
|
91
|
+
() => mergeTigerLocale(config.locale, locale),
|
|
92
|
+
[config.locale, locale]
|
|
93
|
+
);
|
|
84
94
|
const [hasBeenOpened, setHasBeenOpened] = React.useState(open);
|
|
85
95
|
const [deferredRendered, setDeferredRendered] = React.useState(open);
|
|
86
96
|
useEffect(() => {
|
|
@@ -142,8 +152,9 @@ var Drawer = ({
|
|
|
142
152
|
const resolvedCloseAriaLabel = resolveLocaleText(
|
|
143
153
|
"Close drawer",
|
|
144
154
|
closeAriaLabel,
|
|
145
|
-
|
|
146
|
-
|
|
155
|
+
labels?.closeAriaLabel,
|
|
156
|
+
mergedLocale?.drawer?.closeAriaLabel,
|
|
157
|
+
mergedLocale?.common?.closeText
|
|
147
158
|
);
|
|
148
159
|
useEffect(() => {
|
|
149
160
|
if (open) {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
+
var _chunkTDODFBBOjs = require('./chunk-TDODFBBO.js');
|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
var _chunk56ZV3VVYjs = require('./chunk-56ZV3VVY.js');
|
|
4
7
|
|
|
5
8
|
|
|
@@ -32,6 +35,7 @@ var _react = require('react'); var _react2 = _interopRequireDefault(_react);
|
|
|
32
35
|
|
|
33
36
|
|
|
34
37
|
|
|
38
|
+
|
|
35
39
|
|
|
36
40
|
|
|
37
41
|
var _tigercatcore = require('@expcat/tigercat-core');
|
|
@@ -61,10 +65,16 @@ var Modal = ({
|
|
|
61
65
|
okText,
|
|
62
66
|
cancelText,
|
|
63
67
|
locale,
|
|
68
|
+
labels,
|
|
64
69
|
style,
|
|
65
70
|
draggable: isDraggable = false,
|
|
66
71
|
...rest
|
|
67
72
|
}) => {
|
|
73
|
+
const config = _chunkTDODFBBOjs.useTigerConfig.call(void 0, );
|
|
74
|
+
const mergedLocale = _react.useMemo.call(void 0,
|
|
75
|
+
() => _tigercatcore.mergeTigerLocale.call(void 0, config.locale, locale),
|
|
76
|
+
[config.locale, locale]
|
|
77
|
+
);
|
|
68
78
|
const [hasBeenOpened, setHasBeenOpened] = _react2.default.useState(open);
|
|
69
79
|
const [dragOffset, setDragOffset] = _react2.default.useState({ x: 0, y: 0 });
|
|
70
80
|
_react.useEffect.call(void 0, () => {
|
|
@@ -126,20 +136,23 @@ var Modal = ({
|
|
|
126
136
|
const resolvedCloseAriaLabel = _tigercatcore.resolveLocaleText.call(void 0,
|
|
127
137
|
"Close",
|
|
128
138
|
closeAriaLabel,
|
|
129
|
-
_optionalChain([
|
|
130
|
-
_optionalChain([
|
|
139
|
+
_optionalChain([labels, 'optionalAccess', _6 => _6.closeAriaLabel]),
|
|
140
|
+
_optionalChain([mergedLocale, 'optionalAccess', _7 => _7.modal, 'optionalAccess', _8 => _8.closeAriaLabel]),
|
|
141
|
+
_optionalChain([mergedLocale, 'optionalAccess', _9 => _9.common, 'optionalAccess', _10 => _10.closeText])
|
|
131
142
|
);
|
|
132
143
|
const resolvedCancelText = _tigercatcore.resolveLocaleText.call(void 0,
|
|
133
144
|
"\u53D6\u6D88",
|
|
134
145
|
cancelText,
|
|
135
|
-
_optionalChain([
|
|
136
|
-
_optionalChain([
|
|
146
|
+
_optionalChain([labels, 'optionalAccess', _11 => _11.cancelText]),
|
|
147
|
+
_optionalChain([mergedLocale, 'optionalAccess', _12 => _12.modal, 'optionalAccess', _13 => _13.cancelText]),
|
|
148
|
+
_optionalChain([mergedLocale, 'optionalAccess', _14 => _14.common, 'optionalAccess', _15 => _15.cancelText])
|
|
137
149
|
);
|
|
138
150
|
const resolvedOkText = _tigercatcore.resolveLocaleText.call(void 0,
|
|
139
151
|
"\u786E\u5B9A",
|
|
140
152
|
okText,
|
|
141
|
-
_optionalChain([
|
|
142
|
-
_optionalChain([
|
|
153
|
+
_optionalChain([labels, 'optionalAccess', _16 => _16.okText]),
|
|
154
|
+
_optionalChain([mergedLocale, 'optionalAccess', _17 => _17.modal, 'optionalAccess', _18 => _18.okText]),
|
|
155
|
+
_optionalChain([mergedLocale, 'optionalAccess', _19 => _19.common, 'optionalAccess', _20 => _20.okText])
|
|
143
156
|
);
|
|
144
157
|
const reactId = _react.useId.call(void 0, );
|
|
145
158
|
const modalId = _react.useMemo.call(void 0, () => `tiger-modal-${reactId}`, [reactId]);
|
|
@@ -175,7 +188,7 @@ var Modal = ({
|
|
|
175
188
|
}, []);
|
|
176
189
|
const handleTouchStart = _react.useCallback.call(void 0,
|
|
177
190
|
(event) => {
|
|
178
|
-
_optionalChain([dialogDivProps, 'access',
|
|
191
|
+
_optionalChain([dialogDivProps, 'access', _21 => _21.onTouchStart, 'optionalCall', _22 => _22(event)]);
|
|
179
192
|
if (!open || !mobileSheet) return;
|
|
180
193
|
const point = _tigercatcore.getGestureTouchPoint.call(void 0, event.touches);
|
|
181
194
|
touchStartRef.current = point;
|
|
@@ -185,7 +198,7 @@ var Modal = ({
|
|
|
185
198
|
);
|
|
186
199
|
const handleTouchMove = _react.useCallback.call(void 0,
|
|
187
200
|
(event) => {
|
|
188
|
-
_optionalChain([dialogDivProps, 'access',
|
|
201
|
+
_optionalChain([dialogDivProps, 'access', _23 => _23.onTouchMove, 'optionalCall', _24 => _24(event)]);
|
|
189
202
|
if (!touchStartRef.current) return;
|
|
190
203
|
const point = _tigercatcore.getGestureTouchPoint.call(void 0, event.touches);
|
|
191
204
|
if (point) {
|
|
@@ -196,7 +209,7 @@ var Modal = ({
|
|
|
196
209
|
);
|
|
197
210
|
const handleTouchEnd = _react.useCallback.call(void 0,
|
|
198
211
|
(event) => {
|
|
199
|
-
_optionalChain([dialogDivProps, 'access',
|
|
212
|
+
_optionalChain([dialogDivProps, 'access', _25 => _25.onTouchEnd, 'optionalCall', _26 => _26(event)]);
|
|
200
213
|
const gesture = _tigercatcore.resolveSwipeGesture.call(void 0,
|
|
201
214
|
touchStartRef.current,
|
|
202
215
|
_nullishCoalesce(_tigercatcore.getGestureTouchPoint.call(void 0, event.changedTouches), () => ( touchCurrentRef.current)),
|
|
@@ -211,7 +224,7 @@ var Modal = ({
|
|
|
211
224
|
);
|
|
212
225
|
const handleTouchCancel = _react.useCallback.call(void 0,
|
|
213
226
|
(event) => {
|
|
214
|
-
_optionalChain([dialogDivProps, 'access',
|
|
227
|
+
_optionalChain([dialogDivProps, 'access', _27 => _27.onTouchCancel, 'optionalCall', _28 => _28(event)]);
|
|
215
228
|
resetTouchGesture();
|
|
216
229
|
},
|
|
217
230
|
[dialogDivProps, resetTouchGesture]
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
useTigerConfig
|
|
3
|
+
} from "./chunk-QAIBQHIO.mjs";
|
|
4
|
+
|
|
1
5
|
// src/components/Pagination.tsx
|
|
2
6
|
import { useState, useCallback, useEffect, useMemo, useRef } from "react";
|
|
3
7
|
import {
|
|
@@ -24,7 +28,8 @@ import {
|
|
|
24
28
|
getPaginationJumperPage,
|
|
25
29
|
getValidatedPaginationJumperValue,
|
|
26
30
|
isLazyTigerLocale,
|
|
27
|
-
resolveTigerLocale
|
|
31
|
+
resolveTigerLocale,
|
|
32
|
+
mergeTigerLocale
|
|
28
33
|
} from "@expcat/tigercat-core";
|
|
29
34
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
30
35
|
var Pagination = ({
|
|
@@ -50,9 +55,11 @@ var Pagination = ({
|
|
|
50
55
|
onChange,
|
|
51
56
|
onPageSizeChange,
|
|
52
57
|
locale,
|
|
58
|
+
labels: labelsOverride,
|
|
53
59
|
...props
|
|
54
60
|
}) => {
|
|
55
61
|
const { "aria-label": ariaLabelProp, ...navProps } = props;
|
|
62
|
+
const config = useTigerConfig();
|
|
56
63
|
const immediateLocale = useMemo(() => getImmediateTigerLocale(locale), [locale]);
|
|
57
64
|
const [loadedLocale, setLoadedLocale] = useState(
|
|
58
65
|
immediateLocale
|
|
@@ -72,9 +79,16 @@ var Pagination = ({
|
|
|
72
79
|
};
|
|
73
80
|
}, [locale, immediateLocale]);
|
|
74
81
|
const resolvedLocale = isLazyTigerLocale(locale) ? loadedLocale : immediateLocale;
|
|
75
|
-
const
|
|
76
|
-
|
|
77
|
-
|
|
82
|
+
const mergedLocale = useMemo(
|
|
83
|
+
() => mergeTigerLocale(config.locale, resolvedLocale),
|
|
84
|
+
[config.locale, resolvedLocale]
|
|
85
|
+
);
|
|
86
|
+
const labels = useMemo(
|
|
87
|
+
() => getPaginationLabels(mergedLocale, labelsOverride),
|
|
88
|
+
[mergedLocale, labelsOverride]
|
|
89
|
+
);
|
|
90
|
+
const localeCode = mergedLocale?.locale;
|
|
91
|
+
const isRtl = getLocaleDirection(mergedLocale) === "rtl";
|
|
78
92
|
const [internalCurrent, setInternalCurrent] = useState(defaultCurrent);
|
|
79
93
|
const [internalPageSize, setInternalPageSize] = useState(defaultPageSize);
|
|
80
94
|
const [quickJumperValue, setQuickJumperValue] = useState("");
|
|
@@ -176,7 +190,7 @@ var Pagination = ({
|
|
|
176
190
|
const nextDisabled = validatedCurrentPage >= totalPages || disabled;
|
|
177
191
|
const elements = [];
|
|
178
192
|
if (showTotal) {
|
|
179
|
-
const totalTextFn = totalText || (
|
|
193
|
+
const totalTextFn = totalText || (labelsOverride?.totalText || mergedLocale?.pagination?.totalText ? (value, range) => formatPaginationTotal(labels.totalText, value, range, localeCode) : defaultTotalText);
|
|
180
194
|
elements.push(
|
|
181
195
|
/* @__PURE__ */ jsx("span", { className: getTotalTextClasses(size), children: totalTextFn(total, pageRange) }, "total")
|
|
182
196
|
);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkDSXII6ZFjs = require('./chunk-DSXII6ZF.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkFI53LYZ6js = require('./chunk-FI53LYZ6.js');
|
|
@@ -140,7 +140,7 @@ var CropUpload = ({
|
|
|
140
140
|
}
|
|
141
141
|
),
|
|
142
142
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
143
|
-
|
|
143
|
+
_chunkDSXII6ZFjs.Modal,
|
|
144
144
|
{
|
|
145
145
|
open: modalVisible,
|
|
146
146
|
size: "lg",
|
|
@@ -271,6 +271,7 @@ var TaskBoard = ({
|
|
|
271
271
|
renderColumnFooter,
|
|
272
272
|
renderEmptyColumn,
|
|
273
273
|
locale,
|
|
274
|
+
labels: labelsOverride,
|
|
274
275
|
className,
|
|
275
276
|
style,
|
|
276
277
|
...rest
|
|
@@ -280,7 +281,10 @@ var TaskBoard = ({
|
|
|
280
281
|
() => mergeTigerLocale(config.locale, locale),
|
|
281
282
|
[config.locale, locale]
|
|
282
283
|
);
|
|
283
|
-
const labels = useMemo(
|
|
284
|
+
const labels = useMemo(
|
|
285
|
+
() => getTaskBoardLabels(mergedLocale, labelsOverride),
|
|
286
|
+
[mergedLocale, labelsOverride]
|
|
287
|
+
);
|
|
284
288
|
const [innerColumns, setInnerColumns] = useState(defaultColumns);
|
|
285
289
|
useEffect(() => {
|
|
286
290
|
if (controlledColumns !== void 0) setInnerColumns(controlledColumns);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkANN5P7TJjs = require('./chunk-ANN5P7TJ.js');
|
|
4
4
|
|
|
5
5
|
// src/components/Kanban.tsx
|
|
6
6
|
var _jsxruntime = require('react/jsx-runtime');
|
|
@@ -11,7 +11,7 @@ var Kanban = ({
|
|
|
11
11
|
...props
|
|
12
12
|
}) => {
|
|
13
13
|
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
14
|
-
|
|
14
|
+
_chunkANN5P7TJjs.TaskBoard,
|
|
15
15
|
{
|
|
16
16
|
showCardCount,
|
|
17
17
|
allowAddCard,
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import {
|
|
2
|
+
useTigerConfig
|
|
3
|
+
} from "./chunk-QAIBQHIO.mjs";
|
|
1
4
|
import {
|
|
2
5
|
Button
|
|
3
6
|
} from "./chunk-USWK2S3Y.mjs";
|
|
@@ -33,7 +36,8 @@ import {
|
|
|
33
36
|
modalFooterClasses,
|
|
34
37
|
restoreFocus,
|
|
35
38
|
shouldCloseOnMaskClick,
|
|
36
|
-
resolveSwipeGesture
|
|
39
|
+
resolveSwipeGesture,
|
|
40
|
+
mergeTigerLocale
|
|
37
41
|
} from "@expcat/tigercat-core";
|
|
38
42
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
39
43
|
var Modal = ({
|
|
@@ -61,10 +65,16 @@ var Modal = ({
|
|
|
61
65
|
okText,
|
|
62
66
|
cancelText,
|
|
63
67
|
locale,
|
|
68
|
+
labels,
|
|
64
69
|
style,
|
|
65
70
|
draggable: isDraggable = false,
|
|
66
71
|
...rest
|
|
67
72
|
}) => {
|
|
73
|
+
const config = useTigerConfig();
|
|
74
|
+
const mergedLocale = useMemo(
|
|
75
|
+
() => mergeTigerLocale(config.locale, locale),
|
|
76
|
+
[config.locale, locale]
|
|
77
|
+
);
|
|
68
78
|
const [hasBeenOpened, setHasBeenOpened] = React.useState(open);
|
|
69
79
|
const [dragOffset, setDragOffset] = React.useState({ x: 0, y: 0 });
|
|
70
80
|
useEffect(() => {
|
|
@@ -126,20 +136,23 @@ var Modal = ({
|
|
|
126
136
|
const resolvedCloseAriaLabel = resolveLocaleText(
|
|
127
137
|
"Close",
|
|
128
138
|
closeAriaLabel,
|
|
129
|
-
|
|
130
|
-
|
|
139
|
+
labels?.closeAriaLabel,
|
|
140
|
+
mergedLocale?.modal?.closeAriaLabel,
|
|
141
|
+
mergedLocale?.common?.closeText
|
|
131
142
|
);
|
|
132
143
|
const resolvedCancelText = resolveLocaleText(
|
|
133
144
|
"\u53D6\u6D88",
|
|
134
145
|
cancelText,
|
|
135
|
-
|
|
136
|
-
|
|
146
|
+
labels?.cancelText,
|
|
147
|
+
mergedLocale?.modal?.cancelText,
|
|
148
|
+
mergedLocale?.common?.cancelText
|
|
137
149
|
);
|
|
138
150
|
const resolvedOkText = resolveLocaleText(
|
|
139
151
|
"\u786E\u5B9A",
|
|
140
152
|
okText,
|
|
141
|
-
|
|
142
|
-
|
|
153
|
+
labels?.okText,
|
|
154
|
+
mergedLocale?.modal?.okText,
|
|
155
|
+
mergedLocale?.common?.okText
|
|
143
156
|
);
|
|
144
157
|
const reactId = useId();
|
|
145
158
|
const modalId = useMemo(() => `tiger-modal-${reactId}`, [reactId]);
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
+
var _chunkTDODFBBOjs = require('./chunk-TDODFBBO.js');
|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
|
|
4
7
|
|
|
5
8
|
|
|
@@ -29,6 +32,7 @@ var _react = require('react'); var _react2 = _interopRequireDefault(_react);
|
|
|
29
32
|
|
|
30
33
|
|
|
31
34
|
|
|
35
|
+
|
|
32
36
|
|
|
33
37
|
|
|
34
38
|
var _tigercatcore = require('@expcat/tigercat-core');
|
|
@@ -76,11 +80,17 @@ var Drawer = ({
|
|
|
76
80
|
onAfterLeave,
|
|
77
81
|
closeAriaLabel,
|
|
78
82
|
locale,
|
|
83
|
+
labels,
|
|
79
84
|
children,
|
|
80
85
|
footer,
|
|
81
86
|
style,
|
|
82
87
|
...rest
|
|
83
88
|
}) => {
|
|
89
|
+
const config = _chunkTDODFBBOjs.useTigerConfig.call(void 0, );
|
|
90
|
+
const mergedLocale = _react.useMemo.call(void 0,
|
|
91
|
+
() => _tigercatcore.mergeTigerLocale.call(void 0, config.locale, locale),
|
|
92
|
+
[config.locale, locale]
|
|
93
|
+
);
|
|
84
94
|
const [hasBeenOpened, setHasBeenOpened] = _react2.default.useState(open);
|
|
85
95
|
const [deferredRendered, setDeferredRendered] = _react2.default.useState(open);
|
|
86
96
|
_react.useEffect.call(void 0, () => {
|
|
@@ -142,8 +152,9 @@ var Drawer = ({
|
|
|
142
152
|
const resolvedCloseAriaLabel = _tigercatcore.resolveLocaleText.call(void 0,
|
|
143
153
|
"Close drawer",
|
|
144
154
|
closeAriaLabel,
|
|
145
|
-
_optionalChain([
|
|
146
|
-
_optionalChain([
|
|
155
|
+
_optionalChain([labels, 'optionalAccess', _5 => _5.closeAriaLabel]),
|
|
156
|
+
_optionalChain([mergedLocale, 'optionalAccess', _6 => _6.drawer, 'optionalAccess', _7 => _7.closeAriaLabel]),
|
|
157
|
+
_optionalChain([mergedLocale, 'optionalAccess', _8 => _8.common, 'optionalAccess', _9 => _9.closeText])
|
|
147
158
|
);
|
|
148
159
|
_react.useEffect.call(void 0, () => {
|
|
149
160
|
if (open) {
|
|
@@ -162,7 +173,7 @@ var Drawer = ({
|
|
|
162
173
|
}, []);
|
|
163
174
|
const handleTouchStart = _react.useCallback.call(void 0,
|
|
164
175
|
(event) => {
|
|
165
|
-
_optionalChain([dialogDivProps, 'access',
|
|
176
|
+
_optionalChain([dialogDivProps, 'access', _10 => _10.onTouchStart, 'optionalCall', _11 => _11(event)]);
|
|
166
177
|
if (!open) return;
|
|
167
178
|
const point = _tigercatcore.getGestureTouchPoint.call(void 0, event.touches);
|
|
168
179
|
touchStartRef.current = point;
|
|
@@ -172,7 +183,7 @@ var Drawer = ({
|
|
|
172
183
|
);
|
|
173
184
|
const handleTouchMove = _react.useCallback.call(void 0,
|
|
174
185
|
(event) => {
|
|
175
|
-
_optionalChain([dialogDivProps, 'access',
|
|
186
|
+
_optionalChain([dialogDivProps, 'access', _12 => _12.onTouchMove, 'optionalCall', _13 => _13(event)]);
|
|
176
187
|
if (!touchStartRef.current) return;
|
|
177
188
|
const point = _tigercatcore.getGestureTouchPoint.call(void 0, event.touches);
|
|
178
189
|
if (point) {
|
|
@@ -183,7 +194,7 @@ var Drawer = ({
|
|
|
183
194
|
);
|
|
184
195
|
const handleTouchEnd = _react.useCallback.call(void 0,
|
|
185
196
|
(event) => {
|
|
186
|
-
_optionalChain([dialogDivProps, 'access',
|
|
197
|
+
_optionalChain([dialogDivProps, 'access', _14 => _14.onTouchEnd, 'optionalCall', _15 => _15(event)]);
|
|
187
198
|
const gesture = _tigercatcore.resolveSwipeGesture.call(void 0,
|
|
188
199
|
touchStartRef.current,
|
|
189
200
|
_nullishCoalesce(_tigercatcore.getGestureTouchPoint.call(void 0, event.changedTouches), () => ( touchCurrentRef.current)),
|
|
@@ -198,7 +209,7 @@ var Drawer = ({
|
|
|
198
209
|
);
|
|
199
210
|
const handleTouchCancel = _react.useCallback.call(void 0,
|
|
200
211
|
(event) => {
|
|
201
|
-
_optionalChain([dialogDivProps, 'access',
|
|
212
|
+
_optionalChain([dialogDivProps, 'access', _16 => _16.onTouchCancel, 'optionalCall', _17 => _17(event)]);
|
|
202
213
|
resetTouchGesture();
|
|
203
214
|
},
|
|
204
215
|
[dialogDivProps, resetTouchGesture]
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
var _chunkTDODFBBOjs = require('./chunk-TDODFBBO.js');
|
|
4
|
+
|
|
5
|
+
// src/components/Pagination.tsx
|
|
2
6
|
var _react = require('react');
|
|
3
7
|
|
|
4
8
|
|
|
@@ -23,6 +27,7 @@ var _react = require('react');
|
|
|
23
27
|
|
|
24
28
|
|
|
25
29
|
|
|
30
|
+
|
|
26
31
|
|
|
27
32
|
|
|
28
33
|
var _tigercatcore = require('@expcat/tigercat-core');
|
|
@@ -50,9 +55,11 @@ var Pagination = ({
|
|
|
50
55
|
onChange,
|
|
51
56
|
onPageSizeChange,
|
|
52
57
|
locale,
|
|
58
|
+
labels: labelsOverride,
|
|
53
59
|
...props
|
|
54
60
|
}) => {
|
|
55
61
|
const { "aria-label": ariaLabelProp, ...navProps } = props;
|
|
62
|
+
const config = _chunkTDODFBBOjs.useTigerConfig.call(void 0, );
|
|
56
63
|
const immediateLocale = _react.useMemo.call(void 0, () => _tigercatcore.getImmediateTigerLocale.call(void 0, locale), [locale]);
|
|
57
64
|
const [loadedLocale, setLoadedLocale] = _react.useState.call(void 0,
|
|
58
65
|
immediateLocale
|
|
@@ -72,9 +79,16 @@ var Pagination = ({
|
|
|
72
79
|
};
|
|
73
80
|
}, [locale, immediateLocale]);
|
|
74
81
|
const resolvedLocale = _tigercatcore.isLazyTigerLocale.call(void 0, locale) ? loadedLocale : immediateLocale;
|
|
75
|
-
const
|
|
76
|
-
|
|
77
|
-
|
|
82
|
+
const mergedLocale = _react.useMemo.call(void 0,
|
|
83
|
+
() => _tigercatcore.mergeTigerLocale.call(void 0, config.locale, resolvedLocale),
|
|
84
|
+
[config.locale, resolvedLocale]
|
|
85
|
+
);
|
|
86
|
+
const labels = _react.useMemo.call(void 0,
|
|
87
|
+
() => _tigercatcore.getPaginationLabels.call(void 0, mergedLocale, labelsOverride),
|
|
88
|
+
[mergedLocale, labelsOverride]
|
|
89
|
+
);
|
|
90
|
+
const localeCode = _optionalChain([mergedLocale, 'optionalAccess', _ => _.locale]);
|
|
91
|
+
const isRtl = _tigercatcore.getLocaleDirection.call(void 0, mergedLocale) === "rtl";
|
|
78
92
|
const [internalCurrent, setInternalCurrent] = _react.useState.call(void 0, defaultCurrent);
|
|
79
93
|
const [internalPageSize, setInternalPageSize] = _react.useState.call(void 0, defaultPageSize);
|
|
80
94
|
const [quickJumperValue, setQuickJumperValue] = _react.useState.call(void 0, "");
|
|
@@ -176,7 +190,7 @@ var Pagination = ({
|
|
|
176
190
|
const nextDisabled = validatedCurrentPage >= totalPages || disabled;
|
|
177
191
|
const elements = [];
|
|
178
192
|
if (showTotal) {
|
|
179
|
-
const totalTextFn = totalText || (_optionalChain([
|
|
193
|
+
const totalTextFn = totalText || (_optionalChain([labelsOverride, 'optionalAccess', _14 => _14.totalText]) || _optionalChain([mergedLocale, 'optionalAccess', _15 => _15.pagination, 'optionalAccess', _16 => _16.totalText]) ? (value, range) => _tigercatcore.formatPaginationTotal.call(void 0, labels.totalText, value, range, localeCode) : _tigercatcore.defaultTotalText);
|
|
180
194
|
elements.push(
|
|
181
195
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: _tigercatcore.getTotalTextClasses.call(void 0, size), children: totalTextFn(total, pageRange) }, "total")
|
|
182
196
|
);
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkH2YHUFMKjs = require('../chunk-H2YHUFMK.js');
|
|
4
|
+
require('../chunk-DSXII6ZF.js');
|
|
5
5
|
require('../chunk-FI53LYZ6.js');
|
|
6
|
+
require('../chunk-TDODFBBO.js');
|
|
6
7
|
require('../chunk-56ZV3VVY.js');
|
|
7
8
|
require('../chunk-YMKA4L3Z.js');
|
|
8
9
|
require('../chunk-STTQ5LXX.js');
|
|
9
10
|
|
|
10
11
|
|
|
11
|
-
exports.CropUpload =
|
|
12
|
+
exports.CropUpload = _chunkH2YHUFMKjs.CropUpload;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
CropUpload
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-D4FXVNRW.mjs";
|
|
4
|
+
import "../chunk-RL6HARKE.mjs";
|
|
5
5
|
import "../chunk-SY23FAXK.mjs";
|
|
6
|
+
import "../chunk-QAIBQHIO.mjs";
|
|
6
7
|
import "../chunk-USWK2S3Y.mjs";
|
|
7
8
|
import "../chunk-ZJWUBR2X.mjs";
|
|
8
9
|
import "../chunk-SEWNVIHH.mjs";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkTLU3ROLTjs = require('../chunk-TLU3ROLT.js');
|
|
4
|
+
require('../chunk-TDODFBBO.js');
|
|
4
5
|
require('../chunk-STTQ5LXX.js');
|
|
5
6
|
|
|
6
7
|
|
|
7
|
-
exports.Drawer =
|
|
8
|
+
exports.Drawer = _chunkTLU3ROLTjs.Drawer;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk7JFP3MIWjs = require('../chunk-7JFP3MIW.js');
|
|
5
5
|
require('../chunk-M7HBWFQO.js');
|
|
6
6
|
require('../chunk-TDODFBBO.js');
|
|
7
7
|
require('../chunk-56ZV3VVY.js');
|
|
@@ -9,4 +9,4 @@ require('../chunk-YMKA4L3Z.js');
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.FormWizard =
|
|
12
|
+
exports.FormWizard = _chunk7JFP3MIWjs.FormWizard; exports.default = _chunk7JFP3MIWjs.FormWizard_default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../chunk-
|
|
4
|
+
var _chunkLROHXQWXjs = require('../chunk-LROHXQWX.js');
|
|
5
|
+
require('../chunk-ANN5P7TJ.js');
|
|
6
6
|
require('../chunk-TDODFBBO.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.Kanban =
|
|
10
|
+
exports.Kanban = _chunkLROHXQWXjs.Kanban; exports.default = _chunkLROHXQWXjs.Kanban_default;
|
package/dist/components/Modal.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkDSXII6ZFjs = require('../chunk-DSXII6ZF.js');
|
|
4
|
+
require('../chunk-TDODFBBO.js');
|
|
4
5
|
require('../chunk-56ZV3VVY.js');
|
|
5
6
|
require('../chunk-YMKA4L3Z.js');
|
|
6
7
|
require('../chunk-STTQ5LXX.js');
|
|
7
8
|
|
|
8
9
|
|
|
9
|
-
exports.Modal =
|
|
10
|
+
exports.Modal = _chunkDSXII6ZFjs.Modal;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkWYKUC5MMjs = require('../chunk-WYKUC5MM.js');
|
|
5
|
+
require('../chunk-TDODFBBO.js');
|
|
5
6
|
|
|
6
7
|
|
|
7
8
|
|
|
8
|
-
exports.Pagination =
|
|
9
|
+
exports.Pagination = _chunkWYKUC5MMjs.Pagination; exports.default = _chunkWYKUC5MMjs.Pagination_default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkANN5P7TJjs = require('../chunk-ANN5P7TJ.js');
|
|
5
5
|
require('../chunk-TDODFBBO.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.TaskBoard =
|
|
9
|
+
exports.TaskBoard = _chunkANN5P7TJjs.TaskBoard; exports.default = _chunkANN5P7TJjs.TaskBoard_default;
|
package/dist/index.js
CHANGED
|
@@ -124,7 +124,7 @@ var _chunkG5USITWFjs = require('./chunk-G5USITWF.js');
|
|
|
124
124
|
var _chunk4DTMFQCYjs = require('./chunk-4DTMFQCY.js');
|
|
125
125
|
|
|
126
126
|
|
|
127
|
-
var
|
|
127
|
+
var _chunkWYKUC5MMjs = require('./chunk-WYKUC5MM.js');
|
|
128
128
|
|
|
129
129
|
|
|
130
130
|
var _chunkJNRUOQNTjs = require('./chunk-JNRUOQNT.js');
|
|
@@ -161,10 +161,10 @@ var _chunkI3CDTF4Ujs = require('./chunk-I3CDTF4U.js');
|
|
|
161
161
|
var _chunkSKMZTW3Kjs = require('./chunk-SKMZTW3K.js');
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
var
|
|
164
|
+
var _chunkLROHXQWXjs = require('./chunk-LROHXQWX.js');
|
|
165
165
|
|
|
166
166
|
|
|
167
|
-
var
|
|
167
|
+
var _chunkANN5P7TJjs = require('./chunk-ANN5P7TJ.js');
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
var _chunkD6TKXVEBjs = require('./chunk-D6TKXVEB.js');
|
|
@@ -205,7 +205,7 @@ var _chunkBCQQYERGjs = require('./chunk-BCQQYERG.js');
|
|
|
205
205
|
var _chunkUPPHGL64js = require('./chunk-UPPHGL64.js');
|
|
206
206
|
|
|
207
207
|
|
|
208
|
-
var
|
|
208
|
+
var _chunk7JFP3MIWjs = require('./chunk-7JFP3MIW.js');
|
|
209
209
|
|
|
210
210
|
|
|
211
211
|
|
|
@@ -231,7 +231,7 @@ var _chunkK2TXT5HQjs = require('./chunk-K2TXT5HQ.js');
|
|
|
231
231
|
var _chunkBO45CU4Qjs = require('./chunk-BO45CU4Q.js');
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
var
|
|
234
|
+
var _chunkTLU3ROLTjs = require('./chunk-TLU3ROLT.js');
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
var _chunkC3NKZZQQjs = require('./chunk-C3NKZZQQ.js');
|
|
@@ -257,10 +257,10 @@ var _chunkU3M24RPHjs = require('./chunk-U3M24RPH.js');
|
|
|
257
257
|
var _chunkNRLGZRK2js = require('./chunk-NRLGZRK2.js');
|
|
258
258
|
|
|
259
259
|
|
|
260
|
-
var
|
|
260
|
+
var _chunkH2YHUFMKjs = require('./chunk-H2YHUFMK.js');
|
|
261
261
|
|
|
262
262
|
|
|
263
|
-
var
|
|
263
|
+
var _chunkDSXII6ZFjs = require('./chunk-DSXII6ZF.js');
|
|
264
264
|
|
|
265
265
|
|
|
266
266
|
var _chunkFI53LYZ6js = require('./chunk-FI53LYZ6.js');
|
|
@@ -907,4 +907,4 @@ var version = "1.2.0";
|
|
|
907
907
|
|
|
908
908
|
|
|
909
909
|
|
|
910
|
-
exports.ActivityFeed = _chunkUVWLYRACjs.ActivityFeed; exports.Affix = _chunkRYIYE2PYjs.Affix; exports.Alert = _chunkVNMWPJDNjs.Alert; exports.Anchor = _chunkSQGFNVYTjs.Anchor; exports.AnchorLink = _chunkSQGFNVYTjs.AnchorLink; exports.AreaChart = _chunkDCKBVRLIjs.AreaChart; exports.AutoComplete = _chunkU356F7GUjs.AutoComplete; exports.Avatar = _chunk4MQCUKICjs.Avatar; exports.AvatarGroup = _chunkTQOWIDQTjs.AvatarGroup; exports.BackTop = _chunk4LIDROT4js.BackTop; exports.Badge = _chunkPNAWOJ32js.Badge; exports.BarChart = _chunkNMKFR435js.BarChart; exports.Breadcrumb = _chunkVDF2BD2Ajs.Breadcrumb; exports.BreadcrumbItem = _chunkVDF2BD2Ajs.BreadcrumbItem; exports.Button = _chunk56ZV3VVYjs.Button; exports.ButtonGroup = _chunkYMKA4L3Zjs.ButtonGroup; exports.Calendar = _chunk5EVHVZG5js.Calendar; exports.Card = _chunkUIO6O4MIjs.Card; exports.Carousel = _chunkB5TUTAVXjs.Carousel; exports.Cascader = _chunkTC6JLEGZjs.Cascader; exports.ChartAxis = _chunkE5GD3H7Ljs.ChartAxis; exports.ChartCanvas = _chunkUKLVOR4Ejs.ChartCanvas; exports.ChartGrid = _chunk3QFHVAZTjs.ChartGrid; exports.ChartLegend = _chunkWV5XHYW6js.ChartLegend; exports.ChartSeries = _chunkAX5XRD2Qjs.ChartSeries; exports.ChartTooltip = _chunkUVMQJOTXjs.ChartTooltip; exports.ChatWindow = _chunk7KPALCG3js.ChatWindow; exports.Checkbox = _chunkF7H4ALKNjs.Checkbox; exports.CheckboxGroup = _chunkJLRRXRZOjs.CheckboxGroup; exports.Code = _chunkRTHC4KWMjs.Code; exports.CodeEditor = _chunk3E76U2RGjs.CodeEditor; exports.Col = _chunkQQKP437Ljs.Col; exports.Collapse = _chunkQ2GPRAF4js.Collapse; exports.CollapsePanel = _chunkWN3ZI7FNjs.CollapsePanel; exports.ColorPicker = _chunkJB33A4S6js.ColorPicker; exports.ColorSwatch = _chunkJ4SNBXJMjs.ColorSwatch; exports.CommentThread = _chunkJCINYGGMjs.CommentThread; exports.ConfigProvider = _chunkTDODFBBOjs.ConfigProvider; exports.Container = _chunkW3VLCSJLjs.Container; exports.Content = _chunkOFCKGWTSjs.Content; exports.Countdown = _chunkU3M24RPHjs.Countdown; exports.CronEditor = _chunkNRLGZRK2js.CronEditor; exports.CropUpload =
|
|
910
|
+
exports.ActivityFeed = _chunkUVWLYRACjs.ActivityFeed; exports.Affix = _chunkRYIYE2PYjs.Affix; exports.Alert = _chunkVNMWPJDNjs.Alert; exports.Anchor = _chunkSQGFNVYTjs.Anchor; exports.AnchorLink = _chunkSQGFNVYTjs.AnchorLink; exports.AreaChart = _chunkDCKBVRLIjs.AreaChart; exports.AutoComplete = _chunkU356F7GUjs.AutoComplete; exports.Avatar = _chunk4MQCUKICjs.Avatar; exports.AvatarGroup = _chunkTQOWIDQTjs.AvatarGroup; exports.BackTop = _chunk4LIDROT4js.BackTop; exports.Badge = _chunkPNAWOJ32js.Badge; exports.BarChart = _chunkNMKFR435js.BarChart; exports.Breadcrumb = _chunkVDF2BD2Ajs.Breadcrumb; exports.BreadcrumbItem = _chunkVDF2BD2Ajs.BreadcrumbItem; exports.Button = _chunk56ZV3VVYjs.Button; exports.ButtonGroup = _chunkYMKA4L3Zjs.ButtonGroup; exports.Calendar = _chunk5EVHVZG5js.Calendar; exports.Card = _chunkUIO6O4MIjs.Card; exports.Carousel = _chunkB5TUTAVXjs.Carousel; exports.Cascader = _chunkTC6JLEGZjs.Cascader; exports.ChartAxis = _chunkE5GD3H7Ljs.ChartAxis; exports.ChartCanvas = _chunkUKLVOR4Ejs.ChartCanvas; exports.ChartGrid = _chunk3QFHVAZTjs.ChartGrid; exports.ChartLegend = _chunkWV5XHYW6js.ChartLegend; exports.ChartSeries = _chunkAX5XRD2Qjs.ChartSeries; exports.ChartTooltip = _chunkUVMQJOTXjs.ChartTooltip; exports.ChatWindow = _chunk7KPALCG3js.ChatWindow; exports.Checkbox = _chunkF7H4ALKNjs.Checkbox; exports.CheckboxGroup = _chunkJLRRXRZOjs.CheckboxGroup; exports.Code = _chunkRTHC4KWMjs.Code; exports.CodeEditor = _chunk3E76U2RGjs.CodeEditor; exports.Col = _chunkQQKP437Ljs.Col; exports.Collapse = _chunkQ2GPRAF4js.Collapse; exports.CollapsePanel = _chunkWN3ZI7FNjs.CollapsePanel; exports.ColorPicker = _chunkJB33A4S6js.ColorPicker; exports.ColorSwatch = _chunkJ4SNBXJMjs.ColorSwatch; exports.CommentThread = _chunkJCINYGGMjs.CommentThread; exports.ConfigProvider = _chunkTDODFBBOjs.ConfigProvider; exports.Container = _chunkW3VLCSJLjs.Container; exports.Content = _chunkOFCKGWTSjs.Content; exports.Countdown = _chunkU3M24RPHjs.Countdown; exports.CronEditor = _chunkNRLGZRK2js.CronEditor; exports.CropUpload = _chunkH2YHUFMKjs.CropUpload; exports.DataTableWithToolbar = _chunkVHHYTCZQjs.DataTableWithToolbar; exports.DatePicker = _chunkTSJYAEFZjs.DatePicker; exports.Descriptions = _chunk6CWZXS5Bjs.Descriptions; exports.Divider = _chunkIZXU7DF6js.Divider; exports.DonutChart = _chunkK2TXT5HQjs.DonutChart; exports.Drawer = _chunkTLU3ROLTjs.Drawer; exports.Dropdown = _chunkAKZY7QYAjs.Dropdown; exports.DropdownItem = _chunkC3NKZZQQjs.DropdownItem; exports.DropdownMenu = _chunkAKZY7QYAjs.DropdownMenu; exports.Empty = _chunkZRHDNGWOjs.Empty; exports.FileManager = _chunkHR5GBE3Pjs.FileManager; exports.FloatButton = _chunkXFPJYKBQjs.FloatButton; exports.FloatButtonGroup = _chunkXFPJYKBQjs.FloatButtonGroup; exports.Footer = _chunkTB2UHDOZjs.Footer; exports.Form = _chunkUPPHGL64js.Form; exports.FormItem = _chunkBCQQYERGjs.FormItem; exports.FormWizard = _chunk7JFP3MIWjs.FormWizard; exports.FunnelChart = _chunkQIKR5EFIjs.FunnelChart; exports.Gantt = _chunkQMK4OFC5js.Gantt; exports.GaugeChart = _chunkT7KO6EVKjs.GaugeChart; exports.Header = _chunkVJJ76I7Ujs.Header; exports.HeatmapChart = _chunkH6NC6SBXjs.HeatmapChart; exports.Icon = _chunkIHH2O7YKjs.Icon; exports.Image = _chunkCGIBGSNEjs.Image; exports.ImageAnnotation = _chunkEHIXCFD7js.ImageAnnotation; exports.ImageCropper = _chunkFI53LYZ6js.ImageCropper; exports.ImageGroup = _chunkMB6U72CIjs.ImageGroup; exports.ImageGroupContext = _chunkMB6U72CIjs.ImageGroupContext; exports.ImagePreview = _chunk4U5HSR2Hjs.ImagePreview; exports.ImageViewer = _chunkUXUYCWQCjs.ImageViewer; exports.InfiniteScroll = _chunkM73NMNZXjs.InfiniteScroll; exports.Input = _chunkZYJTHGQWjs.Input; exports.InputGroup = _chunkI3CDTF4Ujs.InputGroup; exports.InputGroupAddon = _chunkI3CDTF4Ujs.InputGroupAddon; exports.InputNumber = _chunkSKMZTW3Kjs.InputNumber; exports.Kanban = _chunkLROHXQWXjs.Kanban; exports.Layout = _chunkD6TKXVEBjs.Layout; exports.LineChart = _chunkEQD2U4KMjs.LineChart; exports.Link = _chunkQYYAXM5Fjs.Link; exports.List = _chunkWG3YS2QVjs.List; exports.Loading = _chunk3MRP3XYIjs.Loading; exports.MarkdownEditor = _chunkBFAZZUD6js.MarkdownEditor; exports.Mentions = _chunkXRNKHQTLjs.Mentions; exports.Menu = _chunkZDGBH4NAjs.Menu; exports.MenuItem = _chunkZDGBH4NAjs.MenuItem; exports.MenuItemGroup = _chunkZDGBH4NAjs.MenuItemGroup; exports.Message = _chunkLMTUM3J3js.Message; exports.MessageContainer = _chunkLMTUM3J3js.MessageContainer; exports.Modal = _chunkDSXII6ZFjs.Modal; exports.NotificationCenter = _chunkFZIF5LZWjs.NotificationCenter; exports.NotificationContainer = _chunkNMEVQPODjs.NotificationContainer; exports.NumberKeyboard = _chunkG5USITWFjs.NumberKeyboard; exports.OrgChart = _chunk4DTMFQCYjs.OrgChart; exports.Pagination = _chunkWYKUC5MMjs.Pagination; exports.PieChart = _chunkBO45CU4Qjs.PieChart; exports.Popconfirm = _chunkJNRUOQNTjs.Popconfirm; exports.Popover = _chunkIAONLOJNjs.Popover; exports.PrintLayout = _chunkQ4JMAQXJjs.PrintLayout; exports.PrintPageBreak = _chunkQ4JMAQXJjs.PrintPageBreak; exports.Progress = _chunkLODDAS62js.Progress; exports.QRCode = _chunkAUW7DCXLjs.QRCode; exports.RadarChart = _chunkEOU6WZTSjs.RadarChart; exports.Radio = _chunkTMON4MPOjs.Radio; exports.RadioGroup = _chunkZFMMAYSXjs.RadioGroup; exports.Rate = _chunkGG72T6JKjs.Rate; exports.Resizable = _chunkPFYK2V3Ejs.Resizable; exports.Result = _chunkYID7J6ZKjs.Result; exports.RichTextEditor = _chunkONTRGV5Tjs.RichTextEditor; exports.Row = _chunkVE3SYUMHjs.Row; exports.ScatterChart = _chunkW6AWN7BCjs.ScatterChart; exports.ScrollSpy = _chunkFBFCJCONjs.ScrollSpy; exports.Segmented = _chunkN2JYU4JIjs.Segmented; exports.Select = _chunk6Z4LLPZAjs.Select; exports.Sidebar = _chunkYWTZALG5js.Sidebar; exports.Signature = _chunk7ISEWLA3js.Signature; exports.Skeleton = _chunk4PPTEEDIjs.Skeleton; exports.Slider = _chunk7Z64GEMNjs.Slider; exports.Space = _chunkPTEDJ6MAjs.Space; exports.Splitter = _chunkH4AR4GXHjs.Splitter; exports.Spotlight = _chunkKYP7U6FKjs.Spotlight; exports.Statistic = _chunkZDXIP33Yjs.Statistic; exports.Stepper = _chunkMB3QU3USjs.Stepper; exports.Steps = _chunkM7HBWFQOjs.Steps; exports.StepsItem = _chunkM7HBWFQOjs.StepsItem; exports.SubMenu = _chunkZDGBH4NAjs.SubMenu; exports.SunburstChart = _chunkUIIOZEUPjs.SunburstChart; exports.Switch = _chunk4TEILQSNjs.Switch; exports.TabPane = _chunkRFHPG4KNjs.TabPane; exports.Table = _chunkVAZYY35Fjs.Table; exports.Tabs = _chunkRFHPG4KNjs.Tabs; exports.Tag = _chunkVCULFIZ5js.Tag; exports.TaskBoard = _chunkANN5P7TJjs.TaskBoard; exports.Text = _chunkUF3DXKCIjs.Text; exports.Textarea = _chunkWVVXZKNIjs.Textarea; exports.TimePicker = _chunk4SO4LANYjs.TimePicker; exports.Timeline = _chunkPR3PQUKMjs.Timeline; exports.Tooltip = _chunkKRFD27WAjs.Tooltip; exports.Tour = _chunkKQ5I7PRMjs.Tour; exports.Transfer = _chunkEF5ZTNHXjs.Transfer; exports.Tree = _chunkSIY6FDKJjs.Tree; exports.TreeMapChart = _chunkX7JAYXPYjs.TreeMapChart; exports.TreeSelect = _chunkCBYJXDW4js.TreeSelect; exports.Upload = _chunkUHFHOTNIjs.Upload; exports.VirtualList = _chunkP36GX65Njs.VirtualList; exports.VirtualTable = _chunkO7WBBZ7Jjs.VirtualTable; exports.Watermark = _chunkCHPJPIW6js.Watermark; exports.notification = _chunkNMEVQPODjs.notification; exports.useAnchorContext = _chunkSQGFNVYTjs.useAnchorContext; exports.useBreadcrumbContext = _chunkVDF2BD2Ajs.useBreadcrumbContext; exports.useChartInteraction = _chunkXTV5JLLCjs.useChartInteraction; exports.useCollapseContext = _chunkQ2GPRAF4js.useCollapseContext; exports.useControlledState = _chunkUKGQ7256js.useControlledState; exports.useDrag = useDrag; exports.useFormContext = _chunkUPPHGL64js.useFormContext; exports.useFormController = useFormController; exports.useMenuContext = _chunkZDGBH4NAjs.useMenuContext; exports.useStepsContext = _chunkM7HBWFQOjs.useStepsContext; exports.useTabsContext = _chunkRFHPG4KNjs.useTabsContext; exports.useTigerConfig = _chunkTDODFBBOjs.useTigerConfig; exports.version = version;
|
package/dist/index.mjs
CHANGED
|
@@ -124,7 +124,7 @@ import {
|
|
|
124
124
|
} from "./chunk-SIDDYP3O.mjs";
|
|
125
125
|
import {
|
|
126
126
|
Pagination
|
|
127
|
-
} from "./chunk-
|
|
127
|
+
} from "./chunk-FWIYDMJA.mjs";
|
|
128
128
|
import {
|
|
129
129
|
Popconfirm
|
|
130
130
|
} from "./chunk-VE2YEFG2.mjs";
|
|
@@ -161,10 +161,10 @@ import {
|
|
|
161
161
|
} from "./chunk-ITVLIR7T.mjs";
|
|
162
162
|
import {
|
|
163
163
|
Kanban
|
|
164
|
-
} from "./chunk-
|
|
164
|
+
} from "./chunk-RVO6R37N.mjs";
|
|
165
165
|
import {
|
|
166
166
|
TaskBoard
|
|
167
|
-
} from "./chunk-
|
|
167
|
+
} from "./chunk-JOB47R6Q.mjs";
|
|
168
168
|
import {
|
|
169
169
|
Layout
|
|
170
170
|
} from "./chunk-AYHP2OAX.mjs";
|
|
@@ -205,7 +205,7 @@ import {
|
|
|
205
205
|
} from "./chunk-Y5E4XH6H.mjs";
|
|
206
206
|
import {
|
|
207
207
|
FormWizard
|
|
208
|
-
} from "./chunk-
|
|
208
|
+
} from "./chunk-7E24KEVK.mjs";
|
|
209
209
|
import {
|
|
210
210
|
Steps,
|
|
211
211
|
StepsItem,
|
|
@@ -231,7 +231,7 @@ import {
|
|
|
231
231
|
} from "./chunk-XBM76P27.mjs";
|
|
232
232
|
import {
|
|
233
233
|
Drawer
|
|
234
|
-
} from "./chunk-
|
|
234
|
+
} from "./chunk-CHS54PVQ.mjs";
|
|
235
235
|
import {
|
|
236
236
|
DropdownItem
|
|
237
237
|
} from "./chunk-73OAHAPC.mjs";
|
|
@@ -257,10 +257,10 @@ import {
|
|
|
257
257
|
} from "./chunk-QWOE4FGJ.mjs";
|
|
258
258
|
import {
|
|
259
259
|
CropUpload
|
|
260
|
-
} from "./chunk-
|
|
260
|
+
} from "./chunk-D4FXVNRW.mjs";
|
|
261
261
|
import {
|
|
262
262
|
Modal
|
|
263
|
-
} from "./chunk-
|
|
263
|
+
} from "./chunk-RL6HARKE.mjs";
|
|
264
264
|
import {
|
|
265
265
|
ImageCropper
|
|
266
266
|
} from "./chunk-SY23FAXK.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expcat/tigercat-react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.34",
|
|
4
4
|
"description": "React components for Tigercat UI library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Yizhe Wang",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@expcat/tigercat-core": "1.2.
|
|
50
|
+
"@expcat/tigercat-core": "1.2.34"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^25.6.0",
|