Skip to content

Commit

Permalink
R0.11.0-b (#75)
Browse files Browse the repository at this point in the history
* Upgrade to Lit 3
  • Loading branch information
vasqued2 authored Dec 22, 2023
1 parent 660c41f commit 7dd82d4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/card_editor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Define and register the UI Card Editor
//
import { html, LitElement } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html, LitElement } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


export class MyCustomCardEditor extends LitElement {
Expand Down
2 changes: 1 addition & 1 deletion dist/render_bye.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


// Define the rendering function
Expand Down
2 changes: 1 addition & 1 deletion dist/render_error.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


export function renderMissingConfig() {
Expand Down
2 changes: 1 addition & 1 deletion dist/render_in.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


// Define the rendering function
Expand Down
2 changes: 1 addition & 1 deletion dist/render_not_found.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


// Define the rendering function
Expand Down
2 changes: 1 addition & 1 deletion dist/render_post.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


// Define the rendering function
Expand Down
2 changes: 1 addition & 1 deletion dist/render_pre.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { html } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";


// Define the rendering function
Expand Down
2 changes: 1 addition & 1 deletion dist/teamtracker_card.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LitElement } from "https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js";
import { LitElement } from "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js";
import { Translator } from "./localize/translator.js";
import { VERSION } from "./const.js";
import { renderBye } from './render_bye.js';
Expand Down

0 comments on commit 7dd82d4

Please sign in to comment.