@semi-kit/theme 1.3.10 → 1.3.12
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.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.base-table-wrapper {
|
|
2
|
+
:global(.n-data-table--flex-height) {
|
|
3
|
+
:global(.n-data-table-td--last-row) {
|
|
4
|
+
border-bottom: 1px solid var(--n-merged-border-color) !important;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
:global(.n-data-table-resize-button)::after {
|
|
8
|
+
background-color: #e4e6eb !important;
|
|
9
|
+
}
|
|
10
|
+
:global(.n-data-table-resize-button:hover)::after {
|
|
11
|
+
background-color: var(--primary-color) !important;
|
|
12
|
+
}
|
|
13
|
+
:global(.n-data-table-th:has(.n-data-table-resize-button) .n-data-table-th__title-wrapper > .n-data-table-sorter) {
|
|
14
|
+
margin-right: 6px;
|
|
15
|
+
}
|
|
16
|
+
}
|
package/lib/vars/index.d.mts
CHANGED
package/lib/vars/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const appVars={spacing:12,borderRadiusSmall:6,borderRadiusMiddle:8,borderRadiusLarge:10,placeholderColor:`#F3F3F3`,placeholderColorDark:`#18181c`,margin:`12px`,padding:`12px`,scrollbarSize:6,
|
|
1
|
+
const appVars={spacing:12,borderRadiusSmall:6,borderRadiusMiddle:8,borderRadiusLarge:10,placeholderColor:`#F3F3F3`,placeholderColorDark:`#18181c`,margin:`12px`,padding:`12px`,scrollbarSize:6,sidePanelWidth:320,formItemFixedWidth:386,componentWidth:246,componentWidthMiddle:280,componentWidthLarge:320};export{appVars};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semi-kit/theme",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"description": "Theme and style presets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "lijiaheng <jahnli@163.com>",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"./vars/type": "./lib/vars/type.mjs",
|
|
27
27
|
"./package.json": "./package.json",
|
|
28
28
|
"./base.css": "./lib/base.css",
|
|
29
|
-
"./base.less": "./lib/base.less"
|
|
29
|
+
"./base.less": "./lib/base.less",
|
|
30
|
+
"./module-css": "./lib/module-css",
|
|
31
|
+
"./module-css/table.module.css": "./lib/module-css/table.module.css"
|
|
30
32
|
},
|
|
31
33
|
"scripts": {
|
|
32
34
|
"build": "tsdown",
|