amotify 0.2.123 → 0.2.125

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,7 +40,42 @@ let Test = () => {
40
40
  gap={ 3 }
41
41
  backgroundColor='layer.0'
42
42
  >
43
- <Box
43
+ <Input.Select
44
+ options={ [
45
+ { value: 'AAA',label: 'AAA' },
46
+ { value: 'BBB',label: 'BBB' },
47
+ { value: 'CCC',label: 'CCC' },
48
+ ] }
49
+ />
50
+ <Input.Select
51
+ SelectorMode='legacy'
52
+ options={ [
53
+ { value: 'AAA',label: 'AAA' },
54
+ { value: 'BBB',label: 'BBB' },
55
+ { value: 'CCC',label: 'CCC' },
56
+ ] }
57
+ name='test'
58
+ form='test'
59
+ required
60
+ onUpdateValidValue={ value => {
61
+ console.log( value )
62
+ } }
63
+ onUpdateValue={ value => {
64
+ console.log( value )
65
+ } }
66
+ />
67
+ <Button.Prime
68
+ submitOption={ {
69
+ formName: 'test',
70
+ callback: form => {
71
+ console.log( form )
72
+ }
73
+ } }
74
+ >
75
+ Submit
76
+ </Button.Prime>
77
+
78
+ {/* <Box
44
79
  ssSquare={ 12 }
45
80
  backgroundColor='layer.0'
46
81
  />
@@ -59,7 +94,7 @@ let Test = () => {
59
94
  <Box
60
95
  ssSquare={ 12 }
61
96
  backgroundColor='cloud'
62
- />
97
+ /> */}
63
98
  </Row.Center>
64
99
  </Box>
65
100
  }
@@ -75,7 +110,7 @@ $$.scope( () => {
75
110
 
76
111
  themeColor: $$.localStrage.get( 'prf.themeColor' ) || 'battery',
77
112
  // darkMode: $$.getLocalStrageData( 'prf.darkMode' ) || 'dark'
78
- darkMode: 'dark'
113
+ // darkMode: 'dark'
79
114
  // darkMode: 'dim'
80
115
  } )
81
116