ketekny-ui-kit 1.0.94 → 1.0.95
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/package.json
CHANGED
package/src/ui/kTable.vue
CHANGED
|
@@ -115,7 +115,7 @@ export default {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.table-custom--card th {
|
|
118
|
-
@apply px-
|
|
118
|
+
@apply px-4 py-2.5 text-sm font-semibold text-left text-white bg-primary border-b border-primary;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
.table-custom--plain th {
|
|
@@ -127,15 +127,15 @@ export default {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.table-custom--card td {
|
|
130
|
-
@apply h-
|
|
130
|
+
@apply h-10 px-4 py-2.5 text-sm text-slate-800 dark:text-slate-200;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
.table-custom--plain td {
|
|
134
|
-
@apply h-
|
|
134
|
+
@apply h-10 px-2 py-2 text-sm text-slate-800 dark:text-slate-200;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.table-custom--flat td {
|
|
138
|
-
@apply h-
|
|
138
|
+
@apply h-10 px-3 py-2 text-sm text-slate-900 dark:text-slate-200 align-middle;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
.table-custom tr {
|
|
@@ -6,10 +6,10 @@ export const K_BUTTON_BASE = "inline-flex flex-row items-center justify-center f
|
|
|
6
6
|
export const K_BUTTON_SIZE_STYLES = {
|
|
7
7
|
normal: {
|
|
8
8
|
regular: "h-9 px-4 text-sm",
|
|
9
|
-
iconOnly: "h-
|
|
10
|
-
icon: "w-
|
|
11
|
-
loader: "w-
|
|
12
|
-
gap: "mr-
|
|
9
|
+
iconOnly: "h-9 w-9 p-0",
|
|
10
|
+
icon: "w-4 h-4",
|
|
11
|
+
loader: "w-4 h-4",
|
|
12
|
+
gap: "mr-1.5",
|
|
13
13
|
},
|
|
14
14
|
small: {
|
|
15
15
|
regular: "h-8 px-3 text-sm",
|
|
@@ -28,10 +28,10 @@ export const K_BUTTON_SIZE_STYLES = {
|
|
|
28
28
|
// Backward compatibility aliases
|
|
29
29
|
default: {
|
|
30
30
|
regular: "h-9 px-4 text-sm",
|
|
31
|
-
iconOnly: "h-
|
|
32
|
-
icon: "w-
|
|
33
|
-
loader: "w-
|
|
34
|
-
gap: "mr-
|
|
31
|
+
iconOnly: "h-9 w-9 p-0",
|
|
32
|
+
icon: "w-4 h-4",
|
|
33
|
+
loader: "w-4 h-4",
|
|
34
|
+
gap: "mr-1.5",
|
|
35
35
|
},
|
|
36
36
|
};
|
|
37
37
|
|