@eturnity/eturnity_reusable_components 8.10.3-EPDM-11600.0 → 8.10.3-EPDM-11600.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,15 +3,15 @@ import InputNumber from './index.vue'
|
|
3
3
|
export default {
|
4
4
|
title: 'InputNumber',
|
5
5
|
component: InputNumber,
|
6
|
-
// argTypes: {},
|
7
6
|
}
|
8
7
|
|
9
|
-
const Template = (args
|
8
|
+
const Template = (args) => ({
|
10
9
|
// Components used in your story `template` are defined in the `components` object
|
11
10
|
components: { InputNumber },
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
setup() {
|
12
|
+
return { args: args }
|
13
|
+
},
|
14
|
+
template: `<InputNumber v-bind="args" />`,
|
15
15
|
|
16
16
|
// import InputNumber from "@eturnity/eturnity_reusable_components/src/components/inputs/inputNumber"
|
17
17
|
// How to use:
|
@@ -73,6 +73,20 @@ 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
|
+
|
76
90
|
export const LinearUnit = Template.bind({})
|
77
91
|
LinearUnit.args = {
|
78
92
|
placeholder: 'Enter Value',
|