@eturnity/eturnity_reusable_components 8.16.9-EPDM-11600.8 → 8.16.9-EPDM-11600.9
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
@@ -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',
|
@@ -52,7 +52,6 @@
|
|
52
52
|
:is-disabled="disabled"
|
53
53
|
:is-error="isError"
|
54
54
|
:is-interactive="isInteractive"
|
55
|
-
:is-pre-defined="isPreDefined"
|
56
55
|
:min-width="minWidth"
|
57
56
|
:no-border="noBorder"
|
58
57
|
:placeholder="displayedPlaceholder"
|
@@ -197,7 +196,6 @@
|
|
197
196
|
slotSize: String,
|
198
197
|
inputHeight: String,
|
199
198
|
isInteractive: Boolean,
|
200
|
-
isPreDefined: Boolean,
|
201
199
|
alignItems: String,
|
202
200
|
labelFontColor: String,
|
203
201
|
labelFontWeight: String,
|
@@ -260,7 +258,7 @@
|
|
260
258
|
color: ${(props) =>
|
261
259
|
props.isError
|
262
260
|
? props.theme.colors.grey6
|
263
|
-
: props.isDisabled
|
261
|
+
: props.isDisabled
|
264
262
|
? props.colorMode === 'transparent'
|
265
263
|
? props.theme.colors.white
|
266
264
|
: props.theme.colors.grey2
|
@@ -538,11 +536,6 @@
|
|
538
536
|
required: false,
|
539
537
|
default: 0,
|
540
538
|
},
|
541
|
-
isPreDefined: {
|
542
|
-
type: Boolean,
|
543
|
-
required: false,
|
544
|
-
default: false,
|
545
|
-
},
|
546
539
|
minDecimals: {
|
547
540
|
type: Number,
|
548
541
|
required: false,
|