@social-mail/social-mail-client 1.8.309 → 1.8.310

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.
@@ -55,7 +55,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "../../common/Socia
55
55
  commandLink: AppCommands.openHome.displayRoute({})
56
56
  }), XNode.create("div", {
57
57
  class: "menu-item-search",
58
- "style-visible": Bind.oneWay(() => this.menuService.showSearch)
58
+ "style-display": Bind.oneWay(() => this.menuService.showSearch)
59
59
  }, XNode.create("input", {
60
60
  type: "search",
61
61
  value: Bind.twoWaysImmediate(() => this.menuService.search)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-client",
3
- "version": "1.8.309",
3
+ "version": "1.8.310",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -41,7 +41,7 @@ export default class AppDrawer extends BaseDrawer {
41
41
  label="Home"
42
42
  commandLink={AppCommands.openHome.displayRoute({})}
43
43
  />}
44
- <div class="menu-item-search" style-visible={Bind.oneWay(() => this.menuService.showSearch)}>
44
+ <div class="menu-item-search" style-display={Bind.oneWay(() => this.menuService.showSearch)}>
45
45
  <input
46
46
  type="search"
47
47
  value={Bind.twoWaysImmediate(() => this.menuService.search)}/>