@arthurzakharov/ui-kit 3.5.0 → 3.7.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/assets/dropzone-CxglLL5C.css +1 -0
- package/dist/assets/file-item-BuZWNZ68.css +1 -0
- package/dist/components/dropzone/dropzone.component.d.ts +2 -1
- package/dist/components/dropzone/dropzone.component.js +66 -63
- package/dist/components/file-item/file-item.component.d.ts +9 -0
- package/dist/components/file-item/file-item.component.js +38 -0
- package/dist/components/file-item/index.d.ts +1 -0
- package/dist/components/file-item/index.js +4 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +93 -91
- package/package.json +1 -1
- package/dist/assets/dropzone-iRe6v-43.css +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._Dropzone_e3zu0_1{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--rm-ui-padding-xs);width:100%;min-height:160px;padding:var(--rm-ui-padding-md);border:2px dashed var(--rm-ui-grey-300);border-radius:var(--rm-ui-border-radius-md, 8px);background-color:var(--rm-ui-grey-50);text-align:center;cursor:pointer;transition:border-color .12s ease,background-color .12s ease}._Dropzone_e3zu0_1:hover,._Active_e3zu0_21{border-color:var(--rm-ui-color-theme-primary);background-color:var(--rm-ui-color-background-primary, #fff)}._Dropzone_e3zu0_1:focus-visible{outline:2px solid var(--rm-ui-color-focus);outline-offset:2px}._Disabled_e3zu0_31{cursor:not-allowed;opacity:.5}._HiddenInput_e3zu0_36{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}._Title_e3zu0_48{font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body);color:var(--rm-ui-color-text-primary)}._Icon_e3zu0_54{color:var(--rm-ui-color-theme-primary)}._Invitation_e3zu0_58{font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body);color:var(--rm-ui-color-text-primary)}._HelpText_e3zu0_64{font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._FileItem_m6zdm_1{display:flex;flex-direction:row;align-items:center;gap:var(--rm-ui-padding-sm);width:100%}._CheckIcon_m6zdm_9{flex-shrink:0;width:20px;height:20px;color:var(--rm-ui-color-theme-primary)}._FileIcon_m6zdm_16{flex-shrink:0;width:20px;height:20px;color:var(--rm-ui-color-text-primary)}._Body_m6zdm_23{display:flex;flex-direction:column;flex:1 1 auto;min-width:0}._Name_m6zdm_30{font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body);color:var(--rm-ui-color-text-primary);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._Size_m6zdm_39{font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}._DeleteButton_m6zdm_45{display:inline-flex;flex-shrink:0;align-items:center;justify-content:center;padding:0;background:none;border:0;cursor:pointer;color:var(--rm-ui-color-text-secondary);transition:color .12s ease}._DeleteButton_m6zdm_45:hover:not(:disabled){color:var(--rm-ui-color-theme-primary)}._DeleteButton_m6zdm_45:focus-visible{outline:2px solid var(--rm-ui-color-focus);outline-offset:2px}._DeleteButton_m6zdm_45:disabled{cursor:not-allowed;opacity:.5}._DeleteIcon_m6zdm_72{width:20px;height:20px}
|
|
@@ -6,9 +6,10 @@ export interface DropzoneProps extends Base {
|
|
|
6
6
|
multiple?: boolean;
|
|
7
7
|
maxSize?: number;
|
|
8
8
|
disabled?: boolean;
|
|
9
|
+
title?: ReactNode;
|
|
9
10
|
invitation: ReactNode;
|
|
10
11
|
helpText?: ReactNode;
|
|
11
12
|
onDrop: (files: File[]) => void;
|
|
12
13
|
onReject?: (files: File[], reason: DropzoneRejectionReason) => void;
|
|
13
14
|
}
|
|
14
|
-
export declare const Dropzone: ({ accept, multiple, maxSize, disabled, invitation, helpText, onDrop, onReject, ...base }: DropzoneProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const Dropzone: ({ accept, multiple, maxSize, disabled, title, invitation, helpText, onDrop, onReject, ...base }: DropzoneProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,107 +1,110 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useRef as
|
|
3
|
-
import { Upload as
|
|
4
|
-
import { baseProps as I, clsx as
|
|
5
|
-
import '../../assets/dropzone-
|
|
6
|
-
Dropzone:
|
|
7
|
-
Active:
|
|
8
|
-
Disabled:
|
|
9
|
-
HiddenInput:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
import { jsxs as L, jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { useRef as P, useState as W } from "react";
|
|
3
|
+
import { Upload as k } from "lucide-react";
|
|
4
|
+
import { baseProps as I, clsx as E } from "../../utils/functions/functions.util.js";
|
|
5
|
+
import '../../assets/dropzone-CxglLL5C.css';const K = "_Dropzone_e3zu0_1", O = "_Active_e3zu0_21", $ = "_Disabled_e3zu0_31", b = "_HiddenInput_e3zu0_36", B = "_Title_e3zu0_48", F = "_Icon_e3zu0_54", U = "_Invitation_e3zu0_58", q = "_HelpText_e3zu0_64", o = {
|
|
6
|
+
Dropzone: K,
|
|
7
|
+
Active: O,
|
|
8
|
+
Disabled: $,
|
|
9
|
+
HiddenInput: b,
|
|
10
|
+
Title: B,
|
|
11
|
+
Icon: F,
|
|
12
|
+
Invitation: U,
|
|
13
|
+
HelpText: q
|
|
14
|
+
}, G = (r, d) => {
|
|
15
|
+
const s = d.split(",").map((e) => e.trim()).filter(Boolean);
|
|
16
|
+
return s.length === 0 ? !0 : s.some((e) => {
|
|
17
|
+
if (e.startsWith("."))
|
|
18
|
+
return r.name.toLowerCase().endsWith(e.toLowerCase());
|
|
19
|
+
if (e.endsWith("/*")) {
|
|
20
|
+
const a = e.slice(0, -1);
|
|
21
|
+
return r.type.startsWith(a);
|
|
21
22
|
}
|
|
22
|
-
return r.type ===
|
|
23
|
+
return r.type === e;
|
|
23
24
|
});
|
|
24
|
-
},
|
|
25
|
+
}, V = ({
|
|
25
26
|
accept: r,
|
|
26
|
-
multiple:
|
|
27
|
+
multiple: d = !1,
|
|
27
28
|
maxSize: s,
|
|
28
|
-
disabled:
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
disabled: e = !1,
|
|
30
|
+
title: a,
|
|
31
|
+
invitation: z,
|
|
32
|
+
helpText: f,
|
|
31
33
|
onDrop: y,
|
|
32
|
-
onReject:
|
|
33
|
-
...
|
|
34
|
+
onReject: p,
|
|
35
|
+
...g
|
|
34
36
|
}) => {
|
|
35
|
-
const h =
|
|
36
|
-
const
|
|
37
|
-
for (const
|
|
38
|
-
if (!
|
|
39
|
-
|
|
37
|
+
const h = P(null), [T, _] = W(!1), D = I(g, "data-testid", "dropzone"), x = (t) => {
|
|
38
|
+
const u = [], i = [], c = [];
|
|
39
|
+
for (const n of t) {
|
|
40
|
+
if (!G(n, r)) {
|
|
41
|
+
c.push(n);
|
|
40
42
|
continue;
|
|
41
43
|
}
|
|
42
|
-
if (s !== void 0 &&
|
|
43
|
-
|
|
44
|
+
if (s !== void 0 && n.size > s) {
|
|
45
|
+
i.push(n);
|
|
44
46
|
continue;
|
|
45
47
|
}
|
|
46
|
-
|
|
48
|
+
u.push(n);
|
|
47
49
|
}
|
|
48
|
-
return { accepted:
|
|
50
|
+
return { accepted: u, tooLarge: i, wrongType: c };
|
|
49
51
|
}, m = (t) => {
|
|
50
52
|
if (!t || t.length === 0) return;
|
|
51
|
-
const
|
|
52
|
-
|
|
53
|
+
const u = Array.from(t), { accepted: i, tooLarge: c, wrongType: n } = x(u);
|
|
54
|
+
i.length > 0 && y(i), c.length > 0 && p && p(c, "tooLarge"), n.length > 0 && p && p(n, "wrongType");
|
|
53
55
|
}, A = () => {
|
|
54
|
-
|
|
56
|
+
e || h.current?.click();
|
|
55
57
|
}, H = (t) => {
|
|
56
|
-
|
|
58
|
+
e || (t.key === "Enter" || t.key === " ") && (t.preventDefault(), h.current?.click());
|
|
57
59
|
}, w = (t) => {
|
|
58
60
|
m(t.target.files), t.target.value = "";
|
|
59
61
|
}, v = (t) => {
|
|
60
|
-
t.preventDefault(), t.stopPropagation(), !
|
|
61
|
-
},
|
|
62
|
-
t.preventDefault(), t.stopPropagation(),
|
|
63
|
-
},
|
|
64
|
-
t.preventDefault(), t.stopPropagation(),
|
|
62
|
+
t.preventDefault(), t.stopPropagation(), !e && _(!0);
|
|
63
|
+
}, N = (t) => {
|
|
64
|
+
t.preventDefault(), t.stopPropagation(), _(!1);
|
|
65
|
+
}, C = (t) => {
|
|
66
|
+
t.preventDefault(), t.stopPropagation(), _(!1), !e && m(t.dataTransfer.files);
|
|
65
67
|
};
|
|
66
|
-
return /* @__PURE__ */
|
|
68
|
+
return /* @__PURE__ */ L(
|
|
67
69
|
"div",
|
|
68
70
|
{
|
|
69
|
-
"data-testid":
|
|
70
|
-
className:
|
|
71
|
-
[o.Active]:
|
|
72
|
-
[o.Disabled]:
|
|
71
|
+
"data-testid": D,
|
|
72
|
+
className: E(o.Dropzone, I(g, "className"), {
|
|
73
|
+
[o.Active]: T,
|
|
74
|
+
[o.Disabled]: e
|
|
73
75
|
}),
|
|
74
76
|
role: "button",
|
|
75
|
-
tabIndex:
|
|
76
|
-
"aria-disabled":
|
|
77
|
+
tabIndex: e ? -1 : 0,
|
|
78
|
+
"aria-disabled": e,
|
|
77
79
|
onClick: A,
|
|
78
80
|
onKeyDown: H,
|
|
79
81
|
onDragOver: v,
|
|
80
82
|
onDragEnter: v,
|
|
81
|
-
onDragLeave:
|
|
82
|
-
onDrop:
|
|
83
|
+
onDragLeave: N,
|
|
84
|
+
onDrop: C,
|
|
83
85
|
children: [
|
|
84
|
-
/* @__PURE__ */
|
|
86
|
+
/* @__PURE__ */ l(
|
|
85
87
|
"input",
|
|
86
88
|
{
|
|
87
89
|
ref: h,
|
|
88
90
|
type: "file",
|
|
89
91
|
className: o.HiddenInput,
|
|
90
92
|
accept: r,
|
|
91
|
-
multiple:
|
|
92
|
-
disabled:
|
|
93
|
+
multiple: d,
|
|
94
|
+
disabled: e,
|
|
93
95
|
onChange: w,
|
|
94
|
-
"data-testid": `${
|
|
96
|
+
"data-testid": `${D}-input`,
|
|
95
97
|
tabIndex: -1
|
|
96
98
|
}
|
|
97
99
|
),
|
|
98
|
-
/* @__PURE__ */
|
|
99
|
-
/* @__PURE__ */
|
|
100
|
-
|
|
100
|
+
a != null && /* @__PURE__ */ l("div", { className: o.Title, children: a }),
|
|
101
|
+
/* @__PURE__ */ l(k, { size: 32, className: o.Icon, "aria-hidden": !0 }),
|
|
102
|
+
/* @__PURE__ */ l("div", { className: o.Invitation, children: z }),
|
|
103
|
+
f != null && /* @__PURE__ */ l("div", { className: o.HelpText, children: f })
|
|
101
104
|
]
|
|
102
105
|
}
|
|
103
106
|
);
|
|
104
107
|
};
|
|
105
108
|
export {
|
|
106
|
-
|
|
109
|
+
V as Dropzone
|
|
107
110
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Base } from '../../utils/types';
|
|
2
|
+
export interface FileItemProps extends Base {
|
|
3
|
+
name: string;
|
|
4
|
+
size: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
onDelete: () => void;
|
|
7
|
+
deleteAriaLabel?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const FileItem: ({ name, size, disabled, onDelete, deleteAriaLabel, ...base }: FileItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsxs as s, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { CircleCheck as r, File as _, Trash2 as I } from "lucide-react";
|
|
3
|
+
import { baseProps as l, clsx as h } from "../../utils/functions/functions.util.js";
|
|
4
|
+
import '../../assets/file-item-BuZWNZ68.css';const N = "_FileItem_m6zdm_1", z = "_CheckIcon_m6zdm_9", u = "_FileIcon_m6zdm_16", F = "_Body_m6zdm_23", p = "_Name_m6zdm_30", B = "_Size_m6zdm_39", D = "_DeleteButton_m6zdm_45", C = "_DeleteIcon_m6zdm_72", e = {
|
|
5
|
+
FileItem: N,
|
|
6
|
+
CheckIcon: z,
|
|
7
|
+
FileIcon: u,
|
|
8
|
+
Body: F,
|
|
9
|
+
Name: p,
|
|
10
|
+
Size: B,
|
|
11
|
+
DeleteButton: D,
|
|
12
|
+
DeleteIcon: C
|
|
13
|
+
}, x = ({ name: c, size: a, disabled: i = !1, onDelete: m, deleteAriaLabel: d, ...n }) => {
|
|
14
|
+
const o = l(n, "data-testid", "file-item");
|
|
15
|
+
return /* @__PURE__ */ s("div", { "data-testid": o, className: h(e.FileItem, l(n, "className")), children: [
|
|
16
|
+
/* @__PURE__ */ t(r, { className: e.CheckIcon, "aria-hidden": !0 }),
|
|
17
|
+
/* @__PURE__ */ t(_, { className: e.FileIcon, "aria-hidden": !0 }),
|
|
18
|
+
/* @__PURE__ */ s("div", { className: e.Body, children: [
|
|
19
|
+
/* @__PURE__ */ t("span", { className: e.Name, title: c, children: c }),
|
|
20
|
+
/* @__PURE__ */ t("span", { className: e.Size, children: a })
|
|
21
|
+
] }),
|
|
22
|
+
/* @__PURE__ */ t(
|
|
23
|
+
"button",
|
|
24
|
+
{
|
|
25
|
+
type: "button",
|
|
26
|
+
className: e.DeleteButton,
|
|
27
|
+
"data-testid": `${o}-delete`,
|
|
28
|
+
disabled: i,
|
|
29
|
+
onClick: m,
|
|
30
|
+
"aria-label": d ?? `${c} entfernen`,
|
|
31
|
+
children: /* @__PURE__ */ t(I, { className: e.DeleteIcon, "aria-hidden": !0 })
|
|
32
|
+
}
|
|
33
|
+
)
|
|
34
|
+
] });
|
|
35
|
+
};
|
|
36
|
+
export {
|
|
37
|
+
x as FileItem
|
|
38
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FileItem, type FileItemProps } from './file-item.component';
|
package/dist/main.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export { DataProtectedLabel } from './components/data-protected-label';
|
|
|
32
32
|
export { Dialog, type DialogProps, type DialogSize, type DialogPosition } from './components/dialog/dialog.component';
|
|
33
33
|
export { DialogArticle } from './components/dialog-article';
|
|
34
34
|
export { Expenses, type ExpensesProps } from './components/expenses';
|
|
35
|
+
export { FileItem, type FileItemProps } from './components/file-item';
|
|
35
36
|
export { Footer, type FooterProps } from './components/footer';
|
|
36
37
|
export { FormRow, type FormRowProps, type FormRowWidth } from './components/form-row/form-row.component';
|
|
37
38
|
export { Header, type HeaderProps, type HeaderDescription } from './components/header/header.component';
|
package/dist/main.js
CHANGED
|
@@ -13,9 +13,9 @@ import { Checkbox as F } from "./controls/interactives/checkbox/checkbox.compone
|
|
|
13
13
|
import { Dropdown as A } from "./controls/interactives/dropdown/dropdown.component.js";
|
|
14
14
|
import { Input as B } from "./controls/interactives/input/input.component.js";
|
|
15
15
|
import { Radio as v } from "./controls/interactives/radio/radio.component.js";
|
|
16
|
-
import { TextArea as
|
|
17
|
-
import { TextField as
|
|
18
|
-
import { Box as
|
|
16
|
+
import { TextArea as I } from "./controls/interactives/text-area/text-area.component.js";
|
|
17
|
+
import { TextField as R } from "./controls/interactives/text-field/text-field.component.js";
|
|
18
|
+
import { Box as E } from "./controls/primitives/box/box.component.js";
|
|
19
19
|
import { Caption as V } from "./controls/primitives/caption/caption.component.js";
|
|
20
20
|
import { Choice as U } from "./controls/primitives/choice/choice.component.js";
|
|
21
21
|
import { ErrorMessage as K } from "./controls/primitives/error-message/error-message.component.js";
|
|
@@ -32,33 +32,34 @@ import { DataProtectedLabel as fr } from "./components/data-protected-label/data
|
|
|
32
32
|
import { Dialog as ir } from "./components/dialog/dialog.component.js";
|
|
33
33
|
import { DialogArticle as sr } from "./components/dialog-article/dialog-article.component.js";
|
|
34
34
|
import { Expenses as cr } from "./components/expenses/expenses.component.js";
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
35
|
+
import { FileItem as ur } from "./components/file-item/file-item.component.js";
|
|
36
|
+
import { Footer as Sr } from "./components/footer/footer.component.js";
|
|
37
|
+
import { FormRow as Pr } from "./components/form-row/form-row.component.js";
|
|
38
|
+
import { Header as Dr } from "./components/header/header.component.js";
|
|
39
|
+
import { InfoPanel as Fr } from "./components/info-panel/info-panel.component.js";
|
|
40
|
+
import { Information as Ar } from "./components/information/information.component.js";
|
|
41
|
+
import { Layout as Br } from "./components/layout/layout.component.js";
|
|
42
|
+
import { Line as vr } from "./components/line/line.component.js";
|
|
43
|
+
import { Loader as Ir } from "./components/loader/loader.component.js";
|
|
44
|
+
import { MainAttachment as Rr } from "./components/main-attachment/main-attachment.component.js";
|
|
45
|
+
import { Message as Er } from "./components/message/message.component.js";
|
|
46
|
+
import { MessageBlock as Vr } from "./components/message-block/message-block.component.js";
|
|
47
|
+
import { NotFound as Ur } from "./components/not-found/not-found.component.js";
|
|
48
|
+
import { Payment as Kr } from "./components/payment/payment.component.js";
|
|
49
|
+
import { PriceLine as qr } from "./components/price-line/price-line.component.js";
|
|
50
|
+
import { Sidebar as Jr } from "./components/sidebar/sidebar.component.js";
|
|
51
|
+
import { SignCtaTracker as jr } from "./components/sign-cta-tracker/sign-cta-tracker.component.js";
|
|
52
|
+
import { Signature as Qr } from "./components/signature/signature.component.js";
|
|
53
|
+
import { Svg as Zr } from "./utils/svg/svg.component.js";
|
|
54
|
+
import { Text as $r } from "./components/text/text.component.js";
|
|
55
|
+
import { UserPanel as oo } from "./components/user-panel/user-panel.component.js";
|
|
56
|
+
import { Warranty as to } from "./components/warranty/warranty.component.js";
|
|
57
|
+
import { birthDateToGerman as mo, blurAfterClick as po, clsx as fo, containsHtml as xo, convertDateFormat as io, convertToDateNumber as no, convertToEuro as so, defaultTo as lo, deleteUrlParameters as co, fakeAwait as uo, formatDate as go, formatEuroAmount as So, formatNumber as bo, getDate as Po, getFromJson as ho, getKeysFromUrlParams as Do, getPath as To, getSalutationLabel as Fo, getSecretFromUrlParams as Lo, getSettlementPercent as Ao, getTimeStamp as Co, isHtmlString as Bo, isLeapYear as ko, isString as vo, isValidBirthDate as yo, isValidDate as Io, isValidHouseNumber as No, isWithinTimeStamps as Ro, last as wo, once as Eo, parseSpacingValue as Ho, pickValues as Vo, publicSrcPath as Mo, removeLastNumberSuffix as Uo, removeSlashAtEnd as Go, searchParams as Ko, sortSearchParams as Wo, stripRequestName as qo, toGermanDate as zo, trimAllStringKeys as Jo, updateLastPathSubdirectory as Yo, withControl as jo } from "./utils/functions/functions.util.js";
|
|
57
58
|
import './assets/main-DZmlIs7j.css';export {
|
|
58
59
|
Z as Accordion,
|
|
59
60
|
$ as AccordionTable,
|
|
60
61
|
tr as BottomBar,
|
|
61
|
-
|
|
62
|
+
E as Box,
|
|
62
63
|
s as Button,
|
|
63
64
|
c as ButtonCard,
|
|
64
65
|
u as ButtonRadio,
|
|
@@ -79,76 +80,77 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
79
80
|
t as FadeGrow,
|
|
80
81
|
m as FadeScale,
|
|
81
82
|
f as FadeSlide,
|
|
82
|
-
ur as
|
|
83
|
-
Sr as
|
|
84
|
-
Pr as
|
|
83
|
+
ur as FileItem,
|
|
84
|
+
Sr as Footer,
|
|
85
|
+
Pr as FormRow,
|
|
86
|
+
Dr as Header,
|
|
85
87
|
q as HiddenInput,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
+
Fr as InfoPanel,
|
|
89
|
+
Ar as Information,
|
|
88
90
|
B as Input,
|
|
89
91
|
J as Label,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
92
|
+
Br as Layout,
|
|
93
|
+
vr as Line,
|
|
94
|
+
Ir as Loader,
|
|
95
|
+
Rr as MainAttachment,
|
|
96
|
+
Er as Message,
|
|
97
|
+
Vr as MessageBlock,
|
|
98
|
+
Ur as NotFound,
|
|
99
|
+
Kr as Payment,
|
|
100
|
+
qr as PriceLine,
|
|
99
101
|
v as Radio,
|
|
100
102
|
j as RadioLabel,
|
|
101
103
|
i as Rotate,
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
Jr as Sidebar,
|
|
105
|
+
jr as SignCtaTracker,
|
|
106
|
+
Qr as Signature,
|
|
105
107
|
Q as Status,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
108
|
+
Zr as Svg,
|
|
109
|
+
$r as Text,
|
|
110
|
+
I as TextArea,
|
|
111
|
+
R as TextField,
|
|
112
|
+
oo as UserPanel,
|
|
113
|
+
to as Warranty,
|
|
114
|
+
mo as birthDateToGerman,
|
|
115
|
+
po as blurAfterClick,
|
|
116
|
+
fo as clsx,
|
|
117
|
+
xo as containsHtml,
|
|
118
|
+
io as convertDateFormat,
|
|
119
|
+
no as convertToDateNumber,
|
|
120
|
+
so as convertToEuro,
|
|
121
|
+
lo as defaultTo,
|
|
122
|
+
co as deleteUrlParameters,
|
|
123
|
+
uo as fakeAwait,
|
|
124
|
+
go as formatDate,
|
|
125
|
+
So as formatEuroAmount,
|
|
126
|
+
bo as formatNumber,
|
|
127
|
+
Po as getDate,
|
|
128
|
+
ho as getFromJson,
|
|
129
|
+
Do as getKeysFromUrlParams,
|
|
130
|
+
To as getPath,
|
|
131
|
+
Fo as getSalutationLabel,
|
|
132
|
+
Lo as getSecretFromUrlParams,
|
|
133
|
+
Ao as getSettlementPercent,
|
|
134
|
+
Co as getTimeStamp,
|
|
135
|
+
Bo as isHtmlString,
|
|
136
|
+
ko as isLeapYear,
|
|
137
|
+
vo as isString,
|
|
138
|
+
yo as isValidBirthDate,
|
|
139
|
+
Io as isValidDate,
|
|
140
|
+
No as isValidHouseNumber,
|
|
141
|
+
Ro as isWithinTimeStamps,
|
|
142
|
+
wo as last,
|
|
143
|
+
Eo as once,
|
|
144
|
+
Ho as parseSpacingValue,
|
|
145
|
+
Vo as pickValues,
|
|
146
|
+
Mo as publicSrcPath,
|
|
147
|
+
Uo as removeLastNumberSuffix,
|
|
148
|
+
Go as removeSlashAtEnd,
|
|
149
|
+
Ko as searchParams,
|
|
150
|
+
Wo as sortSearchParams,
|
|
151
|
+
qo as stripRequestName,
|
|
152
|
+
zo as toGermanDate,
|
|
153
|
+
Jo as trimAllStringKeys,
|
|
154
|
+
Yo as updateLastPathSubdirectory,
|
|
155
|
+
jo as withControl
|
|
154
156
|
};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Dropzone_14jbn_1{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--rm-ui-padding-xs);width:100%;min-height:160px;padding:var(--rm-ui-padding-md);border:2px dashed var(--rm-ui-grey-300);border-radius:var(--rm-ui-border-radius-md, 8px);background-color:var(--rm-ui-grey-50);text-align:center;cursor:pointer;transition:border-color .12s ease,background-color .12s ease}._Dropzone_14jbn_1:hover,._Active_14jbn_21{border-color:var(--rm-ui-color-theme-primary);background-color:var(--rm-ui-color-background-primary, #fff)}._Dropzone_14jbn_1:focus-visible{outline:2px solid var(--rm-ui-color-focus);outline-offset:2px}._Disabled_14jbn_31{cursor:not-allowed;opacity:.5}._HiddenInput_14jbn_36{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}._Icon_14jbn_48{color:var(--rm-ui-color-theme-primary)}._Invitation_14jbn_52{font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body);color:var(--rm-ui-color-text-primary)}._HelpText_14jbn_58{font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}
|