nectiasw 0.0.157 → 0.0.159

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,6 +11,7 @@ export declare const classes: {
11
11
  };
12
12
  filter: {
13
13
  root: string;
14
+ start: (mobileView: boolean) => "hidden" | "";
14
15
  end: string;
15
16
  show: string;
16
17
  info: string;
@@ -10,6 +10,7 @@ export type PaginationProps = {
10
10
  total?: number;
11
11
  limit?: string;
12
12
  current?: number;
13
+ mobileView?: boolean;
13
14
  };
14
15
  /**
15
16
  * @description
@@ -63,7 +63,7 @@ export type TableDataProps = {
63
63
  iconJustify?: "center" | "start" | "end" | "between" | "around";
64
64
  onClickDetail?: () => void;
65
65
  onChangeCheckbox?: (checked: boolean, dataId?: number) => void;
66
- detailText?: string;
66
+ detailText?: React.ReactNode;
67
67
  detailDisabled?: boolean;
68
68
  detailVariant?: ButtonProps["variant"];
69
69
  indexed?: boolean;
@@ -87,6 +87,7 @@ export type TableStatusProps = {
87
87
  disabled?: TableDataProps["detailDisabled"];
88
88
  variant?: ButtonProps["variant"];
89
89
  value: "Normal" | "Cerrado" | "Crítico" | "Por emisión OC";
90
+ buttonChildren?: React.ReactNode;
90
91
  };
91
92
  export type TableColProps = {
92
93
  width?: number;