fleetcor-lwc 2.4.0 → 2.4.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/README.md CHANGED
@@ -234,11 +234,11 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_BG_COLOR: var(
234
234
  );
235
235
  $FLT_RADIO_GROUP_CIRCLE_SELECTED_HOVER_COLOR: var(
236
236
  --flt-radio-group-circle-selected-hover-color,
237
- #59eb9c
237
+ #52d990
238
238
  );
239
239
  $FLT_RADIO_GROUP_CIRCLE_SELECTED_COLOR: var(
240
240
  --flt-radio-group-circle-selected-color,
241
- #52d990
241
+ #59eb9c
242
242
  );
243
243
  $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_COLOR: var(
244
244
  --flt-radio-group-circle-disabled-selected-color,
@@ -253,6 +253,15 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_BG_COLOR: var(
253
253
 
254
254
  ## Release Notes:
255
255
 
256
+ - v.2.4.2
257
+ - Bug fix at `flt-radio-group`
258
+
259
+ ---
260
+ - v.2.4.1
261
+ - Change margin for items at `flt-radio-group`
262
+
263
+ ---
264
+
256
265
  - v.2.4.0
257
266
  - Added Component `flt-radio-group`
258
267
 
@@ -76,9 +76,9 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_COLOR: var(--flt-radio-group-circle-disabled-co
76
76
  $FLT_RADIO_GROUP_CIRCLE_DISABLED_BG_COLOR: var(--flt-radio-group-circle-disabled-bg-color, #e5e7eb);
77
77
  $FLT_RADIO_GROUP_CIRCLE_SELECTED_HOVER_COLOR: var(
78
78
  --flt-radio-group-circle-selected-hover-color,
79
- #59eb9c
79
+ #52d990
80
80
  );
81
- $FLT_RADIO_GROUP_CIRCLE_SELECTED_COLOR: var(--flt-radio-group-circle-selected-color, #52d990);
81
+ $FLT_RADIO_GROUP_CIRCLE_SELECTED_COLOR: var(--flt-radio-group-circle-selected-color, #59eb9c);
82
82
  $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_COLOR: var(
83
83
  --flt-radio-group-circle-disabled-selected-color,
84
84
  #d1d5db
@@ -77,9 +77,9 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_COLOR: var(--flt-radio-group-circle-disabled-co
77
77
  $FLT_RADIO_GROUP_CIRCLE_DISABLED_BG_COLOR: var(--flt-radio-group-circle-disabled-bg-color, #e5e7eb);
78
78
  $FLT_RADIO_GROUP_CIRCLE_SELECTED_HOVER_COLOR: var(
79
79
  --flt-radio-group-circle-selected-hover-color,
80
- #59eb9c
80
+ #52d990
81
81
  );
82
- $FLT_RADIO_GROUP_CIRCLE_SELECTED_COLOR: var(--flt-radio-group-circle-selected-color, #52d990);
82
+ $FLT_RADIO_GROUP_CIRCLE_SELECTED_COLOR: var(--flt-radio-group-circle-selected-color, #59eb9c);
83
83
  $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_COLOR: var(
84
84
  --flt-radio-group-circle-disabled-selected-color,
85
85
  #d1d5db
@@ -1,6 +1,6 @@
1
1
  <template lwc:render-mode="light">
2
2
  <div class="flt-radio-group">
3
- <div class="flt-radio-group__title">{label}</div>
3
+ <div class="flt-radio-group__label">{label}</div>
4
4
  <div class="flt-radio-group__items">
5
5
  <template for:each={optionsToDisplay} for:item="option">
6
6
  <flt-radio-item
@@ -6,10 +6,10 @@
6
6
  display: flex;
7
7
  }
8
8
 
9
- &__title {
9
+ &__label {
10
10
  font-weight: 600;
11
11
  color: $FLT_RADIO_GROUP_COLOR;
12
- font-size: 15px;
12
+ font-size: 16px;
13
13
  line-height: 20px;
14
14
  margin-bottom: 0.25rem;
15
15
 
@@ -22,18 +22,13 @@
22
22
 
23
23
  &__items {
24
24
  display: flex;
25
- flex-direction: column;
26
-
27
- @media (min-width: 768px) {
28
- flex-direction: row;
29
- flex-wrap: wrap;
30
- }
25
+ flex-wrap: wrap;
31
26
  }
32
27
 
33
28
  &__item {
34
29
  display: inline-block;
35
30
  margin: 0.5rem 0;
36
- margin-right: 2.5rem;
31
+ margin-right: 1.5rem;
37
32
 
38
33
  @media (min-width: 768px) {
39
34
  margin-top: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "2.4.0",
3
+ "version": "2.4.2",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,7 +10,7 @@
10
10
  "license": "ISC",
11
11
  "exports": {
12
12
  ".": "./frontend/core/index.js",
13
- "./loader" : "./loader/index.js"
13
+ "./loader": "./loader/index.js"
14
14
  },
15
15
  "files": [
16
16
  "loader",