amotify 0.2.122 → 0.2.123

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.
@@ -1,6 +1,6 @@
1
1
  import ReactDOMClient from 'react-dom/client'
2
2
  import * as ReactRouterDOM from 'react-router-dom'
3
- import React,{ StrictMode,useEffect } from 'react'
3
+ import React,{ StrictMode,useEffect,useState } from 'react'
4
4
 
5
5
  import $$ from 'jmini'
6
6
 
@@ -31,35 +31,34 @@ import {
31
31
  } from './designBook'
32
32
 
33
33
  let Test = () => {
34
- let optionElms: ReactElement[] = []
35
- for ( let i = 0; i < 100; i++ ) {
36
- optionElms.push( <option key={ i } value={ i }>{ i }</option> )
37
- }
38
-
39
- useEffect( () => {
40
- let A = $$.interval.once( () => {
41
- console.log( 'testInterval' )
42
- },1000,'testInterval' )
43
-
44
- console.log( A )
45
- },[] )
46
-
47
- let Options: Input.Autocomplete.Option[] = []
48
- for ( let i = 0; i < 100; i++ ) {
49
- Options.push( { value: 'option' + i,label: 'オプション-' + i } )
50
- }
51
- for ( let i = 0; i < 100; i++ ) {
52
- Options.push( { value: 'optionJP' + i,label: '選択肢-' + i } )
53
- }
54
-
55
34
  return <Box>
56
35
  {/* <DesignBook
57
36
  /> */}
58
37
  <Row.Center
59
38
  flexCenter
60
39
  padding={ 3 }
40
+ gap={ 3 }
41
+ backgroundColor='layer.0'
61
42
  >
62
- <Input.TextField.Katakana
43
+ <Box
44
+ ssSquare={ 12 }
45
+ backgroundColor='layer.0'
46
+ />
47
+ <Box
48
+ ssSquare={ 12 }
49
+ backgroundColor='layer.1'
50
+ />
51
+ <Box
52
+ ssSquare={ 12 }
53
+ backgroundColor='layer.2'
54
+ />
55
+ <Box
56
+ ssSquare={ 12 }
57
+ backgroundColor='layer.3'
58
+ />
59
+ <Box
60
+ ssSquare={ 12 }
61
+ backgroundColor='cloud'
63
62
  />
64
63
  </Row.Center>
65
64
  </Box>
@@ -76,7 +75,8 @@ $$.scope( () => {
76
75
 
77
76
  themeColor: $$.localStrage.get( 'prf.themeColor' ) || 'battery',
78
77
  // darkMode: $$.getLocalStrageData( 'prf.darkMode' ) || 'dark'
79
- // darkMode: 'dark'
78
+ darkMode: 'dark'
79
+ // darkMode: 'dim'
80
80
  } )
81
81
 
82
82
  const AppRouter = () => {