@farm-investimentos/front-mfe-components 12.1.1 → 12.1.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": "@farm-investimentos/front-mfe-components",
3
- "version": "12.1.1",
3
+ "version": "12.1.2",
4
4
  "author": "farm investimentos",
5
5
  "private": false,
6
6
  "main": "./dist/front-mfe-components.common.js",
@@ -8,6 +8,7 @@
8
8
  .farm-contextmenu__popup {
9
9
  visibility: hidden;
10
10
  opacity: 0;
11
+ padding: 2px;
11
12
  position: absolute;
12
13
  display: block;
13
14
  overflow-y: auto;
@@ -18,11 +19,10 @@
18
19
  transform-origin: left top;
19
20
  transition: visibility 0.1s linear, opacity 0.1s linear;
20
21
 
21
- border-radius: 4px;
22
22
  left: 0;
23
23
 
24
- background: #FFFFFF;
25
- border: 1px solid var(--farm-stroke-base);
24
+ background: #ffffff;
25
+
26
26
  @include addShadow;
27
27
  border-radius: 5px;
28
28
 
@@ -30,4 +30,4 @@
30
30
  opacity: 1;
31
31
  visibility: visible;
32
32
  }
33
- }
33
+ }
@@ -34,7 +34,7 @@ export const Primary = () => ({
34
34
  ],
35
35
  };
36
36
  },
37
- template: `<div style="width: 120px">
37
+ template: `<div style="width: 120px;">
38
38
  <farm-select v-model="v" :items="items" />
39
39
  v-model: {{ v }}
40
40
  </div>`,
@@ -11,6 +11,7 @@
11
11
  border-radius: 5px;
12
12
  padding: 8px;
13
13
  margin-bottom: 4px;
14
+ background-color: white;
14
15
 
15
16
  >button {
16
17
  display: flex;
@@ -19,7 +19,7 @@ export default {
19
19
  docs: {
20
20
  description: {
21
21
  component: `Text field v2<br />
22
- selector: <em>farm-texfield-v2</em><br />
22
+ selector: <em>farm-textfield-v2</em><br />
23
23
  <span style="color: var(--farm-primary-base);">ready for use</span>
24
24
  `,
25
25
  },
@@ -38,7 +38,7 @@ export const Primary = () => ({
38
38
  v: 'input text',
39
39
  };
40
40
  },
41
- template: `<div style="width: 480px">
41
+ template: `<div style="width: 480px;">
42
42
  <farm-textfield-v2 v-model="v" />
43
43
  v-model: {{ v }}
44
44
  </div>`,