@vkzstudio/muza-ui 1.0.9 → 1.0.11
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/components/Button/Button.d.ts +2 -1
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Button/Button.js +58 -55
- package/dist/components/Button/Button.stories.d.ts +2 -1
- package/dist/components/Button/Button.stories.d.ts.map +1 -1
- package/dist/components/Button/buttonVariants.d.ts +1 -1
- package/dist/components/Button/buttonVariants.d.ts.map +1 -1
- package/dist/components/Button/buttonVariants.js +6 -2
- package/dist/components/DataTable/DataTable.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.js +5 -4
- package/dist/components/DataTable/DataTable.stories.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.d.ts +1 -0
- package/dist/components/Icons/CustomIcons.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.js +38 -27
- package/dist/components/Reorderable/Reorderable.d.ts +2 -0
- package/dist/components/Reorderable/Reorderable.d.ts.map +1 -1
- package/dist/components/Reorderable/Reorderable.js +80 -78
- package/dist/components/ReorderableTable/ReorderableTable.d.ts.map +1 -1
- package/dist/components/ReorderableTable/ReorderableTable.stories.d.ts.map +1 -1
- package/dist/components/TextEditor/EditorToolbar.d.ts +18 -0
- package/dist/components/TextEditor/EditorToolbar.d.ts.map +1 -0
- package/dist/components/TextEditor/EditorToolbar.js +175 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts +52 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts.map +1 -0
- package/dist/components/TextEditor/LinkBubbleMenu.js +97 -0
- package/dist/components/TextEditor/TextEditor.d.ts +134 -0
- package/dist/components/TextEditor/TextEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/TextEditor.js +240 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts +51 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts +38 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.js +68 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts +22 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarSeparator.js +23 -0
- package/dist/components/TextEditor/index.d.ts +4 -0
- package/dist/components/TextEditor/index.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts +37 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.js +32 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.js +140 -132
- package/dist/muza-ui.css +1 -1
- package/dist/node_modules/@popperjs/core/lib/createPopper.js +122 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/contains.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +23 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +32 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +17 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +35 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +21 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindow.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +20 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +16 -0
- package/dist/node_modules/@popperjs/core/lib/enums.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +47 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/arrow.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +99 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +26 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/flip.js +74 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/hide.js +44 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/offset.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +19 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/popper.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeOffsets.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/utils/debounce.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/utils/detectOverflow.js +33 -0
- package/dist/node_modules/@popperjs/core/lib/utils/expandToHashMap.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getAltAxis.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getBasePlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +14 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getVariation.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/math.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergeByName.js +15 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/utils/orderModifiers.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/utils/rectToClientRect.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/userAgent.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/utils/within.js +12 -0
- package/dist/node_modules/@tiptap/core/dist/index.js +2857 -0
- package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +45 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +76 -0
- package/dist/node_modules/@tiptap/extension-bubble-menu/dist/index.js +129 -0
- package/dist/node_modules/@tiptap/extension-bullet-list/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
- package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +136 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +10 -0
- package/dist/node_modules/@tiptap/extension-dropcursor/dist/index.js +21 -0
- package/dist/node_modules/@tiptap/extension-gapcursor/dist/index.js +25 -0
- package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +56 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-history/dist/index.js +36 -0
- package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +59 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +75 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +272 -0
- package/dist/node_modules/@tiptap/extension-list-item/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-ordered-list/dist/index.js +73 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js +53 -0
- package/dist/node_modules/@tiptap/extension-strike/dist/index.js +64 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +9 -0
- package/dist/node_modules/@tiptap/react/dist/index.js +709 -0
- package/dist/node_modules/@tiptap/starter-kit/dist/index.js +30 -0
- package/dist/node_modules/linkifyjs/dist/linkify.js +707 -0
- package/dist/node_modules/orderedmap/dist/index.js +103 -0
- package/dist/node_modules/prosemirror-commands/dist/index.js +388 -0
- package/dist/node_modules/prosemirror-dropcursor/dist/index.js +86 -0
- package/dist/node_modules/prosemirror-gapcursor/dist/index.js +204 -0
- package/dist/node_modules/prosemirror-history/dist/index.js +248 -0
- package/dist/node_modules/prosemirror-keymap/dist/index.js +62 -0
- package/dist/node_modules/prosemirror-model/dist/index.js +2733 -0
- package/dist/node_modules/prosemirror-schema-list/dist/index.js +88 -0
- package/dist/node_modules/prosemirror-state/dist/index.js +822 -0
- package/dist/node_modules/prosemirror-transform/dist/index.js +1520 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3794 -0
- package/dist/node_modules/rope-sequence/dist/index.js +100 -0
- package/dist/node_modules/tippy.js/dist/tippy.esm.js +813 -0
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/dist/translations/locales/cs.d.ts.map +1 -1
- package/dist/translations/locales/cs.js +18 -0
- package/dist/translations/locales/en.d.ts.map +1 -1
- package/dist/translations/locales/en.js +18 -0
- package/dist/translations/locales/sk.d.ts.map +1 -1
- package/dist/translations/locales/sk.js +18 -0
- package/dist/translations/types.d.ts +22 -0
- package/dist/translations/types.d.ts.map +1 -1
- package/package.json +17 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
import { buttonVariants } from './buttonVariants';
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Omit<VariantProps<typeof buttonVariants>, 'iconOnly'> {
|
|
4
|
+
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Omit<VariantProps<typeof buttonVariants>, 'iconOnly' | 'size'> {
|
|
5
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'icon';
|
|
5
6
|
asChild?: boolean;
|
|
6
7
|
icon?: React.ReactNode;
|
|
7
8
|
iconPosition?: 'start' | 'end';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAI5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAEjD,MAAM,WAAW,WACf,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EACnD,IAAI,CAAC,YAAY,CAAC,OAAO,cAAc,CAAC,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAI5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAEjD,MAAM,WAAW,WACf,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EACnD,IAAI,CAAC,YAAY,CAAC,OAAO,cAAc,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IAChE,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,MAAM,CAAA;IACzC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACtB,YAAY,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;IAC9B,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,QAAA,MAAM,MAAM,uFAgEX,CAAA;AAGD,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,CAAA"}
|
|
@@ -1,67 +1,70 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import * as
|
|
1
|
+
import { jsxs as x, jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import * as b from "react";
|
|
3
3
|
import "class-variance-authority";
|
|
4
|
-
import { ButtonLoader as
|
|
5
|
-
import { buttonVariants as
|
|
6
|
-
import { Typography as
|
|
7
|
-
import { cn as
|
|
8
|
-
const
|
|
4
|
+
import { ButtonLoader as N } from "./ButtonLoader.js";
|
|
5
|
+
import { buttonVariants as B } from "./buttonVariants.js";
|
|
6
|
+
import { Typography as g } from "../Typography/Typography.js";
|
|
7
|
+
import { cn as e } from "../../utils/cn.js";
|
|
8
|
+
const j = b.forwardRef(
|
|
9
9
|
({
|
|
10
|
-
className:
|
|
11
|
-
variant:
|
|
10
|
+
className: c,
|
|
11
|
+
variant: f,
|
|
12
12
|
size: t,
|
|
13
|
-
fullWidth:
|
|
13
|
+
fullWidth: i,
|
|
14
14
|
asChild: u = !1,
|
|
15
15
|
icon: r,
|
|
16
16
|
iconPosition: m = "start",
|
|
17
|
-
ghost:
|
|
18
|
-
danger:
|
|
17
|
+
ghost: l = !1,
|
|
18
|
+
danger: n = !1,
|
|
19
19
|
loading: a = !1,
|
|
20
20
|
children: o,
|
|
21
|
-
...
|
|
22
|
-
},
|
|
23
|
-
u ? "span" : "button",
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"data-ghost": e,
|
|
39
|
-
"data-danger": p,
|
|
40
|
-
...l,
|
|
41
|
-
children: [
|
|
42
|
-
a && /* @__PURE__ */ s("span", { className: "absolute", children: /* @__PURE__ */ s(b, {}) }),
|
|
43
|
-
m === "start" && r,
|
|
44
|
-
o && /* @__PURE__ */ s(
|
|
45
|
-
B,
|
|
46
|
-
{
|
|
47
|
-
variant: "cta",
|
|
48
|
-
size: t == "sm" || t == "xs" ? "sm" : "base",
|
|
49
|
-
weight: "medium",
|
|
50
|
-
component: "span",
|
|
51
|
-
fixY: !0,
|
|
52
|
-
className: n("transition-opacity", {
|
|
53
|
-
"opacity-0": a
|
|
54
|
-
}),
|
|
55
|
-
children: o
|
|
56
|
-
}
|
|
21
|
+
...y
|
|
22
|
+
}, d) => {
|
|
23
|
+
const h = u ? "span" : "button", p = t === "icon" || l;
|
|
24
|
+
return /* @__PURE__ */ x(
|
|
25
|
+
h,
|
|
26
|
+
{
|
|
27
|
+
className: e(
|
|
28
|
+
B({
|
|
29
|
+
variant: f,
|
|
30
|
+
size: t,
|
|
31
|
+
fullWidth: i,
|
|
32
|
+
iconOnly: t === "icon" || !o,
|
|
33
|
+
ghost: p,
|
|
34
|
+
danger: n,
|
|
35
|
+
loading: a,
|
|
36
|
+
className: c
|
|
37
|
+
})
|
|
57
38
|
),
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
39
|
+
ref: d,
|
|
40
|
+
"data-ghost": p,
|
|
41
|
+
"data-danger": n,
|
|
42
|
+
...y,
|
|
43
|
+
children: [
|
|
44
|
+
a && /* @__PURE__ */ s("span", { className: "absolute", children: /* @__PURE__ */ s(N, {}) }),
|
|
45
|
+
m === "start" && r,
|
|
46
|
+
o && /* @__PURE__ */ s(
|
|
47
|
+
g,
|
|
48
|
+
{
|
|
49
|
+
variant: "cta",
|
|
50
|
+
size: t == "sm" || t == "xs" ? "sm" : "base",
|
|
51
|
+
weight: "medium",
|
|
52
|
+
component: "span",
|
|
53
|
+
fixY: !0,
|
|
54
|
+
className: e("transition-opacity", {
|
|
55
|
+
"opacity-0": a
|
|
56
|
+
}),
|
|
57
|
+
children: o
|
|
58
|
+
}
|
|
59
|
+
),
|
|
60
|
+
m === "end" && r
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
);
|
|
64
|
+
}
|
|
62
65
|
);
|
|
63
|
-
|
|
66
|
+
j.displayName = "Button";
|
|
64
67
|
export {
|
|
65
|
-
|
|
66
|
-
|
|
68
|
+
j as Button,
|
|
69
|
+
B as buttonVariants
|
|
67
70
|
};
|
|
@@ -5,7 +5,8 @@ export default meta;
|
|
|
5
5
|
type Story = StoryObj<typeof Button>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
7
|
export declare const WithIcon: Story;
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const IconOnlyContent: Story;
|
|
9
|
+
export declare const IconSize: Story;
|
|
9
10
|
export declare const FullWidth: Story;
|
|
10
11
|
export declare const AllVariants: Story;
|
|
11
12
|
export declare const AllSizes: Story;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"Button.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAU3D,OAAO,EAAE,MAAM,EAAoB,MAAM,UAAU,CAAA;AAoBnD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,MAAM,CA6G7B,CAAA;AAED,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAA;AAEpC,eAAO,MAAM,OAAO,EAAE,KAarB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAetB,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,KAe7B,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAoCtB,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,KAgBvB,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAyCzB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAkDtB,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAmF/B,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KA8D1B,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAgC/B,CAAA"}
|
|
@@ -5,7 +5,7 @@ export declare const sharedButtonVariants: {
|
|
|
5
5
|
invert: string[];
|
|
6
6
|
};
|
|
7
7
|
export declare const buttonVariants: (props?: ({
|
|
8
|
-
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
8
|
+
size?: "xs" | "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
9
9
|
variant?: "link" | "invert" | "dashed" | "linkInvert" | "primary" | "secondary" | "tertiary" | null | undefined;
|
|
10
10
|
iconOnly?: boolean | null | undefined;
|
|
11
11
|
fullWidth?: boolean | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttonVariants.d.ts","sourceRoot":"","sources":["../../../src/components/Button/buttonVariants.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;
|
|
1
|
+
{"version":3,"file":"buttonVariants.d.ts","sourceRoot":"","sources":["../../../src/components/Button/buttonVariants.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;CA8NhC,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;8EAiK1B,CAAA"}
|
|
@@ -23,7 +23,6 @@ const e = {
|
|
|
23
23
|
"data-[ghost=true]:hover:bg-comp-button-primary-ghost-bg-hover",
|
|
24
24
|
"data-[ghost=true]:hover:text-comp-button-primary-ghost-text-hover",
|
|
25
25
|
"data-[ghost=true]:hover:border-comp-button-primary-ghost-stroke-hover",
|
|
26
|
-
"data-[ghost=true]:focus-visible-default",
|
|
27
26
|
"data-[ghost=true]:active:bg-comp-button-primary-ghost-bg-focused",
|
|
28
27
|
"data-[ghost=true]:active:text-comp-button-primary-ghost-text-focused",
|
|
29
28
|
"data-[ghost=true]:focus-visible:border-comp-button-primary-ghost-stroke-focused",
|
|
@@ -235,6 +234,11 @@ const e = {
|
|
|
235
234
|
{
|
|
236
235
|
variants: {
|
|
237
236
|
size: {
|
|
237
|
+
icon: [
|
|
238
|
+
"h-comp-button-h-xs w-comp-button-w-xs rounded-none border-none!",
|
|
239
|
+
"bg-transparent! hover:border-transparent! hover:bg-transparent!",
|
|
240
|
+
"[&>span>svg]:size-icon-small [&>svg]:size-icon-small"
|
|
241
|
+
],
|
|
238
242
|
xs: [
|
|
239
243
|
"h-comp-button-h-xs px-comp-button-p-xs",
|
|
240
244
|
"[&>span>svg]:size-icon-small [&>svg]:size-icon-small"
|
|
@@ -362,7 +366,7 @@ const e = {
|
|
|
362
366
|
compoundVariants: [
|
|
363
367
|
{
|
|
364
368
|
variant: ["link", "linkInvert"],
|
|
365
|
-
size: ["xs", "sm", "md", "lg"],
|
|
369
|
+
size: ["icon", "xs", "sm", "md", "lg"],
|
|
366
370
|
class: "px-none"
|
|
367
371
|
}
|
|
368
372
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,KAAK,YAAY,EAAO,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,qBAAqB;;;8EAmB1B,CAAA;AAED,MAAM,WAAW,eAAe,CAAC,CAAC;IAChC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,GAAG,CAAC,GAAG,CAAC,CAAA;IAC3B,MAAM,CAAC,EAAE,CACP,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EACjB,OAAO,EAAE,CAAC,EACV,QAAQ,EAAE,MAAM,EAChB,QAAQ,CAAC,EAAE,OAAO,KACf,SAAS,CAAA;CACf;AAED,MAAM,WAAW,cAAc,CAAC,CAAC,CAC/B,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC,EAC9D,YAAY,CAAC,OAAO,qBAAqB,CAAC;IAC5C,IAAI,EAAE,CAAC,EAAE,CAAA;IACT,OAAO,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAA;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,QAAA,MAAM,SAAS,GAAI,CAAC,EAAG,uEAQpB,cAAc,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,KAAK,YAAY,EAAO,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,qBAAqB;;;8EAmB1B,CAAA;AAED,MAAM,WAAW,eAAe,CAAC,CAAC;IAChC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,GAAG,CAAC,GAAG,CAAC,CAAA;IAC3B,MAAM,CAAC,EAAE,CACP,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EACjB,OAAO,EAAE,CAAC,EACV,QAAQ,EAAE,MAAM,EAChB,QAAQ,CAAC,EAAE,OAAO,KACf,SAAS,CAAA;CACf;AAED,MAAM,WAAW,cAAc,CAAC,CAAC,CAC/B,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC,EAC9D,YAAY,CAAC,OAAO,qBAAqB,CAAC;IAC5C,IAAI,EAAE,CAAC,EAAE,CAAA;IACT,OAAO,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAA;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,QAAA,MAAM,SAAS,GAAI,CAAC,EAAG,uEAQpB,cAAc,CAAC,CAAC,CAAC,4CA0FnB,CAAA;AAED,OAAO,EAAE,SAAS,EAAE,qBAAqB,EAAE,CAAA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsx as r, jsxs as
|
|
1
|
+
import { jsx as r, jsxs as f } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { cva as
|
|
3
|
+
import { cva as b } from "class-variance-authority";
|
|
4
4
|
import { typographyVariants as h, Typography as y } from "../Typography/Typography.js";
|
|
5
5
|
import { cn as i } from "../../utils/cn.js";
|
|
6
|
-
const u =
|
|
6
|
+
const u = b(
|
|
7
7
|
"h-comp-table-h border-y border-stroke-base-secondary px-2xl transition-colors",
|
|
8
8
|
{
|
|
9
9
|
variants: {
|
|
@@ -30,7 +30,7 @@ const u = f(
|
|
|
30
30
|
variant: m = "default",
|
|
31
31
|
disabled: d = !1,
|
|
32
32
|
...c
|
|
33
|
-
}) => /* @__PURE__ */ r("div", { className: "w-full overflow-x-auto overflow-y-hidden", children: /* @__PURE__ */
|
|
33
|
+
}) => /* @__PURE__ */ r("div", { className: "w-full overflow-x-auto overflow-y-hidden", children: /* @__PURE__ */ f(
|
|
34
34
|
"table",
|
|
35
35
|
{
|
|
36
36
|
className: i(
|
|
@@ -81,6 +81,7 @@ const u = f(
|
|
|
81
81
|
size: "base",
|
|
82
82
|
weight: "medium",
|
|
83
83
|
component: "span",
|
|
84
|
+
fixY: !0,
|
|
84
85
|
className: i({
|
|
85
86
|
"line-clamp-1": e.lineClamp === !0 || e.lineClamp === 1,
|
|
86
87
|
"line-clamp-2": e.lineClamp === 2,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.stories.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTable.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"DataTable.stories.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTable.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAQ3D,QAAA,MAAM,IAAI,EAAE,IA2DX,CAAA;AAED,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAA;AAqFrB,eAAO,MAAM,OAAO,EAAE,KAUrB,CAAA;AAaD,eAAO,MAAM,WAAW,EAAE,KAazB,CAAA;AA0CD,eAAO,MAAM,iBAAiB,EAAE,KAa/B,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KAc1B,CAAA;AASD,eAAO,MAAM,kBAAkB,EAAE,KAoIhC,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KAc1B,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAYtB,CAAA;AAED,eAAO,MAAM,oBAAoB,EAAE,KAYlC,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAqEzB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenu.stories.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownMenu/DropdownMenu.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AA4B3D,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmF2B,CAAA;AAErC,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAA;AAElC,eAAO,MAAM,OAAO,EAAE,KAyBrB,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,KA+BvB,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,KAuB3B,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAuB9B,CAAA;AAED,eAAO,MAAM,cAAc,EAAE,KAwB5B,CAAA;AAED,eAAO,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"DropdownMenu.stories.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownMenu/DropdownMenu.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AA4B3D,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmF2B,CAAA;AAErC,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAA;AAElC,eAAO,MAAM,OAAO,EAAE,KAyBrB,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,KA+BvB,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,KAuB3B,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAuB9B,CAAA;AAED,eAAO,MAAM,cAAc,EAAE,KAwB5B,CAAA;AAED,eAAO,MAAM,UAAU,EAAE,KAgCxB,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KAiC1B,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KA2C/B,CAAA;AAED,eAAO,MAAM,kCAAkC,EAAE,KA+EhD,CAAA;AAED,eAAO,MAAM,cAAc,EAAE,KA4B5B,CAAA"}
|
|
@@ -37,6 +37,7 @@ export declare const Fingerprint: Icon;
|
|
|
37
37
|
export declare const Coins: Icon;
|
|
38
38
|
export declare const Coins2Outline: Icon;
|
|
39
39
|
export declare const Coins3: Icon;
|
|
40
|
+
export declare const ColorSquare: Icon;
|
|
40
41
|
export declare const EmptyCircle: Icon;
|
|
41
42
|
export declare const MenuDotsVertical: Icon;
|
|
42
43
|
//# sourceMappingURL=CustomIcons.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CustomIcons.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/CustomIcons.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mCAAmC,CAAA;AAI7D,eAAO,MAAM,SAAS,EAAE,IAiBvB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IAexB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,QAAQ,EAAE,IAStB,CAAA;AAGD,eAAO,MAAM,aAAa,EAAE,IAa3B,CAAA;AAGD,eAAO,MAAM,KAAK,EAAE,IAUnB,CAAA;AAGD,eAAO,MAAM,cAAc,EAAE,IAS5B,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAS9B,CAAA;AAGD,eAAO,MAAM,GAAG,EAAE,IAOhB,CAAA;AAGF,eAAO,MAAM,GAAG,EAAE,IAOhB,CAAA;AAGF,eAAO,MAAM,OAAO,EAAE,IAWrB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IAWxB,CAAA;AAGD,eAAO,MAAM,eAAe,EAAE,IAW7B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IA2BpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAgCpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAqCpB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,YAAY,EAAE,IAS1B,CAAA;AAGD,eAAO,MAAM,mBAAmB,EAAE,IASjC,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAS9B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAID,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAKD,eAAO,MAAM,gBAAgB,EAAE,IAW9B,CAAA;AAGD,eAAO,MAAM,YAAY,EAAE,IAiB1B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,IAAI,EAAE,IA2BjB,CAAA;AAGF,eAAO,MAAM,IAAI,EAAE,IAOjB,CAAA;AAGF,eAAO,MAAM,WAAW,EAAE,IAmCzB,CAAA;AAGD,eAAO,MAAM,KAAK,EAAE,IASnB,CAAA;AAGD,eAAO,MAAM,aAAa,EAAE,IAiB3B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAapB,CAAA;AAGD,eAAO,MAAM,WAAW,EAAE,IAWzB,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAiB9B,CAAA"}
|
|
1
|
+
{"version":3,"file":"CustomIcons.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/CustomIcons.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mCAAmC,CAAA;AAI7D,eAAO,MAAM,SAAS,EAAE,IAiBvB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IAexB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,QAAQ,EAAE,IAStB,CAAA;AAGD,eAAO,MAAM,aAAa,EAAE,IAa3B,CAAA;AAGD,eAAO,MAAM,KAAK,EAAE,IAUnB,CAAA;AAGD,eAAO,MAAM,cAAc,EAAE,IAS5B,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAS9B,CAAA;AAGD,eAAO,MAAM,GAAG,EAAE,IAOhB,CAAA;AAGF,eAAO,MAAM,GAAG,EAAE,IAOhB,CAAA;AAGF,eAAO,MAAM,OAAO,EAAE,IAWrB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IAWxB,CAAA;AAGD,eAAO,MAAM,eAAe,EAAE,IAW7B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IA2BpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAgCpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAqCpB,CAAA;AAGD,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,YAAY,EAAE,IAS1B,CAAA;AAGD,eAAO,MAAM,mBAAmB,EAAE,IASjC,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,UAAU,EAAE,IASxB,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAS9B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAID,eAAO,MAAM,OAAO,EAAE,IASrB,CAAA;AAKD,eAAO,MAAM,gBAAgB,EAAE,IAW9B,CAAA;AAGD,eAAO,MAAM,YAAY,EAAE,IAiB1B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IASpB,CAAA;AAGD,eAAO,MAAM,IAAI,EAAE,IA2BjB,CAAA;AAGF,eAAO,MAAM,IAAI,EAAE,IAOjB,CAAA;AAGF,eAAO,MAAM,WAAW,EAAE,IAmCzB,CAAA;AAGD,eAAO,MAAM,KAAK,EAAE,IASnB,CAAA;AAGD,eAAO,MAAM,aAAa,EAAE,IAiB3B,CAAA;AAGD,eAAO,MAAM,MAAM,EAAE,IAapB,CAAA;AAGD,eAAO,MAAM,WAAW,EAAE,IASzB,CAAA;AAGD,eAAO,MAAM,WAAW,EAAE,IAWzB,CAAA;AAGD,eAAO,MAAM,gBAAgB,EAAE,IAiB9B,CAAA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as o, jsx as C } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as r } from "react";
|
|
3
3
|
import { IconBase as e } from "@solar-icons/react-perf";
|
|
4
|
-
const
|
|
5
|
-
(L, l) => /* @__PURE__ */
|
|
4
|
+
const i = r(
|
|
5
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
6
6
|
/* @__PURE__ */ C(
|
|
7
7
|
"path",
|
|
8
8
|
{
|
|
@@ -26,7 +26,7 @@ const o = r(
|
|
|
26
26
|
)
|
|
27
27
|
] })
|
|
28
28
|
);
|
|
29
|
-
|
|
29
|
+
i.displayName = "EyeClosed";
|
|
30
30
|
const t = r(
|
|
31
31
|
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
32
32
|
"path",
|
|
@@ -38,7 +38,7 @@ const t = r(
|
|
|
38
38
|
);
|
|
39
39
|
t.displayName = "Barcode";
|
|
40
40
|
const H = r(
|
|
41
|
-
(L, l) => /* @__PURE__ */
|
|
41
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
42
42
|
/* @__PURE__ */ C(
|
|
43
43
|
"path",
|
|
44
44
|
{
|
|
@@ -79,7 +79,7 @@ const n = r(
|
|
|
79
79
|
);
|
|
80
80
|
n.displayName = "MuzaIcon";
|
|
81
81
|
const V = r(
|
|
82
|
-
(L, l) => /* @__PURE__ */
|
|
82
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
83
83
|
/* @__PURE__ */ C(
|
|
84
84
|
"path",
|
|
85
85
|
{
|
|
@@ -181,8 +181,8 @@ const u = r(
|
|
|
181
181
|
);
|
|
182
182
|
u.displayName = "MagnifyingGlass";
|
|
183
183
|
const f = r(
|
|
184
|
-
(L, l) => /* @__PURE__ */
|
|
185
|
-
/* @__PURE__ */
|
|
184
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, viewBox: "0 0 20 20", children: [
|
|
185
|
+
/* @__PURE__ */ o("g", { clipPath: "url(#clip0_6290_399)", children: [
|
|
186
186
|
/* @__PURE__ */ C(
|
|
187
187
|
"path",
|
|
188
188
|
{
|
|
@@ -216,8 +216,8 @@ const f = r(
|
|
|
216
216
|
);
|
|
217
217
|
f.displayName = "FlagCz";
|
|
218
218
|
const m = r(
|
|
219
|
-
(L, l) => /* @__PURE__ */
|
|
220
|
-
/* @__PURE__ */
|
|
219
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, viewBox: "0 0 20 20", children: [
|
|
220
|
+
/* @__PURE__ */ o("g", { clipPath: "url(#clip0_6290_408)", children: [
|
|
221
221
|
/* @__PURE__ */ C("path", { d: "M1.00015 4H19.0002V15.9754H1.00015V4Z", fill: "#EFEFEF" }),
|
|
222
222
|
/* @__PURE__ */ C(
|
|
223
223
|
"path",
|
|
@@ -259,8 +259,8 @@ const m = r(
|
|
|
259
259
|
);
|
|
260
260
|
m.displayName = "FlagEn";
|
|
261
261
|
const y = r(
|
|
262
|
-
(L, l) => /* @__PURE__ */
|
|
263
|
-
/* @__PURE__ */
|
|
262
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, viewBox: "0 0 20 20", children: [
|
|
263
|
+
/* @__PURE__ */ o("g", { clipPath: "url(#clip0_6290_420)", children: [
|
|
264
264
|
/* @__PURE__ */ C(
|
|
265
265
|
"path",
|
|
266
266
|
{
|
|
@@ -399,7 +399,7 @@ const B = r(
|
|
|
399
399
|
) })
|
|
400
400
|
);
|
|
401
401
|
B.displayName = "NumberList";
|
|
402
|
-
const
|
|
402
|
+
const S = r(
|
|
403
403
|
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
404
404
|
"path",
|
|
405
405
|
{
|
|
@@ -408,8 +408,8 @@ const w = r(
|
|
|
408
408
|
}
|
|
409
409
|
) })
|
|
410
410
|
);
|
|
411
|
-
|
|
412
|
-
const
|
|
411
|
+
S.displayName = "RemoveTextFormat";
|
|
412
|
+
const w = r(
|
|
413
413
|
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
414
414
|
"path",
|
|
415
415
|
{
|
|
@@ -418,7 +418,7 @@ const S = r(
|
|
|
418
418
|
}
|
|
419
419
|
) })
|
|
420
420
|
);
|
|
421
|
-
|
|
421
|
+
w.displayName = "Colour";
|
|
422
422
|
const _ = r(
|
|
423
423
|
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
424
424
|
"path",
|
|
@@ -442,7 +442,7 @@ const D = r(
|
|
|
442
442
|
);
|
|
443
443
|
D.displayName = "DoubleArrowRight";
|
|
444
444
|
const P = r(
|
|
445
|
-
(L, l) => /* @__PURE__ */
|
|
445
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
446
446
|
/* @__PURE__ */ C(
|
|
447
447
|
"path",
|
|
448
448
|
{
|
|
@@ -477,7 +477,7 @@ const T = r(
|
|
|
477
477
|
) })
|
|
478
478
|
);
|
|
479
479
|
T.displayName = "XClose";
|
|
480
|
-
const z = r((L, l) => /* @__PURE__ */
|
|
480
|
+
const z = r((L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
481
481
|
/* @__PURE__ */ C(
|
|
482
482
|
"path",
|
|
483
483
|
{
|
|
@@ -531,7 +531,7 @@ const A = r((L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE_
|
|
|
531
531
|
) }));
|
|
532
532
|
A.displayName = "Plus";
|
|
533
533
|
const I = r(
|
|
534
|
-
(L, l) => /* @__PURE__ */
|
|
534
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
535
535
|
/* @__PURE__ */ C(
|
|
536
536
|
"path",
|
|
537
537
|
{
|
|
@@ -591,7 +591,7 @@ const W = r(
|
|
|
591
591
|
);
|
|
592
592
|
W.displayName = "Coins";
|
|
593
593
|
const b = r(
|
|
594
|
-
(L, l) => /* @__PURE__ */
|
|
594
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
595
595
|
/* @__PURE__ */ C(
|
|
596
596
|
"path",
|
|
597
597
|
{
|
|
@@ -614,7 +614,7 @@ const b = r(
|
|
|
614
614
|
);
|
|
615
615
|
b.displayName = "Coins2Outline";
|
|
616
616
|
const K = r(
|
|
617
|
-
(L, l) => /* @__PURE__ */
|
|
617
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
618
618
|
/* @__PURE__ */ C(
|
|
619
619
|
"path",
|
|
620
620
|
{
|
|
@@ -633,6 +633,16 @@ const K = r(
|
|
|
633
633
|
);
|
|
634
634
|
K.displayName = "Coins3";
|
|
635
635
|
const j = r(
|
|
636
|
+
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
637
|
+
"path",
|
|
638
|
+
{
|
|
639
|
+
d: "M0 4C0 1.79086 1.79086 0 4 0H20C22.2091 0 24 1.79086 24 4V20C24 22.2091 22.2091 24 20 24H4C1.79086 24 0 22.2091 0 20V4Z",
|
|
640
|
+
fill: "currentColor"
|
|
641
|
+
}
|
|
642
|
+
) })
|
|
643
|
+
);
|
|
644
|
+
j.displayName = "ColorSquare";
|
|
645
|
+
const q = r(
|
|
636
646
|
(L, l) => /* @__PURE__ */ C(e, { ref: l, ...L, children: /* @__PURE__ */ C(
|
|
637
647
|
"path",
|
|
638
648
|
{
|
|
@@ -643,9 +653,9 @@ const j = r(
|
|
|
643
653
|
}
|
|
644
654
|
) })
|
|
645
655
|
);
|
|
646
|
-
|
|
656
|
+
q.displayName = "EmptyCircle";
|
|
647
657
|
const G = r(
|
|
648
|
-
(L, l) => /* @__PURE__ */
|
|
658
|
+
(L, l) => /* @__PURE__ */ o(e, { ref: l, ...L, children: [
|
|
649
659
|
/* @__PURE__ */ C(
|
|
650
660
|
"path",
|
|
651
661
|
{
|
|
@@ -681,16 +691,17 @@ export {
|
|
|
681
691
|
H as Coins2Bold,
|
|
682
692
|
b as Coins2Outline,
|
|
683
693
|
K as Coins3,
|
|
684
|
-
|
|
694
|
+
j as ColorSquare,
|
|
695
|
+
w as Colour,
|
|
685
696
|
d as Cutlery,
|
|
686
697
|
D as DoubleArrowRight,
|
|
687
698
|
Z as EUR,
|
|
688
699
|
k as EditorBold,
|
|
689
700
|
v as EditorItalic,
|
|
690
701
|
g as EditorStrikethrough,
|
|
691
|
-
|
|
702
|
+
q as EmptyCircle,
|
|
692
703
|
P as ExternalLink,
|
|
693
|
-
|
|
704
|
+
i as EyeClosed,
|
|
694
705
|
I as Fingerprint,
|
|
695
706
|
f as FlagCz,
|
|
696
707
|
m as FlagEn,
|
|
@@ -702,7 +713,7 @@ export {
|
|
|
702
713
|
n as MuzaIcon,
|
|
703
714
|
B as NumberList,
|
|
704
715
|
A as Plus,
|
|
705
|
-
|
|
716
|
+
S as RemoveTextFormat,
|
|
706
717
|
N as Reorder,
|
|
707
718
|
a as SKMap,
|
|
708
719
|
z as Scan,
|
|
@@ -53,6 +53,8 @@ export interface ReorderableItemProps<T> {
|
|
|
53
53
|
className?: string;
|
|
54
54
|
/** Child elements */
|
|
55
55
|
children: ReactNode;
|
|
56
|
+
/** Style */
|
|
57
|
+
style?: CSSProperties;
|
|
56
58
|
}
|
|
57
59
|
declare const ReorderableItem: <T>(props: ReorderableItemProps<T> & {
|
|
58
60
|
ref?: ForwardedRef<HTMLLIElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Reorderable.d.ts","sourceRoot":"","sources":["../../../src/components/Reorderable/Reorderable.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,YAAY,EAIjB,KAAK,YAAY,EACjB,KAAK,SAAS,EAMf,MAAM,OAAO,CAAA;AACd,OAAO,EACL,KAAK,YAAY,EAEjB,KAAK,mBAAmB,EAGzB,MAAM,cAAc,CAAA;AAIrB,UAAU,4BAA4B,CAAC,CAAC,GAAG,OAAO;IAChD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,CAAC,EAAE,CAAA;IACZ,SAAS,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,IAAI,CAAA;IACnC,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,CAAA;CACjB;AAcD,QAAA,MAAM,mBAAmB,GAAI,CAAC,OACW,4BAA4B,CAAC,CAAC,CAAC,CAAA;AAExE,UAAU,2BAA2B;IACnC,YAAY,EAAE,YAAY,CAAA;IAC1B,oBAAoB,EAAE,OAAO,CAAA;IAC7B,QAAQ,EAAE,CAAC,SAAS,EAAE,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAA;CACtC;AAKD,QAAA,MAAM,kBAAkB,mCAMvB,CAAA;AAMD,KAAK,uBAAuB,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AAElD,MAAM,WAAW,qBAAqB,CAAC,CAAC;IACtC,6BAA6B;IAC7B,MAAM,EAAE,CAAC,EAAE,CAAA;IACX,wCAAwC;IACxC,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,IAAI,CAAA;IAClC,kCAAkC;IAClC,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,CAAA;IAChB,2CAA2C;IAC3C,EAAE,CAAC,EAAE,uBAAuB,CAAA;IAC5B,6BAA6B;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iEAAiE;IACjE,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,oBAAoB;IACpB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,EAAE,SAAS,CAAA;CACpB;AA8CD,QAAA,MAAM,gBAAgB,EAAwC,CAAC,CAAC,EAC9D,KAAK,EAAE,qBAAqB,CAAC,CAAC,CAAC,GAAG;IAChC,GAAG,CAAC,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;CACrC,KACE,YAAY,CAChB;AAMD,KAAK,sBAAsB,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAA;AAEjD,MAAM,WAAW,oBAAoB,CAAC,CAAC;IACrC,8EAA8E;IAC9E,KAAK,EAAE,CAAC,CAAA;IACR,2CAA2C;IAC3C,EAAE,CAAC,EAAE,sBAAsB,CAAA;IAC3B,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,+FAA+F;IAC/F,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,uFAAuF;IACvF,SAAS,CAAC,EAAE,mBAAmB,CAAA;IAC/B,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,EAAE,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"Reorderable.d.ts","sourceRoot":"","sources":["../../../src/components/Reorderable/Reorderable.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,YAAY,EAIjB,KAAK,YAAY,EACjB,KAAK,SAAS,EAMf,MAAM,OAAO,CAAA;AACd,OAAO,EACL,KAAK,YAAY,EAEjB,KAAK,mBAAmB,EAGzB,MAAM,cAAc,CAAA;AAIrB,UAAU,4BAA4B,CAAC,CAAC,GAAG,OAAO;IAChD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,CAAC,EAAE,CAAA;IACZ,SAAS,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,IAAI,CAAA;IACnC,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,CAAA;CACjB;AAcD,QAAA,MAAM,mBAAmB,GAAI,CAAC,OACW,4BAA4B,CAAC,CAAC,CAAC,CAAA;AAExE,UAAU,2BAA2B;IACnC,YAAY,EAAE,YAAY,CAAA;IAC1B,oBAAoB,EAAE,OAAO,CAAA;IAC7B,QAAQ,EAAE,CAAC,SAAS,EAAE,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAA;CACtC;AAKD,QAAA,MAAM,kBAAkB,mCAMvB,CAAA;AAMD,KAAK,uBAAuB,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AAElD,MAAM,WAAW,qBAAqB,CAAC,CAAC;IACtC,6BAA6B;IAC7B,MAAM,EAAE,CAAC,EAAE,CAAA;IACX,wCAAwC;IACxC,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,IAAI,CAAA;IAClC,kCAAkC;IAClC,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,CAAA;IAChB,2CAA2C;IAC3C,EAAE,CAAC,EAAE,uBAAuB,CAAA;IAC5B,6BAA6B;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iEAAiE;IACjE,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,oBAAoB;IACpB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,EAAE,SAAS,CAAA;CACpB;AA8CD,QAAA,MAAM,gBAAgB,EAAwC,CAAC,CAAC,EAC9D,KAAK,EAAE,qBAAqB,CAAC,CAAC,CAAC,GAAG;IAChC,GAAG,CAAC,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;CACrC,KACE,YAAY,CAChB;AAMD,KAAK,sBAAsB,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAA;AAEjD,MAAM,WAAW,oBAAoB,CAAC,CAAC;IACrC,8EAA8E;IAC9E,KAAK,EAAE,CAAC,CAAA;IACR,2CAA2C;IAC3C,EAAE,CAAC,EAAE,sBAAsB,CAAA;IAC3B,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,+FAA+F;IAC/F,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,uFAAuF;IACvF,SAAS,CAAC,EAAE,mBAAmB,CAAA;IAC/B,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,EAAE,SAAS,CAAA;IACnB,YAAY;IACZ,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AA8FD,QAAA,MAAM,eAAe,EAAuC,CAAC,CAAC,EAC5D,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,YAAY,CAAC,aAAa,CAAC,CAAA;CAAE,KACnE,YAAY,CAChB;AAMD,KAAK,wBAAwB,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,CAAA;AAEzD,MAAM,WAAW,sBAAsB;IACrC,+CAA+C;IAC/C,EAAE,CAAC,EAAE,wBAAwB,CAAA;IAC7B,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,0DAA0D;IAC1D,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,QAAA,MAAM,iBAAiB,sHAyHtB,CAAA;AAaD,KAAK,4BAA4B,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAA;AAEvD,KAAK,+BAA+B,GAAG;IACrC,EAAE,EAAE,aAAa,CAAA;IACjB,GAAG,EAAE,cAAc,CAAA;IACnB,EAAE,EAAE,mBAAmB,CAAA;CACxB,CAAA;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,0BAA0B,CACzC,CAAC,SAAS,4BAA4B,GAAG,IAAI;IAE7C,2CAA2C;IAC3C,EAAE,CAAC,EAAE,CAAC,CAAA;IACN,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB;IACrB,QAAQ,EAAE,SAAS,CAAA;CACpB;AAuBD,QAAA,MAAM,qBAAqB,EAA6C,CACtE,CAAC,SAAS,4BAA4B,GAAG,IAAI,EAE7C,KAAK,EAAE,0BAA0B,CAAC,CAAC,CAAC,GAAG;IACrC,GAAG,CAAC,EAAE,YAAY,CAAC,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAA;CACvD,KACE,YAAY,CAChB;AAMD,OAAO,EACL,gBAAgB,EAChB,eAAe,EACf,iBAAiB,EACjB,qBAAqB,EACrB,mBAAmB,EACnB,kBAAkB,GACnB,CAAA"}
|