amotify 0.2.145 → 0.2.147

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.
@@ -40,19 +40,20 @@ let Test = () => {
40
40
  let accordionID = 'accordionIDD'
41
41
 
42
42
  return <Box>
43
- {/* <Plate size='S'>
43
+ <Plate size='S'>
44
44
  <Column
45
45
  padding={ 2 }
46
46
  >
47
- <Row.Left>
48
- <Input.Slider
49
- min={ 0 }
50
- max={ 100 }
51
- step={ 25 }
52
- form='test'
53
- name='slider'
54
- />
55
- </Row.Left>
47
+ <Input.TextField.Money.JPY
48
+ label='金額'
49
+ form='test'
50
+ name='price'
51
+ required
52
+ allowDecimals
53
+ onUpdateValidValue={ value => {
54
+ console.log( value,Number( value ) );
55
+ } }
56
+ />
56
57
  <Button.Sub
57
58
  submitOption={ {
58
59
  formName: 'test',
@@ -64,9 +65,9 @@ let Test = () => {
64
65
  Submit
65
66
  </Button.Sub>
66
67
  </Column>
67
- </Plate> */}
68
- <DesignBook
69
- />
68
+ </Plate>
69
+ {/* <DesignBook
70
+ /> */}
70
71
  </Box>
71
72
  }
72
73