@eturnity/eturnity_reusable_components 8.10.3-EPDM-11600.2 → 8.10.3-EPDM-14085.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": "8.10.3-EPDM-11600.2",
3
+ "version": "8.10.3-EPDM-14085.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -1,3 +1,4 @@
1
- <svg width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M18.4389 3.06113C14.3574 -1.02038 7.64263 -1.02038 3.56113 3.06113C-0.520376 7.14263 -0.520376 13.8574 3.56113 17.9389C7.64263 22.0204 14.3574 22.0204 18.4389 17.9389C22.5204 13.8574 22.5204 7.2743 18.4389 3.06113ZM16.464 14.2524L14.6207 16.0956L10.9342 12.4091L7.24765 16.0956L5.40439 14.2524L9.09091 10.5658L5.40439 6.87931L7.24765 5.03605L10.9342 8.72257L14.6207 5.03605L16.464 6.87931L12.7774 10.5658L16.464 14.2524Z" fill="#FF5656"/>
1
+ <svg fill="none" height="16" viewbox="12 12 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="20" cy="20" r="7"></circle>
3
+ <path d="M24.9592 15.0408C22.2382 12.3197 17.7618 12.3197 15.0408 15.0408C12.3197 17.7618 12.3197 22.2382 15.0408 24.9592C17.7618 27.6803 22.2382 27.6803 24.9592 24.9592C27.6803 22.2382 27.6803 17.8495 24.9592 15.0408ZM23.6426 22.5016L22.4138 23.7304L19.9561 21.2727L17.4984 23.7304L16.2696 22.5016L18.7273 20.0439L16.2696 17.5862L17.4984 16.3574L19.9561 18.815L22.4138 16.3574L23.6426 17.5862L21.185 20.0439L23.6426 22.5016Z" fill="#FF5656"></path>
3
4
  </svg>
@@ -27,6 +27,7 @@ const theme = {
27
27
  transparentWhite2: '#ffffff16',
28
28
  transparentWhite3: '#ffffff48',
29
29
  transparentBlack1: '#263238e6',
30
+ transparentBlack2: '#263238e5',
30
31
  disabled: '#dfe1e1',
31
32
  eturnityGrey: '#263238',
32
33
  },
@@ -0,0 +1,16 @@
1
+ const defaultProps = {
2
+ title: 'Sample Title',
3
+ infoText: 'Sample Info Text',
4
+ initialPosition: { top: '0px', left: '0px' },
5
+ minWidth: '284px',
6
+ maxWidth: '284px',
7
+ dragTargets: ['document'],
8
+ dragBounds: {},
9
+ sampleBody1:
10
+ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
11
+ sampleBody2:
12
+ 'Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
13
+ sampleFooter: 'Sample footer',
14
+ }
15
+
16
+ export default defaultProps
@@ -0,0 +1,99 @@
1
+ import { mount } from '@vue/test-utils'
2
+ import DraggableCard from '@/components/draggableCard'
3
+ import defaultProps from './defaultProps'
4
+
5
+ jest.mock('@/components/icon/iconCache.mjs', () => ({
6
+ // need to mock this due to how jest handles import.meta
7
+ fetchIcon: jest.fn(() => Promise.resolve('mocked-icon-url.svg')),
8
+ }))
9
+
10
+ describe('DraggableCard.vue', () => {
11
+ it('renders properly with required props', () => {
12
+ const wrapper = mount(DraggableCard, { props: defaultProps })
13
+ expect(
14
+ wrapper.find('[data-test-id="draggable_card_header"]').text()
15
+ ).toContain(defaultProps.title)
16
+
17
+ // Expect no footer rendered if not provided
18
+ const footerElement = wrapper.find('[data-test-id="draggable_card_footer"]')
19
+ expect(footerElement.exists()).toBe(false)
20
+ })
21
+
22
+ it('renders body slot content correctly', () => {
23
+ const wrapper = mount(DraggableCard, {
24
+ props: defaultProps,
25
+ slots: {
26
+ body: `
27
+ <div class="custom_body1">${defaultProps.sampleBody1}</div>
28
+ <div class="custom_body2">${defaultProps.sampleBody2}</div>
29
+ `,
30
+ },
31
+ })
32
+ expect(wrapper.find('.custom_body1').exists()).toBe(true)
33
+ expect(wrapper.text()).toContain(defaultProps.sampleBody1)
34
+ expect(wrapper.find('.custom_body2').exists()).toBe(true)
35
+ expect(wrapper.text()).toContain(defaultProps.sampleBody2)
36
+ })
37
+
38
+ it('renders footer slot content correctly', () => {
39
+ const wrapper = mount(DraggableCard, {
40
+ props: defaultProps,
41
+ slots: {
42
+ footer: `<div class="custom_footer">${defaultProps.sampleFooter}</div>`,
43
+ },
44
+ })
45
+ expect(
46
+ wrapper.find('[data-test-id="draggable_card_footer"]').exists()
47
+ ).toBe(true)
48
+ expect(wrapper.find('.custom_footer').exists()).toBe(true)
49
+ expect(wrapper.text()).toContain(defaultProps.sampleFooter)
50
+ })
51
+
52
+ it('emits "on-close" when close button is clicked', async () => {
53
+ const wrapper = mount(DraggableCard, { props: defaultProps })
54
+ await wrapper
55
+ .find('[data-test-id="draggable_card_close_button"]')
56
+ .trigger('click')
57
+ expect(wrapper.emitted('on-close')).toBeTruthy()
58
+ })
59
+
60
+ it('toggles collapse state when arrow icon is clicked', async () => {
61
+ const wrapper = mount(DraggableCard, {
62
+ props: { ...defaultProps, isCollapsible: true },
63
+ })
64
+ expect(wrapper.vm.isCollapsed).toBe(false)
65
+ await wrapper
66
+ .find('[data-test-id="draggable_card_collapse_button"]')
67
+ .trigger('click')
68
+ expect(wrapper.vm.isCollapsed).toBe(true)
69
+ })
70
+
71
+ it('handles drag start event', async () => {
72
+ const wrapper = mount(DraggableCard, { props: defaultProps })
73
+ await wrapper
74
+ .find('[data-test-id="draggable_card_drag_icon"]')
75
+ .trigger('mousedown', { clientX: 100, clientY: 100 })
76
+ expect(wrapper.vm.isDragging).toBe(true)
77
+ })
78
+
79
+ it('handles drag move event', async () => {
80
+ const wrapper = mount(DraggableCard, { props: defaultProps })
81
+ wrapper.vm.onDragStart(
82
+ { preventDefault: () => {}, clientX: 100, clientY: 100 },
83
+ false
84
+ )
85
+ wrapper.vm.onDrag({ preventDefault: () => {}, clientX: 120, clientY: 120 })
86
+ expect(wrapper.vm.eventCoordinates.x).toBe(120)
87
+ expect(wrapper.vm.eventCoordinates.y).toBe(120)
88
+ })
89
+
90
+ it('handles drag end event', async () => {
91
+ const wrapper = mount(DraggableCard, { props: defaultProps })
92
+ wrapper.vm.onDragStart(
93
+ { preventDefault: () => {}, clientX: 100, clientY: 100 },
94
+ false
95
+ )
96
+ wrapper.vm.onDragEnd()
97
+ expect(wrapper.vm.isDragging).toBe(false)
98
+ })
99
+ })
@@ -0,0 +1,79 @@
1
+ import defaultProps from './defaultProps'
2
+ import DraggableCard from './index.vue'
3
+ import styled from 'vue3-styled-components'
4
+ import theme from '@/assets/theme'
5
+
6
+ export default {
7
+ title: 'DraggableCard',
8
+ component: DraggableCard,
9
+ tags: ['autodocs'],
10
+ }
11
+
12
+ const TextContainer = styled.div`
13
+ font-family: ${theme.fonts.mainFont};
14
+ color: ${theme.colors.white};
15
+ font-weight: 400;
16
+ font-size: 14px;
17
+ line-height: 21px;
18
+ letter-spacing: 0%;
19
+ `
20
+
21
+ const CompleteTemplate = (args) => {
22
+ return {
23
+ components: { DraggableCard, TextContainer },
24
+ setup() {
25
+ return { args }
26
+ },
27
+ template: `
28
+ <DraggableCard v-bind="args">
29
+ <template #body>
30
+ <TextContainer>{{ args.sampleBody1 }}</TextContainer>
31
+ <TextContainer>{{ args.sampleBody2 }}</TextContainer>
32
+ </template>
33
+ <template #footer>
34
+ <TextContainer>{{ args.sampleFooter }}</TextContainer>
35
+ </template>
36
+ </DraggableCard>
37
+ `,
38
+ }
39
+ }
40
+
41
+ export const Default = CompleteTemplate.bind({})
42
+ Default.args = {
43
+ ...defaultProps,
44
+ }
45
+
46
+ export const NotCollapsible = CompleteTemplate.bind({})
47
+ NotCollapsible.args = {
48
+ ...defaultProps,
49
+ isCollapsible: false,
50
+ }
51
+
52
+ export const AdjustWidth = CompleteTemplate.bind({})
53
+ AdjustWidth.args = {
54
+ ...defaultProps,
55
+ minWidth: '100px',
56
+ maxWidth: '500px',
57
+ }
58
+
59
+ const NoFooterTemplate = (args) => {
60
+ return {
61
+ components: { DraggableCard, TextContainer },
62
+ setup() {
63
+ return { args }
64
+ },
65
+ template: `
66
+ <DraggableCard v-bind="args">
67
+ <template #body>
68
+ <TextContainer>{{ args.sampleBody1 }}</TextContainer>
69
+ <TextContainer>{{ args.sampleBody2 }}</TextContainer>
70
+ </template>
71
+ </DraggableCard>
72
+ `,
73
+ }
74
+ }
75
+
76
+ export const NoFooter = NoFooterTemplate.bind({})
77
+ NoFooter.args = {
78
+ ...defaultProps,
79
+ }
@@ -0,0 +1,336 @@
1
+ <template>
2
+ <CardContainer
3
+ data-test-id="draggable_card_container"
4
+ :initial-position="initialPosition"
5
+ :max-width="maxWidth"
6
+ :min-width="minWidth"
7
+ >
8
+ <HeaderContainer data-test-id="draggable_card_header">
9
+ <SubHeaderWrapper>
10
+ <LeftIconsContainer>
11
+ <DragHandleWrapper :class="{ dragging: isDragging }">
12
+ <RCIcon
13
+ :color="theme.colors.grey3"
14
+ data-test-id="draggable_card_drag_icon"
15
+ name="drag_icon"
16
+ size="14px"
17
+ :title="$gettext('drag_drop')"
18
+ @mousedown="(event) => onDragStart(event, false)"
19
+ @touchstart="
20
+ (event) => {
21
+ onDragStart(event, true)
22
+ }
23
+ "
24
+ />
25
+ </DragHandleWrapper>
26
+ <ArrowIconWrapper
27
+ v-if="isCollapsible"
28
+ data-test-id="draggable_card_collapse_button"
29
+ :is-collapsed="isCollapsed"
30
+ @click="toggleCollapse"
31
+ >
32
+ <CollapseArrowIcon />
33
+ </ArrowIconWrapper>
34
+ </LeftIconsContainer>
35
+ <TitleContainer>
36
+ <TextContainer>{{ title }}</TextContainer>
37
+ <InfoText v-if="infoText?.length" :text="infoText" />
38
+ </TitleContainer>
39
+ </SubHeaderWrapper>
40
+ <CloseButton
41
+ class="close"
42
+ data-test-id="draggable_card_close_button"
43
+ @click="$emit('on-close')"
44
+ />
45
+ </HeaderContainer>
46
+ <BodyContainer v-if="!isCollapsed" data-test-id="draggable_card_body">
47
+ <slot name="body"></slot>
48
+ </BodyContainer>
49
+ <FooterContainer v-if="$slots.footer" data-test-id="draggable_card_footer">
50
+ <slot name="footer"></slot>
51
+ </FooterContainer>
52
+ </CardContainer>
53
+ </template>
54
+
55
+ <script>
56
+ import styled from 'vue3-styled-components'
57
+ import theme from '../../assets/theme.js'
58
+ import RCIcon from '../icon'
59
+ import CloseButton from '../buttons/closeButton'
60
+ import InfoText from '../infoText'
61
+ import CollapseArrowIcon from '../../assets/icons/collapse_arrow_icon.svg'
62
+
63
+ const CardContainerAttr = {
64
+ initialPosition: Object,
65
+ minWidth: String,
66
+ maxWidth: String,
67
+ }
68
+ const CardContainer = styled('div', CardContainerAttr)`
69
+ position: absolute;
70
+ display: flex;
71
+ flex-direction: column;
72
+ border-radius: 4px;
73
+ min-width: ${(props) => props.minWidth};
74
+ max-width: ${(props) => props.maxWidth};
75
+ background: ${theme.colors.transparentBlack2};
76
+ z-index: 5;
77
+ ${(props) =>
78
+ props.initialPosition?.top && `top: ${props.initialPosition.top};`}
79
+ ${(props) =>
80
+ props.initialPosition?.right && `right: ${props.initialPosition.right};`}
81
+ ${(props) =>
82
+ props.initialPosition?.left && `left: ${props.initialPosition.left};`}
83
+ ${(props) =>
84
+ props.initialPosition?.bottom &&
85
+ `bottom: ${props.initialPosition.bottom};`}
86
+ `
87
+
88
+ const HeaderContainer = styled.div`
89
+ display: flex;
90
+ align-items: center;
91
+ justify-content: space-between;
92
+ padding: 8px;
93
+ `
94
+
95
+ const SubHeaderWrapper = styled.div`
96
+ display: flex;
97
+ min-width: 180px;
98
+ align-items: center;
99
+ justify-content: space-between;
100
+ height: fit-content;
101
+ `
102
+
103
+ const LeftIconsContainer = styled.div`
104
+ display: flex;
105
+ align-items: center;
106
+ gap: 4px;
107
+ `
108
+
109
+ const TitleContainer = styled.div`
110
+ display: flex;
111
+ align-items: center;
112
+ gap: 8px;
113
+ `
114
+
115
+ const TextContainer = styled.div`
116
+ font-family: ${theme.fonts.mainFont};
117
+ font-weight: 600;
118
+ font-size: 14px;
119
+ line-height: 19.6px;
120
+ letter-spacing: -1%;
121
+ color: ${theme.colors.white};
122
+ `
123
+
124
+ const DragHandleWrapper = styled.div`
125
+ display: grid;
126
+ align-items: center;
127
+ justify-items: center;
128
+ width: 26px;
129
+ height: 26px;
130
+ cursor: grab;
131
+ &.dragging {
132
+ cursor: grabbing;
133
+ }
134
+ `
135
+
136
+ const collapsedAttrs = {
137
+ isCollapsed: Boolean,
138
+ }
139
+ const ArrowIconWrapper = styled('div', collapsedAttrs)`
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ width: 8px;
144
+ transition: transform 0.3s ease;
145
+ cursor: pointer;
146
+ path {
147
+ fill: ${theme.colors.white};
148
+ }
149
+ ${(props) => props.isCollapsed && 'transform: rotate(-180deg);'}
150
+ `
151
+
152
+ const BodyContainer = styled.div`
153
+ display: flex;
154
+ flex-direction: column;
155
+ gap: 16px;
156
+ padding-top: 8px;
157
+ padding-right: 16px;
158
+ padding-bottom: 8px;
159
+ padding-left: 16px;
160
+ `
161
+
162
+ const FooterContainer = styled.div`
163
+ display: flex;
164
+ border-radius: 4px;
165
+ align-items: center;
166
+ justify-content: space-between;
167
+ padding: 8px;
168
+ background: ${theme.colors.eturnityGrey};
169
+ `
170
+
171
+ export default {
172
+ name: 'DraggableCard',
173
+ components: {
174
+ CardContainer,
175
+ HeaderContainer,
176
+ SubHeaderWrapper,
177
+ LeftIconsContainer,
178
+ TextContainer,
179
+ DragHandleWrapper,
180
+ ArrowIconWrapper,
181
+ CollapseArrowIcon,
182
+ RCIcon,
183
+ CloseButton,
184
+ InfoText,
185
+ TitleContainer,
186
+ BodyContainer,
187
+ FooterContainer,
188
+ },
189
+ props: {
190
+ minWidth: {
191
+ required: true,
192
+ type: String,
193
+ },
194
+ maxWidth: {
195
+ required: true,
196
+ type: String,
197
+ },
198
+ initialPosition: {
199
+ required: true,
200
+ type: Object,
201
+ },
202
+ title: {
203
+ required: true,
204
+ type: String,
205
+ },
206
+ isCollapsible: {
207
+ required: false,
208
+ type: Boolean,
209
+ default: true,
210
+ },
211
+ infoText: {
212
+ required: false,
213
+ type: String,
214
+ default: '',
215
+ },
216
+ dragTargets: {
217
+ required: false,
218
+ type: Array,
219
+ default: () => ['document'],
220
+ },
221
+ dragBounds: {
222
+ required: false,
223
+ type: Object,
224
+ default: () => {},
225
+ },
226
+ },
227
+ emits: ['on-close'],
228
+ data() {
229
+ return {
230
+ isCollapsed: false,
231
+ isDragging: false,
232
+ isTouchStart: false,
233
+ eventCoordinates: {
234
+ x: 0,
235
+ y: 0,
236
+ },
237
+ }
238
+ },
239
+ computed: {
240
+ dragBoundsEnabled() {
241
+ const minPosition = this.dragBounds?.min
242
+ const maxPosition = this.dragBounds?.max
243
+ return (
244
+ minPosition?.top &&
245
+ minPosition?.left &&
246
+ maxPosition?.top &&
247
+ maxPosition?.left
248
+ )
249
+ },
250
+ theme() {
251
+ return theme
252
+ },
253
+ },
254
+ beforeUnmount() {
255
+ this.removeEvents()
256
+ },
257
+ methods: {
258
+ toggleCollapse() {
259
+ this.isCollapsed = !this.isCollapsed
260
+ },
261
+ onDragStart(e, isTouchStart) {
262
+ e.preventDefault()
263
+ this.isDragging = true
264
+ this.isTouchStart = isTouchStart
265
+ this.eventCoordinates.x = isTouchStart
266
+ ? e.touches[0].clientX
267
+ : e.clientX
268
+ this.eventCoordinates.y = isTouchStart
269
+ ? e.touches[0].clientY
270
+ : e.clientY
271
+ this.dragTargets.forEach((id) => {
272
+ const target =
273
+ id === 'document' ? document : document.getElementById(id)
274
+ if (target && target.addEventListener) {
275
+ target.addEventListener(
276
+ isTouchStart ? 'touchend' : 'mouseup',
277
+ this.onDragEnd
278
+ )
279
+ target.addEventListener(
280
+ isTouchStart ? 'touchmove' : 'mousemove',
281
+ this.onDrag
282
+ )
283
+ }
284
+ })
285
+ document.addEventListener(
286
+ isTouchStart ? 'touchend' : 'mouseup',
287
+ this.onDragEnd
288
+ )
289
+ },
290
+ onDrag(e) {
291
+ e.preventDefault()
292
+ const eventX = this.isTouchStart ? e.touches[0].clientX : e.clientX
293
+ const eventY = this.isTouchStart ? e.touches[0].clientY : e.clientY
294
+ const deltaX = this.eventCoordinates.x - eventX
295
+ const deltaY = this.eventCoordinates.y - eventY
296
+ this.eventCoordinates.x = eventX
297
+ this.eventCoordinates.y = eventY
298
+ const element = this.$el
299
+ let positionY = element.offsetTop - deltaY
300
+ let positionX = element.offsetLeft - deltaX
301
+ if (this.dragBoundsEnabled) {
302
+ const minPosition = this.dragBounds.min
303
+ const maxPosition = this.dragBounds.max
304
+ positionY = Math.min(
305
+ Math.max(positionY, minPosition.top),
306
+ maxPosition.top
307
+ )
308
+ positionX = Math.min(
309
+ Math.max(positionX, minPosition.left),
310
+ maxPosition.left
311
+ )
312
+ }
313
+ element.style.top = positionY + 'px'
314
+ element.style.left = positionX + 'px'
315
+ },
316
+ onDragEnd() {
317
+ this.isDragging = false
318
+ this.removeEvents()
319
+ },
320
+ removeEvents() {
321
+ this.dragTargets.forEach((id) => {
322
+ const target =
323
+ id === 'document' ? document : document.getElementById(id)
324
+ if (target && target.removeEventListener) {
325
+ target.removeEventListener('mouseup', this.onDragEnd)
326
+ target.removeEventListener('touchend', this.onDragEnd)
327
+ target.removeEventListener('mousemove', this.onDrag)
328
+ target.removeEventListener('touchmove', this.onDrag)
329
+ }
330
+ })
331
+ document.removeEventListener('mouseup', this.onDragEnd)
332
+ document.removeEventListener('touchend', this.onDragEnd)
333
+ },
334
+ },
335
+ }
336
+ </script>
@@ -12,7 +12,7 @@
12
12
  <RCIcon
13
13
  :color="iconColor ? iconColor : presetStyles.iconColor"
14
14
  data-test-id="info_card_icon"
15
- :name="isErrorMinor ? 'erase' : 'info'"
15
+ name="info"
16
16
  size="24px"
17
17
  />
18
18
  <TextContainer data-test-id="info_card_text_container">
@@ -138,8 +138,8 @@
138
138
  stylesCollection.iconColor = theme.colors.white
139
139
  } else if (this.isErrorMinor) {
140
140
  stylesCollection.borderStyle = 'dashed'
141
- stylesCollection.borderColor = theme.colors.grey4
142
- stylesCollection.iconColor = theme.colors.red
141
+ stylesCollection.borderColor = theme.colors.pureRed
142
+ stylesCollection.iconColor = theme.colors.pureRed
143
143
  } else {
144
144
  stylesCollection.borderStyle = 'dashed'
145
145
  stylesCollection.borderColor = theme.colors.grey4
@@ -44,7 +44,7 @@
44
44
  import styled from 'vue3-styled-components'
45
45
 
46
46
  const ComponentWrapper = styled.div`
47
- min-height: 18px;
47
+ min-height: 16px;
48
48
  `
49
49
 
50
50
  const CheckWrapper = styled('div', { hasLabel: Boolean })`
@@ -179,7 +179,7 @@
179
179
  font-size: 13px;
180
180
  display: grid;
181
181
  align-items: center;
182
- min-height: 18px;
182
+ min-height: 16px;
183
183
  color: ${(props) =>
184
184
  props.isDisabled ? props.theme.colors.grey2 : 'unset'};
185
185
  `
@@ -3,15 +3,15 @@ import InputNumber from './index.vue'
3
3
  export default {
4
4
  title: 'InputNumber',
5
5
  component: InputNumber,
6
+ // argTypes: {},
6
7
  }
7
8
 
8
- const Template = (args) => ({
9
+ const Template = (args, { argTypes }) => ({
9
10
  // Components used in your story `template` are defined in the `components` object
10
11
  components: { InputNumber },
11
- setup() {
12
- return { args: args }
13
- },
14
- template: `<InputNumber v-bind="args" />`,
12
+ // The story's `args` need to be mapped into the template through the `setup()` method
13
+ props: Object.keys(argTypes),
14
+ template: '<input-number v-bind="$props" />',
15
15
 
16
16
  // import InputNumber from "@eturnity/eturnity_reusable_components/src/components/inputs/inputNumber"
17
17
  // How to use:
@@ -73,20 +73,6 @@ Disabled.args = {
73
73
  showLinearUnitName: false,
74
74
  }
75
75
 
76
- export const DisabledAndPreDefined = Template.bind({})
77
- DisabledAndPreDefined.args = {
78
- placeholder: 'Enter Value',
79
- disabled: true,
80
- isPreDefined: true,
81
- value: '',
82
- inputWidth: '200px',
83
- isError: false,
84
- numberPrecision: 0,
85
- noBorder: false,
86
- textAlign: 'left',
87
- showLinearUnitName: false,
88
- }
89
-
90
76
  export const LinearUnit = Template.bind({})
91
77
  LinearUnit.args = {
92
78
  placeholder: 'Enter Value',
@@ -42,6 +42,7 @@
42
42
  :color-mode="colorMode"
43
43
  :data-id="inputDataId"
44
44
  :data-qa-id="dataQaId"
45
+ :disabled="disabled"
45
46
  :font-color="colorMode === 'transparent' ? 'white' : fontColor"
46
47
  :font-size="fontSize"
47
48
  :has-label-slot="hasLabelSlot"
@@ -51,7 +52,6 @@
51
52
  :is-disabled="disabled"
52
53
  :is-error="isError"
53
54
  :is-interactive="isInteractive"
54
- :is-pre-defined="isPreDefined"
55
55
  :min-width="minWidth"
56
56
  :no-border="noBorder"
57
57
  :placeholder="displayedPlaceholder"
@@ -194,7 +194,6 @@
194
194
  slotSize: String,
195
195
  inputHeight: String,
196
196
  isInteractive: Boolean,
197
- isPreDefined: Boolean,
198
197
  alignItems: String,
199
198
  labelFontColor: String,
200
199
  labelFontWeight: String,
@@ -255,7 +254,7 @@
255
254
  color: ${(props) =>
256
255
  props.isError
257
256
  ? props.theme.colors.grey6
258
- : props.isDisabled && !props.isPreDefined
257
+ : props.isDisabled
259
258
  ? props.colorMode === 'transparent'
260
259
  ? props.theme.colors.white
261
260
  : props.theme.colors.grey2
@@ -525,11 +524,6 @@
525
524
  required: false,
526
525
  default: 0,
527
526
  },
528
- isPreDefined: {
529
- type: Boolean,
530
- required: false,
531
- default: false,
532
- },
533
527
  minDecimals: {
534
528
  type: Number,
535
529
  required: false,
@@ -650,18 +644,12 @@
650
644
  required: false,
651
645
  default: '',
652
646
  },
653
- labelDataTestId: {
654
- type: String,
655
- required: false,
656
- default: '',
657
- },
658
647
  inputDataId: {
659
648
  type: String,
660
649
  required: false,
661
650
  default: '',
662
651
  },
663
652
  dataQaId: {
664
- type: String,
665
653
  required: false,
666
654
  default: '',
667
655
  },