Skip to content

Commit

Permalink
Non-ivy version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kshetline committed Jan 15, 2022
1 parent ccab7ce commit 6abdd75
Show file tree
Hide file tree
Showing 8 changed files with 9,744 additions and 3,147 deletions.
12,825 changes: 9,704 additions & 3,121 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,32 @@
"pack": "npm run build && npm pack ./dist/tubular-ng-widgets/"
},
"dependencies": {
"@angular/animations": "~13.1.0",
"@angular/common": "~13.1.0",
"@angular/compiler": "~13.1.0",
"@angular/core": "~13.1.0",
"@angular/forms": "~13.1.0",
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"@angular/animations": "~12.2.5",
"@angular/common": "~12.2.5",
"@angular/compiler": "~12.2.5",
"@angular/core": "~12.2.5",
"@angular/forms": "~12.2.5",
"@angular/platform-browser": "~12.2.5",
"@angular/platform-browser-dynamic": "~12.2.5",
"@angular/router": "~12.2.5",
"@tubular/math": "^3.1.0",
"@tubular/time": "^3.8.0",
"@tubular/util": "^4.5.1",
"@tubular/util": "^4.6.0",
"detect-resize": "^0.1.5",
"lodash": "^4.17.21",
"rxjs": "~6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.1",
"@angular-devkit/build-angular": "^12.2.13",
"@angular-eslint/builder": "^12.4.1",
"@angular-eslint/eslint-plugin": "^12.4.1",
"@angular-eslint/eslint-plugin-template": "^12.4.1",
"@angular-eslint/schematics": "^12.7.0",
"@angular-eslint/template-parser": "^12.4.1",
"@angular/cli": "^13.1.1",
"@angular/compiler-cli": "~13.1.0",
"@angular/cli": "^12.2.13",
"@angular/compiler-cli": "~12.2.5",
"@types/jasmine": "~3.9.0",
"@types/node": "^12.20.17",
"@typescript-eslint/eslint-plugin": "^4.31.0",
Expand All @@ -60,7 +60,7 @@
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^13.1.1",
"typescript": "~4.5.3"
"ng-packagr": "^12.2.1",
"typescript": "~4.2.4"
}
}
12 changes: 12 additions & 0 deletions projects/ng-widgets-showcase/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@
* BROWSER POLYFILLS
*/

/**
* IE11 requires the following for NgClass support on SVG elements
*/
// import 'classlist.js'; // Run `npm install --save classlist.js`.

/**
* Web Animations `@angular/platform-browser/animations`
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.

/**
* By default, zone.js will patch all possible macroTask and DomEvents
* user can disable parts of macroTask/DomEvents patch by setting following flags
Expand Down
4 changes: 1 addition & 3 deletions projects/ng-widgets-showcase/src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ declare const require: {
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
Expand Down
7 changes: 6 additions & 1 deletion projects/tubular-ng-widgets/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"dest": "../../dist/tubular-ng-widgets",
"lib": {
"cssUrl": "inline",
"entryFile": "src/public-api.ts"
"entryFile": "src/public-api.ts",
"umdModuleIds": {
"@tubular/math": "tbMath",
"@tubular/time": "tbTime",
"@tubular/util": "tbUtil"
}
}
}
8 changes: 4 additions & 4 deletions projects/tubular-ng-widgets/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@tubular/ng-widgets",
"version": "2.0.3",
"version": "1.3.10",
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/common": "^12.0.0",
"@angular/core": "^12.0.0",
"@tubular/math": "^3.1.0",
"@tubular/time": "^3.8.0",
"@tubular/util": "^4.5.1",
"@tubular/util": "^4.6.0",
"detect-resize": "^0.1.5",
"lodash": "^4.17.21"
},
Expand Down
4 changes: 1 addition & 3 deletions projects/tubular-ng-widgets/src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ declare const require: {
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
Expand Down
3 changes: 2 additions & 1 deletion projects/tubular-ng-widgets/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "partial"
"compilationMode": "partial",
"enableIvy": false
}
}

0 comments on commit 6abdd75

Please sign in to comment.