File tree 4 files changed +21
-26
lines changed
app/components/shw/outliner
4 files changed +21
-26
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright (c) HashiCorp, Inc.
3
+ * SPDX-License-Identifier: MPL-2.0
4
+ */
5
+ import Component from ' @glimmer/component' ;
6
+
7
+ export interface ShwOutlinerSignature {
8
+ Blocks: {
9
+ default: [];
10
+ };
11
+ Element: HTMLDivElement ;
12
+ }
13
+
14
+ export default class ShwOutliner extends Component <ShwOutlinerSignature > {
15
+ <template >
16
+ <div class =" shw-outliner" ...attributes >
17
+ {{ yield }}
18
+ </div >
19
+ </template >
20
+ }
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import ShwGrid from '../app/components/shw/grid';
12
12
import ShwGridItem from '../app/components/shw/grid/item' ;
13
13
import ShwLabel from '../app/components/shw/label' ;
14
14
import ShwLogoDesignSystem from '../app/components/shw/logo/design-system' ;
15
- import ShwOutliner from '../app/components/shw/outliner' ;
15
+ import ShwOutliner from '../app/components/shw/outliner/index ' ;
16
16
import ShwPlaceholder from '../app/components/shw/placeholder/index' ;
17
17
import ShwText from '../app/components/shw/text/index' ;
18
18
import ShwTextBody from '../app/components/shw/text/body' ;
You can’t perform that action at this time.
0 commit comments