@platformatic/ui-components 0.7.29 → 0.7.30

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/index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Platformatic UI Components</title>
7
- <script type="module" crossorigin src="/assets/index-B0ZIeDQx.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-bdsQmI5i.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-i07-ljlS.css">
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@platformatic/ui-components",
3
3
  "description": "Platformatic UI Components",
4
- "version": "0.7.29",
4
+ "version": "0.7.30",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -21,7 +21,7 @@
21
21
  @apply border border-transparent rounded-full mr-2;
22
22
  }
23
23
  .menu {
24
- @apply absolute border-solid border p-0 mt-8 rounded-md z-10 text-sm min-w-[190px];
24
+ @apply absolute border-solid border p-0 mt-8 rounded-md z-10 text-sm;
25
25
  }
26
26
  .item {
27
27
  @apply hover:cursor-pointer;
@@ -47,4 +47,8 @@
47
47
 
48
48
  .apply-opacity-30 {
49
49
  @apply opacity-30;
50
- }
50
+ }
51
+
52
+ .apply-opacity-15 {
53
+ @apply opacity-15;
54
+ }
@@ -70,12 +70,13 @@ export const MARGIN_8 = 8
70
70
  export const MARGIN_0 = 0
71
71
 
72
72
  export const OPACITY_10 = 10
73
+ export const OPACITY_15 = 15
73
74
  export const OPACITY_20 = 20
74
75
  export const OPACITY_30 = 30
75
76
  export const OPACITY_60 = 60
76
77
  export const OPACITY_70 = 70
77
78
  export const OPACITY_100 = 100
78
- export const OPACITIES = [OPACITY_10, OPACITY_20, OPACITY_30, OPACITY_60, OPACITY_70, OPACITY_100]
79
+ export const OPACITIES = [OPACITY_10, OPACITY_15, OPACITY_20, OPACITY_30, OPACITY_60, OPACITY_70, OPACITY_100]
79
80
 
80
81
  export const DIRECTION_BOTTOM = 'bottom'
81
82
  export const DIRECTION_LEFT = 'left'