@dynamic-framework/ui-react 1.12.0 → 1.12.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sideEffects": [
4
4
  "*.css"
5
5
  ],
6
- "version": "1.12.0",
6
+ "version": "1.12.1",
7
7
  "description": "React Dynamic Framework",
8
8
  "license": "MIT",
9
9
  "repository": {
@@ -144,5 +144,5 @@
144
144
  "react-dom": "^18.2.0",
145
145
  "react-i18next": "^13.3.1"
146
146
  },
147
- "gitHead": "df024b0bce28372ce5a296946faf8c080751c84f"
147
+ "gitHead": "afc5f7db0e63ab20d8ede81b1784f6f85545cb86"
148
148
  }
@@ -131,7 +131,7 @@
131
131
  width: 0;
132
132
  height: 100%;
133
133
  content: "";
134
- border: var(--#{$prefix}step-icon-container-border-width) solid var(--#{$prefix}step-icon-container-border-color);
134
+ border: var(--#{$prefix}step-line-stroke) solid var(--#{$prefix}step-line-color);
135
135
  }
136
136
 
137
137
  &:first-child .d-step-value::after {
@@ -24,7 +24,6 @@
24
24
  --#{$prefix}step-info-description-font-size: var(--#{$prefix}ref-fs-small);
25
25
  --#{$prefix}step-info-description-color: var(--#{$prefix}gray-500);
26
26
 
27
-
28
27
  display: flex;
29
28
  gap: var(--#{$prefix}step-container-gap);
30
29
  align-items: center;
@@ -40,6 +39,7 @@
40
39
  height: var(--#{$prefix}step-progress-outter-size);
41
40
  border-radius: var(--#{$prefix}step-progress-outter-size);
42
41
  }
42
+
43
43
  .d-step-bar::after {
44
44
  position: absolute;
45
45
  z-index: var(--#{$prefix}step-progress-inner-z-index);
@@ -49,19 +49,23 @@
49
49
  background-color: var(--#{$prefix}step-progress-inner-background-color);
50
50
  border-radius: var(--#{$prefix}step-progress-inner-size);
51
51
  }
52
+
52
53
  .d-step-number {
53
54
  z-index: var(--#{$prefix}step-current-step-z-index);
54
55
  font-weight: var(--#{$prefix}step-current-step-font-weight);
55
56
  color: var(--#{$prefix}step-current-step-color);
56
57
  }
58
+
57
59
  .d-step-info {
58
60
  display: flex;
59
61
  flex-direction: column;
60
62
  max-width: var(--#{$prefix}step-info-max-width);
61
63
  }
64
+
62
65
  .d-step-label {
63
66
  font-size: var(--#{$prefix}step-info-label-font-size);
64
67
  }
68
+
65
69
  .d-step-description {
66
70
  font-size: var(--#{$prefix}step-info-description-font-size);
67
71
  color: var(--#{$prefix}step-info-description-color);