@moises.ai/design-system 4.16.9 → 4.16.10

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.16.9",
3
+ "version": "4.16.10",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -137,4 +137,16 @@
137
137
 
138
138
  .contentPanel {
139
139
  outline: none;
140
+ }
141
+
142
+ .triggerWithoutClick {
143
+ color: var(--neutral-alpha-11);
144
+
145
+ &:hover {
146
+ color: var(--neutral-alpha-12);
147
+ }
148
+
149
+ &:active {
150
+ color: var(--neutral-alpha-11);
151
+ }
140
152
  }
@@ -120,7 +120,8 @@ export const ControlledOpen = {
120
120
  <ToolsDropdown
121
121
  open={isOpen}
122
122
  onOpenChange={setIsOpen}
123
- trigger={<Text color='blue'>Controlled</Text>}
123
+ trigger={<Text>Controlled</Text>}
124
+ showSeparator={false}
124
125
  >
125
126
  <Text size="2">Controlled menu content</Text>
126
127
  </ToolsDropdown>