@empathyco/x-components 3.0.0-alpha.410 → 3.0.0-alpha.411
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
CHANGED
|
@@ -3,12 +3,29 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.0-alpha.411](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.410...@empathyco/x-components@3.0.0-alpha.411) (2023-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [3.0.0-alpha.410](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.409...@empathyco/x-components@3.0.0-alpha.410) (2023-09-15)
|
|
7
15
|
|
|
16
|
+
### ⚠ BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
- **queries-preview**: the `QueryPreviewList` component `queries` prop has changed name to
|
|
19
|
+
`queriesPreviewInfo` and the type is an array of `QueryPreviewInfo` as instead of an array of
|
|
20
|
+
strings. The QueryPreview component `query` prop has changed name to `queryPreviewInfo` and the
|
|
21
|
+
type is `QueryPreviewInfo` instead of `string`. `QueryPreviewInfo` type is now exported from
|
|
22
|
+
the module.
|
|
23
|
+
|
|
24
|
+
EMP-1555
|
|
8
25
|
|
|
9
26
|
### Features
|
|
10
27
|
|
|
11
|
-
* query preview components allow adding extra params to the request (#1270) ([84143a2](https://github.com/empathyco/x/commit/84143a2b1ee1b9944ddb431f701b3d27d1c20410))
|
|
28
|
+
* **queries-preview**: query preview components allow adding extra params to the request (#1270) ([84143a2](https://github.com/empathyco/x/commit/84143a2b1ee1b9944ddb431f701b3d27d1c20410))
|
|
12
29
|
|
|
13
30
|
|
|
14
31
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
2
|
.x-uppercase {
|
|
4
3
|
text-transform: uppercase;
|
|
5
4
|
}
|
|
@@ -7391,6 +7390,11 @@
|
|
|
7391
7390
|
--x-size-gap-grid: var(--x-size-base-03);
|
|
7392
7391
|
--x-size-min-width-grid-item: 150px;
|
|
7393
7392
|
}
|
|
7393
|
+
:root {
|
|
7394
|
+
--x-size-padding-grid: 0;
|
|
7395
|
+
--x-size-gap-grid: var(--x-size-base-03);
|
|
7396
|
+
--x-size-min-width-grid-item: 150px;
|
|
7397
|
+
}
|
|
7394
7398
|
|
|
7395
7399
|
.x-grid-list {
|
|
7396
7400
|
margin: 0;
|
|
@@ -7412,11 +7416,6 @@
|
|
|
7412
7416
|
.x-grid-list--cols-auto .x-grid-list__item {
|
|
7413
7417
|
min-width: var(--x-size-min-width-grid-item);
|
|
7414
7418
|
}
|
|
7415
|
-
:root {
|
|
7416
|
-
--x-size-padding-grid: 0;
|
|
7417
|
-
--x-size-gap-grid: var(--x-size-base-03);
|
|
7418
|
-
--x-size-min-width-grid-item: 150px;
|
|
7419
|
-
}
|
|
7420
7419
|
.x-filter--justified.x-filter > *:last-child:not(.x-filter__label),
|
|
7421
7420
|
.x-filter--justified.x-facet-filter > *:last-child:not(.x-filter__label),
|
|
7422
7421
|
.x-filter--justified .x-filter > *:last-child:not(.x-filter__label),
|
|
@@ -8845,4 +8844,4 @@
|
|
|
8845
8844
|
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8846
8845
|
--x-size-border-radius-base-pill: 99999px;
|
|
8847
8846
|
--x-size-border-width-base: 1px;
|
|
8848
|
-
}
|
|
8847
|
+
}
|
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.411",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"access": "public",
|
|
144
144
|
"directory": "dist"
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "eeda08b8377d2450e87a8e5a33381780b87d8361"
|
|
147
147
|
}
|