sales-frontend-oz 0.0.57 → 0.0.59

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.d.cts CHANGED
@@ -591,6 +591,7 @@ declare const checkValidPageMemo: {
591
591
  /**
592
592
  * 비동기 처리를 일정 시간 지연시키는 함수
593
593
  * @param ms - 지연 시간 (밀리초). 기본값은 10ms
594
+ * @deprecated FP플래너에서 제대로 동작하지 않아서 아무런 동작을 하지 않도록 고쳤음
594
595
  */
595
596
  declare function sleep(ms?: number): Promise<void>;
596
597
  /**
package/dist/index.d.ts CHANGED
@@ -591,6 +591,7 @@ declare const checkValidPageMemo: {
591
591
  /**
592
592
  * 비동기 처리를 일정 시간 지연시키는 함수
593
593
  * @param ms - 지연 시간 (밀리초). 기본값은 10ms
594
+ * @deprecated FP플래너에서 제대로 동작하지 않아서 아무런 동작을 하지 않도록 고쳤음
594
595
  */
595
596
  declare function sleep(ms?: number): Promise<void>;
596
597
  /**
package/dist/index.js CHANGED
@@ -299,7 +299,7 @@ function DeepCopy(arg) {
299
299
 
300
300
  // src/oz/utils/common-util.ts
301
301
  async function sleep(ms = 10) {
302
- return new Promise((resolve) => setTimeout(resolve, ms));
302
+ return;
303
303
  }
304
304
  function categorizeByPageRange(data, pageCounts) {
305
305
  let currentPage = 1;