@empathyco/x-components 3.0.0-alpha.356 → 3.0.0-alpha.358
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 +21 -0
- package/design-system/full-theme.css +3 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.358](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.357...@empathyco/x-components@3.0.0-alpha.358) (2023-04-24)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **search:** add sort picker list component (#1155)
|
|
11
|
+
([03beec8](https://github.com/empathyco/x/commit/03beec816b07d6532d01b97034110a354d52024c))
|
|
12
|
+
|
|
13
|
+
# Change Log
|
|
14
|
+
|
|
15
|
+
All notable changes to this project will be documented in this file. See
|
|
16
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
17
|
+
|
|
18
|
+
## [3.0.0-alpha.357](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.356...@empathyco/x-components@3.0.0-alpha.357) (2023-04-20)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
21
|
+
|
|
22
|
+
# Change Log
|
|
23
|
+
|
|
24
|
+
All notable changes to this project will be documented in this file. See
|
|
25
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
26
|
+
|
|
6
27
|
## [3.0.0-alpha.356](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.355...@empathyco/x-components@3.0.0-alpha.356) (2023-04-20)
|
|
7
28
|
|
|
8
29
|
### Features
|
|
@@ -442,15 +442,15 @@
|
|
|
442
442
|
.x-dropdown.x-dropdown--s {
|
|
443
443
|
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-s);
|
|
444
444
|
}
|
|
445
|
+
:root {
|
|
446
|
+
--x-size-width-dropdown-s: 74px;
|
|
447
|
+
}
|
|
445
448
|
.x-dropdown.x-dropdown--xl {
|
|
446
449
|
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-xl);
|
|
447
450
|
}
|
|
448
451
|
:root {
|
|
449
452
|
--x-size-width-dropdown-xl: 282px;
|
|
450
453
|
}
|
|
451
|
-
:root {
|
|
452
|
-
--x-size-width-dropdown-s: 74px;
|
|
453
|
-
}
|
|
454
454
|
.x-facet--card.x-facet,
|
|
455
455
|
.x-facet--card .x-facet {
|
|
456
456
|
--x-size-border-radius-facet-default: var(--x-size-border-radius-facet-card);
|
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.358",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"@empathyco/x-types": "^10.0.0-alpha.63",
|
|
77
77
|
"@empathyco/x-utils": "^1.0.0-alpha.19",
|
|
78
78
|
"@vue/devtools-api": "~6.5.0",
|
|
79
|
+
"@vueuse/core": "~9.13.0",
|
|
79
80
|
"rxjs": "~7.8.0",
|
|
80
81
|
"tslib": "~2.5.0",
|
|
81
82
|
"vue-class-component": "~7.2.6",
|
|
@@ -107,7 +108,6 @@
|
|
|
107
108
|
"@vue/cli-service": "~5.0.4",
|
|
108
109
|
"@vue/test-utils": "~1.0.3",
|
|
109
110
|
"@vue/vue2-jest": "~27.0.0-alpha.3",
|
|
110
|
-
"@vueuse/core": "~9.13.0",
|
|
111
111
|
"autoprefixer": "~10.4.4",
|
|
112
112
|
"convert-source-map": "~2.0.0",
|
|
113
113
|
"cypress": "~12.9.0",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"access": "public",
|
|
144
144
|
"directory": "dist"
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "70912f9cbfb4e0d921e22ed13d4107a2786bfce8"
|
|
147
147
|
}
|