react-luminus-components 1.3.149 → 1.3.151

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 (57) hide show
  1. package/dist/.vite/manifest.json +58 -75
  2. package/dist/{FullScreenContainer-DYBgh54H.js → FullScreenContainer-Ahxfk-Xk.js} +1 -1
  3. package/dist/{FullScreenContainer-wS-hROzA.cjs → FullScreenContainer-BWYwSExf.cjs} +1 -1
  4. package/dist/{Loading-DVzR10eX.cjs → Loading-C-Dsxusq.cjs} +1 -1
  5. package/dist/{Loading-fF23C88q.js → Loading-DiC4Np7v.js} +1 -1
  6. package/dist/components/Form/CheckInput/CheckInput.d.ts +1 -1
  7. package/dist/components/Form/CustomSelectInput/CustomSelectInput.d.ts +1 -1
  8. package/dist/components/Form/DropdownPicker/DropdownPicker.d.ts +1 -1
  9. package/dist/components/Form/NumericStepperInput/NumericStepperInput.d.ts +1 -1
  10. package/dist/components/Form/NumericTextInput/NumericTextInput.d.ts +1 -1
  11. package/dist/components/Form/SelectInput/SelectInput.d.ts +1 -1
  12. package/dist/components/Form/TextAreaInput/TextAreaInput.d.ts +1 -1
  13. package/dist/components/Form/TextInput/TextInput.d.ts +1 -1
  14. package/dist/components/HookForm/CheckInput/HookFormCheckInput.d.ts +1 -1
  15. package/dist/components/HookForm/CustomSelectInput/CustomSelectInput.d.ts +1 -1
  16. package/dist/components/HookForm/DropdownPicker/HookFormDropdownPicker.d.ts +1 -1
  17. package/dist/components/HookForm/FileInput/HookFormFileInput.d.ts +1 -1
  18. package/dist/components/HookForm/NumericStepperInput/HookFormNumericStepperInput.d.ts +1 -1
  19. package/dist/components/HookForm/NumericTextInput/HookFormNumericTextInput.d.ts +1 -1
  20. package/dist/components/HookForm/SelectInput/HookFormSelectInput.d.ts +1 -1
  21. package/dist/components/HookForm/TextAreaInput/HookFormTextAreaInput.d.ts +1 -1
  22. package/dist/components/HookForm/TextInput/HookFormTextInput.d.ts +1 -1
  23. package/dist/components/InputContainers/FloatingLabelInput/FloatingLabelInput.d.ts +6 -2
  24. package/dist/components/InputContainers/NoInputContainer/NoInputContainer.d.ts +2 -0
  25. package/dist/components/InputContainers/RowLabelInput/RowLabelInput.d.ts +2 -0
  26. package/dist/contexts.cjs.js +1 -1
  27. package/dist/contexts.es.js +35 -35
  28. package/dist/hooks.cjs.js +1 -1
  29. package/dist/hooks.es.js +9 -9
  30. package/dist/layout.cjs.js +1 -1
  31. package/dist/layout.es.js +36 -37
  32. package/dist/main.cjs.js +2 -2
  33. package/dist/main.es.js +1124 -1124
  34. package/dist/models/prop-types/InputContainerProps.d.ts +1 -0
  35. package/dist/models/prop-types/InputProps/CheckInputProps.d.ts +1 -0
  36. package/dist/models/prop-types/InputProps/DropdownPickerProps.d.ts +1 -0
  37. package/dist/models/prop-types/InputProps/FileInputProps.d.ts +1 -0
  38. package/dist/models/prop-types/InputProps/NumericInputProps.d.ts +1 -0
  39. package/dist/models/prop-types/InputProps/SelectInputProps.d.ts +1 -0
  40. package/dist/models/prop-types/InputProps/TextAreaInputProps.d.ts +1 -0
  41. package/dist/models/prop-types/InputProps/TextInputProps.d.ts +1 -0
  42. package/dist/{nivo-bar.es-GeqH-wP6.js → nivo-bar.es-B2GqU-tV.js} +5362 -5350
  43. package/dist/nivo-bar.es-C8-VCzr1.cjs +279 -0
  44. package/dist/{searchUtils-rKGYKo3G.cjs → searchUtils-BSGjuykO.cjs} +1 -1
  45. package/dist/{searchUtils-C-B9CjZk.js → searchUtils-BhpLdWdC.js} +1 -1
  46. package/dist/{useClipboard-DryTYSx9.cjs → useClipboard-D6esVLqf.cjs} +1 -1
  47. package/dist/{useClipboard-B_wtiBC7.js → useClipboard-DegAIBUd.js} +1 -1
  48. package/dist/{useGetApiData-DRl4eniT.js → useGetApiData-CTK8sM2X.js} +4 -4
  49. package/dist/{useGetApiData-C6zACwiC.cjs → useGetApiData-D4Xo7Loy.cjs} +1 -1
  50. package/dist/{usePermissions-Dn1zXYZT.js → usePermissions-BKn9Opdd.js} +1 -1
  51. package/dist/{usePermissions-DihYt5eO.cjs → usePermissions-DMDGiPC1.cjs} +1 -1
  52. package/dist/utils.cjs.js +1 -1
  53. package/dist/utils.es.js +59 -60
  54. package/package.json +1 -1
  55. package/dist/SimpleTooltip-B20SNN2b.cjs +0 -1
  56. package/dist/SimpleTooltip-BJ1Ja0Rd.js +0 -5
  57. package/dist/nivo-bar.es-CRYH7xvU.cjs +0 -279
@@ -6,6 +6,7 @@ type InputContainerBaseProps = {
6
6
  isForRadioInput?: boolean;
7
7
  isForTextAreaInput?: boolean;
8
8
  inputContainerClassName?: string;
9
+ hint?: string;
9
10
  className?: string;
10
11
  } & {
11
12
  ref?: React.LegacyRef<HTMLDivElement>;
@@ -2,5 +2,6 @@ import { default as InputBaseProps } from './InputBaseProps';
2
2
 
3
3
  type CheckInputProps = InputBaseProps & {
4
4
  type?: 'switch' | 'checkbox';
5
+ hint?: string;
5
6
  };
6
7
  export default CheckInputProps;
@@ -21,5 +21,6 @@ type DropdownPickerProps = InputBaseProps & {
21
21
  icon?: React.ReactNode;
22
22
  displayIdAsName?: boolean;
23
23
  archiveColumn?: string;
24
+ hint?: string;
24
25
  };
25
26
  export default DropdownPickerProps;
@@ -3,5 +3,6 @@ import { default as InputBaseProps } from './InputBaseProps';
3
3
  type FileInputProps = InputBaseProps & {
4
4
  accept: string[];
5
5
  multiple?: boolean;
6
+ hint?: string;
6
7
  };
7
8
  export default FileInputProps;
@@ -10,5 +10,6 @@ type NumericInputProps = InputBaseProps & {
10
10
  noSelectOnFocus?: boolean;
11
11
  min?: number;
12
12
  max?: number;
13
+ hint?: string;
13
14
  };
14
15
  export default NumericInputProps;
@@ -8,5 +8,6 @@ type SelectInputProps = InputBaseProps & {
8
8
  suffixIdToName?: boolean;
9
9
  onSelect?: (item: FormSelectOption | null) => void;
10
10
  appendCurrentSelectionWithName?: string;
11
+ hint?: string;
11
12
  };
12
13
  export default SelectInputProps;
@@ -4,5 +4,6 @@ type TextAreaInputProps = InputBaseProps & {
4
4
  rows?: number;
5
5
  minLength?: number;
6
6
  maxLength?: number;
7
+ hint?: string;
7
8
  };
8
9
  export default TextAreaInputProps;
@@ -8,5 +8,6 @@ type TextInputProps = InputBaseProps & {
8
8
  noSelectOnFocus?: boolean;
9
9
  minLength?: number;
10
10
  maxLength?: number;
11
+ hint?: string;
11
12
  };
12
13
  export default TextInputProps;