Skip to content

Commit

Permalink
chore(bump): dep rb-base to v0.0.2 and update view syntax for lit-htm…
Browse files Browse the repository at this point in the history
…l >= v0.11.1
  • Loading branch information
jyounce committed Sep 5, 2018
1 parent 62bf904 commit 636d2ad
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"flat": true,
"dependencies": {
"@rapid-build-ui/rb-base": "^0.0.1",
"@rapid-build-ui/rb-button": "^0.0.8"
"@rapid-build-ui/rb-base": "^0.0.2",
"@rapid-build-ui/rb-button": "^0.0.9"
}
}
16 changes: 8 additions & 8 deletions src/client/views/rb-popover.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<div class$="
<div class="
rb-popover
${props.kind || 'default'}
${props.unstyled ? 'unstyled' : ''}
${props.caption ? 'with-caption' : 'no-caption'}
${props.fitContent ? 'fit-content' : ''}">
<rb-button
kind="text"
icon$="${props.icon || 'info-circle'}"
icon-size$="${props.iconSize || undefined}"
icon-source$="${!props.icon ? 'solid' : props.iconSource}"
on-click="${this._clickToggle.bind(this)}"
on-mouseover="${this._hoverToggle.bind(this)}">
icon="${props.icon || 'info-circle'}"
icon-size="${props.iconSize || undefined}"
icon-source="${!props.icon ? 'solid' : props.iconSource}"
@click="${this._clickToggle.bind(this)}"
@mouseover="${this._hoverToggle.bind(this)}">
</rb-button>
<div class$="popover ${props.showPopover && this.rb.view.isReady ? '' : 'hidden'}">
<div class="popover ${props.showPopover && this.rb.view.isReady ? '' : 'hidden'}">
<em class="pointer"></em>
${props.caption ? html`<h3 class="caption">${props.caption}</h3>` : null}
<div class="body">
<slot on-slotchange="${this._hasContent.bind(this)}"></slot>
<slot @slotchange="${this._hasContent.bind(this)}"></slot>
</div>
</div>
</div>
Expand Down
40 changes: 20 additions & 20 deletions src/client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@
# yarn lockfile v1


"@rapid-build-ui/rb-base@^0.0.1":
version "0.0.1"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-base/-/rb-base-0.0.1.tgz#b8133587641bf7742667e94a8a9015e68c9dd628"
"@rapid-build-ui/rb-base@^0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-base/-/rb-base-0.0.2.tgz#c79683ad6d021a60dce320ff8cbc3bcabf8bddcd"
dependencies:
lit-html "^0.10.2"
skatejs "^5.2.3"
lit-html "^0.11.1"
skatejs "^5.2.4"

"@rapid-build-ui/rb-button@^0.0.8":
version "0.0.8"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-button/-/rb-button-0.0.8.tgz#a1542fbfd3b1594531013b1f72bd1d72b4e6dc9e"
"@rapid-build-ui/rb-button@^0.0.9":
version "0.0.9"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-button/-/rb-button-0.0.9.tgz#b11e03c1a4c56fa6ef8303bfd16fb77fa1677b00"
dependencies:
"@rapid-build-ui/rb-base" "^0.0.1"
"@rapid-build-ui/rb-icon" "^0.0.6"
"@rapid-build-ui/rb-base" "^0.0.2"
"@rapid-build-ui/rb-icon" "^0.0.7"

"@rapid-build-ui/rb-icon@^0.0.6":
version "0.0.6"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-icon/-/rb-icon-0.0.6.tgz#0c831f0aa1f5965ddd13cc8a2af40416889fdab2"
"@rapid-build-ui/rb-icon@^0.0.7":
version "0.0.7"
resolved "https://registry.yarnpkg.com/@rapid-build-ui/rb-icon/-/rb-icon-0.0.7.tgz#8641ff3791c5ed579ce2b23ac45ca668b1ffecd5"
dependencies:
"@rapid-build-ui/rb-base" "^0.0.1"
"@rapid-build-ui/rb-base" "^0.0.2"

lit-html@^0.10.2:
version "0.10.2"
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-0.10.2.tgz#53c846afcf91bb1e6623179ef22e327ab8ac0e0e"
lit-html@^0.11.1:
version "0.11.1"
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-0.11.1.tgz#ad3dcfea1dbaf65fadf335fa1e2bd9ac19255394"

skatejs@^5.2.3:
version "5.2.3"
resolved "https://registry.yarnpkg.com/skatejs/-/skatejs-5.2.3.tgz#3a0db8f7ecf89cb4d715f94eb5aae2b415ae8237"
skatejs@^5.2.4:
version "5.2.4"
resolved "https://registry.yarnpkg.com/skatejs/-/skatejs-5.2.4.tgz#945f1451ffb2ed801d19e9baa03f0a259eb84e9e"

0 comments on commit 636d2ad

Please sign in to comment.