@servantcdh/ez-planet-labeling 0.5.14 → 0.5.15

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.ts CHANGED
@@ -29,6 +29,7 @@ export declare interface AsyncData<T> {
29
29
  data: T | undefined;
30
30
  isLoading: boolean;
31
31
  isFetching: boolean;
32
+ isFetched: boolean;
32
33
  isError: boolean;
33
34
  error: unknown;
34
35
  refetch: () => void;
package/dist/index.js CHANGED
@@ -16,6 +16,7 @@ function staticData(data) {
16
16
  data,
17
17
  isLoading: false,
18
18
  isFetching: false,
19
+ isFetched: true,
19
20
  isError: false,
20
21
  error: null,
21
22
  refetch: NOOP$2,
@@ -27,6 +28,7 @@ function loadingData() {
27
28
  data: void 0,
28
29
  isLoading: true,
29
30
  isFetching: true,
31
+ isFetched: false,
30
32
  isError: false,
31
33
  error: null,
32
34
  refetch: NOOP$2,
@@ -38,6 +40,7 @@ function errorData(error) {
38
40
  data: void 0,
39
41
  isLoading: false,
40
42
  isFetching: false,
43
+ isFetched: true,
41
44
  isError: true,
42
45
  error,
43
46
  refetch: NOOP$2,
@@ -3584,7 +3587,7 @@ const LIB_AUTHOR = "최동호";
3584
3587
  const LIB_CONTACT = "servantcdh@naver.com";
3585
3588
  const __EZ_PLANET_META__ = Object.freeze({
3586
3589
  name: LIB_NAME,
3587
- version: "0.5.14",
3590
+ version: "0.5.15",
3588
3591
  author: LIB_AUTHOR,
3589
3592
  contact: LIB_CONTACT,
3590
3593
  license: "Proprietary — See LICENSE"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servantcdh/ez-planet-labeling",
3
- "version": "0.5.14",
3
+ "version": "0.5.15",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",