amotify 0.2.196 → 0.2.198

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.
@@ -1354,7 +1354,7 @@ text5`}
1354
1354
  freeCSS={ {
1355
1355
  minHeight: 12 * 6
1356
1356
  } }
1357
- onUpdateValidValue={ ( args ) => {
1357
+ onUpdateValidValue={ args => {
1358
1358
  console.log( args )
1359
1359
  } }
1360
1360
  />
@@ -2784,53 +2784,27 @@ let DesignBook = () => {
2784
2784
  // />
2785
2785
  // </Column>
2786
2786
 
2787
- let array = [
2788
- '西暦',
2789
- '和暦',
2790
- '中華民国',
2791
- 'イスラム暦',
2792
- ]
2793
-
2794
- let [ val_value,set_value ] = useState( "" )
2795
-
2796
2787
  return <Plate
2797
2788
  padding={ 3 }
2798
2789
  size="XS"
2799
2790
  >
2800
- <Column backgroundColor='cloud'>
2801
- <Table.Normal
2802
- colLength={ 2 }
2803
- head={ false }
2804
- backgroundColor='trans'
2805
- rows={ [
2806
- [
2807
- { children: '西暦' },
2808
- { children: '和暦' },
2809
- { children: '中華民国' },
2810
- ],[
2811
- { children: '西暦' },
2812
- { children: '和暦' },
2813
- { children: '中華民国' },
2814
- ],[
2815
- { children: '西暦' },
2816
- { children: '和暦' },
2817
- { children: '中華民国' },
2818
- ],
2819
- ] }
2791
+ <Column>
2792
+ <Input.TextField
2793
+ multiline
2794
+ // value={ 'AAAA' }
2795
+ // options={ [
2796
+ // { value: "AAAA",label: "AAAA" },
2797
+ // { value: "BBBB",label: "BBBB" },
2798
+ // { value: "CCCC",label: "CCCC" }
2799
+ // ] }
2800
+ onUpdateValidValue={ ( ...args ) => {
2801
+ // console.log( args )
2802
+ } }
2803
+ onUserAction={ ( value,opt ) => {
2804
+ console.log( value,opt )
2805
+ } }
2820
2806
  />
2821
- <Button.Sub
2822
- backgroundColor='trans'
2823
- margin={ 'auto' }
2824
- >
2825
- Submit
2826
- </Button.Sub>
2827
- <Button.Prime
2828
- margin={ 'auto' }
2829
- >
2830
- Submit
2831
- </Button.Prime>
2832
2807
  </Column>
2833
-
2834
2808
  </Plate>
2835
2809
 
2836
2810
  return <>