@yelon/testing 14.2.0 → 15.0.0-beta.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/LICENSE +1 -1
- package/README.md +1 -5
- package/package.json +15 -1
- package/src/g2.d.ts +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2017-present yunzai<devcui@outlook.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
# @yelon/testing [](https://dev.azure.com/ng-yunzai/yelon/_build/latest?definitionId=1&branchName=master) [](https://www.npmjs.com/package/@yelon/testing)
|
|
2
2
|
|
|
3
3
|
Test suite for ng-yunzai.
|
|
4
4
|
|
|
5
|
-
## Architecture
|
|
6
|
-
|
|
7
|
-

|
|
8
|
-
|
|
9
5
|
## Troubleshooting
|
|
10
6
|
|
|
11
7
|
Please follow this guidelines when reporting bugs and feature requests:
|
package/package.json
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yelon/testing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0-beta.0",
|
|
4
4
|
"author": "devcui<devcui@outlook.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/hbyunzai/yelon.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/hbyunzai/ng-yunzai/issues"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://ng.yunzainfo.com",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"yelon",
|
|
16
|
+
"ng-yunzai",
|
|
17
|
+
"angular",
|
|
18
|
+
"testing"
|
|
19
|
+
],
|
|
6
20
|
"module": "fesm2015/testing.mjs",
|
|
7
21
|
"es2020": "fesm2020/testing.mjs",
|
|
8
22
|
"esm2020": "esm2020/testing.mjs",
|
package/src/g2.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { DebugElement, Type } from '@angular/core';
|
|
|
2
2
|
import { ComponentFixture } from '@angular/core/testing';
|
|
3
3
|
import { Chart } from '@antv/g2';
|
|
4
4
|
import type { NzSafeAny } from 'ng-zorro-antd/core/types';
|
|
5
|
-
export
|
|
5
|
+
export type PageG2Type = 'geometries' | 'views';
|
|
6
6
|
export declare const PageG2DataCount = 2;
|
|
7
7
|
export declare const PageG2Height = 100;
|
|
8
8
|
export declare class PageG2<T> {
|