qlqz-frame 0.0.2 → 0.0.3
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/dist/index.d.ts +12 -0
- package/dist/index.mjs +69983 -31899
- package/dist/index.umd.js +490 -233
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,15 @@ import React from 'react';
|
|
|
3
3
|
declare module 'qlqz-frame' {
|
|
4
4
|
export const Charts: {
|
|
5
5
|
RankMark: React.FC;
|
|
6
|
+
BarWithLabelLine: React.FC;
|
|
7
|
+
BaseGradientBar: React.FC;
|
|
8
|
+
CircleCountAutoChange: React.FC;
|
|
9
|
+
CircleCountAutoChange1: React.FC;
|
|
10
|
+
CircleCountFlower: React.FC;
|
|
11
|
+
CircleProgress: React.FC;
|
|
12
|
+
CircleWithLegend: React.FC;
|
|
13
|
+
CountAndRateSingle: React.FC;
|
|
14
|
+
DisplayBar: React.FC;
|
|
6
15
|
};
|
|
7
16
|
|
|
8
17
|
export const Display: {
|
|
@@ -11,6 +20,7 @@ declare module 'qlqz-frame' {
|
|
|
11
20
|
|
|
12
21
|
export const Comps: {
|
|
13
22
|
HefengWeather: React.FC;
|
|
23
|
+
SortableTable: React.FC;
|
|
14
24
|
};
|
|
15
25
|
|
|
16
26
|
export const RankMark: React.FC;
|
|
@@ -18,4 +28,6 @@ declare module 'qlqz-frame' {
|
|
|
18
28
|
export const CountWithImgIcon: React.FC;
|
|
19
29
|
|
|
20
30
|
export const HefengWeather: React.FC;
|
|
31
|
+
|
|
32
|
+
export const SortableTable: React.FC;
|
|
21
33
|
}
|