@uniformdev/mesh-sdk 19.38.3-alpha.70 → 19.39.1-alpha.10
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -715,6 +715,7 @@ type OpenDialogResult = {
|
|
|
715
715
|
*/
|
|
716
716
|
dialogLocation?: string;
|
|
717
717
|
};
|
|
718
|
+
type DialogSizes = 'narrow' | 'medium' | 'wide';
|
|
718
719
|
interface DialogOptions<TDialogParams = DialogParams> {
|
|
719
720
|
/**
|
|
720
721
|
* By default, dialogs will be closed when they set a value.
|
|
@@ -726,8 +727,13 @@ interface DialogOptions<TDialogParams = DialogParams> {
|
|
|
726
727
|
disableCloseDialogOnSetValue?: boolean;
|
|
727
728
|
/**
|
|
728
729
|
* Options for setting the max width of the dialog.
|
|
730
|
+
* @deprecated Use `width` instead. This property will become ignored in a future release.
|
|
729
731
|
*/
|
|
730
732
|
maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'full';
|
|
733
|
+
/**
|
|
734
|
+
* Options for setting the width of the dialog.
|
|
735
|
+
*/
|
|
736
|
+
width?: DialogSizes;
|
|
731
737
|
/**
|
|
732
738
|
* Parameters to pass to the dialog, which will be available in the dialog via
|
|
733
739
|
* the `metadata` object for the dialog location, e.g. `metadata.dialogParams`.
|
package/dist/index.d.ts
CHANGED
|
@@ -715,6 +715,7 @@ type OpenDialogResult = {
|
|
|
715
715
|
*/
|
|
716
716
|
dialogLocation?: string;
|
|
717
717
|
};
|
|
718
|
+
type DialogSizes = 'narrow' | 'medium' | 'wide';
|
|
718
719
|
interface DialogOptions<TDialogParams = DialogParams> {
|
|
719
720
|
/**
|
|
720
721
|
* By default, dialogs will be closed when they set a value.
|
|
@@ -726,8 +727,13 @@ interface DialogOptions<TDialogParams = DialogParams> {
|
|
|
726
727
|
disableCloseDialogOnSetValue?: boolean;
|
|
727
728
|
/**
|
|
728
729
|
* Options for setting the max width of the dialog.
|
|
730
|
+
* @deprecated Use `width` instead. This property will become ignored in a future release.
|
|
729
731
|
*/
|
|
730
732
|
maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'full';
|
|
733
|
+
/**
|
|
734
|
+
* Options for setting the width of the dialog.
|
|
735
|
+
*/
|
|
736
|
+
width?: DialogSizes;
|
|
731
737
|
/**
|
|
732
738
|
* Parameters to pass to the dialog, which will be available in the dialog via
|
|
733
739
|
* the `metadata` object for the dialog location, e.g. `metadata.dialogParams`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.39.1-alpha.10+3cadc0bda",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@uniformdev/canvas": "19.
|
|
36
|
-
"@uniformdev/context": "19.
|
|
37
|
-
"@uniformdev/project-map": "19.
|
|
35
|
+
"@uniformdev/canvas": "19.39.1-alpha.10+3cadc0bda",
|
|
36
|
+
"@uniformdev/context": "19.39.1-alpha.10+3cadc0bda",
|
|
37
|
+
"@uniformdev/project-map": "19.39.1-alpha.10+3cadc0bda",
|
|
38
38
|
"imagesloaded": "^5.0.0",
|
|
39
39
|
"mitt": "^3.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/imagesloaded": "^4.1.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3cadc0bda1f144a292c62abf0b90c680d44e4454"
|
|
45
45
|
}
|