Skip to content

Commit e339a44

Browse files
committed
adding override terms
1 parent 429878e commit e339a44

File tree

597 files changed

+872
-905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

597 files changed

+872
-905
lines changed

devops/tsc/index.js renamed to devops/tsc-override/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Notice: This script is not perfect and may not work in all cases. ex. it places the override term wrong for async and setter/getter methods. But its a help any way. [NL]
2+
13
import ts from 'typescript';
24
import path from 'node:path';
35
import fs from 'node:fs/promises';

examples/dashboard-with-property-dataset/dataset-dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class ExampleDatasetDashboard extends UmbElementMixin(LitElement) {
5151
`;
5252
}
5353

54-
static styles = [
54+
static override styles = [
5555
UmbTextStyles,
5656
css`
5757
:host {

examples/manifest-picker/manifest-picker-dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class ExampleManifestPickerDashboard extends UmbLitElement {
7777
`;
7878
}
7979

80-
static styles = [
80+
static override styles = [
8181
UmbTextStyles,
8282
css`
8383
:host {

examples/sorter-with-nested-containers/sorter-dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class ExampleSorterDashboard extends UmbElementMixin(LitElement) {
7272
`;
7373
}
7474

75-
static styles = [
75+
static override styles = [
7676
UmbTextStyles,
7777
css`
7878
:host {

examples/sorter-with-nested-containers/sorter-group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
7171
`;
7272
}
7373

74-
static styles = [
74+
static override styles = [
7575
UmbTextStyles,
7676
css`
7777
:host {

examples/sorter-with-nested-containers/sorter-item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class ExampleSorterItem extends UmbElementMixin(LitElement) {
2323
`;
2424
}
2525

26-
static styles = [
26+
static override styles = [
2727
UmbTextStyles,
2828
css`
2929
:host {

examples/sorter-with-two-containers/sorter-dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class ExampleSorterDashboard extends UmbElementMixin(LitElement) {
4747
`;
4848
}
4949

50-
static styles = [
50+
static override styles = [
5151
UmbTextStyles,
5252
css`
5353
:host {

examples/sorter-with-two-containers/sorter-group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
6363
`;
6464
}
6565

66-
static styles = [
66+
static override styles = [
6767
UmbTextStyles,
6868
css`
6969
:host {

examples/sorter-with-two-containers/sorter-item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class ExampleSorterItem extends UmbElementMixin(LitElement) {
2323
`;
2424
}
2525

26-
static styles = [
26+
static override styles = [
2727
UmbTextStyles,
2828
css`
2929
:host {

examples/workspace-context-counter/counter-workspace-view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class ExampleCounterWorkspaceView extends UmbElementMixin(LitElement) {
3535
`;
3636
}
3737

38-
static styles = [
38+
static override styles = [
3939
UmbTextStyles,
4040
css`
4141
:host {

0 commit comments

Comments
 (0)