@alxgrn/telefrag-ui 0.0.39 → 0.0.40
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/icons/Table.d.ts +2 -0
- package/dist/components/icons/Table.js +24 -0
- package/dist/components/icons/Type.d.ts +2 -0
- package/dist/components/icons/Type.js +23 -0
- package/dist/components/icons/index.d.ts +3 -1
- package/dist/components/icons/index.js +34 -30
- package/dist/{index-BHO__0Wk.js → index-DPxxuJZP.js} +46 -42
- package/dist/main.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsxs as e, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const r = () => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
fill: "none",
|
|
7
|
+
strokeWidth: "2",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
strokeLinecap: "round",
|
|
10
|
+
strokeLinejoin: "round",
|
|
11
|
+
height: "1em",
|
|
12
|
+
width: "1em",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ t("path", { d: "M12 3v18" }),
|
|
16
|
+
/* @__PURE__ */ t("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
17
|
+
/* @__PURE__ */ t("path", { d: "M3 9h18" }),
|
|
18
|
+
/* @__PURE__ */ t("path", { d: "M3 15h18" })
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
r as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const t = () => /* @__PURE__ */ o(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
fill: "none",
|
|
7
|
+
strokeWidth: "2",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
strokeLinecap: "round",
|
|
10
|
+
strokeLinejoin: "round",
|
|
11
|
+
height: "1em",
|
|
12
|
+
width: "1em",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ e("polyline", { points: "4 7 4 4 20 4 20 7" }),
|
|
16
|
+
/* @__PURE__ */ e("line", { x1: "9", x2: "15", y1: "20", y2: "20" }),
|
|
17
|
+
/* @__PURE__ */ e("line", { x1: "12", x2: "12", y1: "4", y2: "20" })
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
export {
|
|
22
|
+
t as default
|
|
23
|
+
};
|
|
@@ -36,9 +36,11 @@ import { default as Rocket } from './Rocket';
|
|
|
36
36
|
import { default as ShowSidebar } from './ShowSidebar';
|
|
37
37
|
import { default as SquareDashed } from './SquareDashed';
|
|
38
38
|
import { default as Strikethrough } from './Strikethrough';
|
|
39
|
+
import { default as Table } from './Table';
|
|
39
40
|
import { default as TelefragLogo } from './TelefragLogo';
|
|
40
41
|
import { default as Trash } from './Trash';
|
|
42
|
+
import { default as Type } from './Type';
|
|
41
43
|
import { default as Underline } from './Underline';
|
|
42
44
|
import { default as Undo } from './Undo';
|
|
43
45
|
import { default as Users } from './Users';
|
|
44
|
-
export { Asterisk, Bold, Book, Calendar, ChevronLeft, ChevronRight, Clock, Code, CodeXml, Feather, Files, Film, FlipVertical, Forum, Gamepad, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Image, IndentDecrease, Italic, JoinUp, Link, List, ListOrdered, Menu, Pilcrow, Plus, Quote, Redo, Rocket, ShowSidebar, SquareDashed, Strikethrough, TelefragLogo, Trash, Underline, Undo, Users, };
|
|
46
|
+
export { Asterisk, Bold, Book, Calendar, ChevronLeft, ChevronRight, Clock, Code, CodeXml, Feather, Files, Film, FlipVertical, Forum, Gamepad, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Image, IndentDecrease, Italic, JoinUp, Link, List, ListOrdered, Menu, Pilcrow, Plus, Quote, Redo, Rocket, ShowSidebar, SquareDashed, Strikethrough, Table, TelefragLogo, Trash, Type, Underline, Undo, Users, };
|
|
@@ -9,17 +9,17 @@ import { default as h } from "./Code.js";
|
|
|
9
9
|
import { default as c } from "./CodeXml.js";
|
|
10
10
|
import { default as C } from "./Feather.js";
|
|
11
11
|
import { default as L } from "./Files.js";
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
12
|
+
import { default as T } from "./Film.js";
|
|
13
|
+
import { default as I } from "./FlipVertical.js";
|
|
14
|
+
import { default as b } from "./Forum.js";
|
|
15
|
+
import { default as w } from "./Gamepad.js";
|
|
16
|
+
import { default as D } from "./Heading.js";
|
|
17
17
|
import { default as q } from "./Heading1.js";
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
18
|
+
import { default as A } from "./Heading2.js";
|
|
19
|
+
import { default as J } from "./Heading3.js";
|
|
20
|
+
import { default as O } from "./Heading4.js";
|
|
21
|
+
import { default as V } from "./Heading5.js";
|
|
22
|
+
import { default as j } from "./Heading6.js";
|
|
23
23
|
import { default as E } from "./Image.js";
|
|
24
24
|
import { default as N } from "./IndentDecrease.js";
|
|
25
25
|
import { default as Y } from "./Italic.js";
|
|
@@ -36,11 +36,13 @@ import { default as he } from "./Rocket.js";
|
|
|
36
36
|
import { default as ce } from "./ShowSidebar.js";
|
|
37
37
|
import { default as Ce } from "./SquareDashed.js";
|
|
38
38
|
import { default as Le } from "./Strikethrough.js";
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
39
|
+
import { default as Te } from "./Table.js";
|
|
40
|
+
import { default as Ie } from "./TelefragLogo.js";
|
|
41
|
+
import { default as be } from "./Trash.js";
|
|
42
|
+
import { default as we } from "./Type.js";
|
|
43
|
+
import { default as De } from "./Underline.js";
|
|
44
|
+
import { default as qe } from "./Undo.js";
|
|
45
|
+
import { default as Ae } from "./Users.js";
|
|
44
46
|
export {
|
|
45
47
|
o as Asterisk,
|
|
46
48
|
t as Bold,
|
|
@@ -53,17 +55,17 @@ export {
|
|
|
53
55
|
c as CodeXml,
|
|
54
56
|
C as Feather,
|
|
55
57
|
L as Files,
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
T as Film,
|
|
59
|
+
I as FlipVertical,
|
|
60
|
+
b as Forum,
|
|
61
|
+
w as Gamepad,
|
|
62
|
+
D as Heading,
|
|
61
63
|
q as Heading1,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
A as Heading2,
|
|
65
|
+
J as Heading3,
|
|
66
|
+
O as Heading4,
|
|
67
|
+
V as Heading5,
|
|
68
|
+
j as Heading6,
|
|
67
69
|
E as Image,
|
|
68
70
|
N as IndentDecrease,
|
|
69
71
|
Y as Italic,
|
|
@@ -80,9 +82,11 @@ export {
|
|
|
80
82
|
ce as ShowSidebar,
|
|
81
83
|
Ce as SquareDashed,
|
|
82
84
|
Le as Strikethrough,
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
85
|
+
Te as Table,
|
|
86
|
+
Ie as TelefragLogo,
|
|
87
|
+
be as Trash,
|
|
88
|
+
we as Type,
|
|
89
|
+
De as Underline,
|
|
90
|
+
qe as Undo,
|
|
91
|
+
Ae as Users
|
|
88
92
|
};
|
|
@@ -19,29 +19,31 @@ import H from "./components/icons/Heading2.js";
|
|
|
19
19
|
import k from "./components/icons/Heading3.js";
|
|
20
20
|
import C from "./components/icons/Heading4.js";
|
|
21
21
|
import S from "./components/icons/Heading5.js";
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
22
|
+
import b from "./components/icons/Heading6.js";
|
|
23
|
+
import F from "./components/icons/Image.js";
|
|
24
|
+
import L from "./components/icons/IndentDecrease.js";
|
|
25
|
+
import T from "./components/icons/Italic.js";
|
|
26
|
+
import U from "./components/icons/JoinUp.js";
|
|
27
|
+
import _ from "./components/icons/Link.js";
|
|
28
|
+
import v from "./components/icons/List.js";
|
|
29
|
+
import y from "./components/icons/ListOrdered.js";
|
|
30
|
+
import I from "./components/icons/Menu.js";
|
|
31
|
+
import O from "./components/icons/Pilcrow.js";
|
|
32
|
+
import P from "./components/icons/Plus.js";
|
|
33
|
+
import R from "./components/icons/Quote.js";
|
|
34
|
+
import j from "./components/icons/Redo.js";
|
|
35
|
+
import w from "./components/icons/Rocket.js";
|
|
36
|
+
import x from "./components/icons/ShowSidebar.js";
|
|
37
37
|
import B from "./components/icons/SquareDashed.js";
|
|
38
38
|
import D from "./components/icons/Strikethrough.js";
|
|
39
|
-
import M from "./components/icons/
|
|
40
|
-
import q from "./components/icons/
|
|
41
|
-
import z from "./components/icons/
|
|
42
|
-
import A from "./components/icons/
|
|
43
|
-
import G from "./components/icons/
|
|
44
|
-
|
|
39
|
+
import M from "./components/icons/Table.js";
|
|
40
|
+
import q from "./components/icons/TelefragLogo.js";
|
|
41
|
+
import z from "./components/icons/Trash.js";
|
|
42
|
+
import A from "./components/icons/Type.js";
|
|
43
|
+
import G from "./components/icons/Underline.js";
|
|
44
|
+
import J from "./components/icons/Undo.js";
|
|
45
|
+
import Q from "./components/icons/Users.js";
|
|
46
|
+
const Do = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
45
47
|
__proto__: null,
|
|
46
48
|
Asterisk: o,
|
|
47
49
|
Bold: r,
|
|
@@ -64,29 +66,31 @@ const wo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
64
66
|
Heading3: k,
|
|
65
67
|
Heading4: C,
|
|
66
68
|
Heading5: S,
|
|
67
|
-
Heading6:
|
|
68
|
-
Image:
|
|
69
|
-
IndentDecrease:
|
|
70
|
-
Italic:
|
|
71
|
-
JoinUp:
|
|
72
|
-
Link:
|
|
73
|
-
List:
|
|
74
|
-
ListOrdered:
|
|
75
|
-
Menu:
|
|
76
|
-
Pilcrow:
|
|
77
|
-
Plus:
|
|
78
|
-
Quote:
|
|
79
|
-
Redo:
|
|
80
|
-
Rocket:
|
|
81
|
-
ShowSidebar:
|
|
69
|
+
Heading6: b,
|
|
70
|
+
Image: F,
|
|
71
|
+
IndentDecrease: L,
|
|
72
|
+
Italic: T,
|
|
73
|
+
JoinUp: U,
|
|
74
|
+
Link: _,
|
|
75
|
+
List: v,
|
|
76
|
+
ListOrdered: y,
|
|
77
|
+
Menu: I,
|
|
78
|
+
Pilcrow: O,
|
|
79
|
+
Plus: P,
|
|
80
|
+
Quote: R,
|
|
81
|
+
Redo: j,
|
|
82
|
+
Rocket: w,
|
|
83
|
+
ShowSidebar: x,
|
|
82
84
|
SquareDashed: B,
|
|
83
85
|
Strikethrough: D,
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
Table: M,
|
|
87
|
+
TelefragLogo: q,
|
|
88
|
+
Trash: z,
|
|
89
|
+
Type: A,
|
|
90
|
+
Underline: G,
|
|
91
|
+
Undo: J,
|
|
92
|
+
Users: Q
|
|
89
93
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
90
94
|
export {
|
|
91
|
-
|
|
95
|
+
Do as i
|
|
92
96
|
};
|
package/dist/main.js
CHANGED
|
@@ -32,7 +32,7 @@ import { default as po } from "./components/ui/editable/Editable.js";
|
|
|
32
32
|
import { default as lo } from "./components/layout/Layout.js";
|
|
33
33
|
import { default as uo } from "./components/layout/Page.js";
|
|
34
34
|
import { default as no } from "./components/layout/PageHeader.js";
|
|
35
|
-
import { i as co } from "./index-
|
|
35
|
+
import { i as co } from "./index-DPxxuJZP.js";
|
|
36
36
|
export {
|
|
37
37
|
$ as Alert,
|
|
38
38
|
q as Block,
|
package/package.json
CHANGED