@farm-investimentos/front-mfe-components-vue3 0.5.2 → 0.6.0
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 +104 -35
- 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 +104 -35
- 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 +14 -13
- package/src/components/AlertReload/AlertReload.stories.js +2 -0
- package/src/components/Buttons/ConfirmButton/ConfirmButton.stories.js +1 -1
- package/src/components/Buttons/RemoveButton/RemoveButton.stories.js +4 -4
- package/src/components/Checkbox/Checkbox.stories.js +1 -2
- package/src/components/Chip/Chip.stories.js +1 -1
- package/src/components/DataTableEmptyWrapper/DataTableEmptyWrapper.stories.js +2 -3
- package/src/components/DataTableHeader/DataTableHeader.stories.js +0 -2
- package/src/components/DataTablePaginator/DataTablePaginator.stories.js +6 -4
- package/src/components/DatePicker/DatePicker.stories.js +60 -9
- package/src/components/DatePicker/DatePicker.vue +82 -12
- package/src/components/DialogHeader/DialogHeader.stories.js +1 -1
- package/src/components/IdCaption/IdCaption.stories.js +6 -6
- package/src/components/InputDecimalFormatter/InputDecimalFormatter.stories.js +2 -10
- package/src/components/ListItem/ListItem.stories.js +0 -2
- package/src/components/Loader/Loader.stories.ts +2 -0
- package/src/components/Logger/Logger.stories.js +3 -3
- package/src/components/ManagersList/ManagersList.stories.js +3 -3
- package/src/components/ModalPromptUser/ModalPromptUser.stories.js +2 -3
- package/src/components/MultipleFilePicker/MultipleFilePicker.stories.js +2 -2
- package/src/components/ProgressBar/ProgressBar.stories.js +2 -1
- package/src/components/PromptUserToConfirm/PromptUserToConfirm.stories.js +2 -1
- package/src/components/RangeDatePicker/RangeDatePicker.stories.js +2 -2
- package/src/components/TextFieldV2/TextFieldV2.scss +6 -0
- package/src/components/TextFieldV2/TextFieldV2.stories.js +21 -7
- package/src/components/TextFieldV2/TextFieldV2.vue +8 -1
- package/src/components/Typography/Typography.stories.js +0 -1
- package/src/components/layout/Box/Box.stories.js +0 -1
- package/src/components/layout/Col/Col.stories.js +8 -9
- package/src/components/layout/DisplayBreakpoints.mdx +111 -0
- package/src/components/layout/GridSystem.stories.js +0 -2
- package/src/components/layout/{PropsValues.stories.mdx → PropsValues.mdx} +11 -4
- package/src/components/layout/Row/Row.stories.js +0 -2
- package/src/examples/Colors.stories.js +1 -1
- package/src/examples/Dialog.stories.js +20 -16
- package/src/stories/Introduction.mdx +118 -0
- package/src/components/layout/DisplayBreakpoints.stories.mdx +0 -90
- package/src/stories/Introduction.stories.mdx +0 -118
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { Meta } from '@storybook/addon-docs';
|
|
2
|
-
import imageFile from './assets/logo_farmtech.svg';
|
|
3
|
-
|
|
4
|
-
<Meta title="Introduction" />
|
|
5
|
-
|
|
6
|
-
<style>
|
|
7
|
-
{`
|
|
8
|
-
.subheading {
|
|
9
|
-
--mediumdark: '#999999';
|
|
10
|
-
font-weight: 900;
|
|
11
|
-
font-size: 13px;
|
|
12
|
-
color: #999;
|
|
13
|
-
letter-spacing: 6px;
|
|
14
|
-
line-height: 24px;
|
|
15
|
-
text-transform: uppercase;
|
|
16
|
-
margin-bottom: 12px;
|
|
17
|
-
margin-top: 40px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.link-list {
|
|
21
|
-
display: grid;
|
|
22
|
-
grid-template-columns: 1fr;
|
|
23
|
-
grid-template-rows: 1fr 1fr;
|
|
24
|
-
row-gap: 10px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@media (min-width: 620px) {
|
|
28
|
-
.link-list {
|
|
29
|
-
row-gap: 20px;
|
|
30
|
-
column-gap: 20px;
|
|
31
|
-
grid-template-columns: 1fr 1fr;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@media all and (-ms-high-contrast:none) {
|
|
36
|
-
.link-list {
|
|
37
|
-
display: -ms-grid;
|
|
38
|
-
-ms-grid-columns: 1fr 1fr;
|
|
39
|
-
-ms-grid-rows: 1fr 1fr;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.link-item {
|
|
44
|
-
display: block;
|
|
45
|
-
padding: 20px 30px 20px 15px;
|
|
46
|
-
border: 1px solid #00000010;
|
|
47
|
-
border-radius: 5px;
|
|
48
|
-
transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
|
|
49
|
-
color: #333333;
|
|
50
|
-
display: flex;
|
|
51
|
-
align-items: flex-start;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.link-item:hover {
|
|
55
|
-
border-color: #1EA7FD50;
|
|
56
|
-
transform: translate3d(0, -3px, 0);
|
|
57
|
-
box-shadow: rgba(0, 0, 0, 0.08) 0 3px 10px 0;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.link-item:active {
|
|
61
|
-
border-color: #1EA7FD;
|
|
62
|
-
transform: translate3d(0, 0, 0);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.link-item strong {
|
|
66
|
-
font-weight: 700;
|
|
67
|
-
display: block;
|
|
68
|
-
margin-bottom: 2px;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.link-item img {
|
|
72
|
-
height: 40px;
|
|
73
|
-
width: 40px;
|
|
74
|
-
margin-right: 15px;
|
|
75
|
-
flex: none;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.link-item span {
|
|
79
|
-
font-size: 14px;
|
|
80
|
-
line-height: 20px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.tip {
|
|
84
|
-
display: inline-block;
|
|
85
|
-
border-radius: 1em;
|
|
86
|
-
font-size: 11px;
|
|
87
|
-
line-height: 12px;
|
|
88
|
-
font-weight: 700;
|
|
89
|
-
background: #E7FDD8;
|
|
90
|
-
color: #66BF3C;
|
|
91
|
-
padding: 4px 12px;
|
|
92
|
-
margin-right: 10px;
|
|
93
|
-
vertical-align: top;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.tip-wrapper {
|
|
97
|
-
font-size: 13px;
|
|
98
|
-
line-height: 20px;
|
|
99
|
-
margin-top: 40px;
|
|
100
|
-
margin-bottom: 40px;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.tip-wrapper code {
|
|
104
|
-
font-size: 12px;
|
|
105
|
-
display: inline-block;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
`}
|
|
110
|
-
</style>
|
|
111
|
-
|
|
112
|
-
# Welcome to Farmtech Storybook
|
|
113
|
-
|
|
114
|
-
<img src={imageFile} />
|
|
115
|
-
|
|
116
|
-
Here you can find the components from the Farmtech's Design System on the top of Vue 3.
|
|
117
|
-
|
|
118
|
-
Currrent version: {VERSION}
|