@computesdk/modal 1.6.0 → 1.6.2
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -28,6 +28,6 @@ interface ModalSandbox {
|
|
|
28
28
|
/**
|
|
29
29
|
* Create a Modal provider instance using the factory pattern
|
|
30
30
|
*/
|
|
31
|
-
declare const modal: (config: ModalConfig) => computesdk.Provider<ModalSandbox, any, any>;
|
|
31
|
+
declare const modal: (config: ModalConfig & computesdk.BaseProviderConfig) => computesdk.Provider<ModalSandbox, any, any>;
|
|
32
32
|
|
|
33
33
|
export { type ModalConfig, modal };
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,6 @@ interface ModalSandbox {
|
|
|
28
28
|
/**
|
|
29
29
|
* Create a Modal provider instance using the factory pattern
|
|
30
30
|
*/
|
|
31
|
-
declare const modal: (config: ModalConfig) => computesdk.Provider<ModalSandbox, any, any>;
|
|
31
|
+
declare const modal: (config: ModalConfig & computesdk.BaseProviderConfig) => computesdk.Provider<ModalSandbox, any, any>;
|
|
32
32
|
|
|
33
33
|
export { type ModalConfig, modal };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/modal",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Modal provider for ComputeSDK",
|
|
5
5
|
"author": "Garrison",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"modal": "^0.3.16",
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.3"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"modal",
|