kwant-ui 3.36.0-alpha.0 → 3.37.0-alpha.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.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.36.0-alpha.0",
3
+ "version": "3.33.7-dev.5",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.36.0-alpha.0",
3
+ "version": "3.37.0-alpha.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
package/themes/colors.ts CHANGED
@@ -213,8 +213,9 @@ const colors: Color = {
213
213
  thumb: '#9CACC0',
214
214
  },
215
215
  transparent: {
216
- blueHover: 'rgba(16, 63, 232, 0.06)'
217
- }
216
+ blueHover: 'rgba(16, 63, 232, 0.06)',
217
+ transparent: '#ffffff78',
218
+ },
218
219
  };
219
220
 
220
221
  export { colors };
package/themes/types.ts CHANGED
@@ -236,6 +236,7 @@ export interface Scrollbar {
236
236
 
237
237
  export interface Transparent {
238
238
  blueHover: string;
239
+ transparent: string;
239
240
  }
240
241
 
241
242
  export interface Button {