@lobehub/ui 5.9.6 → 5.10.0

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 (33) hide show
  1. package/es/ThemeProvider/ThemeProvider.mjs +1 -1
  2. package/es/ThemeProvider/ThemeProvider.mjs.map +1 -1
  3. package/es/icons/DingTalk/components/Avatar.d.mts +9 -0
  4. package/es/icons/DingTalk/components/Avatar.mjs +19 -0
  5. package/es/icons/DingTalk/components/Avatar.mjs.map +1 -0
  6. package/es/icons/DingTalk/components/Color.d.mts +7 -0
  7. package/es/icons/DingTalk/components/Color.mjs +27 -0
  8. package/es/icons/DingTalk/components/Color.mjs.map +1 -0
  9. package/es/icons/DingTalk/components/Mono.d.mts +7 -0
  10. package/es/icons/DingTalk/components/Mono.mjs +26 -0
  11. package/es/icons/DingTalk/components/Mono.mjs.map +1 -0
  12. package/es/icons/DingTalk/index.d.mts +15 -0
  13. package/es/icons/DingTalk/index.mjs +15 -0
  14. package/es/icons/DingTalk/index.mjs.map +1 -0
  15. package/es/icons/DingTalk/style.mjs +7 -0
  16. package/es/icons/DingTalk/style.mjs.map +1 -0
  17. package/es/icons/Line/components/Avatar.d.mts +9 -0
  18. package/es/icons/Line/components/Avatar.mjs +19 -0
  19. package/es/icons/Line/components/Avatar.mjs.map +1 -0
  20. package/es/icons/Line/components/Color.d.mts +7 -0
  21. package/es/icons/Line/components/Color.mjs +27 -0
  22. package/es/icons/Line/components/Color.mjs.map +1 -0
  23. package/es/icons/Line/components/Mono.d.mts +7 -0
  24. package/es/icons/Line/components/Mono.mjs +26 -0
  25. package/es/icons/Line/components/Mono.mjs.map +1 -0
  26. package/es/icons/Line/index.d.mts +15 -0
  27. package/es/icons/Line/index.mjs +15 -0
  28. package/es/icons/Line/index.mjs.map +1 -0
  29. package/es/icons/Line/style.mjs +7 -0
  30. package/es/icons/Line/style.mjs.map +1 -0
  31. package/es/icons/index.d.mts +17 -15
  32. package/es/icons/index.mjs +17 -15
  33. package/package.json +17 -17
@@ -87,8 +87,8 @@ const hostPortalHostStyle = {
87
87
  height: 0,
88
88
  left: 0,
89
89
  position: "fixed",
90
+ right: 0,
90
91
  top: 0,
91
- width: 0,
92
92
  zIndex: 1100
93
93
  };
94
94
  const contentsStyle = { display: "contents" };
@@ -1 +1 @@
1
- {"version":3,"file":"ThemeProvider.mjs","names":["ThemeProvider","lobeCustomStylish","lobeCustomToken","AntdThemeProvider","AntdConfigProvider"],"sources":["../../src/ThemeProvider/ThemeProvider.tsx"],"sourcesContent":["'use client';\n\nimport { App } from 'antd';\nimport {\n type CustomStylishParams,\n type CustomTokenParams,\n type GetAntdTheme,\n ThemeProvider as AntdThemeProvider,\n} from 'antd-style';\nimport { merge } from 'es-toolkit/compat';\nimport { memo, useCallback, useMemo, useState } from 'react';\n\nimport { useCdnFn } from '@/ConfigProvider';\nimport FontLoader from '@/FontLoader';\nimport { lobeCustomStylish, lobeCustomToken } from '@/styles';\nimport { createLobeAntdTheme } from '@/styles/theme/antdTheme';\nimport { type LobeCustomToken } from '@/types/customToken';\n\nimport AppElementContext from './AppElementContext';\nimport AntdConfigProvider from './ConfigProvider';\nimport { LOBE_THEME_APP_ID } from './constants';\nimport GlobalStyle from './GlobalStyle';\nimport { type ThemeProviderProps } from './type';\n\nconst ThemeProvider = memo<ThemeProviderProps>(\n ({\n children,\n customStylish,\n customToken,\n enableCustomFonts = true,\n enableGlobalStyle = true,\n customFonts,\n customTheme = {},\n className,\n style,\n theme: antdTheme,\n ...rest\n }) => {\n const genCdnUrl = useCdnFn();\n const [appRef, setAppRef] = useState<HTMLDivElement | null>(null);\n\n const webfontUrls = useMemo(\n () =>\n customFonts || [\n genCdnUrl({ path: 'css/index.css', pkg: '@lobehub/webfont-mono' }),\n genCdnUrl({\n path: 'css/index.css',\n pkg: '@lobehub/webfont-harmony-sans',\n }),\n genCdnUrl({\n path: 'css/index.css',\n pkg: '@lobehub/webfont-harmony-sans-sc',\n }),\n genCdnUrl({ path: 'dist/katex.min.css', pkg: 'katex' }),\n ],\n [customFonts, genCdnUrl],\n );\n\n const stylish = useCallback(\n (theme: CustomStylishParams) => ({ ...lobeCustomStylish(theme), ...customStylish?.(theme) }),\n [customStylish],\n );\n\n const token = useCallback(\n (theme: CustomTokenParams) => ({ ...lobeCustomToken(theme), ...customToken?.(theme) }),\n [customToken],\n );\n\n const theme = useCallback<GetAntdTheme>(\n (appearance) => {\n const lobeTheme = createLobeAntdTheme({\n appearance,\n neutralColor: customTheme.neutralColor,\n primaryColor: customTheme.primaryColor,\n });\n return merge(lobeTheme, antdTheme);\n },\n [customTheme.primaryColor, customTheme.neutralColor, antdTheme],\n );\n\n return (\n <>\n {enableCustomFonts &&\n webfontUrls?.length > 0 &&\n webfontUrls.map((webfont) => <FontLoader key={webfont} url={webfont} />)}\n <AntdThemeProvider<LobeCustomToken>\n customStylish={stylish}\n customToken={token}\n theme={theme}\n {...rest}\n >\n <AntdConfigProvider>\n {enableGlobalStyle && <GlobalStyle />}\n\n <App\n className={className}\n style={{ isolation: 'isolate', minHeight: 'inherit', width: 'inherit', ...style }}\n >\n <div id={LOBE_THEME_APP_ID} style={contentsStyle}>\n <AppElementContext value={appRef}>\n {children}\n {/*\n In-tree portal host for Base UI floating components\n (Select, Combobox, etc.). Keeping it inside `<App>` keeps\n the antd-style / emotion theme cascade intact so popups\n render with the correct tokens, while the layout-bearing\n block lets Base UI's Portal actually mount — the outer\n wrapper uses `display: contents` and cannot host portals.\n */}\n <div data-lobe-portal-host=\"\" ref={setAppRef} style={hostPortalHostStyle} />\n </AppElementContext>\n </div>\n </App>\n </AntdConfigProvider>\n </AntdThemeProvider>\n </>\n );\n },\n);\n\nThemeProvider.displayName = 'LobeThemeProvider';\n\nexport default ThemeProvider;\n\nconst hostPortalHostStyle: React.CSSProperties = {\n height: 0,\n left: 0,\n position: 'fixed',\n top: 0,\n width: 0,\n zIndex: 1100,\n};\n\nconst contentsStyle: React.CSSProperties = {\n display: 'contents',\n};\n"],"mappings":";;;;;;;;;;;;;;;;AAwBA,MAAMA,kBAAgB,MACnB,EACC,UACA,eACA,aACA,oBAAoB,MACpB,oBAAoB,MACpB,aACA,cAAc,EAAE,EAChB,WACA,OACA,OAAO,WACP,GAAG,WACC;CACJ,MAAM,YAAY,UAAU;CAC5B,MAAM,CAAC,QAAQ,aAAa,SAAgC,KAAK;CAEjE,MAAM,cAAc,cAEhB,eAAe;EACb,UAAU;GAAE,MAAM;GAAiB,KAAK;GAAyB,CAAC;EAClE,UAAU;GACR,MAAM;GACN,KAAK;GACN,CAAC;EACF,UAAU;GACR,MAAM;GACN,KAAK;GACN,CAAC;EACF,UAAU;GAAE,MAAM;GAAsB,KAAK;GAAS,CAAC;EACxD,EACH,CAAC,aAAa,UAAU,CACzB;CAED,MAAM,UAAU,aACb,WAAgC;EAAE,GAAGC,sBAAkB,MAAM;EAAE,GAAG,gBAAgB,MAAM;EAAE,GAC3F,CAAC,cAAc,CAChB;CAED,MAAM,QAAQ,aACX,WAA8B;EAAE,GAAGC,oBAAgB,MAAM;EAAE,GAAG,cAAc,MAAM;EAAE,GACrF,CAAC,YAAY,CACd;CAED,MAAM,QAAQ,aACX,eAAe;AAMd,SAAO,MALW,oBAAoB;GACpC;GACA,cAAc,YAAY;GAC1B,cAAc,YAAY;GAC3B,CACqB,EAAE,UAAU;IAEpC;EAAC,YAAY;EAAc,YAAY;EAAc;EAAU,CAChE;AAED,QACE,qBAAA,YAAA,EAAA,UAAA,CACG,qBACC,aAAa,SAAS,KACtB,YAAY,KAAK,YAAY,oBAAC,YAAD,EAA0B,KAAK,SAAW,EAAzB,QAAyB,CAAC,EAC1E,oBAACC,eAAD;EACE,eAAe;EACf,aAAa;EACN;EACP,GAAI;YAEJ,qBAACC,kBAAD,EAAA,UAAA,CACG,qBAAqB,oBAAC,aAAD,EAAe,CAAA,EAErC,oBAAC,KAAD;GACa;GACX,OAAO;IAAE,WAAW;IAAW,WAAW;IAAW,OAAO;IAAW,GAAG;IAAO;aAEjF,oBAAC,OAAD;IAAK,IAAI;IAAmB,OAAO;cACjC,qBAAC,mBAAD;KAAmB,OAAO;eAA1B,CACG,UASD,oBAAC,OAAD;MAAK,yBAAsB;MAAG,KAAK;MAAW,OAAO;MAAuB,CAAA,CAC1D;;IAChB,CAAA;GACF,CAAA,CACa,EAAA,CAAA;EACH,CAAA,CACnB,EAAA,CAAA;EAGR;AAED,gBAAc,cAAc;AAI5B,MAAM,sBAA2C;CAC/C,QAAQ;CACR,MAAM;CACN,UAAU;CACV,KAAK;CACL,OAAO;CACP,QAAQ;CACT;AAED,MAAM,gBAAqC,EACzC,SAAS,YACV"}
1
+ {"version":3,"file":"ThemeProvider.mjs","names":["ThemeProvider","lobeCustomStylish","lobeCustomToken","AntdThemeProvider","AntdConfigProvider"],"sources":["../../src/ThemeProvider/ThemeProvider.tsx"],"sourcesContent":["'use client';\n\nimport { App } from 'antd';\nimport {\n type CustomStylishParams,\n type CustomTokenParams,\n type GetAntdTheme,\n ThemeProvider as AntdThemeProvider,\n} from 'antd-style';\nimport { merge } from 'es-toolkit/compat';\nimport { memo, useCallback, useMemo, useState } from 'react';\n\nimport { useCdnFn } from '@/ConfigProvider';\nimport FontLoader from '@/FontLoader';\nimport { lobeCustomStylish, lobeCustomToken } from '@/styles';\nimport { createLobeAntdTheme } from '@/styles/theme/antdTheme';\nimport { type LobeCustomToken } from '@/types/customToken';\n\nimport AppElementContext from './AppElementContext';\nimport AntdConfigProvider from './ConfigProvider';\nimport { LOBE_THEME_APP_ID } from './constants';\nimport GlobalStyle from './GlobalStyle';\nimport { type ThemeProviderProps } from './type';\n\nconst ThemeProvider = memo<ThemeProviderProps>(\n ({\n children,\n customStylish,\n customToken,\n enableCustomFonts = true,\n enableGlobalStyle = true,\n customFonts,\n customTheme = {},\n className,\n style,\n theme: antdTheme,\n ...rest\n }) => {\n const genCdnUrl = useCdnFn();\n const [appRef, setAppRef] = useState<HTMLDivElement | null>(null);\n\n const webfontUrls = useMemo(\n () =>\n customFonts || [\n genCdnUrl({ path: 'css/index.css', pkg: '@lobehub/webfont-mono' }),\n genCdnUrl({\n path: 'css/index.css',\n pkg: '@lobehub/webfont-harmony-sans',\n }),\n genCdnUrl({\n path: 'css/index.css',\n pkg: '@lobehub/webfont-harmony-sans-sc',\n }),\n genCdnUrl({ path: 'dist/katex.min.css', pkg: 'katex' }),\n ],\n [customFonts, genCdnUrl],\n );\n\n const stylish = useCallback(\n (theme: CustomStylishParams) => ({ ...lobeCustomStylish(theme), ...customStylish?.(theme) }),\n [customStylish],\n );\n\n const token = useCallback(\n (theme: CustomTokenParams) => ({ ...lobeCustomToken(theme), ...customToken?.(theme) }),\n [customToken],\n );\n\n const theme = useCallback<GetAntdTheme>(\n (appearance) => {\n const lobeTheme = createLobeAntdTheme({\n appearance,\n neutralColor: customTheme.neutralColor,\n primaryColor: customTheme.primaryColor,\n });\n return merge(lobeTheme, antdTheme);\n },\n [customTheme.primaryColor, customTheme.neutralColor, antdTheme],\n );\n\n return (\n <>\n {enableCustomFonts &&\n webfontUrls?.length > 0 &&\n webfontUrls.map((webfont) => <FontLoader key={webfont} url={webfont} />)}\n <AntdThemeProvider<LobeCustomToken>\n customStylish={stylish}\n customToken={token}\n theme={theme}\n {...rest}\n >\n <AntdConfigProvider>\n {enableGlobalStyle && <GlobalStyle />}\n\n <App\n className={className}\n style={{ isolation: 'isolate', minHeight: 'inherit', width: 'inherit', ...style }}\n >\n <div id={LOBE_THEME_APP_ID} style={contentsStyle}>\n <AppElementContext value={appRef}>\n {children}\n {/*\n In-tree portal host for Base UI floating components\n (Select, Combobox, etc.). Keeping it inside `<App>` keeps\n the antd-style / emotion theme cascade intact so popups\n render with the correct tokens, while the layout-bearing\n block lets Base UI's Portal actually mount — the outer\n wrapper uses `display: contents` and cannot host portals.\n */}\n <div data-lobe-portal-host=\"\" ref={setAppRef} style={hostPortalHostStyle} />\n </AppElementContext>\n </div>\n </App>\n </AntdConfigProvider>\n </AntdThemeProvider>\n </>\n );\n },\n);\n\nThemeProvider.displayName = 'LobeThemeProvider';\n\nexport default ThemeProvider;\n\nconst hostPortalHostStyle: React.CSSProperties = {\n // `height: 0` keeps the host invisible and gives it no hit region of\n // its own; absolute children (Base UI Positioner) have their own hit\n // region, so we must NOT set `pointer-events: none` here — it would\n // be inherited by popup descendants and break clicks/hover.\n height: 0,\n left: 0,\n // `position: fixed` keeps a stacking context so portaled popups can\n // win over sibling z-indexes. `right: 0` (instead of `width: 0`)\n // gives the host a full viewport-width containing block — without it,\n // Base UI Positioner uses `position: absolute` against a 0-width\n // containing block and collapses text to one character per line.\n position: 'fixed',\n right: 0,\n top: 0,\n zIndex: 1100,\n};\n\nconst contentsStyle: React.CSSProperties = {\n display: 'contents',\n};\n"],"mappings":";;;;;;;;;;;;;;;;AAwBA,MAAMA,kBAAgB,MACnB,EACC,UACA,eACA,aACA,oBAAoB,MACpB,oBAAoB,MACpB,aACA,cAAc,EAAE,EAChB,WACA,OACA,OAAO,WACP,GAAG,WACC;CACJ,MAAM,YAAY,UAAU;CAC5B,MAAM,CAAC,QAAQ,aAAa,SAAgC,KAAK;CAEjE,MAAM,cAAc,cAEhB,eAAe;EACb,UAAU;GAAE,MAAM;GAAiB,KAAK;GAAyB,CAAC;EAClE,UAAU;GACR,MAAM;GACN,KAAK;GACN,CAAC;EACF,UAAU;GACR,MAAM;GACN,KAAK;GACN,CAAC;EACF,UAAU;GAAE,MAAM;GAAsB,KAAK;GAAS,CAAC;EACxD,EACH,CAAC,aAAa,UAAU,CACzB;CAED,MAAM,UAAU,aACb,WAAgC;EAAE,GAAGC,sBAAkB,MAAM;EAAE,GAAG,gBAAgB,MAAM;EAAE,GAC3F,CAAC,cAAc,CAChB;CAED,MAAM,QAAQ,aACX,WAA8B;EAAE,GAAGC,oBAAgB,MAAM;EAAE,GAAG,cAAc,MAAM;EAAE,GACrF,CAAC,YAAY,CACd;CAED,MAAM,QAAQ,aACX,eAAe;AAMd,SAAO,MALW,oBAAoB;GACpC;GACA,cAAc,YAAY;GAC1B,cAAc,YAAY;GAC3B,CACqB,EAAE,UAAU;IAEpC;EAAC,YAAY;EAAc,YAAY;EAAc;EAAU,CAChE;AAED,QACE,qBAAA,YAAA,EAAA,UAAA,CACG,qBACC,aAAa,SAAS,KACtB,YAAY,KAAK,YAAY,oBAAC,YAAD,EAA0B,KAAK,SAAW,EAAzB,QAAyB,CAAC,EAC1E,oBAACC,eAAD;EACE,eAAe;EACf,aAAa;EACN;EACP,GAAI;YAEJ,qBAACC,kBAAD,EAAA,UAAA,CACG,qBAAqB,oBAAC,aAAD,EAAe,CAAA,EAErC,oBAAC,KAAD;GACa;GACX,OAAO;IAAE,WAAW;IAAW,WAAW;IAAW,OAAO;IAAW,GAAG;IAAO;aAEjF,oBAAC,OAAD;IAAK,IAAI;IAAmB,OAAO;cACjC,qBAAC,mBAAD;KAAmB,OAAO;eAA1B,CACG,UASD,oBAAC,OAAD;MAAK,yBAAsB;MAAG,KAAK;MAAW,OAAO;MAAuB,CAAA,CAC1D;;IAChB,CAAA;GACF,CAAA,CACa,EAAA,CAAA;EACH,CAAA,CACnB,EAAA,CAAA;EAGR;AAED,gBAAc,cAAc;AAI5B,MAAM,sBAA2C;CAK/C,QAAQ;CACR,MAAM;CAMN,UAAU;CACV,OAAO;CACP,KAAK;CACL,QAAQ;CACT;AAED,MAAM,gBAAqC,EACzC,SAAS,YACV"}
@@ -0,0 +1,9 @@
1
+ import { FC } from "react";
2
+ import { IconAvatarProps } from "@lobehub/icons";
3
+
4
+ //#region src/icons/DingTalk/components/Avatar.d.ts
5
+ type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
6
+ declare const Avatar: FC<AvatarProps>;
7
+ //#endregion
8
+ export { Avatar };
9
+ //# sourceMappingURL=Avatar.d.mts.map
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import Icon from "./Mono.mjs";
4
+ import { jsx } from "react/jsx-runtime";
5
+ import { IconAvatar } from "@lobehub/icons";
6
+ //#region src/icons/DingTalk/components/Avatar.tsx
7
+ const Avatar = ({ background, ...rest }) => {
8
+ return /* @__PURE__ */ jsx(IconAvatar, {
9
+ Icon,
10
+ "aria-label": TITLE,
11
+ background: background || "#3296FA",
12
+ color: "#fff",
13
+ ...rest
14
+ });
15
+ };
16
+ //#endregion
17
+ export { Avatar as default };
18
+
19
+ //# sourceMappingURL=Avatar.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Avatar.mjs","names":["Mono"],"sources":["../../../../src/icons/DingTalk/components/Avatar.tsx"],"sourcesContent":["'use client';\n\nimport { IconAvatar, type IconAvatarProps } from '@lobehub/icons';\nimport { type FC } from 'react';\n\nimport { COLOR_PRIMARY, TITLE } from '../style';\nimport Mono from './Mono';\n\nexport type AvatarProps = Omit<IconAvatarProps, 'Icon'>;\n\nconst Avatar: FC<AvatarProps> = ({ background, ...rest }) => {\n return (\n <IconAvatar\n Icon={Mono}\n aria-label={TITLE}\n background={background || COLOR_PRIMARY}\n color={'#fff'}\n {...rest}\n />\n );\n};\n\nexport default Avatar;\n"],"mappings":";;;;;;AAUA,MAAM,UAA2B,EAAE,YAAY,GAAG,WAAW;AAC3D,QACE,oBAAC,YAAD;EACQA;EACN,cAAY;EACZ,YAAY,cAAA;EACZ,OAAO;EACP,GAAI;EACJ,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { IconType } from "@lobehub/icons";
2
+
3
+ //#region src/icons/DingTalk/components/Color.d.ts
4
+ declare const Icon: IconType;
5
+ //#endregion
6
+ export { Icon };
7
+ //# sourceMappingURL=Color.d.mts.map
@@ -0,0 +1,27 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import { memo } from "react";
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ //#region src/icons/DingTalk/components/Color.tsx
6
+ const Icon = memo(({ size = "1em", style, ...rest }) => {
7
+ return /* @__PURE__ */ jsxs("svg", {
8
+ height: size,
9
+ style: {
10
+ flex: "none",
11
+ lineHeight: 1,
12
+ ...style
13
+ },
14
+ viewBox: "0 0 24 24",
15
+ width: size,
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ ...rest,
18
+ children: [/* @__PURE__ */ jsx("title", { children: TITLE }), /* @__PURE__ */ jsx("path", {
19
+ d: "M21.17 8.973c-.07.255-.161.503-.274.742h.003l-.014.031c-.8 1.795-2.888 5.32-2.888 5.32l-.009-.023-.61 1.115h2.94L14.702 24l1.275-5.334h-2.315l.804-3.527c-.652.164-1.418.391-2.33.698 0 0-1.23.757-3.548-1.458 0 0-1.563-1.443-.656-1.807.384-.152 1.87-.346 3.04-.515 1.577-.225 2.55-.345 2.55-.345s-4.869.078-6.024-.115c-1.155-.19-2.618-2.214-2.932-3.993 0 0-.483-.977 1.036-.516 1.52.462 7.814 1.8 7.814 1.8S5.234 6.256 4.69 5.614c-.543-.642-1.603-3.51-1.465-5.27 0 0 .061-.441.49-.324 0 0 6.052 2.906 10.188 4.493 4.137 1.59 7.732 2.402 7.268 4.46z",
20
+ fill: "#3296FA"
21
+ })]
22
+ });
23
+ });
24
+ //#endregion
25
+ export { Icon as default };
26
+
27
+ //# sourceMappingURL=Color.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Color.mjs","names":[],"sources":["../../../../src/icons/DingTalk/components/Color.tsx"],"sourcesContent":["'use client';\n\nimport type { IconType } from '@lobehub/icons';\nimport { memo } from 'react';\n\nimport { TITLE } from '../style';\n\nconst Icon: IconType = memo(({ size = '1em', style, ...rest }) => {\n return (\n <svg\n height={size}\n style={{ flex: 'none', lineHeight: 1, ...style }}\n viewBox=\"0 0 24 24\"\n width={size}\n xmlns=\"http://www.w3.org/2000/svg\"\n {...rest}\n >\n <title>{TITLE}</title>\n <path\n d=\"M21.17 8.973c-.07.255-.161.503-.274.742h.003l-.014.031c-.8 1.795-2.888 5.32-2.888 5.32l-.009-.023-.61 1.115h2.94L14.702 24l1.275-5.334h-2.315l.804-3.527c-.652.164-1.418.391-2.33.698 0 0-1.23.757-3.548-1.458 0 0-1.563-1.443-.656-1.807.384-.152 1.87-.346 3.04-.515 1.577-.225 2.55-.345 2.55-.345s-4.869.078-6.024-.115c-1.155-.19-2.618-2.214-2.932-3.993 0 0-.483-.977 1.036-.516 1.52.462 7.814 1.8 7.814 1.8S5.234 6.256 4.69 5.614c-.543-.642-1.603-3.51-1.465-5.27 0 0 .061-.441.49-.324 0 0 6.052 2.906 10.188 4.493 4.137 1.59 7.732 2.402 7.268 4.46z\"\n fill=\"#3296FA\"\n />\n </svg>\n );\n});\n\nexport default Icon;\n"],"mappings":";;;;;AAOA,MAAM,OAAiB,MAAM,EAAE,OAAO,OAAO,OAAO,GAAG,WAAW;AAChE,QACE,qBAAC,OAAD;EACE,QAAQ;EACR,OAAO;GAAE,MAAM;GAAQ,YAAY;GAAG,GAAG;GAAO;EAChD,SAAQ;EACR,OAAO;EACP,OAAM;EACN,GAAI;YANN,CAQE,oBAAC,SAAD,EAAA,UAAQ,OAAc,CAAA,EACtB,oBAAC,QAAD;GACE,GAAE;GACF,MAAK;GACL,CAAA,CACE;;EAER"}
@@ -0,0 +1,7 @@
1
+ import { IconType } from "@lobehub/icons";
2
+
3
+ //#region src/icons/DingTalk/components/Mono.d.ts
4
+ declare const Icon: IconType;
5
+ //#endregion
6
+ export { Icon };
7
+ //# sourceMappingURL=Mono.d.mts.map
@@ -0,0 +1,26 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import { memo } from "react";
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ //#region src/icons/DingTalk/components/Mono.tsx
6
+ const Icon = memo(({ size = "1em", style, ...rest }) => {
7
+ return /* @__PURE__ */ jsxs("svg", {
8
+ fill: "currentColor",
9
+ fillRule: "evenodd",
10
+ height: size,
11
+ style: {
12
+ flex: "none",
13
+ lineHeight: 1,
14
+ ...style
15
+ },
16
+ viewBox: "0 0 24 24",
17
+ width: size,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ ...rest,
20
+ children: [/* @__PURE__ */ jsx("title", { children: TITLE }), /* @__PURE__ */ jsx("path", { d: "M21.17 8.973c-.07.255-.161.503-.274.742h.003l-.014.031c-.8 1.795-2.888 5.32-2.888 5.32l-.009-.023-.61 1.115h2.94L14.702 24l1.275-5.334h-2.315l.804-3.527c-.652.164-1.418.391-2.33.698 0 0-1.23.757-3.548-1.458 0 0-1.563-1.443-.656-1.807.384-.152 1.87-.346 3.04-.515 1.577-.225 2.55-.345 2.55-.345s-4.869.078-6.024-.115c-1.155-.19-2.618-2.214-2.932-3.993 0 0-.483-.977 1.036-.516 1.52.462 7.814 1.8 7.814 1.8S5.234 6.256 4.69 5.614c-.543-.642-1.603-3.51-1.465-5.27 0 0 .061-.441.49-.324 0 0 6.052 2.906 10.188 4.493 4.137 1.59 7.732 2.402 7.268 4.46z" })]
21
+ });
22
+ });
23
+ //#endregion
24
+ export { Icon as default };
25
+
26
+ //# sourceMappingURL=Mono.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Mono.mjs","names":[],"sources":["../../../../src/icons/DingTalk/components/Mono.tsx"],"sourcesContent":["'use client';\n\nimport type { IconType } from '@lobehub/icons';\nimport { memo } from 'react';\n\nimport { TITLE } from '../style';\n\nconst Icon: IconType = memo(({ size = '1em', style, ...rest }) => {\n return (\n <svg\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n height={size}\n style={{ flex: 'none', lineHeight: 1, ...style }}\n viewBox=\"0 0 24 24\"\n width={size}\n xmlns=\"http://www.w3.org/2000/svg\"\n {...rest}\n >\n <title>{TITLE}</title>\n <path d=\"M21.17 8.973c-.07.255-.161.503-.274.742h.003l-.014.031c-.8 1.795-2.888 5.32-2.888 5.32l-.009-.023-.61 1.115h2.94L14.702 24l1.275-5.334h-2.315l.804-3.527c-.652.164-1.418.391-2.33.698 0 0-1.23.757-3.548-1.458 0 0-1.563-1.443-.656-1.807.384-.152 1.87-.346 3.04-.515 1.577-.225 2.55-.345 2.55-.345s-4.869.078-6.024-.115c-1.155-.19-2.618-2.214-2.932-3.993 0 0-.483-.977 1.036-.516 1.52.462 7.814 1.8 7.814 1.8S5.234 6.256 4.69 5.614c-.543-.642-1.603-3.51-1.465-5.27 0 0 .061-.441.49-.324 0 0 6.052 2.906 10.188 4.493 4.137 1.59 7.732 2.402 7.268 4.46z\" />\n </svg>\n );\n});\n\nexport default Icon;\n"],"mappings":";;;;;AAOA,MAAM,OAAiB,MAAM,EAAE,OAAO,OAAO,OAAO,GAAG,WAAW;AAChE,QACE,qBAAC,OAAD;EACE,MAAK;EACL,UAAS;EACT,QAAQ;EACR,OAAO;GAAE,MAAM;GAAQ,YAAY;GAAG,GAAG;GAAO;EAChD,SAAQ;EACR,OAAO;EACP,OAAM;EACN,GAAI;YARN,CAUE,oBAAC,SAAD,EAAA,UAAQ,OAAc,CAAA,EACtB,oBAAC,QAAD,EAAM,GAAE,siBAAuiB,CAAA,CAC3iB;;EAER"}
@@ -0,0 +1,15 @@
1
+ import { Avatar } from "./components/Avatar.mjs";
2
+ import { Icon } from "./components/Color.mjs";
3
+ import { Icon as Icon$1 } from "./components/Mono.mjs";
4
+
5
+ //#region src/icons/DingTalk/index.d.ts
6
+ type CompoundedIcon = typeof Icon$1 & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Icon;
9
+ colorPrimary: string;
10
+ title: string;
11
+ };
12
+ declare const Icons: CompoundedIcon;
13
+ //#endregion
14
+ export { CompoundedIcon, Icons };
15
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1,15 @@
1
+ "use client";
2
+ import { COLOR_PRIMARY, TITLE } from "./style.mjs";
3
+ import Icon from "./components/Mono.mjs";
4
+ import Avatar from "./components/Avatar.mjs";
5
+ import Icon$1 from "./components/Color.mjs";
6
+ //#region src/icons/DingTalk/index.ts
7
+ const Icons = Icon;
8
+ Icons.Color = Icon$1;
9
+ Icons.Avatar = Avatar;
10
+ Icons.colorPrimary = COLOR_PRIMARY;
11
+ Icons.title = TITLE;
12
+ //#endregion
13
+ export { Icons as default };
14
+
15
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":["Mono","Color"],"sources":["../../../src/icons/DingTalk/index.ts"],"sourcesContent":["'use client';\n\nimport Avatar from './components/Avatar';\nimport Color from './components/Color';\nimport Mono from './components/Mono';\nimport { COLOR_PRIMARY, TITLE } from './style';\n\nexport type CompoundedIcon = typeof Mono & {\n Avatar: typeof Avatar;\n Color: typeof Color;\n colorPrimary: string;\n title: string;\n};\n\nconst Icons = Mono as CompoundedIcon;\nIcons.Color = Color;\nIcons.Avatar = Avatar;\nIcons.colorPrimary = COLOR_PRIMARY;\nIcons.title = TITLE;\nexport default Icons;\n"],"mappings":";;;;;;AAcA,MAAM,QAAQA;AACd,MAAM,QAAQC;AACd,MAAM,SAAS;AACf,MAAM,eAAe;AACrB,MAAM,QAAQ"}
@@ -0,0 +1,7 @@
1
+ //#region src/icons/DingTalk/style.ts
2
+ const TITLE = "DingTalk";
3
+ const COLOR_PRIMARY = "#3296FA";
4
+ //#endregion
5
+ export { COLOR_PRIMARY, TITLE };
6
+
7
+ //# sourceMappingURL=style.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"style.mjs","names":[],"sources":["../../../src/icons/DingTalk/style.ts"],"sourcesContent":["export const TITLE = 'DingTalk';\nexport const COLOR_PRIMARY = '#3296FA';\n"],"mappings":";AAAA,MAAa,QAAQ;AACrB,MAAa,gBAAgB"}
@@ -0,0 +1,9 @@
1
+ import { FC } from "react";
2
+ import { IconAvatarProps } from "@lobehub/icons";
3
+
4
+ //#region src/icons/Line/components/Avatar.d.ts
5
+ type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
6
+ declare const Avatar: FC<AvatarProps>;
7
+ //#endregion
8
+ export { Avatar };
9
+ //# sourceMappingURL=Avatar.d.mts.map
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import Icon from "./Mono.mjs";
4
+ import { jsx } from "react/jsx-runtime";
5
+ import { IconAvatar } from "@lobehub/icons";
6
+ //#region src/icons/Line/components/Avatar.tsx
7
+ const Avatar = ({ background, ...rest }) => {
8
+ return /* @__PURE__ */ jsx(IconAvatar, {
9
+ Icon,
10
+ "aria-label": TITLE,
11
+ background: background || "#06C755",
12
+ color: "#fff",
13
+ ...rest
14
+ });
15
+ };
16
+ //#endregion
17
+ export { Avatar as default };
18
+
19
+ //# sourceMappingURL=Avatar.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Avatar.mjs","names":["Mono"],"sources":["../../../../src/icons/Line/components/Avatar.tsx"],"sourcesContent":["'use client';\n\nimport { IconAvatar, type IconAvatarProps } from '@lobehub/icons';\nimport { type FC } from 'react';\n\nimport { COLOR_PRIMARY, TITLE } from '../style';\nimport Mono from './Mono';\n\nexport type AvatarProps = Omit<IconAvatarProps, 'Icon'>;\n\nconst Avatar: FC<AvatarProps> = ({ background, ...rest }) => {\n return (\n <IconAvatar\n Icon={Mono}\n aria-label={TITLE}\n background={background || COLOR_PRIMARY}\n color={'#fff'}\n {...rest}\n />\n );\n};\n\nexport default Avatar;\n"],"mappings":";;;;;;AAUA,MAAM,UAA2B,EAAE,YAAY,GAAG,WAAW;AAC3D,QACE,oBAAC,YAAD;EACQA;EACN,cAAY;EACZ,YAAY,cAAA;EACZ,OAAO;EACP,GAAI;EACJ,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { IconType } from "@lobehub/icons";
2
+
3
+ //#region src/icons/Line/components/Color.d.ts
4
+ declare const Icon: IconType;
5
+ //#endregion
6
+ export { Icon };
7
+ //# sourceMappingURL=Color.d.mts.map
@@ -0,0 +1,27 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import { memo } from "react";
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ //#region src/icons/Line/components/Color.tsx
6
+ const Icon = memo(({ size = "1em", style, ...rest }) => {
7
+ return /* @__PURE__ */ jsxs("svg", {
8
+ height: size,
9
+ style: {
10
+ flex: "none",
11
+ lineHeight: 1,
12
+ ...style
13
+ },
14
+ viewBox: "0 0 24 24",
15
+ width: size,
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ ...rest,
18
+ children: [/* @__PURE__ */ jsx("title", { children: TITLE }), /* @__PURE__ */ jsx("path", {
19
+ d: "M19.365 9.863a.631.631 0 010 1.26H17.61v1.126h1.755a.63.63 0 110 1.259h-2.386a.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63h2.386a.63.63 0 01-.003 1.26H17.61v1.125h1.755zm-3.855 3.016a.63.63 0 01-.631.627.618.618 0 01-.51-.25l-2.443-3.317v2.94a.63.63 0 01-1.257 0V8.108a.627.627 0 01.624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.77zm-5.741 0a.632.632 0 01-.631.629.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.77zm-2.466.629H4.917a.634.634 0 01-.63-.63v-4.77c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.14h1.756a.63.63 0 010 1.26zM24 10.314C24 4.943 18.615.572 12 .572S0 4.942 0 10.314c0 4.81 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.3.079.766.038 1.08l-.164 1.02c-.045.3-.24 1.186 1.049.645 1.291-.54 6.916-4.078 9.436-6.975C23.176 14.392 24 12.458 24 10.314z",
20
+ fill: "#06C755"
21
+ })]
22
+ });
23
+ });
24
+ //#endregion
25
+ export { Icon as default };
26
+
27
+ //# sourceMappingURL=Color.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Color.mjs","names":[],"sources":["../../../../src/icons/Line/components/Color.tsx"],"sourcesContent":["'use client';\n\nimport type { IconType } from '@lobehub/icons';\nimport { memo } from 'react';\n\nimport { TITLE } from '../style';\n\nconst Icon: IconType = memo(({ size = '1em', style, ...rest }) => {\n return (\n <svg\n height={size}\n style={{ flex: 'none', lineHeight: 1, ...style }}\n viewBox=\"0 0 24 24\"\n width={size}\n xmlns=\"http://www.w3.org/2000/svg\"\n {...rest}\n >\n <title>{TITLE}</title>\n <path\n d=\"M19.365 9.863a.631.631 0 010 1.26H17.61v1.126h1.755a.63.63 0 110 1.259h-2.386a.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63h2.386a.63.63 0 01-.003 1.26H17.61v1.125h1.755zm-3.855 3.016a.63.63 0 01-.631.627.618.618 0 01-.51-.25l-2.443-3.317v2.94a.63.63 0 01-1.257 0V8.108a.627.627 0 01.624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.77zm-5.741 0a.632.632 0 01-.631.629.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.77zm-2.466.629H4.917a.634.634 0 01-.63-.63v-4.77c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.14h1.756a.63.63 0 010 1.26zM24 10.314C24 4.943 18.615.572 12 .572S0 4.942 0 10.314c0 4.81 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.3.079.766.038 1.08l-.164 1.02c-.045.3-.24 1.186 1.049.645 1.291-.54 6.916-4.078 9.436-6.975C23.176 14.392 24 12.458 24 10.314z\"\n fill=\"#06C755\"\n />\n </svg>\n );\n});\n\nexport default Icon;\n"],"mappings":";;;;;AAOA,MAAM,OAAiB,MAAM,EAAE,OAAO,OAAO,OAAO,GAAG,WAAW;AAChE,QACE,qBAAC,OAAD;EACE,QAAQ;EACR,OAAO;GAAE,MAAM;GAAQ,YAAY;GAAG,GAAG;GAAO;EAChD,SAAQ;EACR,OAAO;EACP,OAAM;EACN,GAAI;YANN,CAQE,oBAAC,SAAD,EAAA,UAAQ,OAAc,CAAA,EACtB,oBAAC,QAAD;GACE,GAAE;GACF,MAAK;GACL,CAAA,CACE;;EAER"}
@@ -0,0 +1,7 @@
1
+ import { IconType } from "@lobehub/icons";
2
+
3
+ //#region src/icons/Line/components/Mono.d.ts
4
+ declare const Icon: IconType;
5
+ //#endregion
6
+ export { Icon };
7
+ //# sourceMappingURL=Mono.d.mts.map
@@ -0,0 +1,26 @@
1
+ "use client";
2
+ import { TITLE } from "../style.mjs";
3
+ import { memo } from "react";
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ //#region src/icons/Line/components/Mono.tsx
6
+ const Icon = memo(({ size = "1em", style, ...rest }) => {
7
+ return /* @__PURE__ */ jsxs("svg", {
8
+ fill: "currentColor",
9
+ fillRule: "evenodd",
10
+ height: size,
11
+ style: {
12
+ flex: "none",
13
+ lineHeight: 1,
14
+ ...style
15
+ },
16
+ viewBox: "0 0 24 24",
17
+ width: size,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ ...rest,
20
+ children: [/* @__PURE__ */ jsx("title", { children: TITLE }), /* @__PURE__ */ jsx("path", { d: "M19.365 9.863a.631.631 0 010 1.26H17.61v1.126h1.755a.63.63 0 110 1.259h-2.386a.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63h2.386a.63.63 0 01-.003 1.26H17.61v1.125h1.755zm-3.855 3.016a.63.63 0 01-.631.627.618.618 0 01-.51-.25l-2.443-3.317v2.94a.63.63 0 01-1.257 0V8.108a.627.627 0 01.624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.77zm-5.741 0a.632.632 0 01-.631.629.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.77zm-2.466.629H4.917a.634.634 0 01-.63-.63v-4.77c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.14h1.756a.63.63 0 010 1.26zM24 10.314C24 4.943 18.615.572 12 .572S0 4.942 0 10.314c0 4.81 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.3.079.766.038 1.08l-.164 1.02c-.045.3-.24 1.186 1.049.645 1.291-.54 6.916-4.078 9.436-6.975C23.176 14.392 24 12.458 24 10.314z" })]
21
+ });
22
+ });
23
+ //#endregion
24
+ export { Icon as default };
25
+
26
+ //# sourceMappingURL=Mono.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Mono.mjs","names":[],"sources":["../../../../src/icons/Line/components/Mono.tsx"],"sourcesContent":["'use client';\n\nimport type { IconType } from '@lobehub/icons';\nimport { memo } from 'react';\n\nimport { TITLE } from '../style';\n\nconst Icon: IconType = memo(({ size = '1em', style, ...rest }) => {\n return (\n <svg\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n height={size}\n style={{ flex: 'none', lineHeight: 1, ...style }}\n viewBox=\"0 0 24 24\"\n width={size}\n xmlns=\"http://www.w3.org/2000/svg\"\n {...rest}\n >\n <title>{TITLE}</title>\n <path d=\"M19.365 9.863a.631.631 0 010 1.26H17.61v1.126h1.755a.63.63 0 110 1.259h-2.386a.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63h2.386a.63.63 0 01-.003 1.26H17.61v1.125h1.755zm-3.855 3.016a.63.63 0 01-.631.627.618.618 0 01-.51-.25l-2.443-3.317v2.94a.63.63 0 01-1.257 0V8.108a.627.627 0 01.624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.77zm-5.741 0a.632.632 0 01-.631.629.631.631 0 01-.627-.63v-4.77c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.77zm-2.466.629H4.917a.634.634 0 01-.63-.63v-4.77c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.14h1.756a.63.63 0 010 1.26zM24 10.314C24 4.943 18.615.572 12 .572S0 4.942 0 10.314c0 4.81 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.3.079.766.038 1.08l-.164 1.02c-.045.3-.24 1.186 1.049.645 1.291-.54 6.916-4.078 9.436-6.975C23.176 14.392 24 12.458 24 10.314z\" />\n </svg>\n );\n});\n\nexport default Icon;\n"],"mappings":";;;;;AAOA,MAAM,OAAiB,MAAM,EAAE,OAAO,OAAO,OAAO,GAAG,WAAW;AAChE,QACE,qBAAC,OAAD;EACE,MAAK;EACL,UAAS;EACT,QAAQ;EACR,OAAO;GAAE,MAAM;GAAQ,YAAY;GAAG,GAAG;GAAO;EAChD,SAAQ;EACR,OAAO;EACP,OAAM;EACN,GAAI;YARN,CAUE,oBAAC,SAAD,EAAA,UAAQ,OAAc,CAAA,EACtB,oBAAC,QAAD,EAAM,GAAE,01BAA21B,CAAA,CAC/1B;;EAER"}
@@ -0,0 +1,15 @@
1
+ import { Avatar } from "./components/Avatar.mjs";
2
+ import { Icon } from "./components/Color.mjs";
3
+ import { Icon as Icon$1 } from "./components/Mono.mjs";
4
+
5
+ //#region src/icons/Line/index.d.ts
6
+ type CompoundedIcon = typeof Icon$1 & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Icon;
9
+ colorPrimary: string;
10
+ title: string;
11
+ };
12
+ declare const Icons: CompoundedIcon;
13
+ //#endregion
14
+ export { CompoundedIcon, Icons };
15
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1,15 @@
1
+ "use client";
2
+ import { COLOR_PRIMARY, TITLE } from "./style.mjs";
3
+ import Icon from "./components/Mono.mjs";
4
+ import Avatar from "./components/Avatar.mjs";
5
+ import Icon$1 from "./components/Color.mjs";
6
+ //#region src/icons/Line/index.ts
7
+ const Icons = Icon;
8
+ Icons.Color = Icon$1;
9
+ Icons.Avatar = Avatar;
10
+ Icons.colorPrimary = COLOR_PRIMARY;
11
+ Icons.title = TITLE;
12
+ //#endregion
13
+ export { Icons as default };
14
+
15
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":["Mono","Color"],"sources":["../../../src/icons/Line/index.ts"],"sourcesContent":["'use client';\n\nimport Avatar from './components/Avatar';\nimport Color from './components/Color';\nimport Mono from './components/Mono';\nimport { COLOR_PRIMARY, TITLE } from './style';\n\nexport type CompoundedIcon = typeof Mono & {\n Avatar: typeof Avatar;\n Color: typeof Color;\n colorPrimary: string;\n title: string;\n};\n\nconst Icons = Mono as CompoundedIcon;\nIcons.Color = Color;\nIcons.Avatar = Avatar;\nIcons.colorPrimary = COLOR_PRIMARY;\nIcons.title = TITLE;\nexport default Icons;\n"],"mappings":";;;;;;AAcA,MAAM,QAAQA;AACd,MAAM,QAAQC;AACd,MAAM,SAAS;AACf,MAAM,eAAe;AACrB,MAAM,QAAQ"}
@@ -0,0 +1,7 @@
1
+ //#region src/icons/Line/style.ts
2
+ const TITLE = "Line";
3
+ const COLOR_PRIMARY = "#06C755";
4
+ //#endregion
5
+ export { COLOR_PRIMARY, TITLE };
6
+
7
+ //# sourceMappingURL=style.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"style.mjs","names":[],"sources":["../../../src/icons/Line/style.ts"],"sourcesContent":["export const TITLE = 'Line';\nexport const COLOR_PRIMARY = '#06C755';\n"],"mappings":";AAAA,MAAa,QAAQ;AACrB,MAAa,gBAAgB"}
@@ -3,11 +3,13 @@ import { CompoundedIcon as CompoundedIcon$1, Icons as Icons$1 } from "./Authelia
3
3
  import { CompoundedIcon as CompoundedIcon$2, Icons as Icons$2 } from "./Authentik/index.mjs";
4
4
  import { CompoundedIcon as CompoundedIcon$3, Icons as Icons$3 } from "./Casdoor/index.mjs";
5
5
  import { CompoundedIcon as CompoundedIcon$4, Icons as Icons$4 } from "./Clerk/index.mjs";
6
- import { CompoundedIcon as CompoundedIcon$5, Icons as Icons$5 } from "./Discord/index.mjs";
7
- import { CompoundedIcon as CompoundedIcon$6, Icons as Icons$6 } from "./GoogleChat/index.mjs";
8
- import { CompoundedIcon as CompoundedIcon$7, Icons as Icons$7 } from "./IMessage/index.mjs";
9
- import { CompoundedIcon as CompoundedIcon$8, Icons as Icons$8 } from "./Lark/index.mjs";
10
- import { CompoundedIcon as CompoundedIcon$9, Icons as Icons$9 } from "./Logto/index.mjs";
6
+ import { CompoundedIcon as CompoundedIcon$5, Icons as Icons$5 } from "./DingTalk/index.mjs";
7
+ import { CompoundedIcon as CompoundedIcon$6, Icons as Icons$6 } from "./Discord/index.mjs";
8
+ import { CompoundedIcon as CompoundedIcon$7, Icons as Icons$7 } from "./GoogleChat/index.mjs";
9
+ import { CompoundedIcon as CompoundedIcon$8, Icons as Icons$8 } from "./IMessage/index.mjs";
10
+ import { CompoundedIcon as CompoundedIcon$9, Icons as Icons$9 } from "./Lark/index.mjs";
11
+ import { CompoundedIcon as CompoundedIcon$10, Icons as Icons$10 } from "./Line/index.mjs";
12
+ import { CompoundedIcon as CompoundedIcon$11, Icons as Icons$11 } from "./Logto/index.mjs";
11
13
  import { AndroidIcon } from "./lucideExtra/AndroidIcon.mjs";
12
14
  import { AppleIcon } from "./lucideExtra/AppleIcon.mjs";
13
15
  import { AppstoreIcon } from "./lucideExtra/AppstoreIcon.mjs";
@@ -45,14 +47,14 @@ import { SlackIcon } from "./lucideExtra/SlackIcon.mjs";
45
47
  import { ThinkIcon } from "./lucideExtra/ThinkIcon.mjs";
46
48
  import { TreeDownRightIcon } from "./lucideExtra/TreeDownRightIcon.mjs";
47
49
  import { TreeUpDownRightIcon } from "./lucideExtra/TreeUpDownRightIcon.mjs";
48
- import { CompoundedIcon as CompoundedIcon$10, Icons as Icons$10 } from "./MicrosoftEntra/index.mjs";
49
- import { CompoundedIcon as CompoundedIcon$11, Icons as Icons$11 } from "./MicrosoftTeams/index.mjs";
50
- import { CompoundedIcon as CompoundedIcon$12, Icons as Icons$12 } from "./NextAuth/index.mjs";
51
- import { CompoundedIcon as CompoundedIcon$13, Icons as Icons$13 } from "./QQ/index.mjs";
52
- import { CompoundedIcon as CompoundedIcon$14, Icons as Icons$14 } from "./Slack/index.mjs";
53
- import { CompoundedIcon as CompoundedIcon$15, Icons as Icons$15 } from "./Telegram/index.mjs";
54
- import { CompoundedIcon as CompoundedIcon$16, Icons as Icons$16 } from "./WeChat/index.mjs";
55
- import { CompoundedIcon as CompoundedIcon$17, Icons as Icons$17 } from "./WhatsApp/index.mjs";
56
- import { CompoundedIcon as CompoundedIcon$18, Icons as Icons$18 } from "./Zitadel/index.mjs";
50
+ import { CompoundedIcon as CompoundedIcon$12, Icons as Icons$12 } from "./MicrosoftEntra/index.mjs";
51
+ import { CompoundedIcon as CompoundedIcon$13, Icons as Icons$13 } from "./MicrosoftTeams/index.mjs";
52
+ import { CompoundedIcon as CompoundedIcon$14, Icons as Icons$14 } from "./NextAuth/index.mjs";
53
+ import { CompoundedIcon as CompoundedIcon$15, Icons as Icons$15 } from "./QQ/index.mjs";
54
+ import { CompoundedIcon as CompoundedIcon$16, Icons as Icons$16 } from "./Slack/index.mjs";
55
+ import { CompoundedIcon as CompoundedIcon$17, Icons as Icons$17 } from "./Telegram/index.mjs";
56
+ import { CompoundedIcon as CompoundedIcon$18, Icons as Icons$18 } from "./WeChat/index.mjs";
57
+ import { CompoundedIcon as CompoundedIcon$19, Icons as Icons$19 } from "./WhatsApp/index.mjs";
58
+ import { CompoundedIcon as CompoundedIcon$20, Icons as Icons$20 } from "./Zitadel/index.mjs";
57
59
  import { Cloudflare, CloudflareProps, Github, GithubProps } from "@lobehub/icons";
58
- export { AndroidIcon, AppleIcon, AppstoreIcon, Icons as Auth0, type CompoundedIcon as Auth0Props, Icons$1 as Authelia, type CompoundedIcon$1 as AutheliaProps, Icons$2 as Authentik, type CompoundedIcon$2 as AuthentikProps, BotPromptIcon, BrainOffIcon, Icons$3 as Casdoor, type CompoundedIcon$3 as CasdoorProps, ChromeIcon, Icons$4 as Clerk, type CompoundedIcon$4 as ClerkProps, Cloudflare, type CloudflareProps, CodepenIcon, CodesandboxIcon, CreateBotIcon, Icons$5 as Discord, DiscordIcon, type CompoundedIcon$5 as DiscordProps, FacebookIcon, FigmaIcon, FramerIcon, Github, GithubIcon, type GithubProps, GitlabIcon, GlobeOffIcon, Icons$6 as GoogleChat, type CompoundedIcon$6 as GoogleChatProps, GooglePlayIcon, GroupBotIcon, GroupBotSquareIcon, Icons$7 as IMessage, type CompoundedIcon$7 as IMessageProps, InstagramIcon, Icons$8 as Lark, type CompoundedIcon$8 as LarkProps, LeftClickIcon, LeftDoubleClickIcon, LinkedinIcon, Icons$9 as Logto, type CompoundedIcon$9 as LogtoProps, McpIcon, Icons$10 as MicrosoftEntra, type CompoundedIcon$10 as MicrosoftEntraProps, Icons$11 as MicrosoftTeams, type CompoundedIcon$11 as MicrosoftTeamsProps, Icons$12 as NextAuth, type CompoundedIcon$12 as NextAuthProps, NotionIcon, PocketIcon, ProviderIcon, Icons$13 as QQ, type CompoundedIcon$13 as QQProps, RailSymbolIcon, RedditIcon, RightClickIcon, RightDoubleClickIcon, ShapesUploadIcon, SkillsIcon, Icons$14 as Slack, SlackIcon, type CompoundedIcon$14 as SlackProps, Icons$15 as Telegram, type CompoundedIcon$15 as TelegramProps, ThinkIcon, TreeDownRightIcon, TreeUpDownRightIcon, Icons$16 as WeChat, type CompoundedIcon$16 as WeChatProps, Icons$17 as WhatsApp, type CompoundedIcon$17 as WhatsAppProps, Icons$18 as Zitadel, type CompoundedIcon$18 as ZitadelProps };
60
+ export { AndroidIcon, AppleIcon, AppstoreIcon, Icons as Auth0, type CompoundedIcon as Auth0Props, Icons$1 as Authelia, type CompoundedIcon$1 as AutheliaProps, Icons$2 as Authentik, type CompoundedIcon$2 as AuthentikProps, BotPromptIcon, BrainOffIcon, Icons$3 as Casdoor, type CompoundedIcon$3 as CasdoorProps, ChromeIcon, Icons$4 as Clerk, type CompoundedIcon$4 as ClerkProps, Cloudflare, type CloudflareProps, CodepenIcon, CodesandboxIcon, CreateBotIcon, Icons$5 as DingTalk, type CompoundedIcon$5 as DingTalkProps, Icons$6 as Discord, DiscordIcon, type CompoundedIcon$6 as DiscordProps, FacebookIcon, FigmaIcon, FramerIcon, Github, GithubIcon, type GithubProps, GitlabIcon, GlobeOffIcon, Icons$7 as GoogleChat, type CompoundedIcon$7 as GoogleChatProps, GooglePlayIcon, GroupBotIcon, GroupBotSquareIcon, Icons$8 as IMessage, type CompoundedIcon$8 as IMessageProps, InstagramIcon, Icons$9 as Lark, type CompoundedIcon$9 as LarkProps, LeftClickIcon, LeftDoubleClickIcon, Icons$10 as Line, type CompoundedIcon$10 as LineProps, LinkedinIcon, Icons$11 as Logto, type CompoundedIcon$11 as LogtoProps, McpIcon, Icons$12 as MicrosoftEntra, type CompoundedIcon$12 as MicrosoftEntraProps, Icons$13 as MicrosoftTeams, type CompoundedIcon$13 as MicrosoftTeamsProps, Icons$14 as NextAuth, type CompoundedIcon$14 as NextAuthProps, NotionIcon, PocketIcon, ProviderIcon, Icons$15 as QQ, type CompoundedIcon$15 as QQProps, RailSymbolIcon, RedditIcon, RightClickIcon, RightDoubleClickIcon, ShapesUploadIcon, SkillsIcon, Icons$16 as Slack, SlackIcon, type CompoundedIcon$16 as SlackProps, Icons$17 as Telegram, type CompoundedIcon$17 as TelegramProps, ThinkIcon, TreeDownRightIcon, TreeUpDownRightIcon, Icons$18 as WeChat, type CompoundedIcon$18 as WeChatProps, Icons$19 as WhatsApp, type CompoundedIcon$19 as WhatsAppProps, Icons$20 as Zitadel, type CompoundedIcon$20 as ZitadelProps };
@@ -7,11 +7,13 @@ import Icons$1 from "./Authelia/index.mjs";
7
7
  import Icons$2 from "./Authentik/index.mjs";
8
8
  import Icons$3 from "./Casdoor/index.mjs";
9
9
  import Icons$4 from "./Clerk/index.mjs";
10
- import Icons$5 from "./Discord/index.mjs";
11
- import Icons$6 from "./GoogleChat/index.mjs";
12
- import Icons$7 from "./IMessage/index.mjs";
13
- import Icons$8 from "./Lark/index.mjs";
14
- import Icons$9 from "./Logto/index.mjs";
10
+ import Icons$5 from "./DingTalk/index.mjs";
11
+ import Icons$6 from "./Discord/index.mjs";
12
+ import Icons$7 from "./GoogleChat/index.mjs";
13
+ import Icons$8 from "./IMessage/index.mjs";
14
+ import Icons$9 from "./Lark/index.mjs";
15
+ import Icons$10 from "./Line/index.mjs";
16
+ import Icons$11 from "./Logto/index.mjs";
15
17
  import AndroidIcon from "./lucideExtra/AndroidIcon.mjs";
16
18
  import AppleIcon from "./lucideExtra/AppleIcon.mjs";
17
19
  import AppstoreIcon from "./lucideExtra/AppstoreIcon.mjs";
@@ -45,14 +47,14 @@ import SlackIcon from "./lucideExtra/SlackIcon.mjs";
45
47
  import ThinkIcon from "./lucideExtra/ThinkIcon.mjs";
46
48
  import TreeDownRightIcon from "./lucideExtra/TreeDownRightIcon.mjs";
47
49
  import TreeUpDownRightIcon from "./lucideExtra/TreeUpDownRightIcon.mjs";
48
- import Icons$10 from "./MicrosoftEntra/index.mjs";
49
- import Icons$11 from "./MicrosoftTeams/index.mjs";
50
- import Icons$12 from "./NextAuth/index.mjs";
51
- import Icons$13 from "./QQ/index.mjs";
52
- import Icons$14 from "./Slack/index.mjs";
53
- import Icons$15 from "./Telegram/index.mjs";
54
- import Icons$16 from "./WeChat/index.mjs";
55
- import Icons$17 from "./WhatsApp/index.mjs";
56
- import Icons$18 from "./Zitadel/index.mjs";
50
+ import Icons$12 from "./MicrosoftEntra/index.mjs";
51
+ import Icons$13 from "./MicrosoftTeams/index.mjs";
52
+ import Icons$14 from "./NextAuth/index.mjs";
53
+ import Icons$15 from "./QQ/index.mjs";
54
+ import Icons$16 from "./Slack/index.mjs";
55
+ import Icons$17 from "./Telegram/index.mjs";
56
+ import Icons$18 from "./WeChat/index.mjs";
57
+ import Icons$19 from "./WhatsApp/index.mjs";
58
+ import Icons$20 from "./Zitadel/index.mjs";
57
59
  import { Cloudflare, Github } from "@lobehub/icons";
58
- export { AndroidIcon, AppleIcon, AppstoreIcon, Icons as Auth0, Icons$1 as Authelia, Icons$2 as Authentik, BotPromptIcon, BrainOffIcon, Icons$3 as Casdoor, ChromeIcon, Icons$4 as Clerk, Cloudflare, CodepenIcon, CodesandboxIcon, CreateBotIcon, Icons$5 as Discord, DiscordIcon, FacebookIcon, FigmaIcon, FramerIcon, Github, GithubIcon, GitlabIcon, GlobeOffIcon, Icons$6 as GoogleChat, GooglePlayIcon, GroupBotIcon, GroupBotSquareIcon, Icons$7 as IMessage, InstagramIcon, Icons$8 as Lark, LeftClickIcon, LeftDoubleClickIcon, LinkedinIcon, Icons$9 as Logto, McpIcon, Icons$10 as MicrosoftEntra, Icons$11 as MicrosoftTeams, Icons$12 as NextAuth, NotionIcon, PocketIcon, ProviderIcon, Icons$13 as QQ, RailSymbolIcon, RedditIcon, RightClickIcon, RightDoubleClickIcon, ShapesUploadIcon, SkillsIcon, Icons$14 as Slack, SlackIcon, Icons$15 as Telegram, ThinkIcon, TreeDownRightIcon, TreeUpDownRightIcon, Icons$16 as WeChat, Icons$17 as WhatsApp, Icons$18 as Zitadel };
60
+ export { AndroidIcon, AppleIcon, AppstoreIcon, Icons as Auth0, Icons$1 as Authelia, Icons$2 as Authentik, BotPromptIcon, BrainOffIcon, Icons$3 as Casdoor, ChromeIcon, Icons$4 as Clerk, Cloudflare, CodepenIcon, CodesandboxIcon, CreateBotIcon, Icons$5 as DingTalk, Icons$6 as Discord, DiscordIcon, FacebookIcon, FigmaIcon, FramerIcon, Github, GithubIcon, GitlabIcon, GlobeOffIcon, Icons$7 as GoogleChat, GooglePlayIcon, GroupBotIcon, GroupBotSquareIcon, Icons$8 as IMessage, InstagramIcon, Icons$9 as Lark, LeftClickIcon, LeftDoubleClickIcon, Icons$10 as Line, LinkedinIcon, Icons$11 as Logto, McpIcon, Icons$12 as MicrosoftEntra, Icons$13 as MicrosoftTeams, Icons$14 as NextAuth, NotionIcon, PocketIcon, ProviderIcon, Icons$15 as QQ, RailSymbolIcon, RedditIcon, RightClickIcon, RightDoubleClickIcon, ShapesUploadIcon, SkillsIcon, Icons$16 as Slack, SlackIcon, Icons$17 as Telegram, ThinkIcon, TreeDownRightIcon, TreeUpDownRightIcon, Icons$18 as WeChat, Icons$19 as WhatsApp, Icons$20 as Zitadel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/ui",
3
- "version": "5.9.6",
3
+ "version": "5.10.0",
4
4
  "description": "Lobe UI is an open-source UI component library for building AIGC web apps",
5
5
  "keywords": [
6
6
  "lobehub",
@@ -148,7 +148,7 @@
148
148
  "@giscus/react": "^3.1.0",
149
149
  "@mdx-js/mdx": "^3.1.1",
150
150
  "@mdx-js/react": "^3.1.1",
151
- "@pierre/diffs": "^1.1.10",
151
+ "@pierre/diffs": "^1.1.19",
152
152
  "@radix-ui/react-slot": "^1.2.4",
153
153
  "@shikijs/core": "^4.0.2",
154
154
  "@shikijs/transformers": "^4.0.2",
@@ -160,13 +160,13 @@
160
160
  "clsx": "^2.1.1",
161
161
  "dayjs": "^1.11.20",
162
162
  "emoji-mart": "^5.6.0",
163
- "es-toolkit": "^1.45.1",
163
+ "es-toolkit": "^1.46.0",
164
164
  "fast-deep-equal": "^3.1.3",
165
165
  "immer": "^11.1.4",
166
- "katex": "^0.16.44",
166
+ "katex": "^0.16.45",
167
167
  "leva": "^0.10.1",
168
- "lucide-react": "^1.7.0",
169
- "marked": "^17.0.5",
168
+ "lucide-react": "^1.11.0",
169
+ "marked": "^17.0.6",
170
170
  "mermaid": "^11.14.0",
171
171
  "motion": "^12.38.0",
172
172
  "numeral": "^2.0.6",
@@ -202,14 +202,14 @@
202
202
  "url-join": "^5.0.0",
203
203
  "use-merge-value": "^1.2.0",
204
204
  "uuid": "^13.0.0",
205
- "virtua": "^0.49.0"
205
+ "virtua": "^0.49.1"
206
206
  },
207
207
  "devDependencies": {
208
208
  "@ant-design/icons": "^6.1.1",
209
209
  "@commitlint/cli": "^19.8.1",
210
210
  "@lobehub/eslint-config": "2.0.0",
211
211
  "@lobehub/fluent-emoji": "^4.1.0",
212
- "@lobehub/icons": "^5.2.0",
212
+ "@lobehub/icons": "^5.6.0",
213
213
  "@lobehub/lint": "^2.1.5",
214
214
  "@testing-library/react": "^16.3.2",
215
215
  "@types/chroma-js": "^3.1.2",
@@ -221,17 +221,17 @@
221
221
  "@types/react": "^19.2.14",
222
222
  "@types/react-dom": "^19.2.3",
223
223
  "@types/unist": "^3.0.3",
224
- "@typescript-eslint/eslint-plugin": "^8.58.0",
225
- "@typescript-eslint/parser": "^8.58.0",
224
+ "@typescript-eslint/eslint-plugin": "^8.59.0",
225
+ "@typescript-eslint/parser": "^8.59.0",
226
226
  "@vitest/coverage-v8": "^3.2.4",
227
- "antd": "^6.3.5",
227
+ "antd": "^6.3.6",
228
228
  "babel-plugin-antd-style": "^1.0.4",
229
229
  "cheerio": "^1.2.0",
230
230
  "clean-package": "^2.2.0",
231
231
  "commitlint": "^19.8.1",
232
232
  "concurrently": "^9.2.1",
233
233
  "cross-env": "^10.1.0",
234
- "dotenv": "^17.4.0",
234
+ "dotenv": "^17.4.2",
235
235
  "dpdm": "^4.0.1",
236
236
  "dumi": "^2.4.23",
237
237
  "dumi-theme-lobehub": "^5.0.0",
@@ -242,17 +242,17 @@
242
242
  "jsdom": "^26.1.0",
243
243
  "lint-staged": "^16.4.0",
244
244
  "mdast-util-to-markdown": "^2.1.2",
245
- "prettier": "^3.8.1",
246
- "react": "^19.2.4",
247
- "react-dom": "^19.2.4",
245
+ "prettier": "^3.8.3",
246
+ "react": "^19.2.5",
247
+ "react-dom": "^19.2.5",
248
248
  "remark": "^15.0.1",
249
249
  "remark-cli": "^12.0.1",
250
250
  "semantic-release": "^21.1.2",
251
251
  "stylelint": "^16.26.1",
252
252
  "svgo": "^4.0.1",
253
- "tsdown": "^0.21.7",
253
+ "tsdown": "^0.21.10",
254
254
  "tsx": "^4.21.0",
255
- "typescript": "^6.0.2",
255
+ "typescript": "^6.0.3",
256
256
  "unist-util-is": "^6.0.1",
257
257
  "unist-util-visit": "^5.1.0",
258
258
  "vitest": "^3.2.4"