@empathyco/x-components 3.0.0-alpha.203 → 3.0.0-alpha.205
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 +22 -0
- package/design-system/full-theme.css +20 -20
- package/docs/API-reference/api/x-adapter-platform.platformbanner.md +1 -0
- package/docs/API-reference/api/x-adapter-platform.platformbanner.position.md +11 -0
- package/docs/API-reference/api/x-adapter-platform.platformpromoted.md +1 -0
- package/docs/API-reference/api/x-adapter-platform.platformpromoted.position.md +11 -0
- package/docs/API-reference/api/x-types.banner.md +1 -0
- package/docs/API-reference/api/x-types.banner.position.md +13 -0
- package/docs/API-reference/api/x-types.promoted.md +1 -0
- package/docs/API-reference/api/x-types.promoted.position.md +13 -0
- package/docs/API-reference/components/search/x-components.banner.md +2 -1
- package/docs/API-reference/components/search/x-components.promoted.md +2 -1
- package/js/x-modules/search/components/banner.vue.js.map +1 -1
- package/js/x-modules/search/components/promoted.vue.js.map +1 -1
- package/package.json +5 -5
- package/report/x-adapter-platform.api.json +52 -0
- package/report/x-types.api.json +52 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.0-alpha.205](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.204...@empathyco/x-components@3.0.0-alpha.205) (2022-10-31)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add position on Banner and Promoted models (#800)
|
|
11
|
+
([e7393fb](https://github.com/empathyco/x/commit/e7393fbce8d0767d3c762aa714fe94e162203a12)),
|
|
12
|
+
closes [EX-7293](https://searchbroker.atlassian.net/browse/EX-7293)
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
19
|
+
## [3.0.0-alpha.204](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.203...@empathyco/x-components@3.0.0-alpha.204) (2022-10-27)
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## [3.0.0-alpha.203](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.202...@empathyco/x-components@3.0.0-alpha.203) (2022-10-26)
|
|
7
29
|
|
|
8
30
|
### Features
|
|
@@ -1062,6 +1062,26 @@
|
|
|
1062
1062
|
.x-filter--justified .x-filter > *:last-child:not(.x-filter__label) {
|
|
1063
1063
|
margin-left: auto;
|
|
1064
1064
|
}
|
|
1065
|
+
.x-grid {
|
|
1066
|
+
margin: 0;
|
|
1067
|
+
display: grid;
|
|
1068
|
+
grid-template-columns: repeat(auto-fill, minmax(var(--x-size-min-width-grid-item), auto));
|
|
1069
|
+
grid-auto-flow: dense;
|
|
1070
|
+
align-items: stretch;
|
|
1071
|
+
list-style: none;
|
|
1072
|
+
padding: var(--x-size-padding-grid);
|
|
1073
|
+
gap: var(--x-size-gap-grid);
|
|
1074
|
+
}
|
|
1075
|
+
.x-grid__item {
|
|
1076
|
+
display: flex;
|
|
1077
|
+
flex-flow: column nowrap;
|
|
1078
|
+
}
|
|
1079
|
+
.x-grid__item > * {
|
|
1080
|
+
flex-grow: 1;
|
|
1081
|
+
}
|
|
1082
|
+
.x-grid--cols-auto .x-grid__item {
|
|
1083
|
+
min-width: var(--x-size-min-width-grid-item);
|
|
1084
|
+
}
|
|
1065
1085
|
:root {
|
|
1066
1086
|
--x-size-padding-grid: 0;
|
|
1067
1087
|
--x-size-gap-grid: var(--x-size-base-03);
|
|
@@ -1087,26 +1107,6 @@
|
|
|
1087
1107
|
stroke: none;
|
|
1088
1108
|
fill: var(--x-color-stroke-icon-default);
|
|
1089
1109
|
}
|
|
1090
|
-
.x-grid {
|
|
1091
|
-
margin: 0;
|
|
1092
|
-
display: grid;
|
|
1093
|
-
grid-template-columns: repeat(auto-fill, minmax(var(--x-size-min-width-grid-item), auto));
|
|
1094
|
-
grid-auto-flow: dense;
|
|
1095
|
-
align-items: stretch;
|
|
1096
|
-
list-style: none;
|
|
1097
|
-
padding: var(--x-size-padding-grid);
|
|
1098
|
-
gap: var(--x-size-gap-grid);
|
|
1099
|
-
}
|
|
1100
|
-
.x-grid__item {
|
|
1101
|
-
display: flex;
|
|
1102
|
-
flex-flow: column nowrap;
|
|
1103
|
-
}
|
|
1104
|
-
.x-grid__item > * {
|
|
1105
|
-
flex-grow: 1;
|
|
1106
|
-
}
|
|
1107
|
-
.x-grid--cols-auto .x-grid__item {
|
|
1108
|
-
min-width: var(--x-size-min-width-grid-item);
|
|
1109
|
-
}
|
|
1110
1110
|
:root {
|
|
1111
1111
|
--x-color-stroke-icon-default: currentColor;
|
|
1112
1112
|
--x-color-fill-icon-default: none;
|
|
@@ -18,6 +18,7 @@ export interface PlatformBanner
|
|
|
18
18
|
| --- | --- | --- |
|
|
19
19
|
| [id](./x-adapter-platform.platformbanner.id.md) | string | |
|
|
20
20
|
| [image\_url](./x-adapter-platform.platformbanner.image_url.md) | string | |
|
|
21
|
+
| [position](./x-adapter-platform.platformbanner.position.md) | number | |
|
|
21
22
|
| [tagging?](./x-adapter-platform.platformbanner.tagging.md) | { query: string; } | <i>(Optional)</i> |
|
|
22
23
|
| [title](./x-adapter-platform.platformbanner.title.md) | string | |
|
|
23
24
|
| [url](./x-adapter-platform.platformbanner.url.md) | string | |
|
|
@@ -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) > [PlatformBanner](./x-adapter-platform.platformbanner.md) > [position](./x-adapter-platform.platformbanner.position.md)
|
|
4
|
+
|
|
5
|
+
## PlatformBanner.position property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
position: number;
|
|
11
|
+
```
|
|
@@ -18,6 +18,7 @@ export interface PlatformPromoted
|
|
|
18
18
|
| --- | --- | --- |
|
|
19
19
|
| [id](./x-adapter-platform.platformpromoted.id.md) | string | |
|
|
20
20
|
| [image\_url](./x-adapter-platform.platformpromoted.image_url.md) | string | |
|
|
21
|
+
| [position](./x-adapter-platform.platformpromoted.position.md) | number | |
|
|
21
22
|
| [tagging?](./x-adapter-platform.platformpromoted.tagging.md) | { query: string; } | <i>(Optional)</i> |
|
|
22
23
|
| [title](./x-adapter-platform.platformpromoted.title.md) | string | |
|
|
23
24
|
| [url](./x-adapter-platform.platformpromoted.url.md) | string | |
|
|
@@ -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) > [PlatformPromoted](./x-adapter-platform.platformpromoted.md) > [position](./x-adapter-platform.platformpromoted.position.md)
|
|
4
|
+
|
|
5
|
+
## PlatformPromoted.position property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
position: number;
|
|
11
|
+
```
|
|
@@ -18,6 +18,7 @@ export interface Banner extends NamedModel<'Banner'>, Identifiable, Taggable
|
|
|
18
18
|
| Property | Type | Description |
|
|
19
19
|
| --- | --- | --- |
|
|
20
20
|
| [image](./x-types.banner.image.md) | string | Banner image. |
|
|
21
|
+
| [position](./x-types.banner.position.md) | number | Banner position (= row) inside the grid. |
|
|
21
22
|
| [title](./x-types.banner.title.md) | string | Banner title. |
|
|
22
23
|
| [url](./x-types.banner.url.md) | string | URL to redirect. |
|
|
23
24
|
|
|
@@ -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) > [Banner](./x-types.banner.md) > [position](./x-types.banner.position.md)
|
|
4
|
+
|
|
5
|
+
## Banner.position property
|
|
6
|
+
|
|
7
|
+
Banner position (= row) inside the grid.
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
position: number;
|
|
13
|
+
```
|
|
@@ -18,6 +18,7 @@ export interface Promoted extends NamedModel<'Promoted'>, Identifiable, Taggable
|
|
|
18
18
|
| Property | Type | Description |
|
|
19
19
|
| --- | --- | --- |
|
|
20
20
|
| [image](./x-types.promoted.image.md) | string | Promoted image. |
|
|
21
|
+
| [position](./x-types.promoted.position.md) | number | Promoted position inside the grid. |
|
|
21
22
|
| [title](./x-types.promoted.title.md) | string | Promoted title. |
|
|
22
23
|
| [url](./x-types.promoted.url.md) | string | URL to redirect. |
|
|
23
24
|
|
|
@@ -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) > [Promoted](./x-types.promoted.md) > [position](./x-types.promoted.position.md)
|
|
4
|
+
|
|
5
|
+
## Promoted.position property
|
|
6
|
+
|
|
7
|
+
Promoted position inside the grid.
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
position: number;
|
|
13
|
+
```
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"banner.vue.js","sources":["../../../../../src/x-modules/search/components/banner.vue"],"sourcesContent":["<template>\n <a @click=\"emitClickEvent\" :href=\"banner.url\" class=\"x-banner\" data-test=\"banner\">\n <img :src=\"banner.image\" class=\"x-banner__image\" :alt=\"banner.title\" />\n <h2 class=\"x-banner__title\">{{ banner.title }}</h2>\n </a>\n</template>\n\n<script lang=\"ts\">\n import { Banner as BannerModel } from '@empathyco/x-types';\n import Vue from 'vue';\n import { Component, Prop } from 'vue-property-decorator';\n import { xComponentMixin } from '../../../components/x-component.mixin';\n import { searchXModule } from '../x-module';\n /**\n * A banner result is just an item that has been inserted into the search results to advertise\n * something. Usually it is the first item in the grid or it can be placed in the middle of them\n * and fill the whole row where appears. It just contains a link to the banner content, an image\n * and a title.\n *\n * @public\n */\n @Component({\n mixins: [xComponentMixin(searchXModule)]\n })\n export default class Banner extends Vue {\n /**\n * The banner data.\n *\n * @public\n */\n @Prop({ required: true })\n public banner!: BannerModel;\n\n /**\n * Emits the banner click event.\n *\n * @internal\n */\n protected emitClickEvent(): void {\n this.$x.emit('UserClickedABanner', this.banner);\n }\n }\n</script>\n\n<style lang=\"scss\">\n .x-banner {\n display: flex;\n flex-flow: column nowrap;\n text-decoration: none;\n\n &__image {\n width: 100%;\n object-fit: contain;\n }\n }\n</style>\n\n<docs lang=\"mdx\">\n## Events\n\nThis component doesn't emit events.\n\n## See it in action\n\nIn this example banned data is passed as a prop.\n\n_Here you can see how the `Banner` component is rendered._\n\n```vue\n<template>\n <Banner :banner=\"banner\" />\n</template>\n\n<script>\n import { Banner } from '@empathyco/x-components/search';\n export default {\n name: 'BannerDemo',\n components: {\n Banner\n },\n data() {\n return {\n banner: {\n modelName: 'Banner',\n id: 'banner-example',\n url: 'https://my-website.com/summer-shirts',\n image: 'https://my-website.com/images/summer-shirts.jpg',\n title: 'Trendy summer shirts'\n }\n };\n }\n };\n</script>\n```\n</docs>\n"],"names":[],"mappings":";;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"banner.vue.js","sources":["../../../../../src/x-modules/search/components/banner.vue"],"sourcesContent":["<template>\n <a @click=\"emitClickEvent\" :href=\"banner.url\" class=\"x-banner\" data-test=\"banner\">\n <img :src=\"banner.image\" class=\"x-banner__image\" :alt=\"banner.title\" />\n <h2 class=\"x-banner__title\">{{ banner.title }}</h2>\n </a>\n</template>\n\n<script lang=\"ts\">\n import { Banner as BannerModel } from '@empathyco/x-types';\n import Vue from 'vue';\n import { Component, Prop } from 'vue-property-decorator';\n import { xComponentMixin } from '../../../components/x-component.mixin';\n import { searchXModule } from '../x-module';\n /**\n * A banner result is just an item that has been inserted into the search results to advertise\n * something. Usually it is the first item in the grid or it can be placed in the middle of them\n * and fill the whole row where appears. It just contains a link to the banner content, an image\n * and a title.\n *\n * @public\n */\n @Component({\n mixins: [xComponentMixin(searchXModule)]\n })\n export default class Banner extends Vue {\n /**\n * The banner data.\n *\n * @public\n */\n @Prop({ required: true })\n public banner!: BannerModel;\n\n /**\n * Emits the banner click event.\n *\n * @internal\n */\n protected emitClickEvent(): void {\n this.$x.emit('UserClickedABanner', this.banner);\n }\n }\n</script>\n\n<style lang=\"scss\">\n .x-banner {\n display: flex;\n flex-flow: column nowrap;\n text-decoration: none;\n\n &__image {\n width: 100%;\n object-fit: contain;\n }\n }\n</style>\n\n<docs lang=\"mdx\">\n## Events\n\nThis component doesn't emit events.\n\n## See it in action\n\nIn this example banned data is passed as a prop.\n\n_Here you can see how the `Banner` component is rendered._\n\n```vue\n<template>\n <Banner :banner=\"banner\" />\n</template>\n\n<script>\n import { Banner } from '@empathyco/x-components/search';\n export default {\n name: 'BannerDemo',\n components: {\n Banner\n },\n data() {\n return {\n banner: {\n modelName: 'Banner',\n id: 'banner-example',\n url: 'https://my-website.com/summer-shirts',\n image: 'https://my-website.com/images/summer-shirts.jpg',\n title: 'Trendy summer shirts',\n position: 1\n }\n };\n }\n };\n</script>\n```\n</docs>\n"],"names":[],"mappings":";;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"promoted.vue.js","sources":["../../../../../src/x-modules/search/components/promoted.vue"],"sourcesContent":["<template>\n <a @click=\"emitClickEvent\" :href=\"promoted.url\" class=\"x-promoted\" data-test=\"promoted\">\n <img :src=\"promoted.image\" class=\"x-promoted__image\" :alt=\"promoted.title\" />\n <h2 class=\"x-promoted__title\">{{ promoted.title }}</h2>\n </a>\n</template>\n\n<script lang=\"ts\">\n import { Promoted as PromotedModel } from '@empathyco/x-types';\n import Vue from 'vue';\n import { Component, Prop } from 'vue-property-decorator';\n import { xComponentMixin } from '../../../components/x-component.mixin';\n import { searchXModule } from '../x-module';\n\n /**\n * A promoted result is just an item that has been inserted into the search results to advertise\n * something. Usually it is one of the first items in the grid, and has the same shape as a\n * result. It just contains a link to the promoted content, an image, and a title.\n *\n * @public\n */\n @Component({\n mixins: [xComponentMixin(searchXModule)]\n })\n export default class Promoted extends Vue {\n /**\n * The promoted data.\n *\n * @public\n */\n @Prop({ required: true })\n public promoted!: PromotedModel;\n\n /**\n * Emits the promoted click event.\n *\n * @internal\n */\n protected emitClickEvent(): void {\n this.$x.emit('UserClickedAPromoted', this.promoted);\n }\n }\n</script>\n\n<style lang=\"scss\">\n .x-promoted {\n display: flex;\n flex-flow: column nowrap;\n text-decoration: none;\n\n &__image {\n width: 100%;\n object-fit: contain;\n }\n }\n</style>\n\n<docs lang=\"mdx\">\n## Events\n\nThis component doesn't emit events.\n\n## See it in action\n\nIn this example promoted data is passed as a prop.\n\n_Here you can see how the `Promoted` component is rendered._\n\n```vue\n<template>\n <Promoted :promoted=\"promoted\" />\n</template>\n\n<script>\n import { Promoted } from '@empathyco/x-components/search';\n\n export default {\n name: 'PromotedDemo',\n components: {\n Promoted\n },\n data() {\n return {\n promoted: {\n modelName: 'Promoted',\n id: 'promoted-example',\n url: 'https://my-website.com/summer-shirts',\n image: 'https://my-website.com/images/summer-shirts.jpg',\n title: 'Trendy summer shirts'\n }\n };\n }\n };\n</script>\n```\n</docs>\n"],"names":[],"mappings":";;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"promoted.vue.js","sources":["../../../../../src/x-modules/search/components/promoted.vue"],"sourcesContent":["<template>\n <a @click=\"emitClickEvent\" :href=\"promoted.url\" class=\"x-promoted\" data-test=\"promoted\">\n <img :src=\"promoted.image\" class=\"x-promoted__image\" :alt=\"promoted.title\" />\n <h2 class=\"x-promoted__title\">{{ promoted.title }}</h2>\n </a>\n</template>\n\n<script lang=\"ts\">\n import { Promoted as PromotedModel } from '@empathyco/x-types';\n import Vue from 'vue';\n import { Component, Prop } from 'vue-property-decorator';\n import { xComponentMixin } from '../../../components/x-component.mixin';\n import { searchXModule } from '../x-module';\n\n /**\n * A promoted result is just an item that has been inserted into the search results to advertise\n * something. Usually it is one of the first items in the grid, and has the same shape as a\n * result. It just contains a link to the promoted content, an image, and a title.\n *\n * @public\n */\n @Component({\n mixins: [xComponentMixin(searchXModule)]\n })\n export default class Promoted extends Vue {\n /**\n * The promoted data.\n *\n * @public\n */\n @Prop({ required: true })\n public promoted!: PromotedModel;\n\n /**\n * Emits the promoted click event.\n *\n * @internal\n */\n protected emitClickEvent(): void {\n this.$x.emit('UserClickedAPromoted', this.promoted);\n }\n }\n</script>\n\n<style lang=\"scss\">\n .x-promoted {\n display: flex;\n flex-flow: column nowrap;\n text-decoration: none;\n\n &__image {\n width: 100%;\n object-fit: contain;\n }\n }\n</style>\n\n<docs lang=\"mdx\">\n## Events\n\nThis component doesn't emit events.\n\n## See it in action\n\nIn this example promoted data is passed as a prop.\n\n_Here you can see how the `Promoted` component is rendered._\n\n```vue\n<template>\n <Promoted :promoted=\"promoted\" />\n</template>\n\n<script>\n import { Promoted } from '@empathyco/x-components/search';\n\n export default {\n name: 'PromotedDemo',\n components: {\n Promoted\n },\n data() {\n return {\n promoted: {\n modelName: 'Promoted',\n id: 'promoted-example',\n url: 'https://my-website.com/summer-shirts',\n image: 'https://my-website.com/images/summer-shirts.jpg',\n title: 'Trendy summer shirts',\n position: 1\n }\n };\n }\n };\n</script>\n```\n</docs>\n"],"names":[],"mappings":";;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.205",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@empathyco/x-deep-merge": "^1.3.0-alpha.24",
|
|
68
68
|
"@empathyco/x-logger": "^1.2.0-alpha.4",
|
|
69
69
|
"@empathyco/x-storage-service": "^2.0.0-alpha.4",
|
|
70
|
-
"@empathyco/x-types": "^10.0.0-alpha.
|
|
70
|
+
"@empathyco/x-types": "^10.0.0-alpha.40",
|
|
71
71
|
"@empathyco/x-utils": "^1.0.0-alpha.10",
|
|
72
72
|
"@types/resize-observer-browser": "~0.1.5",
|
|
73
73
|
"@vue/devtools-api": "~6.2.1",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@cypress/vue": "~2.2.4",
|
|
87
87
|
"@cypress/webpack-dev-server": "~1.8.4",
|
|
88
|
-
"@empathyco/x-adapter-platform": "^1.0.0-alpha.
|
|
89
|
-
"@empathyco/x-tailwindcss": "^0.2.0-alpha.
|
|
88
|
+
"@empathyco/x-adapter-platform": "^1.0.0-alpha.40",
|
|
89
|
+
"@empathyco/x-tailwindcss": "^0.2.0-alpha.23",
|
|
90
90
|
"@microsoft/api-documenter": "~7.15.3",
|
|
91
91
|
"@microsoft/api-extractor": "~7.19.4",
|
|
92
92
|
"@rollup/plugin-commonjs": "~21.0.1",
|
|
@@ -136,5 +136,5 @@
|
|
|
136
136
|
"access": "public",
|
|
137
137
|
"directory": "dist"
|
|
138
138
|
},
|
|
139
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "d87a97b291ad2b8ec0d61045e09a183f2f503de9"
|
|
140
140
|
}
|
|
@@ -1765,6 +1765,32 @@
|
|
|
1765
1765
|
"endIndex": 2
|
|
1766
1766
|
}
|
|
1767
1767
|
},
|
|
1768
|
+
{
|
|
1769
|
+
"kind": "PropertySignature",
|
|
1770
|
+
"canonicalReference": "@empathyco/x-adapter-platform!PlatformBanner#position:member",
|
|
1771
|
+
"docComment": "",
|
|
1772
|
+
"excerptTokens": [
|
|
1773
|
+
{
|
|
1774
|
+
"kind": "Content",
|
|
1775
|
+
"text": "position: "
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"kind": "Content",
|
|
1779
|
+
"text": "number"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"kind": "Content",
|
|
1783
|
+
"text": ";"
|
|
1784
|
+
}
|
|
1785
|
+
],
|
|
1786
|
+
"isOptional": false,
|
|
1787
|
+
"releaseTag": "Public",
|
|
1788
|
+
"name": "position",
|
|
1789
|
+
"propertyTypeTokenRange": {
|
|
1790
|
+
"startIndex": 1,
|
|
1791
|
+
"endIndex": 2
|
|
1792
|
+
}
|
|
1793
|
+
},
|
|
1768
1794
|
{
|
|
1769
1795
|
"kind": "PropertySignature",
|
|
1770
1796
|
"canonicalReference": "@empathyco/x-adapter-platform!PlatformBanner#tagging:member",
|
|
@@ -2711,6 +2737,32 @@
|
|
|
2711
2737
|
"endIndex": 2
|
|
2712
2738
|
}
|
|
2713
2739
|
},
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "PropertySignature",
|
|
2742
|
+
"canonicalReference": "@empathyco/x-adapter-platform!PlatformPromoted#position:member",
|
|
2743
|
+
"docComment": "",
|
|
2744
|
+
"excerptTokens": [
|
|
2745
|
+
{
|
|
2746
|
+
"kind": "Content",
|
|
2747
|
+
"text": "position: "
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"kind": "Content",
|
|
2751
|
+
"text": "number"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"kind": "Content",
|
|
2755
|
+
"text": ";"
|
|
2756
|
+
}
|
|
2757
|
+
],
|
|
2758
|
+
"isOptional": false,
|
|
2759
|
+
"releaseTag": "Public",
|
|
2760
|
+
"name": "position",
|
|
2761
|
+
"propertyTypeTokenRange": {
|
|
2762
|
+
"startIndex": 1,
|
|
2763
|
+
"endIndex": 2
|
|
2764
|
+
}
|
|
2765
|
+
},
|
|
2714
2766
|
{
|
|
2715
2767
|
"kind": "PropertySignature",
|
|
2716
2768
|
"canonicalReference": "@empathyco/x-adapter-platform!PlatformPromoted#tagging:member",
|
package/report/x-types.api.json
CHANGED
|
@@ -239,6 +239,32 @@
|
|
|
239
239
|
"endIndex": 2
|
|
240
240
|
}
|
|
241
241
|
},
|
|
242
|
+
{
|
|
243
|
+
"kind": "PropertySignature",
|
|
244
|
+
"canonicalReference": "@empathyco/x-types!Banner#position:member",
|
|
245
|
+
"docComment": "/**\n * Banner position (= row) inside the grid.\n */\n",
|
|
246
|
+
"excerptTokens": [
|
|
247
|
+
{
|
|
248
|
+
"kind": "Content",
|
|
249
|
+
"text": "position: "
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"kind": "Content",
|
|
253
|
+
"text": "number"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"kind": "Content",
|
|
257
|
+
"text": ";"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"isOptional": false,
|
|
261
|
+
"releaseTag": "Public",
|
|
262
|
+
"name": "position",
|
|
263
|
+
"propertyTypeTokenRange": {
|
|
264
|
+
"startIndex": 1,
|
|
265
|
+
"endIndex": 2
|
|
266
|
+
}
|
|
267
|
+
},
|
|
242
268
|
{
|
|
243
269
|
"kind": "PropertySignature",
|
|
244
270
|
"canonicalReference": "@empathyco/x-types!Banner#title:member",
|
|
@@ -3517,6 +3543,32 @@
|
|
|
3517
3543
|
"endIndex": 2
|
|
3518
3544
|
}
|
|
3519
3545
|
},
|
|
3546
|
+
{
|
|
3547
|
+
"kind": "PropertySignature",
|
|
3548
|
+
"canonicalReference": "@empathyco/x-types!Promoted#position:member",
|
|
3549
|
+
"docComment": "/**\n * Promoted position inside the grid.\n */\n",
|
|
3550
|
+
"excerptTokens": [
|
|
3551
|
+
{
|
|
3552
|
+
"kind": "Content",
|
|
3553
|
+
"text": "position: "
|
|
3554
|
+
},
|
|
3555
|
+
{
|
|
3556
|
+
"kind": "Content",
|
|
3557
|
+
"text": "number"
|
|
3558
|
+
},
|
|
3559
|
+
{
|
|
3560
|
+
"kind": "Content",
|
|
3561
|
+
"text": ";"
|
|
3562
|
+
}
|
|
3563
|
+
],
|
|
3564
|
+
"isOptional": false,
|
|
3565
|
+
"releaseTag": "Public",
|
|
3566
|
+
"name": "position",
|
|
3567
|
+
"propertyTypeTokenRange": {
|
|
3568
|
+
"startIndex": 1,
|
|
3569
|
+
"endIndex": 2
|
|
3570
|
+
}
|
|
3571
|
+
},
|
|
3520
3572
|
{
|
|
3521
3573
|
"kind": "PropertySignature",
|
|
3522
3574
|
"canonicalReference": "@empathyco/x-types!Promoted#title:member",
|