@liveblocks/react-ui 2.16.0-toolbars2 → 2.16.0-toolbars3

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.
Files changed (58) hide show
  1. package/dist/_private/index.d.mts +16 -1
  2. package/dist/_private/index.d.ts +16 -1
  3. package/dist/_private/index.js +15 -0
  4. package/dist/_private/index.js.map +1 -1
  5. package/dist/_private/index.mjs +8 -1
  6. package/dist/_private/index.mjs.map +1 -1
  7. package/dist/components/internal/Button.js +26 -0
  8. package/dist/components/internal/Button.js.map +1 -1
  9. package/dist/components/internal/Button.mjs +26 -1
  10. package/dist/components/internal/Button.mjs.map +1 -1
  11. package/dist/icon.js +63 -0
  12. package/dist/icon.js.map +1 -0
  13. package/dist/icon.mjs +30 -0
  14. package/dist/icon.mjs.map +1 -0
  15. package/dist/icons/Blockquote.js +16 -0
  16. package/dist/icons/Blockquote.js.map +1 -0
  17. package/dist/icons/Blockquote.mjs +14 -0
  18. package/dist/icons/Blockquote.mjs.map +1 -0
  19. package/dist/icons/H1.js +16 -0
  20. package/dist/icons/H1.js.map +1 -0
  21. package/dist/icons/H1.mjs +14 -0
  22. package/dist/icons/H1.mjs.map +1 -0
  23. package/dist/icons/H2.js +16 -0
  24. package/dist/icons/H2.js.map +1 -0
  25. package/dist/icons/H2.mjs +14 -0
  26. package/dist/icons/H2.mjs.map +1 -0
  27. package/dist/icons/H3.js +16 -0
  28. package/dist/icons/H3.js.map +1 -0
  29. package/dist/icons/H3.mjs +14 -0
  30. package/dist/icons/H3.mjs.map +1 -0
  31. package/dist/icons/ListOrdered.js +16 -0
  32. package/dist/icons/ListOrdered.js.map +1 -0
  33. package/dist/icons/ListOrdered.mjs +14 -0
  34. package/dist/icons/ListOrdered.mjs.map +1 -0
  35. package/dist/icons/ListUnordered.js +39 -0
  36. package/dist/icons/ListUnordered.js.map +1 -0
  37. package/dist/icons/ListUnordered.mjs +37 -0
  38. package/dist/icons/ListUnordered.mjs.map +1 -0
  39. package/dist/icons/Text.js +16 -0
  40. package/dist/icons/Text.js.map +1 -0
  41. package/dist/icons/Text.mjs +14 -0
  42. package/dist/icons/Text.mjs.map +1 -0
  43. package/dist/icons/index.js +14 -0
  44. package/dist/icons/index.js.map +1 -1
  45. package/dist/icons/index.mjs +7 -0
  46. package/dist/icons/index.mjs.map +1 -1
  47. package/dist/index.d.mts +90 -1
  48. package/dist/index.d.ts +90 -1
  49. package/dist/index.js +2 -0
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.mjs +2 -0
  52. package/dist/index.mjs.map +1 -1
  53. package/dist/version.js +1 -1
  54. package/dist/version.mjs +1 -1
  55. package/package.json +4 -4
  56. package/src/styles/index.css +46 -32
  57. package/styles.css +1 -1
  58. package/styles.css.map +1 -1
@@ -0,0 +1,14 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { Icon } from '../components/internal/Icon.mjs';
3
+
4
+ function ListOrderedIcon(props) {
5
+ return /* @__PURE__ */ jsx(Icon, {
6
+ ...props,
7
+ children: /* @__PURE__ */ jsx("path", {
8
+ d: "M16 14.25H9M16 10H9m7-4.25H9m-5 0 1-.5V8.5m0 0H4m1 0h1m-2 3.4c.18-.24.6-.4 1-.4.5 0 1 .2 1 .81 0 .73-.75 1.22-2 2.44h2"
9
+ })
10
+ });
11
+ }
12
+
13
+ export { ListOrderedIcon };
14
+ //# sourceMappingURL=ListOrdered.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListOrdered.mjs","sources":["../../src/icons/ListOrdered.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function ListOrderedIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M16 14.25H9M16 10H9m7-4.25H9m-5 0 1-.5V8.5m0 0H4m1 0h1m-2 3.4c.18-.24.6-.4 1-.4.5 0 1 .2 1 .81 0 .73-.75 1.22-2 2.44h2\" />\n </Icon>\n );\n}\n"],"names":[],"mappings":";;;AAIO,SAAS,gBAAgB,KAA8B,EAAA;AAC5D,EAAA,uBACG,GAAA,CAAA,IAAA,EAAA;AAAA,IAAM,GAAG,KAAA;AAAA,IACR,QAAC,kBAAA,GAAA,CAAA,MAAA,EAAA;AAAA,MAAK,CAAE,EAAA,wHAAA;AAAA,KAAyH,CAAA;AAAA,GACnI,CAAA,CAAA;AAEJ;;;;"}
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+ var Icon = require('../components/internal/Icon.js');
5
+
6
+ function ListUnorderedIcon(props) {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, {
8
+ ...props,
9
+ children: [
10
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
11
+ d: "M16 14.25H8M16 10H8m8-4.25H8m-3.75 0h0"
12
+ }),
13
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
14
+ cx: 4.25,
15
+ cy: 5.75,
16
+ r: 0.25
17
+ }),
18
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
19
+ d: "M4.25 14.25h0"
20
+ }),
21
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
22
+ cx: 4.25,
23
+ cy: 14.25,
24
+ r: 0.25
25
+ }),
26
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
27
+ d: "M4.25 10h0"
28
+ }),
29
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
30
+ cx: 4.25,
31
+ cy: 10,
32
+ r: 0.25
33
+ })
34
+ ]
35
+ });
36
+ }
37
+
38
+ exports.ListUnorderedIcon = ListUnorderedIcon;
39
+ //# sourceMappingURL=ListUnordered.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListUnordered.js","sources":["../../src/icons/ListUnordered.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function ListUnorderedIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M16 14.25H8M16 10H8m8-4.25H8m-3.75 0h0\" />\n <circle cx={4.25} cy={5.75} r={0.25} />\n <path d=\"M4.25 14.25h0\" />\n <circle cx={4.25} cy={14.25} r={0.25} />\n <path d=\"M4.25 10h0\" />\n <circle cx={4.25} cy={10} r={0.25} />\n </Icon>\n );\n}\n"],"names":["jsxs","Icon","jsx"],"mappings":";;;;;AAIO,SAAS,kBAAkB,KAA8B,EAAA;AAC9D,EAAA,uBACGA,eAAA,CAAAC,SAAA,EAAA;AAAA,IAAM,GAAG,KAAA;AAAA,IACR,QAAA,EAAA;AAAA,sBAACC,cAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,wCAAA;AAAA,OAAyC,CAAA;AAAA,sBAChDA,cAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,IAAA;AAAA,QAAM,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,sBACpCA,cAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,eAAA;AAAA,OAAgB,CAAA;AAAA,sBACvBA,cAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,KAAA;AAAA,QAAO,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,sBACrCA,cAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,YAAA;AAAA,OAAa,CAAA;AAAA,sBACpBA,cAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,EAAA;AAAA,QAAI,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,KAAA;AAAA,GACrC,CAAA,CAAA;AAEJ;;;;"}
@@ -0,0 +1,37 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import { Icon } from '../components/internal/Icon.mjs';
3
+
4
+ function ListUnorderedIcon(props) {
5
+ return /* @__PURE__ */ jsxs(Icon, {
6
+ ...props,
7
+ children: [
8
+ /* @__PURE__ */ jsx("path", {
9
+ d: "M16 14.25H8M16 10H8m8-4.25H8m-3.75 0h0"
10
+ }),
11
+ /* @__PURE__ */ jsx("circle", {
12
+ cx: 4.25,
13
+ cy: 5.75,
14
+ r: 0.25
15
+ }),
16
+ /* @__PURE__ */ jsx("path", {
17
+ d: "M4.25 14.25h0"
18
+ }),
19
+ /* @__PURE__ */ jsx("circle", {
20
+ cx: 4.25,
21
+ cy: 14.25,
22
+ r: 0.25
23
+ }),
24
+ /* @__PURE__ */ jsx("path", {
25
+ d: "M4.25 10h0"
26
+ }),
27
+ /* @__PURE__ */ jsx("circle", {
28
+ cx: 4.25,
29
+ cy: 10,
30
+ r: 0.25
31
+ })
32
+ ]
33
+ });
34
+ }
35
+
36
+ export { ListUnorderedIcon };
37
+ //# sourceMappingURL=ListUnordered.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListUnordered.mjs","sources":["../../src/icons/ListUnordered.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function ListUnorderedIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M16 14.25H8M16 10H8m8-4.25H8m-3.75 0h0\" />\n <circle cx={4.25} cy={5.75} r={0.25} />\n <path d=\"M4.25 14.25h0\" />\n <circle cx={4.25} cy={14.25} r={0.25} />\n <path d=\"M4.25 10h0\" />\n <circle cx={4.25} cy={10} r={0.25} />\n </Icon>\n );\n}\n"],"names":[],"mappings":";;;AAIO,SAAS,kBAAkB,KAA8B,EAAA;AAC9D,EAAA,uBACG,IAAA,CAAA,IAAA,EAAA;AAAA,IAAM,GAAG,KAAA;AAAA,IACR,QAAA,EAAA;AAAA,sBAAC,GAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,wCAAA;AAAA,OAAyC,CAAA;AAAA,sBAChD,GAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,IAAA;AAAA,QAAM,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,sBACpC,GAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,eAAA;AAAA,OAAgB,CAAA;AAAA,sBACvB,GAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,KAAA;AAAA,QAAO,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,sBACrC,GAAA,CAAA,MAAA,EAAA;AAAA,QAAK,CAAE,EAAA,YAAA;AAAA,OAAa,CAAA;AAAA,sBACpB,GAAA,CAAA,QAAA,EAAA;AAAA,QAAO,EAAI,EAAA,IAAA;AAAA,QAAM,EAAI,EAAA,EAAA;AAAA,QAAI,CAAG,EAAA,IAAA;AAAA,OAAM,CAAA;AAAA,KAAA;AAAA,GACrC,CAAA,CAAA;AAEJ;;;;"}
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+ var Icon = require('../components/internal/Icon.js');
5
+
6
+ function TextIcon(props) {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, {
8
+ ...props,
9
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
10
+ d: "M5 6V4.75h10V6m-6.5 9.25h3M10 4.75v10.5"
11
+ })
12
+ });
13
+ }
14
+
15
+ exports.TextIcon = TextIcon;
16
+ //# sourceMappingURL=Text.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Text.js","sources":["../../src/icons/Text.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function TextIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M5 6V4.75h10V6m-6.5 9.25h3M10 4.75v10.5\" />\n </Icon>\n );\n}\n"],"names":["jsx","Icon"],"mappings":";;;;;AAIO,SAAS,SAAS,KAA8B,EAAA;AACrD,EAAA,uBACGA,cAAA,CAAAC,SAAA,EAAA;AAAA,IAAM,GAAG,KAAA;AAAA,IACR,QAAC,kBAAAD,cAAA,CAAA,MAAA,EAAA;AAAA,MAAK,CAAE,EAAA,yCAAA;AAAA,KAA0C,CAAA;AAAA,GACpD,CAAA,CAAA;AAEJ;;;;"}
@@ -0,0 +1,14 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { Icon } from '../components/internal/Icon.mjs';
3
+
4
+ function TextIcon(props) {
5
+ return /* @__PURE__ */ jsx(Icon, {
6
+ ...props,
7
+ children: /* @__PURE__ */ jsx("path", {
8
+ d: "M5 6V4.75h10V6m-6.5 9.25h3M10 4.75v10.5"
9
+ })
10
+ });
11
+ }
12
+
13
+ export { TextIcon };
14
+ //# sourceMappingURL=Text.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Text.mjs","sources":["../../src/icons/Text.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function TextIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M5 6V4.75h10V6m-6.5 9.25h3M10 4.75v10.5\" />\n </Icon>\n );\n}\n"],"names":[],"mappings":";;;AAIO,SAAS,SAAS,KAA8B,EAAA;AACrD,EAAA,uBACG,GAAA,CAAA,IAAA,EAAA;AAAA,IAAM,GAAG,KAAA;AAAA,IACR,QAAC,kBAAA,GAAA,CAAA,MAAA,EAAA;AAAA,MAAK,CAAE,EAAA,yCAAA;AAAA,KAA0C,CAAA;AAAA,GACpD,CAAA,CAAA;AAEJ;;;;"}
@@ -3,6 +3,7 @@
3
3
  var ArrowDown = require('./ArrowDown.js');
4
4
  var ArrowUp = require('./ArrowUp.js');
5
5
  var Attachment = require('./Attachment.js');
6
+ var Blockquote = require('./Blockquote.js');
6
7
  var Bold = require('./Bold.js');
7
8
  var Check = require('./Check.js');
8
9
  var ChevronDown = require('./ChevronDown.js');
@@ -17,8 +18,13 @@ var Edit = require('./Edit.js');
17
18
  var Ellipsis = require('./Ellipsis.js');
18
19
  var Emoji = require('./Emoji.js');
19
20
  var EmojiAdd = require('./EmojiAdd.js');
21
+ var H1 = require('./H1.js');
22
+ var H2 = require('./H2.js');
23
+ var H3 = require('./H3.js');
20
24
  var Italic = require('./Italic.js');
21
25
  var Lengthen = require('./Lengthen.js');
26
+ var ListOrdered = require('./ListOrdered.js');
27
+ var ListUnordered = require('./ListUnordered.js');
22
28
  var Mention = require('./Mention.js');
23
29
  var QuestionMark = require('./QuestionMark.js');
24
30
  var Redo = require('./Redo.js');
@@ -31,6 +37,7 @@ var Shorten = require('./Shorten.js');
31
37
  var Sparkles = require('./Sparkles.js');
32
38
  var Spinner = require('./Spinner.js');
33
39
  var Strikethrough = require('./Strikethrough.js');
40
+ var Text = require('./Text.js');
34
41
  var Translate = require('./Translate.js');
35
42
  var Underline = require('./Underline.js');
36
43
  var Undo = require('./Undo.js');
@@ -41,6 +48,7 @@ var Warning = require('./Warning.js');
41
48
  exports.ArrowDownIcon = ArrowDown.ArrowDownIcon;
42
49
  exports.ArrowUpIcon = ArrowUp.ArrowUpIcon;
43
50
  exports.AttachmentIcon = Attachment.AttachmentIcon;
51
+ exports.BlockquoteIcon = Blockquote.BlockquoteIcon;
44
52
  exports.BoldIcon = Bold.BoldIcon;
45
53
  exports.CheckIcon = Check.CheckIcon;
46
54
  exports.ChevronDownIcon = ChevronDown.ChevronDownIcon;
@@ -55,8 +63,13 @@ exports.EditIcon = Edit.EditIcon;
55
63
  exports.EllipsisIcon = Ellipsis.EllipsisIcon;
56
64
  exports.EmojiIcon = Emoji.EmojiIcon;
57
65
  exports.EmojiAddIcon = EmojiAdd.EmojiAddIcon;
66
+ exports.H1Icon = H1.H1Icon;
67
+ exports.H2Icon = H2.H2Icon;
68
+ exports.H3Icon = H3.H3Icon;
58
69
  exports.ItalicIcon = Italic.ItalicIcon;
59
70
  exports.LengthenIcon = Lengthen.LengthenIcon;
71
+ exports.ListOrderedIcon = ListOrdered.ListOrderedIcon;
72
+ exports.ListUnorderedIcon = ListUnordered.ListUnorderedIcon;
60
73
  exports.MentionIcon = Mention.MentionIcon;
61
74
  exports.QuestionMarkIcon = QuestionMark.QuestionMarkIcon;
62
75
  exports.RedoIcon = Redo.RedoIcon;
@@ -69,6 +82,7 @@ exports.ShortenIcon = Shorten.ShortenIcon;
69
82
  exports.SparklesIcon = Sparkles.SparklesIcon;
70
83
  exports.SpinnerIcon = Spinner.SpinnerIcon;
71
84
  exports.StrikethroughIcon = Strikethrough.StrikethroughIcon;
85
+ exports.TextIcon = Text.TextIcon;
72
86
  exports.TranslateIcon = Translate.TranslateIcon;
73
87
  exports.UnderlineIcon = Underline.UnderlineIcon;
74
88
  exports.UndoIcon = Undo.UndoIcon;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,7 @@
1
1
  export { ArrowDownIcon } from './ArrowDown.mjs';
2
2
  export { ArrowUpIcon } from './ArrowUp.mjs';
3
3
  export { AttachmentIcon } from './Attachment.mjs';
4
+ export { BlockquoteIcon } from './Blockquote.mjs';
4
5
  export { BoldIcon } from './Bold.mjs';
5
6
  export { CheckIcon } from './Check.mjs';
6
7
  export { ChevronDownIcon } from './ChevronDown.mjs';
@@ -15,8 +16,13 @@ export { EditIcon } from './Edit.mjs';
15
16
  export { EllipsisIcon } from './Ellipsis.mjs';
16
17
  export { EmojiIcon } from './Emoji.mjs';
17
18
  export { EmojiAddIcon } from './EmojiAdd.mjs';
19
+ export { H1Icon } from './H1.mjs';
20
+ export { H2Icon } from './H2.mjs';
21
+ export { H3Icon } from './H3.mjs';
18
22
  export { ItalicIcon } from './Italic.mjs';
19
23
  export { LengthenIcon } from './Lengthen.mjs';
24
+ export { ListOrderedIcon } from './ListOrdered.mjs';
25
+ export { ListUnorderedIcon } from './ListUnordered.mjs';
20
26
  export { MentionIcon } from './Mention.mjs';
21
27
  export { QuestionMarkIcon } from './QuestionMark.mjs';
22
28
  export { RedoIcon } from './Redo.mjs';
@@ -29,6 +35,7 @@ export { ShortenIcon } from './Shorten.mjs';
29
35
  export { SparklesIcon } from './Sparkles.mjs';
30
36
  export { SpinnerIcon } from './Spinner.mjs';
31
37
  export { StrikethroughIcon } from './Strikethrough.mjs';
38
+ export { TextIcon } from './Text.mjs';
32
39
  export { TranslateIcon } from './Translate.mjs';
33
40
  export { UnderlineIcon } from './Underline.mjs';
34
41
  export { UndoIcon } from './Undo.mjs';
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/dist/index.d.mts CHANGED
@@ -664,4 +664,93 @@ type LiveblocksUIConfigProps = PropsWithChildren<{
664
664
  */
665
665
  declare function LiveblocksUIConfig({ overrides, components, portalContainer, preventUnsavedComposerChanges, children, }: LiveblocksUIConfigProps): react_jsx_runtime.JSX.Element;
666
666
 
667
- export { Comment, CommentAttachmentArgs, CommentOverrides, CommentProps, Composer, ComposerBodyMark, ComposerBodyMarks, ComposerOverrides, ComposerProps, ComposerSubmitComment, GlobalOverrides, HistoryVersionSummary, HistoryVersionSummaryList, HistoryVersionSummaryListProps, HistoryVersionSummaryProps, InboxNotification, InboxNotificationAvatarProps, InboxNotificationCustomKindProps, InboxNotificationCustomProps, InboxNotificationIconProps, InboxNotificationList, InboxNotificationListProps, InboxNotificationOverrides, InboxNotificationProps, InboxNotificationTextMentionKindProps, InboxNotificationTextMentionProps, InboxNotificationThreadKindProps, InboxNotificationThreadProps, LiveblocksUIConfig, LocalizationOverrides, Overrides, Thread, ThreadOverrides, ThreadProps, useOverrides };
667
+ declare function AttachmentIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
668
+
669
+ declare function BlockquoteIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
670
+
671
+ declare function BoldIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
672
+
673
+ declare function CheckIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
674
+
675
+ declare function CodeIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
676
+
677
+ declare function CommentIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
678
+
679
+ declare function CrossIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
680
+
681
+ declare function EllipsisIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
682
+
683
+ declare function EmojiIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
684
+
685
+ declare function H1Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
686
+
687
+ declare function H2Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
688
+
689
+ declare function H3Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
690
+
691
+ declare function ItalicIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
692
+
693
+ declare function LengthenIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
694
+
695
+ declare function ListOrderedIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
696
+
697
+ declare function ListUnorderedIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
698
+
699
+ declare function MentionIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
700
+
701
+ declare function QuestionMarkIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
702
+
703
+ declare function RedoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
704
+
705
+ declare function SendIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
706
+
707
+ declare function ShortenIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
708
+
709
+ declare function SparklesIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
710
+
711
+ declare function StrikethroughIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
712
+
713
+ declare function TextIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
714
+
715
+ declare function TranslateIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
716
+
717
+ declare function UnderlineIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
718
+
719
+ declare function UndoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
720
+
721
+ declare function WarningIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
722
+
723
+ declare namespace icon {
724
+ export {
725
+ AttachmentIcon as Attachment,
726
+ BlockquoteIcon as Blockquote,
727
+ BoldIcon as Bold,
728
+ CheckIcon as Check,
729
+ CodeIcon as Code,
730
+ CommentIcon as Comment,
731
+ CrossIcon as Cross,
732
+ EllipsisIcon as Ellipsis,
733
+ EmojiIcon as Emoji,
734
+ H1Icon as H1,
735
+ H2Icon as H2,
736
+ H3Icon as H3,
737
+ ItalicIcon as Italic,
738
+ LengthenIcon as Lengthen,
739
+ ListOrderedIcon as ListOrdered,
740
+ ListUnorderedIcon as ListUnordered,
741
+ MentionIcon as Mention,
742
+ QuestionMarkIcon as QuestionMark,
743
+ RedoIcon as Redo,
744
+ SendIcon as Send,
745
+ ShortenIcon as Shorten,
746
+ SparklesIcon as Sparkles,
747
+ StrikethroughIcon as Strikethrough,
748
+ TextIcon as Text,
749
+ TranslateIcon as Translate,
750
+ UnderlineIcon as Underline,
751
+ UndoIcon as Undo,
752
+ WarningIcon as Warning,
753
+ };
754
+ }
755
+
756
+ export { Comment, CommentAttachmentArgs, CommentOverrides, CommentProps, Composer, ComposerBodyMark, ComposerBodyMarks, ComposerOverrides, ComposerProps, ComposerSubmitComment, GlobalOverrides, HistoryVersionSummary, HistoryVersionSummaryList, HistoryVersionSummaryListProps, HistoryVersionSummaryProps, icon as Icon, InboxNotification, InboxNotificationAvatarProps, InboxNotificationCustomKindProps, InboxNotificationCustomProps, InboxNotificationIconProps, InboxNotificationList, InboxNotificationListProps, InboxNotificationOverrides, InboxNotificationProps, InboxNotificationTextMentionKindProps, InboxNotificationTextMentionProps, InboxNotificationThreadKindProps, InboxNotificationThreadProps, LiveblocksUIConfig, LocalizationOverrides, Overrides, Thread, ThreadOverrides, ThreadProps, useOverrides };
package/dist/index.d.ts CHANGED
@@ -664,4 +664,93 @@ type LiveblocksUIConfigProps = PropsWithChildren<{
664
664
  */
665
665
  declare function LiveblocksUIConfig({ overrides, components, portalContainer, preventUnsavedComposerChanges, children, }: LiveblocksUIConfigProps): react_jsx_runtime.JSX.Element;
666
666
 
667
- export { Comment, CommentAttachmentArgs, CommentOverrides, CommentProps, Composer, ComposerBodyMark, ComposerBodyMarks, ComposerOverrides, ComposerProps, ComposerSubmitComment, GlobalOverrides, HistoryVersionSummary, HistoryVersionSummaryList, HistoryVersionSummaryListProps, HistoryVersionSummaryProps, InboxNotification, InboxNotificationAvatarProps, InboxNotificationCustomKindProps, InboxNotificationCustomProps, InboxNotificationIconProps, InboxNotificationList, InboxNotificationListProps, InboxNotificationOverrides, InboxNotificationProps, InboxNotificationTextMentionKindProps, InboxNotificationTextMentionProps, InboxNotificationThreadKindProps, InboxNotificationThreadProps, LiveblocksUIConfig, LocalizationOverrides, Overrides, Thread, ThreadOverrides, ThreadProps, useOverrides };
667
+ declare function AttachmentIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
668
+
669
+ declare function BlockquoteIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
670
+
671
+ declare function BoldIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
672
+
673
+ declare function CheckIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
674
+
675
+ declare function CodeIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
676
+
677
+ declare function CommentIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
678
+
679
+ declare function CrossIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
680
+
681
+ declare function EllipsisIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
682
+
683
+ declare function EmojiIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
684
+
685
+ declare function H1Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
686
+
687
+ declare function H2Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
688
+
689
+ declare function H3Icon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
690
+
691
+ declare function ItalicIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
692
+
693
+ declare function LengthenIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
694
+
695
+ declare function ListOrderedIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
696
+
697
+ declare function ListUnorderedIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
698
+
699
+ declare function MentionIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
700
+
701
+ declare function QuestionMarkIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
702
+
703
+ declare function RedoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
704
+
705
+ declare function SendIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
706
+
707
+ declare function ShortenIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
708
+
709
+ declare function SparklesIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
710
+
711
+ declare function StrikethroughIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
712
+
713
+ declare function TextIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
714
+
715
+ declare function TranslateIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
716
+
717
+ declare function UnderlineIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
718
+
719
+ declare function UndoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
720
+
721
+ declare function WarningIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
722
+
723
+ declare namespace icon {
724
+ export {
725
+ AttachmentIcon as Attachment,
726
+ BlockquoteIcon as Blockquote,
727
+ BoldIcon as Bold,
728
+ CheckIcon as Check,
729
+ CodeIcon as Code,
730
+ CommentIcon as Comment,
731
+ CrossIcon as Cross,
732
+ EllipsisIcon as Ellipsis,
733
+ EmojiIcon as Emoji,
734
+ H1Icon as H1,
735
+ H2Icon as H2,
736
+ H3Icon as H3,
737
+ ItalicIcon as Italic,
738
+ LengthenIcon as Lengthen,
739
+ ListOrderedIcon as ListOrdered,
740
+ ListUnorderedIcon as ListUnordered,
741
+ MentionIcon as Mention,
742
+ QuestionMarkIcon as QuestionMark,
743
+ RedoIcon as Redo,
744
+ SendIcon as Send,
745
+ ShortenIcon as Shorten,
746
+ SparklesIcon as Sparkles,
747
+ StrikethroughIcon as Strikethrough,
748
+ TextIcon as Text,
749
+ TranslateIcon as Translate,
750
+ UnderlineIcon as Underline,
751
+ UndoIcon as Undo,
752
+ WarningIcon as Warning,
753
+ };
754
+ }
755
+
756
+ export { Comment, CommentAttachmentArgs, CommentOverrides, CommentProps, Composer, ComposerBodyMark, ComposerBodyMarks, ComposerOverrides, ComposerProps, ComposerSubmitComment, GlobalOverrides, HistoryVersionSummary, HistoryVersionSummaryList, HistoryVersionSummaryListProps, HistoryVersionSummaryProps, icon as Icon, InboxNotification, InboxNotificationAvatarProps, InboxNotificationCustomKindProps, InboxNotificationCustomProps, InboxNotificationIconProps, InboxNotificationList, InboxNotificationListProps, InboxNotificationOverrides, InboxNotificationProps, InboxNotificationTextMentionKindProps, InboxNotificationTextMentionProps, InboxNotificationThreadKindProps, InboxNotificationThreadProps, LiveblocksUIConfig, LocalizationOverrides, Overrides, Thread, ThreadOverrides, ThreadProps, useOverrides };
package/dist/index.js CHANGED
@@ -10,6 +10,7 @@ var InboxNotification = require('./components/InboxNotification.js');
10
10
  var InboxNotificationList = require('./components/InboxNotificationList.js');
11
11
  var Thread = require('./components/Thread.js');
12
12
  var config = require('./config.js');
13
+ var icon = require('./icon.js');
13
14
  var overrides = require('./overrides.js');
14
15
 
15
16
  core.detectDupes(version.PKG_NAME, version.PKG_VERSION, version.PKG_FORMAT);
@@ -22,5 +23,6 @@ exports.InboxNotification = InboxNotification.InboxNotification;
22
23
  exports.InboxNotificationList = InboxNotificationList.InboxNotificationList;
23
24
  exports.Thread = Thread.Thread;
24
25
  exports.LiveblocksUIConfig = config.LiveblocksUIConfig;
26
+ exports.Icon = icon;
25
27
  exports.useOverrides = overrides.useOverrides;
26
28
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\n\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport type { CommentProps } from \"./components/Comment\";\nexport { Comment } from \"./components/Comment\";\nexport type { ComposerProps } from \"./components/Composer\";\nexport { Composer } from \"./components/Composer\";\nexport type { HistoryVersionSummaryProps } from \"./components/HistoryVersionSummary\";\nexport { HistoryVersionSummary } from \"./components/HistoryVersionSummary\";\nexport type { HistoryVersionSummaryListProps } from \"./components/HistoryVersionSummaryList\";\nexport { HistoryVersionSummaryList } from \"./components/HistoryVersionSummaryList\";\nexport type {\n InboxNotificationAvatarProps,\n InboxNotificationCustomKindProps,\n InboxNotificationCustomProps,\n InboxNotificationIconProps,\n InboxNotificationProps,\n InboxNotificationTextMentionKindProps,\n InboxNotificationTextMentionProps,\n InboxNotificationThreadKindProps,\n InboxNotificationThreadProps,\n} from \"./components/InboxNotification\";\nexport { InboxNotification } from \"./components/InboxNotification\";\nexport type { InboxNotificationListProps } from \"./components/InboxNotificationList\";\nexport { InboxNotificationList } from \"./components/InboxNotificationList\";\nexport type { ThreadProps } from \"./components/Thread\";\nexport { Thread } from \"./components/Thread\";\nexport { LiveblocksUIConfig } from \"./config\";\nexport type {\n CommentOverrides,\n ComposerOverrides,\n GlobalOverrides,\n InboxNotificationOverrides,\n LocalizationOverrides,\n Overrides,\n ThreadOverrides,\n} from \"./overrides\";\nexport { useOverrides } from \"./overrides\";\nexport type { ComposerSubmitComment } from \"./primitives\";\nexport type {\n CommentAttachmentArgs,\n ComposerBodyMark,\n ComposerBodyMarks,\n} from \"./types\";\n"],"names":["detectDupes","PKG_NAME","PKG_VERSION","PKG_FORMAT"],"mappings":";;;;;;;;;;;;;;AAIAA,gBAAY,CAAAC,gBAAA,EAAUC,qBAAaC,kBAAU,CAAA;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\n\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport type { CommentProps } from \"./components/Comment\";\nexport { Comment } from \"./components/Comment\";\nexport type { ComposerProps } from \"./components/Composer\";\nexport { Composer } from \"./components/Composer\";\nexport type { HistoryVersionSummaryProps } from \"./components/HistoryVersionSummary\";\nexport { HistoryVersionSummary } from \"./components/HistoryVersionSummary\";\nexport type { HistoryVersionSummaryListProps } from \"./components/HistoryVersionSummaryList\";\nexport { HistoryVersionSummaryList } from \"./components/HistoryVersionSummaryList\";\nexport type {\n InboxNotificationAvatarProps,\n InboxNotificationCustomKindProps,\n InboxNotificationCustomProps,\n InboxNotificationIconProps,\n InboxNotificationProps,\n InboxNotificationTextMentionKindProps,\n InboxNotificationTextMentionProps,\n InboxNotificationThreadKindProps,\n InboxNotificationThreadProps,\n} from \"./components/InboxNotification\";\nexport { InboxNotification } from \"./components/InboxNotification\";\nexport type { InboxNotificationListProps } from \"./components/InboxNotificationList\";\nexport { InboxNotificationList } from \"./components/InboxNotificationList\";\nexport type { ThreadProps } from \"./components/Thread\";\nexport { Thread } from \"./components/Thread\";\nexport { LiveblocksUIConfig } from \"./config\";\nexport * as Icon from \"./icon\";\nexport type {\n CommentOverrides,\n ComposerOverrides,\n GlobalOverrides,\n InboxNotificationOverrides,\n LocalizationOverrides,\n Overrides,\n ThreadOverrides,\n} from \"./overrides\";\nexport { useOverrides } from \"./overrides\";\nexport type { ComposerSubmitComment } from \"./primitives\";\nexport type {\n CommentAttachmentArgs,\n ComposerBodyMark,\n ComposerBodyMarks,\n} from \"./types\";\n"],"names":["detectDupes","PKG_NAME","PKG_VERSION","PKG_FORMAT"],"mappings":";;;;;;;;;;;;;;;AAIAA,gBAAY,CAAAC,gBAAA,EAAUC,qBAAaC,kBAAU,CAAA;;;;;;;;;;;;;"}
package/dist/index.mjs CHANGED
@@ -8,6 +8,8 @@ export { InboxNotification } from './components/InboxNotification.mjs';
8
8
  export { InboxNotificationList } from './components/InboxNotificationList.mjs';
9
9
  export { Thread } from './components/Thread.mjs';
10
10
  export { LiveblocksUIConfig } from './config.mjs';
11
+ import * as icon from './icon.mjs';
12
+ export { icon as Icon };
11
13
  export { useOverrides } from './overrides.mjs';
12
14
 
13
15
  detectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\n\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport type { CommentProps } from \"./components/Comment\";\nexport { Comment } from \"./components/Comment\";\nexport type { ComposerProps } from \"./components/Composer\";\nexport { Composer } from \"./components/Composer\";\nexport type { HistoryVersionSummaryProps } from \"./components/HistoryVersionSummary\";\nexport { HistoryVersionSummary } from \"./components/HistoryVersionSummary\";\nexport type { HistoryVersionSummaryListProps } from \"./components/HistoryVersionSummaryList\";\nexport { HistoryVersionSummaryList } from \"./components/HistoryVersionSummaryList\";\nexport type {\n InboxNotificationAvatarProps,\n InboxNotificationCustomKindProps,\n InboxNotificationCustomProps,\n InboxNotificationIconProps,\n InboxNotificationProps,\n InboxNotificationTextMentionKindProps,\n InboxNotificationTextMentionProps,\n InboxNotificationThreadKindProps,\n InboxNotificationThreadProps,\n} from \"./components/InboxNotification\";\nexport { InboxNotification } from \"./components/InboxNotification\";\nexport type { InboxNotificationListProps } from \"./components/InboxNotificationList\";\nexport { InboxNotificationList } from \"./components/InboxNotificationList\";\nexport type { ThreadProps } from \"./components/Thread\";\nexport { Thread } from \"./components/Thread\";\nexport { LiveblocksUIConfig } from \"./config\";\nexport type {\n CommentOverrides,\n ComposerOverrides,\n GlobalOverrides,\n InboxNotificationOverrides,\n LocalizationOverrides,\n Overrides,\n ThreadOverrides,\n} from \"./overrides\";\nexport { useOverrides } from \"./overrides\";\nexport type { ComposerSubmitComment } from \"./primitives\";\nexport type {\n CommentAttachmentArgs,\n ComposerBodyMark,\n ComposerBodyMarks,\n} from \"./types\";\n"],"names":[],"mappings":";;;;;;;;;;;;AAIA,WAAY,CAAA,QAAA,EAAU,aAAa,UAAU,CAAA"}
1
+ {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\n\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport type { CommentProps } from \"./components/Comment\";\nexport { Comment } from \"./components/Comment\";\nexport type { ComposerProps } from \"./components/Composer\";\nexport { Composer } from \"./components/Composer\";\nexport type { HistoryVersionSummaryProps } from \"./components/HistoryVersionSummary\";\nexport { HistoryVersionSummary } from \"./components/HistoryVersionSummary\";\nexport type { HistoryVersionSummaryListProps } from \"./components/HistoryVersionSummaryList\";\nexport { HistoryVersionSummaryList } from \"./components/HistoryVersionSummaryList\";\nexport type {\n InboxNotificationAvatarProps,\n InboxNotificationCustomKindProps,\n InboxNotificationCustomProps,\n InboxNotificationIconProps,\n InboxNotificationProps,\n InboxNotificationTextMentionKindProps,\n InboxNotificationTextMentionProps,\n InboxNotificationThreadKindProps,\n InboxNotificationThreadProps,\n} from \"./components/InboxNotification\";\nexport { InboxNotification } from \"./components/InboxNotification\";\nexport type { InboxNotificationListProps } from \"./components/InboxNotificationList\";\nexport { InboxNotificationList } from \"./components/InboxNotificationList\";\nexport type { ThreadProps } from \"./components/Thread\";\nexport { Thread } from \"./components/Thread\";\nexport { LiveblocksUIConfig } from \"./config\";\nexport * as Icon from \"./icon\";\nexport type {\n CommentOverrides,\n ComposerOverrides,\n GlobalOverrides,\n InboxNotificationOverrides,\n LocalizationOverrides,\n Overrides,\n ThreadOverrides,\n} from \"./overrides\";\nexport { useOverrides } from \"./overrides\";\nexport type { ComposerSubmitComment } from \"./primitives\";\nexport type {\n CommentAttachmentArgs,\n ComposerBodyMark,\n ComposerBodyMarks,\n} from \"./types\";\n"],"names":[],"mappings":";;;;;;;;;;;;;;AAIA,WAAY,CAAA,QAAA,EAAU,aAAa,UAAU,CAAA"}
package/dist/version.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const PKG_NAME = "@liveblocks/react-ui";
4
- const PKG_VERSION = typeof "2.16.0-toolbars2" === "string" && "2.16.0-toolbars2";
4
+ const PKG_VERSION = typeof "2.16.0-toolbars3" === "string" && "2.16.0-toolbars3";
5
5
  const PKG_FORMAT = typeof "cjs" === "string" && "cjs";
6
6
 
7
7
  exports.PKG_FORMAT = PKG_FORMAT;
package/dist/version.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  const PKG_NAME = "@liveblocks/react-ui";
2
- const PKG_VERSION = typeof "2.16.0-toolbars2" === "string" && "2.16.0-toolbars2";
2
+ const PKG_VERSION = typeof "2.16.0-toolbars3" === "string" && "2.16.0-toolbars3";
3
3
  const PKG_FORMAT = typeof "esm" === "string" && "esm";
4
4
 
5
5
  export { PKG_FORMAT, PKG_NAME, PKG_VERSION };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/react-ui",
3
- "version": "2.16.0-toolbars2",
3
+ "version": "2.16.0-toolbars3",
4
4
  "description": "A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "commonjs",
@@ -75,9 +75,9 @@
75
75
  },
76
76
  "dependencies": {
77
77
  "@floating-ui/react-dom": "^2.1.2",
78
- "@liveblocks/client": "2.16.0-toolbars2",
79
- "@liveblocks/core": "2.16.0-toolbars2",
80
- "@liveblocks/react": "2.16.0-toolbars2",
78
+ "@liveblocks/client": "2.16.0-toolbars3",
79
+ "@liveblocks/core": "2.16.0-toolbars3",
80
+ "@liveblocks/react": "2.16.0-toolbars3",
81
81
  "@radix-ui/react-dropdown-menu": "^2.1.2",
82
82
  "@radix-ui/react-popover": "^1.1.2",
83
83
  "@radix-ui/react-slot": "^1.1.0",