@empathyco/x-components 3.0.0-alpha.232 → 3.0.0-alpha.234
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/deprecated-full-theme.css +22 -22
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.234](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.233...@empathyco/x-components@3.0.0-alpha.234) (2022-11-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
15
|
+
## [3.0.0-alpha.233](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.232...@empathyco/x-components@3.0.0-alpha.233) (2022-11-28)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
18
|
+
|
|
19
|
+
# Change Log
|
|
20
|
+
|
|
21
|
+
All notable changes to this project will be documented in this file. See
|
|
22
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
23
|
+
|
|
6
24
|
## [3.0.0-alpha.232](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.231...@empathyco/x-components@3.0.0-alpha.232) (2022-11-28)
|
|
7
25
|
|
|
8
26
|
### Features
|
|
@@ -18,6 +36,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
18
36
|
|
|
19
37
|
## [3.0.0-alpha.231](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.230...@empathyco/x-components@3.0.0-alpha.231) (2022-11-28)
|
|
20
38
|
|
|
39
|
+
### ⚠ BREAKING CHANGES
|
|
40
|
+
|
|
41
|
+
- **components:** Renamed prop `animation` of `BaseResultImage` to `loadAnimation`.
|
|
42
|
+
|
|
21
43
|
### Features
|
|
22
44
|
|
|
23
45
|
- show next result image on hover (#863)
|
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
3
|
-
--x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
|
|
4
|
-
--x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
|
|
5
|
-
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
6
|
-
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.x-button--card.x-button,
|
|
10
|
-
.x-button--card .x-button {
|
|
11
|
-
--x-size-border-radius-button-default: var(--x-size-border-radius-button-card);
|
|
12
|
-
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-card);
|
|
13
|
-
--x-size-border-radius-top-right-button-default: var(
|
|
14
|
-
--x-size-border-radius-top-right-button-card
|
|
15
|
-
);
|
|
16
|
-
--x-size-border-radius-bottom-right-button-default: var(
|
|
17
|
-
--x-size-border-radius-bottom-right-button-card
|
|
18
|
-
);
|
|
19
|
-
--x-size-border-radius-bottom-left-button-default: var(
|
|
20
|
-
--x-size-border-radius-bottom-left-button-card
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
1
|
:root {
|
|
24
2
|
--x-color-background-button-default: var(--x-color-base-lead);
|
|
25
3
|
--x-color-border-button-default: var(--x-color-background-button-default);
|
|
@@ -105,6 +83,28 @@
|
|
|
105
83
|
margin-right: var(--x-size-gap-button-default);
|
|
106
84
|
}
|
|
107
85
|
}
|
|
86
|
+
:root {
|
|
87
|
+
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
88
|
+
--x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
|
|
89
|
+
--x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
|
|
90
|
+
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
91
|
+
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.x-button--card.x-button,
|
|
95
|
+
.x-button--card .x-button {
|
|
96
|
+
--x-size-border-radius-button-default: var(--x-size-border-radius-button-card);
|
|
97
|
+
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-card);
|
|
98
|
+
--x-size-border-radius-top-right-button-default: var(
|
|
99
|
+
--x-size-border-radius-top-right-button-card
|
|
100
|
+
);
|
|
101
|
+
--x-size-border-radius-bottom-right-button-default: var(
|
|
102
|
+
--x-size-border-radius-bottom-right-button-card
|
|
103
|
+
);
|
|
104
|
+
--x-size-border-radius-bottom-left-button-default: var(
|
|
105
|
+
--x-size-border-radius-bottom-left-button-card
|
|
106
|
+
);
|
|
107
|
+
}
|
|
108
108
|
:root {
|
|
109
109
|
--x-color-background-button-ghost: transparent;
|
|
110
110
|
--x-color-border-button-ghost: transparent;
|
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.234",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"cypress:open:component": "cypress open-ct"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@empathyco/x-adapter": "^8.0.0-alpha.
|
|
67
|
-
"@empathyco/x-deep-merge": "^1.3.0-alpha.
|
|
66
|
+
"@empathyco/x-adapter": "^8.0.0-alpha.12",
|
|
67
|
+
"@empathyco/x-deep-merge": "^1.3.0-alpha.25",
|
|
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.
|
|
71
|
-
"@empathyco/x-utils": "^1.0.0-alpha.
|
|
70
|
+
"@empathyco/x-types": "^10.0.0-alpha.43",
|
|
71
|
+
"@empathyco/x-utils": "^1.0.0-alpha.11",
|
|
72
72
|
"@vue/devtools-api": "~6.2.1",
|
|
73
73
|
"rxjs": "~7.4.0",
|
|
74
74
|
"tslib": "~2.3.0",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@cypress/vue": "~2.2.4",
|
|
86
86
|
"@cypress/webpack-dev-server": "~1.8.4",
|
|
87
|
-
"@empathyco/x-adapter-platform": "^1.0.0-alpha.
|
|
88
|
-
"@empathyco/x-tailwindcss": "^0.2.0-alpha.
|
|
87
|
+
"@empathyco/x-adapter-platform": "^1.0.0-alpha.45",
|
|
88
|
+
"@empathyco/x-tailwindcss": "^0.2.0-alpha.31",
|
|
89
89
|
"@microsoft/api-documenter": "~7.15.3",
|
|
90
90
|
"@microsoft/api-extractor": "~7.19.4",
|
|
91
91
|
"@rollup/plugin-commonjs": "~21.0.1",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"access": "public",
|
|
136
136
|
"directory": "dist"
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "67ec7f4ef09aff0c212a8cf1e37e33988ea007a2"
|
|
139
139
|
}
|