@elastic/eui-theme-common 6.0.0 → 7.1.0

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.
@@ -234,6 +234,7 @@ export declare type _EuiThemeBorderColors = {
234
234
  borderBaseDanger: ColorModeSwitch;
235
235
  borderBasePlain: ColorModeSwitch;
236
236
  borderBaseSubdued: ColorModeSwitch;
237
+ borderBaseProminent: ColorModeSwitch;
237
238
  borderBaseDisabled: ColorModeSwitch;
238
239
  /**
239
240
  * Border used for floating elements on dark mode (e.g. popovers or tooltips)
@@ -241,8 +242,8 @@ export declare type _EuiThemeBorderColors = {
241
242
  */
242
243
  borderBaseFloating: ColorModeSwitch;
243
244
  borderBaseFormsColorSwatch: ColorModeSwitch;
244
- borderBaseFormsControl: ColorModeSwitch;
245
245
  borderInteractiveFormsHoverPlain: ColorModeSwitch;
246
+ borderInteractiveFormsHoverProminent: ColorModeSwitch;
246
247
  borderInteractiveFormsHoverDanger: ColorModeSwitch;
247
248
  borderStrongPrimary: ColorModeSwitch;
248
249
  borderStrongAccent: ColorModeSwitch;
@@ -105,6 +105,7 @@ export declare type _EuiThemeComponentColors = {
105
105
  tableRowBackgroundMarked: ColorModeSwitch;
106
106
  tableRowBackgroundMarkedHover: ColorModeSwitch;
107
107
  tableCellSortableIconColor: ColorModeSwitch;
108
+ tableFooterBackground: ColorModeSwitch;
108
109
  tooltipBackground: ColorModeSwitch;
109
110
  tooltipBorder: ColorModeSwitch;
110
111
  tooltipBorderFloating: ColorModeSwitch;
@@ -234,6 +234,7 @@ export declare type _EuiThemeBorderColors = {
234
234
  borderBaseDanger: ColorModeSwitch;
235
235
  borderBasePlain: ColorModeSwitch;
236
236
  borderBaseSubdued: ColorModeSwitch;
237
+ borderBaseProminent: ColorModeSwitch;
237
238
  borderBaseDisabled: ColorModeSwitch;
238
239
  /**
239
240
  * Border used for floating elements on dark mode (e.g. popovers or tooltips)
@@ -241,8 +242,8 @@ export declare type _EuiThemeBorderColors = {
241
242
  */
242
243
  borderBaseFloating: ColorModeSwitch;
243
244
  borderBaseFormsColorSwatch: ColorModeSwitch;
244
- borderBaseFormsControl: ColorModeSwitch;
245
245
  borderInteractiveFormsHoverPlain: ColorModeSwitch;
246
+ borderInteractiveFormsHoverProminent: ColorModeSwitch;
246
247
  borderInteractiveFormsHoverDanger: ColorModeSwitch;
247
248
  borderStrongPrimary: ColorModeSwitch;
248
249
  borderStrongAccent: ColorModeSwitch;
@@ -105,6 +105,7 @@ export declare type _EuiThemeComponentColors = {
105
105
  tableRowBackgroundMarked: ColorModeSwitch;
106
106
  tableRowBackgroundMarkedHover: ColorModeSwitch;
107
107
  tableCellSortableIconColor: ColorModeSwitch;
108
+ tableFooterBackground: ColorModeSwitch;
108
109
  tooltipBackground: ColorModeSwitch;
109
110
  tooltipBorder: ColorModeSwitch;
110
111
  tooltipBorderFloating: ColorModeSwitch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elastic/eui-theme-common",
3
- "version": "6.0.0",
3
+ "version": "7.1.0",
4
4
  "description": "EUI theme common",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "scripts": {
@@ -13,7 +13,8 @@
13
13
  "lint": "yarn tsc --noEmit && yarn lint-es && yarn lint-sass",
14
14
  "lint-es": "eslint --cache src/**/*.ts --max-warnings 0",
15
15
  "lint-sass": "yarn stylelint \"**/*.scss\" --quiet-deprecation-warnings",
16
- "test": "jest ./src",
16
+ "test": "yarn test-unit",
17
+ "test-unit": "jest ./src --passWithNoTests",
17
18
  "pre-push": "yarn lint && yarn test"
18
19
  },
19
20
  "repository": {