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.
@@ -11,7 +11,7 @@ export interface TreeNode {
11
11
  /**
12
12
  * Mandatory unique key of the node.
13
13
  */
14
- key?: string | number;
14
+ key?: string;
15
15
  /**
16
16
  * Label of the node.
17
17
  */
@@ -449,7 +449,7 @@ export default {
449
449
 
450
450
  // Disabled
451
451
  {
452
- '!text-general-200 !pointer-events-none !cursor-default':
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',