@pingux/astro 2.31.0-alpha.1 → 2.31.0-alpha.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.
@@ -85,6 +85,12 @@ var CardRow = function CardRow(args) {
|
|
85
85
|
}, args))));
|
86
86
|
};
|
87
87
|
exports.CardRow = CardRow;
|
88
|
+
CardRow.parameters = {
|
89
|
+
design: {
|
90
|
+
type: 'figma',
|
91
|
+
url: _figmaLinks.FIGMA_LINKS.card.cardRow
|
92
|
+
}
|
93
|
+
};
|
88
94
|
var InteractiveCard = function InteractiveCard() {
|
89
95
|
var sx = {
|
90
96
|
alignContent: 'center',
|
@@ -110,4 +116,10 @@ var InteractiveCard = function InteractiveCard() {
|
|
110
116
|
}
|
111
117
|
}, "Explore"));
|
112
118
|
};
|
113
|
-
exports.InteractiveCard = InteractiveCard;
|
119
|
+
exports.InteractiveCard = InteractiveCard;
|
120
|
+
InteractiveCard.parameters = {
|
121
|
+
design: {
|
122
|
+
type: 'figma',
|
123
|
+
url: _figmaLinks.FIGMA_LINKS.card.interactiveCard
|
124
|
+
}
|
125
|
+
};
|
@@ -45,7 +45,9 @@ var FIGMA_LINKS = {
|
|
45
45
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=14289-33201&t=VgqEexa1CXAXfPpp-0'
|
46
46
|
},
|
47
47
|
card: {
|
48
|
-
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?
|
48
|
+
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=335%3A1780&mode=dev',
|
49
|
+
cardRow: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46142%3A6248&mode=dev',
|
50
|
+
interactiveCard: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46142%3A6279&mode=dev'
|
49
51
|
},
|
50
52
|
codeView: {
|
51
53
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=7510-27175&t=8Wwd3tIBh3GEjCJB-0'
|
@@ -74,6 +74,12 @@ export var CardRow = function CardRow(args) {
|
|
74
74
|
sx: sx.card
|
75
75
|
}, args))));
|
76
76
|
};
|
77
|
+
CardRow.parameters = {
|
78
|
+
design: {
|
79
|
+
type: 'figma',
|
80
|
+
url: FIGMA_LINKS.card.cardRow
|
81
|
+
}
|
82
|
+
};
|
77
83
|
export var InteractiveCard = function InteractiveCard() {
|
78
84
|
var sx = {
|
79
85
|
alignContent: 'center',
|
@@ -98,4 +104,10 @@ export var InteractiveCard = function InteractiveCard() {
|
|
98
104
|
return console.log('button pressed');
|
99
105
|
}
|
100
106
|
}, "Explore"));
|
107
|
+
};
|
108
|
+
InteractiveCard.parameters = {
|
109
|
+
design: {
|
110
|
+
type: 'figma',
|
111
|
+
url: FIGMA_LINKS.card.interactiveCard
|
112
|
+
}
|
101
113
|
};
|
@@ -38,7 +38,9 @@ export var FIGMA_LINKS = {
|
|
38
38
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=14289-33201&t=VgqEexa1CXAXfPpp-0'
|
39
39
|
},
|
40
40
|
card: {
|
41
|
-
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?
|
41
|
+
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=335%3A1780&mode=dev',
|
42
|
+
cardRow: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46142%3A6248&mode=dev',
|
43
|
+
interactiveCard: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46142%3A6279&mode=dev'
|
42
44
|
},
|
43
45
|
codeView: {
|
44
46
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=7510-27175&t=8Wwd3tIBh3GEjCJB-0'
|