widget-common-container 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.angular/cache/19.2.26/ng-packagr/0997d7866dbb7999756bcd6dce071e827244865f4ff149c26d049d1515686b01 +1 -0
- package/.angular/cache/19.2.26/ng-packagr/882519e10fb587011272af89a34932495c0e2cc97d0c030536d1033ee55ce561 +1 -0
- package/.angular/cache/19.2.26/ng-packagr/8b15b546ec32b4e82b20945f62d23ba911050bdc6a4a60d34875eea6fe236635 +1 -0
- package/.angular/cache/19.2.26/ng-packagr/9711df1afdc00e2ac901d2b22d9559a220e74d16c0bf6d3917e410c565aed496 +1 -0
- package/.angular/cache/19.2.26/ng-packagr/tsbuildinfo/inspark-widget-common.tsbuildinfo +1 -0
- package/.editorconfig +13 -0
- package/.eslintrc.json +28 -0
- package/README.md +27 -0
- package/angular.json +46 -0
- package/e2e/protractor.conf.js +28 -0
- package/e2e/src/app.e2e-spec.ts +14 -0
- package/e2e/src/app.po.ts +11 -0
- package/e2e/tsconfig.e2e.json +13 -0
- package/package.json +75 -0
- package/projects/widget-common/copy.json +8 -0
- package/projects/widget-common/karma.conf.js +31 -0
- package/projects/widget-common/ng-package.json +7 -0
- package/projects/widget-common/package-lock.json +78 -0
- package/projects/widget-common/package.json +23 -0
- package/projects/widget-common/src/assets/error.svg +6 -0
- package/projects/widget-common/src/assets/falsevalue.svg +6 -0
- package/projects/widget-common/src/assets/icon.svg +6 -0
- package/projects/widget-common/src/assets/none.svg +6 -0
- package/projects/widget-common/src/assets/success.svg +6 -0
- package/projects/widget-common/src/assets/warning.svg +6 -0
- package/projects/widget-common/src/lib/common.ts +23 -0
- package/projects/widget-common/src/lib/communication.service.ts +59 -0
- package/projects/widget-common/src/lib/echart/echart.component.html +2 -0
- package/projects/widget-common/src/lib/echart/echart.component.scss +40 -0
- package/projects/widget-common/src/lib/echart/echart.component.ts +703 -0
- package/projects/widget-common/src/lib/echart/en.ts +156 -0
- package/projects/widget-common/src/lib/echart/ru.ts +156 -0
- package/projects/widget-common/src/lib/forge/ParamAssign.ts +187 -0
- package/projects/widget-common/src/lib/forge/Script.service.ts +86 -0
- package/projects/widget-common/src/lib/forge/extenstion.ts +263 -0
- package/projects/widget-common/src/lib/forge/forge.component.html +2 -0
- package/projects/widget-common/src/lib/forge/forge.component.scss +6 -0
- package/projects/widget-common/src/lib/forge/forge.component.ts +184 -0
- package/projects/widget-common/src/lib/forge/forge.interface.ts +4 -0
- package/projects/widget-common/src/lib/loader.ts +19 -0
- package/projects/widget-common/src/lib/pie-chart/pie-chart.component.html +1 -0
- package/projects/widget-common/src/lib/pie-chart/pie-chart.component.scss +3 -0
- package/projects/widget-common/src/lib/pie-chart/pie-chart.component.ts +252 -0
- package/projects/widget-common/src/lib/shared.module.ts +40 -0
- package/projects/widget-common/src/lib/sprintf.ts +212 -0
- package/projects/widget-common/src/lib/widget-container/widget-container.component.ts +53 -0
- package/projects/widget-common/src/lib/widget.api.ts +24 -0
- package/projects/widget-common/src/lib/widget.component.ts +87 -0
- package/projects/widget-common/src/lib/widget.dialog.ts +14 -0
- package/projects/widget-common/src/lib/widget.generator.ts +1532 -0
- package/projects/widget-common/src/lib/widget.interface.ts +871 -0
- package/projects/widget-common/src/lib/widget.utils.ts +634 -0
- package/projects/widget-common/src/public_api.ts +9 -0
- package/projects/widget-common/src/scss/main.scss +24 -0
- package/projects/widget-common/src/test.ts +22 -0
- package/projects/widget-common/tsconfig.lib.json +38 -0
- package/projects/widget-common/tsconfig.lib.prod.json +6 -0
- package/projects/widget-common/tsconfig.spec.json +17 -0
- package/projects/widget-common/tslint.json +17 -0
- package/projects/widget-common/versions/full/copy.json +15 -0
- package/projects/widget-common/versions/full/package.json +7 -0
- package/projects/widget-common/versions/full/public_api.ts +19 -0
- package/projects/widget-common/versions/interfaces/copy.json +15 -0
- package/projects/widget-common/versions/interfaces/package.json +7 -0
- package/projects/widget-common/versions/interfaces/public_api.ts +9 -0
- package/src/app/app.component.html +20 -0
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.spec.ts +31 -0
- package/src/app/app.component.ts +10 -0
- package/src/app/app.module.ts +16 -0
- package/src/assets/.gitkeep +0 -0
- package/src/browserslist +11 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +14 -0
- package/src/karma.conf.js +31 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +80 -0
- package/src/styles.scss +1 -0
- package/src/test.ts +20 -0
- package/src/tsconfig.app.json +11 -0
- package/src/tsconfig.spec.json +18 -0
- package/src/tslint.json +17 -0
- package/tsconfig.json +34 -0
- package/tslint.json +131 -0
- package/update_full.js +27 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.