@tiny-codes/react-easy 1.7.4 → 1.7.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## 1.7.5
6
+
7
+ 2026-2-24
8
+
9
+ ### Features
10
+
11
+ - **EllipsisLink**
12
+ - ✨ Add `EllipsisLink` component with automatic ellipsis and tooltip functionality.
13
+
5
14
  ## 1.7.4
6
15
 
7
16
  2026-2-24
@@ -0,0 +1,19 @@
1
+ import type { LinkProps } from 'antd/es/typography/Link';
2
+ import { type MakeEllipsisTypographyProps } from './withEllipsisTypography';
3
+ export type EllipsisLinkProps = MakeEllipsisTypographyProps<LinkProps>;
4
+ /**
5
+ * - **EN:** A text component with automatic ellipsis and tooltip functionality that displays a
6
+ * tooltip when the text overflows, and does not display a tooltip when the text does not
7
+ * overflow. The following three methods can enable the automatic tooltip feature:
8
+ *
9
+ * 1. Set the `ellipsis` property to `true`
10
+ * 2. Set the `ellipsis.tooltip` property to `true`
11
+ * 3. Set the `ellipsis.tooltip.title` property to `true`
12
+ * - **CN:** 具有自动省略号和提示功能的文本组件,在文本溢出时显示工具提示,如果文本未溢出,则不显示工具提示。以下三种方式均可开启自动提示功能:
13
+ *
14
+ * 1. 设置 `ellipsis` 属性为 `true`
15
+ * 2. 设置 `ellipsis.tooltip` 属性为 `true`
16
+ * 3. 设置 `ellipsis.tooltip.title` 属性为 `true`
17
+ */
18
+ declare const EllipsisLink: (props: MakeEllipsisTypographyProps<LinkProps>) => import("react/jsx-runtime").JSX.Element;
19
+ export default EllipsisLink;
@@ -0,0 +1,19 @@
1
+ import { Typography } from 'antd';
2
+ import withEllipsisTypography from "./withEllipsisTypography";
3
+ /**
4
+ * - **EN:** A text component with automatic ellipsis and tooltip functionality that displays a
5
+ * tooltip when the text overflows, and does not display a tooltip when the text does not
6
+ * overflow. The following three methods can enable the automatic tooltip feature:
7
+ *
8
+ * 1. Set the `ellipsis` property to `true`
9
+ * 2. Set the `ellipsis.tooltip` property to `true`
10
+ * 3. Set the `ellipsis.tooltip.title` property to `true`
11
+ * - **CN:** 具有自动省略号和提示功能的文本组件,在文本溢出时显示工具提示,如果文本未溢出,则不显示工具提示。以下三种方式均可开启自动提示功能:
12
+ *
13
+ * 1. 设置 `ellipsis` 属性为 `true`
14
+ * 2. 设置 `ellipsis.tooltip` 属性为 `true`
15
+ * 3. 设置 `ellipsis.tooltip.title` 属性为 `true`
16
+ */
17
+ var EllipsisLink = withEllipsisTypography(Typography.Link);
18
+ export default EllipsisLink;
19
+ //# sourceMappingURL=EllipsisLink.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Typography","withEllipsisTypography","EllipsisLink","Link"],"sources":["../../../src/components/EllipsisTypography/EllipsisLink.tsx"],"sourcesContent":["import { Typography } from 'antd';\nimport type { LinkProps } from 'antd/es/typography/Link';\nimport withEllipsisTypography, { type MakeEllipsisTypographyProps } from './withEllipsisTypography';\n\nexport type EllipsisLinkProps = MakeEllipsisTypographyProps<LinkProps>;\n\n/**\n * - **EN:** A text component with automatic ellipsis and tooltip functionality that displays a\n * tooltip when the text overflows, and does not display a tooltip when the text does not\n * overflow. The following three methods can enable the automatic tooltip feature:\n *\n * 1. Set the `ellipsis` property to `true`\n * 2. Set the `ellipsis.tooltip` property to `true`\n * 3. Set the `ellipsis.tooltip.title` property to `true`\n * - **CN:** 具有自动省略号和提示功能的文本组件,在文本溢出时显示工具提示,如果文本未溢出,则不显示工具提示。以下三种方式均可开启自动提示功能:\n *\n * 1. 设置 `ellipsis` 属性为 `true`\n * 2. 设置 `ellipsis.tooltip` 属性为 `true`\n * 3. 设置 `ellipsis.tooltip.title` 属性为 `true`\n */\nconst EllipsisLink = withEllipsisTypography<LinkProps>(Typography.Link);\n\nexport default EllipsisLink;\n"],"mappings":"AAAA,SAASA,UAAU,QAAQ,MAAM;AAEjC,OAAOC,sBAAsB;AAI7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMC,YAAY,GAAGD,sBAAsB,CAAYD,UAAU,CAACG,IAAI,CAAC;AAEvE,eAAeD,YAAY"}
@@ -22,6 +22,8 @@ export * from './EllipsisTypography/EllipsisText';
22
22
  export { default as EllipsisText } from './EllipsisTypography/EllipsisText';
23
23
  export * from './EllipsisTypography/EllipsisTitle';
24
24
  export { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';
25
+ export * from './EllipsisTypography/EllipsisLink';
26
+ export { default as EllipsisLink } from './EllipsisTypography/EllipsisLink';
25
27
  export type { FloatDrawerProps } from './FloatDrawer';
26
28
  export { default as FloatDrawer } from './FloatDrawer';
27
29
  export type { FormItemControlProps } from './FormItemControl';
@@ -17,6 +17,8 @@ export * from "./EllipsisTypography/EllipsisText";
17
17
  export { default as EllipsisText } from "./EllipsisTypography/EllipsisText";
18
18
  export * from "./EllipsisTypography/EllipsisTitle";
19
19
  export { default as EllipsisTitle } from "./EllipsisTypography/EllipsisTitle";
20
+ export * from "./EllipsisTypography/EllipsisLink";
21
+ export { default as EllipsisLink } from "./EllipsisTypography/EllipsisLink";
20
22
  export { default as FloatDrawer } from "./FloatDrawer";
21
23
  export { default as FormItemControl } from "./FormItemControl";
22
24
  export { default as Loading } from "./Loading";
@@ -1 +1 @@
1
- {"version":3,"names":["default","BreakLines","ColumnSetting","ConfigProvider","ReactEasyContext","withDefaultConfirmActionProps","withConfirmAction","ConfirmAction","ContextMenu","DeleteConfirmAction","withDeleteConfirmAction","EditableText","EllipsisParagraph","EllipsisText","EllipsisTitle","FloatDrawer","FormItemControl","Loading","withDefaultModalActionProps","withModalAction","ModalAction","OverflowTags","PulseAnimation"],"sources":["../../src/components/index.tsx"],"sourcesContent":["export type { BreakLinesProps } from './BreakLines';\nexport { default as BreakLines } from './BreakLines';\n\nexport type { ColumnSettingProps } from './ColumnSetting';\nexport { default as ColumnSetting } from './ColumnSetting';\n\nexport type { ConfigProviderProps } from './ConfigProvider';\nexport { default as ConfigProvider } from './ConfigProvider';\nexport type { ReactEasyContextProps } from './ConfigProvider/context';\nexport { default as ReactEasyContext } from './ConfigProvider/context';\n\nexport type { ConfirmActionProps, ConfirmActionTrigger, ConfirmActionRef, ActionCompConstraint } from './ConfirmAction';\nexport { withDefaultConfirmActionProps } from './ConfirmAction';\nexport { default as withConfirmAction } from './ConfirmAction/withConfirmAction';\nexport { default as ConfirmAction } from './ConfirmAction';\n\nexport type {\n ContextMenuProps,\n ContextMenuItem,\n ContextMenuSeparator,\n ContextMenuSubmenu,\n ContextMenuRef,\n} from './ContextMenu';\nexport { default as ContextMenu } from './ContextMenu';\n\n// export * from './DeleteConfirmAction';\nexport { default as DeleteConfirmAction } from './DeleteConfirmAction';\nexport { default as withDeleteConfirmAction } from './DeleteConfirmAction/withDeleteConfirmAction';\n\nexport type { EditableTextProps } from './EditableText';\nexport { default as EditableText } from './EditableText';\n\nexport * from './EllipsisTypography/EllipsisParagraph';\nexport { default as EllipsisParagraph } from './EllipsisTypography/EllipsisParagraph';\n\nexport * from './EllipsisTypography/EllipsisText';\nexport { default as EllipsisText } from './EllipsisTypography/EllipsisText';\n\nexport * from './EllipsisTypography/EllipsisTitle';\nexport { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';\n\nexport type { FloatDrawerProps } from './FloatDrawer';\nexport { default as FloatDrawer } from './FloatDrawer';\n\nexport type { FormItemControlProps } from './FormItemControl';\nexport { default as FormItemControl } from './FormItemControl';\n\nexport type { LoadingProps } from './Loading';\nexport { default as Loading } from './Loading';\n\nexport type { ModalActionProps, FormCompPropsConstraint, ModalActionTrigger, ModalActionRef } from './ModalAction';\nexport { withDefaultModalActionProps, withModalAction } from './ModalAction';\nexport { default as ModalAction } from './ModalAction';\n\nexport type { OverflowTagsProps } from './OverflowTags';\nexport { default as OverflowTags } from './OverflowTags';\n\nexport type { PulseAnimationProps } from './Animation/Pulse';\nexport { default as PulseAnimation } from './Animation/Pulse';\n"],"mappings":"AACA,SAASA,OAAO,IAAIC,UAAU;AAG9B,SAASD,OAAO,IAAIE,aAAa;AAGjC,SAASF,OAAO,IAAIG,cAAc;AAElC,SAASH,OAAO,IAAII,gBAAgB;AAGpC,SAASC,6BAA6B;AACtC,SAASL,OAAO,IAAIM,iBAAiB;AACrC,SAASN,OAAO,IAAIO,aAAa;AASjC,SAASP,OAAO,IAAIQ,WAAW;;AAE/B;AACA,SAASR,OAAO,IAAIS,mBAAmB;AACvC,SAAST,OAAO,IAAIU,uBAAuB;AAG3C,SAASV,OAAO,IAAIW,YAAY;AAEhC;AACA,SAASX,OAAO,IAAIY,iBAAiB;AAErC;AACA,SAASZ,OAAO,IAAIa,YAAY;AAEhC;AACA,SAASb,OAAO,IAAIc,aAAa;AAGjC,SAASd,OAAO,IAAIe,WAAW;AAG/B,SAASf,OAAO,IAAIgB,eAAe;AAGnC,SAAShB,OAAO,IAAIiB,OAAO;AAG3B,SAASC,2BAA2B,EAAEC,eAAe;AACrD,SAASnB,OAAO,IAAIoB,WAAW;AAG/B,SAASpB,OAAO,IAAIqB,YAAY;AAGhC,SAASrB,OAAO,IAAIsB,cAAc"}
1
+ {"version":3,"names":["default","BreakLines","ColumnSetting","ConfigProvider","ReactEasyContext","withDefaultConfirmActionProps","withConfirmAction","ConfirmAction","ContextMenu","DeleteConfirmAction","withDeleteConfirmAction","EditableText","EllipsisParagraph","EllipsisText","EllipsisTitle","EllipsisLink","FloatDrawer","FormItemControl","Loading","withDefaultModalActionProps","withModalAction","ModalAction","OverflowTags","PulseAnimation"],"sources":["../../src/components/index.tsx"],"sourcesContent":["export type { BreakLinesProps } from './BreakLines';\nexport { default as BreakLines } from './BreakLines';\n\nexport type { ColumnSettingProps } from './ColumnSetting';\nexport { default as ColumnSetting } from './ColumnSetting';\n\nexport type { ConfigProviderProps } from './ConfigProvider';\nexport { default as ConfigProvider } from './ConfigProvider';\nexport type { ReactEasyContextProps } from './ConfigProvider/context';\nexport { default as ReactEasyContext } from './ConfigProvider/context';\n\nexport type { ConfirmActionProps, ConfirmActionTrigger, ConfirmActionRef, ActionCompConstraint } from './ConfirmAction';\nexport { withDefaultConfirmActionProps } from './ConfirmAction';\nexport { default as withConfirmAction } from './ConfirmAction/withConfirmAction';\nexport { default as ConfirmAction } from './ConfirmAction';\n\nexport type {\n ContextMenuProps,\n ContextMenuItem,\n ContextMenuSeparator,\n ContextMenuSubmenu,\n ContextMenuRef,\n} from './ContextMenu';\nexport { default as ContextMenu } from './ContextMenu';\n\n// export * from './DeleteConfirmAction';\nexport { default as DeleteConfirmAction } from './DeleteConfirmAction';\nexport { default as withDeleteConfirmAction } from './DeleteConfirmAction/withDeleteConfirmAction';\n\nexport type { EditableTextProps } from './EditableText';\nexport { default as EditableText } from './EditableText';\n\nexport * from './EllipsisTypography/EllipsisParagraph';\nexport { default as EllipsisParagraph } from './EllipsisTypography/EllipsisParagraph';\n\nexport * from './EllipsisTypography/EllipsisText';\nexport { default as EllipsisText } from './EllipsisTypography/EllipsisText';\n\nexport * from './EllipsisTypography/EllipsisTitle';\nexport { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';\n\nexport * from './EllipsisTypography/EllipsisLink';\nexport { default as EllipsisLink } from './EllipsisTypography/EllipsisLink';\n\nexport type { FloatDrawerProps } from './FloatDrawer';\nexport { default as FloatDrawer } from './FloatDrawer';\n\nexport type { FormItemControlProps } from './FormItemControl';\nexport { default as FormItemControl } from './FormItemControl';\n\nexport type { LoadingProps } from './Loading';\nexport { default as Loading } from './Loading';\n\nexport type { ModalActionProps, FormCompPropsConstraint, ModalActionTrigger, ModalActionRef } from './ModalAction';\nexport { withDefaultModalActionProps, withModalAction } from './ModalAction';\nexport { default as ModalAction } from './ModalAction';\n\nexport type { OverflowTagsProps } from './OverflowTags';\nexport { default as OverflowTags } from './OverflowTags';\n\nexport type { PulseAnimationProps } from './Animation/Pulse';\nexport { default as PulseAnimation } from './Animation/Pulse';\n"],"mappings":"AACA,SAASA,OAAO,IAAIC,UAAU;AAG9B,SAASD,OAAO,IAAIE,aAAa;AAGjC,SAASF,OAAO,IAAIG,cAAc;AAElC,SAASH,OAAO,IAAII,gBAAgB;AAGpC,SAASC,6BAA6B;AACtC,SAASL,OAAO,IAAIM,iBAAiB;AACrC,SAASN,OAAO,IAAIO,aAAa;AASjC,SAASP,OAAO,IAAIQ,WAAW;;AAE/B;AACA,SAASR,OAAO,IAAIS,mBAAmB;AACvC,SAAST,OAAO,IAAIU,uBAAuB;AAG3C,SAASV,OAAO,IAAIW,YAAY;AAEhC;AACA,SAASX,OAAO,IAAIY,iBAAiB;AAErC;AACA,SAASZ,OAAO,IAAIa,YAAY;AAEhC;AACA,SAASb,OAAO,IAAIc,aAAa;AAEjC;AACA,SAASd,OAAO,IAAIe,YAAY;AAGhC,SAASf,OAAO,IAAIgB,WAAW;AAG/B,SAAShB,OAAO,IAAIiB,eAAe;AAGnC,SAASjB,OAAO,IAAIkB,OAAO;AAG3B,SAASC,2BAA2B,EAAEC,eAAe;AACrD,SAASpB,OAAO,IAAIqB,WAAW;AAG/B,SAASrB,OAAO,IAAIsB,YAAY;AAGhC,SAAStB,OAAO,IAAIuB,cAAc"}
@@ -0,0 +1,19 @@
1
+ import type { LinkProps } from 'antd/es/typography/Link';
2
+ import { type MakeEllipsisTypographyProps } from './withEllipsisTypography';
3
+ export type EllipsisLinkProps = MakeEllipsisTypographyProps<LinkProps>;
4
+ /**
5
+ * - **EN:** A text component with automatic ellipsis and tooltip functionality that displays a
6
+ * tooltip when the text overflows, and does not display a tooltip when the text does not
7
+ * overflow. The following three methods can enable the automatic tooltip feature:
8
+ *
9
+ * 1. Set the `ellipsis` property to `true`
10
+ * 2. Set the `ellipsis.tooltip` property to `true`
11
+ * 3. Set the `ellipsis.tooltip.title` property to `true`
12
+ * - **CN:** 具有自动省略号和提示功能的文本组件,在文本溢出时显示工具提示,如果文本未溢出,则不显示工具提示。以下三种方式均可开启自动提示功能:
13
+ *
14
+ * 1. 设置 `ellipsis` 属性为 `true`
15
+ * 2. 设置 `ellipsis.tooltip` 属性为 `true`
16
+ * 3. 设置 `ellipsis.tooltip.title` 属性为 `true`
17
+ */
18
+ declare const EllipsisLink: (props: MakeEllipsisTypographyProps<LinkProps>) => import("react/jsx-runtime").JSX.Element;
19
+ export default EllipsisLink;
@@ -0,0 +1,39 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/components/EllipsisTypography/EllipsisLink.tsx
30
+ var EllipsisLink_exports = {};
31
+ __export(EllipsisLink_exports, {
32
+ default: () => EllipsisLink_default
33
+ });
34
+ module.exports = __toCommonJS(EllipsisLink_exports);
35
+ var import_antd = require("antd");
36
+ var import_withEllipsisTypography = __toESM(require("./withEllipsisTypography"));
37
+ var EllipsisLink = (0, import_withEllipsisTypography.default)(import_antd.Typography.Link);
38
+ var EllipsisLink_default = EllipsisLink;
39
+ //# sourceMappingURL=EllipsisLink.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/components/EllipsisTypography/EllipsisLink.tsx"],
4
+ "sourcesContent": ["import { Typography } from 'antd';\nimport type { LinkProps } from 'antd/es/typography/Link';\nimport withEllipsisTypography, { type MakeEllipsisTypographyProps } from './withEllipsisTypography';\n\nexport type EllipsisLinkProps = MakeEllipsisTypographyProps<LinkProps>;\n\n/**\n * - **EN:** A text component with automatic ellipsis and tooltip functionality that displays a\n * tooltip when the text overflows, and does not display a tooltip when the text does not\n * overflow. The following three methods can enable the automatic tooltip feature:\n *\n * 1. Set the `ellipsis` property to `true`\n * 2. Set the `ellipsis.tooltip` property to `true`\n * 3. Set the `ellipsis.tooltip.title` property to `true`\n * - **CN:** 具有自动省略号和提示功能的文本组件,在文本溢出时显示工具提示,如果文本未溢出,则不显示工具提示。以下三种方式均可开启自动提示功能:\n *\n * 1. 设置 `ellipsis` 属性为 `true`\n * 2. 设置 `ellipsis.tooltip` 属性为 `true`\n * 3. 设置 `ellipsis.tooltip.title` 属性为 `true`\n */\nconst EllipsisLink = withEllipsisTypography<LinkProps>(Typography.Link);\n\nexport default EllipsisLink;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA2B;AAE3B,oCAAyE;AAkBzE,IAAM,mBAAe,8BAAAA,SAAkC,uBAAW,IAAI;AAEtE,IAAO,uBAAQ;",
6
+ "names": ["withEllipsisTypography"]
7
+ }
@@ -22,6 +22,8 @@ export * from './EllipsisTypography/EllipsisText';
22
22
  export { default as EllipsisText } from './EllipsisTypography/EllipsisText';
23
23
  export * from './EllipsisTypography/EllipsisTitle';
24
24
  export { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';
25
+ export * from './EllipsisTypography/EllipsisLink';
26
+ export { default as EllipsisLink } from './EllipsisTypography/EllipsisLink';
25
27
  export type { FloatDrawerProps } from './FloatDrawer';
26
28
  export { default as FloatDrawer } from './FloatDrawer';
27
29
  export type { FormItemControlProps } from './FormItemControl';
@@ -37,6 +37,7 @@ __export(components_exports, {
37
37
  ContextMenu: () => import_ContextMenu.default,
38
38
  DeleteConfirmAction: () => import_DeleteConfirmAction.default,
39
39
  EditableText: () => import_EditableText.default,
40
+ EllipsisLink: () => import_EllipsisLink.default,
40
41
  EllipsisParagraph: () => import_EllipsisParagraph.default,
41
42
  EllipsisText: () => import_EllipsisText.default,
42
43
  EllipsisTitle: () => import_EllipsisTitle.default,
@@ -71,6 +72,8 @@ __reExport(components_exports, require("./EllipsisTypography/EllipsisText"), mod
71
72
  var import_EllipsisText = __toESM(require("./EllipsisTypography/EllipsisText"));
72
73
  __reExport(components_exports, require("./EllipsisTypography/EllipsisTitle"), module.exports);
73
74
  var import_EllipsisTitle = __toESM(require("./EllipsisTypography/EllipsisTitle"));
75
+ __reExport(components_exports, require("./EllipsisTypography/EllipsisLink"), module.exports);
76
+ var import_EllipsisLink = __toESM(require("./EllipsisTypography/EllipsisLink"));
74
77
  var import_FloatDrawer = __toESM(require("./FloatDrawer"));
75
78
  var import_FormItemControl = __toESM(require("./FormItemControl"));
76
79
  var import_Loading = __toESM(require("./Loading"));
@@ -87,6 +90,7 @@ var import_Pulse = __toESM(require("./Animation/Pulse"));
87
90
  ContextMenu,
88
91
  DeleteConfirmAction,
89
92
  EditableText,
93
+ EllipsisLink,
90
94
  EllipsisParagraph,
91
95
  EllipsisText,
92
96
  EllipsisTitle,
@@ -104,6 +108,7 @@ var import_Pulse = __toESM(require("./Animation/Pulse"));
104
108
  withModalAction,
105
109
  ...require("./EllipsisTypography/EllipsisParagraph"),
106
110
  ...require("./EllipsisTypography/EllipsisText"),
107
- ...require("./EllipsisTypography/EllipsisTitle")
111
+ ...require("./EllipsisTypography/EllipsisTitle"),
112
+ ...require("./EllipsisTypography/EllipsisLink")
108
113
  });
109
114
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/components/index.tsx"],
4
- "sourcesContent": ["export type { BreakLinesProps } from './BreakLines';\nexport { default as BreakLines } from './BreakLines';\n\nexport type { ColumnSettingProps } from './ColumnSetting';\nexport { default as ColumnSetting } from './ColumnSetting';\n\nexport type { ConfigProviderProps } from './ConfigProvider';\nexport { default as ConfigProvider } from './ConfigProvider';\nexport type { ReactEasyContextProps } from './ConfigProvider/context';\nexport { default as ReactEasyContext } from './ConfigProvider/context';\n\nexport type { ConfirmActionProps, ConfirmActionTrigger, ConfirmActionRef, ActionCompConstraint } from './ConfirmAction';\nexport { withDefaultConfirmActionProps } from './ConfirmAction';\nexport { default as withConfirmAction } from './ConfirmAction/withConfirmAction';\nexport { default as ConfirmAction } from './ConfirmAction';\n\nexport type {\n ContextMenuProps,\n ContextMenuItem,\n ContextMenuSeparator,\n ContextMenuSubmenu,\n ContextMenuRef,\n} from './ContextMenu';\nexport { default as ContextMenu } from './ContextMenu';\n\n// export * from './DeleteConfirmAction';\nexport { default as DeleteConfirmAction } from './DeleteConfirmAction';\nexport { default as withDeleteConfirmAction } from './DeleteConfirmAction/withDeleteConfirmAction';\n\nexport type { EditableTextProps } from './EditableText';\nexport { default as EditableText } from './EditableText';\n\nexport * from './EllipsisTypography/EllipsisParagraph';\nexport { default as EllipsisParagraph } from './EllipsisTypography/EllipsisParagraph';\n\nexport * from './EllipsisTypography/EllipsisText';\nexport { default as EllipsisText } from './EllipsisTypography/EllipsisText';\n\nexport * from './EllipsisTypography/EllipsisTitle';\nexport { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';\n\nexport type { FloatDrawerProps } from './FloatDrawer';\nexport { default as FloatDrawer } from './FloatDrawer';\n\nexport type { FormItemControlProps } from './FormItemControl';\nexport { default as FormItemControl } from './FormItemControl';\n\nexport type { LoadingProps } from './Loading';\nexport { default as Loading } from './Loading';\n\nexport type { ModalActionProps, FormCompPropsConstraint, ModalActionTrigger, ModalActionRef } from './ModalAction';\nexport { withDefaultModalActionProps, withModalAction } from './ModalAction';\nexport { default as ModalAction } from './ModalAction';\n\nexport type { OverflowTagsProps } from './OverflowTags';\nexport { default as OverflowTags } from './OverflowTags';\n\nexport type { PulseAnimationProps } from './Animation/Pulse';\nexport { default as PulseAnimation } from './Animation/Pulse';\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,wBAAsC;AAGtC,2BAAyC;AAGzC,4BAA0C;AAE1C,qBAA4C;AAG5C,2BAA8C;AAC9C,+BAA6C;AAC7C,IAAAA,wBAAyC;AASzC,yBAAuC;AAGvC,iCAA+C;AAC/C,qCAAmD;AAGnD,0BAAwC;AAExC,+BAAc,mDAhCd;AAiCA,+BAA6C;AAE7C,+BAAc,8CAnCd;AAoCA,0BAAwC;AAExC,+BAAc,+CAtCd;AAuCA,2BAAyC;AAGzC,yBAAuC;AAGvC,6BAA2C;AAG3C,qBAAmC;AAGnC,yBAA6D;AAC7D,IAAAC,sBAAuC;AAGvC,0BAAwC;AAGxC,mBAA0C;",
4
+ "sourcesContent": ["export type { BreakLinesProps } from './BreakLines';\nexport { default as BreakLines } from './BreakLines';\n\nexport type { ColumnSettingProps } from './ColumnSetting';\nexport { default as ColumnSetting } from './ColumnSetting';\n\nexport type { ConfigProviderProps } from './ConfigProvider';\nexport { default as ConfigProvider } from './ConfigProvider';\nexport type { ReactEasyContextProps } from './ConfigProvider/context';\nexport { default as ReactEasyContext } from './ConfigProvider/context';\n\nexport type { ConfirmActionProps, ConfirmActionTrigger, ConfirmActionRef, ActionCompConstraint } from './ConfirmAction';\nexport { withDefaultConfirmActionProps } from './ConfirmAction';\nexport { default as withConfirmAction } from './ConfirmAction/withConfirmAction';\nexport { default as ConfirmAction } from './ConfirmAction';\n\nexport type {\n ContextMenuProps,\n ContextMenuItem,\n ContextMenuSeparator,\n ContextMenuSubmenu,\n ContextMenuRef,\n} from './ContextMenu';\nexport { default as ContextMenu } from './ContextMenu';\n\n// export * from './DeleteConfirmAction';\nexport { default as DeleteConfirmAction } from './DeleteConfirmAction';\nexport { default as withDeleteConfirmAction } from './DeleteConfirmAction/withDeleteConfirmAction';\n\nexport type { EditableTextProps } from './EditableText';\nexport { default as EditableText } from './EditableText';\n\nexport * from './EllipsisTypography/EllipsisParagraph';\nexport { default as EllipsisParagraph } from './EllipsisTypography/EllipsisParagraph';\n\nexport * from './EllipsisTypography/EllipsisText';\nexport { default as EllipsisText } from './EllipsisTypography/EllipsisText';\n\nexport * from './EllipsisTypography/EllipsisTitle';\nexport { default as EllipsisTitle } from './EllipsisTypography/EllipsisTitle';\n\nexport * from './EllipsisTypography/EllipsisLink';\nexport { default as EllipsisLink } from './EllipsisTypography/EllipsisLink';\n\nexport type { FloatDrawerProps } from './FloatDrawer';\nexport { default as FloatDrawer } from './FloatDrawer';\n\nexport type { FormItemControlProps } from './FormItemControl';\nexport { default as FormItemControl } from './FormItemControl';\n\nexport type { LoadingProps } from './Loading';\nexport { default as Loading } from './Loading';\n\nexport type { ModalActionProps, FormCompPropsConstraint, ModalActionTrigger, ModalActionRef } from './ModalAction';\nexport { withDefaultModalActionProps, withModalAction } from './ModalAction';\nexport { default as ModalAction } from './ModalAction';\n\nexport type { OverflowTagsProps } from './OverflowTags';\nexport { default as OverflowTags } from './OverflowTags';\n\nexport type { PulseAnimationProps } from './Animation/Pulse';\nexport { default as PulseAnimation } from './Animation/Pulse';\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,wBAAsC;AAGtC,2BAAyC;AAGzC,4BAA0C;AAE1C,qBAA4C;AAG5C,2BAA8C;AAC9C,+BAA6C;AAC7C,IAAAA,wBAAyC;AASzC,yBAAuC;AAGvC,iCAA+C;AAC/C,qCAAmD;AAGnD,0BAAwC;AAExC,+BAAc,mDAhCd;AAiCA,+BAA6C;AAE7C,+BAAc,8CAnCd;AAoCA,0BAAwC;AAExC,+BAAc,+CAtCd;AAuCA,2BAAyC;AAEzC,+BAAc,8CAzCd;AA0CA,0BAAwC;AAGxC,yBAAuC;AAGvC,6BAA2C;AAG3C,qBAAmC;AAGnC,yBAA6D;AAC7D,IAAAC,sBAAuC;AAGvC,0BAAwC;AAGxC,mBAA0C;",
6
6
  "names": ["import_ConfirmAction", "import_ModalAction"]
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiny-codes/react-easy",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "Simplify React and AntDesign development with practical components and hooks",
5
5
  "keywords": [
6
6
  "react",