@moises.ai/design-system 4.17.15 → 4.18.1

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.17.15",
3
+ "version": "4.18.1",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -10,8 +10,15 @@
10
10
  }
11
11
 
12
12
  .root[data-disabled] {
13
- opacity: 0.5;
14
- cursor: not-allowed;
13
+ cursor: default;
14
+ opacity: 1;
15
+ filter: none;
16
+ }
17
+
18
+ .root[data-disabled] .track {
19
+ background-color: #212225;
20
+ opacity: 1;
21
+ filter: none;
15
22
  }
16
23
 
17
24
  .track {
@@ -33,6 +40,7 @@
33
40
  .thumb {
34
41
  position: relative;
35
42
  display: block;
43
+ box-sizing: border-box;
36
44
  width: 18px;
37
45
  height: 10px;
38
46
  background: var(--white, #fff);
@@ -49,5 +57,16 @@
49
57
  }
50
58
 
51
59
  .root[data-disabled] .thumb {
52
- cursor: not-allowed;
60
+ background-color: #18191b;
61
+ border: 1px solid #43484e;
62
+ box-shadow: none;
63
+ cursor: default;
64
+ opacity: 1;
65
+ filter: none;
66
+ }
67
+
68
+ .root[data-disabled] .range {
69
+ background-color: #303236;
70
+ opacity: 1;
71
+ filter: none;
53
72
  }
@@ -0,0 +1,10 @@
1
+ export const ChordGrid4Icon = ({ width = 16, height = 16, className, ...props }) => (
2
+ <svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} viewBox="0 0 16 16" fill="none" className={className} {...props}>
3
+ <path
4
+ d="M6.00016 2.33337V6.66671M10.0002 2.33337V6.66671M6.00016 9.33337V13.6666M10.0002 9.33337V13.6666M3.3335 6.66671H12.6668C13.2191 6.66671 13.6668 6.21899 13.6668 5.66671V3.33337C13.6668 2.78109 13.2191 2.33337 12.6668 2.33337H3.3335C2.78121 2.33337 2.3335 2.78109 2.3335 3.33337V5.66671C2.3335 6.21899 2.78121 6.66671 3.3335 6.66671ZM3.3335 13.6666H12.6668C13.2191 13.6666 13.6668 13.2189 13.6668 12.6666V10.3334C13.6668 9.78109 13.2191 9.33337 12.6668 9.33337H3.3335C2.78121 9.33337 2.3335 9.78109 2.3335 10.3334V12.6666C2.3335 13.2189 2.78121 13.6666 3.3335 13.6666Z"
5
+ stroke="currentColor"
6
+ strokeMiterlimit="10"/>
7
+ </svg>
8
+ )
9
+
10
+ ChordGrid4Icon.displayName = 'ChordGrid4Icon'
package/src/icons.jsx CHANGED
@@ -447,3 +447,4 @@ export { ChordGrid3Icon } from './icons/ChordGrid3Icon'
447
447
  export { ChordDiagramGridIcon } from './icons/ChordDiagramGridIcon'
448
448
  export { DynamicMicrophone2Icon } from './icons/DynamicMicrophone2Icon'
449
449
  export { Sections2Icon } from './icons/Sections2Icon'
450
+ export { ChordGrid4Icon } from './icons/ChordGrid4Icon'