ywana-core8 0.0.280 → 0.0.281
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 +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/site/view.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -3279,7 +3279,9 @@
|
|
3279
3279
|
*/
|
3280
3280
|
|
3281
3281
|
var View = function View(props) {
|
3282
|
-
var
|
3282
|
+
var id = props.id,
|
3283
|
+
className = props.className,
|
3284
|
+
icon = props.icon,
|
3283
3285
|
title = props.title,
|
3284
3286
|
toolbar = props.toolbar,
|
3285
3287
|
menu = props.menu,
|
@@ -3302,7 +3304,8 @@
|
|
3302
3304
|
}
|
3303
3305
|
|
3304
3306
|
return /*#__PURE__*/React__default["default"].createElement("section", {
|
3305
|
-
|
3307
|
+
id: id,
|
3308
|
+
className: "view " + className
|
3306
3309
|
}, /*#__PURE__*/React__default["default"].createElement("header", null, canCollapse ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
3307
3310
|
icon: "expand_more",
|
3308
3311
|
size: "small",
|