react-luminus-components 1.3.210 → 1.3.212

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 (43) hide show
  1. package/README.md +349 -349
  2. package/dist/.vite/manifest.json +52 -52
  3. package/dist/Loading-BHSN3kz4.cjs +1 -0
  4. package/dist/{Loading-DRiPKKWR.js → Loading-DuLgnQ2I.js} +1 -1
  5. package/dist/components/common/ReportsIndexPage/comps/ReportIndexItem/ReportIndexItem.d.ts +10 -0
  6. package/dist/components/common/ReportsIndexPage/comps/ReportIndexItem/comps/ReportsCollapseVersionList/ReportsCollapseVersionList.d.ts +9 -0
  7. package/dist/components/common/ReportsIndexPage/comps/ReportIndexItem/comps/ReportsCollapseVersionList/comps/ReportCollapseVersionItem/ReportCollapseVersionItem.d.ts +9 -0
  8. package/dist/components/common/ReportsIndexPage/comps/ReportIndexItem/comps/ReportsCollapseVersionList/comps/index.d.ts +1 -0
  9. package/dist/components/common/ReportsIndexPage/comps/ReportIndexItem/comps/index.d.ts +1 -0
  10. package/dist/components/common/ReportsIndexPage/comps/index.d.ts +1 -0
  11. package/dist/contexts.cjs.js +1 -1
  12. package/dist/contexts.es.js +63 -63
  13. package/dist/hooks.cjs.js +1 -1
  14. package/dist/hooks.es.js +42 -42
  15. package/dist/layout.cjs.js +1 -1
  16. package/dist/layout.es.js +19 -19
  17. package/dist/main.cjs.js +50 -50
  18. package/dist/main.es.js +9584 -9550
  19. package/dist/models/api/reports/ReportDto.d.ts +1 -0
  20. package/dist/models/texts/ReportsTexts.d.ts +1 -0
  21. package/dist/models/types/DropdownPickerOption.d.ts +1 -1
  22. package/dist/models/types/FormSelectOption.d.ts +2 -2
  23. package/dist/{ShortcutLinksContext-BHCuY1fD.js → nivo-bar.es-DZ4VU2jA.js} +10510 -10509
  24. package/dist/{ShortcutLinksContext-C3xQ0UIf.cjs → nivo-bar.es-jWuvqw9Y.cjs} +23 -23
  25. package/dist/{searchUtils-BDoz0wpS.js → searchUtils-BsCd2hJS.js} +1 -1
  26. package/dist/searchUtils-DzNl1kFt.cjs +1 -0
  27. package/dist/style.css +1 -1
  28. package/dist/useGetApiData-Cmn4D8m2.cjs +1 -0
  29. package/dist/{useGetApiData-C56gveI2.js → useGetApiData-D9yWD6tn.js} +3 -3
  30. package/dist/usePermissions-D-byaRUU.cjs +1 -0
  31. package/dist/usePermissions-gjBM7vmg.js +21 -0
  32. package/dist/{useRenderDraggableInPortal-CTZWq9q6.js → useRenderDraggableInPortal-B7wUirq_.js} +1 -1
  33. package/dist/useRenderDraggableInPortal-D1OghDQ8.cjs +1 -0
  34. package/dist/utils.cjs.js +1 -1
  35. package/dist/utils.es.js +17 -17
  36. package/dist/variables.scss +165 -165
  37. package/package.json +120 -120
  38. package/dist/Loading-BGPe1Bil.cjs +0 -1
  39. package/dist/searchUtils-14ZWm4yE.cjs +0 -1
  40. package/dist/useGetApiData-D6GvY81I.cjs +0 -1
  41. package/dist/usePermissions-C_PZN6KX.js +0 -21
  42. package/dist/usePermissions-u8n6e3vl.cjs +0 -1
  43. package/dist/useRenderDraggableInPortal-CmHa0N_o.cjs +0 -1
@@ -5,4 +5,5 @@ export default interface ReportDto {
5
5
  name: string;
6
6
  groupId: number;
7
7
  versions: Array<ReportVersionDto>;
8
+ versionsCustom: Array<ReportVersionDto>;
8
9
  }
@@ -8,6 +8,7 @@ type ReportsTexts = {
8
8
  versionSelectSystem: string;
9
9
  versionSelectYour: string;
10
10
  versionSelectSharedWithYou: string;
11
+ versionSelectUser: string;
11
12
  save: string;
12
13
  saveAs: string;
13
14
  revertChanges: string;
@@ -1,6 +1,6 @@
1
1
  import { default as FormSelectOption } from './FormSelectOption';
2
2
 
3
- type DropdownPickerOption = FormSelectOption & {
3
+ type DropdownPickerOption<IdType = number | string | null> = FormSelectOption<IdType> & {
4
4
  additionalColumns?: {
5
5
  [key: string]: string | number | boolean | null | undefined;
6
6
  };
@@ -1,5 +1,5 @@
1
- type FormSelectOption = {
2
- id: number | string | null;
1
+ type FormSelectOption<IdType = number | string | null> = {
2
+ id: IdType;
3
3
  name: string | null;
4
4
  };
5
5
  export default FormSelectOption;