tsv2-library 1.0.61-alpha.142 → 1.0.61-alpha.144
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/dist/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +6 -0
- package/dist/src/presets/datatable/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +13 -5
- package/dist/tsv2-library.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +6 -0
- package/src/presets/datatable/index.js +1 -1
|
@@ -37,6 +37,12 @@ export interface InputCoordinateProps {
|
|
|
37
37
|
* It is rarely use, this component has handled the validator message.
|
|
38
38
|
*/
|
|
39
39
|
validatorMessage?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Wether to show the input or not.
|
|
42
|
+
*
|
|
43
|
+
* @default true
|
|
44
|
+
*/
|
|
45
|
+
showInput?: boolean;
|
|
40
46
|
}
|
|
41
47
|
|
|
42
48
|
/**
|
|
@@ -84,7 +84,7 @@ export default {
|
|
|
84
84
|
tbody: ({ instance, context }) => ({
|
|
85
85
|
class: [
|
|
86
86
|
// 'border-t border-surface-300 dark:border-surface-600',
|
|
87
|
-
'[&_tr:last-of-type>td]:!border-b-0',
|
|
87
|
+
// '[&_tr:last-of-type>td]:!border-b-0',
|
|
88
88
|
'[&_tr:last-of-type>td:last-child]:!rounded-br-lg',
|
|
89
89
|
'[&_tr:last-of-type>td:first-child]:!rounded-bl-lg',
|
|
90
90
|
{
|