@internxt/ui 0.1.2 → 0.1.3

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.
@@ -36,6 +36,7 @@ export interface ListProps<T, F> {
36
36
  disableItemCompositionStyles?: boolean;
37
37
  onMouseEnter?: () => void;
38
38
  onMouseLeave?: () => void;
39
+ headerBackgroundColor?: string;
39
40
  keyBoardShortcutActions?: {
40
41
  onShiftFKeysPressed?: () => void;
41
42
  onRKeyPressed?: () => void;
@@ -120,6 +121,9 @@ export interface ListProps<T, F> {
120
121
  * @property {() => void} [onMouseLeave]
121
122
  * - Optional callback triggered when the mouse leaves the list.
122
123
  *
124
+ * @property {string} [headerBackgroundColor]
125
+ * - Optional background color for the header.
126
+ *
123
127
  * @property {
124
128
  * { onShiftFKeysPressed?: () => void; onRKeyPressed?: () => void; onBackspaceKeyPressed?: () => void }
125
129
  * } [keyBoardShortcutActions]
@@ -130,5 +134,5 @@ export interface ListProps<T, F> {
130
134
  */
131
135
  declare const List: <T extends {
132
136
  id: number;
133
- }, F extends keyof T>({ header, checkboxDataCy, items, itemComposition, selectedItems, onClick, onDoubleClick, onEnterPressed, onSelectedItemsChanged, isLoading, forceLoading, skinSkeleton, emptyState, orderBy, onOrderByChanged, onNextPage, hasMoreItems, menu, displayMenuDiv, className, disableItemCompositionStyles, onMouseEnter, onMouseLeave, keyBoardShortcutActions, disableKeyboardShortcuts, }: ListProps<T, F>) => JSX.Element;
137
+ }, F extends keyof T>({ header, checkboxDataCy, items, itemComposition, selectedItems, onClick, onDoubleClick, onEnterPressed, onSelectedItemsChanged, isLoading, forceLoading, skinSkeleton, emptyState, orderBy, onOrderByChanged, onNextPage, hasMoreItems, menu, displayMenuDiv, className, disableItemCompositionStyles, onMouseEnter, onMouseLeave, headerBackgroundColor, keyBoardShortcutActions, disableKeyboardShortcuts, }: ListProps<T, F>) => JSX.Element;
134
138
  export default List;