-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
259 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.namespace { | ||
.bx--loading { | ||
.cds--loading { | ||
width: 2rem; | ||
height: 2rem; | ||
display: inline-block; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,50 @@ | ||
{{#if (or @targetElement @targetElementId)}} | ||
<button | ||
onclick={{this.copyToClipboard}} | ||
{{did-insert this.loadCarbonComponent}} | ||
{{will-destroy this.destroyCarbonComponent}} | ||
data-copy-btn | ||
class="{{if @inline 'bx--snippet bx--snippet--inline bx--btn--copy' 'bx--snippet-button'}}" | ||
class="{{if @inline 'cds--btn--icon-only cds--snippet cds--snippet--inline cds--copy cds--btn cds--btn--md cds--btn--primary' 'cds--btn--icon-only cds--copy-btn cds--copy cds--btn cds--btn--md cds--btn--primary'}}" | ||
aria-label="Copy code" | ||
tabindex="0"> | ||
{{#if (has-block)}} | ||
<code>{{yield}}</code> | ||
{{/if}} | ||
{{#unless @inline}} | ||
<svg class="bx--snippet__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> | ||
<svg class="cds--snippet__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> | ||
<path d="M1 10H0V2C0 .9.9 0 2 0h8v1H2c-.6 0-1 .5-1 1v8z" /> | ||
<path d="M11 4.2V8h3.8L11 4.2zM15 9h-4c-.6 0-1-.4-1-1V4H4.5c-.3 0-.5.2-.5.5v10c0 .3.2.5.5.5h10c.3 0 .5-.2.5-.5V9zm-4-6c.1 0 .3.1.4.1l4.5 4.5c0 .1.1.3.1.4v6.5c0 .8-.7 1.5-1.5 1.5h-10c-.8 0-1.5-.7-1.5-1.5v-10C3 3.7 3.7 3 4.5 3H11z" /> | ||
</svg> | ||
{{/unless}} | ||
<div class="bx--btn--copy__feedback" data-feedback="Copied!"></div> | ||
<EmberTooltip> | ||
{{#if this.didCopy}} | ||
Copied! | ||
{{else}} | ||
Copy to clipboard | ||
{{/if}} | ||
</EmberTooltip> | ||
</button> | ||
{{else}} | ||
<button | ||
<button onclick={{this.copyToClipboard}} | ||
{{did-insert this.loadCarbonComponent}} | ||
{{will-destroy this.destroyCarbonComponent}} | ||
data-copy-btn | ||
class="{{if @inline 'bx--snippet bx--snippet--inline bx--btn--copy' 'bx--snippet-button'}}" | ||
class="{{if @inline 'cds--snippet cds--snippet--inline cds--btn--copy' 'cds--btn--icon-only cds--copy-btn cds--copy cds--btn cds--btn--md cds--btn--primary'}}" | ||
aria-label="Copy code" | ||
tabindex="0"> | ||
{{#if (has-block)}} | ||
<code>{{yield}}</code> | ||
{{/if}} | ||
{{#unless @inline}} | ||
<svg class="bx--snippet__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> | ||
<svg class="cds--snippet__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> | ||
<path d="M1 10H0V2C0 .9.9 0 2 0h8v1H2c-.6 0-1 .5-1 1v8z" /> | ||
<path d="M11 4.2V8h3.8L11 4.2zM15 9h-4c-.6 0-1-.4-1-1V4H4.5c-.3 0-.5.2-.5.5v10c0 .3.2.5.5.5h10c.3 0 .5-.2.5-.5V9zm-4-6c.1 0 .3.1.4.1l4.5 4.5c0 .1.1.3.1.4v6.5c0 .8-.7 1.5-1.5 1.5h-10c-.8 0-1.5-.7-1.5-1.5v-10C3 3.7 3.7 3 4.5 3H11z" /> | ||
</svg> | ||
{{/unless}} | ||
<div class="bx--btn--copy__feedback" data-feedback="Copied!"></div> | ||
<EmberTooltip> | ||
{{#if this.didCopy}} | ||
Copied! | ||
{{else}} | ||
Copy to clipboard | ||
{{/if}} | ||
</EmberTooltip> | ||
</button> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.is-searching { | ||
.bx--search-magnifier { | ||
.cds--search-magnifier { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<table class="bx--data-table {{if @isSortable 'bx--data-table--sort'}} {{if @isLoading 'bx--skeleton'}}" > | ||
<table class="cds--data-table {{if @isSortable 'cds--data-table--sort'}} {{if @isLoading 'cds--skeleton'}}" > | ||
{{yield}} | ||
</table> |
Oops, something went wrong.