@symbo.ls/dialog 2.11.523 → 3.0.2
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/index.js +5 -5
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
3
|
export const Dialog = {
|
|
4
|
-
|
|
4
|
+
extends: 'Flex',
|
|
5
5
|
tag: 'dialog',
|
|
6
6
|
|
|
7
7
|
props: {
|
|
@@ -13,7 +13,7 @@ export const Dialog = {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export const DialogHeader = {
|
|
16
|
-
|
|
16
|
+
extends: 'Hgroup',
|
|
17
17
|
|
|
18
18
|
props: {
|
|
19
19
|
minWidth: '100%',
|
|
@@ -37,7 +37,7 @@ export const DialogHeader = {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
export const DialogFooter = {
|
|
40
|
-
|
|
40
|
+
extends: 'Flex',
|
|
41
41
|
|
|
42
42
|
props: {
|
|
43
43
|
align: 'center flex-end',
|
|
@@ -46,8 +46,8 @@ export const DialogFooter = {
|
|
|
46
46
|
padding: 'Y2 X2'
|
|
47
47
|
},
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
childExtends: {
|
|
50
|
+
extends: 'Button',
|
|
51
51
|
props: {
|
|
52
52
|
textTransform: 'uppercase',
|
|
53
53
|
background: 'transparent',
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/dialog",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "c4dacc88fa3a65574680d11e320307dd2a22e6e9",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@symbo.ls/atoms": "^
|
|
9
|
-
"@symbo.ls/button": "^
|
|
8
|
+
"@symbo.ls/atoms": "^3.0.2",
|
|
9
|
+
"@symbo.ls/button": "^3.0.2"
|
|
10
10
|
},
|
|
11
11
|
"source": "src/index.js"
|
|
12
12
|
}
|