@neovici/cosmoz-tabs 9.1.0 → 9.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cosmoz-tabs",
3
- "version": "9.1.0",
3
+ "version": "9.1.2",
4
4
  "description": "A multi views container element that allow navigation between the views using tabs or an accordion.",
5
5
  "keywords": [
6
6
  "web-components"
@@ -96,7 +96,7 @@
96
96
  "@web/storybook-builder": "^0.1.16",
97
97
  "@web/storybook-framework-web-components": "^0.1.2",
98
98
  "storybook": "^7.6.19",
99
- "esbuild": "^0.24.0",
99
+ "esbuild": "^0.25.0",
100
100
  "http-server": "^14.1.1",
101
101
  "rollup-plugin-esbuild": "^6.1.1",
102
102
  "husky": "^9.0.0",
@@ -78,7 +78,7 @@ const style = css`
78
78
  box-sizing: border-box;
79
79
  background-color: var(--cosmoz-tab-card-bg-color, white);
80
80
  border-radius: 10px;
81
- border: 1px solid rgb(229, 230, 236);
81
+ border: 1px solid var(--cosmoz-tab-card-border-color, rgb(229, 230, 236));
82
82
  margin: 10px;
83
83
  align-self: flex-start;
84
84
  padding: var(--cosmoz-tab-card-padding, 0);
@@ -118,7 +118,7 @@ const style = css`
118
118
  font-size: 15px;
119
119
  font-weight: 400;
120
120
  flex: 1;
121
- color: rgb(0, 0, 0);
121
+ color: var(--cosmoz-tab-card-heading-color, rgb(0, 0, 0));
122
122
  }
123
123
 
124
124
  .collapse-icon {