ywana-core8 0.0.291 → 0.0.292
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/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +7 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/site/site.css +7 -0
- package/src/site/site.js +1 -0
package/package.json
CHANGED
package/src/site/site.css
CHANGED
package/src/site/site.js
CHANGED
@@ -198,6 +198,7 @@ const SiteMenu = ({ logo, title, children, min }) => {
|
|
198
198
|
<main >
|
199
199
|
{Object.keys(sections).map(title => (
|
200
200
|
<Fragment key={title}>
|
201
|
+
<div className="section-title">{title}</div>
|
201
202
|
{sections[title].map(({ id, icon = 'info', title }) => {
|
202
203
|
const styleItem = id === page ? 'selected' : ''
|
203
204
|
return (
|