@emeraldemperaur/vector-sigma 1.4.8 → 1.4.10

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 (28) hide show
  1. package/lib/index.cjs +183 -169
  2. package/lib/index.esm.js +183 -169
  3. package/lib/types/components/avatar/avatar.d.ts +5 -5
  4. package/lib/types/components/button/button.d.ts +6 -6
  5. package/lib/types/components/checkbox/checkbox.d.ts +5 -5
  6. package/lib/types/components/conditional/conditional.d.ts +5 -5
  7. package/lib/types/components/datepicker/datepicker.d.ts +5 -5
  8. package/lib/types/components/daterangepicker/daterangepicker.d.ts +9 -9
  9. package/lib/types/components/datetimepicker/datetimepicker.d.ts +8 -8
  10. package/lib/types/components/dropdown/dropdown.d.ts +8 -8
  11. package/lib/types/components/file/file.d.ts +9 -9
  12. package/lib/types/components/file/filemultiple.d.ts +9 -9
  13. package/lib/types/components/image/image.d.ts +3 -3
  14. package/lib/types/components/input/input.d.ts +9 -9
  15. package/lib/types/components/input/passwordInput.d.ts +1 -1
  16. package/lib/types/components/input/phoneInput.d.ts +1 -1
  17. package/lib/types/components/input/uuidInput.d.ts +9 -9
  18. package/lib/types/components/input/xCreditCardInput.d.ts +1 -1
  19. package/lib/types/components/inputcurrency/inputcurrency.d.ts +9 -9
  20. package/lib/types/components/inputcurrency/stockInput.d.ts +10 -10
  21. package/lib/types/components/radio/radio.d.ts +9 -9
  22. package/lib/types/components/select/select.d.ts +6 -6
  23. package/lib/types/components/selectmultiple/selectmultiple.d.ts +10 -10
  24. package/lib/types/components/slider/range.d.ts +6 -6
  25. package/lib/types/components/slider/slider.d.ts +8 -8
  26. package/lib/types/components/toggle/toggle.d.ts +8 -8
  27. package/lib/types/components/xtitle/xtitle.d.ts +5 -1
  28. package/package.json +1 -1
@@ -7,17 +7,17 @@ export interface AvatarProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: any[];
10
+ defaultvalue?: any[];
11
11
  value?: any[];
12
12
  newRow?: boolean;
13
13
  isEdit?: boolean;
14
14
  placeholder?: string;
15
15
  readonly?: boolean;
16
- isHinted?: boolean;
17
- hintText?: string;
18
- hintUrl?: string;
16
+ ishinted?: boolean;
17
+ hinttext?: string;
18
+ hinturl?: string;
19
19
  shape?: AvatarShape;
20
- errorText?: ReactNode | string | null;
20
+ errortext?: ReactNode | string | null;
21
21
  size?: number;
22
22
  className?: string;
23
23
  style?: React.CSSProperties;
@@ -8,15 +8,15 @@ export interface DesignButtonProps extends ButtonProps {
8
8
  inputlabel?: string;
9
9
  icon?: React.ReactNode;
10
10
  width: number;
11
- defaultValue?: string;
11
+ defaultvalue?: string;
12
12
  value?: string;
13
13
  newRow?: boolean;
14
14
  errorText?: ReactNode | string | null;
15
15
  placeholder?: string;
16
- readOnly?: boolean;
17
- isHinted?: boolean;
18
- hintText?: string;
19
- hintUrl?: string;
16
+ readonly?: boolean;
17
+ ishinted?: boolean;
18
+ hinttext?: string;
19
+ hinturl?: string;
20
20
  onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
21
21
  }
22
- export declare const ButtonInput: ({ inputtype, type, inputlabel, alias, readOnly, style, width, children, ...props }: DesignButtonProps) => React.JSX.Element;
22
+ export declare const ButtonInput: ({ inputtype, type, inputlabel, alias, readonly, style, width, children, ...props }: DesignButtonProps) => React.JSX.Element;
@@ -8,17 +8,17 @@ export interface CheckboxGroup {
8
8
  inputlabel?: string;
9
9
  icon?: React.ReactNode;
10
10
  width: number;
11
- defaultValue?: any[];
11
+ defaultvalue?: any[];
12
12
  value?: any[];
13
13
  newRow?: boolean;
14
14
  isEdit?: boolean;
15
15
  placeholder?: string;
16
16
  readonly?: boolean;
17
- isHinted?: boolean;
18
- hintText?: string;
19
- hintUrl?: string;
17
+ ishinted?: boolean;
18
+ hinttext?: string;
19
+ hinturl?: string;
20
20
  inputoptions: InputOption[];
21
- errorText?: ReactNode | string | null;
21
+ errortext?: ReactNode | string | null;
22
22
  direction?: 'row' | 'column';
23
23
  columns?: string;
24
24
  className?: string;
@@ -10,20 +10,20 @@ export interface ConditionalProps {
10
10
  inputlabel?: string;
11
11
  icon?: React.ReactNode;
12
12
  width: number;
13
- defaultValue?: any[] | any;
13
+ defaultvalue?: any[] | any;
14
14
  value?: any | any[];
15
15
  newRow?: boolean;
16
16
  isEdit?: boolean;
17
17
  placeholder?: string;
18
18
  readonly?: boolean;
19
- isHinted?: boolean;
20
- hintText?: string;
21
- hintUrl?: string;
19
+ ishinted?: boolean;
20
+ hinttext?: string;
21
+ hinturl?: string;
22
22
  inputtype?: ToggleTriggerDesign & {} | CheckboxTriggerDesign & {} | SelectTriggerDesign & {};
23
23
  toggledinputtype?: ToggleTriggerDesign & {} | CheckboxTriggerDesign & {} | SelectTriggerDesign & {};
24
24
  triggerValue?: any;
25
25
  inputoptions?: InputOption[];
26
- errorText?: ReactNode | string | null;
26
+ errortext?: ReactNode | string | null;
27
27
  children: React.ReactNode;
28
28
  className?: string;
29
29
  style?: React.CSSProperties;
@@ -7,17 +7,17 @@ export interface DatePickerProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
12
  newRow?: boolean;
13
13
  placeholder?: string;
14
14
  readonly?: boolean;
15
- isHinted?: boolean;
16
- hintText?: string;
17
- hintUrl?: string;
15
+ ishinted?: boolean;
16
+ hinttext?: string;
17
+ hinturl?: string;
18
18
  minvalue?: Date | string;
19
19
  maxvalue?: Date | string;
20
- errorText?: ReactNode | string | null;
20
+ errortext?: ReactNode | string | null;
21
21
  className?: string;
22
22
  style?: React.CSSProperties;
23
23
  }
@@ -7,18 +7,18 @@ export interface DateRangePickerProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
- newRow?: boolean;
12
+ newrow?: boolean;
13
13
  placeholder?: string;
14
- readOnly?: boolean;
15
- isHinted?: boolean;
16
- hintText?: string;
17
- hintUrl?: string;
14
+ readonly?: boolean;
15
+ ishinted?: boolean;
16
+ hinttext?: string;
17
+ hinturl?: string;
18
18
  minvalue?: Date | string;
19
19
  maxvalue?: Date | string;
20
- errorText?: ReactNode | string | null;
21
- className?: string;
20
+ errortext?: ReactNode | string | null;
21
+ classname?: string;
22
22
  style?: React.CSSProperties;
23
23
  }
24
- export declare const DateRangePicker: ({ inputtype, alias, readOnly, width, inputlabel, placeholder, value, minvalue, maxvalue, className, style, ...props }: DateRangePickerProps) => React.JSX.Element;
24
+ export declare const DateRangePicker: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, minvalue, maxvalue, classname, style, ...props }: DateRangePickerProps) => React.JSX.Element;
@@ -7,18 +7,18 @@ export interface DateTimePickerProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
- newRow?: boolean;
12
+ newrow?: boolean;
13
13
  placeholder?: string;
14
14
  readonly?: boolean;
15
- isHinted?: boolean;
16
- hintText?: string;
17
- hintUrl?: string;
15
+ ishinted?: boolean;
16
+ hinttext?: string;
17
+ hinturl?: string;
18
18
  minvalue?: Date | string;
19
19
  maxvalue?: Date | string;
20
- errorText?: ReactNode | string | null;
21
- className?: string;
20
+ errortext?: ReactNode | string | null;
21
+ classname?: string;
22
22
  style?: React.CSSProperties;
23
23
  }
24
- export declare const DateTimePicker: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, minvalue, maxvalue, className, style, ...props }: DateTimePickerProps) => React.JSX.Element;
24
+ export declare const DateTimePicker: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, minvalue, maxvalue, classname, style, ...props }: DateTimePickerProps) => React.JSX.Element;
@@ -7,16 +7,16 @@ export interface xDropDownProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
- newRow?: boolean;
12
+ newrow?: boolean;
13
13
  placeholder?: string;
14
14
  readonly?: boolean;
15
- isHinted?: boolean;
16
- hintText?: string;
17
- hintUrl?: string;
15
+ ishinted?: boolean;
16
+ hinttext?: string;
17
+ hinturl?: string;
18
18
  onValueChange?: (value: string) => void;
19
- errorText?: ReactNode | string | null;
19
+ errortext?: ReactNode | string | null;
20
20
  inputoptions: {
21
21
  optionid: number | string;
22
22
  text: string;
@@ -26,7 +26,7 @@ export interface xDropDownProps {
26
26
  note?: string;
27
27
  optionurl?: string;
28
28
  }[];
29
- className?: string;
29
+ classname?: string;
30
30
  style?: React.CSSProperties;
31
31
  }
32
- export declare const Dropdown: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, inputoptions, style, newRow, isHinted, hintText, hintUrl, defaultValue, errorText, ...props }: xDropDownProps) => React.JSX.Element;
32
+ export declare const Dropdown: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, inputoptions, style, newrow, ishinted, hinttext, hinturl, defaultvalue, errortext, ...props }: xDropDownProps) => React.JSX.Element;
@@ -7,18 +7,18 @@ export interface FileInputProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: any;
10
+ defaultvalue?: any;
11
11
  value?: any;
12
- newRow?: boolean;
13
- isEdit?: boolean;
12
+ newrow?: boolean;
13
+ isedit?: boolean;
14
14
  placeholder?: string;
15
15
  readonly?: boolean;
16
- isHinted?: boolean;
17
- hintText?: string;
18
- hintUrl?: string;
16
+ ishinted?: boolean;
17
+ hinttext?: string;
18
+ hinturl?: string;
19
19
  preview?: boolean;
20
- className?: string;
21
- errorText?: ReactNode | string | null;
20
+ classname?: string;
21
+ errortext?: ReactNode | string | null;
22
22
  style?: React.CSSProperties;
23
23
  }
24
- export declare const File: ({ inputtype, alias, readonly, width, inputlabel, placeholder, preview, className, style, ...props }: FileInputProps) => React.JSX.Element;
24
+ export declare const File: ({ inputtype, alias, readonly, width, inputlabel, placeholder, preview, classname, style, ...props }: FileInputProps) => React.JSX.Element;
@@ -7,18 +7,18 @@ export interface FileMultipleInputProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: any;
10
+ defaultvalue?: any;
11
11
  value?: any;
12
- newRow?: boolean;
13
- isEdit?: boolean;
12
+ newrow?: boolean;
13
+ isedit?: boolean;
14
14
  placeholder?: string;
15
15
  readonly?: boolean;
16
- isHinted?: boolean;
17
- hintText?: string;
18
- hintUrl?: string;
16
+ ishinted?: boolean;
17
+ hinttext?: string;
18
+ hinturl?: string;
19
19
  preview?: boolean;
20
- errorText?: ReactNode | string | null;
21
- className?: string;
20
+ errortext?: ReactNode | string | null;
21
+ classname?: string;
22
22
  style?: React.CSSProperties;
23
23
  }
24
- export declare const FileMultiple: ({ inputtype, alias, readonly, width, inputlabel, placeholder, preview, className, style, ...props }: FileMultipleInputProps) => React.JSX.Element;
24
+ export declare const FileMultiple: ({ inputtype, alias, readonly, width, inputlabel, placeholder, preview, classname, style, ...props }: FileMultipleInputProps) => React.JSX.Element;
@@ -7,11 +7,11 @@ export interface ImageDisplayProps {
7
7
  alt?: string;
8
8
  design?: ImageDesign & {};
9
9
  layout?: ImageLayout & {};
10
- aspectRatio?: number;
10
+ aspectratio?: number;
11
11
  height?: string | number;
12
12
  width?: string | number;
13
- className?: string;
13
+ classname?: string;
14
14
  style?: React.CSSProperties;
15
15
  onClick?: () => void;
16
16
  }
17
- export declare const ImageOutput: ({ id, src, alt, design, layout, aspectRatio, height, width, className, style, onClick, }: ImageDisplayProps) => React.JSX.Element;
17
+ export declare const ImageOutput: ({ id, src, alt, design, layout, aspectratio, height, width, classname, style, onClick, }: ImageDisplayProps) => React.JSX.Element;
@@ -8,20 +8,20 @@ export type xInputFieldProps = React.ComponentProps<typeof TextField.Root> & {
8
8
  inputtype?: InputType & {};
9
9
  inputlabel?: string;
10
10
  width: number;
11
- newRow?: boolean;
11
+ newrow?: boolean;
12
12
  placeholder?: string;
13
13
  readonly?: boolean;
14
- isHinted?: boolean;
15
- hintText?: string;
16
- hintUrl?: string;
14
+ ishinted?: boolean;
15
+ hinttext?: string;
16
+ hinturl?: string;
17
17
  icon?: React.ReactNode;
18
- defaultValue?: string;
18
+ defaultvalue?: string;
19
19
  value?: string;
20
- errorText?: ReactNode | string | null;
21
- className?: string;
20
+ errortext?: ReactNode | string | null;
21
+ classname?: string;
22
22
  style?: React.CSSProperties;
23
- inputVariant?: InputDesign & {};
23
+ inputvariant?: InputDesign & {};
24
24
  delimiter?: string;
25
25
  format?: number[];
26
26
  };
27
- export declare const Input: ({ alias, inputtype, width, inputlabel, readonly, placeholder, className, size, style, inputVariant, ...props }: xInputFieldProps) => React.JSX.Element;
27
+ export declare const Input: ({ alias, inputtype, width, inputlabel, readonly, placeholder, className, size, style, inputvariant, ...props }: xInputFieldProps) => React.JSX.Element;
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { xInputFieldProps } from "./input";
3
3
  import '../../styles/main.scss';
4
- export declare const PasswordInput: ({ alias, inputlabel, width, readonly, placeholder, inputVariant, size, className, ...props }: xInputFieldProps) => React.JSX.Element;
4
+ export declare const PasswordInput: ({ alias, inputlabel, width, readonly, placeholder, inputvariant, size, className, ...props }: xInputFieldProps) => React.JSX.Element;
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { xInputFieldProps } from "./input";
3
3
  import '../../styles/main.scss';
4
- export declare const PhoneInput: ({ alias, inputlabel, width, placeholder, readonly, inputVariant, size, className, ...props }: xInputFieldProps) => React.JSX.Element;
4
+ export declare const PhoneInput: ({ alias, inputlabel, width, placeholder, readonly, inputvariant, size, className, ...props }: xInputFieldProps) => React.JSX.Element;
@@ -6,18 +6,18 @@ type startsWithUuid = `uuid${string}`;
6
6
  type UUIDInputProps = Omit<React.ComponentProps<typeof TextField.Root>, 'type' | 'onChange' | 'value' | 'defaultValue'> & {
7
7
  alias: string;
8
8
  type: startsWithUuid;
9
- inputLabel?: string;
9
+ inputlabel?: string;
10
10
  width: number;
11
- newRow?: boolean;
11
+ newrow?: boolean;
12
12
  delimiter?: string;
13
13
  format?: number[];
14
- isHinted?: boolean;
15
- hintText?: string;
16
- hintUrl?: string;
14
+ ishinted?: boolean;
15
+ hinttext?: string;
16
+ hinturl?: string;
17
17
  placeholder?: string;
18
- errorText?: ReactNode | string | null;
19
- className?: string;
20
- inputVariant?: InputDesign & {};
18
+ errortext?: ReactNode | string | null;
19
+ classname?: string;
20
+ inputvariant?: InputDesign & {};
21
21
  };
22
- export declare const UUIDInput: ({ alias, type, inputLabel, width, delimiter, format, placeholder, readOnly, inputVariant, size, className, ...props }: UUIDInputProps) => React.JSX.Element;
22
+ export declare const UUIDInput: ({ alias, type, inputlabel, width, delimiter, format, placeholder, readOnly, inputvariant, size, className, ...props }: UUIDInputProps) => React.JSX.Element;
23
23
  export {};
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { xInputFieldProps } from "./input";
3
3
  import '../../styles/main.scss';
4
- export declare const CreditCardInput: ({ alias, inputlabel, width, placeholder, readonly, inputVariant, className, ...props }: xInputFieldProps) => React.JSX.Element;
4
+ export declare const CreditCardInput: ({ alias, inputlabel, width, placeholder, readonly, inputvariant, classname, ...props }: xInputFieldProps) => React.JSX.Element;
@@ -8,15 +8,15 @@ type CurrencyInputProps = {
8
8
  inputlabel?: string;
9
9
  width: number;
10
10
  newRow?: boolean;
11
- defaultValue?: string;
11
+ defaultvalue?: string;
12
12
  placeholder?: string;
13
- readOnly?: boolean;
14
- isHinted?: boolean;
15
- hintText?: string;
16
- errorText?: ReactNode | string | null;
17
- hintUrl?: string;
18
- inputVariant?: InputDesign & {};
19
- className?: string;
13
+ readonly?: boolean;
14
+ ishinted?: boolean;
15
+ hinttext?: string;
16
+ errortext?: ReactNode | string | null;
17
+ hinturl?: string;
18
+ inputvariant?: InputDesign & {};
19
+ classname?: string;
20
20
  };
21
- export declare const CurrencyInput: ({ alias, inputtype, inputlabel, width, defaultValue, placeholder, readOnly, inputVariant, className, ...props }: CurrencyInputProps) => React.JSX.Element;
21
+ export declare const CurrencyInput: ({ alias, inputtype, inputlabel, width, defaultvalue, placeholder, readonly, inputvariant, classname, ...props }: CurrencyInputProps) => React.JSX.Element;
22
22
  export {};
@@ -5,16 +5,16 @@ type StockInputProps = {
5
5
  alias: string;
6
6
  inputlabel?: string;
7
7
  width: number;
8
- defaultValue: string;
9
- newRow?: boolean;
8
+ defaultvalue: string;
9
+ newrow?: boolean;
10
10
  placeholder?: string;
11
- readOnly?: boolean;
12
- isHinted?: boolean;
13
- hintText?: string;
14
- hintUrl?: string;
15
- errorText?: ReactNode | string | null;
16
- inputVariant?: InputDesign & {};
17
- className?: string;
11
+ readonly?: boolean;
12
+ ishinted?: boolean;
13
+ hinttext?: string;
14
+ hinturl?: string;
15
+ errortext?: ReactNode | string | null;
16
+ inputvariant?: InputDesign & {};
17
+ classname?: string;
18
18
  };
19
- export declare const StockInput: ({ alias, inputlabel, width, defaultValue, placeholder, readOnly, inputVariant, className, ...props }: StockInputProps) => React.JSX.Element;
19
+ export declare const StockInput: ({ alias, inputlabel, width, defaultvalue, placeholder, readonly, inputvariant, classname, ...props }: StockInputProps) => React.JSX.Element;
20
20
  export {};
@@ -8,21 +8,21 @@ interface RadioGroupProps {
8
8
  inputlabel?: string;
9
9
  icon?: React.ReactNode;
10
10
  width: number;
11
- defaultValue?: any[];
11
+ defaultvalue?: any[];
12
12
  value?: any[];
13
- newRow?: boolean;
14
- isEdit?: boolean;
13
+ newrow?: boolean;
14
+ isedit?: boolean;
15
15
  placeholder?: string;
16
- readOnly?: boolean;
17
- isHinted?: boolean;
18
- hintText?: string;
19
- hintUrl?: string;
16
+ readonly?: boolean;
17
+ ishinted?: boolean;
18
+ hinttext?: string;
19
+ hinturl?: string;
20
20
  inputoptions: InputOption[];
21
21
  direction?: 'row' | 'column';
22
22
  columns?: string;
23
- className?: string;
23
+ classname?: string;
24
24
  errorText?: ReactNode | string | null;
25
25
  style?: React.CSSProperties;
26
26
  }
27
- export declare const RadioGroupInput: ({ inputtype, alias, readOnly, width, inputlabel, placeholder, style, inputoptions, direction, columns, className, ...props }: RadioGroupProps) => React.JSX.Element;
27
+ export declare const RadioGroupInput: ({ inputtype, alias, readonly, width, inputlabel, placeholder, style, inputoptions, direction, columns, classname, ...props }: RadioGroupProps) => React.JSX.Element;
28
28
  export {};
@@ -7,16 +7,16 @@ export interface SelectProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
12
  newRow?: boolean;
13
13
  placeholder?: string;
14
14
  readonly?: boolean;
15
- isHinted?: boolean;
16
- hintText?: string;
17
- hintUrl?: string;
15
+ ishinted?: boolean;
16
+ hinttext?: string;
17
+ hinturl?: string;
18
18
  onValueChange?: (value: string) => void;
19
- errorText?: ReactNode | string | null;
19
+ errortext?: ReactNode | string | null;
20
20
  inputoptions: {
21
21
  optionid: number | string;
22
22
  text: string;
@@ -29,4 +29,4 @@ export interface SelectProps {
29
29
  className?: string;
30
30
  style?: React.CSSProperties;
31
31
  }
32
- export declare const OptionSelect: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, inputoptions, style, newRow, isHinted, hintText, hintUrl, defaultValue, errorText, ...props }: SelectProps) => React.JSX.Element;
32
+ export declare const OptionSelect: ({ inputtype, alias, readonly, width, inputlabel, placeholder, value, inputoptions, style, newRow, ishinted, hinttext, hinturl, defaultvalue, errortext, ...props }: SelectProps) => React.JSX.Element;
@@ -8,19 +8,19 @@ interface MultipleSelectProps {
8
8
  inputlabel?: string;
9
9
  icon?: React.ReactNode;
10
10
  width: number;
11
- defaultValue?: any[];
11
+ defaultvalue?: any[];
12
12
  value?: any[];
13
- newRow?: boolean;
14
- isEdit?: boolean;
13
+ newrow?: boolean;
14
+ isedit?: boolean;
15
15
  placeholder?: string;
16
- readOnly?: boolean;
17
- isHinted?: boolean;
18
- hintText?: string;
19
- hintUrl?: string;
16
+ readonly?: boolean;
17
+ ishinted?: boolean;
18
+ hinttext?: string;
19
+ hinturl?: string;
20
20
  inputoptions: InputOption[];
21
- errorText?: ReactNode | string | null;
22
- className?: string;
21
+ errortext?: ReactNode | string | null;
22
+ classname?: string;
23
23
  style?: React.CSSProperties;
24
24
  }
25
- export declare const MultipleSelect: ({ inputtype, alias, readOnly, width, inputlabel, placeholder, style, inputoptions, className, ...props }: MultipleSelectProps) => React.JSX.Element;
25
+ export declare const MultipleSelect: ({ inputtype, alias, readonly, width, inputlabel, placeholder, style, inputoptions, classname, ...props }: MultipleSelectProps) => React.JSX.Element;
26
26
  export {};
@@ -7,15 +7,15 @@ interface RangeProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
- newRow?: boolean;
13
- errorText?: ReactNode | string | null;
12
+ newrow?: boolean;
13
+ errortext?: ReactNode | string | null;
14
14
  placeholder?: string;
15
15
  readonly?: boolean;
16
- isHinted?: boolean;
17
- hintText?: string;
18
- hintUrl?: string;
16
+ ishinted?: boolean;
17
+ hinttext?: string;
18
+ hinturl?: string;
19
19
  minvalue?: number;
20
20
  maxvalue?: number;
21
21
  stepvalue?: number;
@@ -7,20 +7,20 @@ interface SliderProps {
7
7
  inputlabel?: string;
8
8
  icon?: React.ReactNode;
9
9
  width: number;
10
- defaultValue?: string;
10
+ defaultvalue?: string;
11
11
  value?: string;
12
- newRow?: boolean;
13
- errorText?: ReactNode | string | null;
12
+ newrow?: boolean;
13
+ errortext?: ReactNode | string | null;
14
14
  placeholder?: string;
15
- readOnly?: boolean;
16
- isHinted?: boolean;
17
- hintText?: string;
18
- hintUrl?: string;
15
+ readonly?: boolean;
16
+ ishinted?: boolean;
17
+ hinttext?: string;
18
+ hinturl?: string;
19
19
  minvalue?: number;
20
20
  maxvalue?: number;
21
21
  stepvalue?: number;
22
22
  className?: string;
23
23
  style?: React.CSSProperties;
24
24
  }
25
- export declare const SliderInput: ({ inputtype, alias, readOnly, width, inputlabel, placeholder, minvalue, maxvalue, stepvalue, className, style, ...props }: SliderProps) => React.JSX.Element;
25
+ export declare const SliderInput: ({ inputtype, alias, readonly, width, inputlabel, placeholder, minvalue, maxvalue, stepvalue, className, style, ...props }: SliderProps) => React.JSX.Element;
26
26
  export {};
@@ -5,15 +5,15 @@ export type ToggleDesign = 'toggle' | 'toggle-material' | 'toggle-outline' | 'to
5
5
  interface ToggleProps extends ButtonProps {
6
6
  inputtype?: ToggleDesign;
7
7
  alias: string;
8
- inputLabel?: string;
8
+ inputlabel?: string;
9
9
  width: number;
10
- newRow?: boolean;
11
- readOnly?: boolean;
12
- isHinted?: boolean;
13
- hintText?: string;
14
- hintUrl?: string;
10
+ newrow?: boolean;
11
+ readonly?: boolean;
12
+ ishinted?: boolean;
13
+ hinttext?: string;
14
+ hinturl?: string;
15
15
  icon?: string;
16
- errorText?: ReactNode | string | null;
16
+ errortext?: ReactNode | string | null;
17
17
  }
18
- export declare const Toggle: ({ inputtype, alias, readOnly, width, inputLabel, style, children, newRow, isHinted, hintText, hintUrl, icon, ...props }: ToggleProps) => React.JSX.Element;
18
+ export declare const Toggle: ({ inputtype, alias, readonly, width, inputlabel, style, children, newrow, ishinted, hinttext, hinturl, icon, ...props }: ToggleProps) => React.JSX.Element;
19
19
  export {};
@@ -10,6 +10,10 @@ interface TitleProps {
10
10
  align?: "left" | "center" | "right";
11
11
  withSeparator?: boolean;
12
12
  className?: string;
13
+ backgroundcolor?: string;
14
+ icon?: React.ReactNode;
15
+ titleColor?: string;
16
+ subtitleColor?: string;
13
17
  }
14
- export declare const SectionTitle: ({ title, width, newRow, size, subsize, subtitle, align, withSeparator, className }: TitleProps) => React.JSX.Element;
18
+ export declare const SectionTitle: ({ title, width, newRow, size, subsize, subtitle, align, withSeparator, className, backgroundcolor, icon, titleColor, subtitleColor }: TitleProps) => React.JSX.Element;
15
19
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeraldemperaur/vector-sigma",
3
- "version": "1.4.8",
3
+ "version": "1.4.10",
4
4
  "description": "Dynamic Form Orchestrator: NPM Package",
5
5
  "repository": {
6
6
  "type": "git",