Skip to content

Commit c817a5d

Browse files
authored
Merge pull request #409 from umbraco/bugfix/lit-html
fix: remove import of lit-html
2 parents 37e2fd7 + 2a9cfd7 commit c817a5d

File tree

88 files changed

+8927
-10070
lines changed

Some content is hidden

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

88 files changed

+8927
-10070
lines changed

package-lock.json

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

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@
9191
"github-markdown-css": "5.1.0",
9292
"husky": "8.0.1",
9393
"lint-staged": "13.1.0",
94-
"lit-html": "2.4.0",
9594
"npm-check-updates": "16.3.16",
9695
"plop": "3.1.1",
9796
"postcss": "8.4.21",

packages/uui-action-bar/lib/uui-action-bar.story.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import '@umbraco-ui/uui-button/lib';
44
import '@umbraco-ui/uui-icon/lib';
55
import '@umbraco-ui/uui-icon-registry-essential/lib';
66

7-
import { html } from 'lit-html';
7+
import { html } from 'lit';
88

99
export default {
1010
id: 'uui-action-bar',
@@ -104,7 +104,7 @@ LooksAndColors.parameters = {
104104
code: `
105105
<uui-icon-registry-essential>
106106
<uui-action-bar>
107-
107+
108108
<uui-button look="[look]" color="[color]" label="Copy">
109109
<uui-icon name="copy"></uui-icon>
110110
</uui-button>

packages/uui-avatar-group/lib/uui-avatar-group.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '.';
22

33
import { Story } from '@storybook/web-components';
4-
import { html } from 'lit-html';
4+
import { html } from 'lit';
55

66
export default {
77
title: 'Displays/Avatar/Avatar Group',

packages/uui-avatar/lib/uui-avatar.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '.';
22

33
import { Story } from '@storybook/web-components';
4-
import { html } from 'lit-html';
4+
import { html } from 'lit';
55

66
export default {
77
title: 'Displays/Avatar/Avatar',

packages/uui-base/lib/mixins/FormControlMixin.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '.';
22

33
import { Story } from '@storybook/web-components';
4-
import { html } from 'lit-html';
4+
import { html } from 'lit';
55

66
export default {
77
id: 'FormControlMixin',

packages/uui-box/lib/uui-box.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
88
* @element uui-box
99
* @slot headline - headline area, this area is placed within the headline tag which is located inside the header. Use this to ensure the right headline styling.
1010
* @slot header - header area, use this for things that is not the headline but located in the header.
11-
* @slot default - area for the content of the box
11+
* @slot - area for the content of the box
1212
* @cssprop --uui-box-default-padding - overwrite the box padding
1313
*
1414
*/

packages/uui-box/lib/uui-box.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '.';
22

33
import { Story } from '@storybook/web-components';
4-
import { html } from 'lit-html';
4+
import { html } from 'lit';
55

66
export default {
77
title: 'Layout/Box',

packages/uui-breadcrumbs/lib/uui-breadcrumbs.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '.';
22

33
import { Story } from '@storybook/web-components';
4-
import { html } from 'lit-html';
4+
import { html } from 'lit';
55

66
export default {
77
title: 'Buttons/Breadcrumbs',

packages/uui-button-group/lib/uui-button-group.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import '.';
22
import { Story } from '@storybook/web-components';
3-
import { html } from 'lit-html';
3+
import { html } from 'lit';
44

55
export default {
66
title: 'Buttons/Button Group',

0 commit comments

Comments
 (0)