Skip to content

Commit 1842ccf

Browse files
authored
Merge pull request #49 from mrholek/v1.0.8
v1.0.8
2 parents 1ec3a2c + 07a171f commit 1842ccf

File tree

589 files changed

+39027
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

589 files changed

+39027
-1
lines changed

Diff for: Angular5_CLI_Full_Project/.angular-cli.json

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"version": "1.0.8",
5+
"name": "@coreui/angular"
6+
},
7+
"apps": [
8+
{
9+
"root": "src",
10+
"outDir": "dist",
11+
"assets": ["assets"],
12+
"index": "index.html",
13+
"main": "main.ts",
14+
"polyfills": "polyfills.ts",
15+
"test": "test.ts",
16+
"tsconfig": "tsconfig.app.json",
17+
"testTsconfig": "tsconfig.spec.json",
18+
"prefix": "app",
19+
"styles": [
20+
"../node_modules/flag-icon-css/css/flag-icon.css",
21+
"../node_modules/font-awesome/css/font-awesome.css",
22+
"../node_modules/simple-line-icons/css/simple-line-icons.css",
23+
"scss/style.scss"
24+
],
25+
"scripts": [
26+
"../node_modules/chart.js/dist/Chart.bundle.min.js",
27+
"../node_modules/chart.js/dist/Chart.min.js"
28+
],
29+
"environmentSource": "environments/environment.ts",
30+
"environments": {
31+
"dev": "environments/environment.ts",
32+
"prod": "environments/environment.prod.ts"
33+
}
34+
}
35+
],
36+
"e2e": {
37+
"protractor": {
38+
"config": "./protractor.conf.js"
39+
}
40+
},
41+
"lint": [
42+
{
43+
"project": "src/tsconfig.app.json"
44+
},
45+
{
46+
"project": "src/tsconfig.spec.json"
47+
},
48+
{
49+
"project": "e2e/tsconfig.e2e.json"
50+
}
51+
],
52+
"test": {
53+
"karma": {
54+
"config": "./karma.conf.js"
55+
}
56+
},
57+
"defaults": {
58+
"styleExt": "scss",
59+
"prefixInterfaces": false
60+
}
61+
}

Diff for: Angular5_CLI_Full_Project/.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.ts]
13+
charset = utf-8
14+
indent_style = space
15+
indent_size = 2
16+
end_of_line = lf
17+
insert_final_newline = true
18+
trim_trailing_whitespace = true
19+
20+
[*.md]
21+
max_line_length = 0
22+
trim_trailing_whitespace = false

Diff for: Angular5_CLI_Full_Project/.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
7+
# dependencies
8+
node_modules
9+
bower_components
10+
11+
# IDEs and editors
12+
.idea
13+
.project
14+
.classpath
15+
*.launch
16+
.settings/
17+
18+
# misc
19+
/.sass-cache
20+
/connect.lock
21+
/coverage/*
22+
/libpeerconnection.log
23+
npm-debug.log
24+
testem.log
25+
/typings
26+
27+
# e2e
28+
/e2e/*.js
29+
/e2e/*.map
30+
31+
#System Files
32+
.DS_Store
33+
Thumbs.db

Diff for: Angular5_CLI_Full_Project/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## [angular](./README.md) version `changelog`
2+
3+
###### `v1.0.8`
4+
- update: bootstrap to `4.0.0-beta.3`
5+
- update: ngx-bootstrap to `2.0.0-rc.0`
6+
- fix(forms): duplicate `select` ids, toggleCollapse
7+
- fix(dashboard): btnRadio
8+
- refactor: `input-group-addon` to new `4.0.0-beta.3` classes
9+
- feature: some Bootstrap4 components added
10+
- feat: mobile sidebar link click closes the sidebar
11+
- update: dependencies
12+

Diff for: Angular5_CLI_Full_Project/README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Angular2DevelopmentCLI
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.0-beta.32.3.
4+
5+
## Development server
6+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
7+
8+
## Code scaffolding
9+
10+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive/pipe/service/class/module`.
11+
12+
## Build
13+
14+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.
15+
16+
## Running unit tests
17+
18+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
19+
20+
## Running end-to-end tests
21+
22+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
23+
Before running the tests make sure you are serving the app via `ng serve`.
24+
25+
## Further help
26+
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

Diff for: Angular5_CLI_Full_Project/e2e/app.e2e-spec.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { CoreUIPage } from './app.po';
2+
3+
describe('core-ui App', function() {
4+
let page: CoreUIPage;
5+
6+
beforeEach(() => {
7+
page = new CoreUIPage();
8+
});
9+
10+
it('should display message saying app works', () => {
11+
page.navigateTo();
12+
expect(page.getParagraphText()).toEqual('app works!');
13+
});
14+
});

Diff for: Angular5_CLI_Full_Project/e2e/app.po.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { browser, element, by } from 'protractor/globals';
2+
3+
export class CoreUIPage {
4+
navigateTo() {
5+
return browser.get('/');
6+
}
7+
8+
getParagraphText() {
9+
return element(by.css('app-root h1')).getText();
10+
}
11+
}

Diff for: Angular5_CLI_Full_Project/e2e/tsconfig.e2e.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "../out-tsc/e2e",
5+
"module": "commonjs",
6+
"target": "es5",
7+
"types":[
8+
"jasmine",
9+
"node"
10+
]
11+
}
12+
}

Diff for: Angular5_CLI_Full_Project/karma.conf.js

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// Karma configuration file, see link for more information
2+
// https://karma-runner.github.io/0.13/config/configuration-file.html
3+
4+
module.exports = function (config) {
5+
config.set({
6+
basePath: '',
7+
frameworks: ['jasmine', '@angular/cli'],
8+
plugins: [
9+
require('karma-jasmine'),
10+
require('karma-chrome-launcher'),
11+
require('karma-jasmine-html-reporter'),
12+
require('karma-coverage-istanbul-reporter'),
13+
require('@angular/cli/plugins/karma')
14+
],
15+
client:{
16+
clearContext: false // leave Jasmine Spec Runner output visible in browser
17+
},
18+
files: [
19+
{ pattern: './src/test.ts', watched: false }
20+
],
21+
preprocessors: {
22+
'./src/test.ts': ['@angular/cli']
23+
},
24+
mime: {
25+
'text/x-typescript': ['ts','tsx']
26+
},
27+
coverageIstanbulReporter: {
28+
reports: [ 'html', 'lcovonly' ],
29+
fixWebpackSourcePaths: true
30+
},
31+
angularCli: {
32+
environment: 'dev'
33+
},
34+
reporters: config.angularCli && config.angularCli.codeCoverage
35+
? ['progress', 'coverage-istanbul']
36+
: ['progress', 'kjhtml'],
37+
port: 9876,
38+
colors: true,
39+
logLevel: config.LOG_INFO,
40+
autoWatch: true,
41+
browsers: ['Chrome'],
42+
singleRun: false
43+
});
44+
};

0 commit comments

Comments
 (0)