@alxgrn/telefrag-ui 0.0.40 → 0.0.41

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.
@@ -0,0 +1,2 @@
1
+ declare const ColumnInsertAfter: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ColumnInsertAfter;
@@ -0,0 +1,23 @@
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: "M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z" }),
16
+ /* @__PURE__ */ t("path", { d: "M15 12l4 0" }),
17
+ /* @__PURE__ */ t("path", { d: "M17 10l0 4" })
18
+ ]
19
+ }
20
+ );
21
+ export {
22
+ r as default
23
+ };
@@ -0,0 +1,2 @@
1
+ declare const ColumnInsertBefore: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ColumnInsertBefore;
@@ -0,0 +1,23 @@
1
+ import { jsxs as o, jsx as e } from "react/jsx-runtime";
2
+ const r = () => /* @__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("path", { d: "M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z" }),
16
+ /* @__PURE__ */ e("path", { d: "M5 12l4 0" }),
17
+ /* @__PURE__ */ e("path", { d: "M7 10l0 4" })
18
+ ]
19
+ }
20
+ );
21
+ export {
22
+ r as default
23
+ };
@@ -0,0 +1,2 @@
1
+ declare const RowInsertAfter: () => import("react/jsx-runtime").JSX.Element;
2
+ export default RowInsertAfter;
@@ -0,0 +1,23 @@
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: "M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z" }),
16
+ /* @__PURE__ */ t("path", { d: "M12 15l0 4" }),
17
+ /* @__PURE__ */ t("path", { d: "M14 17l-4 0" })
18
+ ]
19
+ }
20
+ );
21
+ export {
22
+ r as default
23
+ };
@@ -0,0 +1,2 @@
1
+ declare const RowInsertBefore: () => import("react/jsx-runtime").JSX.Element;
2
+ export default RowInsertBefore;
@@ -0,0 +1,23 @@
1
+ import { jsxs as o, jsx as e } from "react/jsx-runtime";
2
+ const r = () => /* @__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("path", { d: "M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z" }),
16
+ /* @__PURE__ */ e("path", { d: "M12 9v-4" }),
17
+ /* @__PURE__ */ e("path", { d: "M10 7l4 0" })
18
+ ]
19
+ }
20
+ );
21
+ export {
22
+ r as default
23
+ };
@@ -7,6 +7,8 @@ import { default as ChevronRight } from './ChevronRight';
7
7
  import { default as Clock } from './Clock';
8
8
  import { default as Code } from './Code';
9
9
  import { default as CodeXml } from './CodeXml';
10
+ import { default as ColumnInsertAfter } from './ColumnInsertAfter';
11
+ import { default as ColumnInsertBefore } from './ColumnInsertBefore';
10
12
  import { default as Feather } from './Feather';
11
13
  import { default as Files } from './Files';
12
14
  import { default as Film } from './Film';
@@ -33,6 +35,8 @@ import { default as Plus } from './Plus';
33
35
  import { default as Quote } from './Quote';
34
36
  import { default as Redo } from './Redo';
35
37
  import { default as Rocket } from './Rocket';
38
+ import { default as RowInsertAfter } from './RowInsertAfter';
39
+ import { default as RowInsertBefore } from './RowInsertBefore';
36
40
  import { default as ShowSidebar } from './ShowSidebar';
37
41
  import { default as SquareDashed } from './SquareDashed';
38
42
  import { default as Strikethrough } from './Strikethrough';
@@ -43,4 +47,4 @@ import { default as Type } from './Type';
43
47
  import { default as Underline } from './Underline';
44
48
  import { default as Undo } from './Undo';
45
49
  import { default as Users } from './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, };
50
+ export { Asterisk, Bold, Book, Calendar, ChevronLeft, ChevronRight, Clock, Code, CodeXml, ColumnInsertAfter, ColumnInsertBefore, 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, RowInsertAfter, RowInsertBefore, ShowSidebar, SquareDashed, Strikethrough, Table, TelefragLogo, Trash, Type, Underline, Undo, Users, };
@@ -4,45 +4,49 @@ import { default as d } from "./Book.js";
4
4
  import { default as s } from "./Calendar.js";
5
5
  import { default as m } from "./ChevronLeft.js";
6
6
  import { default as x } from "./ChevronRight.js";
7
- import { default as n } from "./Clock.js";
7
+ import { default as i } from "./Clock.js";
8
8
  import { default as h } from "./Code.js";
9
- import { default as c } from "./CodeXml.js";
10
- import { default as C } from "./Feather.js";
11
- import { default as L } from "./Files.js";
9
+ import { default as H } from "./CodeXml.js";
10
+ import { default as c } from "./ColumnInsertAfter.js";
11
+ import { default as F } from "./ColumnInsertBefore.js";
12
+ import { default as R } from "./Feather.js";
13
+ import { default as B } from "./Files.js";
12
14
  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
- import { default as q } from "./Heading1.js";
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
- import { default as E } from "./Image.js";
24
- import { default as N } from "./IndentDecrease.js";
25
- import { default as Y } from "./Italic.js";
26
- import { default as _ } from "./JoinUp.js";
27
- import { default as ee } from "./Link.js";
28
- import { default as oe } from "./List.js";
29
- import { default as te } from "./ListOrdered.js";
30
- import { default as de } from "./Menu.js";
31
- import { default as se } from "./Pilcrow.js";
32
- import { default as me } from "./Plus.js";
33
- import { default as xe } from "./Quote.js";
34
- import { default as ne } from "./Redo.js";
35
- import { default as he } from "./Rocket.js";
36
- import { default as ce } from "./ShowSidebar.js";
37
- import { default as Ce } from "./SquareDashed.js";
38
- import { default as Le } from "./Strikethrough.js";
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";
15
+ import { default as A } from "./FlipVertical.js";
16
+ import { default as v } from "./Forum.js";
17
+ import { default as P } from "./Gamepad.js";
18
+ import { default as y } from "./Heading.js";
19
+ import { default as J } from "./Heading1.js";
20
+ import { default as O } from "./Heading2.js";
21
+ import { default as V } from "./Heading3.js";
22
+ import { default as j } from "./Heading4.js";
23
+ import { default as E } from "./Heading5.js";
24
+ import { default as N } from "./Heading6.js";
25
+ import { default as Y } from "./Image.js";
26
+ import { default as _ } from "./IndentDecrease.js";
27
+ import { default as ee } from "./Italic.js";
28
+ import { default as oe } from "./JoinUp.js";
29
+ import { default as te } from "./Link.js";
30
+ import { default as de } from "./List.js";
31
+ import { default as se } from "./ListOrdered.js";
32
+ import { default as me } from "./Menu.js";
33
+ import { default as xe } from "./Pilcrow.js";
34
+ import { default as ie } from "./Plus.js";
35
+ import { default as he } from "./Quote.js";
36
+ import { default as He } from "./Redo.js";
37
+ import { default as ce } from "./Rocket.js";
38
+ import { default as Fe } from "./RowInsertAfter.js";
39
+ import { default as Re } from "./RowInsertBefore.js";
40
+ import { default as Be } from "./ShowSidebar.js";
41
+ import { default as Te } from "./SquareDashed.js";
42
+ import { default as Ae } from "./Strikethrough.js";
43
+ import { default as ve } from "./Table.js";
44
+ import { default as Pe } from "./TelefragLogo.js";
45
+ import { default as ye } from "./Trash.js";
46
+ import { default as Je } from "./Type.js";
47
+ import { default as Oe } from "./Underline.js";
48
+ import { default as Ve } from "./Undo.js";
49
+ import { default as je } from "./Users.js";
46
50
  export {
47
51
  o as Asterisk,
48
52
  t as Bold,
@@ -50,43 +54,47 @@ export {
50
54
  s as Calendar,
51
55
  m as ChevronLeft,
52
56
  x as ChevronRight,
53
- n as Clock,
57
+ i as Clock,
54
58
  h as Code,
55
- c as CodeXml,
56
- C as Feather,
57
- L as Files,
59
+ H as CodeXml,
60
+ c as ColumnInsertAfter,
61
+ F as ColumnInsertBefore,
62
+ R as Feather,
63
+ B as Files,
58
64
  T as Film,
59
- I as FlipVertical,
60
- b as Forum,
61
- w as Gamepad,
62
- D as Heading,
63
- q as Heading1,
64
- A as Heading2,
65
- J as Heading3,
66
- O as Heading4,
67
- V as Heading5,
68
- j as Heading6,
69
- E as Image,
70
- N as IndentDecrease,
71
- Y as Italic,
72
- _ as JoinUp,
73
- ee as Link,
74
- oe as List,
75
- te as ListOrdered,
76
- de as Menu,
77
- se as Pilcrow,
78
- me as Plus,
79
- xe as Quote,
80
- ne as Redo,
81
- he as Rocket,
82
- ce as ShowSidebar,
83
- Ce as SquareDashed,
84
- Le as Strikethrough,
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
65
+ A as FlipVertical,
66
+ v as Forum,
67
+ P as Gamepad,
68
+ y as Heading,
69
+ J as Heading1,
70
+ O as Heading2,
71
+ V as Heading3,
72
+ j as Heading4,
73
+ E as Heading5,
74
+ N as Heading6,
75
+ Y as Image,
76
+ _ as IndentDecrease,
77
+ ee as Italic,
78
+ oe as JoinUp,
79
+ te as Link,
80
+ de as List,
81
+ se as ListOrdered,
82
+ me as Menu,
83
+ xe as Pilcrow,
84
+ ie as Plus,
85
+ he as Quote,
86
+ He as Redo,
87
+ ce as Rocket,
88
+ Fe as RowInsertAfter,
89
+ Re as RowInsertBefore,
90
+ Be as ShowSidebar,
91
+ Te as SquareDashed,
92
+ Ae as Strikethrough,
93
+ ve as Table,
94
+ Pe as TelefragLogo,
95
+ ye as Trash,
96
+ Je as Type,
97
+ Oe as Underline,
98
+ Ve as Undo,
99
+ je as Users
92
100
  };
@@ -0,0 +1,104 @@
1
+ import o from "./components/icons/Asterisk.js";
2
+ import r from "./components/icons/Bold.js";
3
+ import m from "./components/icons/Book.js";
4
+ import t from "./components/icons/Calendar.js";
5
+ import i from "./components/icons/ChevronLeft.js";
6
+ import e from "./components/icons/ChevronRight.js";
7
+ import f from "./components/icons/Clock.js";
8
+ import p from "./components/icons/Code.js";
9
+ import n from "./components/icons/CodeXml.js";
10
+ import a from "./components/icons/ColumnInsertAfter.js";
11
+ import d from "./components/icons/ColumnInsertBefore.js";
12
+ import l from "./components/icons/Feather.js";
13
+ import s from "./components/icons/Files.js";
14
+ import g from "./components/icons/Film.js";
15
+ import u from "./components/icons/FlipVertical.js";
16
+ import c from "./components/icons/Forum.js";
17
+ import h from "./components/icons/Gamepad.js";
18
+ import C from "./components/icons/Heading.js";
19
+ import H from "./components/icons/Heading1.js";
20
+ import I from "./components/icons/Heading2.js";
21
+ import k from "./components/icons/Heading3.js";
22
+ import S from "./components/icons/Heading4.js";
23
+ import b from "./components/icons/Heading5.js";
24
+ import F from "./components/icons/Heading6.js";
25
+ import L from "./components/icons/Image.js";
26
+ import R from "./components/icons/IndentDecrease.js";
27
+ import T from "./components/icons/Italic.js";
28
+ import w from "./components/icons/JoinUp.js";
29
+ import B from "./components/icons/Link.js";
30
+ import U from "./components/icons/List.js";
31
+ import _ from "./components/icons/ListOrdered.js";
32
+ import v from "./components/icons/Menu.js";
33
+ import y from "./components/icons/Pilcrow.js";
34
+ import A from "./components/icons/Plus.js";
35
+ import O from "./components/icons/Quote.js";
36
+ import P from "./components/icons/Redo.js";
37
+ import j from "./components/icons/Rocket.js";
38
+ import x from "./components/icons/RowInsertAfter.js";
39
+ import D from "./components/icons/RowInsertBefore.js";
40
+ import M from "./components/icons/ShowSidebar.js";
41
+ import q from "./components/icons/SquareDashed.js";
42
+ import z from "./components/icons/Strikethrough.js";
43
+ import G from "./components/icons/Table.js";
44
+ import J from "./components/icons/TelefragLogo.js";
45
+ import Q from "./components/icons/Trash.js";
46
+ import V from "./components/icons/Type.js";
47
+ import X from "./components/icons/Underline.js";
48
+ import E from "./components/icons/Undo.js";
49
+ import K from "./components/icons/Users.js";
50
+ const Vo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
51
+ __proto__: null,
52
+ Asterisk: o,
53
+ Bold: r,
54
+ Book: m,
55
+ Calendar: t,
56
+ ChevronLeft: i,
57
+ ChevronRight: e,
58
+ Clock: f,
59
+ Code: p,
60
+ CodeXml: n,
61
+ ColumnInsertAfter: a,
62
+ ColumnInsertBefore: d,
63
+ Feather: l,
64
+ Files: s,
65
+ Film: g,
66
+ FlipVertical: u,
67
+ Forum: c,
68
+ Gamepad: h,
69
+ Heading: C,
70
+ Heading1: H,
71
+ Heading2: I,
72
+ Heading3: k,
73
+ Heading4: S,
74
+ Heading5: b,
75
+ Heading6: F,
76
+ Image: L,
77
+ IndentDecrease: R,
78
+ Italic: T,
79
+ JoinUp: w,
80
+ Link: B,
81
+ List: U,
82
+ ListOrdered: _,
83
+ Menu: v,
84
+ Pilcrow: y,
85
+ Plus: A,
86
+ Quote: O,
87
+ Redo: P,
88
+ Rocket: j,
89
+ RowInsertAfter: x,
90
+ RowInsertBefore: D,
91
+ ShowSidebar: M,
92
+ SquareDashed: q,
93
+ Strikethrough: z,
94
+ Table: G,
95
+ TelefragLogo: J,
96
+ Trash: Q,
97
+ Type: V,
98
+ Underline: X,
99
+ Undo: E,
100
+ Users: K
101
+ }, Symbol.toStringTag, { value: "Module" }));
102
+ export {
103
+ Vo as i
104
+ };
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-DPxxuJZP.js";
35
+ import { i as co } from "./index-Ca0nwyaj.js";
36
36
  export {
37
37
  $ as Alert,
38
38
  q as Block,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alxgrn/telefrag-ui",
3
3
  "description": "UI library for The Daily Telefrag project",
4
- "version": "0.0.40",
4
+ "version": "0.0.41",
5
5
  "private": false,
6
6
  "author": "Alexander Fedorov <alex@molner.ru>",
7
7
  "license": "Apache-2.0",
@@ -1,96 +0,0 @@
1
- import o from "./components/icons/Asterisk.js";
2
- import r from "./components/icons/Bold.js";
3
- import m from "./components/icons/Book.js";
4
- import i from "./components/icons/Calendar.js";
5
- import t from "./components/icons/ChevronLeft.js";
6
- import e from "./components/icons/ChevronRight.js";
7
- import p from "./components/icons/Clock.js";
8
- import f from "./components/icons/Code.js";
9
- import a from "./components/icons/CodeXml.js";
10
- import d from "./components/icons/Feather.js";
11
- import n from "./components/icons/Files.js";
12
- import l from "./components/icons/Film.js";
13
- import g from "./components/icons/FlipVertical.js";
14
- import s from "./components/icons/Forum.js";
15
- import c from "./components/icons/Gamepad.js";
16
- import h from "./components/icons/Heading.js";
17
- import u from "./components/icons/Heading1.js";
18
- import H from "./components/icons/Heading2.js";
19
- import k from "./components/icons/Heading3.js";
20
- import C from "./components/icons/Heading4.js";
21
- import S from "./components/icons/Heading5.js";
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
- import B from "./components/icons/SquareDashed.js";
38
- import D from "./components/icons/Strikethrough.js";
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({
47
- __proto__: null,
48
- Asterisk: o,
49
- Bold: r,
50
- Book: m,
51
- Calendar: i,
52
- ChevronLeft: t,
53
- ChevronRight: e,
54
- Clock: p,
55
- Code: f,
56
- CodeXml: a,
57
- Feather: d,
58
- Files: n,
59
- Film: l,
60
- FlipVertical: g,
61
- Forum: s,
62
- Gamepad: c,
63
- Heading: h,
64
- Heading1: u,
65
- Heading2: H,
66
- Heading3: k,
67
- Heading4: C,
68
- Heading5: S,
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,
84
- SquareDashed: B,
85
- Strikethrough: D,
86
- Table: M,
87
- TelefragLogo: q,
88
- Trash: z,
89
- Type: A,
90
- Underline: G,
91
- Undo: J,
92
- Users: Q
93
- }, Symbol.toStringTag, { value: "Module" }));
94
- export {
95
- Do as i
96
- };