Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 99fa10b

Browse files
committed
Merge branch 'api' into develop
2 parents b140728 + b4493bf commit 99fa10b

File tree

282 files changed

+17615
-15046
lines changed

Some content is hidden

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

282 files changed

+17615
-15046
lines changed

CHANGELOG.md

Lines changed: 744 additions & 561 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class AppModule {}
5656

5757
## Usage Instructions
5858

59-
To use the **UI Library** import it into a Page or Component Module. You can either import the full FivethreeCoreModule or one of the feature modules (e.g. FivGalleryModule).
59+
To use the **UI Library** import one of the feature modules (e.g. FivGalleryModule) into a Page or Component Module.
6060

6161
For example:
6262

@@ -66,7 +66,7 @@ import { CommonModule } from '@angular/common';
6666
import { IonicModule } from '@ionic/angular';
6767
import { FormsModule } from '@angular/forms';
6868
import { RouterModule } from '@angular/router';
69-
import { FivethreeCoreModule } from '@fivethree/core';
69+
import { FivGalleryModule } from '@fivethree/core';
7070

7171
import { HomePage } from './home.page';
7272

@@ -81,7 +81,7 @@ import { HomePage } from './home.page';
8181
component: HomePage
8282
}
8383
]),
84-
FivethreeCoreModule
84+
FivGalleryModule
8585
],
8686
declarations: [HomePage]
8787
})

angular.json

Lines changed: 15 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json",
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"version": 1,
44
"defaultProject": "app",
55
"newProjectRoot": "projects",
@@ -14,12 +14,11 @@
1414
"build": {
1515
"builder": "@angular-devkit/build-angular:browser",
1616
"options": {
17-
"progress": false,
1817
"outputPath": "www",
1918
"index": "src/index.html",
2019
"main": "src/main.ts",
2120
"polyfills": "src/polyfills.ts",
22-
"tsConfig": "src/tsconfig.app.json",
21+
"tsConfig": "tsconfig.app.json",
2322
"assets": [
2423
{
2524
"glob": "**/*",
@@ -37,6 +36,9 @@
3736
{
3837
"input": "src/theme/material-theme.scss"
3938
},
39+
{
40+
"input": "src/theme/markdown.scss"
41+
},
4042
{
4143
"input": "src/theme/variables.scss"
4244
},
@@ -107,11 +109,9 @@
107109
"options": {
108110
"main": "src/test.ts",
109111
"polyfills": "src/polyfills.ts",
110-
"tsConfig": "src/tsconfig.spec.json",
111-
"karmaConfig": "src/karma.conf.js",
112-
"styles": [
113-
"styles.css"
114-
],
112+
"tsConfig": "tsconfig.spec.json",
113+
"karmaConfig": "karma.conf.js",
114+
"styles": [],
115115
"scripts": [],
116116
"assets": [
117117
{
@@ -132,12 +132,11 @@
132132
"builder": "@angular-devkit/build-angular:tslint",
133133
"options": {
134134
"tsConfig": [
135-
"src/tsconfig.app.json",
136-
"src/tsconfig.spec.json"
135+
"tsconfig.app.json",
136+
"tsconfig.spec.json",
137+
"e2e/tsconfig.json"
137138
],
138-
"exclude": [
139-
"**/node_modules/**"
140-
]
139+
"exclude": ["**/node_modules/**"]
141140
}
142141
},
143142
"ionic-cordova-build": {
@@ -181,9 +180,7 @@
181180
"builder": "@angular-devkit/build-angular:tslint",
182181
"options": {
183182
"tsConfig": "e2e/tsconfig.e2e.json",
184-
"exclude": [
185-
"**/node_modules/**"
186-
]
183+
"exclude": ["**/node_modules/**"]
187184
}
188185
}
189186
}
@@ -221,49 +218,7 @@
221218
"projects/core/tsconfig.lib.json",
222219
"projects/core/tsconfig.spec.json"
223220
],
224-
"exclude": [
225-
"**/node_modules/**"
226-
]
227-
}
228-
}
229-
}
230-
},
231-
"google-maps": {
232-
"root": "projects/google-maps",
233-
"sourceRoot": "projects/google-maps/src",
234-
"projectType": "library",
235-
"prefix": "fiv",
236-
"architect": {
237-
"build": {
238-
"builder": "@angular-devkit/build-ng-packagr:build",
239-
"options": {
240-
"tsConfig": "projects/google-maps/tsconfig.lib.json",
241-
"project": "projects/google-maps/ng-package.json"
242-
},
243-
"configurations": {
244-
"production": {
245-
"project": "projects/google-maps/ng-package.prod.json"
246-
}
247-
}
248-
},
249-
"test": {
250-
"builder": "@angular-devkit/build-angular:karma",
251-
"options": {
252-
"main": "projects/google-maps/src/test.ts",
253-
"tsConfig": "projects/google-maps/tsconfig.spec.json",
254-
"karmaConfig": "projects/google-maps/karma.conf.js"
255-
}
256-
},
257-
"lint": {
258-
"builder": "@angular-devkit/build-angular:tslint",
259-
"options": {
260-
"tsConfig": [
261-
"projects/google-maps/tsconfig.lib.json",
262-
"projects/google-maps/tsconfig.spec.json"
263-
],
264-
"exclude": [
265-
"**/node_modules/**"
266-
]
221+
"exclude": ["**/node_modules/**"]
267222
}
268223
}
269224
}
@@ -280,4 +235,4 @@
280235
"styleext": "scss"
281236
}
282237
}
283-
}
238+
}

0 commit comments

Comments
 (0)