fleetcor-lwc 3.5.0 → 3.5.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
@@ -509,6 +509,10 @@ You can override them as you wish by global css variables as priority.
509
509
 
510
510
  ## Release Notes:
511
511
 
512
+ - v.3.5.1
513
+
514
+ - Bug fix with progress component
515
+
512
516
  - v.3.5.0
513
517
 
514
518
  - Added new component `flt-card`
@@ -1,7 +1,7 @@
1
1
  <template lwc:render-mode="light">
2
- <div class="progress-step">
3
- <div class="progress-step__number-wrapp">
4
- <svg class="progress-step__circle" width="36px" height="36px" viewBox="0 0 36 36">
2
+ <div class="flt-progress-step">
3
+ <div class="flt-progress-step__number-wrapp">
4
+ <svg class="flt-progress-step__circle" width="36px" height="36px" viewBox="0 0 36 36">
5
5
  <circle cx="18" cy="18" r="16" fill="transparent" stroke-width="4" />
6
6
  <path
7
7
  d={forFirstPathD}
@@ -15,8 +15,8 @@
15
15
  stroke-linecap="round"
16
16
  fill="transparent"></path>
17
17
  </svg>
18
- <div class="progress-step__number-propotion">{current}/{total}</div>
18
+ <div class="flt-progress-step__number-propotion">{current}/{total}</div>
19
19
  </div>
20
- <div class="progress-step__current-title">{title}</div>
20
+ <div class="flt-progress-step__current-title">{title}</div>
21
21
  </div>
22
22
  </template>
@@ -8,7 +8,7 @@ $FLT_STEP_POSITION_NUMBER_COLOR: var(--flt-step-position-number-color, #111827);
8
8
  $FLT_STEP_POSITION_CIRCLE_COLOR: var(--flt-step-position-circle-color, #0a7db8);
9
9
  $FLT_STEP_POSITION_CIRCLE_BACKGROUND: var(--flt-step-position-circle-background, #bbe6fb);
10
10
 
11
- .progress-step {
11
+ .flt-progress-step {
12
12
  position: relative;
13
13
  display: flex;
14
14
  gap: 16px;
@@ -41,9 +41,8 @@ $FLT_STEP_POSITION_CIRCLE_BACKGROUND: var(--flt-step-position-circle-background,
41
41
 
42
42
  &__number-propotion {
43
43
  font-size: 12px;
44
- line-height: 16;
44
+ line-height: 16px;
45
45
  font-weight: $FLT_STEP_POSITION_NUMBER_PROPOTION_FONT_WEIGHT;
46
- letter-spacing: 1px;
47
46
  color: $FLT_STEP_POSITION_NUMBER_COLOR;
48
47
  }
49
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",