amotify 0.2.126 → 0.2.127

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.
@@ -7,6 +7,7 @@ import $$ from 'jmini'
7
7
  import {
8
8
  Config,
9
9
  Row,
10
+ Card,
10
11
  useRouterEffect,
11
12
  LaunchReactApp,
12
13
  Input,
@@ -14,6 +15,8 @@ import {
14
15
  Anchor,
15
16
  pageRouter,
16
17
  Button,
18
+ Plate,
19
+ Column,
17
20
  } from 'amotify'
18
21
 
19
22
  import '../../dist/@styles/style.css'
@@ -24,8 +27,27 @@ import {
24
27
 
25
28
  let Test = () => {
26
29
  return <Box>
27
- <DesignBook
28
- />
30
+ <Plate padding={ 4 }>
31
+ <Column>
32
+ <Card>
33
+ Hello World
34
+ </Card>
35
+ <Card.Border>
36
+ Hello World
37
+ </Card.Border>
38
+ <Card.Cloud>
39
+ Hello World
40
+ </Card.Cloud>
41
+ <Card.Plain>
42
+ Hello World
43
+ </Card.Plain>
44
+ <Card.Shadow>
45
+ Hello World
46
+ </Card.Shadow>
47
+ </Column>
48
+ </Plate>
49
+ {/* <DesignBook
50
+ /> */}
29
51
 
30
52
  {/* <Row.Center
31
53
  padding={ 2 }
@@ -1261,7 +1261,7 @@ const Shadows = {
1261
1261
  let Cell = ( p: Box.DefaultInput ) => {
1262
1262
  return <Box
1263
1263
  flexCenter
1264
- ssCardBox={ 'layer' }
1264
+ ssCardBox={ 'plain' }
1265
1265
  textAlign={ 'center' }
1266
1266
  padding={ 2 }
1267
1267
  { ...p }