@symbo.ls/preview 2.11.315 → 2.11.360
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/articles/Shadows.js +2 -2
- package/articles/Shapes.js +2 -3
- package/articles/Spacing.js +2 -4
- package/articles/Themes.js +7 -8
- package/blocks/Default.js +1 -3
- package/blocks/icon.js +1 -2
- package/blocks/section.js +1 -3
- package/blocks/shadow.js +1 -2
- package/package.json +2 -2
package/articles/Shadows.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { Banner } from '@symbo.ls/uikit'
|
|
4
4
|
import { shadow } from '../blocks'
|
|
5
5
|
|
|
6
6
|
export const Shadows = {
|
|
7
7
|
tag: 'article',
|
|
8
|
-
extend: Flex,
|
|
8
|
+
extend: 'Flex',
|
|
9
9
|
|
|
10
10
|
Header: {
|
|
11
11
|
tag: 'header',
|
package/articles/Shapes.js
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import { Flex, Banner } from '@symbo.ls/uikit'
|
|
4
3
|
import { shape } from '../blocks'
|
|
5
4
|
|
|
6
5
|
export const Shapes = {
|
|
7
6
|
tag: 'article',
|
|
8
|
-
extend: Flex,
|
|
7
|
+
extend: 'Flex',
|
|
9
8
|
|
|
10
9
|
Header: {
|
|
11
10
|
tag: 'header',
|
|
12
|
-
extend: Banner,
|
|
11
|
+
extend: 'Banner',
|
|
13
12
|
|
|
14
13
|
Title: {
|
|
15
14
|
props: {
|
package/articles/Spacing.js
CHANGED
package/articles/Themes.js
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import { Flex, Icon } from '@symbo.ls/uikit'
|
|
4
3
|
import { ColorBlock } from '../blocks'
|
|
5
4
|
|
|
6
5
|
export const Themes = {
|
|
7
6
|
tag: 'article',
|
|
8
|
-
extend: Flex,
|
|
7
|
+
extend: 'Flex',
|
|
9
8
|
|
|
10
9
|
Banner: {
|
|
11
10
|
Title: { props: { text: 'Themes' } },
|
|
@@ -46,23 +45,23 @@ export const Themes = {
|
|
|
46
45
|
}
|
|
47
46
|
},
|
|
48
47
|
childExtend: {
|
|
49
|
-
extend: Flex,
|
|
48
|
+
extend: 'Flex',
|
|
50
49
|
props: {
|
|
51
50
|
flow: 'column',
|
|
52
51
|
align: 'flex-start space-between',
|
|
53
52
|
padding: 'Z1 Z2'
|
|
54
53
|
},
|
|
55
54
|
icons: {
|
|
56
|
-
extend: Flex,
|
|
55
|
+
extend: 'Flex',
|
|
57
56
|
props: {
|
|
58
57
|
gap: 'B',
|
|
59
58
|
align: 'center space-between',
|
|
60
59
|
minWidth: '100%'
|
|
61
60
|
},
|
|
62
|
-
childExtend: Icon,
|
|
63
|
-
|
|
64
|
-
{
|
|
65
|
-
{
|
|
61
|
+
childExtend: 'Icon',
|
|
62
|
+
$propsCollection: [
|
|
63
|
+
{ name: 'sun' },
|
|
64
|
+
{ name: 'moon' }
|
|
66
65
|
]
|
|
67
66
|
},
|
|
68
67
|
title: {
|
package/blocks/Default.js
CHANGED
package/blocks/icon.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import { Grid } from '@symbo.ls/uikit'
|
|
4
3
|
import { DefaultBlock } from './section'
|
|
5
4
|
|
|
6
5
|
export const icon = {
|
|
@@ -13,7 +12,7 @@ export const icon = {
|
|
|
13
12
|
|
|
14
13
|
Title: null,
|
|
15
14
|
Paragraph: {
|
|
16
|
-
extend: Grid,
|
|
15
|
+
extend: 'Grid',
|
|
17
16
|
props: {
|
|
18
17
|
columns: 'repeat(7, 1fr)',
|
|
19
18
|
gap: 'C',
|
package/blocks/section.js
CHANGED
package/blocks/shadow.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import { Grid } from '@symbo.ls/uikit'
|
|
4
3
|
import { DefaultBlock } from './section'
|
|
5
4
|
|
|
6
5
|
export const shadow = {
|
|
@@ -14,7 +13,7 @@ export const shadow = {
|
|
|
14
13
|
Title: null,
|
|
15
14
|
|
|
16
15
|
Paragraph: {
|
|
17
|
-
extend: Grid,
|
|
16
|
+
extend: 'Grid',
|
|
18
17
|
props: {
|
|
19
18
|
columns: 'repeat(8, 1fr)',
|
|
20
19
|
gap: 'C2',
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/preview",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.360",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "87c62e587157ba9c3ef135e31dbc79f165cdaa38",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"smbls": "latest"
|
|
9
9
|
},
|