tsv2-library 1.0.61-alpha.6 → 1.0.61-alpha.8
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/Tree/Tree.vue.d.ts +1 -1
- package/dist/src/presets/button/index.js +7 -2
- package/dist/tsv2-library.es.js +1157 -1153
- package/dist/tsv2-library.umd.js +41 -41
- package/package.json +1 -1
- package/src/components/v2/Tree/Tree.vue.d.ts +1 -1
- package/src/presets/button/index.js +7 -2
|
@@ -449,7 +449,7 @@ export default {
|
|
|
449
449
|
|
|
450
450
|
// Disabled
|
|
451
451
|
{
|
|
452
|
-
'!
|
|
452
|
+
'!pointer-events-none !cursor-default':
|
|
453
453
|
context.disabled || props.disabled,
|
|
454
454
|
},
|
|
455
455
|
|
|
@@ -463,9 +463,14 @@ export default {
|
|
|
463
463
|
},
|
|
464
464
|
// Outlined Disabled
|
|
465
465
|
{
|
|
466
|
-
'!ring-1 !ring-offset-0 !ring-general-200':
|
|
466
|
+
'!text-general-200 !ring-1 !ring-offset-0 !ring-general-200':
|
|
467
467
|
(props.disabled || context.disabled) && props.outlined,
|
|
468
468
|
},
|
|
469
|
+
// Text Disabled
|
|
470
|
+
{
|
|
471
|
+
'!text-general-200':
|
|
472
|
+
(props.disabled || context.disabled) && props.text,
|
|
473
|
+
},
|
|
469
474
|
|
|
470
475
|
// Transitions
|
|
471
476
|
'transition duration-200 ease-in-out',
|