@empathyco/x-components 6.0.0-alpha.86 → 6.0.0-alpha.88
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/CHANGELOG.md +17 -0
- package/design-system/deprecated-full-theme.css +1391 -1391
- package/docs/API-reference/api/x-adapter-platform.platformrelatedprompt.md +1 -0
- package/docs/API-reference/api/x-adapter-platform.platformrelatedprompt.suggestionimageurl.md +11 -0
- package/docs/API-reference/api/x-components.relatedpromptstaglist.md +1 -0
- package/docs/API-reference/api/x-types.relatedprompt.md +1 -0
- package/docs/API-reference/api/x-types.relatedprompt.suggestionimageurl.md +13 -0
- package/package.json +4 -4
- package/report/x-adapter-platform.api.json +27 -0
- package/report/x-components.api.json +1 -1
- package/report/x-components.api.md +1 -0
- package/report/x-types.api.json +27 -0
- package/types/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts +1 -0
- package/types/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts.map +1 -1
|
@@ -17,6 +17,7 @@ export interface PlatformRelatedPrompt
|
|
|
17
17
|
| Property | Modifiers | Type | Description |
|
|
18
18
|
| --- | --- | --- | --- |
|
|
19
19
|
| [nextQueries](./x-adapter-platform.platformrelatedprompt.nextqueries.md) | | string\[\] | |
|
|
20
|
+
| [suggestionImageUrl](./x-adapter-platform.platformrelatedprompt.suggestionimageurl.md) | | string | |
|
|
20
21
|
| [suggestionText](./x-adapter-platform.platformrelatedprompt.suggestiontext.md) | | string | |
|
|
21
22
|
| [tagging](./x-adapter-platform.platformrelatedprompt.tagging.md) | | [PlatformRelatedPromptTagging](./x-adapter-platform.platformrelatedprompttagging.md) | |
|
|
22
23
|
| [type](./x-adapter-platform.platformrelatedprompt.type.md) | | 'SYNTHETIC' \| 'CURATED' | |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@empathyco/x-adapter-platform](./x-adapter-platform.md) > [PlatformRelatedPrompt](./x-adapter-platform.platformrelatedprompt.md) > [suggestionImageUrl](./x-adapter-platform.platformrelatedprompt.suggestionimageurl.md)
|
|
4
|
+
|
|
5
|
+
## PlatformRelatedPrompt.suggestionImageUrl property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
suggestionImageUrl: string;
|
|
11
|
+
```
|
|
@@ -35,6 +35,7 @@ _default: import("vue").DefineComponent<{
|
|
|
35
35
|
relatedPromptNextQueries?: import("@empathyco/x-types").RelatedPromptNextQuery[] | undefined;
|
|
36
36
|
nextQueries: string[];
|
|
37
37
|
suggestionText: string;
|
|
38
|
+
suggestionImageUrl?: string | undefined;
|
|
38
39
|
type: string;
|
|
39
40
|
toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
|
|
40
41
|
tagging?: {
|
|
@@ -19,6 +19,7 @@ export interface RelatedPrompt extends NamedModel<'RelatedPrompt'>
|
|
|
19
19
|
| --- | --- | --- | --- |
|
|
20
20
|
| [nextQueries](./x-types.relatedprompt.nextqueries.md) | | string\[\] | The queries of the next queries related to the prompt. |
|
|
21
21
|
| [relatedPromptNextQueries?](./x-types.relatedprompt.relatedpromptnextqueries.md) | | [RelatedPromptNextQuery](./x-types.relatedpromptnextquery.md)<!-- -->\[\] | _(Optional)_ The next queries related to the prompt. |
|
|
22
|
+
| [suggestionImageUrl?](./x-types.relatedprompt.suggestionimageurl.md) | | string | _(Optional)_ The prompt image |
|
|
22
23
|
| [suggestionText](./x-types.relatedprompt.suggestiontext.md) | | string | The prompt. |
|
|
23
24
|
| [tagging?](./x-types.relatedprompt.tagging.md) | | { toolingDisplayTagging?: [TaggingRequest](./x-types.taggingrequest.md)<!-- -->; toolingDisplayClickTagging?: [TaggingRequest](./x-types.taggingrequest.md)<!-- -->; nextQueriesTagging?: [RelatedPromptNextQuery](./x-types.relatedpromptnextquery.md)<!-- -->\[\]; } | _(Optional)_ Related prompt tagging. |
|
|
24
25
|
| [toolingDisplayTagging?](./x-types.relatedprompt.toolingdisplaytagging.md) | | [TaggingRequest](./x-types.taggingrequest.md) | _(Optional)_ The tooling display tagging of the prompt. |
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@empathyco/x-types](./x-types.md) > [RelatedPrompt](./x-types.relatedprompt.md) > [suggestionImageUrl](./x-types.relatedprompt.suggestionimageurl.md)
|
|
4
|
+
|
|
5
|
+
## RelatedPrompt.suggestionImageUrl property
|
|
6
|
+
|
|
7
|
+
The prompt image
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
suggestionImageUrl?: string;
|
|
13
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.88",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@empathyco/x-adapter": "^8.1.0-alpha.3",
|
|
81
|
-
"@empathyco/x-adapter-platform": "^1.1.0-alpha.
|
|
81
|
+
"@empathyco/x-adapter-platform": "^1.1.0-alpha.17",
|
|
82
82
|
"@empathyco/x-bus": "^1.0.3-alpha.3",
|
|
83
83
|
"@empathyco/x-deep-merge": "^2.0.3-alpha.4",
|
|
84
84
|
"@empathyco/x-logger": "^1.2.0-alpha.11",
|
|
85
85
|
"@empathyco/x-storage-service": "^2.0.3-alpha.2",
|
|
86
|
-
"@empathyco/x-types": "^10.1.0-alpha.
|
|
86
|
+
"@empathyco/x-types": "^10.1.0-alpha.13",
|
|
87
87
|
"@empathyco/x-utils": "^1.0.3-alpha.3",
|
|
88
88
|
"@vue/devtools-api": "~6.5.0",
|
|
89
89
|
"@vueuse/core": "~10.7.1",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"access": "public",
|
|
143
143
|
"directory": "dist"
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "3963431185dbc50b8c19a6e507ed3ffe8fb876f7"
|
|
146
146
|
}
|
|
@@ -3783,6 +3783,33 @@
|
|
|
3783
3783
|
"endIndex": 2
|
|
3784
3784
|
}
|
|
3785
3785
|
},
|
|
3786
|
+
{
|
|
3787
|
+
"kind": "PropertySignature",
|
|
3788
|
+
"canonicalReference": "@empathyco/x-adapter-platform!PlatformRelatedPrompt#suggestionImageUrl:member",
|
|
3789
|
+
"docComment": "",
|
|
3790
|
+
"excerptTokens": [
|
|
3791
|
+
{
|
|
3792
|
+
"kind": "Content",
|
|
3793
|
+
"text": "suggestionImageUrl: "
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
"kind": "Content",
|
|
3797
|
+
"text": "string"
|
|
3798
|
+
},
|
|
3799
|
+
{
|
|
3800
|
+
"kind": "Content",
|
|
3801
|
+
"text": ";"
|
|
3802
|
+
}
|
|
3803
|
+
],
|
|
3804
|
+
"isReadonly": false,
|
|
3805
|
+
"isOptional": false,
|
|
3806
|
+
"releaseTag": "Public",
|
|
3807
|
+
"name": "suggestionImageUrl",
|
|
3808
|
+
"propertyTypeTokenRange": {
|
|
3809
|
+
"startIndex": 1,
|
|
3810
|
+
"endIndex": 2
|
|
3811
|
+
}
|
|
3812
|
+
},
|
|
3786
3813
|
{
|
|
3787
3814
|
"kind": "PropertySignature",
|
|
3788
3815
|
"canonicalReference": "@empathyco/x-adapter-platform!PlatformRelatedPrompt#suggestionText:member",
|
|
@@ -52756,7 +52756,7 @@
|
|
|
52756
52756
|
},
|
|
52757
52757
|
{
|
|
52758
52758
|
"kind": "Content",
|
|
52759
|
-
"text": "[] | undefined;\n nextQueries: string[];\n suggestionText: string;\n type: string;\n toolingDisplayTagging?: import(\"@empathyco/x-types\")."
|
|
52759
|
+
"text": "[] | undefined;\n nextQueries: string[];\n suggestionText: string;\n suggestionImageUrl?: string | undefined;\n type: string;\n toolingDisplayTagging?: import(\"@empathyco/x-types\")."
|
|
52760
52760
|
},
|
|
52761
52761
|
{
|
|
52762
52762
|
"kind": "Reference",
|
|
@@ -5955,6 +5955,7 @@ index: number;
|
|
|
5955
5955
|
relatedPromptNextQueries?: RelatedPromptNextQuery[] | undefined;
|
|
5956
5956
|
nextQueries: string[];
|
|
5957
5957
|
suggestionText: string;
|
|
5958
|
+
suggestionImageUrl?: string | undefined;
|
|
5958
5959
|
type: string;
|
|
5959
5960
|
toolingDisplayTagging?: TaggingRequest | undefined;
|
|
5960
5961
|
tagging?: {
|
package/report/x-types.api.json
CHANGED
|
@@ -4667,6 +4667,33 @@
|
|
|
4667
4667
|
"endIndex": 3
|
|
4668
4668
|
}
|
|
4669
4669
|
},
|
|
4670
|
+
{
|
|
4671
|
+
"kind": "PropertySignature",
|
|
4672
|
+
"canonicalReference": "@empathyco/x-types!RelatedPrompt#suggestionImageUrl:member",
|
|
4673
|
+
"docComment": "/**\n * The prompt image\n */\n",
|
|
4674
|
+
"excerptTokens": [
|
|
4675
|
+
{
|
|
4676
|
+
"kind": "Content",
|
|
4677
|
+
"text": "suggestionImageUrl?: "
|
|
4678
|
+
},
|
|
4679
|
+
{
|
|
4680
|
+
"kind": "Content",
|
|
4681
|
+
"text": "string"
|
|
4682
|
+
},
|
|
4683
|
+
{
|
|
4684
|
+
"kind": "Content",
|
|
4685
|
+
"text": ";"
|
|
4686
|
+
}
|
|
4687
|
+
],
|
|
4688
|
+
"isReadonly": false,
|
|
4689
|
+
"isOptional": true,
|
|
4690
|
+
"releaseTag": "Public",
|
|
4691
|
+
"name": "suggestionImageUrl",
|
|
4692
|
+
"propertyTypeTokenRange": {
|
|
4693
|
+
"startIndex": 1,
|
|
4694
|
+
"endIndex": 2
|
|
4695
|
+
}
|
|
4696
|
+
},
|
|
4670
4697
|
{
|
|
4671
4698
|
"kind": "PropertySignature",
|
|
4672
4699
|
"canonicalReference": "@empathyco/x-types!RelatedPrompt#suggestionText:member",
|
|
@@ -62,6 +62,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
62
62
|
relatedPromptNextQueries?: import("@empathyco/x-types").RelatedPromptNextQuery[] | undefined;
|
|
63
63
|
nextQueries: string[];
|
|
64
64
|
suggestionText: string;
|
|
65
|
+
suggestionImageUrl?: string | undefined;
|
|
65
66
|
type: string;
|
|
66
67
|
toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
|
|
67
68
|
tagging?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;IAzM9C;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;;;;AAxCP,wBAiPE"}
|