@kentico/xperience-admin-components 26.1.3 → 26.2.1

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
@@ -1635,6 +1635,39 @@ export declare const IconToggleButtons: React_2.ForwardRefExoticComponent<IconTo
1635
1635
  export declare interface IconToggleButtonsProps extends ToggleButtonsProps<IconToggleButton> {
1636
1636
  }
1637
1637
 
1638
+ export declare const InfoCard: {
1639
+ ({ caption, tooltip, text, details, ...props }: InfoCardProps): JSX.Element;
1640
+ displayName: string;
1641
+ };
1642
+
1643
+ /**
1644
+ * Represents result returned from the load funnel configuration command.
1645
+ */
1646
+ export declare interface InfoCardData {
1647
+ /**
1648
+ * Gets or sets card caption.
1649
+ */
1650
+ readonly caption: string;
1651
+ /**
1652
+ * Gets or sets card tooltip.
1653
+ */
1654
+ readonly tooltip: string;
1655
+ /**
1656
+ * Gets or sets the main text.
1657
+ */
1658
+ readonly text: string;
1659
+ /**
1660
+ * Gets or sets details to elaborate the main text.
1661
+ */
1662
+ readonly details: string;
1663
+ }
1664
+
1665
+ /**
1666
+ * Info card properties.
1667
+ */
1668
+ export declare interface InfoCardProps extends InfoCardData, UITestProps {
1669
+ }
1670
+
1638
1671
  declare interface InjectedProps {
1639
1672
  readonly classes: string;
1640
1673
  readonly children: React.ReactNode;
@@ -3118,12 +3151,13 @@ export declare interface TableRow {
3118
3151
  }
3119
3152
 
3120
3153
  export declare const TableRowComponent: {
3121
- ({ cells, columns, disabled, selectable, selected, skeleton, selectLabel, maxVisibleRowActions, inactiveMessage, dataTestId, elevation, onRowSelect: onSelect, onRowClick }: TableRowProps): JSX.Element;
3154
+ ({ cells, columns, disabled, selectable, selected, skeleton, selectLabel, maxVisibleRowActions, inactiveMessage, dataTestId, onRowSelect: onSelect, onRowClick }: TableRowProps): JSX.Element;
3122
3155
  displayName: string;
3123
3156
  };
3124
3157
 
3125
3158
  /**
3126
3159
  * Elevation for the table row.
3160
+ * @deprecated Table row uses border instead of shadow.
3127
3161
  */
3128
3162
  export declare enum TableRowElevation {
3129
3163
  XS = "XS",
@@ -3174,6 +3208,7 @@ declare interface TableRowProps extends UITestProps {
3174
3208
  readonly inactiveMessage?: string;
3175
3209
  /**
3176
3210
  * Elevation of the table row.
3211
+ * @deprecated Table row uses border instead of shadow.
3177
3212
  */
3178
3213
  readonly elevation?: TableRowElevation;
3179
3214
  /**
@@ -3215,11 +3250,12 @@ export declare interface TagProps {
3215
3250
  readonly dataTestIdRemoveButton?: string;
3216
3251
  }
3217
3252
 
3218
- export declare const TagTableCellComponent: ({ color, label }: TagTableCellComponentProps) => JSX.Element;
3253
+ export declare const TagTableCellComponent: ({ color, label, tooltipText }: TagTableCellComponentProps) => JSX.Element;
3219
3254
 
3220
3255
  export declare interface TagTableCellComponentProps {
3221
3256
  readonly label: string;
3222
3257
  readonly color: keyof typeof Colors;
3258
+ readonly tooltipText?: string;
3223
3259
  }
3224
3260
 
3225
3261
  export declare const TextArea: React_2.ForwardRefExoticComponent<TextAreaProps & React_2.RefAttributes<HTMLDivElement>>;