Skip to content

Commit 3c61a3c

Browse files
authored
Merge branch 'main' into v14/feature/version-check
2 parents aaa6722 + 94c4a00 commit 3c61a3c

File tree

22 files changed

+617
-589
lines changed

22 files changed

+617
-589
lines changed

devops/tsconfig/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ DON'T EDIT THIS FILE DIRECTLY. It is generated by /devops/tsconfig/index.js
1818
const tsConfigBase = {
1919
compilerOptions: {
2020
module: 'esnext',
21+
moduleResolution: 'bundler',
22+
moduleDetection: 'force',
23+
verbatimModuleSyntax: true,
2124
target: 'es2022',
2225
lib: ['es2022', 'dom', 'dom.iterable'],
2326
outDir: './types',
@@ -29,8 +32,6 @@ const tsConfigBase = {
2932
incremental: true,
3033
skipLibCheck: true,
3134
noImplicitOverride: true,
32-
/* Bundler mode */
33-
moduleResolution: 'bundler',
3435
allowImportingTsExtensions: true,
3536
resolveJsonModule: true,
3637
isolatedModules: true,

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
2-
import { css, html, customElement, LitElement, state, repeat, property } from '@umbraco-cms/backoffice/external/lit';
2+
import { css, html, customElement, LitElement, property } from '@umbraco-cms/backoffice/external/lit';
33
import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
4-
import { UmbSorterConfig, UmbSorterController } from '@umbraco-cms/backoffice/sorter';
54

65
@customElement('example-sorter-item')
76
export class ExampleSorterItem extends UmbElementMixin(LitElement) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
import type ExampleSorterItem from './sorter-item.js';
12
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
23
import { css, html, customElement, LitElement, repeat, property } from '@umbraco-cms/backoffice/external/lit';
34
import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
4-
import { UmbSorterConfig, UmbSorterController } from '@umbraco-cms/backoffice/sorter';
5+
import { UmbSorterController } from '@umbraco-cms/backoffice/sorter';
56

67
import './sorter-item.js';
7-
import ExampleSorterItem from './sorter-item.js';
88

99
export type ModelEntryType = {
1010
name: string;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
2-
import { css, html, customElement, LitElement, state, repeat, property } from '@umbraco-cms/backoffice/external/lit';
2+
import { css, html, customElement, LitElement, property } from '@umbraco-cms/backoffice/external/lit';
33
import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
4-
import { UmbSorterConfig, UmbSorterController } from '@umbraco-cms/backoffice/sorter';
54

65
@customElement('example-sorter-item')
76
export class ExampleSorterItem extends UmbElementMixin(LitElement) {

package-lock.json

Lines changed: 541 additions & 541 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188
"@types/diff": "^5.2.1",
189189
"@types/dompurify": "^3.0.5",
190190
"@types/uuid": "^10.0.0",
191-
"@umbraco-ui/uui": "^1.9.0",
192-
"@umbraco-ui/uui-css": "^1.9.0",
191+
"@umbraco-ui/uui": "^v1.10.0-rc.0",
192+
"@umbraco-ui/uui-css": "^v1.10.0-rc.0",
193193
"base64-js": "^1.5.1",
194194
"diff": "^5.2.0",
195195
"dompurify": "^3.1.6",

src/external/router-slot/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PathMatch } from './model.js';
1+
import type { PathMatch } from './model.js';
22

33
export const CATCH_ALL_WILDCARD: string = '**';
44
export const TRAVERSE_FLAG: string = '\\.\\.\\/';

src/external/router-slot/router-slot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { GLOBAL_ROUTER_EVENTS_TARGET, ROUTER_SLOT_TAG_NAME } from './config.js';
2-
import {
2+
import type {
33
Cancel,
44
EventListenerSubscription,
55
GlobalRouterEvent,

src/external/router-slot/util/events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { GLOBAL_ROUTER_EVENTS_TARGET } from '../config';
2-
import { EventListenerSubscription, GlobalRouterEvent, IRoute, IRoutingInfo } from '../model';
1+
import { GLOBAL_ROUTER_EVENTS_TARGET } from '../config.js';
2+
import type { EventListenerSubscription, GlobalRouterEvent, IRoute, IRoutingInfo } from '../model.js';
33

44
/**
55
* Dispatches a did change route event.

src/external/router-slot/util/history.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { GLOBAL_ROUTER_EVENTS_TARGET, HISTORY_PATCH_NATIVE_KEY } from '../config';
2-
import { GlobalRouterEvent } from '../model';
3-
import { dispatchGlobalRouterEvent } from './events';
1+
import { GLOBAL_ROUTER_EVENTS_TARGET, HISTORY_PATCH_NATIVE_KEY } from '../config.js';
2+
import type { GlobalRouterEvent } from '../model.js';
3+
import { dispatchGlobalRouterEvent } from './events.js';
44

55
// Mapping a history functions to the events they are going to dispatch.
66
export const historyPatches: [string, GlobalRouterEvent[]][] = [

0 commit comments

Comments
 (0)