bonree-icons 3.0.18 → 3.0.21
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/BigScreenPricePoints.js +1 -0
- package/BigScreenTradingPoints.js +1 -0
- package/Cancellation.js +1 -0
- package/Entrust.js +1 -0
- package/Login.js +1 -0
- package/StartUp.js +1 -0
- package/index.js +1 -1
- package/index.min.js +1 -1
- package/package.json +1 -1
- package/types/BigScreenPricePoints.d.ts +27 -0
- package/types/BigScreenPricePoints.d.ts.map +1 -0
- package/types/BigScreenTradingPoints.d.ts +27 -0
- package/types/BigScreenTradingPoints.d.ts.map +1 -0
- package/types/Cancellation.d.ts +27 -0
- package/types/Cancellation.d.ts.map +1 -0
- package/types/Entrust.d.ts +27 -0
- package/types/Entrust.d.ts.map +1 -0
- package/types/Login.d.ts +27 -0
- package/types/Login.d.ts.map +1 -0
- package/types/StartUp.d.ts +27 -0
- package/types/StartUp.d.ts.map +1 -0
- package/types/index.d.ts +12 -0
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './BigScreenPricePoints.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface BigScreenPricePointsProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const BigScreenPricePoints: React.FC<BigScreenPricePointsProps>;
|
|
26
|
+
export default BigScreenPricePoints;
|
|
27
|
+
//# sourceMappingURL=BigScreenPricePoints.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BigScreenPricePoints.d.ts","sourceRoot":"","sources":["../../components/BigScreenPricePoints.tsx"],"names":[],"mappings":"AACA,OAAO,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,yBAAyB;IACxC,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAkD7D,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './BigScreenTradingPoints.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface BigScreenTradingPointsProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const BigScreenTradingPoints: React.FC<BigScreenTradingPointsProps>;
|
|
26
|
+
export default BigScreenTradingPoints;
|
|
27
|
+
//# sourceMappingURL=BigScreenTradingPoints.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BigScreenTradingPoints.d.ts","sourceRoot":"","sources":["../../components/BigScreenTradingPoints.tsx"],"names":[],"mappings":"AACA,OAAO,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,2BAA2B;IAC1C,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAkDjE,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './Cancellation.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface CancellationProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const Cancellation: React.FC<CancellationProps>;
|
|
26
|
+
export default Cancellation;
|
|
27
|
+
//# sourceMappingURL=Cancellation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Cancellation.d.ts","sourceRoot":"","sources":["../../components/Cancellation.tsx"],"names":[],"mappings":"AACA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,iBAAiB;IAChC,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAkD7C,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './Entrust.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface EntrustProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const Entrust: React.FC<EntrustProps>;
|
|
26
|
+
export default Entrust;
|
|
27
|
+
//# sourceMappingURL=Entrust.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Entrust.d.ts","sourceRoot":"","sources":["../../components/Entrust.tsx"],"names":[],"mappings":"AACA,OAAO,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,YAAY;IAC3B,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAkDnC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/types/Login.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './Login.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface LoginProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const Login: React.FC<LoginProps>;
|
|
26
|
+
export default Login;
|
|
27
|
+
//# sourceMappingURL=Login.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Login.d.ts","sourceRoot":"","sources":["../../components/Login.tsx"],"names":[],"mappings":"AACA,OAAO,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,UAAU;IACzB,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAkD/B,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import './StartUp.css';
|
|
2
|
+
import React, { CSSProperties, MouseEventHandler } from 'react';
|
|
3
|
+
export interface StartUpProps {
|
|
4
|
+
/** id标志 */
|
|
5
|
+
id?: string;
|
|
6
|
+
/** 样式,默认undefined */
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
/** 样式类,默认undefined */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** 鼠标hover */
|
|
11
|
+
onMouseEnter?: MouseEventHandler;
|
|
12
|
+
/** 鼠标hover离开 */
|
|
13
|
+
onMouseLeave?: MouseEventHandler;
|
|
14
|
+
/** 是否是蓝色系图标,默认false */
|
|
15
|
+
blue?: boolean;
|
|
16
|
+
/** 是否是图标按钮,默认false */
|
|
17
|
+
button?: boolean;
|
|
18
|
+
/** 是否有图标外框,默认false */
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/** 是否禁用,默认false */
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
/** 点击事件,默认undefined */
|
|
23
|
+
onClick?: (e: React.MouseEvent<HTMLSpanElement>) => void;
|
|
24
|
+
}
|
|
25
|
+
declare const StartUp: React.FC<StartUpProps>;
|
|
26
|
+
export default StartUp;
|
|
27
|
+
//# sourceMappingURL=StartUp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StartUp.d.ts","sourceRoot":"","sources":["../../components/StartUp.tsx"],"names":[],"mappings":"AACA,OAAO,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEhE,MAAM,WAAW,YAAY;IAC3B,WAAW;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc;IACd,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,gBAAgB;IAChB,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,IAAI,CAAC;CAC1D;AAED,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAkDnC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/types/index.d.ts
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
export type { CancellationProps } from './Cancellation';
|
|
2
|
+
export { default as Cancellation } from './Cancellation';
|
|
3
|
+
export type { LoginProps } from './Login';
|
|
4
|
+
export { default as Login } from './Login';
|
|
5
|
+
export type { StartUpProps } from './StartUp';
|
|
6
|
+
export { default as StartUp } from './StartUp';
|
|
7
|
+
export type { EntrustProps } from './Entrust';
|
|
8
|
+
export { default as Entrust } from './Entrust';
|
|
9
|
+
export type { BigScreenPricePointsProps } from './BigScreenPricePoints';
|
|
10
|
+
export { default as BigScreenPricePoints } from './BigScreenPricePoints';
|
|
11
|
+
export type { BigScreenTradingPointsProps } from './BigScreenTradingPoints';
|
|
12
|
+
export { default as BigScreenTradingPoints } from './BigScreenTradingPoints';
|
|
1
13
|
export type { PidProps } from './Pid';
|
|
2
14
|
export { default as Pid } from './Pid';
|
|
3
15
|
export type { EnlargeMProps } from './EnlargeM';
|