@lobehub/ui 1.138.0 → 1.138.2
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/es/Avatar/index.js +7 -1
- package/es/Features/Item.js +2 -1
- package/es/Image/style.js +1 -1
- package/es/Markdown/markdown.style.js +1 -1
- package/es/ThemeProvider/GlobalStyle/global.js +1 -1
- package/es/mdx/Cards.d.ts +2 -7
- package/es/mdx/Cards.js +1 -4
- package/es/mdx/Image.js +7 -4
- package/es/mdx/Tabs.d.ts +2 -7
- package/es/mdx/Tabs.js +1 -4
- package/es/mdx/Video.js +5 -4
- package/es/mdx/mdxComponents.d.ts +2 -2
- package/package.json +5 -5
package/es/Avatar/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var _excluded = ["className", "avatar", "title", "animation", "size", "shape", "
|
|
|
6
6
|
import { Avatar as AntAvatar } from 'antd';
|
|
7
7
|
import { isValidElement, memo, useMemo } from 'react';
|
|
8
8
|
import FluentEmoji from "../FluentEmoji";
|
|
9
|
+
import Img from "../Img";
|
|
9
10
|
import { getEmoji } from "../utils/getEmojiByCharacter";
|
|
10
11
|
import { useStyles } from "./style";
|
|
11
12
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
@@ -47,7 +48,12 @@ var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
|
47
48
|
}, style)
|
|
48
49
|
}, rest);
|
|
49
50
|
return isDefaultAntAvatar ? /*#__PURE__*/_jsx(AntAvatar, _objectSpread({
|
|
50
|
-
src: avatar
|
|
51
|
+
src: typeof avatar === 'string' ? /*#__PURE__*/_jsx(Img, {
|
|
52
|
+
alt: title,
|
|
53
|
+
height: size,
|
|
54
|
+
src: avatar,
|
|
55
|
+
width: size
|
|
56
|
+
}) : avatar
|
|
51
57
|
}, avatarProps)) : /*#__PURE__*/_jsx(AntAvatar, _objectSpread(_objectSpread({}, avatarProps), {}, {
|
|
52
58
|
children: emoji ? /*#__PURE__*/_jsx(FluentEmoji, {
|
|
53
59
|
emoji: emoji,
|
package/es/Features/Item.js
CHANGED
|
@@ -3,6 +3,7 @@ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutPr
|
|
|
3
3
|
var _excluded = ["style", "className", "row", "column", "description", "image", "title", "link", "icon", "imageStyle", "openExternal"];
|
|
4
4
|
import { memo } from 'react';
|
|
5
5
|
import { Center, Flexbox } from 'react-layout-kit';
|
|
6
|
+
import A from "../A";
|
|
6
7
|
import Icon from "../Icon";
|
|
7
8
|
import Img from "../Img";
|
|
8
9
|
import { useStyles } from "./style";
|
|
@@ -80,7 +81,7 @@ var Item = /*#__PURE__*/memo(function (_ref2) {
|
|
|
80
81
|
}
|
|
81
82
|
}), link && /*#__PURE__*/_jsx("div", {
|
|
82
83
|
className: styles.link,
|
|
83
|
-
children: /*#__PURE__*/_jsx(
|
|
84
|
+
children: /*#__PURE__*/_jsx(A, {
|
|
84
85
|
href: link,
|
|
85
86
|
rel: "noreferrer",
|
|
86
87
|
target: openExternal ? '_blank' : undefined,
|
package/es/Image/style.js
CHANGED
|
@@ -19,7 +19,7 @@ export var useStyles = createStyles(function (_ref) {
|
|
|
19
19
|
return {
|
|
20
20
|
actions: actions,
|
|
21
21
|
image: css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n position: relative;\n overflow: hidden;\n width: 100% !important;\n height: auto !important;\n\n img {\n width: 100% !important;\n min-width: ", " !important;\n max-width: ", " !important;\n height: auto !important;\n min-height: ", " !important;\n max-height: ", " !important;\n\n object-fit: ", ";\n }\n "])), MIN_SIZE, SIZE, MIN_SIZE, SIZE, objectFit || 'cover'),
|
|
22
|
-
imageWrapper: cx(borderless ? css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n box-shadow: inset 0 0 0 1px ", ";\n "])), token.colorBorderSecondary) : css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n box-shadow: 0 0 0 1px ", ";\n "])), token.colorBorderSecondary), css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n position: relative;\n\n overflow: hidden;\n\n min-width: ", ";\n max-width: ", ";\n min-height: ", ";\n max-height: ", ";\n margin-block: 0 1em;\n\n background: ", ";\n border-radius: ", "px;\n\n &:hover {\n .", " {\n opacity: 1;\n }\n }\n "])), MIN_SIZE, SIZE, MIN_SIZE, SIZE, token.colorFillTertiary, token.borderRadiusLG, actions)),
|
|
22
|
+
imageWrapper: cx(borderless ? css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n box-shadow: inset 0 0 0 1px ", ";\n "])), token.colorBorderSecondary) : css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n box-shadow: 0 0 0 1px ", ";\n "])), token.colorBorderSecondary), css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n cursor: pointer;\n\n position: relative;\n\n overflow: hidden;\n\n min-width: ", ";\n max-width: ", ";\n min-height: ", ";\n max-height: ", ";\n margin-block: 0 1em;\n\n background: ", ";\n border-radius: ", "px;\n\n &:hover {\n .", " {\n opacity: 1;\n }\n }\n "])), MIN_SIZE, SIZE, MIN_SIZE, SIZE, token.colorFillTertiary, token.borderRadiusLG, actions)),
|
|
23
23
|
toolbar: cx(stylish.blur, css(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n padding: 4px;\n background: ", ";\n border-radius: ", "px;\n "])), rgba(token.colorBgMask, 0.1), token.borderRadiusLG))
|
|
24
24
|
};
|
|
25
25
|
});
|
|
@@ -28,7 +28,7 @@ export var useStyles = createStyles(function (_ref, _ref2) {
|
|
|
28
28
|
p: css(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n p {\n margin-block: calc(var(--lobe-markdown-margin-multiple) * 1em);\n line-height: var(--lobe-markdown-line-height);\n letter-spacing: 0.02em;\n }\n "]))),
|
|
29
29
|
pre: css(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["\n pre,\n [data-code-type='highlighter'] {\n white-space: break-spaces;\n border: none;\n\n > code {\n padding: 0 !important;\n\n font-family: ", ";\n font-size: 0.875em;\n line-height: 1.6;\n\n border: none !important;\n }\n }\n "])), token.fontFamilyCode),
|
|
30
30
|
strong: css(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n strong {\n font-weight: 600;\n }\n "]))),
|
|
31
|
-
table: css(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["\n table {\n overflow: auto hidden;\n display: block;\n border-spacing: 0;\n border-collapse: collapse;\n\n box-sizing: border-box;\n width: fit-content;\n max-width: 100%;\n margin-block: calc(var(--lobe-markdown-margin-multiple) * 1em);\n\n text-align: start;\n word-break: auto-phrase;\n overflow-wrap: break-word;\n\n background: ", ";\n border-radius: calc(var(--lobe-markdown-border-radius) * 1px);\n box-shadow: 0 0 0 1px var(--lobe-markdown-border-color);\n\n code {\n word-break: break-word;\n }\n\n thead {\n background: ", ";\n }\n\n tr {\n box-shadow: 0 1px 0 var(--lobe-markdown-border-color);\n }\n\n th,\n td {\n padding-block: 0.75em;\n padding-inline: 1em;\n text-align: start;\n
|
|
31
|
+
table: css(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["\n table {\n overflow: auto hidden;\n display: block;\n border-spacing: 0;\n border-collapse: collapse;\n\n box-sizing: border-box;\n width: fit-content;\n max-width: 100%;\n margin-block: calc(var(--lobe-markdown-margin-multiple) * 1em);\n\n text-align: start;\n text-wrap: balance;\n word-break: auto-phrase;\n overflow-wrap: break-word;\n\n background: ", ";\n border-radius: calc(var(--lobe-markdown-border-radius) * 1px);\n box-shadow: 0 0 0 1px var(--lobe-markdown-border-color);\n\n code {\n word-break: break-word;\n }\n\n thead {\n background: ", ";\n }\n\n tr {\n box-shadow: 0 1px 0 var(--lobe-markdown-border-color);\n }\n\n th,\n td {\n padding-block: 0.75em;\n padding-inline: 1em;\n text-align: start;\n }\n }\n "])), token.colorFillQuaternary, token.colorFillQuaternary),
|
|
32
32
|
video: css(_templateObject15 || (_templateObject15 = _taggedTemplateLiteral(["\n > video,\n > p > video {\n margin-block: calc(var(--lobe-markdown-margin-multiple) * 1em);\n border-radius: calc(var(--lobe-markdown-border-radius) * 1px);\n box-shadow: 0 0 0 1px var(--lobe-markdown-border-color);\n }\n\n video {\n max-width: 100%;\n }\n "])))
|
|
33
33
|
};
|
|
34
34
|
});
|
|
@@ -2,5 +2,5 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLit
|
|
|
2
2
|
var _templateObject;
|
|
3
3
|
import { css } from 'antd-style';
|
|
4
4
|
export default (function (token) {
|
|
5
|
-
return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :root {\n --font-settings: 'cv01', 'tnum', 'kern';\n --font-variations: 'opsz' auto, tabular-nums;\n }\n\n html {\n overscroll-behavior: none;\n color-scheme: ", ";\n }\n\n body {\n overflow: hidden auto;\n\n min-height: 100vh;\n margin: 0;\n padding: 0;\n\n font-family: ", ";\n font-size: ", "px;\n font-feature-settings: var(--font-settings);\n font-variation-settings: var(--font-variations);\n line-height: 1;\n color: ", ";\n text-size-adjust: none;\n text-rendering: optimizelegibility;\n word-wrap: break-word;\n vertical-align: baseline;\n\n background-color: ", ";\n\n -webkit-
|
|
5
|
+
return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :root {\n --font-settings: 'cv01', 'tnum', 'kern';\n --font-variations: 'opsz' auto, tabular-nums;\n }\n\n html {\n overscroll-behavior: none;\n color-scheme: ", ";\n }\n\n body {\n overflow: hidden auto;\n\n min-height: 100vh;\n margin: 0;\n padding: 0;\n\n font-family: ", ";\n font-size: ", "px;\n font-feature-settings: var(--font-settings);\n font-variation-settings: var(--font-variations);\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n line-height: 1;\n color: ", ";\n text-size-adjust: none;\n text-rendering: optimizelegibility;\n word-wrap: break-word;\n vertical-align: baseline;\n\n background-color: ", ";\n\n -webkit-overflow-scrolling: touch;\n -webkit-tap-highlight-color: transparent;\n }\n\n code {\n font-family: ", " !important;\n\n span {\n font-family: ", " !important;\n }\n }\n\n ::selection {\n color: #000;\n background: ", ";\n\n -webkit-text-fill-color: unset !important;\n }\n\n * {\n scrollbar-color: ", " transparent;\n scrollbar-width: thin;\n box-sizing: border-box;\n vertical-align: baseline;\n }\n"])), token.isDarkMode ? 'dark' : 'light', token.fontFamily, token.fontSize, token.colorTextBase, token.colorBgLayout, token.fontFamilyCode, token.fontFamilyCode, token.yellow9, token.colorFill);
|
|
6
6
|
});
|
package/es/mdx/Cards.d.ts
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from 'react';
|
|
2
|
-
|
|
3
|
-
interface _CardsProps extends PropsWithChildren {
|
|
2
|
+
export interface CardsProps extends PropsWithChildren {
|
|
4
3
|
maxItemWidth?: string | number;
|
|
5
4
|
rows?: number;
|
|
6
5
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export type CardsProps = typeof _Cards & {
|
|
9
|
-
Card: typeof Card;
|
|
10
|
-
};
|
|
11
|
-
declare const Cards: CardsProps;
|
|
6
|
+
declare const Cards: FC<CardsProps>;
|
|
12
7
|
export default Cards;
|
package/es/mdx/Cards.js
CHANGED
|
@@ -4,7 +4,6 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLit
|
|
|
4
4
|
var _templateObject;
|
|
5
5
|
import { createStyles } from 'antd-style';
|
|
6
6
|
import Grid from "../Grid";
|
|
7
|
-
import Card from "./Card";
|
|
8
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
8
|
var useStyles = createStyles(function (_ref) {
|
|
10
9
|
var css = _ref.css;
|
|
@@ -12,7 +11,7 @@ var useStyles = createStyles(function (_ref) {
|
|
|
12
11
|
container: css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n margin-block: calc(var(--lobe-markdown-margin-multiple) * 1em);\n\n > div {\n margin: 0 !important;\n }\n "])))
|
|
13
12
|
};
|
|
14
13
|
});
|
|
15
|
-
var
|
|
14
|
+
var Cards = function Cards(_ref2) {
|
|
16
15
|
var children = _ref2.children,
|
|
17
16
|
_ref2$maxItemWidth = _ref2.maxItemWidth,
|
|
18
17
|
maxItemWidth = _ref2$maxItemWidth === void 0 ? 250 : _ref2$maxItemWidth,
|
|
@@ -27,6 +26,4 @@ var _Cards = function _Cards(_ref2) {
|
|
|
27
26
|
children: children
|
|
28
27
|
});
|
|
29
28
|
};
|
|
30
|
-
var Cards = _Cards;
|
|
31
|
-
Cards.Card = Card;
|
|
32
29
|
export default Cards;
|
package/es/mdx/Image.js
CHANGED
|
@@ -8,7 +8,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
8
8
|
var Image = function Image(_ref) {
|
|
9
9
|
var style = _ref.style,
|
|
10
10
|
_ref$width = _ref.width,
|
|
11
|
-
width = _ref$width === void 0 ?
|
|
11
|
+
width = _ref$width === void 0 ? 800 : _ref$width,
|
|
12
12
|
height = _ref.height,
|
|
13
13
|
cover = _ref.cover,
|
|
14
14
|
inStep = _ref.inStep,
|
|
@@ -16,11 +16,11 @@ var Image = function Image(_ref) {
|
|
|
16
16
|
alt = _ref$alt === void 0 ? 'cover' : _ref$alt,
|
|
17
17
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
18
18
|
var size = cover ? {
|
|
19
|
-
height:
|
|
20
|
-
width:
|
|
19
|
+
height: 300,
|
|
20
|
+
width: 800
|
|
21
21
|
} : inStep ? {
|
|
22
22
|
height: height,
|
|
23
|
-
width:
|
|
23
|
+
width: 780
|
|
24
24
|
} : {
|
|
25
25
|
height: height,
|
|
26
26
|
width: width
|
|
@@ -28,6 +28,9 @@ var Image = function Image(_ref) {
|
|
|
28
28
|
return /*#__PURE__*/_jsx(LobeImage, _objectSpread({
|
|
29
29
|
alt: alt,
|
|
30
30
|
height: size.height,
|
|
31
|
+
preview: {
|
|
32
|
+
mask: false
|
|
33
|
+
},
|
|
31
34
|
style: _objectSpread({
|
|
32
35
|
borderRadius: 'calc(var(--lobe-markdown-border-radius) * 1px)',
|
|
33
36
|
marginBlock: 'calc(var(--lobe-markdown-margin-multiple) * 1em)'
|
package/es/mdx/Tabs.d.ts
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface _TabsProps {
|
|
2
|
+
export interface TabsProps {
|
|
4
3
|
children: ReactNode[];
|
|
5
4
|
defaultIndex?: number | string;
|
|
6
5
|
items: string[];
|
|
7
6
|
}
|
|
8
|
-
declare const
|
|
9
|
-
export type TabsProps = typeof _Tabs & {
|
|
10
|
-
Tab: typeof Tab;
|
|
11
|
-
};
|
|
12
|
-
declare const Tabs: TabsProps;
|
|
7
|
+
declare const Tabs: FC<TabsProps>;
|
|
13
8
|
export default Tabs;
|
package/es/mdx/Tabs.js
CHANGED
|
@@ -7,7 +7,6 @@ import { createStyles } from 'antd-style';
|
|
|
7
7
|
import { useState } from 'react';
|
|
8
8
|
import { Flexbox } from 'react-layout-kit';
|
|
9
9
|
import TabsNav from "../TabsNav";
|
|
10
|
-
import Tab from "./Tab";
|
|
11
10
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
12
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
12
|
var useStyles = createStyles(function (_ref) {
|
|
@@ -19,7 +18,7 @@ var useStyles = createStyles(function (_ref) {
|
|
|
19
18
|
header: css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n border-block-end: 1px solid var(--lobe-markdown-border-color);\n .", "-tabs-tab-btn {\n font-size: var(--lobe-markdown-font-size);\n line-height: var(--lobe-markdown-line-height);\n }\n "])), prefixCls)
|
|
20
19
|
};
|
|
21
20
|
});
|
|
22
|
-
var
|
|
21
|
+
var Tabs = function Tabs(_ref2) {
|
|
23
22
|
var _ref2$defaultIndex = _ref2.defaultIndex,
|
|
24
23
|
defaultIndex = _ref2$defaultIndex === void 0 ? '0' : _ref2$defaultIndex,
|
|
25
24
|
items = _ref2.items,
|
|
@@ -47,6 +46,4 @@ var _Tabs = function _Tabs(_ref2) {
|
|
|
47
46
|
}), (children === null || children === void 0 ? void 0 : children[index]) || '']
|
|
48
47
|
});
|
|
49
48
|
};
|
|
50
|
-
var Tabs = _Tabs;
|
|
51
|
-
Tabs.Tab = Tab;
|
|
52
49
|
export default Tabs;
|
package/es/mdx/Video.js
CHANGED
|
@@ -8,23 +8,24 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
8
8
|
var Video = function Video(_ref) {
|
|
9
9
|
var style = _ref.style,
|
|
10
10
|
_ref$width = _ref.width,
|
|
11
|
-
width = _ref$width === void 0 ?
|
|
11
|
+
width = _ref$width === void 0 ? 800 : _ref$width,
|
|
12
12
|
height = _ref.height,
|
|
13
13
|
cover = _ref.cover,
|
|
14
14
|
inStep = _ref.inStep,
|
|
15
15
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
16
16
|
var size = cover ? {
|
|
17
|
-
height:
|
|
18
|
-
width:
|
|
17
|
+
height: 300,
|
|
18
|
+
width: 800
|
|
19
19
|
} : inStep ? {
|
|
20
20
|
height: height,
|
|
21
|
-
width:
|
|
21
|
+
width: 780
|
|
22
22
|
} : {
|
|
23
23
|
height: height,
|
|
24
24
|
width: width
|
|
25
25
|
};
|
|
26
26
|
return /*#__PURE__*/_jsx(LobeVideo, _objectSpread({
|
|
27
27
|
height: size.height,
|
|
28
|
+
preview: false,
|
|
28
29
|
style: _objectSpread({
|
|
29
30
|
borderRadius: 'calc(var(--lobe-markdown-border-radius) * 1px)',
|
|
30
31
|
marginBlock: 'calc(var(--lobe-markdown-margin-multiple) * 1em)'
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
declare const mdxComponents: {
|
|
3
3
|
Callout: import("react").FC<import("./Callout").CalloutProps>;
|
|
4
4
|
Card: import("react").FC<import("./Card").CardProps>;
|
|
5
|
-
Cards: import("./Cards").CardsProps
|
|
5
|
+
Cards: import("react").FC<import("./Cards").CardsProps>;
|
|
6
6
|
FileTree: import("./FileTree").FileTreeProps;
|
|
7
7
|
Image: import("react").FC<import("./Image").ImageProps>;
|
|
8
8
|
Steps: import("react").FC<{
|
|
9
9
|
children?: import("react").ReactNode;
|
|
10
10
|
}>;
|
|
11
11
|
Tab: import("react").FC<import("./Tab").TabProps>;
|
|
12
|
-
Tabs: import("./Tabs").TabsProps
|
|
12
|
+
Tabs: import("react").FC<import("./Tabs").TabsProps>;
|
|
13
13
|
Video: import("react").FC<import("./Video").VideoProps>;
|
|
14
14
|
};
|
|
15
15
|
export default mdxComponents;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/ui",
|
|
3
|
-
"version": "1.138.
|
|
3
|
+
"version": "1.138.2",
|
|
4
4
|
"description": "Lobe UI is an open-source UI component library for building AIGC web apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
"@dnd-kit/utilities": "^3.2.2",
|
|
83
83
|
"@emoji-mart/data": "^1.1.2",
|
|
84
84
|
"@emoji-mart/react": "^1.1.1",
|
|
85
|
-
"@floating-ui/react": "^0.26.
|
|
85
|
+
"@floating-ui/react": "^0.26.12",
|
|
86
86
|
"@giscus/react": "^3.0.0",
|
|
87
87
|
"@lobehub/emojilib": "latest",
|
|
88
88
|
"@react-spring/web": "^9.7.3",
|
|
89
|
-
"@shikijs/transformers": "^1.
|
|
89
|
+
"@shikijs/transformers": "^1.3.0",
|
|
90
90
|
"@splinetool/react-spline": "^2.2.6",
|
|
91
91
|
"@splinetool/runtime": "^0.9.526",
|
|
92
92
|
"ahooks": "^3.7.11",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"rehype-raw": "^7.0.0",
|
|
114
114
|
"remark-gfm": "^3.0.1",
|
|
115
115
|
"remark-math": "^5.1.1",
|
|
116
|
-
"shiki": "^1.
|
|
116
|
+
"shiki": "^1.3.0",
|
|
117
117
|
"swr": "^2.2.5",
|
|
118
118
|
"ts-md5": "^1.3.1",
|
|
119
119
|
"url-join": "^5.0.0",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"semantic-release": "^21.1.2",
|
|
156
156
|
"stylelint": "^15.11.0",
|
|
157
157
|
"stylelint-use-logical-spec": "^5.0.1",
|
|
158
|
-
"typescript": "^5.4.
|
|
158
|
+
"typescript": "^5.4.5",
|
|
159
159
|
"vitest": "latest"
|
|
160
160
|
},
|
|
161
161
|
"peerDependencies": {
|