fleetcor-lwc 2.6.2 → 2.7.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/README.md
CHANGED
|
@@ -175,7 +175,7 @@ const pathConstants = 'frontend/common/mixins.scss';
|
|
|
175
175
|
|
|
176
176
|
```html
|
|
177
177
|
<flt-checkbox
|
|
178
|
-
size="
|
|
178
|
+
size="small"
|
|
179
179
|
name="agreement"
|
|
180
180
|
disabled
|
|
181
181
|
required
|
|
@@ -188,16 +188,16 @@ const pathConstants = 'frontend/common/mixins.scss';
|
|
|
188
188
|
|
|
189
189
|
#### Checkbox variables
|
|
190
190
|
|
|
191
|
-
| @api variables | type | values
|
|
192
|
-
| -------------- | ------ |
|
|
193
|
-
| name | string |
|
|
194
|
-
| size | string | `
|
|
195
|
-
| value | bool |
|
|
196
|
-
| label | html |
|
|
197
|
-
| disabled | bool |
|
|
198
|
-
| required | bool |
|
|
199
|
-
| group | string |
|
|
200
|
-
| error-message | string |
|
|
191
|
+
| @api variables | type | values | required | description |
|
|
192
|
+
| -------------- | ------ | ------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
|
193
|
+
| name | string | | + | |
|
|
194
|
+
| size | string | `small` or `medium` | - | |
|
|
195
|
+
| value | bool | | - | |
|
|
196
|
+
| label | html | | - | Label set to template as HTML content. You can user tag `a` with attribute `view-modal` to catch `viewmodal` Custom Event by click on it |
|
|
197
|
+
| disabled | bool | | - | |
|
|
198
|
+
| required | bool | | - | |
|
|
199
|
+
| group | string | | - | |
|
|
200
|
+
| error-message | string | | - | |
|
|
201
201
|
|
|
202
202
|
#### Checkbox methods
|
|
203
203
|
|
|
@@ -415,6 +415,11 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_BG_COLOR: var(
|
|
|
415
415
|
|
|
416
416
|
## Release Notes:
|
|
417
417
|
|
|
418
|
+
- v.2.7.0
|
|
419
|
+
- Added size `medium` for checkbox component
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
418
423
|
- v.2.6.2
|
|
419
424
|
- Updated close icon
|
|
420
425
|
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
&
|
|
38
|
+
&_size_small {
|
|
39
39
|
font-size: 15px;
|
|
40
40
|
line-height: 1.4;
|
|
41
41
|
|
|
@@ -49,6 +49,25 @@
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
&_size_medium {
|
|
53
|
+
font-size: 16px;
|
|
54
|
+
line-height: 20px;
|
|
55
|
+
|
|
56
|
+
& + .flt-checkbox__error-message {
|
|
57
|
+
font-size: 12px;
|
|
58
|
+
margin-left: 40px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.flt-checkbox__label {
|
|
62
|
+
margin-top: 2px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.flt-checkbox__icon {
|
|
66
|
+
width: 1.5rem;
|
|
67
|
+
height: 1.5rem;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
52
71
|
&__input {
|
|
53
72
|
display: none;
|
|
54
73
|
}
|
|
@@ -83,11 +102,11 @@
|
|
|
83
102
|
cursor: pointer;
|
|
84
103
|
display: inline-block;
|
|
85
104
|
text-decoration: none;
|
|
86
|
-
color:
|
|
105
|
+
color: $FLT_CHECKBOX_LABEL_HREF_COLOR;
|
|
87
106
|
transition: all 0.3s;
|
|
88
107
|
|
|
89
|
-
&:hover{
|
|
90
|
-
color:
|
|
108
|
+
&:hover {
|
|
109
|
+
color: $FLT_CHECKBOX_LABEL_HREF_HOVER_COLOR;
|
|
91
110
|
}
|
|
92
111
|
}
|
|
93
112
|
}
|