@deviceinsight/ng-ui-basic-components 7.0.0 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +227 -209
- package/dist/index.js.map +1 -1
- package/dist/types/components/popup/Popup.d.ts.map +1 -1
- package/dist/types/components/popup/Popup.stories.d.ts +1 -0
- package/dist/types/components/popup/Popup.stories.d.ts.map +1 -1
- package/package.json +5 -1
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { jsx as a, jsxs as m, Fragment as
|
|
2
|
-
import * as
|
|
3
|
-
import
|
|
1
|
+
import { jsx as a, jsxs as m, Fragment as Z } from "react/jsx-runtime";
|
|
2
|
+
import * as y from "react";
|
|
3
|
+
import P, { useRef as M, useEffect as N, useState as x, createContext as X, useContext as Y } from "react";
|
|
4
4
|
import g from "classnames";
|
|
5
|
-
import { withTranslation as
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import { useFloating as
|
|
9
|
-
class
|
|
5
|
+
import { withTranslation as E, Trans as A, useTranslation as G } from "react-i18next";
|
|
6
|
+
import J from "react-dom";
|
|
7
|
+
import Q from "react-draggable";
|
|
8
|
+
import { useFloating as ee, offset as te, flip as ne, shift as ie, size as se, arrow as ae, autoUpdate as $, useClick as oe, useHover as re, safePolygon as ce, useFocus as le, useDismiss as de, useInteractions as ue, FloatingPortal as he } from "@floating-ui/react";
|
|
9
|
+
class Ye extends y.Component {
|
|
10
10
|
state = {
|
|
11
11
|
currentPageIndex: -1
|
|
12
12
|
};
|
|
@@ -15,14 +15,14 @@ class qe extends w.Component {
|
|
|
15
15
|
e != null && this.handleAccordionToggle(e);
|
|
16
16
|
}
|
|
17
17
|
handleAccordionToggle = (e) => {
|
|
18
|
-
const { onPageChange:
|
|
18
|
+
const { onPageChange: t } = this.props, i = this.state.currentPageIndex !== e ? e : -1;
|
|
19
19
|
this.setState({
|
|
20
20
|
currentPageIndex: i
|
|
21
|
-
}),
|
|
21
|
+
}), t && t(i);
|
|
22
22
|
};
|
|
23
23
|
render() {
|
|
24
|
-
const { children: e, accordionClass:
|
|
25
|
-
return /* @__PURE__ */ a("div", { className:
|
|
24
|
+
const { children: e, accordionClass: t } = this.props, { currentPageIndex: i } = this.state;
|
|
25
|
+
return /* @__PURE__ */ a("div", { className: t ? `di accordion ${t}` : "di accordion", children: e && e.map(
|
|
26
26
|
(s, o) => s ? /* @__PURE__ */ a(
|
|
27
27
|
s.type,
|
|
28
28
|
{
|
|
@@ -36,9 +36,9 @@ class qe extends w.Component {
|
|
|
36
36
|
) });
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
class
|
|
39
|
+
class Ge extends y.PureComponent {
|
|
40
40
|
render() {
|
|
41
|
-
const { badge: e, children:
|
|
41
|
+
const { badge: e, children: t, isOpen: i, info1: s, itemClasses: o, title: r, titleTooltip: c, toggle: l, tools: u, ...h } = this.props, d = ["item"];
|
|
42
42
|
return o && d.push(o), i && d.push("open"), /* @__PURE__ */ m("div", { className: d.join(" "), children: [
|
|
43
43
|
/* @__PURE__ */ m("div", { className: "head", children: [
|
|
44
44
|
/* @__PURE__ */ m("span", { className: "title", onClick: l, "data-testid": h["data-testid"], children: [
|
|
@@ -59,14 +59,14 @@ class Xe extends w.PureComponent {
|
|
|
59
59
|
] }),
|
|
60
60
|
/* @__PURE__ */ a("span", { className: "tools", children: u && u.map((p, f) => /* @__PURE__ */ a("span", { className: "tool", children: p }, f)) })
|
|
61
61
|
] }),
|
|
62
|
-
/* @__PURE__ */ a("div", { className: "cont", children:
|
|
62
|
+
/* @__PURE__ */ a("div", { className: "cont", children: t })
|
|
63
63
|
] });
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
function
|
|
67
|
-
children:
|
|
66
|
+
function pe({
|
|
67
|
+
children: n,
|
|
68
68
|
title: e,
|
|
69
|
-
type:
|
|
69
|
+
type: t,
|
|
70
70
|
disabled: i,
|
|
71
71
|
onClick: s,
|
|
72
72
|
style: o,
|
|
@@ -86,63 +86,63 @@ function ue({
|
|
|
86
86
|
"button",
|
|
87
87
|
{
|
|
88
88
|
"data-testid": f["data-testid"],
|
|
89
|
-
type:
|
|
89
|
+
type: t || "button",
|
|
90
90
|
className: g("di button", d, { small: p, primary: l, danger: u, link: h }),
|
|
91
91
|
title: typeof v == "string" ? v : void 0,
|
|
92
92
|
disabled: i,
|
|
93
93
|
onClick: s,
|
|
94
94
|
style: o,
|
|
95
95
|
tabIndex: r,
|
|
96
|
-
children:
|
|
96
|
+
children: n
|
|
97
97
|
}
|
|
98
98
|
);
|
|
99
99
|
}
|
|
100
|
-
const
|
|
101
|
-
|
|
100
|
+
const b = E()(pe), me = ({ children: n, dividing: e, className: t, style: i }) => /* @__PURE__ */ a("div", { style: i, className: `di button-row ${e ? "dividing" : ""} ${t || ""}`, children: n });
|
|
101
|
+
me.defaultProps = {
|
|
102
102
|
dividing: !1
|
|
103
103
|
};
|
|
104
|
-
const
|
|
105
|
-
const
|
|
104
|
+
const fe = (n) => !!n.touches, ge = (n, e) => {
|
|
105
|
+
const t = n.getBoundingClientRect();
|
|
106
106
|
let i, s;
|
|
107
|
-
return
|
|
108
|
-
},
|
|
109
|
-
const
|
|
107
|
+
return fe(e) ? (i = e.touches[0].pageX, s = e.touches[0].pageY) : (i = e.pageX, s = e.pageY), t.left <= i && t.right >= i && t.top <= s && t.bottom >= s;
|
|
108
|
+
}, ve = (n, e) => {
|
|
109
|
+
const t = M(e);
|
|
110
110
|
N(() => {
|
|
111
|
-
|
|
111
|
+
t.current = e;
|
|
112
112
|
}, [e]), N(() => {
|
|
113
113
|
const i = (s) => {
|
|
114
|
-
|
|
115
|
-
(r) => r !== s.target && !r.contains(s.target) && !
|
|
116
|
-
) &&
|
|
114
|
+
n.filter((r) => r != null).every(
|
|
115
|
+
(r) => r !== s.target && !r.contains(s.target) && !ge(r, s)
|
|
116
|
+
) && t.current(s);
|
|
117
117
|
};
|
|
118
118
|
return document.addEventListener("mousedown", i, !0), document.addEventListener("touchstart", i, !0), () => {
|
|
119
119
|
document.removeEventListener("mousedown", i, !0), document.removeEventListener("touchstart", i, !0);
|
|
120
120
|
};
|
|
121
|
-
}, [
|
|
121
|
+
}, [n]);
|
|
122
122
|
};
|
|
123
|
-
function
|
|
124
|
-
const r =
|
|
123
|
+
function we({ className: n, width: e, header: t, content: i, footer: s, onOutsideClick: o }) {
|
|
124
|
+
const r = M(null), [c, l] = x(null);
|
|
125
125
|
return N(() => {
|
|
126
126
|
l(r.current);
|
|
127
|
-
}, []),
|
|
127
|
+
}, []), ve([c], () => {
|
|
128
128
|
o && o();
|
|
129
|
-
}), /* @__PURE__ */ a(
|
|
129
|
+
}), /* @__PURE__ */ a(Q, { handle: ".modal-header", nodeRef: r, children: /* @__PURE__ */ m(
|
|
130
130
|
"div",
|
|
131
131
|
{
|
|
132
132
|
ref: r,
|
|
133
|
-
className: `modal-window ${
|
|
133
|
+
className: `modal-window ${n || ""}`,
|
|
134
134
|
style: {
|
|
135
135
|
maxWidth: e
|
|
136
136
|
},
|
|
137
137
|
children: [
|
|
138
|
-
|
|
138
|
+
t && /* @__PURE__ */ a("div", { className: "modal-header", children: t }),
|
|
139
139
|
i && /* @__PURE__ */ a("div", { className: "modal-content", children: i }),
|
|
140
140
|
s && /* @__PURE__ */ a("div", { className: "modal-footer", children: s })
|
|
141
141
|
]
|
|
142
142
|
}
|
|
143
143
|
) });
|
|
144
144
|
}
|
|
145
|
-
class
|
|
145
|
+
class ye extends P.Component {
|
|
146
146
|
static defaultProps = {
|
|
147
147
|
width: "60%"
|
|
148
148
|
};
|
|
@@ -169,29 +169,29 @@ class ve extends T.Component {
|
|
|
169
169
|
e.key === "Escape" && this.props.onOutsideClick && this.props.onOutsideClick(e);
|
|
170
170
|
};
|
|
171
171
|
render() {
|
|
172
|
-
return this.container ?
|
|
173
|
-
/* @__PURE__ */ a("div", { className: this.state.className, onMouseDown: this.props.onMouseDown, children: /* @__PURE__ */ a(
|
|
172
|
+
return this.container ? J.createPortal(
|
|
173
|
+
/* @__PURE__ */ a("div", { className: this.state.className, onMouseDown: this.props.onMouseDown, children: /* @__PURE__ */ a(we, { ...this.props }) }),
|
|
174
174
|
this.container
|
|
175
175
|
) : null;
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
-
class
|
|
178
|
+
class Je extends P.PureComponent {
|
|
179
179
|
render() {
|
|
180
180
|
return /* @__PURE__ */ a("div", { id: "modal-root" });
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
|
-
class
|
|
183
|
+
class xe extends P.Component {
|
|
184
184
|
static defaultProps = {
|
|
185
185
|
size: 56,
|
|
186
186
|
center: !1
|
|
187
187
|
};
|
|
188
188
|
render() {
|
|
189
|
-
const { size: e = 56, center:
|
|
189
|
+
const { size: e = 56, center: t, ...i } = this.props;
|
|
190
190
|
let s = {
|
|
191
191
|
width: e,
|
|
192
192
|
height: e
|
|
193
193
|
};
|
|
194
|
-
return
|
|
194
|
+
return t && (s = {
|
|
195
195
|
...s,
|
|
196
196
|
position: "absolute",
|
|
197
197
|
top: "50%",
|
|
@@ -201,37 +201,37 @@ class we extends T.Component {
|
|
|
201
201
|
}), /* @__PURE__ */ a("div", { className: "di spinner", style: s, ...i });
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
|
-
class
|
|
204
|
+
class Qe extends P.Component {
|
|
205
205
|
static defaultProps = {
|
|
206
206
|
size: 56
|
|
207
207
|
};
|
|
208
208
|
render() {
|
|
209
|
-
const { show: e, size:
|
|
209
|
+
const { show: e, size: t, children: i, className: s } = this.props, o = `di spinner-wrapper ${s || ""}`;
|
|
210
210
|
return /* @__PURE__ */ m("div", { className: o, children: [
|
|
211
211
|
/* @__PURE__ */ a(
|
|
212
212
|
"div",
|
|
213
213
|
{
|
|
214
214
|
className: `di spinner-container ${e ? "visible" : ""}`,
|
|
215
215
|
"data-testid": this.props["data-testid"],
|
|
216
|
-
children: /* @__PURE__ */ a(
|
|
216
|
+
children: /* @__PURE__ */ a(xe, { size: t, center: !0 })
|
|
217
217
|
}
|
|
218
218
|
),
|
|
219
219
|
i
|
|
220
220
|
] });
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
|
-
const
|
|
224
|
-
switch (
|
|
223
|
+
const be = (n, e) => {
|
|
224
|
+
switch (n) {
|
|
225
225
|
case "checkbox":
|
|
226
226
|
case "radio":
|
|
227
227
|
return "di checkbox";
|
|
228
228
|
case "toggle":
|
|
229
229
|
return e ? "di toggle toggle-small" : "di toggle";
|
|
230
230
|
default:
|
|
231
|
-
throw Error(`type not support: ${
|
|
231
|
+
throw Error(`type not support: ${n}`);
|
|
232
232
|
}
|
|
233
|
-
},
|
|
234
|
-
switch (
|
|
233
|
+
}, Ce = (n, e) => {
|
|
234
|
+
switch (n) {
|
|
235
235
|
case "checkbox":
|
|
236
236
|
return "box";
|
|
237
237
|
case "radio":
|
|
@@ -239,12 +239,12 @@ const ye = (t, e) => {
|
|
|
239
239
|
case "toggle":
|
|
240
240
|
return e ? "switch switch-small" : "switch";
|
|
241
241
|
default:
|
|
242
|
-
throw Error(`type not support: ${
|
|
242
|
+
throw Error(`type not support: ${n}`);
|
|
243
243
|
}
|
|
244
|
-
},
|
|
245
|
-
type:
|
|
244
|
+
}, ke = ({
|
|
245
|
+
type: n = "checkbox",
|
|
246
246
|
value: e,
|
|
247
|
-
onChange:
|
|
247
|
+
onChange: t,
|
|
248
248
|
title: i,
|
|
249
249
|
label: s,
|
|
250
250
|
disabled: o = !1,
|
|
@@ -253,7 +253,7 @@ const ye = (t, e) => {
|
|
|
253
253
|
t: l,
|
|
254
254
|
...u
|
|
255
255
|
}) => {
|
|
256
|
-
const h =
|
|
256
|
+
const h = n === "toggle" ? {
|
|
257
257
|
backgroundColor: e ? c : "gray"
|
|
258
258
|
} : {}, d = i ? l(i.id, {
|
|
259
259
|
defaultValue: i.defaultValue
|
|
@@ -264,7 +264,7 @@ const ye = (t, e) => {
|
|
|
264
264
|
"label",
|
|
265
265
|
{
|
|
266
266
|
title: d,
|
|
267
|
-
className:
|
|
267
|
+
className: be(n, r),
|
|
268
268
|
"data-testid": u["wrapper-data-testid"],
|
|
269
269
|
children: [
|
|
270
270
|
/* @__PURE__ */ a(
|
|
@@ -273,14 +273,14 @@ const ye = (t, e) => {
|
|
|
273
273
|
type: "checkbox",
|
|
274
274
|
checked: e,
|
|
275
275
|
disabled: o,
|
|
276
|
-
onChange: () =>
|
|
276
|
+
onChange: () => t(!e),
|
|
277
277
|
"data-testid": u["data-testid"]
|
|
278
278
|
}
|
|
279
279
|
),
|
|
280
280
|
/* @__PURE__ */ a(
|
|
281
281
|
"div",
|
|
282
282
|
{
|
|
283
|
-
className:
|
|
283
|
+
className: Ce(n, r),
|
|
284
284
|
style: h,
|
|
285
285
|
"data-testid": u["innerdiv-data-testid"]
|
|
286
286
|
}
|
|
@@ -289,51 +289,51 @@ const ye = (t, e) => {
|
|
|
289
289
|
]
|
|
290
290
|
}
|
|
291
291
|
);
|
|
292
|
-
},
|
|
293
|
-
function
|
|
294
|
-
const e = typeof
|
|
292
|
+
}, et = E()(ke);
|
|
293
|
+
function V(n) {
|
|
294
|
+
const e = typeof n == "object" && typeof n.id == "string" && typeof n.defaultValue == "string";
|
|
295
295
|
return e && console.warn(
|
|
296
296
|
"Please use strings instead of TranslationDescriptors to initialize the Confirm modal, because TranslationDescriptors are deprecated"
|
|
297
297
|
), e;
|
|
298
298
|
}
|
|
299
|
-
function
|
|
300
|
-
return
|
|
299
|
+
function k(n) {
|
|
300
|
+
return V(n) ? /* @__PURE__ */ a(A, { i18nKey: n.id, children: n.defaultValue }) : n;
|
|
301
301
|
}
|
|
302
|
-
function
|
|
303
|
-
title:
|
|
302
|
+
function Ne({
|
|
303
|
+
title: n,
|
|
304
304
|
message: e,
|
|
305
|
-
onAccept:
|
|
305
|
+
onAccept: t,
|
|
306
306
|
onDecline: i,
|
|
307
307
|
acceptButtonLabel: s,
|
|
308
308
|
declineButtonLabel: o,
|
|
309
309
|
acceptButtonStyle: r = "primary"
|
|
310
310
|
}) {
|
|
311
311
|
return /* @__PURE__ */ a(
|
|
312
|
-
|
|
312
|
+
ye,
|
|
313
313
|
{
|
|
314
|
-
header:
|
|
315
|
-
content:
|
|
314
|
+
header: k(n),
|
|
315
|
+
content: k(e),
|
|
316
316
|
footer: /* @__PURE__ */ m("div", { children: [
|
|
317
317
|
/* @__PURE__ */ a(
|
|
318
|
-
|
|
318
|
+
b,
|
|
319
319
|
{
|
|
320
320
|
primary: r === "primary",
|
|
321
321
|
danger: r === "danger",
|
|
322
|
-
onClick:
|
|
323
|
-
children: s ?
|
|
322
|
+
onClick: t,
|
|
323
|
+
children: s ? k(s) : /* @__PURE__ */ a(A, { i18nKey: "form.accept", children: "Accept" })
|
|
324
324
|
}
|
|
325
325
|
),
|
|
326
|
-
/* @__PURE__ */ a(
|
|
326
|
+
/* @__PURE__ */ a(b, { onClick: i, children: o ? k(o) : /* @__PURE__ */ a(A, { i18nKey: "form.decline", children: "Decline" }) })
|
|
327
327
|
] }),
|
|
328
328
|
width: 500
|
|
329
329
|
}
|
|
330
330
|
);
|
|
331
331
|
}
|
|
332
|
-
const
|
|
332
|
+
const I = X({
|
|
333
333
|
confirm: () => Promise.reject(new Error("ConfirmProvider is missing!"))
|
|
334
334
|
});
|
|
335
|
-
function
|
|
336
|
-
const [e,
|
|
335
|
+
function Ae({ children: n }) {
|
|
336
|
+
const [e, t] = x(!1), [i, s] = x({
|
|
337
337
|
title: "",
|
|
338
338
|
message: "",
|
|
339
339
|
onAccept: () => {
|
|
@@ -343,39 +343,39 @@ function Ne({ children: t }) {
|
|
|
343
343
|
});
|
|
344
344
|
async function o(r) {
|
|
345
345
|
return new Promise((c) => {
|
|
346
|
-
|
|
346
|
+
t(!0), s({
|
|
347
347
|
...r,
|
|
348
348
|
onAccept: () => {
|
|
349
|
-
|
|
349
|
+
t(!1), c(!0);
|
|
350
350
|
},
|
|
351
351
|
onDecline: () => {
|
|
352
|
-
|
|
352
|
+
t(!1), c(!1);
|
|
353
353
|
}
|
|
354
354
|
});
|
|
355
355
|
});
|
|
356
356
|
}
|
|
357
|
-
return /* @__PURE__ */ m(
|
|
358
|
-
|
|
359
|
-
e && /* @__PURE__ */ a(
|
|
357
|
+
return /* @__PURE__ */ m(I.Provider, { value: { confirm: o }, children: [
|
|
358
|
+
n,
|
|
359
|
+
e && /* @__PURE__ */ a(Ne, { ...i })
|
|
360
360
|
] });
|
|
361
361
|
}
|
|
362
|
-
function
|
|
363
|
-
const
|
|
364
|
-
if (!
|
|
362
|
+
function Te() {
|
|
363
|
+
const n = Y(I);
|
|
364
|
+
if (!n)
|
|
365
365
|
throw new Error("ConfirmProvider is missing");
|
|
366
|
-
const { confirm: e } =
|
|
366
|
+
const { confirm: e } = n;
|
|
367
367
|
return e;
|
|
368
368
|
}
|
|
369
|
-
function
|
|
370
|
-
function e(
|
|
371
|
-
const i =
|
|
369
|
+
function tt(n) {
|
|
370
|
+
function e(t) {
|
|
371
|
+
const i = Te(), { t: s } = G();
|
|
372
372
|
function o(c) {
|
|
373
|
-
return
|
|
373
|
+
return V(c) ? s(c.id, { defaultValue: c.defaultValue }) : c;
|
|
374
374
|
}
|
|
375
375
|
async function r(c, l, u, h, d, p) {
|
|
376
376
|
const f = await i({
|
|
377
377
|
title: o(c),
|
|
378
|
-
message:
|
|
378
|
+
message: V(l) ? o(l) : l,
|
|
379
379
|
acceptButtonLabel: u ? o(u) : void 0,
|
|
380
380
|
declineButtonLabel: h ? o(h) : void 0,
|
|
381
381
|
acceptButtonStyle: p
|
|
@@ -386,46 +386,46 @@ function Qe(t) {
|
|
|
386
386
|
return new Promise(() => {
|
|
387
387
|
});
|
|
388
388
|
}
|
|
389
|
-
return /* @__PURE__ */ a(
|
|
389
|
+
return /* @__PURE__ */ a(n, { ...t, confirm: r });
|
|
390
390
|
}
|
|
391
391
|
return function(i) {
|
|
392
|
-
return /* @__PURE__ */ a(
|
|
392
|
+
return /* @__PURE__ */ a(Ae, { children: /* @__PURE__ */ a(e, { ...i }) });
|
|
393
393
|
};
|
|
394
394
|
}
|
|
395
|
-
const
|
|
396
|
-
function
|
|
397
|
-
const { add: e, del:
|
|
395
|
+
const Pe = "data:image/svg+xml,%3csvg%20id='icon-add_24_sga'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cpolygon%20id='plus'%20points='20%2010%2014%2010%2014%204%2010%204%2010%2010%204%2010%204%2014%2010%2014%2010%2020%2014%2020%2014%2014%2020%2014%2020%2010'/%3e%3c/svg%3e", Ve = "data:image/svg+xml,%3csvg%20id='icon-cross_24_sga'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cpolygon%20id='icon-cross_24'%20points='20%206.28%2017.87%204%2012%209.78%206.13%204%204%206.28%209.78%2011.97%204%2017.66%206.13%2019.93%2012%2014.15%2017.87%2019.93%2020%2017.66%2014.22%2011.97%2020%206.28'/%3e%3c/svg%3e", Me = "data:image/svg+xml,%3csvg%20id='icon-edit-24_sga'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cg%20id='stift'%3e%3cpath%20d='M7.35,12.65a.5.5,0,0,0,0,.7l3.3,3.3a.5.5,0,0,0,.7,0l8.3-8.3A1.4,1.4,0,0,0,20,7.5v-1a1.4,1.4,0,0,0-.35-.85l-1.3-1.3A1.4,1.4,0,0,0,17.5,4h-1a1.4,1.4,0,0,0-.85.35Z'/%3e%3c/g%3e%3cpath%20d='M5.9,14.49c.06-.27.26-.33.45-.14l3.3,3.3c.19.19.13.39-.14.45l-4,.8a.3.3,0,0,1-.39-.39Z'/%3e%3c/svg%3e", Ee = "data:image/svg+xml,%3csvg%20id='icon-gear-24_sga'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cg%20id='icon-gear-24_sga-2'%20data-name='icon-gear-24_sga'%3e%3cpath%20d='M22.82,14.06A1.25,1.25,0,0,0,24,13,7.66,7.66,0,0,0,24,12,7.66,7.66,0,0,0,24,11a1.25,1.25,0,0,0-1.13-1l-1.09,0A1.49,1.49,0,0,1,20.44,9c-.15-.47-.44-2-.07-2.37l.74-.81a1.16,1.16,0,0,0,0-1.5L19.7,2.87a1.16,1.16,0,0,0-1.5,0l-.81.74a1.5,1.5,0,0,1-1.54.27c-.44-.23-1.72-1.08-1.74-1.63l0-1.09A1.25,1.25,0,0,0,13,.05a7.66,7.66,0,0,0-1,0,7.66,7.66,0,0,0-1,.05,1.25,1.25,0,0,0-1,1.13l0,1.09A1.52,1.52,0,0,1,9,3.56c-.47.15-2,.44-2.37.07L5.8,2.89a1.16,1.16,0,0,0-1.5,0L2.86,4.3a1.18,1.18,0,0,0,0,1.5l.74.81A1.5,1.5,0,0,1,3.9,8.15c-.23.44-1.08,1.72-1.63,1.74l-1.09,0A1.25,1.25,0,0,0,.05,11a7.66,7.66,0,0,0,0,1,7.66,7.66,0,0,0,.05,1,1.25,1.25,0,0,0,1.13,1l1.09,0A1.47,1.47,0,0,1,3.55,15c.16.48.45,2,.08,2.37l-.74.81a1.16,1.16,0,0,0,0,1.5L4.3,21.13a1.16,1.16,0,0,0,1.5,0l.81-.74a1.5,1.5,0,0,1,1.54-.27c.44.23,1.72,1.08,1.75,1.63l0,1.09A1.25,1.25,0,0,0,11,24,7.66,7.66,0,0,0,12,24,7.66,7.66,0,0,0,13,24a1.25,1.25,0,0,0,1-1.13l0-1.09A1.49,1.49,0,0,1,15,20.44c.47-.15,2-.44,2.37-.07l.81.74a1.16,1.16,0,0,0,1.5,0l1.43-1.43a1.16,1.16,0,0,0,0-1.5l-.74-.81a1.5,1.5,0,0,1-.27-1.54c.23-.44,1.08-1.72,1.63-1.74ZM12,15.5A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5Z'/%3e%3c/g%3e%3c/svg%3e", Be = "data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M22.1,4.91a3,3,0,0,0-3-3H6.44a2.4,2.4,0,0,1,1.34-.4h12.6A2.12,2.12,0,0,1,22.5,3.62V17.26a1.42,1.42,0,0,1-.4,1Z'/%3e%3cpath%20d='M20.38,1H7.78A3,3,0,0,0,5.26,2.4H19.09A2.51,2.51,0,0,1,21.6,4.91V19.12A1.94,1.94,0,0,0,23,17.26V3.62A2.62,2.62,0,0,0,20.38,1Z'/%3e%3c/g%3e%3cg%3e%3cpath%20d='M4,21.5A1.5,1.5,0,0,1,2.5,20V5.8A1.5,1.5,0,0,1,4,4.3H18.2a1.5,1.5,0,0,1,1.5,1.5V20a1.5,1.5,0,0,1-1.5,1.5ZM9.5,18a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5V14.5H16a.5.5,0,0,0,.5-.5V12a.5.5,0,0,0-.5-.5H12.5V8a.5.5,0,0,0-.5-.5H10a.5.5,0,0,0-.5.5v3.5H6a.5.5,0,0,0-.5.5v2a.5.5,0,0,0,.5.5H9.5Z'/%3e%3cpath%20d='M18.2,4.8a1,1,0,0,1,1,1V20a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5.8a1,1,0,0,1,1-1H18.2M9,11H6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1H9v3a1,1,0,0,0,1,1h2a1,1,0,0,0,1-1V15h3a1,1,0,0,0,1-1V12a1,1,0,0,0-1-1H13V8a1,1,0,0,0-1-1H10A1,1,0,0,0,9,8v3m9.2-7.2H4a2,2,0,0,0-2,2V20a2,2,0,0,0,2,2H18.2a2,2,0,0,0,2-2V5.8a2,2,0,0,0-2-2ZM6,14V12h4V8h2v4h4v2H12v4H10V14Z'/%3e%3c/g%3e%3c/svg%3e", He = "data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3e%3cpolygon%20points='7.92%2012%202.84%207%2013%207%207.92%2012'/%3e%3crect%20x='5'%20y='2'%20width='6'%20height='5'/%3e%3crect%20x='2'%20y='14'%20width='12'%20height='1'/%3e%3c/svg%3e", Le = "data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%3e%3ccircle%20class='cls-1'%20cx='5.5'%20cy='5.5'%20r='4.5'/%3e%3cpath%20d='M5.5,2A3.5,3.5,0,1,1,2,5.5,3.5,3.5,0,0,1,5.5,2m0-1A4.5,4.5,0,1,0,10,5.5,4.49,4.49,0,0,0,5.5,1Z'/%3e%3c/g%3e%3crect%20x='6.79'%20y='10.04'%20width='7.74'%20height='2.16'%20transform='translate(10.98%20-4.28)%20rotate(45)'/%3e%3c/svg%3e", _e = "data:image/svg+xml,%3csvg%20data-name='icon_key'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2027.02%2027'%3e%3cpath%20d='M35.07,16.5a8.52,8.52,0,0,0-7.69,12L17.2,38.8a2.46,2.46,0,0,0,0,3.46,2.41,2.41,0,0,0,3.42,0l1.69-1.7,2.91,2.94L31,37.63l-2.92-3,2.44-2.46a8.31,8.31,0,0,0,4.51,1.33,8.53,8.53,0,0,0,0-17Zm0,3.91A4.62,4.62,0,1,1,30.5,25,4.6,4.6,0,0,1,35.07,20.41Z'%20transform='translate(-16.49%20-16.5)'/%3e%3c/svg%3e", $e = "data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cg%20id='Pfeilende'%3e%3cpath%20d='M24,10H15l9-8.93Z'/%3e%3c/g%3e%3cpath%20d='M18.45,18.78A9.33,9.33,0,0,1,2.62,14.86,9.8,9.8,0,0,1,8.89,2.69,9.42,9.42,0,0,1,20.72,9.14H23A11.72,11.72,0,0,0,11.68,0,11.74,11.74,0,0,0,.34,9.14,12,12,0,0,0,8.89,23.65a11.43,11.43,0,0,0,11.16-3.31Z'/%3e%3c/svg%3e", Re = "data:image/svg+xml,%3csvg%20data-name='icon_fullscreen_sga'%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%3e%3cpolygon%20id='ecke'%20points='2%2014%202%2010%200%2010%200%2016%206%2016%206%2014%202%2014'/%3e%3cpolygon%20id='ecke-2'%20data-name='ecke'%20points='2%202%206%202%206%200%200%200%200%206%202%206%202%202'/%3e%3cpolygon%20id='ecke-3'%20data-name='ecke'%20points='14%2014%2010%2014%2010%2016%2016%2016%2016%2010%2014%2010%2014%2014'/%3e%3cpolygon%20id='ecke-4'%20data-name='ecke'%20points='10%200%2010%202%2014%202%2014%206%2016%206%2016%200%2010%200'/%3e%3c/svg%3e", Ze = "data:image/svg+xml,%3csvg%20id='Icon_help'%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20id='icon_help-2'%20data-name='icon_help'%20d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm1,16H11V15h2Zm1.7-6.26a4.85,4.85,0,0,1-.49.81l-1,1.37a1.36,1.36,0,0,0-.18.34,1,1,0,0,0-.07.38L13,14H11l.1-.49a2,2,0,0,1,.13-.77,3.18,3.18,0,0,1,.4-.69l1-1.33a3.21,3.21,0,0,0,.29-.46,1.19,1.19,0,0,0,.11-.47,1.17,1.17,0,0,0-.3-.82,1.07,1.07,0,0,0-.83-.33A1,1,0,0,0,11.1,9a1.25,1.25,0,0,0-.28.83H9a2.94,2.94,0,0,1,.23-1.17,2.45,2.45,0,0,1,.63-.88,2.9,2.9,0,0,1,.93-.55A3.13,3.13,0,0,1,11.94,7a3.31,3.31,0,0,1,1.13.19,2.82,2.82,0,0,1,.94.54,2.62,2.62,0,0,1,.65.88A3,3,0,0,1,14.9,9.8,2.16,2.16,0,0,1,14.7,10.74Z'%20style='opacity:%200.2'/%3e%3c/svg%3e", Ie = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='icon_star_16'%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%3e%3cpath%20id='star'%20d='M8,0l2.45,4.97,5.55,.76-4.04,3.83,.99,5.44-4.94-2.61-4.94,2.61,.99-5.44L0,5.73l5.55-.76L8,0Z'/%3e%3c/svg%3e";
|
|
396
|
+
function Se(n) {
|
|
397
|
+
const { add: e, del: t, edit: i, config: s, duplicate: o, search: r, download: c, sync: l, fullscreen: u, iconKey: h, documentation: d, star: p } = n;
|
|
398
398
|
if (e)
|
|
399
|
-
return Ae;
|
|
400
|
-
if (n)
|
|
401
|
-
return Te;
|
|
402
|
-
if (i)
|
|
403
399
|
return Pe;
|
|
404
|
-
if (
|
|
400
|
+
if (t)
|
|
405
401
|
return Ve;
|
|
406
|
-
if (
|
|
402
|
+
if (i)
|
|
407
403
|
return Me;
|
|
408
|
-
if (
|
|
404
|
+
if (s)
|
|
405
|
+
return Ee;
|
|
406
|
+
if (o)
|
|
409
407
|
return Be;
|
|
408
|
+
if (r)
|
|
409
|
+
return Le;
|
|
410
410
|
if (c)
|
|
411
|
-
return
|
|
411
|
+
return He;
|
|
412
412
|
if (l)
|
|
413
|
-
return
|
|
413
|
+
return $e;
|
|
414
414
|
if (u)
|
|
415
|
-
return
|
|
415
|
+
return Re;
|
|
416
416
|
if (h)
|
|
417
|
-
return
|
|
417
|
+
return _e;
|
|
418
418
|
if (d)
|
|
419
|
-
return
|
|
419
|
+
return Ze;
|
|
420
420
|
if (p)
|
|
421
|
-
return
|
|
421
|
+
return Ie;
|
|
422
422
|
throw Error("getSrc: no icon type specified");
|
|
423
423
|
}
|
|
424
|
-
function
|
|
425
|
-
const { add: e, del:
|
|
424
|
+
function De(n) {
|
|
425
|
+
const { add: e, del: t, edit: i, config: s, duplicate: o, search: r, download: c, sync: l, fullscreen: u, iconKey: h, documentation: d, star: p } = n;
|
|
426
426
|
if (e)
|
|
427
427
|
return "icon add";
|
|
428
|
-
if (
|
|
428
|
+
if (t)
|
|
429
429
|
return "icon delete";
|
|
430
430
|
if (i)
|
|
431
431
|
return "icon edit";
|
|
@@ -449,14 +449,14 @@ function Ie(t) {
|
|
|
449
449
|
return "icon star";
|
|
450
450
|
throw Error("getAlt: no icon type specified");
|
|
451
451
|
}
|
|
452
|
-
function
|
|
452
|
+
function T(n) {
|
|
453
453
|
let e;
|
|
454
|
-
return
|
|
454
|
+
return n.large ? e = { width: 24, height: 24 } : e = { width: 16, height: 16 }, n.inverted && (e = { ...e, filter: "invert(1)" }), /* @__PURE__ */ a("img", { src: Se(n), className: `di icon ${n.className || ""}`, alt: De(n), style: e });
|
|
455
455
|
}
|
|
456
|
-
function
|
|
457
|
-
text:
|
|
456
|
+
function nt({
|
|
457
|
+
text: n,
|
|
458
458
|
small: e = !1,
|
|
459
|
-
large:
|
|
459
|
+
large: t = !1,
|
|
460
460
|
onDelete: i,
|
|
461
461
|
className: s,
|
|
462
462
|
onClick: o,
|
|
@@ -470,21 +470,21 @@ function et({
|
|
|
470
470
|
"span",
|
|
471
471
|
{
|
|
472
472
|
onClick: o,
|
|
473
|
-
className: g("di label", s, { large:
|
|
473
|
+
className: g("di label", s, { large: t, small: e, removable: i, clickable: !!o }),
|
|
474
474
|
"data-testid": c["data-testid"],
|
|
475
475
|
children: [
|
|
476
|
-
typeof
|
|
477
|
-
/* @__PURE__ */ a(
|
|
478
|
-
i && /* @__PURE__ */ a("span", { "data-testid": c["delete-button-data-testid"], className: "remove", onClick: l, children: /* @__PURE__ */ a(
|
|
476
|
+
typeof n == "string" ? n : n && /* @__PURE__ */ a(A, { i18nKey: n.id, children: n.defaultValue }),
|
|
477
|
+
/* @__PURE__ */ a(Z, { children: r }),
|
|
478
|
+
i && /* @__PURE__ */ a("span", { "data-testid": c["delete-button-data-testid"], className: "remove", onClick: l, children: /* @__PURE__ */ a(T, { del: !0, inverted: !0 }) })
|
|
479
479
|
]
|
|
480
480
|
}
|
|
481
481
|
);
|
|
482
482
|
}
|
|
483
|
-
const
|
|
484
|
-
function
|
|
485
|
-
placement:
|
|
483
|
+
const w = 16;
|
|
484
|
+
function S({
|
|
485
|
+
placement: n = "bottom",
|
|
486
486
|
mode: e = ["click"],
|
|
487
|
-
disabled:
|
|
487
|
+
disabled: t,
|
|
488
488
|
handler: i,
|
|
489
489
|
handlerWrapperClassName: s,
|
|
490
490
|
preventDestroyContentOnHide: o,
|
|
@@ -493,60 +493,78 @@ function I({
|
|
|
493
493
|
className: l,
|
|
494
494
|
children: u
|
|
495
495
|
}) {
|
|
496
|
-
const h =
|
|
497
|
-
|
|
496
|
+
const h = M(null), {
|
|
497
|
+
elements: d,
|
|
498
|
+
update: p,
|
|
499
|
+
refs: f,
|
|
500
|
+
floatingStyles: v,
|
|
501
|
+
context: C,
|
|
502
|
+
middlewareData: B,
|
|
503
|
+
placement: H
|
|
504
|
+
} = ee({
|
|
505
|
+
placement: n,
|
|
498
506
|
open: r,
|
|
499
507
|
onOpenChange: c,
|
|
500
|
-
whileElementsMounted: o ? void 0 :
|
|
508
|
+
whileElementsMounted: o ? void 0 : $,
|
|
501
509
|
middleware: [
|
|
502
|
-
|
|
510
|
+
te({
|
|
503
511
|
mainAxis: 12
|
|
504
512
|
}),
|
|
505
|
-
te(),
|
|
506
513
|
ne({
|
|
507
|
-
|
|
508
|
-
const z = `${Math.max(0, j - _)}px`, U = `${Math.max(0, B - _)}px`;
|
|
509
|
-
H.floating.style.maxWidth = z, H.floating.style.maxHeight = U;
|
|
510
|
-
}
|
|
514
|
+
padding: w
|
|
511
515
|
}),
|
|
512
516
|
ie({
|
|
517
|
+
padding: w
|
|
518
|
+
}),
|
|
519
|
+
se({
|
|
520
|
+
padding: w,
|
|
521
|
+
apply({ availableHeight: L, availableWidth: z, elements: _ }) {
|
|
522
|
+
const U = `${Math.max(0, z - w)}px`, q = `${Math.max(0, L - w)}px`;
|
|
523
|
+
_.floating.style.maxWidth = U, _.floating.style.maxHeight = q;
|
|
524
|
+
}
|
|
525
|
+
}),
|
|
526
|
+
ae({
|
|
513
527
|
element: h
|
|
514
528
|
})
|
|
515
529
|
]
|
|
516
530
|
});
|
|
517
531
|
N(() => {
|
|
518
532
|
if (o && r && d.reference && d.floating)
|
|
519
|
-
return
|
|
533
|
+
return $(d.reference, d.floating, p);
|
|
520
534
|
}, [d.floating, d.reference, r, p, o]);
|
|
521
|
-
const
|
|
522
|
-
enabled: !
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
535
|
+
const D = oe(C, {
|
|
536
|
+
enabled: !t && e.includes("click"),
|
|
537
|
+
keyboardHandlers: !1
|
|
538
|
+
// Prevent space key from being blocked in input fields (floating-ui issue #1812)
|
|
539
|
+
}), K = re(C, {
|
|
540
|
+
enabled: !t && e.includes("hover"),
|
|
541
|
+
handleClose: ce()
|
|
542
|
+
}), F = le(C, { enabled: !t && e.includes("focus") }), O = de(C), { getReferenceProps: W, getFloatingProps: j } = ue([D, K, F, O]);
|
|
543
|
+
return /* @__PURE__ */ m(Z, { children: [
|
|
526
544
|
/* @__PURE__ */ a(
|
|
527
545
|
"span",
|
|
528
546
|
{
|
|
529
547
|
style: { display: "inline-block" },
|
|
530
548
|
className: g("popup-handler-wrapper", s),
|
|
531
549
|
ref: f.setReference,
|
|
532
|
-
...
|
|
550
|
+
...W(),
|
|
533
551
|
children: i
|
|
534
552
|
}
|
|
535
553
|
),
|
|
536
|
-
(r || o) && /* @__PURE__ */ a(
|
|
554
|
+
(r || o) && /* @__PURE__ */ a(he, { children: /* @__PURE__ */ a(
|
|
537
555
|
"div",
|
|
538
556
|
{
|
|
539
557
|
className: g("di popup-wrapper", { hidden: o && !r }),
|
|
540
558
|
ref: f.setFloating,
|
|
541
559
|
style: v,
|
|
542
|
-
...
|
|
543
|
-
children: /* @__PURE__ */ m("div", { className: g("di popup",
|
|
560
|
+
...j(),
|
|
561
|
+
children: /* @__PURE__ */ m("div", { className: g("di popup", H, l), children: [
|
|
544
562
|
/* @__PURE__ */ a(
|
|
545
563
|
"div",
|
|
546
564
|
{
|
|
547
|
-
className: g("popup-arrow",
|
|
565
|
+
className: g("popup-arrow", H),
|
|
548
566
|
ref: h,
|
|
549
|
-
style: { left:
|
|
567
|
+
style: { left: B.arrow?.x, top: B.arrow?.y }
|
|
550
568
|
}
|
|
551
569
|
),
|
|
552
570
|
/* @__PURE__ */ a("div", { className: "popup-content", children: u })
|
|
@@ -555,26 +573,26 @@ function I({
|
|
|
555
573
|
) })
|
|
556
574
|
] });
|
|
557
575
|
}
|
|
558
|
-
function
|
|
559
|
-
const [c, l] =
|
|
576
|
+
function Ke({ content: n, inverted: e, children: t, disabled: i, style: s, direction: o, className: r }) {
|
|
577
|
+
const [c, l] = x(!1);
|
|
560
578
|
return /* @__PURE__ */ a(
|
|
561
|
-
|
|
579
|
+
S,
|
|
562
580
|
{
|
|
563
581
|
open: c,
|
|
564
582
|
onOpenChange: l,
|
|
565
|
-
handler:
|
|
583
|
+
handler: t,
|
|
566
584
|
disabled: i,
|
|
567
585
|
mode: ["hover"],
|
|
568
586
|
placement: o || "top",
|
|
569
587
|
className: `bubble ${e ? "inverted" : ""} ${r || ""}`,
|
|
570
|
-
children: /* @__PURE__ */ a("span", { className: "bubble-content", style: s, children:
|
|
588
|
+
children: /* @__PURE__ */ a("span", { className: "bubble-content", style: s, children: n })
|
|
571
589
|
}
|
|
572
590
|
);
|
|
573
591
|
}
|
|
574
|
-
function
|
|
575
|
-
const [o, r] =
|
|
592
|
+
function it({ content: n, children: e, className: t, direction: i, disabled: s }) {
|
|
593
|
+
const [o, r] = x(!1);
|
|
576
594
|
return /* @__PURE__ */ a(
|
|
577
|
-
|
|
595
|
+
S,
|
|
578
596
|
{
|
|
579
597
|
open: o,
|
|
580
598
|
disabled: s,
|
|
@@ -582,12 +600,12 @@ function tt({ content: t, children: e, className: n, direction: i, disabled: s }
|
|
|
582
600
|
onOpenChange: r,
|
|
583
601
|
handler: e,
|
|
584
602
|
placement: i || "right",
|
|
585
|
-
className: `tooltip inverted ${
|
|
586
|
-
children: /* @__PURE__ */ a("span", { className: "tooltip-content", children:
|
|
603
|
+
className: `tooltip inverted ${t || ""}`,
|
|
604
|
+
children: /* @__PURE__ */ a("span", { className: "tooltip-content", children: n })
|
|
587
605
|
}
|
|
588
606
|
);
|
|
589
607
|
}
|
|
590
|
-
class
|
|
608
|
+
class st extends y.Component {
|
|
591
609
|
state = {
|
|
592
610
|
currentTab: this.props.pages.length ? this.props.pages[0].name : null
|
|
593
611
|
};
|
|
@@ -598,7 +616,7 @@ class nt extends w.Component {
|
|
|
598
616
|
};
|
|
599
617
|
currentTabPage = () => {
|
|
600
618
|
const e = typeof this.props.currentTab == "string" ? this.props.currentTab : this.state.currentTab;
|
|
601
|
-
return this.props.pages.find(({ name:
|
|
619
|
+
return this.props.pages.find(({ name: t }) => e === t);
|
|
602
620
|
};
|
|
603
621
|
isCurrentTab = (e) => (typeof this.props.currentTab == "string" ? this.props.currentTab : this.state.currentTab) === e;
|
|
604
622
|
renderBody = () => {
|
|
@@ -606,23 +624,23 @@ class nt extends w.Component {
|
|
|
606
624
|
return e && typeof e.renderBody == "function" ? e.renderBody() : null;
|
|
607
625
|
};
|
|
608
626
|
render() {
|
|
609
|
-
const { pages: e, disabled:
|
|
627
|
+
const { pages: e, disabled: t } = this.props;
|
|
610
628
|
return /* @__PURE__ */ m("div", { children: [
|
|
611
629
|
/* @__PURE__ */ a("div", { className: "di tabs", children: e.map(
|
|
612
|
-
({ name: i, renderHeading: s, tabDescription: o }) => o ? /* @__PURE__ */ a(
|
|
630
|
+
({ name: i, renderHeading: s, tabDescription: o }) => o ? /* @__PURE__ */ a(Ke, { inverted: !0, content: o, className: "bubble-tab-description", children: /* @__PURE__ */ a(
|
|
613
631
|
"button",
|
|
614
632
|
{
|
|
615
633
|
"data-testid": "tab-button",
|
|
616
|
-
className: `item ${
|
|
617
|
-
onClick: () => !
|
|
634
|
+
className: `item ${t ? "disabled" : ""} ${this.isCurrentTab(i) ? "active" : ""}`,
|
|
635
|
+
onClick: () => !t && this.handleClick(i),
|
|
618
636
|
children: s()
|
|
619
637
|
}
|
|
620
638
|
) }, i) : /* @__PURE__ */ a(
|
|
621
639
|
"button",
|
|
622
640
|
{
|
|
623
641
|
"data-testid": "tab-button",
|
|
624
|
-
className: `item ${
|
|
625
|
-
onClick: () => !
|
|
642
|
+
className: `item ${t ? "disabled" : ""} ${this.isCurrentTab(i) ? "active" : ""}`,
|
|
643
|
+
onClick: () => !t && this.handleClick(i),
|
|
626
644
|
children: s()
|
|
627
645
|
},
|
|
628
646
|
i
|
|
@@ -632,45 +650,45 @@ class nt extends w.Component {
|
|
|
632
650
|
] });
|
|
633
651
|
}
|
|
634
652
|
}
|
|
635
|
-
const
|
|
636
|
-
onChange:
|
|
653
|
+
const R = ({
|
|
654
|
+
onChange: n,
|
|
637
655
|
inputElement: e,
|
|
638
|
-
style:
|
|
656
|
+
style: t
|
|
639
657
|
}) => /* @__PURE__ */ a(
|
|
640
|
-
|
|
658
|
+
b,
|
|
641
659
|
{
|
|
642
660
|
naked: !0,
|
|
643
661
|
onClick: () => {
|
|
644
|
-
|
|
662
|
+
n(""), e && e.focus();
|
|
645
663
|
},
|
|
646
|
-
style:
|
|
647
|
-
children: /* @__PURE__ */ a(
|
|
664
|
+
style: t,
|
|
665
|
+
children: /* @__PURE__ */ a(T, { del: !0 })
|
|
648
666
|
}
|
|
649
667
|
);
|
|
650
|
-
class
|
|
668
|
+
class Fe extends y.Component {
|
|
651
669
|
state = {
|
|
652
670
|
query: this.props.initialValue || ""
|
|
653
671
|
};
|
|
654
672
|
input;
|
|
655
673
|
printPlaceholder() {
|
|
656
|
-
const { t: e, placeholder:
|
|
657
|
-
return typeof
|
|
658
|
-
defaultValue:
|
|
659
|
-
}) :
|
|
674
|
+
const { t: e, placeholder: t } = this.props;
|
|
675
|
+
return typeof t == "object" ? e(t.id, {
|
|
676
|
+
defaultValue: t.defaultValue
|
|
677
|
+
}) : t;
|
|
660
678
|
}
|
|
661
679
|
handleChange = (e) => {
|
|
662
|
-
const { onChange:
|
|
680
|
+
const { onChange: t } = this.props;
|
|
663
681
|
this.setState({
|
|
664
682
|
query: e
|
|
665
|
-
}),
|
|
683
|
+
}), t(e);
|
|
666
684
|
};
|
|
667
685
|
handleKeyUp = ({ key: e }) => {
|
|
668
|
-
const { onSubmit:
|
|
669
|
-
e === "Enter" && typeof
|
|
686
|
+
const { onSubmit: t } = this.props, { query: i } = this.state;
|
|
687
|
+
e === "Enter" && typeof t == "function" && t(i);
|
|
670
688
|
};
|
|
671
689
|
render() {
|
|
672
|
-
const { onSubmit: e, style:
|
|
673
|
-
return /* @__PURE__ */ m("div", { className: "search-box", style:
|
|
690
|
+
const { onSubmit: e, style: t, clearable: i } = this.props, { query: s } = this.state;
|
|
691
|
+
return /* @__PURE__ */ m("div", { className: "search-box", style: t, children: [
|
|
674
692
|
/* @__PURE__ */ a(
|
|
675
693
|
"input",
|
|
676
694
|
{
|
|
@@ -684,9 +702,9 @@ class De extends w.Component {
|
|
|
684
702
|
onChange: ({ target: { value: o } }) => this.handleChange(o)
|
|
685
703
|
}
|
|
686
704
|
),
|
|
687
|
-
typeof e == "function" ? /* @__PURE__ */ m(
|
|
705
|
+
typeof e == "function" ? /* @__PURE__ */ m(y.Fragment, { children: [
|
|
688
706
|
s && i && /* @__PURE__ */ a(
|
|
689
|
-
|
|
707
|
+
R,
|
|
690
708
|
{
|
|
691
709
|
onChange: this.handleChange,
|
|
692
710
|
inputElement: this.input,
|
|
@@ -695,31 +713,31 @@ class De extends w.Component {
|
|
|
695
713
|
}
|
|
696
714
|
}
|
|
697
715
|
),
|
|
698
|
-
/* @__PURE__ */ a(
|
|
699
|
-
] }) : s && i ? /* @__PURE__ */ a(
|
|
716
|
+
/* @__PURE__ */ a(b, { naked: !0, onClick: () => e(s), children: /* @__PURE__ */ a(T, { search: !0 }) })
|
|
717
|
+
] }) : s && i ? /* @__PURE__ */ a(R, { onChange: this.handleChange, inputElement: this.input }) : /* @__PURE__ */ a(b, { naked: !0, disabled: !0, children: /* @__PURE__ */ a(T, { search: !0 }) })
|
|
700
718
|
] });
|
|
701
719
|
}
|
|
702
720
|
}
|
|
703
|
-
const
|
|
721
|
+
const at = E()(Fe);
|
|
704
722
|
export {
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
723
|
+
Ye as Accordion,
|
|
724
|
+
Ge as AccordionItem,
|
|
725
|
+
Ke as Bubble,
|
|
726
|
+
b as Button,
|
|
727
|
+
me as ButtonRow,
|
|
728
|
+
et as Checkbox,
|
|
729
|
+
Ae as ConfirmProvider,
|
|
730
|
+
T as Icon,
|
|
731
|
+
nt as Label,
|
|
732
|
+
ye as Modal,
|
|
733
|
+
Je as ModalContainer,
|
|
734
|
+
S as Popup,
|
|
735
|
+
at as SearchBox,
|
|
736
|
+
xe as Spinner,
|
|
737
|
+
Qe as SpinnerContainer,
|
|
738
|
+
st as Tabs,
|
|
739
|
+
it as Tooltip,
|
|
740
|
+
Te as useConfirm,
|
|
741
|
+
tt as withConfirm
|
|
724
742
|
};
|
|
725
743
|
//# sourceMappingURL=index.js.map
|