@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.10.3-EPDM-11600.0",
3
+ "version": "8.10.3-EPDM-11600.1",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -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, { argTypes }) => ({
8
+ const Template = (args) => ({
10
9
  // Components used in your story `template` are defined in the `components` object
11
10
  components: { InputNumber },
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" />',
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',
@@ -42,7 +42,6 @@
42
42
  :color-mode="colorMode"
43
43
  :data-id="inputDataId"
44
44
  :data-qa-id="dataQaId"
45
- :disabled="disabled"
46
45
  :font-color="colorMode === 'transparent' ? 'white' : fontColor"
47
46
  :font-size="fontSize"
48
47
  :has-label-slot="hasLabelSlot"