@charlesgomes/leafcode-shared-lib-react 1.0.54 → 1.0.55

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/index.css CHANGED
@@ -419,6 +419,8 @@ th {
419
419
  opacity: 1;
420
420
  }
421
421
  .box-icones-actions-column {
422
+ background: #f0f0f0;
423
+ border-radius: 10rem;
422
424
  width: fit-content;
423
425
  height: fit-content;
424
426
  margin: auto;
@@ -426,7 +428,6 @@ th {
426
428
  align-items: center;
427
429
  justify-content: center;
428
430
  opacity: 0;
429
- gap: 0.25rem;
430
431
  transition: opacity 0.2s ease;
431
432
  }
432
433
  .p-datatable .p-datatable-tbody > tr > td:last-child {
@@ -446,10 +447,8 @@ th {
446
447
  background-color: #f0f0f0;
447
448
  color: #1c1c1c;
448
449
  cursor: pointer;
449
- padding: 0;
450
+ padding: 4px;
450
451
  border: 0;
451
- width: 1.5rem;
452
- height: 1.5rem;
453
452
  display: flex;
454
453
  align-items: center;
455
454
  justify-content: center;
@@ -523,3 +522,6 @@ th {
523
522
  .react-tooltip {
524
523
  z-index: 13 !important;
525
524
  }
525
+ .p-datatable.p-datatable-gridlines .p-datatable-scrollable-table > .p-datatable-thead {
526
+ top: 0;
527
+ }
package/dist/index.d.mts CHANGED
@@ -53,6 +53,8 @@ type IDataTableProps<T extends object> = {
53
53
  sortOrderInitial?: 1 | -1;
54
54
  isMultiSelectionMode?: boolean;
55
55
  isLanguagePtBr?: boolean;
56
+ rows?: number;
57
+ rowsPerPageOptions?: number[];
56
58
  state?: TableState;
57
59
  onStateChange?: (state: TableState) => void;
58
60
  };
@@ -90,12 +92,12 @@ interface ColumnCustom<T> {
90
92
  type TableState = {
91
93
  page: number;
92
94
  rows: number;
93
- sortField?: string;
95
+ sortField: string;
94
96
  sortOrder?: 1 | -1;
95
97
  filter?: string;
96
98
  };
97
99
 
98
- declare function DataTableAdvancedFilter<T extends object>({ queryKey, mutationFn, columns, initFilters, onNew, onEdit, onDelete, customActions, customActionsColums, disablePagination, sortFieldInitial, sortOrderInitial, isMultiSelectionMode, isLanguagePtBr, state, onStateChange, }: IDataTableProps<T>): react_jsx_runtime.JSX.Element;
100
+ declare function DataTableAdvancedFilter<T extends object>({ queryKey, mutationFn, columns, initFilters, onNew, onEdit, onDelete, customActions, customActionsColums, disablePagination, sortFieldInitial, sortOrderInitial, isMultiSelectionMode, isLanguagePtBr, rowsPerPageOptions, state, onStateChange, }: IDataTableProps<T>): react_jsx_runtime.JSX.Element;
99
101
 
100
102
  interface IItemProps {
101
103
  value: string;
package/dist/index.d.ts CHANGED
@@ -53,6 +53,8 @@ type IDataTableProps<T extends object> = {
53
53
  sortOrderInitial?: 1 | -1;
54
54
  isMultiSelectionMode?: boolean;
55
55
  isLanguagePtBr?: boolean;
56
+ rows?: number;
57
+ rowsPerPageOptions?: number[];
56
58
  state?: TableState;
57
59
  onStateChange?: (state: TableState) => void;
58
60
  };
@@ -90,12 +92,12 @@ interface ColumnCustom<T> {
90
92
  type TableState = {
91
93
  page: number;
92
94
  rows: number;
93
- sortField?: string;
95
+ sortField: string;
94
96
  sortOrder?: 1 | -1;
95
97
  filter?: string;
96
98
  };
97
99
 
98
- declare function DataTableAdvancedFilter<T extends object>({ queryKey, mutationFn, columns, initFilters, onNew, onEdit, onDelete, customActions, customActionsColums, disablePagination, sortFieldInitial, sortOrderInitial, isMultiSelectionMode, isLanguagePtBr, state, onStateChange, }: IDataTableProps<T>): react_jsx_runtime.JSX.Element;
100
+ declare function DataTableAdvancedFilter<T extends object>({ queryKey, mutationFn, columns, initFilters, onNew, onEdit, onDelete, customActions, customActionsColums, disablePagination, sortFieldInitial, sortOrderInitial, isMultiSelectionMode, isLanguagePtBr, rowsPerPageOptions, state, onStateChange, }: IDataTableProps<T>): react_jsx_runtime.JSX.Element;
99
101
 
100
102
  interface IItemProps {
101
103
  value: string;
package/dist/index.js CHANGED
@@ -533,6 +533,7 @@ function DataTableAdvancedFilterWrapper({
533
533
  sortOrderInitial = 1,
534
534
  isMultiSelectionMode = true,
535
535
  isLanguagePtBr = true,
536
+ rowsPerPageOptions = [10, 25, 50, 100],
536
537
  state,
537
538
  onStateChange
538
539
  }) {
@@ -542,7 +543,7 @@ function DataTableAdvancedFilterWrapper({
542
543
  }, []);
543
544
  const initialState = state ?? {
544
545
  page: 1,
545
- rows: 10,
546
+ rows: rowsPerPageOptions[0],
546
547
  sortField: sortFieldInitial,
547
548
  sortOrder: sortOrderInitial,
548
549
  filter: ""
@@ -791,7 +792,7 @@ function DataTableAdvancedFilterWrapper({
791
792
  });
792
793
  setFilters(newFilters);
793
794
  },
794
- rowsPerPageOptions: [10, 25, 50, 100],
795
+ rowsPerPageOptions,
795
796
  className: "p-datatable-sm",
796
797
  paginatorClassName: "paginatorClassName",
797
798
  tableClassName: "tableClassName",
@@ -983,6 +984,7 @@ function DataTableAdvancedFilter({
983
984
  sortOrderInitial = 1,
984
985
  isMultiSelectionMode = true,
985
986
  isLanguagePtBr = true,
987
+ rowsPerPageOptions = [10, 25, 50, 100],
986
988
  state,
987
989
  onStateChange
988
990
  }) {
@@ -1003,6 +1005,7 @@ function DataTableAdvancedFilter({
1003
1005
  children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1004
1006
  DataTableAdvancedFilterWrapper,
1005
1007
  {
1008
+ rowsPerPageOptions,
1006
1009
  queryKey,
1007
1010
  mutationFn,
1008
1011
  columns,
package/dist/index.mjs CHANGED
@@ -478,6 +478,7 @@ function DataTableAdvancedFilterWrapper({
478
478
  sortOrderInitial = 1,
479
479
  isMultiSelectionMode = true,
480
480
  isLanguagePtBr = true,
481
+ rowsPerPageOptions = [10, 25, 50, 100],
481
482
  state,
482
483
  onStateChange
483
484
  }) {
@@ -487,7 +488,7 @@ function DataTableAdvancedFilterWrapper({
487
488
  }, []);
488
489
  const initialState = state ?? {
489
490
  page: 1,
490
- rows: 10,
491
+ rows: rowsPerPageOptions[0],
491
492
  sortField: sortFieldInitial,
492
493
  sortOrder: sortOrderInitial,
493
494
  filter: ""
@@ -736,7 +737,7 @@ function DataTableAdvancedFilterWrapper({
736
737
  });
737
738
  setFilters(newFilters);
738
739
  },
739
- rowsPerPageOptions: [10, 25, 50, 100],
740
+ rowsPerPageOptions,
740
741
  className: "p-datatable-sm",
741
742
  paginatorClassName: "paginatorClassName",
742
743
  tableClassName: "tableClassName",
@@ -928,6 +929,7 @@ function DataTableAdvancedFilter({
928
929
  sortOrderInitial = 1,
929
930
  isMultiSelectionMode = true,
930
931
  isLanguagePtBr = true,
932
+ rowsPerPageOptions = [10, 25, 50, 100],
931
933
  state,
932
934
  onStateChange
933
935
  }) {
@@ -948,6 +950,7 @@ function DataTableAdvancedFilter({
948
950
  children: /* @__PURE__ */ jsx10(
949
951
  DataTableAdvancedFilterWrapper,
950
952
  {
953
+ rowsPerPageOptions,
951
954
  queryKey,
952
955
  mutationFn,
953
956
  columns,
@@ -507,6 +507,8 @@ th {
507
507
  }
508
508
 
509
509
  .box-icones-actions-column {
510
+ background: #f0f0f0;
511
+ border-radius: 10rem;
510
512
  width: fit-content;
511
513
  height: fit-content;
512
514
  margin: auto;
@@ -514,7 +516,7 @@ th {
514
516
  align-items: center;
515
517
  justify-content: center;
516
518
  opacity: 0;
517
- gap: 0.25rem;
519
+ /* gap: 0.25rem; */
518
520
  transition: opacity 0.2s ease;
519
521
  }
520
522
 
@@ -538,10 +540,10 @@ th {
538
540
  background-color: #f0f0f0;
539
541
  color: #1c1c1c;
540
542
  cursor: pointer;
541
- padding: 0;
543
+ padding: 4px;
542
544
  border: 0;
543
- width: 1.5rem;
544
- height: 1.5rem;
545
+ /* width: 1.5rem;
546
+ height: 1.5rem; */
545
547
  display: flex;
546
548
  align-items: center;
547
549
  justify-content: center;
@@ -631,3 +633,9 @@ th {
631
633
  .react-tooltip {
632
634
  z-index: 13 !important;
633
635
  }
636
+
637
+ .p-datatable.p-datatable-gridlines
638
+ .p-datatable-scrollable-table
639
+ > .p-datatable-thead {
640
+ top: 0;
641
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charlesgomes/leafcode-shared-lib-react",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "Lib de componentes react",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",