react-luminus-components 1.3.237 → 1.3.239

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/README.md +349 -349
  2. package/dist/.vite/manifest.json +36 -36
  3. package/dist/Loading-D4SCMh6h.cjs +1 -0
  4. package/dist/{Loading-CCSVZUhe.js → Loading-_7loOvtU.js} +1 -1
  5. package/dist/components/common/LineChart/LineChart.d.ts +23 -0
  6. package/dist/components/common/LineChart/comps/LineChartTooltip/LineChartTooltip.d.ts +12 -0
  7. package/dist/components/common/LineChart/comps/index.d.ts +1 -0
  8. package/dist/components/common/YearPicker/YearPicker.d.ts +2 -1
  9. package/dist/components/common/index.d.ts +1 -0
  10. package/dist/contexts.cjs.js +1 -1
  11. package/dist/contexts.es.js +81 -81
  12. package/dist/hooks.cjs.js +1 -1
  13. package/dist/hooks.es.js +31 -31
  14. package/dist/layout.cjs.js +1 -1
  15. package/dist/layout.es.js +17 -17
  16. package/dist/main.cjs.js +47 -47
  17. package/dist/main.d.ts +1 -0
  18. package/dist/main.es.js +9183 -9079
  19. package/dist/models/types/common/KeysExtendingType.d.ts +4 -0
  20. package/dist/models/types/common/OnlyAttrExtending.d.ts +6 -0
  21. package/dist/models/types/lineChartTypes/LineChartValidKey.d.ts +2 -0
  22. package/dist/models/types/lineChartTypes/LineChartValidValue.d.ts +2 -0
  23. package/dist/{ShortcutLinksContext-BssuYypF.js → nivo-bar.es-BeALe7Gh.js} +16193 -14997
  24. package/dist/nivo-bar.es-BebGU-zz.cjs +279 -0
  25. package/dist/style.css +1 -1
  26. package/dist/useGetApiData-COPBCf8x.cjs +1 -0
  27. package/dist/{useGetApiData-BrxYGyDd.js → useGetApiData-DrkjC5UR.js} +8 -8
  28. package/dist/{usePermissions-Drdy5QyP.js → usePermissions-Blbd53ol.js} +1 -1
  29. package/dist/usePermissions-Daf3EkaR.cjs +1 -0
  30. package/dist/utils.cjs.js +1 -1
  31. package/dist/utils.es.js +26 -26
  32. package/dist/variables.scss +165 -165
  33. package/package.json +121 -120
  34. package/dist/Loading-DL2EkP3d.cjs +0 -1
  35. package/dist/ShortcutLinksContext-DfBnlBCo.cjs +0 -279
  36. package/dist/useGetApiData-Bf_FxATb.cjs +0 -1
  37. package/dist/usePermissions-Bbpwz3_4.cjs +0 -1
@@ -0,0 +1,4 @@
1
+ type KeysExtendingType<FromObject, Extending> = {
2
+ [Property in keyof FromObject]: FromObject[Property] extends Extending ? Property : never;
3
+ }[keyof FromObject];
4
+ export default KeysExtendingType;
@@ -0,0 +1,6 @@
1
+ import { default as KeysExtendingType } from './KeysExtendingType';
2
+
3
+ type OnlyAttrExtending<Obj, Extending> = {
4
+ [Property in KeysExtendingType<Obj, Extending>]: Obj[Property];
5
+ };
6
+ export default OnlyAttrExtending;
@@ -0,0 +1,2 @@
1
+ type LineChartValidKey = number | string;
2
+ export default LineChartValidKey;
@@ -0,0 +1,2 @@
1
+ type LineChartValidValue = number | null | undefined;
2
+ export default LineChartValidValue;