@pnkx-lib/ui 1.9.510 → 1.9.512

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 (41) hide show
  1. package/dist/style.css +2 -2
  2. package/es/chunks/{GenericUploadModal-CkhTggnS.js → GenericUploadModal-Dhv5_mhq.js} +637 -575
  3. package/es/chunks/{bundle-mjs-BBFHkixS.js → bundle-mjs-BME7zF0Z.js} +1 -1
  4. package/es/chunks/{index.esm-Ds4t-z37.js → index.esm-Dr5ZHcf7.js} +6 -3
  5. package/es/chunks/{toArray-DzhjhY0s.js → toArray-2LkvUaha.js} +68 -81
  6. package/es/fields/CascaderField.js +1 -1
  7. package/es/fields/Checkbox.js +1 -1
  8. package/es/fields/DatePicker.js +1 -1
  9. package/es/fields/DateRangePicker.js +1 -1
  10. package/es/fields/Input.js +1 -1
  11. package/es/fields/InputRangePicker.js +1 -1
  12. package/es/fields/PnkxField.js +1 -1
  13. package/es/fields/Select.js +1 -1
  14. package/es/fields/SliderRanger.js +1 -1
  15. package/es/fields/SliderSingle.js +1 -1
  16. package/es/fields/Switch.js +1 -1
  17. package/es/fields/Textarea.js +1 -1
  18. package/es/fields/TimePicker.js +1 -1
  19. package/es/fields/TimeRangePicker.js +1 -1
  20. package/es/fields/TinyMCE.js +36 -17
  21. package/es/index.js +1 -1
  22. package/es/ui/Button.js +1 -1
  23. package/es/ui/Cascader.js +1 -1
  24. package/es/ui/CategoryStatus.js +1 -1
  25. package/es/ui/Container.js +1 -1
  26. package/es/ui/Descriptions.js +1 -1
  27. package/es/ui/GenericUploadModal.js +2 -2
  28. package/es/ui/Label.js +1 -1
  29. package/es/ui/Layout.js +33 -30
  30. package/es/ui/Modal.js +1 -1
  31. package/es/ui/SearchFilterForm.js +1 -1
  32. package/es/ui/SelectSingleTable.js +1 -1
  33. package/es/ui/SelectTable.js +1 -1
  34. package/es/ui/Sidebar/index.js +9 -7
  35. package/es/ui/Tabs.js +2 -2
  36. package/es/ui/UploadComponent.js +1 -1
  37. package/es/ui/UploadImage.js +1 -1
  38. package/es/ui/index.js +3145 -3040
  39. package/package.json +1 -1
  40. package/types/components/ui/CustomeBulkActions/ConvertData.d.ts +2 -2
  41. package/types/components/ui/Sidebar/components/UserInfoSection.d.ts +2 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnkx-lib/ui",
3
3
  "private": false,
4
- "version": "1.9.510",
4
+ "version": "1.9.512",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
7
7
  "module": "./es/index.js",
@@ -7,8 +7,8 @@ export interface CustomeBulkActionsProps {
7
7
  isApproved?: boolean;
8
8
  typeBulkaction?: TypeBulkActions;
9
9
  typeService?: TypeCategoryBulkActions;
10
- handleBulkAction: BulkActionHandlers;
11
- handleBulkActionPrice: BulkActionPriceHandlers;
10
+ handleBulkAction?: BulkActionHandlers;
11
+ handleBulkActionPrice?: BulkActionPriceHandlers;
12
12
  }
13
13
  export type TListIcon = {
14
14
  icon: React.ReactNode;
@@ -1,6 +1,8 @@
1
1
  import { default as React } from 'react';
2
+ import { MenuProps } from 'antd';
2
3
  interface UserInfoSectionProps {
3
4
  hoverOpenMenu: boolean;
5
+ customItems?: MenuProps["items"];
4
6
  }
5
7
  export declare const UserInfoSection: React.FC<UserInfoSectionProps>;
6
8
  export {};