fleetcor-lwc 2.9.0 → 2.9.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/README.md CHANGED
@@ -419,6 +419,9 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_BG_COLOR: var(
419
419
 
420
420
  ## Release Notes:
421
421
 
422
+ - v.2.9.1
423
+ - Checkbox label rendared bug fix
424
+
422
425
  - v.2.9.0
423
426
  - Added css variable for button padding value
424
427
 
@@ -1,34 +1,31 @@
1
1
  <template lwc:render-mode="light">
2
2
  <label class={computedLabelClass}>
3
3
  <input
4
- class="flt-checkbox__input"
5
- type="checkbox"
6
- checked={value}
7
- disabled={disabled}
8
- onchange={handleChange}
9
- />
4
+ class="flt-checkbox__input"
5
+ type="checkbox"
6
+ checked={value}
7
+ disabled={disabled}
8
+ onchange={handleChange} />
10
9
 
11
10
  <span class={computedSpanClass}>
12
11
  <svg
13
- if:true={value}
14
- class="flt-checkbox__icon-agree"
15
- width="20"
16
- height="20"
17
- viewBox="0 0 20 20"
18
- fill="none"
19
- xmlns="http://www.w3.org/2000/svg"
20
- >
12
+ if:true={value}
13
+ class="flt-checkbox__icon-agree"
14
+ width="20"
15
+ height="20"
16
+ viewBox="0 0 20 20"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg">
21
19
  <path
22
- class="flt-checkbox__icon-agree-path"
23
- d="M3.75 10.625L8.75 15.625L16.25 4.375"
24
- stroke-width="2"
25
- stroke-linecap="round"
26
- stroke-linejoin="round"
27
- ></path>
20
+ class="flt-checkbox__icon-agree-path"
21
+ d="M3.75 10.625L8.75 15.625L16.25 4.375"
22
+ stroke-width="2"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"></path>
28
25
  </svg>
29
26
  </span>
30
-
31
- <div class="flt-checkbox__label"></div>
27
+
28
+ <div class="flt-checkbox__label" data-label={label}></div>
32
29
  </label>
33
30
  <div class={computedErrorMessage}>{errorMessage}</div>
34
31
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",