@fe-free/core 6.0.1 → 6.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 6.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: crud ui
8
+ - @fe-free/icons@6.0.2
9
+ - @fe-free/tool@6.0.2
10
+
3
11
  ## 6.0.1
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -52,8 +52,8 @@
52
52
  "i18next-icu": "^2.4.1",
53
53
  "react": "^19.2.0",
54
54
  "react-i18next": "^16.4.0",
55
- "@fe-free/tool": "6.0.1",
56
- "@fe-free/icons": "6.0.1"
55
+ "@fe-free/icons": "6.0.2",
56
+ "@fe-free/tool": "6.0.2"
57
57
  },
58
58
  "scripts": {
59
59
  "i18n-extract": "rm -rf ./src/locales/zh-CN && npx i18next-cli extract"
@@ -8,6 +8,11 @@
8
8
  .ant-pagination {
9
9
  // gap: 8px;
10
10
 
11
+ // 奇怪的问题。 full page 的时候会有滚动条。 需要 overflow: hidden;
12
+ & > li {
13
+ overflow: hidden;
14
+ }
15
+
11
16
  .ant-pagination-options {
12
17
  order: -1;
13
18
  margin-right: 8px;
package/src/tailwind.css CHANGED
@@ -1,5 +1,6 @@
1
1
  @import 'tailwindcss';
2
2
 
3
+ /* stylelint-disable-next-line */
3
4
  @theme {
4
5
  --color-primary: #0374e9;
5
6
  --color-theme09: #0368d2;
@@ -20,8 +21,8 @@
20
21
  --color-yellow05: #eecf9b;
21
22
  --color-yellow03: #f6e7cd;
22
23
  --text-color-01: #15191e;
23
- --text-color-02: #444444;
24
- --text-color-03: #777777;
24
+ --text-color-02: #444;
25
+ --text-color-03: #777;
25
26
  --text-color-04: #bfbfbf;
26
27
  --border-color-01: #e2e7f0;
27
28
  --border-color-02: #d5dde9;