@6thbridge/hexa 0.0.71 → 0.0.73
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.
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +67 -0
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
@@ -84,6 +84,7 @@ interface InputProps extends BaseInnerInputProps, VariantProps<typeof inputConta
|
|
84
84
|
label?: string;
|
85
85
|
showAsterisk?: boolean;
|
86
86
|
description?: React$1.ReactNode;
|
87
|
+
isContentSensitive?: boolean;
|
87
88
|
}
|
88
89
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
89
90
|
|
@@ -645,7 +646,7 @@ interface MultiSelectTriggerProps extends VariantProps<typeof inputContainerVari
|
|
645
646
|
className?: string;
|
646
647
|
onDelete?: (el: MultiSelectDataType) => void;
|
647
648
|
}
|
648
|
-
declare const MultiSelectTrigger: ({ disabled, className, values, placeholder, status, onDelete, }: MultiSelectTriggerProps) => react_jsx_runtime.JSX.Element
|
649
|
+
declare const MultiSelectTrigger: React$1.MemoExoticComponent<({ disabled, className, values, placeholder, status, onDelete, }: MultiSelectTriggerProps) => react_jsx_runtime.JSX.Element>;
|
649
650
|
declare const MultiSelect: ({ options, children, onChange, optionComponent, values: dataValues, hideSearch, modal, placeholder, isLoading, showSelectedValues, error, label, showAsterisk, }: MultiSelectProps) => react_jsx_runtime.JSX.Element;
|
650
651
|
|
651
652
|
declare const CurrencySymbolMap: Record<string, string>;
|
package/dist/index.d.ts
CHANGED
@@ -84,6 +84,7 @@ interface InputProps extends BaseInnerInputProps, VariantProps<typeof inputConta
|
|
84
84
|
label?: string;
|
85
85
|
showAsterisk?: boolean;
|
86
86
|
description?: React$1.ReactNode;
|
87
|
+
isContentSensitive?: boolean;
|
87
88
|
}
|
88
89
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
89
90
|
|
@@ -645,7 +646,7 @@ interface MultiSelectTriggerProps extends VariantProps<typeof inputContainerVari
|
|
645
646
|
className?: string;
|
646
647
|
onDelete?: (el: MultiSelectDataType) => void;
|
647
648
|
}
|
648
|
-
declare const MultiSelectTrigger: ({ disabled, className, values, placeholder, status, onDelete, }: MultiSelectTriggerProps) => react_jsx_runtime.JSX.Element
|
649
|
+
declare const MultiSelectTrigger: React$1.MemoExoticComponent<({ disabled, className, values, placeholder, status, onDelete, }: MultiSelectTriggerProps) => react_jsx_runtime.JSX.Element>;
|
649
650
|
declare const MultiSelect: ({ options, children, onChange, optionComponent, values: dataValues, hideSearch, modal, placeholder, isLoading, showSelectedValues, error, label, showAsterisk, }: MultiSelectProps) => react_jsx_runtime.JSX.Element;
|
650
651
|
|
651
652
|
declare const CurrencySymbolMap: Record<string, string>;
|