diginet-core-ui 1.3.73-beta.5 → 1.3.73-beta.6
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/components/form-control/date-range-picker/index.js +4 -2
- package/components/form-control/dropdown/index.js +10 -0
- package/components/form-control/input-base/index.js +503 -483
- package/components/form-control/text-input/index.js +4 -1
- package/components/progress/circular.js +190 -141
- package/components/tab/tab-container.js +2 -2
- package/components/tab/tab-header.js +2 -2
- package/components/tab/tab-panel.js +2 -2
- package/components/tab/tab.js +2 -2
- package/components/tooltip/index.js +62 -51
- package/icons/basic.js +52 -0
- package/package.json +1 -1
- package/styles/general.js +3 -0
|
@@ -1047,8 +1047,10 @@ const DateRangePickerV2 = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(({
|
|
|
1047
1047
|
disabled: disabled,
|
|
1048
1048
|
required: required
|
|
1049
1049
|
}, label), jsx(InputBase, {
|
|
1050
|
-
|
|
1051
|
-
|
|
1050
|
+
inputProps: {
|
|
1051
|
+
placeholder: !readOnly && !disabled ? placeholder : '',
|
|
1052
|
+
...inputProps
|
|
1053
|
+
},
|
|
1052
1054
|
readOnly: true,
|
|
1053
1055
|
ref: ipConRef,
|
|
1054
1056
|
inputRef: ipRef,
|
|
@@ -1573,6 +1573,9 @@ const DropdownFormCSS = (viewType, multiple, disabled, placeholder, DropdownInpu
|
|
|
1573
1573
|
span:empty:before {
|
|
1574
1574
|
content: '${placeholder}';
|
|
1575
1575
|
color: ${sub};
|
|
1576
|
+
height: 100%;
|
|
1577
|
+
${flexRow};
|
|
1578
|
+
${alignCenter};
|
|
1576
1579
|
}
|
|
1577
1580
|
&::placeholder {
|
|
1578
1581
|
color: ${sub};
|
|
@@ -1622,6 +1625,13 @@ const DropdownFormCSS = (viewType, multiple, disabled, placeholder, DropdownInpu
|
|
|
1622
1625
|
transform: rotateX(180deg);
|
|
1623
1626
|
}
|
|
1624
1627
|
}
|
|
1628
|
+
span:empty:before {
|
|
1629
|
+
content: '${placeholder}';
|
|
1630
|
+
color: ${sub};
|
|
1631
|
+
height: 100%;
|
|
1632
|
+
${flexRow};
|
|
1633
|
+
${alignCenter};
|
|
1634
|
+
}
|
|
1625
1635
|
&::placeholder {
|
|
1626
1636
|
color: ${sub};
|
|
1627
1637
|
}
|