@moises.ai/design-system 4.19.0 → 4.19.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": "@moises.ai/design-system",
3
- "version": "4.19.0",
3
+ "version": "4.19.2",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -116,7 +116,7 @@
116
116
  --neutral-8: #565F69;
117
117
  --neutral-9: #656C77;
118
118
  --neutral-10: #737884;
119
- --neutral-11: #A7AFBA;
119
+ --neutral-11: #ACB4BF;
120
120
  --neutral-12: #E6EAF0;
121
121
 
122
122
  --neutral-alpha-1: rgba(207, 234, 236, 0.02);
@@ -129,7 +129,7 @@
129
129
  --neutral-alpha-8: rgba(204, 231, 255, 0.36);
130
130
  --neutral-alpha-9: rgba(207, 226, 253, 0.43);
131
131
  --neutral-alpha-10: rgba(218, 229, 253, 0.48);
132
- --neutral-alpha-11: rgba(229, 240, 254, 0.71);
132
+ --neutral-alpha-11: rgba(229, 240, 254, 0.75);
133
133
  --neutral-alpha-12: rgba(242, 247, 255, 0.94);
134
134
 
135
135
  /* Neutral Extras */
@@ -88,10 +88,8 @@ export const InstrumentSelectCard = forwardRef(function InstrumentSelectCard(
88
88
  className={classNames(styles.card, className)}
89
89
  {...props}
90
90
  >
91
- {(Icon || showSpinner) && (
92
- <>
93
- {showSpinner ? <Spinner size="2" state='1'/> : <span className={styles.cardIcon}> {renderIcon()} </span>}
94
- </>
91
+ {(Icon) && (
92
+ <span className={styles.cardIcon}> {renderIcon()} </span>
95
93
  )}
96
94
  {text != null && <span className={styles.cardText}>{text}</span>}
97
95
  {locked && <LockIcon width={12} height={12} className={styles.lockIcon} />}