@symbo.ls/preview 0.0.58 → 0.0.59
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.
package/package.json
CHANGED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
import { Flex } from '@symbo.ls/components'
|
|
4
|
+
import { TutorialBanner } from '../../../components'
|
|
5
|
+
|
|
6
|
+
import DARK_PNG from '../../../assets/dark.png'
|
|
7
|
+
import TYPE_PNG from '../../../assets/type.png'
|
|
8
|
+
import SPACE_PNG from '../../../assets/space.png'
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
extend: Flex,
|
|
12
|
+
|
|
13
|
+
props: {
|
|
14
|
+
align: 'stretch space-between',
|
|
15
|
+
margin: 'C1 -Z1',
|
|
16
|
+
gap: 'B1'
|
|
17
|
+
},
|
|
18
|
+
|
|
19
|
+
childExtend: TutorialBanner,
|
|
20
|
+
|
|
21
|
+
$setStateCollection: ({ state }) => [{
|
|
22
|
+
title: 'Setting up a dark theme',
|
|
23
|
+
p: '1 min tutorial',
|
|
24
|
+
background: DARK_PNG,
|
|
25
|
+
href: ''
|
|
26
|
+
}, {
|
|
27
|
+
title: 'Learn typography scaling',
|
|
28
|
+
p: '2 mins tutorial',
|
|
29
|
+
background: TYPE_PNG,
|
|
30
|
+
href: ''
|
|
31
|
+
}, {
|
|
32
|
+
title: 'How scaling of space works',
|
|
33
|
+
p: '5 mins tutorial',
|
|
34
|
+
background: SPACE_PNG,
|
|
35
|
+
href: ''
|
|
36
|
+
}]
|
|
37
|
+
}
|
|
@@ -1,42 +1,8 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import { Flex } from '@symbo.ls/components'
|
|
4
|
-
import { TutorialBanner } from '../../../components'
|
|
5
|
-
|
|
6
3
|
import summary from './summary'
|
|
7
4
|
import quickstart from './quickstart'
|
|
8
|
-
|
|
9
|
-
import DARK_PNG from '../../../assets/dark.png'
|
|
10
|
-
import TYPE_PNG from '../../../assets/type.png'
|
|
11
|
-
import SPACE_PNG from '../../../assets/space.png'
|
|
12
|
-
|
|
13
|
-
const banners = {
|
|
14
|
-
extend: Flex,
|
|
15
|
-
props: {
|
|
16
|
-
align: 'stretch space-between',
|
|
17
|
-
margin: 'C1 -Z1',
|
|
18
|
-
gap: 'B1'
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
childExtend: TutorialBanner,
|
|
22
|
-
|
|
23
|
-
$setStateCollection: ({ state }) => [{
|
|
24
|
-
title: 'Setting up a dark theme',
|
|
25
|
-
p: '1 min tutorial',
|
|
26
|
-
background: DARK_PNG,
|
|
27
|
-
href: ''
|
|
28
|
-
}, {
|
|
29
|
-
title: 'Learn typography scaling',
|
|
30
|
-
p: '2 mins tutorial',
|
|
31
|
-
background: TYPE_PNG,
|
|
32
|
-
href: ''
|
|
33
|
-
}, {
|
|
34
|
-
title: 'How scaling of space works',
|
|
35
|
-
p: '5 mins tutorial',
|
|
36
|
-
background: SPACE_PNG,
|
|
37
|
-
href: ''
|
|
38
|
-
}]
|
|
39
|
-
}
|
|
5
|
+
import banners from './banners'
|
|
40
6
|
|
|
41
7
|
export const DesignSystemDashboard = {
|
|
42
8
|
ArticleBig: {
|