@sunggang/ui-lib 0.1.27 → 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 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 flex-wrap md:flex-nowrap gap-2 items-center",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.1.27",
3
+ "version": "0.1.29",
4
4
  "dependencies": {
5
5
  "@radix-ui/react-popover": "^1.0.7",
6
6
  "@radix-ui/react-slot": "^1.0.2",
package/src/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import './style.css';
2
1
  import Editor from './lib/ckeditor/ckeditor/build/ckeditor';
3
2
  import CkEditor from './lib/Ckeditor';
3
+ import './style.css';
4
4
  export { Editor, CkEditor };
5
5
  export * from './lib/uiLibrary';
6
6
  export * from './lib/Spin';