hplx-react-elements-dev 1.1.11 → 1.1.12
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/esm/index.js +33 -29
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -17466,35 +17466,39 @@ var DatePicker = function DatePicker(_a) {
|
|
|
17466
17466
|
children: [jsxRuntime.exports.jsxs("div", __assign({
|
|
17467
17467
|
className: "hplxt-relative "
|
|
17468
17468
|
}, {
|
|
17469
|
-
children: [
|
|
17470
|
-
|
|
17471
|
-
|
|
17472
|
-
|
|
17473
|
-
|
|
17474
|
-
|
|
17475
|
-
|
|
17476
|
-
|
|
17477
|
-
|
|
17478
|
-
|
|
17479
|
-
|
|
17480
|
-
|
|
17481
|
-
|
|
17482
|
-
|
|
17483
|
-
|
|
17484
|
-
|
|
17485
|
-
|
|
17486
|
-
|
|
17487
|
-
|
|
17488
|
-
|
|
17489
|
-
|
|
17490
|
-
|
|
17491
|
-
|
|
17492
|
-
|
|
17493
|
-
|
|
17494
|
-
|
|
17495
|
-
|
|
17496
|
-
|
|
17497
|
-
|
|
17469
|
+
children: [jsxRuntime.exports.jsx("div", __assign({
|
|
17470
|
+
onClick: disable ? function () {} : inputClick
|
|
17471
|
+
}, {
|
|
17472
|
+
children: !showPlaceHolderOnly && jsxRuntime.exports.jsx(InputField, {
|
|
17473
|
+
width: width ? width : "8em",
|
|
17474
|
+
label: label,
|
|
17475
|
+
labelColor: labelColor,
|
|
17476
|
+
labelSize: labelSize,
|
|
17477
|
+
height: height,
|
|
17478
|
+
end_icon: end_icon,
|
|
17479
|
+
hint_text_icon: hint_text_icon,
|
|
17480
|
+
prefix: prefix,
|
|
17481
|
+
suffixButton: suffixButton,
|
|
17482
|
+
suffix: suffix,
|
|
17483
|
+
hint_text: hint_text,
|
|
17484
|
+
char_count: char_count,
|
|
17485
|
+
errorMsg: errorMsg,
|
|
17486
|
+
suffixInputProps: suffixInputProps,
|
|
17487
|
+
suffixDropdown: suffixDropdown,
|
|
17488
|
+
isSuffixEditable: isSuffixEditable,
|
|
17489
|
+
suffixPlaceholder: suffixPlaceholder,
|
|
17490
|
+
isborderRequired: isborderRequired,
|
|
17491
|
+
start_icon: start_icon,
|
|
17492
|
+
inputProps: {
|
|
17493
|
+
disabled: disable,
|
|
17494
|
+
placeholder: placeholder ? placeholder : "select date",
|
|
17495
|
+
// onClick: inputClick,
|
|
17496
|
+
onFocus: inputFocus,
|
|
17497
|
+
value: date ? dayjs(date).format("MMM DD, YYYY") : selectDate === null || selectDate === void 0 ? void 0 : selectDate.toString()
|
|
17498
|
+
},
|
|
17499
|
+
fieldColor: fieldColor
|
|
17500
|
+
})
|
|
17501
|
+
})), showPlaceHolderOnly && jsxRuntime.exports.jsx(Button, {
|
|
17498
17502
|
hierarchy: "Secondary-Grey",
|
|
17499
17503
|
size: "sm",
|
|
17500
17504
|
textField: "Date",
|