@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 +1 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
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.
|
|
3590
|
+
version: "0.5.15",
|
|
3588
3591
|
author: LIB_AUTHOR,
|
|
3589
3592
|
contact: LIB_CONTACT,
|
|
3590
3593
|
license: "Proprietary — See LICENSE"
|