@liveblocks/react-ui 3.15.0 → 3.15.1-rc2
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/_private/index.cjs +2 -0
- package/dist/_private/index.cjs.map +1 -1
- package/dist/_private/index.d.cts +3 -1
- package/dist/_private/index.d.ts +3 -1
- package/dist/_private/index.js +1 -0
- package/dist/_private/index.js.map +1 -1
- package/dist/components/AvatarStack.cjs +15 -10
- package/dist/components/AvatarStack.cjs.map +1 -1
- package/dist/components/AvatarStack.js +15 -10
- package/dist/components/AvatarStack.js.map +1 -1
- package/dist/components/CommentPin.cjs +4 -2
- package/dist/components/CommentPin.cjs.map +1 -1
- package/dist/components/CommentPin.js +4 -2
- package/dist/components/CommentPin.js.map +1 -1
- package/dist/components/Cursors.cjs +13 -16
- package/dist/components/Cursors.cjs.map +1 -1
- package/dist/components/Cursors.js +14 -17
- package/dist/components/Cursors.js.map +1 -1
- package/dist/components/FloatingComposer.cjs +14 -2
- package/dist/components/FloatingComposer.cjs.map +1 -1
- package/dist/components/FloatingComposer.js +15 -3
- package/dist/components/FloatingComposer.js.map +1 -1
- package/dist/components/FloatingThread.cjs +1 -0
- package/dist/components/FloatingThread.cjs.map +1 -1
- package/dist/components/FloatingThread.js +1 -0
- package/dist/components/FloatingThread.js.map +1 -1
- package/dist/components/internal/Dropdown.cjs +1 -0
- package/dist/components/internal/Dropdown.cjs.map +1 -1
- package/dist/components/internal/Dropdown.js +1 -0
- package/dist/components/internal/Dropdown.js.map +1 -1
- package/dist/components/internal/EmojiPicker.cjs +1 -0
- package/dist/components/internal/EmojiPicker.cjs.map +1 -1
- package/dist/components/internal/EmojiPicker.js +1 -0
- package/dist/components/internal/EmojiPicker.js.map +1 -1
- package/dist/components/internal/Tooltip.cjs +1 -0
- package/dist/components/internal/Tooltip.cjs.map +1 -1
- package/dist/components/internal/Tooltip.js +1 -0
- package/dist/components/internal/Tooltip.js.map +1 -1
- package/dist/icon.cjs +2 -0
- package/dist/icon.cjs.map +1 -1
- package/dist/icon.js +1 -0
- package/dist/icon.js.map +1 -1
- package/dist/icons/Plus.cjs +11 -0
- package/dist/icons/Plus.cjs.map +1 -0
- package/dist/icons/Plus.js +9 -0
- package/dist/icons/Plus.js.map +1 -0
- package/dist/icons/index.cjs +2 -0
- package/dist/icons/index.cjs.map +1 -1
- package/dist/icons/index.js +1 -0
- package/dist/icons/index.js.map +1 -1
- package/dist/index.d.cts +11 -3
- package/dist/index.d.ts +11 -3
- package/dist/utils/px.cjs +14 -0
- package/dist/utils/px.cjs.map +1 -0
- package/dist/utils/px.js +12 -0
- package/dist/utils/px.js.map +1 -0
- package/dist/version.cjs +1 -1
- package/dist/version.cjs.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +4 -4
- package/src/styles/index.css +8 -1
- package/styles.css +1 -1
- package/styles.css.map +1 -1
package/dist/icon.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icon.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/icon.js
CHANGED
|
@@ -30,6 +30,7 @@ export { LengthenIcon as Lengthen } from './icons/Lengthen.js';
|
|
|
30
30
|
export { ListOrderedIcon as ListOrdered } from './icons/ListOrdered.js';
|
|
31
31
|
export { ListUnorderedIcon as ListUnordered } from './icons/ListUnordered.js';
|
|
32
32
|
export { MentionIcon as Mention } from './icons/Mention.js';
|
|
33
|
+
export { PlusIcon as Plus } from './icons/Plus.js';
|
|
33
34
|
export { QuestionMarkIcon as QuestionMark } from './icons/QuestionMark.js';
|
|
34
35
|
export { RedoIcon as Redo } from './icons/Redo.js';
|
|
35
36
|
export { RetryIcon as Retry } from './icons/Retry.js';
|
package/dist/icon.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icon.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
+
var Icon = require('../components/internal/Icon.cjs');
|
|
5
|
+
|
|
6
|
+
function PlusIcon(props) {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 10h12M10 4v12" }) });
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
exports.PlusIcon = PlusIcon;
|
|
11
|
+
//# sourceMappingURL=Plus.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Plus.cjs","sources":["../../src/icons/Plus.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function PlusIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M4 10h12M10 4v12\" />\n </Icon>\n );\n}\n"],"names":["jsx","Icon"],"mappings":";;;;;AAIO,SAAS,SAAS,KAA8B,EAAA;AACrD,EACE,uBAAAA,cAAA,CAACC,aAAM,GAAG,KAAA,EACR,yCAAC,MAAK,EAAA,EAAA,CAAA,EAAE,oBAAmB,CAC7B,EAAA,CAAA,CAAA;AAEJ;;;;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { Icon } from '../components/internal/Icon.js';
|
|
3
|
+
|
|
4
|
+
function PlusIcon(props) {
|
|
5
|
+
return /* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M4 10h12M10 4v12" }) });
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export { PlusIcon };
|
|
9
|
+
//# sourceMappingURL=Plus.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Plus.js","sources":["../../src/icons/Plus.tsx"],"sourcesContent":["import type { ComponentProps } from \"react\";\n\nimport { Icon } from \"../components/internal/Icon\";\n\nexport function PlusIcon(props: ComponentProps<\"svg\">) {\n return (\n <Icon {...props}>\n <path d=\"M4 10h12M10 4v12\" />\n </Icon>\n );\n}\n"],"names":[],"mappings":";;;AAIO,SAAS,SAAS,KAA8B,EAAA;AACrD,EACE,uBAAA,GAAA,CAAC,QAAM,GAAG,KAAA,EACR,8BAAC,MAAK,EAAA,EAAA,CAAA,EAAE,oBAAmB,CAC7B,EAAA,CAAA,CAAA;AAEJ;;;;"}
|
package/dist/icons/index.cjs
CHANGED
|
@@ -36,6 +36,7 @@ var ListOrdered = require('./ListOrdered.cjs');
|
|
|
36
36
|
var ListUnordered = require('./ListUnordered.cjs');
|
|
37
37
|
var Mention = require('./Mention.cjs');
|
|
38
38
|
var MinusCircle = require('./MinusCircle.cjs');
|
|
39
|
+
var Plus = require('./Plus.cjs');
|
|
39
40
|
var QuestionMark = require('./QuestionMark.cjs');
|
|
40
41
|
var Redo = require('./Redo.cjs');
|
|
41
42
|
var Restore = require('./Restore.cjs');
|
|
@@ -94,6 +95,7 @@ exports.ListOrderedIcon = ListOrdered.ListOrderedIcon;
|
|
|
94
95
|
exports.ListUnorderedIcon = ListUnordered.ListUnorderedIcon;
|
|
95
96
|
exports.MentionIcon = Mention.MentionIcon;
|
|
96
97
|
exports.MinusCircleIcon = MinusCircle.MinusCircleIcon;
|
|
98
|
+
exports.PlusIcon = Plus.PlusIcon;
|
|
97
99
|
exports.QuestionMarkIcon = QuestionMark.QuestionMarkIcon;
|
|
98
100
|
exports.RedoIcon = Redo.RedoIcon;
|
|
99
101
|
exports.RestoreIcon = Restore.RestoreIcon;
|
package/dist/icons/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/icons/index.js
CHANGED
|
@@ -34,6 +34,7 @@ export { ListOrderedIcon } from './ListOrdered.js';
|
|
|
34
34
|
export { ListUnorderedIcon } from './ListUnordered.js';
|
|
35
35
|
export { MentionIcon } from './Mention.js';
|
|
36
36
|
export { MinusCircleIcon } from './MinusCircle.js';
|
|
37
|
+
export { PlusIcon } from './Plus.js';
|
|
37
38
|
export { QuestionMarkIcon } from './QuestionMark.js';
|
|
38
39
|
export { RedoIcon } from './Redo.js';
|
|
39
40
|
export { RestoreIcon } from './Restore.js';
|
package/dist/icons/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.cts
CHANGED
|
@@ -816,10 +816,10 @@ interface AvatarStackProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
816
816
|
*/
|
|
817
817
|
userIds?: string[];
|
|
818
818
|
/**
|
|
819
|
-
* The maximum number of
|
|
820
|
-
* Defaults to 3, set to `
|
|
819
|
+
* The maximum number of items in the stack (at least 2).
|
|
820
|
+
* Defaults to 3, set to `null` to show all avatars.
|
|
821
821
|
*/
|
|
822
|
-
max?: number;
|
|
822
|
+
max?: number | null;
|
|
823
823
|
/**
|
|
824
824
|
* The size of the avatars.
|
|
825
825
|
*/
|
|
@@ -1224,6 +1224,11 @@ interface CommentPinProps extends ComponentPropsWithoutRef<"button"> {
|
|
|
1224
1224
|
* The size of the pin.
|
|
1225
1225
|
*/
|
|
1226
1226
|
size?: string | number;
|
|
1227
|
+
/**
|
|
1228
|
+
* The content shown in the pin.
|
|
1229
|
+
* If provided, the `userId` prop is ignored.
|
|
1230
|
+
*/
|
|
1231
|
+
children?: ReactNode;
|
|
1227
1232
|
}
|
|
1228
1233
|
/**
|
|
1229
1234
|
* Displays a comment pin that can be used as a trigger
|
|
@@ -1720,6 +1725,8 @@ declare function ListUnorderedIcon(props: ComponentProps<"svg">): react_jsx_runt
|
|
|
1720
1725
|
|
|
1721
1726
|
declare function MentionIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1722
1727
|
|
|
1728
|
+
declare function PlusIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1729
|
+
|
|
1723
1730
|
declare function QuestionMarkIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1724
1731
|
|
|
1725
1732
|
declare function RedoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
@@ -1787,6 +1794,7 @@ declare namespace icon {
|
|
|
1787
1794
|
ListOrderedIcon as ListOrdered,
|
|
1788
1795
|
ListUnorderedIcon as ListUnordered,
|
|
1789
1796
|
MentionIcon as Mention,
|
|
1797
|
+
PlusIcon as Plus,
|
|
1790
1798
|
QuestionMarkIcon as QuestionMark,
|
|
1791
1799
|
RedoIcon as Redo,
|
|
1792
1800
|
RetryIcon as Retry,
|
package/dist/index.d.ts
CHANGED
|
@@ -816,10 +816,10 @@ interface AvatarStackProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
816
816
|
*/
|
|
817
817
|
userIds?: string[];
|
|
818
818
|
/**
|
|
819
|
-
* The maximum number of
|
|
820
|
-
* Defaults to 3, set to `
|
|
819
|
+
* The maximum number of items in the stack (at least 2).
|
|
820
|
+
* Defaults to 3, set to `null` to show all avatars.
|
|
821
821
|
*/
|
|
822
|
-
max?: number;
|
|
822
|
+
max?: number | null;
|
|
823
823
|
/**
|
|
824
824
|
* The size of the avatars.
|
|
825
825
|
*/
|
|
@@ -1224,6 +1224,11 @@ interface CommentPinProps extends ComponentPropsWithoutRef<"button"> {
|
|
|
1224
1224
|
* The size of the pin.
|
|
1225
1225
|
*/
|
|
1226
1226
|
size?: string | number;
|
|
1227
|
+
/**
|
|
1228
|
+
* The content shown in the pin.
|
|
1229
|
+
* If provided, the `userId` prop is ignored.
|
|
1230
|
+
*/
|
|
1231
|
+
children?: ReactNode;
|
|
1227
1232
|
}
|
|
1228
1233
|
/**
|
|
1229
1234
|
* Displays a comment pin that can be used as a trigger
|
|
@@ -1720,6 +1725,8 @@ declare function ListUnorderedIcon(props: ComponentProps<"svg">): react_jsx_runt
|
|
|
1720
1725
|
|
|
1721
1726
|
declare function MentionIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1722
1727
|
|
|
1728
|
+
declare function PlusIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1729
|
+
|
|
1723
1730
|
declare function QuestionMarkIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
1724
1731
|
|
|
1725
1732
|
declare function RedoIcon(props: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
@@ -1787,6 +1794,7 @@ declare namespace icon {
|
|
|
1787
1794
|
ListOrderedIcon as ListOrdered,
|
|
1788
1795
|
ListUnorderedIcon as ListUnordered,
|
|
1789
1796
|
MentionIcon as Mention,
|
|
1797
|
+
PlusIcon as Plus,
|
|
1790
1798
|
QuestionMarkIcon as QuestionMark,
|
|
1791
1799
|
RedoIcon as Redo,
|
|
1792
1800
|
RetryIcon as Retry,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"px.cjs","sources":["../../src/utils/px.ts"],"sourcesContent":["export function px(value: number | string | undefined): string | undefined {\n if (value === undefined) {\n return undefined;\n }\n\n if (typeof value === \"number\") {\n return `${value}px`;\n }\n\n return value;\n}\n"],"names":[],"mappings":";;AAAO,SAAS,GAAG,KAAwD,EAAA;AACzE,EAAA,IAAI,UAAU,KAAW,CAAA,EAAA;AACvB,IAAO,OAAA,KAAA,CAAA,CAAA;AAAA,GACT;AAEA,EAAI,IAAA,OAAO,UAAU,QAAU,EAAA;AAC7B,IAAA,OAAO,GAAG,KAAK,CAAA,EAAA,CAAA,CAAA;AAAA,GACjB;AAEA,EAAO,OAAA,KAAA,CAAA;AACT;;;;"}
|
package/dist/utils/px.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"px.js","sources":["../../src/utils/px.ts"],"sourcesContent":["export function px(value: number | string | undefined): string | undefined {\n if (value === undefined) {\n return undefined;\n }\n\n if (typeof value === \"number\") {\n return `${value}px`;\n }\n\n return value;\n}\n"],"names":[],"mappings":"AAAO,SAAS,GAAG,KAAwD,EAAA;AACzE,EAAA,IAAI,UAAU,KAAW,CAAA,EAAA;AACvB,IAAO,OAAA,KAAA,CAAA,CAAA;AAAA,GACT;AAEA,EAAI,IAAA,OAAO,UAAU,QAAU,EAAA;AAC7B,IAAA,OAAO,GAAG,KAAK,CAAA,EAAA,CAAA,CAAA;AAAA,GACjB;AAEA,EAAO,OAAA,KAAA,CAAA;AACT;;;;"}
|
package/dist/version.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const PKG_NAME = "@liveblocks/react-ui";
|
|
4
|
-
const PKG_VERSION = typeof "3.15.
|
|
4
|
+
const PKG_VERSION = typeof "3.15.1-rc2" === "string" && "3.15.1-rc2";
|
|
5
5
|
const PKG_FORMAT = typeof "cjs" === "string" && "cjs";
|
|
6
6
|
|
|
7
7
|
exports.PKG_FORMAT = PKG_FORMAT;
|
package/dist/version.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.cjs","sources":["../src/version.ts"],"sourcesContent":["declare const __VERSION__: string;\ndeclare const ROLLUP_FORMAT: string;\n\nexport const PKG_NAME = \"@liveblocks/react-ui\";\nexport const PKG_VERSION = typeof __VERSION__ === \"string\" && __VERSION__;\nexport const PKG_FORMAT = typeof ROLLUP_FORMAT === \"string\" && ROLLUP_FORMAT;\n"],"names":[],"mappings":";;AAGO,MAAM,QAAW,GAAA,uBAAA;AACX,MAAA,WAAA,GAAc,OAAO,
|
|
1
|
+
{"version":3,"file":"version.cjs","sources":["../src/version.ts"],"sourcesContent":["declare const __VERSION__: string;\ndeclare const ROLLUP_FORMAT: string;\n\nexport const PKG_NAME = \"@liveblocks/react-ui\";\nexport const PKG_VERSION = typeof __VERSION__ === \"string\" && __VERSION__;\nexport const PKG_FORMAT = typeof ROLLUP_FORMAT === \"string\" && ROLLUP_FORMAT;\n"],"names":[],"mappings":";;AAGO,MAAM,QAAW,GAAA,uBAAA;AACX,MAAA,WAAA,GAAc,OAAO,YAAA,KAAgB,QAAY,IAAA,aAAA;AACjD,MAAA,UAAA,GAAa,OAAO,KAAA,KAAkB,QAAY,IAAA;;;;;;"}
|
package/dist/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const PKG_NAME = "@liveblocks/react-ui";
|
|
2
|
-
const PKG_VERSION = typeof "3.15.
|
|
2
|
+
const PKG_VERSION = typeof "3.15.1-rc2" === "string" && "3.15.1-rc2";
|
|
3
3
|
const PKG_FORMAT = typeof "esm" === "string" && "esm";
|
|
4
4
|
|
|
5
5
|
export { PKG_FORMAT, PKG_NAME, PKG_VERSION };
|
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../src/version.ts"],"sourcesContent":["declare const __VERSION__: string;\ndeclare const ROLLUP_FORMAT: string;\n\nexport const PKG_NAME = \"@liveblocks/react-ui\";\nexport const PKG_VERSION = typeof __VERSION__ === \"string\" && __VERSION__;\nexport const PKG_FORMAT = typeof ROLLUP_FORMAT === \"string\" && ROLLUP_FORMAT;\n"],"names":[],"mappings":"AAGO,MAAM,QAAW,GAAA,uBAAA;AACX,MAAA,WAAA,GAAc,OAAO,
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../src/version.ts"],"sourcesContent":["declare const __VERSION__: string;\ndeclare const ROLLUP_FORMAT: string;\n\nexport const PKG_NAME = \"@liveblocks/react-ui\";\nexport const PKG_VERSION = typeof __VERSION__ === \"string\" && __VERSION__;\nexport const PKG_FORMAT = typeof ROLLUP_FORMAT === \"string\" && ROLLUP_FORMAT;\n"],"names":[],"mappings":"AAGO,MAAM,QAAW,GAAA,uBAAA;AACX,MAAA,WAAA,GAAc,OAAO,YAAA,KAAgB,QAAY,IAAA,aAAA;AACjD,MAAA,UAAA,GAAa,OAAO,KAAA,KAAkB,QAAY,IAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/react-ui",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.1-rc2",
|
|
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
|
"author": "Liveblocks Inc.",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@floating-ui/react-dom": "^2.1.0",
|
|
81
|
-
"@liveblocks/client": "3.15.
|
|
82
|
-
"@liveblocks/core": "3.15.
|
|
83
|
-
"@liveblocks/react": "3.15.
|
|
81
|
+
"@liveblocks/client": "3.15.1-rc2",
|
|
82
|
+
"@liveblocks/core": "3.15.1-rc2",
|
|
83
|
+
"@liveblocks/react": "3.15.1-rc2",
|
|
84
84
|
"frimousse": "^0.2.0",
|
|
85
85
|
"marked": "^15.0.11",
|
|
86
86
|
"radix-ui": "^1.4.0",
|
package/src/styles/index.css
CHANGED
|
@@ -1056,6 +1056,8 @@
|
|
|
1056
1056
|
font-weight: 500;
|
|
1057
1057
|
font-size: 35cqi;
|
|
1058
1058
|
white-space: nowrap;
|
|
1059
|
+
pointer-events: none;
|
|
1060
|
+
user-select: none;
|
|
1059
1061
|
|
|
1060
1062
|
/**
|
|
1061
1063
|
* Progressive enhancement: Only show the fallback when container queries are supported
|
|
@@ -1171,6 +1173,7 @@
|
|
|
1171
1173
|
position: relative;
|
|
1172
1174
|
background: var(--lb-dynamic-background);
|
|
1173
1175
|
color: var(--lb-foreground);
|
|
1176
|
+
outline: none;
|
|
1174
1177
|
transition-property: background;
|
|
1175
1178
|
}
|
|
1176
1179
|
|
|
@@ -1737,6 +1740,10 @@
|
|
|
1737
1740
|
border-end-start-radius: 2px;
|
|
1738
1741
|
transform: translate(0, -100%);
|
|
1739
1742
|
}
|
|
1743
|
+
|
|
1744
|
+
:where(.lb-icon) {
|
|
1745
|
+
color: var(--lb-foreground-moderate);
|
|
1746
|
+
}
|
|
1740
1747
|
}
|
|
1741
1748
|
|
|
1742
1749
|
.lb-comment-pin-avatar {
|
|
@@ -1761,7 +1768,7 @@
|
|
|
1761
1768
|
.lb-avatar-stack-avatar {
|
|
1762
1769
|
position: relative;
|
|
1763
1770
|
z-index: calc(
|
|
1764
|
-
var(--lb-avatar-stack-count) - var(--lb-avatar-stack-avatar-index)
|
|
1771
|
+
var(--lb-avatar-stack-count) - 1 - var(--lb-avatar-stack-avatar-index)
|
|
1765
1772
|
);
|
|
1766
1773
|
inline-size: var(--lb-avatar-stack-size);
|
|
1767
1774
|
block-size: var(--lb-avatar-stack-size);
|