@@ -18,39 +18,32 @@ export default {
18
18
</div>
19
19
`
20
20
)
21
- ]
21
+ ] ,
22
+ parameters : {
23
+ chromatic : { disableSnapshot : true }
24
+ }
22
25
} as Meta ;
23
26
24
27
type Story = StoryObj ;
25
28
26
29
export const MatRaisedButton : Story = {
27
- render : ( ) => ( {
28
- template : `<button mat-raised-button sfBubbleButton color="primary">Mat raised button</button>`
29
- } )
30
+ render : ( ) => ( { template : `<button mat-raised-button sfBubbleButton color="primary">Mat raised button</button>` } )
30
31
} ;
31
32
32
33
export const MatFlatButton : Story = {
33
- render : ( ) => ( {
34
- template : `<button mat-flat-button sfBubbleButton color="primary">Mat flat button</button>`
35
- } )
34
+ render : ( ) => ( { template : `<button mat-flat-button sfBubbleButton color="primary">Mat flat button</button>` } )
36
35
} ;
37
36
38
37
export const MatStrokedButton : Story = {
39
- render : ( ) => ( {
40
- template : `<button mat-stroked-button sfBubbleButton color="primary">Mat stroked button</button>`
41
- } )
38
+ render : ( ) => ( { template : `<button mat-stroked-button sfBubbleButton color="primary">Mat stroked button</button>` } )
42
39
} ;
43
40
44
41
export const MatButton : Story = {
45
- render : ( ) => ( {
46
- template : `<button mat-button sfBubbleButton color="primary">Mat button</button>`
47
- } )
42
+ render : ( ) => ( { template : `<button mat-button sfBubbleButton color="primary">Mat button</button>` } )
48
43
} ;
49
44
50
45
export const VanillaButton : Story = {
51
- render : ( ) => ( {
52
- template : `<button sfBubbleButton color="primary">Vanilla button</button>`
53
- } )
46
+ render : ( ) => ( { template : `<button sfBubbleButton color="primary">Vanilla button</button>` } )
54
47
} ;
55
48
56
49
export const LongTextButton : Story = {
@@ -60,7 +53,5 @@ export const LongTextButton: Story = {
60
53
} ;
61
54
62
55
export const ShortTextButton : Story = {
63
- render : ( ) => ( {
64
- template : `<button mat-flat-button sfBubbleButton color="primary">Ok</button>`
65
- } )
56
+ render : ( ) => ( { template : `<button mat-flat-button sfBubbleButton color="primary">Ok</button>` } )
66
57
} ;
0 commit comments