Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elements/rh-button/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-button.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-button/rh-button.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhButton extends Rhelement {
class RhButton extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -50,4 +50,4 @@ class RhButton extends Rhelement {
}
}

Rhelement.create(RhButton);
RHElement.create(RhButton);
6 changes: 3 additions & 3 deletions elements/rh-button/src/rh-button.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhButton extends Rhelement {
class RhButton extends RHElement {
static get tag() {
return "rh-button";
}
Expand All @@ -18,4 +18,4 @@ class RhButton extends Rhelement {
}
}

Rhelement.create(RhButton);
RHElement.create(RhButton);
2 changes: 1 addition & 1 deletion elements/rh-card/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-card.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-card/rh-card.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhCard extends Rhelement {
class RhCard extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -48,4 +48,4 @@ class RhCard extends Rhelement {
}
}

Rhelement.create(RhCard);
RHElement.create(RhCard);
6 changes: 3 additions & 3 deletions elements/rh-card/src/rh-card.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhCard extends Rhelement {
class RhCard extends RHElement {
static get tag() {
return "rh-card";
}
Expand All @@ -18,4 +18,4 @@ class RhCard extends Rhelement {
}
}

Rhelement.create(RhCard);
RHElement.create(RhCard);
2 changes: 1 addition & 1 deletion elements/rh-cta/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-cta.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-cta/rh-cta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhCta extends Rhelement {
class RhCta extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -230,4 +230,4 @@ class RhCta extends Rhelement {
disconnectedCallback() {}
}

Rhelement.create(RhCta);
RHElement.create(RhCta);
6 changes: 3 additions & 3 deletions elements/rh-cta/src/rh-cta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhCta extends Rhelement {
class RhCta extends RHElement {
static get tag() {
return "rh-cta";
}
Expand Down Expand Up @@ -38,4 +38,4 @@ class RhCta extends Rhelement {
disconnectedCallback() {}
}

Rhelement.create(RhCta);
RHElement.create(RhCta);
2 changes: 1 addition & 1 deletion elements/rh-datetime/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-datetime.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-datetime/rh-datetime.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDatetime extends Rhelement {
class RhDatetime extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -171,4 +171,4 @@ class RhDatetime extends Rhelement {
}
}

Rhelement.create(RhDatetime);
RHElement.create(RhDatetime);
6 changes: 3 additions & 3 deletions elements/rh-datetime/src/rh-datetime.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDatetime extends Rhelement {
class RhDatetime extends RHElement {
static get tag() {
return "rh-datetime";
}
Expand Down Expand Up @@ -161,4 +161,4 @@ class RhDatetime extends Rhelement {
}
}

Rhelement.create(RhDatetime);
RHElement.create(RhDatetime);
2 changes: 1 addition & 1 deletion elements/rh-dialog/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-dialog.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-dialog/rh-dialog.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../../dialog-polyfill/dialog-polyfill.js";

class RhDialog extends Rhelement {
class RhDialog extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -91,4 +91,4 @@ dialog.fixed {
disconnectedCallback() {}
}

Rhelement.create(RhDialog);
RHElement.create(RhDialog);
6 changes: 3 additions & 3 deletions elements/rh-dialog/src/rh-dialog.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../../dialog-polyfill/dialog-polyfill.js";

class RhDialog extends Rhelement {
class RhDialog extends RHElement {
static get tag() {
return "rh-dialog";
}
Expand Down Expand Up @@ -42,4 +42,4 @@ class RhDialog extends Rhelement {
disconnectedCallback() {}
}

Rhelement.create(RhDialog);
RHElement.create(RhDialog);
2 changes: 1 addition & 1 deletion elements/rh-dropdown-button/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-dropdown-button.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-dropdown-button/rh-dropdown-button.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDropdownButton extends Rhelement {
class RhDropdownButton extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -132,4 +132,4 @@ class RhDropdownButton extends Rhelement {
}
}

Rhelement.create(RhDropdownButton);
RHElement.create(RhDropdownButton);
6 changes: 3 additions & 3 deletions elements/rh-dropdown-button/src/rh-dropdown-button.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDropdownButton extends Rhelement {
class RhDropdownButton extends RHElement {
static get tag() {
return "rh-dropdown-button";
}
Expand Down Expand Up @@ -96,4 +96,4 @@ class RhDropdownButton extends Rhelement {
}
}

Rhelement.create(RhDropdownButton);
RHElement.create(RhDropdownButton);
2 changes: 1 addition & 1 deletion elements/rh-dropdown-menu/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-dropdown-menu.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-dropdown-menu/rh-dropdown-menu.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDropdownMenu extends Rhelement {
class RhDropdownMenu extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -87,4 +87,4 @@ class RhDropdownMenu extends Rhelement {
}
}

Rhelement.create(RhDropdownMenu);
RHElement.create(RhDropdownMenu);
6 changes: 3 additions & 3 deletions elements/rh-dropdown-menu/src/rh-dropdown-menu.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";

class RhDropdownMenu extends Rhelement {
class RhDropdownMenu extends RHElement {
static get tag() {
return "rh-dropdown-menu";
}
Expand Down Expand Up @@ -51,4 +51,4 @@ class RhDropdownMenu extends Rhelement {
}
}

Rhelement.create(RhDropdownMenu);
RHElement.create(RhDropdownMenu);
2 changes: 1 addition & 1 deletion elements/rh-dropdown/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-dropdown.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-dropdown/rh-dropdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../rh-dropdown-button/rh-dropdown-button.js";
import "../rh-dropdown-menu/rh-dropdown-menu.js";

Expand Down Expand Up @@ -50,7 +50,7 @@ if (!Array.prototype.findIndex) {
// Set up a unique ID
const baseID = Date.now();

class RhDropdown extends Rhelement {
class RhDropdown extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -340,4 +340,4 @@ class RhDropdown extends Rhelement {
}
}

Rhelement.create(RhDropdown);
RHElement.create(RhDropdown);
6 changes: 3 additions & 3 deletions elements/rh-dropdown/src/rh-dropdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../rh-dropdown-button/rh-dropdown-button.js";
import "../rh-dropdown-menu/rh-dropdown-menu.js";

Expand Down Expand Up @@ -50,7 +50,7 @@ if (!Array.prototype.findIndex) {
// Set up a unique ID
const baseID = Date.now();

class RhDropdown extends Rhelement {
class RhDropdown extends RHElement {
static get tag() {
return "rh-dropdown";
}
Expand Down Expand Up @@ -330,4 +330,4 @@ class RhDropdown extends Rhelement {
}
}

Rhelement.create(RhDropdown);
RHElement.create(RhDropdown);
2 changes: 1 addition & 1 deletion elements/rh-icon-panel/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task("merge", () => {
return gulp
.src("./src/rh-icon-panel.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-icon-panel/rh-icon-panel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../rh-icon/rh-icon.js";

class RhIconPanel extends Rhelement {
class RhIconPanel extends RHElement {
get html() {
return `
<style>
Expand Down Expand Up @@ -60,4 +60,4 @@ class RhIconPanel extends Rhelement {
}
}

Rhelement.create(RhIconPanel);
RHElement.create(RhIconPanel);
6 changes: 3 additions & 3 deletions elements/rh-icon-panel/src/rh-icon-panel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Rhelement from "../rhelement/rhelement.js";
import RHElement from "../rhelement/rhelement.js";
import "../rh-icon/rh-icon.js";

class RhIconPanel extends Rhelement {
class RhIconPanel extends RHElement {
static get tag() {
return "rh-icon-panel";
}
Expand Down Expand Up @@ -32,4 +32,4 @@ class RhIconPanel extends Rhelement {
}
}

Rhelement.create(RhIconPanel);
RHElement.create(RhIconPanel);
2 changes: 1 addition & 1 deletion elements/rh-icon/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gulp.task("replaceStyles", () => {
return gulp
.src("./rh-icon.js")
.pipe(
replace(/extends\s+Rhelement\s+{/, (classStatement, line, jsFile) => {
replace(/extends\s+RHElement\s+{/, (classStatement, line, jsFile) => {
// extract the templateUrl and styleUrl with regex. Would prefer to do
// this by require'ing rh-card.js and asking it directly, but without
// node.js support for ES modules, we're stuck with this.
Expand Down
6 changes: 3 additions & 3 deletions elements/rh-icon/rh-icon.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading