@dfosco/storyboard-react 4.0.0-beta.29 → 4.0.0-beta.30
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
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfosco/storyboard-react",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.30",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@dfosco/storyboard-core": "4.0.0-beta.
|
|
7
|
-
"@dfosco/tiny-canvas": "4.0.0-beta.
|
|
6
|
+
"@dfosco/storyboard-core": "4.0.0-beta.30",
|
|
7
|
+
"@dfosco/tiny-canvas": "4.0.0-beta.30",
|
|
8
8
|
"@neodrag/react": "^2.3.1",
|
|
9
9
|
"glob": "^11.0.0",
|
|
10
10
|
"jsonc-parser": "^3.3.1",
|
|
@@ -17,14 +17,15 @@ import overlayStyles from './embedOverlay.module.css'
|
|
|
17
17
|
|
|
18
18
|
const codepenEmbedSchema = schemas['codepen-embed']
|
|
19
19
|
|
|
20
|
-
/**
|
|
20
|
+
/** Feather Icons codepen icon (stroke-based) */
|
|
21
21
|
function CodePenLogo({ className }) {
|
|
22
22
|
return (
|
|
23
|
-
<svg className={className} viewBox="0 0
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
/>
|
|
23
|
+
<svg className={className} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
|
|
24
|
+
<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2" />
|
|
25
|
+
<line x1="12" y1="22" x2="12" y2="15.5" />
|
|
26
|
+
<polyline points="22 8.5 12 15.5 2 8.5" />
|
|
27
|
+
<polyline points="2 15.5 12 8.5 22 15.5" />
|
|
28
|
+
<line x1="12" y1="2" x2="12" y2="8.5" />
|
|
28
29
|
</svg>
|
|
29
30
|
)
|
|
30
31
|
}
|