@fkui/design 5.36.3 → 5.37.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/lib/fkui-exp.css +11 -2
- package/lib/fkui-exp.min.css +1 -1
- package/lib/fkui-int.css +11 -2
- package/lib/fkui-int.min.css +1 -1
- package/package.json +5 -5
- package/src/components/table/_table.scss +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/design",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.37.2",
|
|
4
4
|
"description": "fkui design",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"runner": "jest-light-runner"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@fkui/css-variables": "5.
|
|
39
|
-
"@fkui/icon-lib-default": "5.
|
|
38
|
+
"@fkui/css-variables": "5.37.2",
|
|
39
|
+
"@fkui/icon-lib-default": "5.37.0",
|
|
40
40
|
"autoprefixer": "10.4.20",
|
|
41
41
|
"cssnano": "7.0.6",
|
|
42
42
|
"flush-promises": "1.0.2",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"svgo": "3.3.2"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@fkui/css-variables": "^5.36.
|
|
53
|
+
"@fkui/css-variables": "^5.36.0",
|
|
54
54
|
"sass": "^1.40",
|
|
55
55
|
"stylelint": ">= 14"
|
|
56
56
|
},
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"node": ">= 20",
|
|
67
67
|
"npm": ">= 7"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "58ab8a4ceea399b130d5eb98b946bd117699d23b"
|
|
70
70
|
}
|
|
@@ -280,10 +280,19 @@ $table-input-offset-horizontal: 0.25rem;
|
|
|
280
280
|
padding-left: var(--f-button-discrete-table-column-action-padding-left);
|
|
281
281
|
/* stylelint-enable declaration-block-no-redundant-longhand-properties */
|
|
282
282
|
min-width: 24px;
|
|
283
|
+
width: max-content;
|
|
283
284
|
}
|
|
284
285
|
|
|
285
|
-
&--action .
|
|
286
|
+
&--action .button--tertiary {
|
|
287
|
+
margin: var(--f-button-tertiary-table-column-action-margin);
|
|
288
|
+
min-width: 24px;
|
|
289
|
+
width: max-content;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
&--action .button--discrete .button__icon,
|
|
293
|
+
&--action .button--tertiary .button__icon {
|
|
286
294
|
margin: var(--f-button-discrete-table-column-action-icon-margin);
|
|
295
|
+
transform: translate(0, 10%);
|
|
287
296
|
}
|
|
288
297
|
}
|
|
289
298
|
}
|