@dfosco/storyboard 0.12.1 → 0.12.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/package.json
CHANGED
|
@@ -1690,24 +1690,26 @@ function WorkspaceImpl({
|
|
|
1690
1690
|
{t}
|
|
1691
1691
|
</button>
|
|
1692
1692
|
))}
|
|
1693
|
-
<
|
|
1694
|
-
<
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
<
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1693
|
+
<div className={css.tabOptions}>
|
|
1694
|
+
<label className={css.groupByFolders}>
|
|
1695
|
+
<input
|
|
1696
|
+
type="checkbox"
|
|
1697
|
+
className={css.groupByFoldersCheckbox}
|
|
1698
|
+
checked={groupByFolders}
|
|
1699
|
+
onChange={toggleGrouping}
|
|
1700
|
+
/>
|
|
1701
|
+
Group by folders
|
|
1702
|
+
</label>
|
|
1703
|
+
<label className={css.groupByFolders}>
|
|
1704
|
+
<input
|
|
1705
|
+
type="checkbox"
|
|
1706
|
+
className={css.groupByFoldersCheckbox}
|
|
1707
|
+
checked={showDrafts}
|
|
1708
|
+
onChange={toggleShowDrafts}
|
|
1709
|
+
/>
|
|
1710
|
+
Show drafts
|
|
1711
|
+
</label>
|
|
1712
|
+
</div>
|
|
1711
1713
|
</div>
|
|
1712
1714
|
|
|
1713
1715
|
{/* Grid */}
|
|
@@ -552,7 +552,7 @@ export default forwardRef(function PrototypeEmbed({ id: widgetId, props, onUpdat
|
|
|
552
552
|
// Match the placeholder's themed background so any
|
|
553
553
|
// brief gap during navigation (refresh or src change)
|
|
554
554
|
// never flashes the browser's default white.
|
|
555
|
-
background: 'var(--color-background
|
|
555
|
+
background: 'var(--color-background)',
|
|
556
556
|
}}
|
|
557
557
|
title={`${prototypeTitle} prototype`}
|
|
558
558
|
sandbox="allow-same-origin allow-scripts allow-forms allow-popups"
|