@kentico/xperience-admin-components 28.0.2 → 28.1.0

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/entry.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference types="packages/kentico-xperience-admin-components/src/__global" />
1
2
  /// <reference types="react" />
2
3
 
3
4
  import { ConnectDragPreview } from 'react-dnd';
@@ -806,6 +807,9 @@ export declare enum Colors {
806
807
  AlertActive = "var(--color-alert-active)",
807
808
  AlertBackgroundHighEmphasis = "var(--color-alert-background-high-emphasis)",
808
809
  AlertBackgroundLowEmphasis = "var(--color-alert-background-low-emphasis)",
810
+ AlertBackgroundLowEmphasisHover = "var(--color-alert-background-low-emphasis-hover)",
811
+ AlertBackgroundSelected = "var(--color-alert-background-selected)",
812
+ AlertBackgroundSelectedHover = "var(--color-alert-background-selected-hover)",
809
813
  AlertFocus = "var(--color-alert-focus)",
810
814
  AlertHover = "var(--color-alert-hover)",
811
815
  AlertIcon = "var(--color-alert-icon)",
@@ -1997,6 +2001,7 @@ export declare const KXIcons: {
1997
2001
  'xp-h-4': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1998
2002
  'xp-half-arrows-right-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1999
2003
  'xp-hat-moustache': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2004
+ 'xp-headless': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2000
2005
  'xp-heart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2001
2006
  'xp-heartshake': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2002
2007
  'xp-highlighter': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -3472,10 +3477,14 @@ export declare interface TableRow {
3472
3477
  * Indicates if the row is disabled.
3473
3478
  */
3474
3479
  disabled: boolean;
3480
+ /**
3481
+ * Indicates whether the row is in an invalid state.
3482
+ */
3483
+ isInvalid?: boolean;
3475
3484
  }
3476
3485
 
3477
3486
  export declare const TableRowComponent: {
3478
- ({ cells, columns, disabled, selectable, selected, skeleton, selectLabel, maxVisibleRowActions, inactiveMessage, dataTestId, onRowSelect: onSelect, onRowClick }: TableRowProps): JSX.Element;
3487
+ ({ cells, columns, disabled, selectable, selected, skeleton, selectLabel, maxVisibleRowActions, inactiveMessage, dataTestId, onRowSelect: onSelect, onRowClick, isInvalid }: TableRowProps): JSX.Element;
3479
3488
  displayName: string;
3480
3489
  };
3481
3490
 
@@ -3543,6 +3552,10 @@ declare interface TableRowProps extends UITestProps {
3543
3552
  * Callback when row is clicked on.
3544
3553
  */
3545
3554
  readonly onRowClick?: () => void;
3555
+ /**
3556
+ * Indicates whether the row is in an invalid state. Defaults to 'False'.
3557
+ */
3558
+ readonly isInvalid?: boolean;
3546
3559
  }
3547
3560
 
3548
3561
  export declare const Tag: React_2.ForwardRefExoticComponent<TagProps & React_2.RefAttributes<HTMLDivElement>>;