@zgfe/business-lib 1.0.28 → 1.0.30-alpha.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/es/assets/iconfont/demo_index.html +3 -3
- package/es/assets/iconfont/iconfont.css +3 -3
- package/es/assets/iconfont/iconfont.ttf +0 -0
- package/es/assets/iconfont/iconfont.woff +0 -0
- package/es/assets/iconfont/iconfont.woff2 +0 -0
- package/es/attributeSelector/option.js +24 -4
- package/es/attributeSelector/util.d.ts +1 -0
- package/es/attributeSelector/util.js +62 -0
- package/es/icon/iconFont.d.ts +0 -1
- package/es/icon/iconFont.js +0 -1
- package/es/select/index.js +2 -1
- package/es/select/overlay.js +2 -1
- package/es/select/types.d.ts +2 -0
- package/package.json +2 -2
|
@@ -474,9 +474,9 @@
|
|
|
474
474
|
<pre><code class="language-css"
|
|
475
475
|
>@font-face {
|
|
476
476
|
font-family: 'bsicon';
|
|
477
|
-
src: url('iconfont.woff2?t=
|
|
478
|
-
url('iconfont.woff?t=
|
|
479
|
-
url('iconfont.ttf?t=
|
|
477
|
+
src: url('iconfont.woff2?t=1665732247069') format('woff2'),
|
|
478
|
+
url('iconfont.woff?t=1665732247069') format('woff'),
|
|
479
|
+
url('iconfont.ttf?t=1665732247069') format('truetype');
|
|
480
480
|
}
|
|
481
481
|
</code></pre>
|
|
482
482
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "bsicon"; /* Project id 2545884 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1665732247069') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1665732247069') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1665732247069') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.bsicon {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconFont } from '..';
|
|
3
3
|
import { util } from '../utils';
|
|
4
|
+
import { getIcon } from './util';
|
|
4
5
|
|
|
5
6
|
var Option = function Option(props) {
|
|
6
7
|
var option = props.option,
|
|
@@ -28,6 +29,28 @@ var Option = function Option(props) {
|
|
|
28
29
|
});
|
|
29
30
|
}
|
|
30
31
|
|
|
32
|
+
function renderIcon(option) {
|
|
33
|
+
var icon = '';
|
|
34
|
+
|
|
35
|
+
if (option && option.name) {
|
|
36
|
+
icon = getIcon(option.name);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (icon) {
|
|
40
|
+
return /*#__PURE__*/React.createElement(IconFont, {
|
|
41
|
+
className: "".concat(classPrefix, "-option-icon"),
|
|
42
|
+
family: "zhuge",
|
|
43
|
+
type: icon
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
icon = (option === null || option === void 0 ? void 0 : option.propCategory) === 'userProp' ? 'yonghushuxing' : (option === null || option === void 0 ? void 0 : option.propCategory) === 'eventProp' ? 'shijianshuxing1' : 'chufahuanjing';
|
|
48
|
+
return /*#__PURE__*/React.createElement(IconFont, {
|
|
49
|
+
className: "".concat(classPrefix, "-option-icon"),
|
|
50
|
+
type: icon
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
31
54
|
if (group) {
|
|
32
55
|
return /*#__PURE__*/React.createElement("div", {
|
|
33
56
|
id: group.anchor,
|
|
@@ -42,10 +65,7 @@ var Option = function Option(props) {
|
|
|
42
65
|
return /*#__PURE__*/React.createElement("div", {
|
|
43
66
|
className: "".concat(classPrefix, "-option ").concat(checked ? 'active' : '', " ").concat(disabled ? 'disabled' : ''),
|
|
44
67
|
onClick: onClick
|
|
45
|
-
}, /*#__PURE__*/React.createElement(
|
|
46
|
-
className: "".concat(classPrefix, "-option-icon"),
|
|
47
|
-
type: "".concat((option === null || option === void 0 ? void 0 : option.propCategory) === 'userProp' ? 'yonghushuxing' : (option === null || option === void 0 ? void 0 : option.propCategory) === 'eventProp' ? 'shijianshuxing1' : 'chufahuanjing')
|
|
48
|
-
}), /*#__PURE__*/React.createElement("span", {
|
|
68
|
+
}, renderIcon(option), /*#__PURE__*/React.createElement("span", {
|
|
49
69
|
title: (option === null || option === void 0 ? void 0 : option.alias) || (option === null || option === void 0 ? void 0 : option.label)
|
|
50
70
|
}, getLabel((option === null || option === void 0 ? void 0 : option.alias) || (option === null || option === void 0 ? void 0 : option.label))));
|
|
51
71
|
};
|
|
@@ -81,4 +81,66 @@ export default function convertAttributeData(store) {
|
|
|
81
81
|
};
|
|
82
82
|
});
|
|
83
83
|
return res;
|
|
84
|
+
}
|
|
85
|
+
export function getIcon(name) {
|
|
86
|
+
var hash = {
|
|
87
|
+
browser_brand: 'internet',
|
|
88
|
+
browser_version: 'internet',
|
|
89
|
+
website: 'web',
|
|
90
|
+
referer_url: 'web',
|
|
91
|
+
current_url: 'web',
|
|
92
|
+
country: 'region',
|
|
93
|
+
area: 'region',
|
|
94
|
+
city: 'region',
|
|
95
|
+
os: 'platform',
|
|
96
|
+
ov: 'platform',
|
|
97
|
+
resolution_h: 'platform',
|
|
98
|
+
resolution_l: 'platform',
|
|
99
|
+
first_referer_url: 'web',
|
|
100
|
+
ip: 'web',
|
|
101
|
+
utm_source: 'utm',
|
|
102
|
+
utm_medium: 'utm',
|
|
103
|
+
utm_campaign: 'utm',
|
|
104
|
+
utm_content: 'utm',
|
|
105
|
+
utm_term: 'utm',
|
|
106
|
+
version: 'overall',
|
|
107
|
+
channel: 'overall',
|
|
108
|
+
network: 'platform',
|
|
109
|
+
mccmnc: 'platform',
|
|
110
|
+
device_brand: 'overall',
|
|
111
|
+
device_model: 'overall',
|
|
112
|
+
event_duration: 'time',
|
|
113
|
+
first_visit_time: 'time',
|
|
114
|
+
last_visit_time: 'time',
|
|
115
|
+
visit_times: 'time',
|
|
116
|
+
duration: 'time',
|
|
117
|
+
name: 'personal',
|
|
118
|
+
app_user_id: 'personal',
|
|
119
|
+
zg_id: 'personal',
|
|
120
|
+
is_anonymous: 'type',
|
|
121
|
+
current_country: 'region',
|
|
122
|
+
current_area: 'region',
|
|
123
|
+
current_city: 'region',
|
|
124
|
+
current_app_version: 'overall',
|
|
125
|
+
current_app_channel: 'overall',
|
|
126
|
+
first_version: 'overall',
|
|
127
|
+
first_channel: 'overall',
|
|
128
|
+
current_device_brand: 'overall',
|
|
129
|
+
current_device_model: 'overall',
|
|
130
|
+
current_mccmnc: 'platform',
|
|
131
|
+
user_referer_url: 'web',
|
|
132
|
+
first_website: 'web',
|
|
133
|
+
first_utm_source: 'utm',
|
|
134
|
+
first_utm_medium: 'utm',
|
|
135
|
+
first_utm_campaign: 'utm',
|
|
136
|
+
first_utm_content: 'utm',
|
|
137
|
+
first_utm_term: 'utm',
|
|
138
|
+
current_browser_brand: 'internet',
|
|
139
|
+
current_browser_version: 'internet',
|
|
140
|
+
current_os: 'platform',
|
|
141
|
+
current_ov: 'platform',
|
|
142
|
+
current_resolution_h: 'platform',
|
|
143
|
+
current_resolution_l: 'platform'
|
|
144
|
+
};
|
|
145
|
+
return hash[name] ? 'icon-' + hash[name] : '';
|
|
84
146
|
}
|
package/es/icon/iconFont.d.ts
CHANGED
package/es/icon/iconFont.js
CHANGED
|
@@ -11,7 +11,6 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
|
|
|
11
11
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
12
|
|
|
13
13
|
import React, { useMemo } from 'react';
|
|
14
|
-
import '../assets/iconfont/iconfont.css';
|
|
15
14
|
|
|
16
15
|
var IconFont = function IconFont(props) {
|
|
17
16
|
var className = props.className,
|
package/es/select/index.js
CHANGED
|
@@ -186,7 +186,8 @@ var BizSelect = function BizSelect(props) {
|
|
|
186
186
|
keyField: keyField,
|
|
187
187
|
searchValue: searchValue,
|
|
188
188
|
onChange: onChange,
|
|
189
|
-
ref: overlayRef
|
|
189
|
+
ref: overlayRef,
|
|
190
|
+
searchPlaceholder: props.searchPlaceholder
|
|
190
191
|
})),
|
|
191
192
|
disabled: props.disable,
|
|
192
193
|
destroyPopupOnHide: props.destroyPopupOnHide,
|
package/es/select/overlay.js
CHANGED
|
@@ -202,7 +202,8 @@ var SelectOverlay = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
202
202
|
ref: ref
|
|
203
203
|
}, props.enableSearch && !props.multiple && /*#__PURE__*/React.createElement(BizSearchInput, {
|
|
204
204
|
className: "".concat(classPrefix, "-search"),
|
|
205
|
-
onChange: onSearch
|
|
205
|
+
onChange: onSearch,
|
|
206
|
+
placeholder: props.searchPlaceholder || '请输入'
|
|
206
207
|
}), dropdownExtra, /*#__PURE__*/React.createElement("div", {
|
|
207
208
|
className: "".concat(classPrefix, "-list-panel")
|
|
208
209
|
}, render()));
|
package/es/select/types.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export declare namespace BizSelectTypes {
|
|
|
42
42
|
destroyPopupOnHide?: boolean;
|
|
43
43
|
customLabel?: (node: ReactNode, option: Option) => ReactNode;
|
|
44
44
|
onSearch?: (val: string) => void;
|
|
45
|
+
searchPlaceholder?: string;
|
|
45
46
|
}
|
|
46
47
|
interface OverlayProps {
|
|
47
48
|
option?: Option;
|
|
@@ -58,6 +59,7 @@ export declare namespace BizSelectTypes {
|
|
|
58
59
|
extra?: (option: Option) => ReactNode;
|
|
59
60
|
onClick?: (option: Option) => void;
|
|
60
61
|
customLabel?: (node: ReactNode, option: Option) => ReactNode;
|
|
62
|
+
searchPlaceholder?: string;
|
|
61
63
|
}
|
|
62
64
|
}
|
|
63
65
|
export interface HandlerTypes {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/business-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30-alpha.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"react": "^16.12.0 || ^17.0.0",
|
|
59
59
|
"yorkie": "^2.0.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "2413963520046325cf1efe05bd0dd749680c37a6"
|
|
62
62
|
}
|