Skip to content

Commit d735f69

Browse files
committed
docs(storybook): update imports from lit-html to lit
1 parent c3e0f77 commit d735f69

File tree

81 files changed

+93
-89
lines changed

Some content is hidden

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

81 files changed

+93
-89
lines changed

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.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',

packages/uui-button-inline-create/lib/uui-button-inline-create.story.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import '.';
22

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

66
import { GetRandomUmbracoWord } from '../../../storyhelpers/UmbracoWordGenerator';
7-
import { TemplateResult } from 'lit';
87

98
export default {
109
id: 'uui-button-inline-create',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import '@umbraco-ui/uui-badge/lib';
33
import '@umbraco-ui/uui-icon/lib';
44

55
import { Meta, Story } from '@storybook/web-components';
6-
import { html } from 'lit-html';
6+
import { html } from 'lit';
77
import { UUIButtonElement } from './uui-button.element';
88

99
export default {

packages/uui-card-content-node/lib/uui-card-content-node.story.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import '.';
22
import '@umbraco-ui/uui-icon-registry-essential/lib';
33

44
import { Story } from '@storybook/web-components';
5-
import { html } from 'lit-html';
5+
import { html } from 'lit';
66

77
export default {
88
title: 'Displays/Cards/Content Node',
@@ -89,7 +89,7 @@ CustomIcon.parameters = {
8989
<uui-icon-registry-essential>
9090
<uui-card-content-node name="The card">
9191
<uui-icon slot="icon" name="wand"></uui-icon>
92-
92+
9393
<!-- Content -->
9494
</uui-card-content-node>
9595
<uui-icon-registry-essential>

0 commit comments

Comments
 (0)