@@ -3,8 +3,11 @@ import '@umbraco-ui/uui-action-bar/lib';
3
3
import '@umbraco-ui/uui-button/lib' ;
4
4
import '@umbraco-ui/uui-icon-registry-essential/lib' ;
5
5
import '@umbraco-ui/uui-icon/lib' ;
6
+ import '@umbraco-ui/uui-symbol-file-thumbnail/lib' ;
7
+ import '@umbraco-ui/uui-symbol-folder/lib' ;
8
+ import '@umbraco-ui/uui-symbol-file/lib' ;
6
9
7
- import { Story } from '@storybook/web-components' ;
10
+ import { StoryFn } from '@storybook/web-components' ;
8
11
import { html } from 'lit' ;
9
12
import { UUIFilePreviewElement } from './uui-file-preview.element' ;
10
13
@@ -14,7 +17,7 @@ export default {
14
17
component : 'uui-file-preview' ,
15
18
} ;
16
19
17
- export const AAAOverview : Story = ( ) => {
20
+ export const AAAOverview : StoryFn = ( ) => {
18
21
setTimeout ( ( ) => {
19
22
const file = new File ( [ 'file' ] , 'File 1.txt' , { type : 'text/plain' } ) ;
20
23
const filePreview = document . getElementById (
@@ -60,7 +63,7 @@ filePreview.file = file;
60
63
} ,
61
64
} ;
62
65
63
- export const Image : Story = ( ) => {
66
+ export const Image : StoryFn = ( ) => {
64
67
const init = async ( ) => {
65
68
const imageUrl =
66
69
'https://images.unsplash.com/photo-1650346910623-3a0d9ee1f2ae?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2371&q=80' ;
0 commit comments