Skip to content

Commit

Permalink
(refactor) change legacy main app name
Browse files Browse the repository at this point in the history
  • Loading branch information
dreyliky committed Oct 2, 2021
1 parent 9f9cf3d commit cd0991c
Show file tree
Hide file tree
Showing 89 changed files with 130 additions and 130 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ speed-measure-plugin*.json
.history/*

# misc
/src/assets/lib-doc
/src/assets/demo-doc
/src/assets/library-doc
/src/assets/showcase-doc
/.sass-cache
/connect.lock
/coverage
Expand Down
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@schematics/angular:component": {
"changeDetection": "OnPush",
"style": "scss",
"prefix": "demo"
"prefix": "showcase"
}
},
"root": "",
Expand Down
4 changes: 2 additions & 2 deletions compodoc-lib-config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"exportFormat": "json",
"output": "src/assets/lib-doc",
"tsconfig": "projects/ngx-os/tsconfig.lib.json",
"output": "src/assets/library-doc",
"tsconfig": "src/app/library/tsconfig.lib.json",
"silent": true,
"disableSourceCode": true,
"minimal": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"exportFormat": "json",
"output": "src/assets/demo-doc",
"output": "src/assets/showcase-doc",
"tsconfig": "tsconfig.doc.json",
"silent": true,
"minimal": true,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"eslint-check": "eslint **/*.ts --ignore-pattern node_modules",
"eslint-fix": "eslint --fix **/*.ts --ignore-pattern node_modules",
"build-lib": "ng build library --configuration production",
"doc": "npm run build-lib-doc && npm run build-demo-doc",
"doc": "npm run build-lib-doc && npm run build-showcase-doc",
"build-lib-doc": "compodoc -c compodoc-lib-config.json",
"build-demo-doc": "compodoc -c compodoc-demo-config.json"
"build-showcase-doc": "compodoc -c compodoc-showcase-config.json"
},
"private": true,
"dependencies": {
Expand Down
8 changes: 4 additions & 4 deletions src/app/library/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "../../..",
"baseUrl": "../../..",
"rootDir": ".",
"baseUrl": ".",
"outDir": "../../../out-tsc/lib",
"target": "es2015",
"declaration": true,
Expand All @@ -19,7 +19,7 @@
"enableResourceInlining": true
},
"exclude": [
"src/app/library/test.ts",
"src/app/library/**/*.spec.ts"
"test.ts",
"**/*.spec.ts"
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-button-counter',
selector: 'showcase-button-counter',
templateUrl: './button-counter.component.html',
styleUrls: ['./button-counter.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-button-overview',
selector: 'showcase-button-overview',
templateUrl: './button-overview.component.html',
styleUrls: ['./button-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-checkbox-as-form-control',
selector: 'showcase-checkbox-as-form-control',
templateUrl: './checkbox-as-form-control.component.html',
styleUrls: ['./checkbox-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-checkbox-overview',
selector: 'showcase-checkbox-overview',
templateUrl: './checkbox-overview.component.html',
styleUrls: ['./checkbox-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import { DragStrategyByAxisProperties, IDraggerParams } from 'ngx-os/modules';

@Component({
selector: 'demo-dragger-on-absolute-element',
selector: 'showcase-dragger-on-absolute-element',
templateUrl: './dragger-on-absolute-element.component.html',
styleUrls: ['./dragger-on-absolute-element.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-dragger-overview',
selector: 'showcase-dragger-overview',
templateUrl: './dragger-overview.component.html',
styleUrls: ['./dragger-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import { IDraggerParams } from 'ngx-os/modules';

@Component({
selector: 'demo-dragger-via-handle',
selector: 'showcase-dragger-via-handle',
templateUrl: './dragger-via-handle.component.html',
styleUrls: ['./dragger-via-handle.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
import { DragStrategyByTranslate3d, IDraggerParams } from 'ngx-os/modules';

@Component({
selector: 'demo-dragger-with-locked-axis',
selector: 'showcase-dragger-with-locked-axis',
templateUrl: './dragger-with-locked-axis.component.html',
styleUrls: ['./dragger-with-locked-axis.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface MyItem {
}

@Component({
selector: 'demo-dropdown-as-form-control',
selector: 'showcase-dropdown-as-form-control',
templateUrl: './dropdown-as-form-control.component.html',
styleUrls: ['./dropdown-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-dropdown-overview',
selector: 'showcase-dropdown-overview',
templateUrl: './dropdown-overview.component.html',
styleUrls: ['./dropdown-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-dropdown-with-custom-content',
selector: 'showcase-dropdown-with-custom-content',
templateUrl: './dropdown-with-custom-content.component.html',
styleUrls: ['./dropdown-with-custom-content.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface Item {

/** @internal */
@Component({
selector: 'demo-dropdown-with-interval-value-change',
selector: 'showcase-dropdown-with-interval-value-change',
templateUrl: './dropdown-with-interval-value-change.component.html',
styleUrls: ['./dropdown-with-interval-value-change.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-email-box-as-form-control',
selector: 'showcase-email-box-as-form-control',
templateUrl: './email-box-as-form-control.component.html',
styleUrls: ['./email-box-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-email-box-overview',
selector: 'showcase-email-box-overview',
templateUrl: './email-box-overview.component.html',
styleUrls: ['./email-box-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-form-field-overview',
selector: 'showcase-form-field-overview',
templateUrl: './form-field-overview.component.html',
styleUrls: ['./form-field-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { GridDirectionEnum, IGridItem } from 'ngx-os';

@Component({
selector: 'demo-grid-overview',
selector: 'showcase-grid-overview',
templateUrl: './grid-overview.component.html',
styleUrls: ['./grid-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-group-box-overview',
selector: 'showcase-group-box-overview',
templateUrl: './group-box-overview.component.html',
styleUrls: ['./group-box-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface Item {
}

@Component({
selector: 'demo-list-custom-template',
selector: 'showcase-list-custom-template',
templateUrl: './list-custom-template.component.html',
styleUrls: ['./list-custom-template.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Item {
}

@Component({
selector: 'demo-list-overview',
selector: 'showcase-list-overview',
templateUrl: './list-overview.component.html',
styleUrls: ['./list-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-number-box-as-form-control',
selector: 'showcase-number-box-as-form-control',
templateUrl: './number-box-as-form-control.component.html',
styleUrls: ['./number-box-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-number-box-overview',
selector: 'showcase-number-box-overview',
templateUrl: './number-box-overview.component.html',
styleUrls: ['./number-box-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-password-box-as-form-control',
selector: 'showcase-password-box-as-form-control',
templateUrl: './password-box-as-form-control.component.html',
styleUrls: ['./password-box-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-password-box-overview',
selector: 'showcase-password-box-overview',
templateUrl: './password-box-overview.component.html',
styleUrls: ['./password-box-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Item {
}

@Component({
selector: 'demo-radio-button-as-form-control',
selector: 'showcase-radio-button-as-form-control',
templateUrl: './radio-button-as-form-control.component.html',
styleUrls: ['./radio-button-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-radio-button-overview',
selector: 'showcase-radio-button-overview',
templateUrl: './radio-button-overview.component.html',
styleUrls: ['./radio-button-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
} from '@angular/core';

@Component({
selector: 'demo-resizer-on-absolute-element',
selector: 'showcase-resizer-on-absolute-element',
templateUrl: './resizer-on-absolute-element.component.html',
styleUrls: ['./resizer-on-absolute-element.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
import { IResizerParams } from 'ngx-os/modules';

@Component({
selector: 'demo-resizer-overview',
selector: 'showcase-resizer-overview',
templateUrl: './resizer-overview.component.html',
styleUrls: ['./resizer-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
import { IResizerParams, ResizerEnum } from 'ngx-os/modules';

@Component({
selector: 'demo-resizer-specific-sides',
selector: 'showcase-resizer-specific-sides',
templateUrl: './resizer-specific-sides.component.html',
styleUrls: ['./resizer-specific-sides.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-scroll-view-overview',
selector: 'showcase-scroll-view-overview',
templateUrl: './scroll-view-overview.component.html',
styleUrls: ['./scroll-view-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-slider-as-form-control',
selector: 'showcase-slider-as-form-control',
templateUrl: './slider-as-form-control.component.html',
styleUrls: ['./slider-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-slider-overview',
selector: 'showcase-slider-overview',
templateUrl: './slider-overview.component.html',
styleUrls: ['./slider-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface TabItem {
}

@Component({
selector: 'demo-tab-group-overview',
selector: 'showcase-tab-group-overview',
templateUrl: './tab-group-overview.component.html',
styleUrls: ['./tab-group-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-text-box-as-form-control',
selector: 'showcase-text-box-as-form-control',
templateUrl: './text-box-as-form-control.component.html',
styleUrls: ['./text-box-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-text-box-overview',
selector: 'showcase-text-box-overview',
templateUrl: './text-box-overview.component.html',
styleUrls: ['./text-box-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'demo-text-overview',
selector: 'showcase-text-overview',
templateUrl: './text-overview.component.html',
styleUrls: ['./text-overview.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';

@Component({
selector: 'demo-textarea-as-form-control',
selector: 'showcase-textarea-as-form-control',
templateUrl: './textarea-as-form-control.component.html',
styleUrls: ['./textarea-as-form-control.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
Expand Down
Loading

0 comments on commit cd0991c

Please sign in to comment.