@0xchain/iconfont 1.1.0-beta.6 → 1.1.0-beta.60

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 ADDED
@@ -0,0 +1,27 @@
1
+ ## 1.1.0-beta.32 (2026-05-26)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - 升级依赖
6
+ - 升级header组件
7
+ - 修改header组件
8
+ - 修改header组件
9
+ - 升级依赖
10
+ - 修改表格组件
11
+ - 修改表格组件
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - caojide
16
+
17
+ ## 1.1.0-beta.19 (2026-03-17)
18
+
19
+ ### 🩹 Fixes
20
+
21
+ - 升级iconfont
22
+ - monorepo 最佳实践审查修复
23
+
24
+ ### ❤️ Thank You
25
+
26
+ - caojide
27
+ - jee.song
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-present 0xchain
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
- declare const _default: import('react').FC<import('@ant-design/icons/lib/components/IconFont').IconFontProps<string>>;
2
- export default _default;
3
- //# sourceMappingURL=index.d.ts.map
1
+ type IconFont = ReturnType<typeof import('@ant-design/icons').createFromIconfontCN>;
2
+
3
+ declare const IconFont: IconFont;
4
+
5
+ export default IconFont;
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use client';
2
- import { createFromIconfontCN as o } from "@ant-design/icons";
3
- const t = o({
4
- scriptUrl: `${process.env.NEXT_PUBLIC_CDN_URL}/common/iconfont/20260128/iconfont.js`
2
+ import { createFromIconfontCN } from "@ant-design/icons";
3
+ const index = createFromIconfontCN({
4
+ scriptUrl: `${process.env.NEXT_PUBLIC_CDN_URL}/common/iconfont/20260402/iconfont.js`
5
5
  // 在 iconfont.cn 上生成
6
6
  });
7
7
  export {
8
- t as default
8
+ index as default
9
9
  };