@progress/kendo-common-tasks 8.0.7-dev.0 → 8.0.7-dev.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/README.md +2 -3
  2. package/index.js +5 -50
  3. package/package.json +13 -52
  4. package/docs-layout.hbs +0 -51
  5. package/docs-public/bootstrap.css +0 -6759
  6. package/docs-public/bootstrap.min.js +0 -7
  7. package/docs-public/codemirror/clike.min.js +0 -1
  8. package/docs-public/codemirror/codemirror.min.js +0 -5
  9. package/docs-public/codemirror/css.min.js +0 -1
  10. package/docs-public/codemirror/htmlmixed.min.js +0 -1
  11. package/docs-public/codemirror/javascript.min.js +0 -1
  12. package/docs-public/codemirror/jsx.min.js +0 -1
  13. package/docs-public/codemirror/php.min.js +0 -1
  14. package/docs-public/codemirror/runmode.min.js +0 -1
  15. package/docs-public/codemirror/xml.min.js +0 -1
  16. package/docs-public/docs.css +0 -208
  17. package/docs-public/docs.scss +0 -253
  18. package/docs-public/editor/angular/app/app.component.ts +0 -3
  19. package/docs-public/editor/angular/app/app.module.ts +0 -14
  20. package/docs-public/editor/angular/index.html +0 -32
  21. package/docs-public/editor/angular/main.ts +0 -15
  22. package/docs-public/editor/angular/polyfills.ts +0 -73
  23. package/docs-public/editor/angular/styles.css +0 -13
  24. package/docs-public/editor/builder/app/app.component.html +0 -1
  25. package/docs-public/editor/builder/app/app.component.ts +0 -17
  26. package/docs-public/editor/builder/app/app.css +0 -449
  27. package/docs-public/editor/builder/app/app.module.ts +0 -53
  28. package/docs-public/editor/builder/app/core/core.module.ts +0 -19
  29. package/docs-public/editor/builder/app/core/data/data-services.exports.ts +0 -71
  30. package/docs-public/editor/builder/app/core/data/data.service.ts +0 -183
  31. package/docs-public/editor/builder/app/core/data/odata-service-factory.ts +0 -23
  32. package/docs-public/editor/builder/app/core/data/odata.service.ts +0 -88
  33. package/docs-public/editor/builder/app/core/module.config.ts +0 -19
  34. package/docs-public/editor/builder/app/data/odata-provider/customer.config.ts +0 -17
  35. package/docs-public/editor/builder/app/data/odata-provider/customer.model.ts +0 -17
  36. package/docs-public/editor/builder/app/grid-demo.base.component.ts +0 -107
  37. package/docs-public/editor/builder/app/grid-demo.component.html +0 -37
  38. package/docs-public/editor/builder/app/grid-demo.component.ts +0 -1
  39. package/docs-public/editor/builder/app/shared/components/grid/grid.component.html +0 -5
  40. package/docs-public/editor/builder/app/shared/components/grid/grid.component.ts +0 -243
  41. package/docs-public/editor/builder/app/shared/services/grid-incell-editing.service.ts +0 -120
  42. package/docs-public/editor/builder/app/topSection.html +0 -12
  43. package/docs-public/editor/builder/app/topSection.ts +0 -25
  44. package/docs-public/editor/builder/assets/themes/metro.css +0 -18877
  45. package/docs-public/editor/builder/index.html +0 -14
  46. package/docs-public/editor/builder/main.ts +0 -14
  47. package/docs-public/editor/builder/polyfills.ts +0 -67
  48. package/docs-public/editor/builder/styles.css +0 -1
  49. package/docs-public/editor/builder/tsconfig.app.json +0 -13
  50. package/docs-public/editor/builder/typings.d.ts +0 -5
  51. package/docs-public/editor/react/app/main.jsx +0 -6
  52. package/docs-public/editor/react/index.html +0 -32
  53. package/docs-public/editor/vue/app/main.js +0 -5
  54. package/docs-public/editor/vue/index.html +0 -29
  55. package/docs-public/example-runner.js +0 -802
  56. package/docs-public/github.css +0 -99
  57. package/docs-public/snippets.js +0 -1722
  58. package/docs-public/tomorrow-night.css +0 -75
  59. package/docs-server.js +0 -152
  60. package/lint-slugs.js +0 -25
  61. package/markdown-serve/index.js +0 -10
  62. package/markdown-serve/parser.js +0 -234
  63. package/markdown-serve/resolver.js +0 -86
  64. package/markdown-serve/server.js +0 -370
  65. package/test/jest-setup.js +0 -2
  66. package/test/snippets.test.js +0 -373
@@ -1,71 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
-
6
- import { Injectable } from '@angular/core';
7
- import { DataResult } from '@progress/kendo-data-query';
8
- import { EventEmitter } from '@angular/core';
9
-
10
- import { Observable } from 'rxjs/Observable';
11
- import { BehaviorSubject } from 'rxjs/BehaviorSubject';
12
-
13
- import { State } from '@progress/kendo-data-query';
14
-
15
- import { DataService } from './data.service';
16
-
17
- export class PrimaryKeyField {
18
- public name: string;
19
- public type: string;
20
- }
21
-
22
- export class DataServiceConfig {
23
- public dataProviderName: string;
24
- public serverOperations = false;
25
- public mapData?: (dataItem: any) => any;
26
- }
27
-
28
- export class ModelDataResult<T> implements DataResult {
29
- public data: T[];
30
- public total: number;
31
- }
32
-
33
- export interface DataServiceInterface<T> {
34
- errors: BehaviorSubject<Error>;
35
- events: EventEmitter<DataServiceEvent>;
36
- fetchedData(): ModelDataResult<T>;
37
- dataChanges(): BehaviorSubject<ModelDataResult<T>>;
38
- read(state: State): void;
39
- create(item: any): void;
40
- update(item: any): void;
41
- remove(item: any): void;
42
- batch(deletedItems: any[], createdItems: any[], updatedItems: any[]): void;
43
- }
44
-
45
- export class DataServiceEvent {
46
- action: string;
47
- }
48
-
49
- export class DataServiceRequest {
50
- url: string;
51
- routeParams?: { [param: string]: any };
52
- queryString?: string;
53
- }
54
-
55
- export abstract class DataServiceFactory {
56
- public abstract getService<T>(config: DataServiceConfig): DataService<T>;
57
- }
58
-
59
- export class ODataServiceConfig extends DataServiceConfig {
60
- public tableName: string;
61
- public primaryKeys: PrimaryKeyField[];
62
- }
63
-
64
- @Injectable()
65
- export class DataProviderService {
66
- public get(providerName: string) {
67
- return {
68
- serviceUri: 'https://odatasampleservices.azurewebsites.net/V4/Northwind/Northwind.svc/'
69
- };
70
- }
71
- }
@@ -1,183 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { EventEmitter } from '@angular/core';
6
- import { HttpClient, HttpResponse, HttpErrorResponse, HttpHeaders, HttpParams } from '@angular/common/http';
7
-
8
- import { Observable } from 'rxjs/Observable';
9
- import { BehaviorSubject } from 'rxjs/BehaviorSubject';
10
- import { zip } from 'rxjs/observable/zip';
11
- import { tap } from 'rxjs/operators/tap';
12
- import { map } from 'rxjs/operators/map';
13
- import { publish } from 'rxjs/operators/publish';
14
- import { last } from 'rxjs/operators/last';
15
-
16
- import { process, State } from '@progress/kendo-data-query';
17
-
18
- import { DataServiceInterface, DataServiceConfig, DataServiceRequest, ModelDataResult, DataProviderService, DataServiceEvent} from './data-services.exports';
19
-
20
- export abstract class DataService<T> implements DataServiceInterface<T> {
21
- // In case someone wants to refresh the data with the current state
22
- public state: State;
23
- public readonly errors = new BehaviorSubject<Error>(null);
24
- public readonly events = new EventEmitter<DataServiceEvent>();
25
-
26
- protected dataResult: ModelDataResult<T>;
27
-
28
- private shouldFetch = true;
29
- private dataStream: BehaviorSubject<ModelDataResult<T>> = new BehaviorSubject<ModelDataResult<T>>(null);
30
-
31
- constructor(
32
- protected config: DataServiceConfig,
33
- protected http: HttpClient,
34
- protected dataProviderService: DataProviderService,
35
- protected initialState: State = {}
36
- ) {
37
-
38
- }
39
-
40
- public dataChanges(): BehaviorSubject<ModelDataResult<T>> {
41
- return this.dataStream;
42
- }
43
-
44
- public read(state?: State): void {
45
- if (state) {
46
- this.state = state;
47
- } else {
48
- this.state = this.initialState;
49
- }
50
-
51
- if (!this.config.serverOperations && this.dataResult && this.dataResult.data.length) {
52
- const currentData: ModelDataResult<T> = process(this.dataResult.data, this.state);
53
- return this.dataStream.next(currentData);
54
- }
55
-
56
- if (this.shouldFetch) {
57
- this.shouldFetch = false;
58
- const requestState = this.config.serverOperations ? this.state : {};
59
-
60
- this.readRequest(requestState)
61
- .pipe(
62
- map(response => this.parseResponse(response)),
63
- tap(data => this.dataResult = data)
64
- )
65
- .subscribe(data => {
66
- this.shouldFetch = true;
67
-
68
- if (!this.config.serverOperations) {
69
- data = process(data.data, this.state);
70
- }
71
-
72
- this.dataStream.next(data);
73
- }, (err: HttpErrorResponse) => {
74
- this.shouldFetch = true;
75
- this.handleError(err);
76
- this.dataStream.next(this.dataResult || { data: [], total: 0 });
77
- });
78
- }
79
- }
80
-
81
- public create(item: any): void {
82
- this.handleRequest(this.createRequest(item), { action: 'create' });
83
- }
84
-
85
- public update(item: any): void {
86
- this.handleRequest(this.updateRequest(item), { action: 'update' });
87
- }
88
-
89
- public remove(item: any): void {
90
- this.handleRequest(this.removeRequest(item), { action: 'remove' });
91
- }
92
-
93
- public batch(deletedItems: any[], createdItems: any[], updatedItems: any[]): void {
94
- deletedItems.forEach(item => {
95
- this.remove(item);
96
- });
97
- updatedItems.forEach(item => {
98
- this.update(item);
99
- });
100
- createdItems.forEach(item => {
101
- this.create(item);
102
- });
103
- }
104
-
105
- public fetchedData(): ModelDataResult<T> {
106
- return this.dataResult;
107
- }
108
-
109
- protected request(method: string, url: string, options: {
110
- body?: any;
111
- headers?: HttpHeaders | {
112
- [header: string]: string | string[];
113
- };
114
- reportProgress?: boolean;
115
- observe: 'response';
116
- params?: HttpParams | {
117
- [param: string]: string | string[];
118
- };
119
- responseType?: 'json';
120
- withCredentials?: boolean;
121
- }): Observable<HttpResponse<Object>> {
122
- options.headers = options.headers || new HttpHeaders();
123
-
124
- return this.http.request(method, url, options);
125
- }
126
-
127
- protected handleRequest(request: Observable<any>, event: DataServiceEvent): void {
128
- this.reset();
129
-
130
- request.subscribe(() => {
131
- this.read(this.state);
132
- this.events.emit(event);
133
- }, (err: HttpErrorResponse) => {
134
- this.handleError(err);
135
- });
136
- }
137
-
138
- protected abstract readRequest(state: State): Observable<HttpResponse<Object>>;
139
- protected abstract createRequest(data: any): Observable<any>;
140
- protected abstract updateRequest(data: any): Observable<any>;
141
- protected abstract removeRequest(data: any): Observable<any>;
142
- protected abstract parseResponse(response: HttpResponse<Object>): ModelDataResult<T>;
143
-
144
- protected getAbsoluteUrl(request: DataServiceRequest): string {
145
- const dataProvider = this.dataProviderService.get(this.config.dataProviderName);
146
- let serviceUri = dataProvider ? dataProvider.serviceUri : '';
147
- serviceUri = serviceUri.replace(/[/]$/, '') + '/';
148
-
149
- const resourceUrl = Object.keys(request.routeParams || {}).reduce((prev, current) => {
150
- const regEx = new RegExp(':' + current, 'gi');
151
- return prev.replace(regEx, request.routeParams[current]);
152
-
153
- }, request.url);
154
-
155
- const queryString = request.queryString && request.queryString.length ? '?' + request.queryString : '';
156
-
157
- return `${serviceUri}${resourceUrl}${queryString}`;
158
- }
159
-
160
- protected getQueryString(state: State): string {
161
- return '';
162
- }
163
-
164
- protected mapData(data: any[]): T[] {
165
- if (this.config.mapData) {
166
- return data.map(item => this.config.mapData(item));
167
- }
168
-
169
- return data;
170
- }
171
-
172
- protected handleError(err: HttpErrorResponse) {
173
- if (err.error instanceof Error) {
174
- this.errors.next(err.error);
175
- } else {
176
- this.errors.next(new Error(`${err.status} - ${err.statusText}`));
177
- }
178
- }
179
-
180
- private reset(): void {
181
- this.dataResult = null;
182
- }
183
- }
@@ -1,23 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { Injectable } from '@angular/core';
6
- import { HttpClient } from '@angular/common/http';
7
-
8
- import { State } from '@progress/kendo-data-query';
9
-
10
- import { DataProviderService, DataServiceFactory, ODataServiceConfig} from './data-services.exports';
11
- import { DataService } from './data.service';
12
- import { ODataService } from './odata.service';
13
-
14
- @Injectable()
15
- export class ODataServiceFactory extends DataServiceFactory {
16
- constructor(protected http: HttpClient, protected dataProviderService: DataProviderService) {
17
- super();
18
- }
19
-
20
- public getService<T>(config: ODataServiceConfig, state?: State): DataService<T> {
21
- return new ODataService<T>(config, this.http, this.dataProviderService, state);
22
- }
23
- }
@@ -1,88 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { HttpClient, HttpResponse } from '@angular/common/http';
6
-
7
- import { Observable } from 'rxjs/Observable';
8
-
9
- import { State, toODataString } from '@progress/kendo-data-query';
10
-
11
- import { DataService } from './data.service';
12
- import { PrimaryKeyField, ModelDataResult, DataProviderService, ODataServiceConfig } from './data-services.exports';
13
-
14
- export class ODataService<T> extends DataService<T> {
15
- constructor(protected config: ODataServiceConfig, http: HttpClient, dataProviderService: DataProviderService, state: State) {
16
- super(config, http, dataProviderService, state);
17
- }
18
-
19
- protected getQueryString(state: State): string {
20
- return `${toODataString(state)}&$count=true`;
21
- }
22
-
23
- protected readRequest(state: State): Observable<HttpResponse<Object>> {
24
- const url = this.getAbsoluteUrl({
25
- url: this.config.tableName,
26
- queryString: this.getQueryString(state || {})
27
- });
28
-
29
- return this.request('GET', url, { observe: 'response' });
30
- }
31
-
32
- protected createRequest(data: any): Observable<any> {
33
- const url = this.getAbsoluteUrl({
34
- url: this.config.tableName
35
- });
36
-
37
- return this.request('POST', url, {
38
- body: data,
39
- observe: 'response'
40
- });
41
- }
42
-
43
- protected updateRequest(data: any): Observable<any> {
44
- const url = this.getAbsoluteUrl({
45
- url: this.getResourcePath(data)
46
- });
47
-
48
- return this.request('PUT', url, {
49
- body: data,
50
- observe: 'response'
51
- });
52
- }
53
-
54
- protected removeRequest(data: any): Observable<any> {
55
- const url = this.getAbsoluteUrl({
56
- url: this.getResourcePath(data)
57
- });
58
-
59
- return this.request('DELETE', url, { observe: 'response' });
60
- }
61
-
62
- protected parseResponse(response: HttpResponse<Object>): ModelDataResult<T> {
63
- return {
64
- data: this.mapData(response.body['value']),
65
- total: parseInt(response.body['@odata.count'], 10)
66
- };
67
- }
68
-
69
- private getResourcePath(data) {
70
- let keys;
71
-
72
- if (this.config.primaryKeys.length === 1) {
73
- keys = this.getPrimaryKeyValue(data, this.config.primaryKeys[0]);
74
- } else {
75
- keys = this.config.primaryKeys
76
- .map(item => {
77
- return `${item.name}=${this.getPrimaryKeyValue(data, item)}`;
78
- })
79
- .join(',');
80
- }
81
-
82
- return `${this.config.tableName}(${keys})`;
83
- }
84
-
85
- private getPrimaryKeyValue(data: any, key: PrimaryKeyField) {
86
- return key.type === 'string' ? `'${data[key.name]}'` : `${data[key.name]}`;
87
- }
88
- }
@@ -1,19 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { HttpClientModule } from '@angular/common/http';
6
-
7
- import { DataProviderService } from './data/data-services.exports';
8
- import { ODataServiceFactory } from './data/odata-service-factory';
9
-
10
- export const config = {
11
- imports: [
12
- HttpClientModule
13
- ],
14
- providers: [
15
- { provide: 'Window', useValue: window },
16
- DataProviderService,
17
- ODataServiceFactory
18
- ]
19
- };
@@ -1,17 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { ODataServiceConfig } from '../../core/data/data-services.exports';
6
-
7
- export const CustomerConfig: ODataServiceConfig = {
8
- dataProviderName: 'OdataProvider',
9
- serverOperations: false,
10
- tableName: 'Customers',
11
- primaryKeys: [
12
- {
13
- name: 'CustomerID',
14
- type: 'string'
15
- },
16
- ]
17
- };
@@ -1,17 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- export class OdataProviderCustomer {
6
- public CustomerID: string;
7
- public CompanyName: string;
8
- public ContactName: string;
9
- public ContactTitle: string;
10
- public Address: string;
11
- public City: string;
12
- public Region: string;
13
- public PostalCode: string;
14
- public Country: string;
15
- public Phone: string;
16
- public Fax: string;
17
- }
@@ -1,107 +0,0 @@
1
- ///////////////////
2
- // Auto-generated
3
- // Do not edit!!!
4
- ///////////////////
5
- import { Component, Injector, ViewChild, OnInit, AfterViewInit, OnDestroy } from '@angular/core';
6
- import { FormGroup, FormControl } from '@angular/forms';
7
-
8
- import { State } from '@progress/kendo-data-query';
9
-
10
- import { BehaviorSubject } from 'rxjs/BehaviorSubject';
11
- import { Observable } from 'rxjs/Observable';
12
-
13
- import { KbGridComponent } from './shared/components/grid/grid.component';
14
-
15
- import { DataService } from './core/data/data.service';
16
- import { DataServiceFactory, ModelDataResult } from './core/data/data-services.exports';
17
- import { ODataServiceFactory } from './core/data/odata-service-factory';
18
- import { OdataProviderCustomer } from './data/odata-provider/customer.model';
19
- import { CustomerConfig } from './data/odata-provider/customer.config';
20
-
21
- @Component({
22
- templateUrl: './grid-demo.component.html'
23
- })
24
- export class GridDemoBaseComponent implements OnInit, AfterViewInit, OnDestroy {
25
- @ViewChild('grid') public grid: KbGridComponent;
26
-
27
- public $oDataServiceFactory: ODataServiceFactory;
28
- public $dataServices: { [key: string]: DataService<any> };
29
- public $dataServicesData: { [key: string]: Observable<any> };
30
- public $dataServicesResult: { [key: string]: BehaviorSubject<ModelDataResult<any>> };
31
-
32
- public $dataServicesModel: { [key: string]: any } = {
33
- 'Customers': {
34
- 'createModel': () => new OdataProviderCustomer()
35
- }
36
- };
37
- public $dataServicesState: { [key: string]: State } = {
38
- 'Customers': {
39
- skip: 0,
40
- take: 5
41
- }
42
- };
43
- public $config: any = {
44
- title: '<Title>',
45
- grid: {
46
- filterable: true,
47
- groupable: false,
48
- pageable: this.$dataServicesState['Customers'].take !== undefined,
49
- pageSize: 5,
50
- reorderable: false,
51
- resizable: false,
52
- sortable: true,
53
- commandColumnWidth: 220,
54
- editing: {
55
- mode: 'ReadOnly'
56
- },
57
- events: {
58
- onRowSelect: (e) => {
59
- this['onRowSelect'](e);
60
- }
61
- }
62
- }
63
- };
64
-
65
- constructor(public injector: Injector) {
66
- this.$oDataServiceFactory = this.injector.get(ODataServiceFactory);
67
- this.$dataServices = {
68
- 'Customers': this.$oDataServiceFactory.getService<OdataProviderCustomer>(CustomerConfig, this.$dataServicesState['Customers'])
69
- };
70
- this.$dataServicesData = {
71
- 'Customers': this.getDataChanges('Customers')
72
- };
73
- this.$dataServicesResult = {
74
- 'Customers': this.getDataResult('Customers')
75
- };
76
- }
77
-
78
- public ngOnInit(): void {
79
- this['onInit']();
80
-
81
- for (const dataSourceName of Object.keys(this.$dataServices)) {
82
- this.read(dataSourceName);
83
- }
84
- }
85
-
86
- public ngAfterViewInit(): void {
87
- this['onShow']();
88
- }
89
-
90
- public ngOnDestroy(): void {
91
- this['onHide']();
92
- }
93
-
94
- public read(dataSourceName): void {
95
- this.$dataServices[dataSourceName].read();
96
- }
97
-
98
- public getDataChanges(dataSourceName): Observable<any[]> {
99
- const dataService = this.$dataServices[dataSourceName];
100
- return dataService.dataChanges()
101
- .map(response => response ? response.data : []);
102
- }
103
-
104
- public getDataResult(dataSourceName): BehaviorSubject<ModelDataResult<any>> {
105
- return this.$dataServices[dataSourceName].dataChanges();
106
- }
107
- }
@@ -1,37 +0,0 @@
1
- <!--
2
- Auto-generated
3
- Do not edit!!!
4
- -->
5
- <div class="data-grid">
6
- <div class="row">
7
- <div class="col-12">
8
- <kb-top-section></kb-top-section>
9
- </div>
10
- </div>
11
- <div class="row">
12
- <div class="col-12">
13
- <h2>{{ $config.title }}</h2>
14
- </div>
15
- </div>
16
- <div class="row">
17
- <div class="col-12">
18
- <kb-grid #grid [config]="$config.grid" [dataService]="$dataServices['Customers']" [state]="$dataServicesState['Customers']"
19
- [view]="$dataServicesResult['Customers']">
20
- <kendo-grid [pageable]="grid.config.pageable" [sortable]="grid.config.sortable" [filterable]="grid.config.filterable" [groupable]="grid.config.groupable"
21
- [data]="grid.view | async" [pageSize]="grid.state.take" [skip]="grid.state.skip" [sort]="grid.state.sort"
22
- [filter]="grid.state.filter" [group]="grid.state.group" (dataStateChange)="grid.dataStateChange($event)"
23
- kendoGridSelectBy [selectedKeys]="grid.selectedKeys" [selectable]="{ mode: 'single' }" (selectionChange)="grid.selectionChange($event)"
24
- [resizable]="grid.config.resizable" [reorderable]="grid.config.reorderable">
25
- <kendo-grid-column [field]="'CompanyName'" [filterable]="true" [sortable]="true" [title]="'CompanyName'">
26
- </kendo-grid-column>
27
- <kendo-grid-column [field]="'ContactName'" [filterable]="true" [sortable]="true" [title]="'ContactName'">
28
- </kendo-grid-column>
29
- <kendo-grid-column [field]="'ContactTitle'" [filterable]="true" [sortable]="true" [title]="'ContactTitle'">
30
- </kendo-grid-column>
31
- <kendo-grid-column [field]="'Address'" [filterable]="true" [sortable]="true" [title]="'Address'">
32
- </kendo-grid-column>
33
- </kendo-grid>
34
- </kb-grid>
35
- </div>
36
- </div>
37
- </div>
@@ -1 +0,0 @@
1
- #= appComponentContent #
@@ -1,5 +0,0 @@
1
- <!--
2
- Auto-generated
3
- Do not edit!!!
4
- -->
5
- <ng-content></ng-content>