@rpldy/shared-ui
Advanced tools
Comparing version 1.7.0 to 1.7.1
@@ -9,3 +9,3 @@ "use strict"; | ||
const GLOBAL_VERSION_SYM = exports.GLOBAL_VERSION_SYM = Symbol.for("_rpldy-version_"); | ||
const getVersion = () => "1.7.0" || ""; | ||
const getVersion = () => "1.7.1" || ""; | ||
exports.getVersion = getVersion; | ||
@@ -12,0 +12,0 @@ const getGlobal = () => /* istanbul ignore next */ |
import { hasWindow } from "@rpldy/shared"; | ||
export const GLOBAL_VERSION_SYM = Symbol.for("_rpldy-version_"); | ||
const getVersion = () => "1.7.0" || ""; | ||
const getVersion = () => "1.7.1" || ""; | ||
const getGlobal = () => /* istanbul ignore next */ | ||
@@ -5,0 +5,0 @@ // $FlowIgnore |
{ | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"name": "@rpldy/shared-ui", | ||
@@ -25,7 +25,7 @@ "description": "internal set of utils+types for react-uploady UI", | ||
"dependencies": { | ||
"@rpldy/shared": "1.7.0", | ||
"@rpldy/uploader": "1.7.0" | ||
"@rpldy/shared": "1.7.1", | ||
"@rpldy/uploader": "1.7.1" | ||
}, | ||
"devDependencies": { | ||
"@rpldy/life-events": "1.7.0", | ||
"@rpldy/life-events": "1.7.1", | ||
"flow-bin": "^0.223.2", | ||
@@ -41,3 +41,3 @@ "react": "^18.2.0", | ||
}, | ||
"gitHead": "adbbad6ab4b066966f00c5fb41b9c6cc15dafb10" | ||
"gitHead": "7833f3aee74341e82620699a536ba2554819a0bf" | ||
} |
@@ -52,4 +52,6 @@ import * as React from "react"; | ||
type CancellableResponse = boolean | void | Promise<boolean | void>; | ||
type EventHook<T> = (cb: (obj: T, options: CreateOptions) => void, id?: string) => void; | ||
type CancellableHook<T> = (cb: (obj: T, options: CreateOptions) => boolean | void, id?: string) => void; | ||
type CancellableHook<T> = (cb: (obj: T, options: CreateOptions) => CancellableResponse, id?: string) => void; | ||
type EventHookWithState<T> = ((cb?: (obj: T) => void, id?: string) => T) & ((id?: string) => T); | ||
@@ -62,3 +64,3 @@ | ||
type BatchEventHook = EventHook<Batch>; | ||
type BatchCancellableEventHook = (cb: (batch: Batch, options: CreateOptions) => boolean | void) => void; | ||
type BatchCancellableEventHook = CancellableHook<Batch>; | ||
type BatchEventHookWithState = EventHookWithState<Batch>; | ||
@@ -65,0 +67,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63221
1436
+ Added@rpldy/shared@1.7.1(transitive)
+ Added@rpldy/uploader@1.7.1(transitive)
- Removed@rpldy/shared@1.7.0(transitive)
- Removed@rpldy/uploader@1.7.0(transitive)
Updated@rpldy/shared@1.7.1
Updated@rpldy/uploader@1.7.1