@empathyco/x-components 3.0.0-alpha.265 → 3.0.0-alpha.267
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 +26 -0
- package/design-system/base.css +13 -13
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [3.0.0-alpha.267](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.266...@empathyco/x-components@3.0.0-alpha.267) (2023-01-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
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.266](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.265...@empathyco/x-components@3.0.0-alpha.266) (2023-01-02)
|
|
20
|
+
|
|
21
|
+
### Continuous Integration
|
|
22
|
+
|
|
23
|
+
- make Cypress cache depend on package. Make eslint cache restore last version if no exact match.
|
|
24
|
+
([2498972](https://github.com/empathyco/x/commit/24989726d8e5c6c3450b344fbbc623a3f7246b53)),
|
|
25
|
+
closes [EX-7721](https://searchbroker.atlassian.net/browse/EX-7721)
|
|
26
|
+
|
|
27
|
+
# Change Log
|
|
28
|
+
|
|
3
29
|
All notable changes to this project will be documented in this file. See
|
|
4
30
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
31
|
|
package/design-system/base.css
CHANGED
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
--x-size-border-radius-base-pill: 99999px;
|
|
6
6
|
--x-size-border-width-base: 1px;
|
|
7
7
|
}
|
|
8
|
+
:root {
|
|
9
|
+
--x-color-base-lead: #243d48;
|
|
10
|
+
--x-color-base-auxiliary: #BFE1EC;
|
|
11
|
+
--x-color-base-neutral-10: #1a1a1a;
|
|
12
|
+
--x-color-base-neutral-35: #595959;
|
|
13
|
+
--x-color-base-neutral-70: #b3b3b3;
|
|
14
|
+
--x-color-base-neutral-95: #f2f2f2;
|
|
15
|
+
--x-color-base-neutral-100: #ffffff;
|
|
16
|
+
--x-color-base-accent: #0086B2;
|
|
17
|
+
--x-color-base-enable: #00705c;
|
|
18
|
+
--x-color-base-disable: #e11f26;
|
|
19
|
+
--x-color-base-transparent: transparent;
|
|
20
|
+
}
|
|
8
21
|
:root {
|
|
9
22
|
--x-size-base-01: 2px;
|
|
10
23
|
--x-size-base-02: 4px;
|
|
@@ -40,17 +53,4 @@
|
|
|
40
53
|
--x-size-line-height-base-s: 16px;
|
|
41
54
|
--x-size-line-height-base-m: 24px;
|
|
42
55
|
--x-size-line-height-base-l: 32px;
|
|
43
|
-
}
|
|
44
|
-
:root {
|
|
45
|
-
--x-color-base-lead: #243d48;
|
|
46
|
-
--x-color-base-auxiliary: #BFE1EC;
|
|
47
|
-
--x-color-base-neutral-10: #1a1a1a;
|
|
48
|
-
--x-color-base-neutral-35: #595959;
|
|
49
|
-
--x-color-base-neutral-70: #b3b3b3;
|
|
50
|
-
--x-color-base-neutral-95: #f2f2f2;
|
|
51
|
-
--x-color-base-neutral-100: #ffffff;
|
|
52
|
-
--x-color-base-accent: #0086B2;
|
|
53
|
-
--x-color-base-enable: #00705c;
|
|
54
|
-
--x-color-base-disable: #e11f26;
|
|
55
|
-
--x-color-base-transparent: transparent;
|
|
56
56
|
}
|
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.267",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@bahmutov/cypress-esbuild-preprocessor": "~2.1.5",
|
|
90
90
|
"@cypress/vue": "~2.2.4",
|
|
91
91
|
"@empathyco/x-adapter-platform": "^1.0.0-alpha.50",
|
|
92
|
-
"@empathyco/x-tailwindcss": "^0.2.0-alpha.
|
|
92
|
+
"@empathyco/x-tailwindcss": "^0.2.0-alpha.40",
|
|
93
93
|
"@microsoft/api-documenter": "~7.19.27",
|
|
94
94
|
"@microsoft/api-extractor": "~7.19.4",
|
|
95
95
|
"@rollup/plugin-commonjs": "~21.0.1",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@vue/test-utils": "~1.0.3",
|
|
106
106
|
"@vue/vue2-jest": "~27.0.0-alpha.3",
|
|
107
107
|
"autoprefixer": "~10.4.4",
|
|
108
|
-
"cypress": "~12.
|
|
108
|
+
"cypress": "~12.2.0",
|
|
109
109
|
"esbuild": "0.15.16",
|
|
110
110
|
"glob": "~7.1.6",
|
|
111
111
|
"jest": "~27.3.1",
|
|
@@ -138,5 +138,5 @@
|
|
|
138
138
|
"access": "public",
|
|
139
139
|
"directory": "dist"
|
|
140
140
|
},
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "af9e19db946dcae28eea8428ec456ead42c3a625"
|
|
142
142
|
}
|