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.modern.js
CHANGED
@@ -3276,7 +3276,9 @@ var Dialog = function Dialog(props) {
|
|
3276
3276
|
*/
|
3277
3277
|
|
3278
3278
|
var View = function View(props) {
|
3279
|
-
var
|
3279
|
+
var id = props.id,
|
3280
|
+
className = props.className,
|
3281
|
+
icon = props.icon,
|
3280
3282
|
title = props.title,
|
3281
3283
|
toolbar = props.toolbar,
|
3282
3284
|
menu = props.menu,
|
@@ -3299,7 +3301,8 @@ var View = function View(props) {
|
|
3299
3301
|
}
|
3300
3302
|
|
3301
3303
|
return /*#__PURE__*/React.createElement("section", {
|
3302
|
-
|
3304
|
+
id: id,
|
3305
|
+
className: "view " + className
|
3303
3306
|
}, /*#__PURE__*/React.createElement("header", null, canCollapse ? /*#__PURE__*/React.createElement(Icon, {
|
3304
3307
|
icon: "expand_more",
|
3305
3308
|
size: "small",
|