app-studio 0.8.5 → 0.8.7
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/native/index.d.mts +5 -5
- package/dist/native/index.d.ts +5 -5
- package/dist/web/app-studio.umd.production.min.global.js +8 -14
- package/dist/web/app-studio.umd.production.min.global.js.map +1 -1
- package/dist/web/index.cjs +4 -4
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.d.mts +79 -13
- package/dist/web/index.d.ts +79 -13
- package/dist/web/index.js +4 -4
- package/dist/web/index.js.map +1 -1
- package/package.json +16 -21
package/dist/native/index.d.mts
CHANGED
|
@@ -220,24 +220,24 @@ declare const useFocus: () => {
|
|
|
220
220
|
focusProps: {};
|
|
221
221
|
};
|
|
222
222
|
declare const useClickOutside: () => {
|
|
223
|
-
ref: react.
|
|
223
|
+
ref: react.RefObject<null>;
|
|
224
224
|
isOutside: boolean;
|
|
225
225
|
};
|
|
226
226
|
declare const useElementPosition: () => {
|
|
227
|
-
ref: react.
|
|
227
|
+
ref: react.RefObject<null>;
|
|
228
228
|
position: null;
|
|
229
229
|
};
|
|
230
230
|
declare const useKeyPress: () => boolean;
|
|
231
231
|
declare const useOnScreen: () => {
|
|
232
|
-
ref: react.
|
|
232
|
+
ref: react.RefObject<null>;
|
|
233
233
|
isOnScreen: boolean;
|
|
234
234
|
};
|
|
235
235
|
declare const useInView: () => {
|
|
236
|
-
ref: react.
|
|
236
|
+
ref: react.RefObject<null>;
|
|
237
237
|
inView: boolean;
|
|
238
238
|
};
|
|
239
239
|
declare const useIframeStyles: () => {
|
|
240
|
-
iframeRef: react.
|
|
240
|
+
iframeRef: react.RefObject<null>;
|
|
241
241
|
};
|
|
242
242
|
declare const useScroll: () => {
|
|
243
243
|
scrollY: number;
|
package/dist/native/index.d.ts
CHANGED
|
@@ -220,24 +220,24 @@ declare const useFocus: () => {
|
|
|
220
220
|
focusProps: {};
|
|
221
221
|
};
|
|
222
222
|
declare const useClickOutside: () => {
|
|
223
|
-
ref: react.
|
|
223
|
+
ref: react.RefObject<null>;
|
|
224
224
|
isOutside: boolean;
|
|
225
225
|
};
|
|
226
226
|
declare const useElementPosition: () => {
|
|
227
|
-
ref: react.
|
|
227
|
+
ref: react.RefObject<null>;
|
|
228
228
|
position: null;
|
|
229
229
|
};
|
|
230
230
|
declare const useKeyPress: () => boolean;
|
|
231
231
|
declare const useOnScreen: () => {
|
|
232
|
-
ref: react.
|
|
232
|
+
ref: react.RefObject<null>;
|
|
233
233
|
isOnScreen: boolean;
|
|
234
234
|
};
|
|
235
235
|
declare const useInView: () => {
|
|
236
|
-
ref: react.
|
|
236
|
+
ref: react.RefObject<null>;
|
|
237
237
|
inView: boolean;
|
|
238
238
|
};
|
|
239
239
|
declare const useIframeStyles: () => {
|
|
240
|
-
iframeRef: react.
|
|
240
|
+
iframeRef: react.RefObject<null>;
|
|
241
241
|
};
|
|
242
242
|
declare const useScroll: () => {
|
|
243
243
|
scrollY: number;
|