Skip to content

Commit 342aecf

Browse files
committed
chore: add component modules in share
1 parent b820893 commit 342aecf

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

zeppelin-web-angular/src/app/pages/workspace/notebook/note-form-block/note-form-block.component.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<!--
2+
~ Licensed under the Apache License, Version 2.0 (the "License");
3+
~ you may not use this file except in compliance with the License.
4+
~ You may obtain a copy of the License at
5+
~ http://www.apache.org/licenses/LICENSE-2.0
6+
~ Unless required by applicable law or agreed to in writing, software
7+
~ distributed under the License is distributed on an "AS IS" BASIS,
8+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
~ See the License for the specific language governing permissions and
10+
~ limitations under the License.
11+
-->
112
<div class="forms-wrap">
213
<zeppelin-elastic-input [value]="noteTitle"
314
defaultTitle="Untitled Form"

zeppelin-web-angular/src/app/pages/workspace/notebook/note-form-block/note-form-block.component.less

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
* Unless required by applicable law or agreed to in writing, software
7+
* distributed under the License is distributed on an "AS IS" BASIS,
8+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
* See the License for the specific language governing permissions and
10+
* limitations under the License.
11+
*/
112
@import "theme-mixin";
213

314
:host {

zeppelin-web-angular/src/app/pages/workspace/notebook/note-form-block/note-form-block.component.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
* Unless required by applicable law or agreed to in writing, software
7+
* distributed under the License is distributed on an "AS IS" BASIS,
8+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
* See the License for the specific language governing permissions and
10+
* limitations under the License.
11+
*/
112
import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
213
import { DynamicForms, DynamicFormParams } from '@zeppelin/sdk';
314

zeppelin-web-angular/src/app/pages/workspace/share/share.module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ import { FormsModule } from '@angular/forms';
1818
import { NzButtonModule } from 'ng-zorro-antd/button';
1919
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
2020
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
21+
import { NzGridModule } from 'ng-zorro-antd/grid';
2122
import { NzIconModule } from 'ng-zorro-antd/icon';
23+
import { NzInputModule } from 'ng-zorro-antd/input';
2224
import { NzRadioModule } from 'ng-zorro-antd/radio';
2325
import { NzResizableModule } from 'ng-zorro-antd/resizable';
2426
import { NzSelectModule } from 'ng-zorro-antd/select';
@@ -28,8 +30,6 @@ import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
2830
import { ShareModule } from '@zeppelin/share';
2931
import { VisualizationModule } from '@zeppelin/visualizations/visualization.module';
3032

31-
import { NzGridModule } from 'ng-zorro-antd/grid';
32-
import { NzInputModule } from 'ng-zorro-antd/input';
3333
import { NotebookParagraphDynamicFormsComponent } from './dynamic-forms/dynamic-forms.component';
3434
import { NotebookParagraphResultComponent } from './result/result.component';
3535

@@ -51,8 +51,8 @@ import { NotebookParagraphResultComponent } from './result/result.component';
5151
NzCheckboxModule,
5252
NzSelectModule,
5353
NzSwitchModule,
54-
NzInputModule,
55-
NzGridModule
54+
NzGridModule,
55+
NzInputModule
5656
]
5757
})
5858
export class WorkspaceShareModule {}

0 commit comments

Comments
 (0)