amotify 0.2.93 → 0.2.95

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.
@@ -95,6 +95,46 @@ let Test = () => {
95
95
  } }
96
96
  >
97
97
  <Column gap={ 2 }>
98
+ <Box
99
+ // unitWidth={ 8 }
100
+ padding={ '1/4' }
101
+ backgroundColor='nega'
102
+ >
103
+ <Input.Time.Clock
104
+ unitWidth={ 8 }
105
+ // flexSizing={ 'none' }
106
+ wrapStyles={ {
107
+ // unitWidth: 8
108
+ } }
109
+ />
110
+ </Box>
111
+ <Box
112
+ // unitWidth={ 8 }
113
+ padding={ '1/4' }
114
+ backgroundColor='nega'
115
+ >
116
+ <Input.Select
117
+ unitWidth={ 8 }
118
+ wrapStyles={ {
119
+ unitWidth: 8
120
+ } }
121
+ options={ [
122
+ { value: 1,label: 'Option1' },
123
+ { value: 2,label: 'Option2' },
124
+ ] }
125
+ />
126
+ </Box>
127
+ <Box
128
+ // unitWidth={ 8 }
129
+ padding={ '1/4' }
130
+ backgroundColor='nega'
131
+ >
132
+ <Input.TextField
133
+ wrapStyles={ {
134
+ unitWidth: 8
135
+ } }
136
+ />
137
+ </Box>
98
138
  <Row.Left>
99
139
  <Input.Switch.S
100
140
  icon={ <FAI.Check /> }
@@ -2880,7 +2880,6 @@ const DesignConfig = {
2880
2880
  }
2881
2881
 
2882
2882
  let DesignBook = () => {
2883
- console.log( UUID() )
2884
2883
  let [ val_tabIndex,set_tabIndex ] = useState( Number( $$.queryParams.get().ti ) || 0 )
2885
2884
  useEffect( () => {
2886
2885
  $$.queryParams.set( { 'ti': String( val_tabIndex ) } )