@sunggang/ui-lib 0.1.28 → 0.1.29
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/index.esm.css +0 -10
- package/index.esm.js +1 -6
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
package/index.esm.css
CHANGED
|
@@ -865,9 +865,6 @@ video {
|
|
|
865
865
|
.flex-col {
|
|
866
866
|
flex-direction: column;
|
|
867
867
|
}
|
|
868
|
-
.flex-wrap {
|
|
869
|
-
flex-wrap: wrap;
|
|
870
|
-
}
|
|
871
868
|
.items-end {
|
|
872
869
|
align-items: flex-end;
|
|
873
870
|
}
|
|
@@ -1648,13 +1645,6 @@ video {
|
|
|
1648
1645
|
}
|
|
1649
1646
|
}
|
|
1650
1647
|
|
|
1651
|
-
@media (min-width: 768px) {
|
|
1652
|
-
|
|
1653
|
-
.md\:flex-nowrap {
|
|
1654
|
-
flex-wrap: nowrap;
|
|
1655
|
-
}
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
1648
|
@media (min-width: 1024px) {
|
|
1659
1649
|
|
|
1660
1650
|
.lg\:flex {
|
package/index.esm.js
CHANGED
|
@@ -131867,11 +131867,6 @@ function DateRangePicker(param) {
|
|
|
131867
131867
|
from: (dates === null || dates === void 0 ? void 0 : dates.from) || undefined,
|
|
131868
131868
|
to: (dates === null || dates === void 0 ? void 0 : dates.to) || undefined
|
|
131869
131869
|
}), 2), date = _useState[0], setDate = _useState[1];
|
|
131870
|
-
useEffect(function() {
|
|
131871
|
-
setDate(dates);
|
|
131872
|
-
}, [
|
|
131873
|
-
dates
|
|
131874
|
-
]);
|
|
131875
131870
|
var handleDateChange = function(newDate) {
|
|
131876
131871
|
if (newDate) {
|
|
131877
131872
|
setDate(newDate);
|
|
@@ -131879,7 +131874,7 @@ function DateRangePicker(param) {
|
|
|
131879
131874
|
}
|
|
131880
131875
|
};
|
|
131881
131876
|
return /*#__PURE__*/ jsxs("div", {
|
|
131882
|
-
className: "flex
|
|
131877
|
+
className: "flex gap-2 items-center",
|
|
131883
131878
|
children: [
|
|
131884
131879
|
/*#__PURE__*/ jsx("div", {
|
|
131885
131880
|
className: cn("grid gap-2", className, disable ? "pointer-events-none opacity-55" : "pointer-events-auto opacity-100"),
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED