linear-react-components-ui 1.1.2-beta.9 → 1.1.3-beta.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/.gitlab-ci.yml +1 -0
- package/.vscode/settings.json +10 -1
- package/lib/@types/SizePixels.d.ts +1 -1
- package/lib/assets/styles/button.scss +11 -9
- package/lib/assets/styles/checkbox.scss +45 -38
- package/lib/assets/styles/colors.scss +3 -1
- package/lib/assets/styles/commons.scss +1 -0
- package/lib/assets/styles/dialog.scss +27 -10
- package/lib/assets/styles/error.scss +9 -0
- package/lib/assets/styles/fieldset.scss +3 -0
- package/lib/assets/styles/gridlayout.scss +0 -2
- package/lib/assets/styles/hint.scss +21 -0
- package/lib/assets/styles/icon.scss +4 -31
- package/lib/assets/styles/input.scss +7 -7
- package/lib/assets/styles/multiSelect.scss +6 -1
- package/lib/assets/styles/radio.scss +37 -35
- package/lib/assets/styles/select.scss +13 -7
- package/lib/assets/styles/table.scss +2 -1
- package/lib/assets/styles/tabs.scss +3 -0
- package/lib/buttons/DefaultButton.js +30 -11
- package/lib/buttons/types.d.ts +1 -0
- package/lib/checkbox/Label.js +13 -4
- package/lib/checkbox/index.d.ts +2 -2
- package/lib/checkbox/index.js +23 -18
- package/lib/checkbox/types.d.ts +2 -1
- package/lib/dialog/base/Content.js +1 -0
- package/lib/dialog/base/Header.js +4 -4
- package/lib/dialog/base/index.js +9 -6
- package/lib/drawer/Drawer.js +5 -4
- package/lib/drawer/Header.js +1 -1
- package/lib/dropdown/Popup.d.ts +1 -1
- package/lib/dropdown/Popup.js +5 -2
- package/lib/dropdown/types.d.ts +1 -0
- package/lib/fieldset/index.js +4 -2
- package/lib/fieldset/types.d.ts +2 -0
- package/lib/form/Field.d.ts +2 -0
- package/lib/form/FieldArray.d.ts +2 -0
- package/lib/form/FieldArray.js +12 -26
- package/lib/form/FieldNumber.d.ts +2 -0
- package/lib/form/FieldPeriod.d.ts +2 -0
- package/lib/form/helpers.d.ts +2 -0
- package/lib/form/index.d.ts +2 -0
- package/lib/form/index.js +6 -7
- package/lib/form/types.d.ts +5 -2
- package/lib/form/withFieldHOC.d.ts +2 -0
- package/lib/form/withFormSecurity.d.ts +2 -0
- package/lib/gridlayout/GridRow.js +10 -2
- package/lib/gridlayout/types.d.ts +1 -1
- package/lib/hint/helpers.d.ts +3 -0
- package/lib/hint/helpers.js +21 -0
- package/lib/hint/index.d.ts +2 -1
- package/lib/hint/index.js +9 -15
- package/lib/hint/types.d.ts +3 -0
- package/lib/icons/helper.d.ts +4 -0
- package/lib/icons/helper.js +5 -1
- package/lib/icons/index.d.ts +2 -3
- package/lib/icons/index.js +3 -10
- package/lib/icons/types.d.ts +9 -22
- package/lib/index.d.ts +0 -1
- package/lib/inputs/base/InputTextBase.d.ts +2 -0
- package/lib/inputs/base/InputTextBase.js +54 -8
- package/lib/inputs/base/Label.d.ts +14 -0
- package/lib/inputs/base/Label.js +35 -0
- package/lib/inputs/base/helpers.d.ts +3 -2
- package/lib/inputs/base/helpers.js +1 -8
- package/lib/inputs/base/types.d.ts +15 -2
- package/lib/inputs/date/Dialog.d.ts +2 -0
- package/lib/inputs/date/Dropdown.d.ts +2 -0
- package/lib/inputs/date/helpers.d.ts +2 -0
- package/lib/inputs/date/index.d.ts +2 -0
- package/lib/inputs/date/index.js +2 -0
- package/lib/inputs/date/types.d.ts +3 -0
- package/lib/inputs/errorMessage/index.d.ts +17 -0
- package/lib/inputs/errorMessage/index.js +26 -0
- package/lib/inputs/file/DefaultFile.d.ts +2 -0
- package/lib/inputs/file/DefaultFile.js +4 -2
- package/lib/inputs/file/DragDropFile.d.ts +2 -0
- package/lib/inputs/file/DragDropFile.js +4 -2
- package/lib/inputs/file/File.d.ts +2 -0
- package/lib/inputs/file/FileButtonSettings.d.ts +2 -0
- package/lib/inputs/file/helpers.d.ts +2 -0
- package/lib/inputs/file/index.d.ts +2 -0
- package/lib/inputs/file/types.d.ts +2 -0
- package/lib/inputs/inputHOC.d.ts +3 -1
- package/lib/inputs/mask/BaseMask.d.ts +3 -0
- package/lib/inputs/mask/Cnpj.d.ts +3 -0
- package/lib/inputs/mask/Cpf.d.ts +3 -0
- package/lib/inputs/mask/Cpf.js +0 -1
- package/lib/inputs/mask/Phone.d.ts +3 -0
- package/lib/inputs/mask/ZipCode.d.ts +3 -0
- package/lib/inputs/mask/helpers.d.ts +2 -1
- package/lib/inputs/mask/imaskHOC.d.ts +3 -1
- package/lib/inputs/mask/index.d.ts +3 -0
- package/lib/inputs/mask/types.d.ts +5 -1
- package/lib/inputs/multiSelect/ActionButtons.d.ts +2 -0
- package/lib/inputs/multiSelect/ActionButtons.js +10 -8
- package/lib/inputs/multiSelect/Dropdown.d.ts +2 -0
- package/lib/inputs/multiSelect/Dropdown.js +2 -6
- package/lib/inputs/multiSelect/helper.d.ts +2 -0
- package/lib/inputs/multiSelect/index.d.ts +2 -0
- package/lib/inputs/multiSelect/types.d.ts +2 -0
- package/lib/inputs/number/BaseNumber.d.ts +3 -1
- package/lib/inputs/number/Currency.d.ts +3 -1
- package/lib/inputs/number/Decimal.d.ts +3 -1
- package/lib/inputs/number/index.d.ts +3 -1
- package/lib/inputs/number/types.d.ts +3 -1
- package/lib/inputs/period/Dialog.d.ts +2 -0
- package/lib/inputs/period/Dropdown.d.ts +2 -0
- package/lib/inputs/period/PeriodList.d.ts +2 -0
- package/lib/inputs/period/helper.d.ts +2 -0
- package/lib/inputs/period/index.d.ts +2 -0
- package/lib/inputs/period/index.js +4 -1
- package/lib/inputs/period/types.d.ts +2 -0
- package/lib/inputs/search/index.d.ts +3 -1
- package/lib/inputs/select/ActionButtons.d.ts +3 -1
- package/lib/inputs/select/ActionButtons.js +18 -27
- package/lib/inputs/select/Dropdown.d.ts +3 -1
- package/lib/inputs/select/Dropdown.js +2 -6
- package/lib/inputs/select/helper.d.ts +3 -1
- package/lib/inputs/select/index.d.ts +2 -0
- package/lib/inputs/select/multiple/Selecteds.d.ts +3 -1
- package/lib/inputs/select/multiple/Selecteds.js +3 -5
- package/lib/inputs/select/multiple/index.d.ts +2 -0
- package/lib/inputs/select/multiple/index.js +38 -19
- package/lib/inputs/select/simple/index.d.ts +2 -0
- package/lib/inputs/select/simple/index.js +60 -31
- package/lib/inputs/select/types.d.ts +5 -2
- package/lib/inputs/textarea/index.d.ts +2 -0
- package/lib/inputs/textarea/types.d.ts +2 -0
- package/lib/inputs/types.d.ts +12 -5
- package/lib/internals/types.d.ts +5 -2
- package/lib/internals/withTooltip.d.ts +3 -2
- package/lib/internals/withTooltip.js +25 -10
- package/lib/list/Item.js +19 -6
- package/lib/menus/float/types.d.ts +1 -1
- package/lib/menus/sidenav/popup_menu_search/index.js +4 -3
- package/lib/menus/sidenav/types.d.ts +1 -1
- package/lib/table/HeaderColumn.d.ts +1 -1
- package/lib/table/HeaderColumn.js +5 -1
- package/lib/table/RowColumn.js +6 -8
- package/lib/table/types.d.ts +2 -0
- package/lib/tabs/context.js +1 -1
- package/lib/tabs/types.d.ts +3 -3
- package/lib/toolbar/types.d.ts +1 -0
- package/lib/uitour/index.d.ts +2 -1
- package/lib/uitour/index.js +57 -4
- package/lib/uitour/types.d.ts +9 -1
- package/package.json +4 -4
- package/.tool-versions +0 -1
- package/lib/assets/styles/textContent.scss +0 -9
- package/lib/menus/sidenav/popup_menu_help/index.js +0 -78
- package/lib/textContent/index.d.ts +0 -8
- package/lib/textContent/index.js +0 -30
package/.gitlab-ci.yml
CHANGED
package/.vscode/settings.json
CHANGED
|
@@ -4,9 +4,18 @@
|
|
|
4
4
|
"coverage": true,
|
|
5
5
|
"node_modules": true,
|
|
6
6
|
"scripts": true,
|
|
7
|
-
// "yarn.lock": true,
|
|
8
7
|
".eslintrc.js": true,
|
|
9
8
|
".gitignore": true,
|
|
9
|
+
"package-lock.json": true,
|
|
10
|
+
// ".gitlab-ci.yml": true,
|
|
11
|
+
".nvmrc": true,
|
|
12
|
+
".npmignore": true,
|
|
13
|
+
".editorconfig": true,
|
|
14
|
+
".stylelintrc": true,
|
|
15
|
+
"jest.config.js": true,
|
|
16
|
+
"tsup.config.ts": true,
|
|
17
|
+
"LICENSE": true,
|
|
18
|
+
"babel.config.json": true,
|
|
10
19
|
},
|
|
11
20
|
"editor.codeActionsOnSave": {
|
|
12
21
|
"source.fixAll.eslint": "explicit"
|
|
@@ -38,13 +38,14 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
38
38
|
@extend %component-splash-click;
|
|
39
39
|
content: "";
|
|
40
40
|
position: absolute;
|
|
41
|
-
top: 50
|
|
42
|
-
left: 50
|
|
41
|
+
top: 50% !important;
|
|
42
|
+
left: 50% !important;
|
|
43
43
|
display: block;
|
|
44
|
-
width: 0;
|
|
45
44
|
padding-top: 0;
|
|
46
45
|
border-radius: 100%;
|
|
47
46
|
background-color: rgba(236, 240, 241, 0.3);
|
|
47
|
+
width: 0;
|
|
48
|
+
height: 0 !important;
|
|
48
49
|
}
|
|
49
50
|
> .icon-component {
|
|
50
51
|
width: 15px;
|
|
@@ -69,7 +70,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
69
70
|
&:active:before {
|
|
70
71
|
@extend %component-effect-click;
|
|
71
72
|
}
|
|
72
|
-
&:hover {
|
|
73
|
+
&:hover, &[data-uitour="hover"] {
|
|
73
74
|
background-color: $default-hover-color;
|
|
74
75
|
}
|
|
75
76
|
&:focus {
|
|
@@ -102,6 +103,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
102
103
|
@extend %component-disabled;
|
|
103
104
|
opacity: 0.7;
|
|
104
105
|
border: solid 1px $font-color-disabled;
|
|
106
|
+
pointer-events: auto;
|
|
105
107
|
}
|
|
106
108
|
&.-shadowsdisabled {
|
|
107
109
|
box-shadow: none!important;
|
|
@@ -162,7 +164,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
162
164
|
border: 1px solid $primary-border-color;
|
|
163
165
|
text-shadow: $shadow-text-button;
|
|
164
166
|
@extend %color-effects;
|
|
165
|
-
&:hover {
|
|
167
|
+
&:hover, &[data-uitour="hover"] {
|
|
166
168
|
background-color: $primary-hover-color;
|
|
167
169
|
}
|
|
168
170
|
&:focus {
|
|
@@ -201,7 +203,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
201
203
|
border: 1px solid $warning-color;
|
|
202
204
|
text-shadow: $shadow-text-button;
|
|
203
205
|
@extend %color-effects;
|
|
204
|
-
&:hover {
|
|
206
|
+
&:hover, &[data-uitour="hover"] {
|
|
205
207
|
background-color: $warning-hover-color;
|
|
206
208
|
}
|
|
207
209
|
&:focus {
|
|
@@ -220,7 +222,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
220
222
|
text-shadow: $shadow-text-button;
|
|
221
223
|
@extend %color-effects;
|
|
222
224
|
color: $font-color-second;
|
|
223
|
-
&:hover {
|
|
225
|
+
&:hover, &[data-uitour="hover"] {
|
|
224
226
|
background-color: $danger-hover-color;
|
|
225
227
|
}
|
|
226
228
|
&:focus {
|
|
@@ -239,7 +241,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
239
241
|
text-shadow: $shadow-text-button;
|
|
240
242
|
@extend %color-effects;
|
|
241
243
|
color: $font-color-second;
|
|
242
|
-
&:hover {
|
|
244
|
+
&:hover, &[data-uitour="hover"] {
|
|
243
245
|
background-color: $success-hover-color;
|
|
244
246
|
color: $font-color-second;
|
|
245
247
|
}
|
|
@@ -259,7 +261,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
|
|
|
259
261
|
text-shadow: $shadow-text-button;
|
|
260
262
|
@extend %color-effects;
|
|
261
263
|
color: $font-color-second;
|
|
262
|
-
&:hover {
|
|
264
|
+
&:hover, &[data-uitour="hover"] {
|
|
263
265
|
background-color: $info-hover-color;
|
|
264
266
|
color: $font-color-second;
|
|
265
267
|
}
|
|
@@ -4,83 +4,90 @@
|
|
|
4
4
|
|
|
5
5
|
.checkbox-component {
|
|
6
6
|
> .inputcontent {
|
|
7
|
+
display: flex;
|
|
7
8
|
> .input {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
opacity: 0;
|
|
11
|
+
width: 0;
|
|
12
|
+
height: 0;
|
|
11
13
|
&:disabled + span {
|
|
12
14
|
@extend %component-disabled;
|
|
15
|
+
border: 1px solid $component-border-color;
|
|
16
|
+
}
|
|
17
|
+
&:checked:disabled + span {
|
|
18
|
+
border: 1px solid $component-border-color;
|
|
19
|
+
> svg {
|
|
20
|
+
@extend %component-menu-disabled
|
|
21
|
+
}
|
|
13
22
|
}
|
|
14
23
|
&:disabled + span + .description {
|
|
15
24
|
@extend %component-menu-disabled;
|
|
16
25
|
}
|
|
17
|
-
&:checked + span
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
justify-content: center;
|
|
22
|
-
position: static;
|
|
23
|
-
margin-top: -5px;
|
|
24
|
-
font-weight: 600;
|
|
25
|
-
height: 28px;
|
|
26
|
+
&:checked + span > svg {
|
|
27
|
+
display: block;
|
|
28
|
+
fill: $font-color-second;
|
|
29
|
+
margin: 0;
|
|
26
30
|
}
|
|
27
31
|
+ span {
|
|
28
|
-
display: inline-block;
|
|
29
32
|
position: relative;
|
|
30
|
-
|
|
33
|
+
min-width: 18px;
|
|
34
|
+
min-height: 18px;
|
|
31
35
|
width: 18px;
|
|
32
36
|
height: 18px;
|
|
33
|
-
margin: -1px 0px 0 0;
|
|
34
|
-
margin-right: 4px;
|
|
35
37
|
vertical-align: middle;
|
|
36
38
|
background: $font-color-second left top no-repeat;
|
|
37
39
|
border: 1px solid $component-border-color;
|
|
38
40
|
cursor: pointer;
|
|
41
|
+
display: flex;
|
|
42
|
+
margin-right: 6px;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
39
45
|
&:hover {
|
|
40
46
|
animation-duration: .5s;
|
|
41
47
|
animation-name: blink-effect;
|
|
42
48
|
animation-iteration-count: infinite;
|
|
43
49
|
animation-direction: alternate;
|
|
44
50
|
}
|
|
51
|
+
& > svg {
|
|
52
|
+
display: none;
|
|
53
|
+
}
|
|
45
54
|
}
|
|
46
55
|
&:checked + span {
|
|
47
|
-
background-color: $
|
|
56
|
+
background-color: $checked-effect;
|
|
57
|
+
border-color: $checked;
|
|
48
58
|
color: $font-color-second;
|
|
49
59
|
animation-duration: .2s;
|
|
50
60
|
animation-name: select-checkbox;
|
|
51
61
|
animation-iteration-count: 1;
|
|
52
62
|
animation-direction: Normal;
|
|
53
|
-
box-shadow: inset 0 0 0 1px $checked,
|
|
54
|
-
inset 0 0 0 0 #FFFFFF,
|
|
55
|
-
inset 0 0 0 16px $checked-effect;
|
|
56
63
|
}
|
|
57
64
|
&:focus + span {
|
|
58
65
|
border: 2px solid $component-selected-color;
|
|
59
66
|
}
|
|
60
|
-
&:disabled:checked + span:before {
|
|
61
|
-
@extend %component-menu-disabled;
|
|
62
|
-
border: 1px solid;
|
|
63
|
-
margin-top: -1px;
|
|
64
|
-
width: 18px;
|
|
65
|
-
height: 18px;
|
|
66
|
-
background-color: rgb(229, 229, 229);
|
|
67
|
-
margin-left: -1px;
|
|
68
|
-
}
|
|
69
67
|
}
|
|
70
68
|
> .description {
|
|
71
69
|
@extend %input-label;
|
|
72
|
-
margin-left: 2px;
|
|
73
70
|
cursor: pointer ;
|
|
71
|
+
flex: 1;
|
|
72
|
+
line-height: 18px;
|
|
73
|
+
|
|
74
|
+
> .hint {
|
|
75
|
+
@extend %hint-text;
|
|
76
|
+
margin-top: 0;
|
|
77
|
+
}
|
|
74
78
|
}
|
|
75
79
|
}
|
|
76
80
|
|
|
77
|
-
> .hint {
|
|
78
|
-
@extend %hint-text;
|
|
79
|
-
margin-top: 0;
|
|
80
|
-
padding-left: 22px;
|
|
81
|
-
}
|
|
82
81
|
|
|
83
|
-
|
|
82
|
+
> .errormessages {
|
|
83
|
+
width: 100%;
|
|
84
|
+
color: red;
|
|
85
|
+
font-size: 13px!important;
|
|
86
|
+
line-height: 13px;
|
|
87
|
+
margin-top: 0px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
&[data-skeletonized="true"] {
|
|
84
91
|
> .inputcontent {
|
|
85
92
|
.input {
|
|
86
93
|
+ span {
|
|
@@ -93,8 +100,8 @@
|
|
|
93
100
|
}
|
|
94
101
|
}
|
|
95
102
|
}
|
|
96
|
-
> .inputcontent > .description,
|
|
97
|
-
> .hint > span {
|
|
103
|
+
> .inputcontent > .description > span,
|
|
104
|
+
> .inputcontent > .description > .hint > span {
|
|
98
105
|
@extend %skeleton-component;
|
|
99
106
|
}
|
|
100
107
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
-ms-transform: translate(-50%, -50%);
|
|
5
5
|
-o-transform: translate(-50%, -50%);
|
|
6
6
|
transform: translate(-50%, -50%);
|
|
7
|
-
transition: all 0.
|
|
7
|
+
transition: all 0.25s ease-in-out;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
%component-effect-click {
|
|
@@ -89,6 +89,8 @@ $alert-warning: #fff3cd;
|
|
|
89
89
|
$alert-warning-text: #856404;
|
|
90
90
|
$alert-warning-border: #f2e3b5;
|
|
91
91
|
|
|
92
|
+
$error-color: #ff3030;
|
|
93
|
+
|
|
92
94
|
$danger-color: #e74c3c;
|
|
93
95
|
$danger-hover-color: #dd2d1b;
|
|
94
96
|
$danger-focus-color: #c0392b;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
@import "commons.scss";
|
|
2
2
|
@import "colors.scss";
|
|
3
3
|
@import "effects.scss";
|
|
4
|
+
|
|
5
|
+
$shadow-button-default: 1px 1px 1px rgba(0, 0, 0, 0.2);
|
|
6
|
+
$shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-button-default;
|
|
4
7
|
.modalcontainer {
|
|
5
8
|
font-family: 'Roboto', sans-serif;
|
|
6
9
|
line-height: 22px;
|
|
@@ -59,23 +62,37 @@
|
|
|
59
62
|
width: 100%;
|
|
60
63
|
margin-left: 2px;
|
|
61
64
|
display: flex;
|
|
65
|
+
justify-content: space-between;
|
|
62
66
|
align-items: center;
|
|
63
|
-
|
|
64
|
-
color:
|
|
65
|
-
font-weight:
|
|
67
|
+
.modal-title {
|
|
68
|
+
color: $font-color-default;
|
|
69
|
+
font-weight: 400;
|
|
66
70
|
}
|
|
67
71
|
}
|
|
68
72
|
.close-button {
|
|
69
|
-
|
|
73
|
+
all: unset;
|
|
70
74
|
line-height: 0;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
75
|
+
display: flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
width: 28px;
|
|
79
|
+
height: 28px;
|
|
80
|
+
border: none;
|
|
81
|
+
background-color: $default-color;
|
|
82
|
+
color: $font-color-soft;
|
|
83
|
+
border-radius: 999999px;
|
|
84
|
+
cursor: pointer !important;
|
|
85
|
+
>svg {
|
|
86
|
+
fill: $font-color-soft;
|
|
74
87
|
pointer-events: fill;
|
|
75
88
|
transition: 0.2s fill;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
89
|
+
}
|
|
90
|
+
&:hover {
|
|
91
|
+
background-color: $default-hover-color;
|
|
92
|
+
}
|
|
93
|
+
&:focus {
|
|
94
|
+
-webkit-box-shadow: $shadow-button-inset-default;
|
|
95
|
+
box-shadow: $shadow-button-inset-default;
|
|
79
96
|
}
|
|
80
97
|
}
|
|
81
98
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import "commons.scss";
|
|
2
|
+
@import "colors.scss";
|
|
2
3
|
|
|
3
4
|
.hint-component {
|
|
4
5
|
@extend %hint-text;
|
|
@@ -6,4 +7,24 @@
|
|
|
6
7
|
&.-skeletonized > span {
|
|
7
8
|
@extend %skeleton-component;
|
|
8
9
|
}
|
|
10
|
+
|
|
11
|
+
&.-disabled > span {
|
|
12
|
+
opacity: 0.4;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.-primary {
|
|
16
|
+
color: $primary-color;
|
|
17
|
+
}
|
|
18
|
+
&.-warning {
|
|
19
|
+
color: $warning-color;
|
|
20
|
+
}
|
|
21
|
+
&.-danger {
|
|
22
|
+
color: $danger-color;
|
|
23
|
+
}
|
|
24
|
+
&.-success {
|
|
25
|
+
color: $success-color;
|
|
26
|
+
}
|
|
27
|
+
&.-info {
|
|
28
|
+
color: $info-color;
|
|
29
|
+
}
|
|
9
30
|
}
|
|
@@ -1,42 +1,15 @@
|
|
|
1
|
-
@import "colors.scss";
|
|
2
|
-
|
|
3
1
|
/*
|
|
4
2
|
* Caso altere o nome da classe, deverá pesquisar em todo projeto se existe
|
|
5
3
|
* algum lugar que esta sobescrevendo
|
|
6
4
|
*/
|
|
5
|
+
.icon-component {
|
|
6
|
+
margin: 0px 2px;
|
|
7
|
+
}
|
|
8
|
+
|
|
7
9
|
.icon-component-container {
|
|
8
10
|
display: inline-flex;
|
|
9
11
|
place-self: center;
|
|
10
12
|
padding: 2px;
|
|
11
13
|
border-radius: 99999px;
|
|
12
14
|
pointer-events: fill;
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.icon-component {
|
|
17
|
-
margin: 0px 2px;
|
|
18
|
-
&:not([fill]) {
|
|
19
|
-
fill: #676464;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&[data-color-style="primary"] {
|
|
23
|
-
fill: $primary-color
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&[data-color-style="success"] {
|
|
27
|
-
fill: $success-color
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&[data-color-style="info"] {
|
|
31
|
-
fill: $info-color
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&[data-color-style="warning"] {
|
|
35
|
-
fill: $warning-color
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&[data-color-style="danger"] {
|
|
39
|
-
fill: $danger-color
|
|
40
|
-
}
|
|
41
15
|
}
|
|
42
|
-
|
|
@@ -5,8 +5,15 @@
|
|
|
5
5
|
.input-base-component > .labelcontainer {
|
|
6
6
|
margin: 0;
|
|
7
7
|
padding: 0;
|
|
8
|
+
line-height: 14px;
|
|
9
|
+
margin-bottom: 6px;
|
|
8
10
|
> .label {
|
|
9
11
|
@extend %input-label;
|
|
12
|
+
width: 100%;
|
|
13
|
+
display: block;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
text-overflow: ellipsis;
|
|
16
|
+
white-space: nowrap;
|
|
10
17
|
}
|
|
11
18
|
}
|
|
12
19
|
|
|
@@ -18,13 +25,6 @@
|
|
|
18
25
|
width: 100%;
|
|
19
26
|
height: 100%;
|
|
20
27
|
}
|
|
21
|
-
> .errormessages {
|
|
22
|
-
width: 100%;
|
|
23
|
-
color: red;
|
|
24
|
-
font-size: 13px!important;
|
|
25
|
-
line-height: 13px;
|
|
26
|
-
margin-top: 3px;
|
|
27
|
-
}
|
|
28
28
|
& .icon-component {
|
|
29
29
|
height: 100%;
|
|
30
30
|
display: grid;
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
top: 50%;
|
|
24
24
|
left: 10px;
|
|
25
25
|
transform: translateY(-50%);
|
|
26
|
+
|
|
27
|
+
button {
|
|
28
|
+
all: unset;
|
|
29
|
+
}
|
|
26
30
|
}
|
|
27
31
|
}
|
|
28
32
|
|
|
@@ -95,6 +99,7 @@
|
|
|
95
99
|
}
|
|
96
100
|
|
|
97
101
|
.menubutton {
|
|
102
|
+
all: unset;
|
|
98
103
|
background-color: transparent;
|
|
99
104
|
border: 0;
|
|
100
105
|
padding: 0;
|
|
@@ -117,4 +122,4 @@
|
|
|
117
122
|
}
|
|
118
123
|
}
|
|
119
124
|
}
|
|
120
|
-
}
|
|
125
|
+
}
|
|
@@ -74,42 +74,44 @@ $radio-button-ripple-size: 15px;
|
|
|
74
74
|
background: $default-color;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
77
|
+
.radio-button {
|
|
78
|
+
.-small:before{
|
|
79
|
+
width: 16px;
|
|
80
|
+
height: 16px;
|
|
81
|
+
top: 0.225rem;
|
|
82
|
+
left: 0.265rem;
|
|
83
|
+
}
|
|
84
|
+
.-medium:before{
|
|
85
|
+
width: 20px;
|
|
86
|
+
height: 20px;
|
|
87
|
+
top: 0.245rem;
|
|
88
|
+
left: 0.285rem;
|
|
89
|
+
}
|
|
90
|
+
.-large:before{
|
|
91
|
+
width: 24px;
|
|
92
|
+
height: 24px;
|
|
93
|
+
top: 0.245rem;
|
|
94
|
+
left: 0.285rem;
|
|
95
|
+
}
|
|
95
96
|
|
|
96
|
-
.-small:after{
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
102
|
-
.-medium:after{
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
.-large:after{
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
97
|
+
.-small:after{
|
|
98
|
+
width: 8px;
|
|
99
|
+
height: 8px;
|
|
100
|
+
top: 0.23rem;
|
|
101
|
+
left: 0.27rem;
|
|
102
|
+
}
|
|
103
|
+
.-medium:after{
|
|
104
|
+
width: 12px;
|
|
105
|
+
height: 12px;
|
|
106
|
+
top: 0.24rem;
|
|
107
|
+
left: 0.26rem;
|
|
108
|
+
}
|
|
109
|
+
.-large:after{
|
|
110
|
+
width: 16px;
|
|
111
|
+
height: 16px;
|
|
112
|
+
top: 0.245rem;
|
|
113
|
+
left: 0.285rem;
|
|
114
|
+
}
|
|
113
115
|
}
|
|
114
116
|
|
|
115
117
|
.radio-component:checked + .description:after,
|
|
@@ -10,14 +10,15 @@
|
|
|
10
10
|
height: auto;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
.selectwrapper .
|
|
14
|
-
cursor: pointer;
|
|
13
|
+
.selectwrapper .actionbuttonsselect {
|
|
15
14
|
display: flex;
|
|
16
|
-
|
|
17
|
-
height: 100%;
|
|
15
|
+
flex-direction: row;
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
.actionbutton {
|
|
18
|
+
all: unset;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
|
|
@@ -42,6 +43,10 @@
|
|
|
42
43
|
float: left;
|
|
43
44
|
margin: 2px;
|
|
44
45
|
padding: 0px 8px 0px 5px;
|
|
46
|
+
|
|
47
|
+
.close {
|
|
48
|
+
all: unset;
|
|
49
|
+
}
|
|
45
50
|
}
|
|
46
51
|
}
|
|
47
52
|
|
|
@@ -118,6 +123,7 @@
|
|
|
118
123
|
}
|
|
119
124
|
|
|
120
125
|
.menubutton {
|
|
126
|
+
all: unset;
|
|
121
127
|
background-color: transparent;
|
|
122
128
|
border: 0;
|
|
123
129
|
padding: 0;
|
|
@@ -145,4 +151,4 @@
|
|
|
145
151
|
font-style: italic;
|
|
146
152
|
font-size: 13px;
|
|
147
153
|
}
|
|
148
|
-
}
|
|
154
|
+
}
|