@uniformdev/canvas 19.118.1-alpha.1 → 19.119.0
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
@@ -13582,6 +13582,8 @@ type CompositionDeleteParameters = Api['delete']['requestBody']['content']['appl
|
|
13582
13582
|
type ComponentParameter<TValue = unknown> = Omit<SharedComponents['ComponentParameter'], 'value'> & {
|
13583
13583
|
/** The type of the parameter. Determines how it is displayed when editing, and tells the consumer how to process it. */
|
13584
13584
|
value?: TValue;
|
13585
|
+
/** The type of the localizable parameter */
|
13586
|
+
locales?: Record<string, TValue>;
|
13585
13587
|
};
|
13586
13588
|
/** Parameter which stores blocks of entry types */
|
13587
13589
|
type ComponentParameterBlock = Omit<ComponentParameter<BlockValue>, 'type'> & {
|
package/dist/index.d.ts
CHANGED
@@ -13582,6 +13582,8 @@ type CompositionDeleteParameters = Api['delete']['requestBody']['content']['appl
|
|
13582
13582
|
type ComponentParameter<TValue = unknown> = Omit<SharedComponents['ComponentParameter'], 'value'> & {
|
13583
13583
|
/** The type of the parameter. Determines how it is displayed when editing, and tells the consumer how to process it. */
|
13584
13584
|
value?: TValue;
|
13585
|
+
/** The type of the localizable parameter */
|
13586
|
+
locales?: Record<string, TValue>;
|
13585
13587
|
};
|
13586
13588
|
/** Parameter which stores blocks of entry types */
|
13587
13589
|
type ComponentParameterBlock = Omit<ComponentParameter<BlockValue>, 'type'> & {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "19.
|
3
|
+
"version": "19.119.0",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -38,8 +38,8 @@
|
|
38
38
|
"pusher-js": "8.2.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "19.
|
42
|
-
"@uniformdev/context": "19.
|
41
|
+
"@uniformdev/assets": "19.119.0",
|
42
|
+
"@uniformdev/context": "19.119.0",
|
43
43
|
"immer": "10.0.3"
|
44
44
|
},
|
45
45
|
"files": [
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "103e99a2813a021e3a9bc6e3c4fd27474c74c09e"
|
52
52
|
}
|