@pnkx-lib/ui 1.9.468 → 1.9.469

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.
Files changed (37) hide show
  1. package/dist/style.css +1 -1
  2. package/es/chunks/{AntdIcon-KP2HuB_x.js → AntdIcon--fhhlrN2.js} +55 -3
  3. package/es/chunks/{CloseCircleFilled-4jnV3XJV.js → CloseCircleFilled-CFf9JuKT.js} +1 -1
  4. package/es/chunks/{CloseOutlined-DdLJZQvZ.js → CloseOutlined-Dr0OzVF3.js} +1 -1
  5. package/es/chunks/{DownOutlined-Cl95zPIN.js → DownOutlined-DeqIkZcf.js} +1 -1
  6. package/es/chunks/ExportFile-HZ8zFqRV.js +64 -0
  7. package/es/chunks/GenericUploadModal-ClzfSP57.js +11605 -0
  8. package/es/chunks/{InboxOutlined-W7xl_mLq.js → InboxOutlined-BSPALM_S.js} +1 -1
  9. package/es/chunks/Layout-CRPluSOs.js +598 -0
  10. package/es/chunks/{LoadingOutlined-C5-PNVpb.js → LoadingOutlined-RxqeOpLJ.js} +1 -1
  11. package/es/chunks/PlusOutlined-BTNAWDVD.js +20 -0
  12. package/es/chunks/SearchFilterForm-dvW624w0.js +88 -0
  13. package/es/chunks/createForOfIteratorHelper-DEc7rz3b.js +52 -0
  14. package/es/chunks/{createSuper-CnOp-EUR.js → createSuper-DsoUqJ1E.js} +2 -2
  15. package/es/chunks/{defineProperty-CTLrw71t.js → defineProperty-CnMPreZi.js} +1 -1
  16. package/es/chunks/{index-xdC7i8zM.js → index-BLRvgOFN.js} +1 -1
  17. package/es/chunks/index-ClFSxOLW.js +655 -0
  18. package/es/chunks/{toArray-GtzhUyP3.js → toArray-DA_RJdbk.js} +186 -8
  19. package/es/constants/index.js +1 -0
  20. package/es/fields/DatePicker.js +4 -52
  21. package/es/fields/Select.js +2 -2
  22. package/es/fields/Upload.js +1 -18
  23. package/es/index.js +5 -5
  24. package/es/ui/BreadcrumbHeading.js +1 -1
  25. package/es/ui/ExportFile.js +6 -64
  26. package/es/ui/GenericUploadModal.js +7 -11585
  27. package/es/ui/Heading.js +1 -1
  28. package/es/ui/ImportFile.js +2 -2
  29. package/es/ui/Layout.js +2 -598
  30. package/es/ui/SearchFilterForm.js +4 -88
  31. package/es/ui/Sidebar/index.js +1 -655
  32. package/es/ui/UploadComponent.js +1 -1
  33. package/es/ui/UploadMultiple.js +1 -1
  34. package/es/ui/index.js +131806 -149
  35. package/package.json +1 -1
  36. package/types/components/ui/Table/ActionRowTable/index.d.ts +3 -1
  37. package/types/constants/table.d.ts +2 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnkx-lib/ui",
3
3
  "private": false,
4
- "version": "1.9.468",
4
+ "version": "1.9.469",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
7
7
  "module": "./es/index.js",
@@ -3,8 +3,10 @@ import { TypeActionRowTable } from '../../../../constants/table';
3
3
  export interface ActionRowTableProps {
4
4
  type: TypeActionRowTable;
5
5
  handleClick?: () => void;
6
+ onConfirm?: () => void;
7
+ onSubmit?: () => void;
6
8
  contentTooltip?: React.ReactNode;
7
9
  content?: React.ReactNode;
8
10
  diabled?: boolean;
9
11
  }
10
- export declare const ActionRowTable: ({ type, contentTooltip, handleClick, }: ActionRowTableProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const ActionRowTable: ({ type, contentTooltip, handleClick, onConfirm, onSubmit, }: ActionRowTableProps) => import("react/jsx-runtime").JSX.Element;
@@ -14,7 +14,8 @@ export declare enum TypeActionRowTable {
14
14
  PLAY = "PLAY",
15
15
  PAUSE = "PAUSE",
16
16
  DOWNLOAD = "DOWNLOAD",
17
- VIEW = "VIEW"
17
+ VIEW = "VIEW",
18
+ EDIT_FORM = "EDIT_FORM"
18
19
  }
19
20
  export declare enum TypeBulkActions {
20
21
  BULKACTION = "bulkaction",