@capillarytech/blaze-ui 0.3.3-alpha.0 → 0.3.3

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.
@@ -338,12 +338,15 @@ export const selectStyles = css`
338
338
  padding-left: ${styledVars.SPACING_08};
339
339
  align-items: center;
340
340
  .cap-unified-select-confirm-button {
341
- background-color: ${styledVars.CAP_GREEN01};
341
+ background-color: ${styledVars.CAP_PRIMARY.base};
342
342
  height: 2.286rem;
343
343
  width: 6.714rem;
344
+ color: ${ styledVars.CAP_WHITE };
345
+ &:hover {
346
+ background-color: ${styledVars.CAP_PRIMARY.hover};
347
+ }
344
348
  &:disabled {
345
- background-color: ${styledVars.CAP_GREEN03};
346
- color: ${styledVars.CAP_WHITE};
349
+ background-color: ${styledVars.CAP_PRIMARY.disabled};};
347
350
  }
348
351
  }
349
352
  .cap-unified-select-cancel-button {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/blaze-ui",
3
3
  "author": "Capillary Technologies",
4
- "version": "0.3.3-alpha.0",
4
+ "version": "0.3.3",
5
5
  "description": "Capillary UI component library with Ant Design v5",
6
6
  "main": "./index.js",
7
7
  "sideEffects": [
@@ -40,7 +40,6 @@ export const CAP_PURPLE03 = "#f2e7fe";
40
40
  export const CAP_PURPLE04 = "#d4e1fc";
41
41
  export const CAP_GREEN01 = "#6bb56b";
42
42
  export const CAP_GREEN02 = "#ecf7ec";
43
- export const CAP_GREEN03 = "#a1d8a0";
44
43
 
45
44
  // Grey colors
46
45
  export const CAP_G01 = "#091e42";