@caspeco/casper-ui-library 9.9.0 → 9.11.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/_virtual/index.js +5 -0
- package/dist/_virtual/index2.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.development.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.production.js +4 -0
- package/dist/_virtual/with-selector.development.js +4 -0
- package/dist/_virtual/with-selector.js +5 -0
- package/dist/_virtual/with-selector.production.js +4 -0
- package/dist/_virtual/with-selector2.js +4 -0
- package/dist/components/button/button-recipe.d.ts.map +1 -1
- package/dist/components/button/button-recipe.js +80 -39
- package/dist/components/input/input.d.ts +1 -0
- package/dist/components/input/input.d.ts.map +1 -1
- package/dist/components/input/types.d.ts +1 -1
- package/dist/components/input/types.d.ts.map +1 -1
- package/dist/components/rich-text-editor/boolean-control.d.ts +3 -0
- package/dist/components/rich-text-editor/boolean-control.d.ts.map +1 -0
- package/dist/components/rich-text-editor/boolean-control.js +35 -0
- package/dist/components/rich-text-editor/extensions.d.ts +4 -0
- package/dist/components/rich-text-editor/extensions.d.ts.map +1 -0
- package/dist/components/rich-text-editor/extensions.js +37 -0
- package/dist/components/rich-text-editor/index.d.ts +26 -0
- package/dist/components/rich-text-editor/index.d.ts.map +1 -0
- package/dist/components/rich-text-editor/index.js +23 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.d.ts +10 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.js +13 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.d.ts +11 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.js +202 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts +4 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.js +58 -0
- package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts +6 -0
- package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.d.ts +11 -0
- package/dist/components/rich-text-editor/rich-text-editor.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.js +60 -0
- package/dist/components/rich-text-editor/rich-text-editor.test.d.ts +2 -0
- package/dist/components/rich-text-editor/rich-text-editor.test.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts +2 -0
- package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-renderer.d.ts +3 -0
- package/dist/components/rich-text-editor/rich-text-renderer.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-renderer.js +21 -0
- package/dist/components/rich-text-editor/translations.d.ts +23 -0
- package/dist/components/rich-text-editor/translations.d.ts.map +1 -0
- package/dist/components/rich-text-editor/translations.js +120 -0
- package/dist/components/rich-text-editor/types.d.ts +30 -0
- package/dist/components/rich-text-editor/types.d.ts.map +1 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.d.ts +3 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.d.ts.map +1 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.js +17 -0
- package/dist/components/table/table-header-dropdown.d.ts.map +1 -1
- package/dist/components/table/table-header-dropdown.js +68 -66
- package/dist/components/toggle-button/toggle-button.d.ts.map +1 -1
- package/dist/components/toggle-button/toggle-button.js +11 -11
- package/dist/components/toggle-button/types.d.ts +2 -0
- package/dist/components/toggle-button/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +774 -763
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +83 -31
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +411 -226
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/lazy-measurements.js +33 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +29 -28
- package/dist/node_modules/@tiptap/core/dist/index.js +3953 -0
- package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +19 -0
- package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +62 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +85 -0
- package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
- package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +219 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +12 -0
- package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +61 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +67 -0
- package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +56 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +83 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +341 -0
- package/dist/node_modules/@tiptap/extension-list/dist/index.js +796 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +49 -0
- package/dist/node_modules/@tiptap/extension-strike/dist/index.js +66 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +13 -0
- package/dist/node_modules/@tiptap/extension-underline/dist/index.js +65 -0
- package/dist/node_modules/@tiptap/extensions/dist/index.js +446 -0
- package/dist/node_modules/@tiptap/starter-kit/dist/index.js +28 -0
- package/dist/node_modules/fast-equals/dist/es/index.js +324 -0
- package/dist/node_modules/linkifyjs/dist/linkify.js +705 -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 +2736 -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 +1552 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3802 -0
- package/dist/node_modules/rope-sequence/dist/index.js +100 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js +58 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js +57 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +58 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +46 -0
- package/dist/node_modules/use-sync-external-store/shim/index.js +10 -0
- package/dist/node_modules/use-sync-external-store/shim/with-selector.js +10 -0
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/dist/packages/casper-ui-library/node_modules/@tiptap/react/dist/index.js +506 -0
- package/package.json +14 -8
|
@@ -1,133 +1,135 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as r, Fragment as u, jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import { Portal as j } from "@chakra-ui/react";
|
|
3
3
|
import { flexRender as A } from "../../node_modules/@tanstack/react-table/build/lib/index.js";
|
|
4
|
-
import { memo as L, useCallback as M, useMemo as
|
|
4
|
+
import { memo as L, useCallback as M, useMemo as p } from "react";
|
|
5
5
|
import { useTableContext as U } from "./table-context.js";
|
|
6
6
|
import { translations as X } from "./translations.js";
|
|
7
7
|
import { SortDescIcon as k } from "../icon/icons/sort-desc-icon.js";
|
|
8
|
-
import { SortAscIcon as
|
|
8
|
+
import { SortAscIcon as S } from "../icon/icons/sort-asc-icon.js";
|
|
9
9
|
import { MenuItem as l } from "../menu/menu-item.js";
|
|
10
|
-
import { Text as
|
|
10
|
+
import { Text as c } from "../text/text.js";
|
|
11
11
|
import { FilterIcon as R } from "../icon/icons/filter-icon.js";
|
|
12
|
-
import { MenuDivider as
|
|
12
|
+
import { MenuDivider as w } from "../menu/menu-divider.js";
|
|
13
13
|
import { HideIcon as W } from "../icon/icons/hide-icon.js";
|
|
14
14
|
import { ThumbtackIcon as $ } from "../icon/icons/thumbtack-icon.js";
|
|
15
15
|
import { Switch as q } from "../switch/switch.js";
|
|
16
16
|
import { Menu as J } from "../menu/menu.js";
|
|
17
17
|
import { MenuBoxButton as K } from "../menu/menu-box-button.js";
|
|
18
18
|
import { MenuList as N } from "../menu/menu-list.js";
|
|
19
|
-
import { ThemeIconSizeVariable as
|
|
19
|
+
import { ThemeIconSizeVariable as D, ThemeColorVariable as v, ThemeSpaceVariable as Q, ThemeFontSizeVariable as F } from "../../theme/theme-types.js";
|
|
20
20
|
const Y = ({
|
|
21
|
-
header:
|
|
22
|
-
breakingContentState:
|
|
23
|
-
onBreakingContentChange:
|
|
24
|
-
setBreakingContentState:
|
|
25
|
-
headerGroup:
|
|
21
|
+
header: n,
|
|
22
|
+
breakingContentState: m,
|
|
23
|
+
onBreakingContentChange: h,
|
|
24
|
+
setBreakingContentState: g,
|
|
25
|
+
headerGroup: C,
|
|
26
26
|
sorting: d,
|
|
27
|
-
setSorting:
|
|
27
|
+
setSorting: f,
|
|
28
28
|
localeString: y,
|
|
29
29
|
portalContainerRef: z,
|
|
30
30
|
dragRef: V
|
|
31
31
|
}) => {
|
|
32
|
-
const i = X[y], H = U(), { getTableFilterMethods:
|
|
32
|
+
const i = X[y], H = U(), { getTableFilterMethods: s } = H, b = M(
|
|
33
33
|
({ checked: e }) => {
|
|
34
34
|
const t = {
|
|
35
|
-
...
|
|
36
|
-
[
|
|
35
|
+
...m,
|
|
36
|
+
[n.column.id]: e
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
g(t), h?.(t);
|
|
39
39
|
},
|
|
40
|
-
[
|
|
41
|
-
),
|
|
40
|
+
[m, n.column.id, h, g]
|
|
41
|
+
), x = M(
|
|
42
42
|
(e) => {
|
|
43
43
|
const t = e.getIndex();
|
|
44
|
-
|
|
44
|
+
C.forEach((E) => {
|
|
45
45
|
E.headers.forEach((O, T) => {
|
|
46
46
|
const { column: I } = O;
|
|
47
47
|
e.getIsPinned() ? T >= t && I.pin(!1) : T <= t && I.pin("left");
|
|
48
48
|
});
|
|
49
49
|
});
|
|
50
50
|
},
|
|
51
|
-
[
|
|
52
|
-
), P =
|
|
53
|
-
d.find((e) => e.id ===
|
|
54
|
-
|
|
55
|
-
] }), [
|
|
56
|
-
/* @__PURE__ */
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
51
|
+
[C]
|
|
52
|
+
), P = p(() => /* @__PURE__ */ r(u, { children: [
|
|
53
|
+
d.find((e) => e.id === n.column.id) && (d.find((e) => e.desc) ? /* @__PURE__ */ o(k, { size: D.XSmall }) : /* @__PURE__ */ o(S, { size: D.XSmall })),
|
|
54
|
+
n.column.columnDef.header
|
|
55
|
+
] }), [n.column.columnDef.header, n.column.id, d]), a = p(() => s()?.canFilterOnColumn(n.column.id) ?? !1, [n.column.id, s]), B = p(() => /* @__PURE__ */ r(u, { children: [
|
|
56
|
+
n.column.getCanSort() && /* @__PURE__ */ r(u, { children: [
|
|
57
|
+
/* @__PURE__ */ o(
|
|
58
|
+
l,
|
|
59
|
+
{
|
|
60
|
+
onClick: () => f([{ desc: !1, id: n.column.id }]),
|
|
61
|
+
leftIcon: S,
|
|
62
|
+
value: "sort-asc",
|
|
63
|
+
children: /* @__PURE__ */ o(c, { children: i.sortUp })
|
|
64
|
+
}
|
|
65
|
+
),
|
|
66
|
+
/* @__PURE__ */ o(
|
|
67
|
+
l,
|
|
68
|
+
{
|
|
69
|
+
onClick: () => f([{ desc: !0, id: n.column.id }]),
|
|
70
|
+
leftIcon: k,
|
|
71
|
+
value: "sort-desc",
|
|
72
|
+
children: /* @__PURE__ */ o(c, { children: i.sortDown })
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
] }),
|
|
76
|
+
a && /* @__PURE__ */ o(
|
|
75
77
|
l,
|
|
76
78
|
{
|
|
77
79
|
onClick: () => {
|
|
78
|
-
const e =
|
|
79
|
-
e?.onToggleFilterVisibility && e.onToggleFilterVisibility(
|
|
80
|
+
const e = s();
|
|
81
|
+
e?.onToggleFilterVisibility && e.onToggleFilterVisibility(n.column.id);
|
|
80
82
|
},
|
|
81
83
|
leftIcon: R,
|
|
82
84
|
value: "filter",
|
|
83
|
-
children: /* @__PURE__ */
|
|
85
|
+
children: /* @__PURE__ */ o(c, { children: i.filter })
|
|
84
86
|
}
|
|
85
87
|
),
|
|
86
|
-
/* @__PURE__ */
|
|
87
|
-
|
|
88
|
-
/* @__PURE__ */
|
|
89
|
-
/* @__PURE__ */
|
|
90
|
-
/* @__PURE__ */
|
|
88
|
+
(n.column.getCanSort() || a) && /* @__PURE__ */ o(w, {}),
|
|
89
|
+
n.column.getCanHide() && /* @__PURE__ */ o(l, { onClick: n.column.getToggleVisibilityHandler(), leftIcon: W, value: "hide", children: /* @__PURE__ */ o(c, { children: i.hideColumn }) }),
|
|
90
|
+
/* @__PURE__ */ o(l, { onClick: () => x(n.column), leftIcon: $, value: "pin", children: /* @__PURE__ */ o(c, { children: n.column.getIsPinned() ? i.stopPinningColumn : i.pinUpToColumn }) }),
|
|
91
|
+
/* @__PURE__ */ o(w, {}),
|
|
92
|
+
/* @__PURE__ */ r(l, { itemType: "switch", value: "breaking-content", children: [
|
|
91
93
|
i.breakingContent,
|
|
92
|
-
/* @__PURE__ */
|
|
94
|
+
/* @__PURE__ */ o(
|
|
93
95
|
q,
|
|
94
96
|
{
|
|
95
|
-
onCheckedChange:
|
|
96
|
-
isChecked:
|
|
97
|
+
onCheckedChange: b,
|
|
98
|
+
isChecked: m[n.column.id]
|
|
97
99
|
}
|
|
98
100
|
)
|
|
99
101
|
] })
|
|
100
102
|
] }), [
|
|
101
|
-
c,
|
|
102
|
-
x,
|
|
103
103
|
m,
|
|
104
|
+
a,
|
|
105
|
+
s,
|
|
106
|
+
x,
|
|
107
|
+
n.column,
|
|
104
108
|
b,
|
|
105
|
-
|
|
106
|
-
C,
|
|
107
|
-
u,
|
|
109
|
+
f,
|
|
108
110
|
i
|
|
109
111
|
]);
|
|
110
|
-
return /* @__PURE__ */
|
|
111
|
-
/* @__PURE__ */
|
|
112
|
+
return /* @__PURE__ */ o(J, { isLazy: !0, children: ({ isOpen: e }) => /* @__PURE__ */ r(u, { children: [
|
|
113
|
+
/* @__PURE__ */ o(
|
|
112
114
|
K,
|
|
113
115
|
{
|
|
114
116
|
ref: V,
|
|
115
|
-
color:
|
|
117
|
+
color: v.OnBackgroundSubdued,
|
|
116
118
|
textTransform: "none",
|
|
117
|
-
fontSize:
|
|
119
|
+
fontSize: F.Small,
|
|
118
120
|
h: "40px",
|
|
119
121
|
display: "flex",
|
|
120
122
|
textAlign: "inherit",
|
|
121
123
|
alignItems: "center",
|
|
122
124
|
lineHeight: "1.2",
|
|
123
125
|
padding: `0px 0px 0px ${Q.Small}`,
|
|
124
|
-
backgroundColor: e ?
|
|
126
|
+
backgroundColor: e ? v.BackgroundDisabled : "unset",
|
|
125
127
|
w: "100%",
|
|
126
128
|
overflowWrap: "anywhere",
|
|
127
|
-
children: A(P,
|
|
129
|
+
children: A(P, n.getContext())
|
|
128
130
|
}
|
|
129
131
|
),
|
|
130
|
-
/* @__PURE__ */
|
|
132
|
+
/* @__PURE__ */ o(j, { container: z, children: /* @__PURE__ */ o(N, { fontSize: F.Medium, children: B }) })
|
|
131
133
|
] }) });
|
|
132
134
|
}, bn = L(Y);
|
|
133
135
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toggle-button.d.ts","sourceRoot":"","sources":["../../../lib/components/toggle-button/toggle-button.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAGjD;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,
|
|
1
|
+
{"version":3,"file":"toggle-button.d.ts","sourceRoot":"","sources":["../../../lib/components/toggle-button/toggle-button.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAGjD;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAiBpD"}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
-
import { Button as
|
|
3
|
-
import { useButtonChildren as
|
|
4
|
-
function
|
|
5
|
-
const { isPressed:
|
|
2
|
+
import { Button as a } from "@chakra-ui/react";
|
|
3
|
+
import { useButtonChildren as l } from "./use-button-children.js";
|
|
4
|
+
function b(t) {
|
|
5
|
+
const { isPressed: r = !1, isDisabled: o, variant: e = "outline", subText: u, children: d, ...n } = t, i = l(t);
|
|
6
6
|
return /* @__PURE__ */ s(
|
|
7
|
-
|
|
7
|
+
a,
|
|
8
8
|
{
|
|
9
|
-
"aria-pressed":
|
|
9
|
+
"aria-pressed": r,
|
|
10
10
|
type: "button",
|
|
11
|
-
variant: "toggle",
|
|
12
|
-
disabled:
|
|
13
|
-
...
|
|
14
|
-
children:
|
|
11
|
+
variant: e === "ghost" ? "toggleGhost" : "toggle",
|
|
12
|
+
disabled: o,
|
|
13
|
+
...n,
|
|
14
|
+
children: i
|
|
15
15
|
}
|
|
16
16
|
);
|
|
17
17
|
}
|
|
18
18
|
export {
|
|
19
|
-
|
|
19
|
+
b as ToggleButton
|
|
20
20
|
};
|
|
@@ -7,6 +7,8 @@ type ToggleButtonPropsBase = {
|
|
|
7
7
|
isPressed?: boolean;
|
|
8
8
|
/** The size of the button, default: md */
|
|
9
9
|
size?: ConditionalValue<ButtonSize> | undefined;
|
|
10
|
+
/** The visual variant of the button. Defaults to "outline". Use "ghost" for borderless toolbar controls. */
|
|
11
|
+
variant?: "outline" | "ghost";
|
|
10
12
|
isDisabled?: boolean;
|
|
11
13
|
} & Pick<ChakraButtonProps, "children" | "onClick" | "type"> & CustomStyleProps;
|
|
12
14
|
type ToggleButtonPropsWithSubText = ToggleButtonPropsBase & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../lib/components/toggle-button/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,WAAW,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC5F,OAAO,KAAK,EAAE,WAAW,IAAI,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAE3F,KAAK,gBAAgB,GAAG,oBAAoB,GAAG,WAAW,GAAG,WAAW,GAAG,YAAY,CAAC;AAExF,KAAK,qBAAqB,GAAG;IAC5B,oEAAoE;IACpE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,0CAA0C;IAC1C,IAAI,CAAC,EAAE,gBAAgB,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../lib/components/toggle-button/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,WAAW,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC5F,OAAO,KAAK,EAAE,WAAW,IAAI,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAE3F,KAAK,gBAAgB,GAAG,oBAAoB,GAAG,WAAW,GAAG,WAAW,GAAG,YAAY,CAAC;AAExF,KAAK,qBAAqB,GAAG;IAC5B,oEAAoE;IACpE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,0CAA0C;IAC1C,IAAI,CAAC,EAAE,gBAAgB,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;IAChD,4GAA4G;IAC5G,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;IAE9B,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB,GAAG,IAAI,CAAC,iBAAiB,EAAE,UAAU,GAAG,SAAS,GAAG,MAAM,CAAC,GAC3D,gBAAgB,CAAC;AAElB,KAAK,4BAA4B,GAAG,qBAAqB,GAAG;IAC3D;;;;;OAKG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,+BAA+B,GAAG,qBAAqB,GAAG;IAC9D,OAAO,CAAC,EAAE,KAAK,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAIF,MAAM,MAAM,iBAAiB,GAAG,4BAA4B,GAAG,+BAA+B,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export * from './components/paginator/index.js';
|
|
|
35
35
|
export * from './components/quantity-button/index.js';
|
|
36
36
|
export * from './components/radio/index.js';
|
|
37
37
|
export * from './components/radio-card/index.js';
|
|
38
|
+
export * from './components/rich-text-editor/index.js';
|
|
38
39
|
export * from './components/segmented-control/index.js';
|
|
39
40
|
export * from './components/select/index.js';
|
|
40
41
|
export * from './components/skeleton/index.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AAExB,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AAExB,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC"}
|