@ssa-ui-kit/core 2.16.0 → 2.16.1
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.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11542,6 +11542,7 @@ const TriggerInput = ({
|
|
|
11542
11542
|
disabled,
|
|
11543
11543
|
helperText,
|
|
11544
11544
|
setLastFocusedElement,
|
|
11545
|
+
classNames,
|
|
11545
11546
|
onBlur: handleBlur
|
|
11546
11547
|
} = useDateRangePickerContext();
|
|
11547
11548
|
const formContext = (0,external_react_hook_form_namespaceObject.useFormContext)(); // Using FormProvider from react-hook-form
|
|
@@ -11583,10 +11584,10 @@ const TriggerInput = ({
|
|
|
11583
11584
|
id: inputProps?.inputProps?.id || currentName,
|
|
11584
11585
|
'data-testid': `daterangepicker-input-${datepickerType}`,
|
|
11585
11586
|
autoComplete: 'off',
|
|
11586
|
-
className: /*#__PURE__*/(0,css_namespaceObject.css)( true ? {
|
|
11587
|
+
className: [/*#__PURE__*/(0,css_namespaceObject.css)( true ? {
|
|
11587
11588
|
name: "150iz59",
|
|
11588
11589
|
styles: "border:none!important"
|
|
11589
|
-
} : 0),
|
|
11590
|
+
} : 0), datepickerType === 'from' ? classNames?.trigger?.inputFrom : classNames?.trigger?.inputTo].filter(Boolean).join(' '),
|
|
11590
11591
|
...inputElementProps
|
|
11591
11592
|
},
|
|
11592
11593
|
showStatusIcon: false,
|