-
Notifications
You must be signed in to change notification settings - Fork 957
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): components docs and application add (#386)
- Loading branch information
Showing
308 changed files
with
18,857 additions
and
11,897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ npm-debug.log | |
|
||
# docs | ||
docs/docs.json | ||
docs/output.json | ||
docs/src/input.json | ||
|
||
.expo | ||
dist | ||
dist |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"rules": { | ||
"color-hex-case": "lower", | ||
"color-no-invalid-hex": true, | ||
|
||
"function-calc-no-unspaced-operator": true, | ||
"function-comma-space-after": "always-single-line", | ||
"function-comma-space-before": "never", | ||
"function-name-case": "lower", | ||
"function-url-quotes": "always", | ||
"function-whitespace-after": "always", | ||
|
||
"number-leading-zero": "always", | ||
"number-no-trailing-zeros": true, | ||
"length-zero-no-unit": true, | ||
|
||
"string-no-newline": true, | ||
"string-quotes": "single", | ||
|
||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"unit-whitelist": ["px", "%", "deg", "ms", "em", "vh", "vw", "s", "rem"], | ||
|
||
"value-list-comma-space-after": "always-single-line", | ||
"value-list-comma-space-before": "never", | ||
|
||
"shorthand-property-no-redundant-values": true, | ||
|
||
"property-case": "lower", | ||
|
||
"declaration-block-no-duplicate-properties": [ true, { | ||
"ignore": ["consecutive-duplicates-with-different-values"] | ||
}], | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-block-single-line-max-declarations": 1, | ||
"declaration-block-semicolon-space-before": "never", | ||
"declaration-block-semicolon-space-after": "always-single-line", | ||
"declaration-block-semicolon-newline-before": "never-multi-line", | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
"declaration-property-value-blacklist": [ | ||
{ "/.*/": ["initial"] }, | ||
{ "message": "The `initial` value is not supported in IE."} | ||
], | ||
|
||
"block-closing-brace-newline-after": [ | ||
"always", | ||
{ | ||
"ignoreAtRules": ["if", "else"] | ||
} | ||
], | ||
"block-closing-brace-newline-before": "always-multi-line", | ||
"block-opening-brace-newline-after": "always-multi-line", | ||
"block-opening-brace-space-before": "always-multi-line", | ||
|
||
"selector-attribute-brackets-space-inside": "never", | ||
"selector-attribute-operator-space-after": "never", | ||
"selector-attribute-operator-space-before": "never", | ||
"selector-combinator-space-after": "always", | ||
"selector-combinator-space-before": "always", | ||
"selector-pseudo-class-case": "lower", | ||
"selector-pseudo-class-parentheses-space-inside": "never", | ||
"selector-pseudo-element-case": "lower", | ||
"selector-pseudo-element-colon-notation": "double", | ||
"selector-pseudo-element-no-unknown": [true, { | ||
"ignorePseudoElements": ["ng-deep"] | ||
}], | ||
"selector-type-case": "lower", | ||
"selector-max-id": 0, | ||
|
||
"no-missing-end-of-source-newline": true, | ||
|
||
"max-line-length": 120 | ||
} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"defaultProject": "docs", | ||
"projects": { | ||
"docs": { | ||
"root": "", | ||
"sourceRoot": "src", | ||
"projectType": "application", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"tsConfig": "tsconfig.app.json", | ||
"polyfills": "src/polyfills.ts", | ||
"rebaseRootRelativeCssUrls": true, | ||
"assets": [ | ||
"src/assets", | ||
"src/404.html", | ||
"src/favicon.ico", | ||
"src/favicon.png", | ||
"src/google46533d2e7a851062.html" | ||
], | ||
"styles": [ | ||
"node_modules/bootstrap/dist/css/bootstrap.css", | ||
"node_modules/docsearch.js/dist/cdn/docsearch.min.css", | ||
"node_modules/highlight.js/styles/dracula.css", | ||
"src/app/@theme/styles/styles.scss" | ||
], | ||
"scripts": [ | ||
"node_modules/docsearch.js/dist/cdn/docsearch.min.js" | ||
] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"aot": true, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "docs:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "docs:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "docs:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"karmaConfig": "./karma.conf.js", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"scripts": [ | ||
], | ||
"styles": [ | ||
"node_modules/highlight.js/styles/dracula.css", | ||
"src/app/@theme/styles/styles.scss" | ||
], | ||
"assets": [ | ||
"src/assets", | ||
"src/favicon.ico", | ||
"src/favicon.png", | ||
"src/google46533d2e7a851062.html" | ||
] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"tsconfig.spec.json", | ||
"tsconfig.app.json" | ||
], | ||
"exclude": [] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"prefix": "app", | ||
"styleext": "scss" | ||
}, | ||
"@schematics/angular:directive": { | ||
"prefix": "app" | ||
} | ||
} | ||
} |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.