@varlet/ui 3.1.3 → 3.1.4
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/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/space/Space.mjs +1 -1
- package/es/space/space.css +1 -1
- package/es/style.css +1 -1
- package/es/table/table.css +1 -1
- package/es/themes/dark/table.mjs +1 -0
- package/es/themes/md3-dark/table.mjs +1 -0
- package/es/themes/md3-light/table.mjs +1 -0
- package/es/varlet.esm.js +5 -2
- package/highlight/web-types.en-US.json +1 -1
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +5 -2
- package/package.json +7 -7
- package/types/styleVars.d.ts +2 -0
- package/umd/varlet.js +4 -4
package/lib/varlet.cjs.js
CHANGED
|
@@ -22710,7 +22710,7 @@ var stdin_default$3r = vue.defineComponent({
|
|
|
22710
22710
|
lastIndex
|
|
22711
22711
|
});
|
|
22712
22712
|
return vue.createVNode("div", {
|
|
22713
|
-
"class": classes$a([direction === "column", n$d("--
|
|
22713
|
+
"class": classes$a([direction === "column", n$d("--auto")]),
|
|
22714
22714
|
"style": {
|
|
22715
22715
|
margin
|
|
22716
22716
|
}
|
|
@@ -24315,6 +24315,7 @@ var stdin_default$2O = {
|
|
|
24315
24315
|
var stdin_default$2N = {
|
|
24316
24316
|
"--table-background": "#303030",
|
|
24317
24317
|
"--table-thead-th-text-color": "rgba(255, 255, 255, 0.6)",
|
|
24318
|
+
"--table-thead-th-text-align": "left",
|
|
24318
24319
|
"--table-tbody-td-text-color": "#fff",
|
|
24319
24320
|
"--table-tbody-tr-hover-background": "#4c4b4b",
|
|
24320
24321
|
"--table-border-radius": "2px",
|
|
@@ -25114,6 +25115,7 @@ var stdin_default$1Q = {
|
|
|
25114
25115
|
"--table-border-radius": "2px",
|
|
25115
25116
|
"--table-thead-border-bottom": "thin solid var(--color-outline)",
|
|
25116
25117
|
"--table-thead-th-text-color": "rgba(0, 0, 0, 0.6)",
|
|
25118
|
+
"--table-thead-th-text-align": "left",
|
|
25117
25119
|
"--table-thead-th-font-size": "14px",
|
|
25118
25120
|
"--table-thead-tr-border-bottom": "thin solid var(--color-outline)",
|
|
25119
25121
|
"--table-tbody-tr-border-bottom": "thin solid var(--color-outline)",
|
|
@@ -26086,6 +26088,7 @@ var stdin_default$N = {
|
|
|
26086
26088
|
var stdin_default$M = {
|
|
26087
26089
|
"--table-background": "var(--color-surface-container-highest)",
|
|
26088
26090
|
"--table-thead-th-text-color": "rgba(255, 255, 255, 0.6)",
|
|
26091
|
+
"--table-thead-th-text-align": "left",
|
|
26089
26092
|
"--table-tbody-td-text-color": "#fff",
|
|
26090
26093
|
"--table-tbody-tr-hover-background": "var(--color-surface-container-highest)",
|
|
26091
26094
|
"--table-border-radius": "2px",
|
|
@@ -28376,7 +28379,7 @@ withInstall(stdin_default$1);
|
|
|
28376
28379
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
28377
28380
|
const _WatermarkComponent = stdin_default$1;
|
|
28378
28381
|
var stdin_default = stdin_default$1;
|
|
28379
|
-
const version = "3.1.
|
|
28382
|
+
const version = "3.1.4";
|
|
28380
28383
|
function install(app) {
|
|
28381
28384
|
stdin_default$5E.install && app.use(stdin_default$5E);
|
|
28382
28385
|
stdin_default$5C.install && app.use(stdin_default$5C);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/ui",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "A material like components library",
|
|
5
5
|
"main": "lib/varlet.cjs.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"@popperjs/core": "^2.11.6",
|
|
49
49
|
"dayjs": "^1.10.4",
|
|
50
50
|
"decimal.js": "^10.2.1",
|
|
51
|
-
"@varlet/
|
|
52
|
-
"@varlet/
|
|
53
|
-
"@varlet/
|
|
51
|
+
"@varlet/shared": "3.1.4",
|
|
52
|
+
"@varlet/icons": "3.1.4",
|
|
53
|
+
"@varlet/use": "3.1.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@vue/runtime-core": "3.4.21",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"typescript": "^5.1.5",
|
|
67
67
|
"vue": "3.4.21",
|
|
68
68
|
"vue-router": "4.2.0",
|
|
69
|
-
"@varlet/
|
|
70
|
-
"@varlet/
|
|
71
|
-
"@varlet/
|
|
69
|
+
"@varlet/cli": "3.1.4",
|
|
70
|
+
"@varlet/ui": "3.1.4",
|
|
71
|
+
"@varlet/touch-emulator": "3.1.4"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"dev": "varlet-cli dev",
|
package/types/styleVars.d.ts
CHANGED
|
@@ -1207,6 +1207,8 @@ export interface StyleVars {
|
|
|
1207
1207
|
tableTheadBorderBottom?: string
|
|
1208
1208
|
'--table-thead-th-text-color'?: string
|
|
1209
1209
|
tableTheadThTextColor?: string
|
|
1210
|
+
'--table-thead-th-text-align'?: string
|
|
1211
|
+
tableTheadThTextAlign?: string
|
|
1210
1212
|
'--table-thead-th-font-size'?: string
|
|
1211
1213
|
tableTheadThFontSize?: string
|
|
1212
1214
|
'--table-thead-tr-border-bottom'?: string
|