@uniformdev/canvas 20.6.2-alpha.10 → 20.6.2-alpha.11
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 -2
- package/dist/index.d.ts +2 -2
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ApiClient, ExceptProject, ClientOptions, ApiClientError } from '@uniformdev/context/api';
|
2
2
|
export { ApiClientError } from '@uniformdev/context/api';
|
3
3
|
import { AssetGetResponseSingle, AssetDefinitionType } from '@uniformdev/assets';
|
4
|
-
import { Quirks, StorageCommands, PersonalizedVariant, TestVariant } from '@uniformdev/context';
|
4
|
+
import { Quirks, StorageCommands, PersonalizedVariant, VariationMatchMetadata, TestVariant } from '@uniformdev/context';
|
5
5
|
import { Options as Options$1 } from 'p-retry';
|
6
6
|
import { Options } from 'p-throttle';
|
7
7
|
import { RichTextBuiltInFormat as RichTextBuiltInFormat$1, RichTextBuiltInElement as RichTextBuiltInElement$1, ParameterRichTextValue } from '@uniformdev/richtext';
|
@@ -12839,7 +12839,7 @@ declare const isSystemComponentDefinition: (componentType: string) => boolean;
|
|
12839
12839
|
* Converts components in a slot into personalized variations (based on each component's intent tag in Canvas) suitable to pass to a personalize component
|
12840
12840
|
* Useful when implementing custom personalization settings for Canvas components.
|
12841
12841
|
*/
|
12842
|
-
declare function mapSlotToPersonalizedVariations(slot: ComponentInstance[] | undefined): Array<ComponentInstance & PersonalizedVariant
|
12842
|
+
declare function mapSlotToPersonalizedVariations(slot: ComponentInstance[] | undefined): Array<ComponentInstance & PersonalizedVariant<VariationMatchMetadata>>;
|
12843
12843
|
|
12844
12844
|
/**
|
12845
12845
|
* Converts components in a slot into test variations (based on each component's Context tag in Canvas) suitable to pass to a personalize component
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ApiClient, ExceptProject, ClientOptions, ApiClientError } from '@uniformdev/context/api';
|
2
2
|
export { ApiClientError } from '@uniformdev/context/api';
|
3
3
|
import { AssetGetResponseSingle, AssetDefinitionType } from '@uniformdev/assets';
|
4
|
-
import { Quirks, StorageCommands, PersonalizedVariant, TestVariant } from '@uniformdev/context';
|
4
|
+
import { Quirks, StorageCommands, PersonalizedVariant, VariationMatchMetadata, TestVariant } from '@uniformdev/context';
|
5
5
|
import { Options as Options$1 } from 'p-retry';
|
6
6
|
import { Options } from 'p-throttle';
|
7
7
|
import { RichTextBuiltInFormat as RichTextBuiltInFormat$1, RichTextBuiltInElement as RichTextBuiltInElement$1, ParameterRichTextValue } from '@uniformdev/richtext';
|
@@ -12839,7 +12839,7 @@ declare const isSystemComponentDefinition: (componentType: string) => boolean;
|
|
12839
12839
|
* Converts components in a slot into personalized variations (based on each component's intent tag in Canvas) suitable to pass to a personalize component
|
12840
12840
|
* Useful when implementing custom personalization settings for Canvas components.
|
12841
12841
|
*/
|
12842
|
-
declare function mapSlotToPersonalizedVariations(slot: ComponentInstance[] | undefined): Array<ComponentInstance & PersonalizedVariant
|
12842
|
+
declare function mapSlotToPersonalizedVariations(slot: ComponentInstance[] | undefined): Array<ComponentInstance & PersonalizedVariant<VariationMatchMetadata>>;
|
12843
12843
|
|
12844
12844
|
/**
|
12845
12845
|
* Converts components in a slot into test variations (based on each component's Context tag in Canvas) suitable to pass to a personalize component
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "20.6.2-alpha.
|
3
|
+
"version": "20.6.2-alpha.11+af78064791",
|
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,9 +38,9 @@
|
|
38
38
|
"p-throttle": "5.0.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "20.6.2-alpha.
|
42
|
-
"@uniformdev/context": "20.6.2-alpha.
|
43
|
-
"@uniformdev/richtext": "20.6.2-alpha.
|
41
|
+
"@uniformdev/assets": "20.6.2-alpha.11+af78064791",
|
42
|
+
"@uniformdev/context": "20.6.2-alpha.11+af78064791",
|
43
|
+
"@uniformdev/richtext": "20.6.2-alpha.11+af78064791",
|
44
44
|
"immer": "10.1.1"
|
45
45
|
},
|
46
46
|
"files": [
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"publishConfig": {
|
50
50
|
"access": "public"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "af78064791c47044f8ba447bbe1221f672f6de3e"
|
53
53
|
}
|