@farm-investimentos/front-mfe-components 11.4.4 → 11.4.6
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/front-mfe-components.common.js +100 -102
- package/dist/front-mfe-components.common.js.map +1 -1
- package/dist/front-mfe-components.css +1 -1
- package/dist/front-mfe-components.umd.js +100 -102
- package/dist/front-mfe-components.umd.js.map +1 -1
- package/dist/front-mfe-components.umd.min.js +1 -1
- package/dist/front-mfe-components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Icon/Icon.scss +0 -4
- package/src/components/Icon/Icon.stories.js +3 -1
- package/src/components/Icon/icons_list.ts +1 -10
- package/src/components/Typography/OverlayText/OverlayText.vue +1 -6
- package/src/configurations/_theme-colors.scss +8 -1
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { withDesign } from 'storybook-addon-designs';
|
|
2
|
+
import Icon from './Icon.vue';
|
|
2
3
|
import sizes from '../../configurations/sizes';
|
|
3
4
|
import baseThemeColors from '../../configurations/_theme-colors-base.scss';
|
|
4
5
|
import iconsList from './icons_list';
|
|
@@ -9,6 +10,7 @@ import('./Icons.stories.scss');
|
|
|
9
10
|
export default {
|
|
10
11
|
title: 'Display/Icons',
|
|
11
12
|
decorators: [withDesign],
|
|
13
|
+
component: Icon,
|
|
12
14
|
parameters: {
|
|
13
15
|
viewMode: 'docs',
|
|
14
16
|
docs: {
|
|
@@ -32,7 +34,7 @@ export const Atom = () => ({
|
|
|
32
34
|
export const Colors = () => ({
|
|
33
35
|
data() {
|
|
34
36
|
return {
|
|
35
|
-
colors: [...colors
|
|
37
|
+
colors: [...colors],
|
|
36
38
|
};
|
|
37
39
|
},
|
|
38
40
|
template: `<div class="icons-container">
|
|
@@ -61,9 +61,7 @@ export default [
|
|
|
61
61
|
'alpha',
|
|
62
62
|
'alphabetical',
|
|
63
63
|
'altimeter',
|
|
64
|
-
|
|
65
|
-
'amazon-alexa',
|
|
66
|
-
'amazon-drive',
|
|
64
|
+
|
|
67
65
|
'ambulance',
|
|
68
66
|
'amplifier',
|
|
69
67
|
'anchor',
|
|
@@ -198,7 +196,6 @@ export default [
|
|
|
198
196
|
'autorenew',
|
|
199
197
|
'av-timer',
|
|
200
198
|
'axe',
|
|
201
|
-
'azure',
|
|
202
199
|
'baby',
|
|
203
200
|
'baby-buggy',
|
|
204
201
|
'backburger',
|
|
@@ -215,7 +212,6 @@ export default [
|
|
|
215
212
|
'barrel',
|
|
216
213
|
'baseball',
|
|
217
214
|
'baseball-bat',
|
|
218
|
-
'basecamp',
|
|
219
215
|
'basket',
|
|
220
216
|
'basket-fill',
|
|
221
217
|
'basket-unfill',
|
|
@@ -916,10 +912,7 @@ export default [
|
|
|
916
912
|
'eye-settings-outline',
|
|
917
913
|
'eyedropper',
|
|
918
914
|
'eyedropper-variant',
|
|
919
|
-
'face',
|
|
920
|
-
'face-profile',
|
|
921
915
|
'facebook',
|
|
922
|
-
'facebook-box',
|
|
923
916
|
'facebook-messenger',
|
|
924
917
|
'factory',
|
|
925
918
|
'fan',
|
|
@@ -1550,8 +1543,6 @@ export default [
|
|
|
1550
1543
|
'microphone-variant',
|
|
1551
1544
|
'microphone-variant-off',
|
|
1552
1545
|
'microscope',
|
|
1553
|
-
'microsoft',
|
|
1554
|
-
'microsoft-dynamics',
|
|
1555
1546
|
'midi',
|
|
1556
1547
|
'midi-port',
|
|
1557
1548
|
'minecraft',
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<farm-typography
|
|
3
|
-
:weight="400"
|
|
4
|
-
size="sm"
|
|
5
|
-
:class="{ [`farm-overlaytext`]: true }"
|
|
6
|
-
v-bind="$attrs"
|
|
7
|
-
>
|
|
2
|
+
<farm-typography v-bind="$attrs" size="10px" class="farm-overlaytext" :weight="400">
|
|
8
3
|
<slot></slot>
|
|
9
4
|
</farm-typography>
|
|
10
5
|
</template>
|
|
@@ -52,6 +52,12 @@ $extra-2: (
|
|
|
52
52
|
darken: #880E4F,
|
|
53
53
|
);
|
|
54
54
|
|
|
55
|
+
$gray: (
|
|
56
|
+
base: #858585,
|
|
57
|
+
lighten: #D6D6D6,
|
|
58
|
+
darken: #5C5C5C,
|
|
59
|
+
);
|
|
60
|
+
|
|
55
61
|
$theme-colors: (
|
|
56
62
|
"primary": $primary,
|
|
57
63
|
"secondary": $secondary,
|
|
@@ -61,7 +67,8 @@ $theme-colors: (
|
|
|
61
67
|
"warning": $warning,
|
|
62
68
|
"success": $success,
|
|
63
69
|
"extra-1": $extra-1,
|
|
64
|
-
"extra-2": $extra-2
|
|
70
|
+
"extra-2": $extra-2,
|
|
71
|
+
"gray": $gray
|
|
65
72
|
);
|
|
66
73
|
|
|
67
74
|
$text-colors: (
|