@eturnity/eturnity_reusable_components 9.19.12 → 9.22.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "9.19.12",
3
+ "version": "9.22.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -31,6 +31,8 @@
31
31
  :font-color="
32
32
  stepIndex === currentStepIndex
33
33
  ? theme.semanticColors.grey[900]
34
+ : step.isDisabled
35
+ ? theme.semanticColors.grey[600]
34
36
  : theme.semanticColors.grey[800]
35
37
  "
36
38
  :type="labelTextType"
@@ -1,6 +1,7 @@
1
1
  <template>
2
- <TagContainer :data-id="dataId" :data-qa-id="dataQaId">
2
+ <TagContainer :data-id="dataId" :data-qa-id="dataQaId" :height="height">
3
3
  <RcIcon
4
+ v-if="!noIcon"
4
5
  :color="getIconColor"
5
6
  :hovered-color="getIconColor"
6
7
  name="star"
@@ -23,6 +24,7 @@
23
24
  padding: 2px 4px;
24
25
  background-color: ${(props) => props.theme.semanticColors.yellow[200]};
25
26
  cursor: pointer;
27
+ height: ${(props) => props.height};
26
28
  `
27
29
 
28
30
  const TextContainer = styled.div`
@@ -56,6 +58,15 @@
56
58
  default: '',
57
59
  type: String,
58
60
  },
61
+ noIcon: {
62
+ type: Boolean,
63
+ default: false,
64
+ },
65
+ height: {
66
+ required: false,
67
+ type: String,
68
+ default: 'auto',
69
+ },
59
70
  },
60
71
  computed: {
61
72
  getIconColor() {