Skip to content

Commit 6abdd75

Browse files
committed
Non-ivy version.
1 parent ccab7ce commit 6abdd75

8 files changed

Lines changed: 9744 additions & 3147 deletions

File tree

package-lock.json

Lines changed: 9704 additions & 3121 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,32 @@
1616
"pack": "npm run build && npm pack ./dist/tubular-ng-widgets/"
1717
},
1818
"dependencies": {
19-
"@angular/animations": "~13.1.0",
20-
"@angular/common": "~13.1.0",
21-
"@angular/compiler": "~13.1.0",
22-
"@angular/core": "~13.1.0",
23-
"@angular/forms": "~13.1.0",
24-
"@angular/platform-browser": "~13.1.0",
25-
"@angular/platform-browser-dynamic": "~13.1.0",
26-
"@angular/router": "~13.1.0",
19+
"@angular/animations": "~12.2.5",
20+
"@angular/common": "~12.2.5",
21+
"@angular/compiler": "~12.2.5",
22+
"@angular/core": "~12.2.5",
23+
"@angular/forms": "~12.2.5",
24+
"@angular/platform-browser": "~12.2.5",
25+
"@angular/platform-browser-dynamic": "~12.2.5",
26+
"@angular/router": "~12.2.5",
2727
"@tubular/math": "^3.1.0",
2828
"@tubular/time": "^3.8.0",
29-
"@tubular/util": "^4.5.1",
29+
"@tubular/util": "^4.6.0",
3030
"detect-resize": "^0.1.5",
3131
"lodash": "^4.17.21",
3232
"rxjs": "~6.6.7",
3333
"tslib": "^2.3.1",
3434
"zone.js": "~0.11.4"
3535
},
3636
"devDependencies": {
37-
"@angular-devkit/build-angular": "^13.1.1",
37+
"@angular-devkit/build-angular": "^12.2.13",
3838
"@angular-eslint/builder": "^12.4.1",
3939
"@angular-eslint/eslint-plugin": "^12.4.1",
4040
"@angular-eslint/eslint-plugin-template": "^12.4.1",
4141
"@angular-eslint/schematics": "^12.7.0",
4242
"@angular-eslint/template-parser": "^12.4.1",
43-
"@angular/cli": "^13.1.1",
44-
"@angular/compiler-cli": "~13.1.0",
43+
"@angular/cli": "^12.2.13",
44+
"@angular/compiler-cli": "~12.2.5",
4545
"@types/jasmine": "~3.9.0",
4646
"@types/node": "^12.20.17",
4747
"@typescript-eslint/eslint-plugin": "^4.31.0",
@@ -60,7 +60,7 @@
6060
"karma-coverage": "~2.0.3",
6161
"karma-jasmine": "~4.0.1",
6262
"karma-jasmine-html-reporter": "^1.7.0",
63-
"ng-packagr": "^13.1.1",
64-
"typescript": "~4.5.3"
63+
"ng-packagr": "^12.2.1",
64+
"typescript": "~4.2.4"
6565
}
6666
}

projects/ng-widgets-showcase/src/polyfills.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@
1818
* BROWSER POLYFILLS
1919
*/
2020

21+
/**
22+
* IE11 requires the following for NgClass support on SVG elements
23+
*/
24+
// import 'classlist.js'; // Run `npm install --save classlist.js`.
25+
26+
/**
27+
* Web Animations `@angular/platform-browser/animations`
28+
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
29+
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
30+
*/
31+
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
32+
2133
/**
2234
* By default, zone.js will patch all possible macroTask and DomEvents
2335
* user can disable parts of macroTask/DomEvents patch by setting following flags

projects/ng-widgets-showcase/src/test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ declare const require: {
1717
// First, initialize the Angular testing environment.
1818
getTestBed().initTestEnvironment(
1919
BrowserDynamicTestingModule,
20-
platformBrowserDynamicTesting(), {
21-
teardown: { destroyAfterEach: false }
22-
}
20+
platformBrowserDynamicTesting()
2321
);
2422
// Then we find all the tests.
2523
const context = require.context('./', true, /\.spec\.ts$/);

projects/tubular-ng-widgets/ng-package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"dest": "../../dist/tubular-ng-widgets",
44
"lib": {
55
"cssUrl": "inline",
6-
"entryFile": "src/public-api.ts"
6+
"entryFile": "src/public-api.ts",
7+
"umdModuleIds": {
8+
"@tubular/math": "tbMath",
9+
"@tubular/time": "tbTime",
10+
"@tubular/util": "tbUtil"
11+
}
712
}
813
}

projects/tubular-ng-widgets/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@tubular/ng-widgets",
3-
"version": "2.0.3",
3+
"version": "1.3.10",
44
"peerDependencies": {
5-
"@angular/common": "^13.0.0",
6-
"@angular/core": "^13.0.0",
5+
"@angular/common": "^12.0.0",
6+
"@angular/core": "^12.0.0",
77
"@tubular/math": "^3.1.0",
88
"@tubular/time": "^3.8.0",
9-
"@tubular/util": "^4.5.1",
9+
"@tubular/util": "^4.6.0",
1010
"detect-resize": "^0.1.5",
1111
"lodash": "^4.17.21"
1212
},

projects/tubular-ng-widgets/src/test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ declare const require: {
1818
// First, initialize the Angular testing environment.
1919
getTestBed().initTestEnvironment(
2020
BrowserDynamicTestingModule,
21-
platformBrowserDynamicTesting(), {
22-
teardown: { destroyAfterEach: false }
23-
}
21+
platformBrowserDynamicTesting()
2422
);
2523
// Then we find all the tests.
2624
const context = require.context('./', true, /\.spec\.ts$/);

projects/tubular-ng-widgets/tsconfig.lib.prod.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"declarationMap": false
66
},
77
"angularCompilerOptions": {
8-
"compilationMode": "partial"
8+
"compilationMode": "partial",
9+
"enableIvy": false
910
}
1011
}

0 commit comments

Comments
 (0)