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 CHANGED
@@ -3284,7 +3284,9 @@ var Dialog = function Dialog(props) {
3284
3284
  */
3285
3285
 
3286
3286
  var View = function View(props) {
3287
- var icon = props.icon,
3287
+ var id = props.id,
3288
+ className = props.className,
3289
+ icon = props.icon,
3288
3290
  title = props.title,
3289
3291
  toolbar = props.toolbar,
3290
3292
  menu = props.menu,
@@ -3307,7 +3309,8 @@ var View = function View(props) {
3307
3309
  }
3308
3310
 
3309
3311
  return /*#__PURE__*/React__default["default"].createElement("section", {
3310
- className: "view"
3312
+ id: id,
3313
+ className: "view " + className
3311
3314
  }, /*#__PURE__*/React__default["default"].createElement("header", null, canCollapse ? /*#__PURE__*/React__default["default"].createElement(Icon, {
3312
3315
  icon: "expand_more",
3313
3316
  size: "small",