@titaui/pc 1.12.9-beta.2 → 1.12.9-beta.5

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.
Files changed (33) hide show
  1. package/lib/components/drawer/index.css +9 -0
  2. package/lib/components/drawer/index.js +11 -8
  3. package/lib/components/menus/export-modules/appraisal-menus/index.js +30 -12
  4. package/lib/components/menus/export-modules/appraisal-menus/menu-highlight.js +22 -6
  5. package/lib/components/menus/export-modules/appraisal-menus/menus.js +104 -9
  6. package/lib/components/menus/export-modules/demo-menus/menu-highlight.js +19 -1
  7. package/lib/components/menus/export-modules/demo-menus/menus.js +34 -1
  8. package/lib/components/menus/export-modules/okr-menus/menus.js +6 -3
  9. package/lib/components/nav-top/components/app-center/images/chart.svg +1 -0
  10. package/lib/components/nav-top/components/app-center/images/file.svg +1 -0
  11. package/lib/components/nav-top/components/app-center/images/interview.svg +1 -0
  12. package/lib/components/nav-top/components/app-center/images/learning.svg +1 -0
  13. package/lib/components/nav-top/components/app-center/images/okr.svg +1 -0
  14. package/lib/components/nav-top/components/app-center/images/performance.svg +1 -0
  15. package/lib/components/nav-top/components/app-center/images/plan.svg +1 -0
  16. package/lib/components/nav-top/components/app-center/images/project.svg +1 -0
  17. package/lib/components/nav-top/components/app-center/images/summary.svg +1 -0
  18. package/lib/components/nav-top/components/app-center/index.css +104 -0
  19. package/lib/components/nav-top/components/app-center/index.js +133 -0
  20. package/lib/components/nav-top/components/menu/index.js +2 -6
  21. package/lib/components/nav-top/index.css +46 -7
  22. package/lib/components/nav-top/index.js +69 -35
  23. package/lib/components/nav-top/utils.js +457 -1
  24. package/lib/components/okr-flow/export-modal/index.js +31 -26
  25. package/lib/components/user-selector/category-selector-panel/index.js +1 -0
  26. package/lib/components/user-selector/request-apis.js +23 -11
  27. package/lib/components/user-selector/searched-panel/index.js +3 -1
  28. package/lib/pages/aha2021/index.js +5 -5
  29. package/lib/pages/aha2021/new-menu-switcher/index.css +40 -0
  30. package/lib/pages/aha2021/new-menu-switcher/index.js +81 -0
  31. package/lib/pages/aha2021/new-menu-switcher/new-menu-bg.png +0 -0
  32. package/lib/pages/aha2021/request-api.js +15 -0
  33. package/package.json +1 -1
@@ -10,6 +10,10 @@
10
10
  box-shadow: 0px 0px 24px 0px rgba(127, 145, 180, 0.2);
11
11
  }
12
12
 
13
+ .titaui-drawer.drawer-open.drawer-top .drawer-content-wrapper {
14
+ box-shadow: 0px 0px 24px 0px rgba(127, 145, 180, 0.2);
15
+ }
16
+
13
17
  .titaui-drawer-content {
14
18
  height: 100%;
15
19
  display: flex;
@@ -203,3 +207,8 @@
203
207
  .drawer-right .drawer-content {
204
208
  border-radius: 24px 0 0 24px;
205
209
  }
210
+
211
+ .drawer-top .drawer-content-wrapper,
212
+ .drawer-top .drawer-content {
213
+ border-radius: 0 0 24px 24px;
214
+ }
@@ -56,7 +56,7 @@ var Drawer = function Drawer(props) {
56
56
 
57
57
  var visible = props.visible,
58
58
  _props$placement = props.placement,
59
- placement = _props$placement === void 0 ? 'right' : _props$placement,
59
+ placement = _props$placement === void 0 ? "right" : _props$placement,
60
60
  children = props.children,
61
61
  _props$mask = props.mask,
62
62
  mask = _props$mask === void 0 ? false : _props$mask,
@@ -94,27 +94,30 @@ var Drawer = function Drawer(props) {
94
94
  }
95
95
 
96
96
  var autoClose = function autoClose(e) {
97
- if ((0, _dom.hasAncestorElement)(e.target, 'document-mouse-event-ignore,rc-tooltip,titaui-popup,rc-dialog-root,common-modal,in-modal,task-hot-add')) return;
97
+ if ((0, _dom.hasAncestorElement)(e.target, "document-mouse-event-ignore,rc-tooltip,titaui-popup,rc-dialog-root,common-modal,in-modal,task-hot-add")) {
98
+ return;
99
+ }
100
+
98
101
  onClose();
99
102
  };
100
103
 
101
104
  (0, _react.useEffect)(function () {
102
105
  if (autoClosable) {
103
- document.addEventListener('mousedown', autoClose);
106
+ document.addEventListener("mousedown", autoClose);
104
107
  }
105
108
 
106
109
  return function () {
107
- document.removeEventListener('mousedown', autoClose);
110
+ document.removeEventListener("mousedown", autoClose);
108
111
  };
109
112
  }, []);
110
113
  return /*#__PURE__*/_react["default"].createElement(DrawerContext.Provider, {
111
114
  value: {
112
115
  close: function close() {
113
- props.onClose();
116
+ onClose();
114
117
  }
115
118
  }
116
119
  }, /*#__PURE__*/_react["default"].createElement(_rcDrawer["default"], _extends({
117
- className: (0, _classnames["default"])('titaui-drawer', 'document-mouse-event-ignore', className),
120
+ className: (0, _classnames["default"])("titaui-drawer", "document-mouse-event-ignore", className),
118
121
  style: _objectSpread(_objectSpread({}, style), {}, {
119
122
  zIndex: zIndex
120
123
  })
@@ -167,7 +170,7 @@ function DrawerHeader(_ref) {
167
170
  onClick: manager && manager.goBack
168
171
  }, /*#__PURE__*/_react["default"].createElement("i", {
169
172
  className: "tu-icon-fanhui"
170
- }), (0, _getLocale.getLocale)('Mod_Back')), showBackBtn && hasContent && /*#__PURE__*/_react["default"].createElement("div", {
173
+ }), (0, _getLocale.getLocale)("Mod_Back")), showBackBtn && hasContent && /*#__PURE__*/_react["default"].createElement("div", {
171
174
  className: "titaui-drawer-header-divider"
172
175
  }), hasContent && content, /*#__PURE__*/_react["default"].createElement("div", {
173
176
  style: {
@@ -178,7 +181,7 @@ function DrawerHeader(_ref) {
178
181
  }), !!collapsedActions.length && /*#__PURE__*/_react["default"].createElement(_headerAction["default"], {
179
182
  approvalSetting: approvalSetting,
180
183
  detailInfo: detailInfo,
181
- title: (0, _getLocale.getLocale)('Mod_MoreOperate'),
184
+ title: (0, _getLocale.getLocale)("Mod_MoreOperate"),
182
185
  icon: "tu-icon-10",
183
186
  children: collapsedActions
184
187
  }), showClose && /*#__PURE__*/_react["default"].createElement("div", {
@@ -29,6 +29,8 @@ var _precls = _interopRequireDefault(require("../../precls"));
29
29
 
30
30
  var _getLocale = require("../../../../utils/getLocale");
31
31
 
32
+ var _tools = require("../../../../utils/tools");
33
+
32
34
  require("../../index.css");
33
35
 
34
36
  require("./index.css");
@@ -81,30 +83,45 @@ function AppraisalMenus(props) {
81
83
  okrMenusData.current = new _menus["default"]();
82
84
  return okrMenusData.current.getMenus();
83
85
  }),
84
- _useState6 = _slicedToArray(_useState5, 1),
85
- menus = _useState6[0]; // 判断路由高亮菜单
86
+ _useState6 = _slicedToArray(_useState5, 2),
87
+ menus = _useState6[0],
88
+ setMenus = _useState6[1];
86
89
 
90
+ (0, _react.useEffect)(function () {
91
+ okrMenusData.current = new _menus["default"]();
92
+ var newMenus = okrMenusData.current.getMenus();
93
+ setMenus(newMenus);
94
+
95
+ var _getQueryString = (0, _tools.getQueryString)(),
96
+ _getQueryString$react = _getQueryString.reactRouterName,
97
+ reactRouterName = _getQueryString$react === void 0 ? "" : _getQueryString$react;
98
+
99
+ if (!reactRouterName) {
100
+ window.location.href = newMenus[0].data.href;
101
+ }
102
+ }, [history.location.pathname]); // 判断路由高亮菜单
87
103
 
88
104
  (0, _react.useEffect)(function () {
89
105
  var menuHighlight = new _menuHighlight["default"](history);
90
106
  menuHighlight.highlight(function (menu) {
91
- return setSelectedMenuKeys([menu]);
107
+ setSelectedMenuKeys([menu]);
92
108
  });
93
- }, [history.location.pathname, history.location.search]);
109
+ }, [history.location.pathname, history.location.search, menus]);
94
110
 
95
111
  var onSelectHandler = function onSelectHandler(selectedKyes, _ref) {
96
112
  var node = _ref.node;
97
113
  onSelect(node); // 处理菜单选中
98
114
 
99
115
  if (!selectedKyes.length) return;
100
- setSelectedMenuKeys(selectedKyes); // @ts-ignore
101
-
102
- window.titaTracker // @ts-ignore
103
- && window.titaTracker("action").record({
104
- actionName: "\u7EE9\u6548\u8003\u6838__".concat(node.title),
105
- actionGroup: (0, _getLocale.getLocale)("Menu_Title_Performance"),
106
- productName: (0, _getLocale.getLocale)("Menu_Title_Performance")
107
- });
116
+ setSelectedMenuKeys(selectedKyes);
117
+
118
+ if (window.titaTracker) {
119
+ window.titaTracker("action").record({
120
+ actionName: "\u7EE9\u6548\u8003\u6838__".concat(node.title),
121
+ actionGroup: (0, _getLocale.getLocale)("Menu_Title_Performance"),
122
+ productName: (0, _getLocale.getLocale)("Menu_Title_Performance")
123
+ });
124
+ }
108
125
  };
109
126
 
110
127
  var collapseMenu = function collapseMenu(isHide) {
@@ -117,6 +134,7 @@ function AppraisalMenus(props) {
117
134
 
118
135
  (0, _react.useEffect)(function () {
119
136
  var obs = new _resizeObserverPolyfill["default"](function (entries) {
137
+ // eslint-disable-next-line no-restricted-syntax
120
138
  var _iterator = _createForOfIteratorHelper(entries),
121
139
  _step;
122
140
 
@@ -25,7 +25,7 @@ var _default = /*#__PURE__*/function () {
25
25
  key: "highlight",
26
26
  value: function highlight(cb) {
27
27
  if (this.isMy()) cb(_menus.PAGE_MY_APPRAISAL);else if (this.isEvaluate()) cb(_menus.PAGE_EVALUATE_APPRAISAL);else if (this.isSubordinate()) cb(_menus.PAGE_SUBORDINATE_APPRAISAL);else if (this.isDepart()) cb(_menus.PAGE_DEPART_APPRAISAL);else if (this.isManage()) cb(_menus.PAGE_MANAGE_APPRAISAL);else if (this.isLibrary()) cb(_menus.PAGE_LIBRARY_APPRAISAL); // template library 正则匹配优先级
28
- else if (this.isTemplate()) cb(_menus.PAGE_TEMPLATE_APPRAISAL);else if (this.isScore()) cb(_menus.PAGE_SCORE_APPRAISAL);else if (this.isHelp()) cb(_menus.PAGE_HELP_APPRAISAL);
28
+ else if (this.isTemplate()) cb(_menus.PAGE_TEMPLATE_APPRAISAL);else if (this.isDashboard()) cb(_menus.PAGE_DASHBOARD_APPRAISAL);else if (this.isReport()) cb(_menus.PAGE_STATISTICS_APPRAISAL);else if (this.isScore()) cb(_menus.PAGE_SCORE_APPRAISAL);else if (this.isHelp()) cb(_menus.PAGE_HELP_APPRAISAL);
29
29
  }
30
30
  }, {
31
31
  key: "isMy",
@@ -84,19 +84,35 @@ var _default = /*#__PURE__*/function () {
84
84
  return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?templateLibrary/);
85
85
  }
86
86
  }, {
87
- key: "isScore",
88
- value: function isScore() {
87
+ key: "isDashboard",
88
+ value: function isDashboard() {
89
89
  var _this$history$locatio8 = this.history.location,
90
90
  pathname = _this$history$locatio8.pathname,
91
91
  search = _this$history$locatio8.search;
92
- return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?setting/);
92
+ return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?dashboard/);
93
93
  }
94
94
  }, {
95
- key: "isHelp",
96
- value: function isHelp() {
95
+ key: "isReport",
96
+ value: function isReport() {
97
97
  var _this$history$locatio9 = this.history.location,
98
98
  pathname = _this$history$locatio9.pathname,
99
99
  search = _this$history$locatio9.search;
100
+ return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?report/);
101
+ }
102
+ }, {
103
+ key: "isScore",
104
+ value: function isScore() {
105
+ var _this$history$locatio10 = this.history.location,
106
+ pathname = _this$history$locatio10.pathname,
107
+ search = _this$history$locatio10.search;
108
+ return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?setting/);
109
+ }
110
+ }, {
111
+ key: "isHelp",
112
+ value: function isHelp() {
113
+ var _this$history$locatio11 = this.history.location,
114
+ pathname = _this$history$locatio11.pathname,
115
+ search = _this$history$locatio11.search;
100
116
  return pathname.match(/performance/) && search.match(/reactRouterName[\s]*?=[\s]*?help/);
101
117
  }
102
118
  }]);
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.defaultRefObject = exports["default"] = exports.PAGE_TEMPLATE_APPRAISAL = exports.PAGE_SUBORDINATE_APPRAISAL = exports.PAGE_SCORE_APPRAISAL = exports.PAGE_MY_APPRAISAL = exports.PAGE_MANAGE_APPRAISAL = exports.PAGE_LIBRARY_APPRAISAL = exports.PAGE_HELP_APPRAISAL = exports.PAGE_EVALUATE_APPRAISAL = exports.PAGE_DEPART_APPRAISAL = void 0;
6
+ exports.defaultRefObject = exports["default"] = exports.PAGE_TEMPLATE_APPRAISAL = exports.PAGE_SUBORDINATE_APPRAISAL = exports.PAGE_STATISTICS_APPRAISAL = exports.PAGE_SCORE_APPRAISAL = exports.PAGE_MY_APPRAISAL = exports.PAGE_MANAGE_APPRAISAL = exports.PAGE_LIBRARY_APPRAISAL = exports.PAGE_HELP_APPRAISAL = exports.PAGE_EVALUATE_APPRAISAL = exports.PAGE_DEPART_APPRAISAL = exports.PAGE_DASHBOARD_APPRAISAL = void 0;
7
7
 
8
8
  var _bsGlobal = require("../../../../utils/bs-global");
9
9
 
@@ -60,6 +60,10 @@ var PAGE_SCORE_APPRAISAL = "score-appraisal";
60
60
  exports.PAGE_SCORE_APPRAISAL = PAGE_SCORE_APPRAISAL;
61
61
  var PAGE_HELP_APPRAISAL = "help-appraisal";
62
62
  exports.PAGE_HELP_APPRAISAL = PAGE_HELP_APPRAISAL;
63
+ var PAGE_DASHBOARD_APPRAISAL = "dashboard-appraisal";
64
+ exports.PAGE_DASHBOARD_APPRAISAL = PAGE_DASHBOARD_APPRAISAL;
65
+ var PAGE_STATISTICS_APPRAISAL = "statistics-appraisal";
66
+ exports.PAGE_STATISTICS_APPRAISAL = PAGE_STATISTICS_APPRAISAL;
63
67
 
64
68
  var AppraisalMenus = /*#__PURE__*/function () {
65
69
  function AppraisalMenus() {
@@ -113,13 +117,13 @@ var AppraisalMenus = /*#__PURE__*/function () {
113
117
  }, {
114
118
  icon: "yibiao",
115
119
  label: _i18n.locale.menu_dashboard_ass,
116
- key: "dashboard-appraisal",
120
+ key: PAGE_DASHBOARD_APPRAISAL,
117
121
  href: "#/performance?reactRouterName=dashboard",
118
122
  isShow: performanceStatisticsAuthority
119
123
  }, {
120
124
  icon: "baobiao",
121
125
  label: _i18n.locale.menu_statistics_ass,
122
- key: "statistics-appraisal",
126
+ key: PAGE_STATISTICS_APPRAISAL,
123
127
  href: "#/performance?reactRouterName=report",
124
128
  isShow: performanceStatisticsAuthority
125
129
  }, {
@@ -148,21 +152,112 @@ var AppraisalMenus = /*#__PURE__*/function () {
148
152
  href: "#/performance?reactRouterName=help",
149
153
  isShow: IsAssessManager
150
154
  }];
155
+ this.newMenus = {
156
+ myPerformance: [{
157
+ icon: "kaohe",
158
+ label: _i18n.locale.menu_myass,
159
+ key: PAGE_MY_APPRAISAL,
160
+ href: "#/performance/my?reactRouterName=self",
161
+ isShow: true
162
+ }, {
163
+ icon: "mypingjia",
164
+ label: _i18n.locale.menu_evaluated_ass,
165
+ key: PAGE_EVALUATE_APPRAISAL,
166
+ href: "#/performance/my?reactRouterName=evaluated",
167
+ isShow: true
168
+ }, {
169
+ icon: "caidan-xiashu",
170
+ label: _i18n.locale.menu_subordinate_ass,
171
+ key: PAGE_SUBORDINATE_APPRAISAL,
172
+ href: "#/performance/my?reactRouterName=subordinate",
173
+ isShow: HasSub
174
+ }, {
175
+ icon: "bumen",
176
+ label: _i18n.locale.menu_department_ass,
177
+ key: PAGE_DEPART_APPRAISAL,
178
+ href: "#/performance/my?reactRouterName=department",
179
+ isShow: IsLeader || IsHrbp
180
+ }],
181
+ performanceManage: [{
182
+ icon: "uniEA10",
183
+ label: _i18n.locale.menu_template_ass,
184
+ key: PAGE_TEMPLATE_APPRAISAL,
185
+ type: _index.MENU_ASSESS_TEMPLATE,
186
+ href: "#/performance/manage?reactRouterName=template",
187
+ isShow: performanceManageAuthority
188
+ }, {
189
+ icon: "untitled",
190
+ label: _i18n.locale.menu_management_ass,
191
+ key: PAGE_MANAGE_APPRAISAL,
192
+ type: _index.MENU_ASSESS_MANAGE,
193
+ href: "#/performance/manage?reactRouterName=manage",
194
+ isShow: performanceManageAuthority
195
+ }, {
196
+ icon: "",
197
+ label: _i18n.locale.menu_basesetting,
198
+ key: "base-appraisal-group",
199
+ type: _index.GROUP_NAME_NODE,
200
+ href: "",
201
+ isShow: performanceManageAuthority || IsAssessManager
202
+ }, {
203
+ icon: "ZBmuban",
204
+ label: _i18n.locale.menu_library_ass,
205
+ key: PAGE_LIBRARY_APPRAISAL,
206
+ href: "#/performance/manage?reactRouterName=templateLibrary",
207
+ isShow: performanceManageAuthority
208
+ }, {
209
+ icon: "PF-shezhi",
210
+ label: _i18n.locale.menu_score_ass,
211
+ key: PAGE_SCORE_APPRAISAL,
212
+ href: "#/performance/manage?reactRouterName=setting",
213
+ isShow: IsAssessManager
214
+ }],
215
+ performanceDashboard: [{
216
+ icon: "yibiao",
217
+ label: _i18n.locale.menu_dashboard_ass,
218
+ key: "dashboard-appraisal",
219
+ href: "#/performance/dashboard?reactRouterName=dashboard",
220
+ isShow: performanceStatisticsAuthority
221
+ }, {
222
+ icon: "baobiao",
223
+ label: _i18n.locale.menu_statistics_ass,
224
+ key: "statistics-appraisal",
225
+ href: "#/performance/dashboard?reactRouterName=report",
226
+ isShow: performanceStatisticsAuthority
227
+ }]
228
+ };
151
229
  }
152
230
 
153
231
  _createClass(AppraisalMenus, [{
154
232
  key: "getMenus",
155
233
  value: function getMenus() {
156
- var menus = this.formateToTreeNodeData();
157
- return menus;
158
- }
234
+ var isUseNewMenu = window.BSGlobal.isUseNewMenu;
235
+ var menus = this.menus;
236
+
237
+ if (isUseNewMenu) {
238
+ var hash = window.location.hash.split("?")[0] || "";
239
+
240
+ if (hash) {
241
+ if (hash.includes("performance/my")) {
242
+ menus = this.newMenus.myPerformance;
243
+ } else if (hash.includes("performance/manage")) {
244
+ menus = this.newMenus.performanceManage;
245
+ } else {
246
+ menus = this.newMenus.performanceDashboard;
247
+ }
248
+ }
249
+ }
250
+
251
+ return this.formateToTreeNodeData(menus);
252
+ } // eslint-disable-next-line class-methods-use-this
253
+
159
254
  }, {
160
255
  key: "formateToTreeNodeData",
161
- value: function formateToTreeNodeData() {
256
+ value: function formateToTreeNodeData(menus) {
162
257
  var treeNodes = [];
163
258
 
164
- for (var i = 0; i < this.menus.length; i += 1) {
165
- var menu = this.menus[i];
259
+ for (var i = 0; i < menus.length; i += 1) {
260
+ var menu = menus[i];
166
261
 
167
262
  if (menu.isShow) {
168
263
  treeNodes.push({
@@ -25,7 +25,7 @@ var _default = /*#__PURE__*/function () {
25
25
  _createClass(_default, [{
26
26
  key: "highlight",
27
27
  value: function highlight(cb) {
28
- if (this.isUnAssigned()) cb(_menus.PAGE_UNASSIGNED_DEMOFREE);else if (this.isAssigned()) cb(_menus.PAGE_ASSIGNED_DEMOFREE);else if (this.isReserved()) cb(_menus.PAGE_RESERVED_DEMOFREE);else if (this.isDone()) cb(_menus.PAGE_DONE_DEMOFREE);else if (this.isIgnore()) cb(_menus.PAGE_IGNORED_DEMOFREE);else if (this.isChart()) cb(_menus.PAGE_CHARTS_DEMOFREE);else if (this.isRechargeList()) cb(_menus.PAGE_RECHARGE_LIST);else if (this.isRechargeStatistics()) cb(_menus.PAGE_RECHARGE_STATISTICS);else if (this.isRechargeStatus()) cb(_menus.PAGE_RECHARGE_STATUS);else if (this.isDueDateOrder()) cb(_menus.PAGE_DUEDATE_ORDER);
28
+ if (this.isUnAssigned()) cb(_menus.PAGE_UNASSIGNED_DEMOFREE);else if (this.isAssigned()) cb(_menus.PAGE_ASSIGNED_DEMOFREE);else if (this.isReserved()) cb(_menus.PAGE_RESERVED_DEMOFREE);else if (this.isDone()) cb(_menus.PAGE_DONE_DEMOFREE);else if (this.isIgnore()) cb(_menus.PAGE_IGNORED_DEMOFREE);else if (this.isChart()) cb(_menus.PAGE_CHARTS_DEMOFREE);else if (this.isRechargeList()) cb(_menus.PAGE_RECHARGE_LIST);else if (this.isRechargeStatistics()) cb(_menus.PAGE_RECHARGE_STATISTICS);else if (this.isRechargeStatus()) cb(_menus.PAGE_RECHARGE_STATUS);else if (this.isDueDateOrder()) cb(_menus.PAGE_DUEDATE_ORDER);else if (this.isAllCustomer()) cb(_menus.PAGE_ALL_CUSTOMER);else if (this.isPublicCustomer()) cb(_menus.PAGE_PUBLIC_CUSTOMER);else if (this.isMyCustomer()) cb(_menus.PAGE_MY_CUSTOMER);
29
29
  }
30
30
  }, {
31
31
  key: "isChart",
@@ -102,6 +102,24 @@ var _default = /*#__PURE__*/function () {
102
102
  search = _this$history$locatio5.search;
103
103
  return pathname.match(/demofree/) && search.match(/selected[\s]*?=[\s]*?ignore/);
104
104
  }
105
+ }, {
106
+ key: "isPublicCustomer",
107
+ value: function isPublicCustomer() {
108
+ var pathname = this.history.location.pathname;
109
+ return pathname.match(/demofree\/customer\/public/);
110
+ }
111
+ }, {
112
+ key: "isMyCustomer",
113
+ value: function isMyCustomer() {
114
+ var pathname = this.history.location.pathname;
115
+ return pathname.match(/demofree\/customer\/my/);
116
+ }
117
+ }, {
118
+ key: "isAllCustomer",
119
+ value: function isAllCustomer() {
120
+ var pathname = this.history.location.pathname;
121
+ return pathname.match(/demofree\/customer\/all/);
122
+ }
105
123
  }]);
106
124
 
107
125
  return _default;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.defaultRefObject = exports["default"] = exports.PAGE_UNASSIGNED_DEMOFREE = exports.PAGE_RESERVED_DEMOFREE = exports.PAGE_RECHARGE_STATUS = exports.PAGE_RECHARGE_STATISTICS = exports.PAGE_RECHARGE_LIST = exports.PAGE_IGNORED_DEMOFREE = exports.PAGE_DUEDATE_ORDER = exports.PAGE_DONE_DEMOFREE = exports.PAGE_CHARTS_DEMOFREE = exports.PAGE_ASSIGNED_DEMOFREE = void 0;
6
+ exports.defaultRefObject = exports["default"] = exports.PAGE_UNASSIGNED_DEMOFREE = exports.PAGE_RESERVED_DEMOFREE = exports.PAGE_RECHARGE_STATUS = exports.PAGE_RECHARGE_STATISTICS = exports.PAGE_RECHARGE_LIST = exports.PAGE_PUBLIC_CUSTOMER = exports.PAGE_MY_CUSTOMER = exports.PAGE_IGNORED_DEMOFREE = exports.PAGE_DUEDATE_ORDER = exports.PAGE_DONE_DEMOFREE = exports.PAGE_CHARTS_DEMOFREE = exports.PAGE_CHARTS = exports.PAGE_ASSIGNED_DEMOFREE = exports.PAGE_ALL_CUSTOMER = void 0;
7
7
 
8
8
  var _index = require("../../components/menu-tree/tree-node/index");
9
9
 
@@ -40,6 +40,14 @@ var PAGE_IGNORED_DEMOFREE = "ignore";
40
40
  exports.PAGE_IGNORED_DEMOFREE = PAGE_IGNORED_DEMOFREE;
41
41
  var PAGE_CHARTS_DEMOFREE = "charts";
42
42
  exports.PAGE_CHARTS_DEMOFREE = PAGE_CHARTS_DEMOFREE;
43
+ var PAGE_ALL_CUSTOMER = "allCustomer";
44
+ exports.PAGE_ALL_CUSTOMER = PAGE_ALL_CUSTOMER;
45
+ var PAGE_PUBLIC_CUSTOMER = "publicCustomer";
46
+ exports.PAGE_PUBLIC_CUSTOMER = PAGE_PUBLIC_CUSTOMER;
47
+ var PAGE_MY_CUSTOMER = "myCustomer";
48
+ exports.PAGE_MY_CUSTOMER = PAGE_MY_CUSTOMER;
49
+ var PAGE_CHARTS = "charts";
50
+ exports.PAGE_CHARTS = PAGE_CHARTS;
43
51
  var PAGE_RECHARGE_LIST = "rechargeList";
44
52
  exports.PAGE_RECHARGE_LIST = PAGE_RECHARGE_LIST;
45
53
  var PAGE_DUEDATE_ORDER = "dueDateOrder";
@@ -91,6 +99,31 @@ var DemoMenuData = /*#__PURE__*/function () {
91
99
  href: "#/demofree/list?selected=ignore",
92
100
  isShow: this.isManager === EManagerType.Manager
93
101
  }]
102
+ }, {
103
+ icon: "KH-help",
104
+ label: "公海资源",
105
+ key: "customer",
106
+ href: "#/demofree/customer/public",
107
+ isShow: true,
108
+ children: [{
109
+ icon: "",
110
+ label: "全部客户",
111
+ key: PAGE_ALL_CUSTOMER,
112
+ href: "#/demofree/customer/all",
113
+ isShow: this.isManager === EManagerType.ReCharge || this.isManager === EManagerType.Manager
114
+ }, {
115
+ icon: "",
116
+ label: "公海资源",
117
+ key: PAGE_PUBLIC_CUSTOMER,
118
+ href: "#/demofree/customer/public",
119
+ isShow: this.isManager !== EManagerType.ReCharge
120
+ }, {
121
+ icon: "",
122
+ label: "我的资源",
123
+ key: PAGE_MY_CUSTOMER,
124
+ href: "#/demofree/customer/my",
125
+ isShow: this.isManager !== EManagerType.ReCharge
126
+ }]
94
127
  }, {
95
128
  icon: "KH-help",
96
129
  label: "客户续费",
@@ -78,6 +78,7 @@ var okrMenus = /*#__PURE__*/function () {
78
78
  hasDashboardAuth = true;
79
79
  }
80
80
 
81
+ var isUseNewMenu = window.BSGlobal.isUseNewMenu;
81
82
  this.menus = [{
82
83
  icon: "okr",
83
84
  label: _i18n.locale.menu_myokr,
@@ -132,20 +133,22 @@ var okrMenus = /*#__PURE__*/function () {
132
133
  label: _i18n.locale.menu_okrmap,
133
134
  key: PAGE_OKR_MAP,
134
135
  type: _index.MENU_ITEM_NOE,
135
- href: "#/okr/map"
136
+ href: "#/okr/map",
137
+ isShow: !isUseNewMenu
136
138
  }, {
137
139
  icon: "panel",
138
140
  label: _i18n.locale.menu_okr_working_method,
139
141
  type: _index.MENU_ITEM_NOE,
140
142
  key: PAGE_OKR_FUNCTION,
141
- href: "#/okr/panel"
143
+ href: "#/okr/panel",
144
+ isShow: !isUseNewMenu
142
145
  }, {
143
146
  icon: "yibiao",
144
147
  label: _i18n.locale.menu_okrdashboard,
145
148
  key: PAGE_OKR_DASHBOARD,
146
149
  type: _index.MENU_ITEM_NOE,
147
150
  href: "#/okr/chart?iTalentFrameType=iframe&iTalentFrame=%2F%2Fwww.tita.gift%2Fmenuroute%3FmenuId%3D44269%26roleId%3D",
148
- isShow: hasDashboardAuth
151
+ isShow: hasDashboardAuth && !isUseNewMenu
149
152
  }, {
150
153
  icon: "cases",
151
154
  label: _i18n.locale.menu_okrcases,
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52" height="52" viewBox="0 0 52 52"><defs><filter id="d" width="130%" height="245.6%" x="-15%" y="-72.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="g" width="115.4%" height="115.4%" x="-7.7%" y="-7.7%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/></filter><filter id="i" width="180%" height="180%" x="-40%" y="-20%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0.839215686 0 0 0 0 0.521568627 0 0 0 0.8 0"/></filter><filter id="k" width="216.4%" height="222.6%" x="-58.2%" y="-30.6%" filterUnits="objectBoundingBox"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation=".5"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0.839215686 0 0 0 0 0.521568627 0 0 0 0.8 0"/></filter><filter id="m" width="274.5%" height="283.9%" x="-87.3%" y="-61.3%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" result="shadowMatrixInner1" values="0 0 0 0 1 0 0 0 0 0.650980392 0 0 0 0 0 0 0 0 0.8 0"/><feGaussianBlur in="SourceAlpha" result="shadowBlurInner2" stdDeviation="1"/><feOffset dy="1" in="shadowBlurInner2" result="shadowOffsetInner2"/><feComposite in="shadowOffsetInner2" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner2"/><feColorMatrix in="shadowInnerInner2" result="shadowMatrixInner2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/><feMerge><feMergeNode in="shadowMatrixInner1"/><feMergeNode in="shadowMatrixInner2"/></feMerge></filter><path id="e" d="M13.549913,3.49982102 L13.549913,17.0131558 C13.549913,18.0829702 14.4168508,18.9500677 15.4865054,18.9502274 L15.4865054,18.9502274 L29,18.9502274 C28.4758756,26.9042658 21.5497983,33.109093 13.3243527,32.4520606 C6.29923326,31.8907156 0.609265141,26.2007475 0.0477603845,19.1753086 C-0.609272066,10.9500227 5.59555518,4.02394537 13.549913,3.49982102 L13.549913,3.49982102 Z M15.5004019,0 C24.61508,0.60081322 31.8995887,7.88491998 32.5,17 L32.5,17 L16.7203139,17 C16.046667,16.9997782 15.5006237,16.4537349 15.5004019,15.7800879 L15.5004019,15.7800879 Z"/><path id="h" d="M19.2338693,14.3160985 L28.5160376,14.3160985 C28.1628545,8.9542867 23.8778494,4.66951802 18.516274,4.31609848 L18.516274,13.5985031 C18.5164045,13.994766 18.8376064,14.315968 19.2338693,14.3160985 Z"/><path id="j" d="M22.7587362,8.06750316 L22.9574566,8.04310336 C23.8451051,7.93411384 24.6530398,8.56534162 24.7620293,9.45299008 C24.8710189,10.3406385 24.2397911,11.1485733 23.3521426,11.2575628 L23.1534222,11.2819626 C22.2657738,11.3909521 21.457839,10.7597243 21.3488495,9.87207586 C21.23986,8.98442741 21.8710878,8.17649269 22.7587362,8.06750316 Z"/><radialGradient id="f" cx="67.721%" cy="77.736%" r="72.815%" fx="67.721%" fy="77.736%"><stop offset="0%" stop-color="#00D685"/><stop offset="100%" stop-color="#75EBBE"/></radialGradient><radialGradient id="l" cx="50%" cy="70.049%" r="64.997%" fx="50%" fy="70.049%" gradientTransform="scale(-.9493 -1) rotate(54.194 1.356 -1.003)"><stop offset="0%" stop-color="#F6BD16"/><stop offset="100%" stop-color="#FFE18B"/></radialGradient><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#00D685"/><stop offset="100%" stop-color="#00D685" stop-opacity="0"/></linearGradient><polygon id="a" points="0 0 52 0 52 52 0 52"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#00D685" fill-opacity=".16" d="M11.1333518,2.31108338 C20.3778302,-0.770361126 29.6221698,-0.770361126 38.8666482,2.31108338 C42.5641899,3.6827713 47.3171222,8.43583913 48.6888111,12.1333784 C51.7703963,21.3777119 51.7703963,30.6221841 48.6888111,39.8666563 C47.3171222,43.5640569 42.5641899,48.3171247 38.8666482,49.6888126 C29.6221698,52.7703958 20.3778302,52.7703958 11.1333518,49.6888126 C7.43594875,48.3171247 2.68287776,43.5640569 1.31118892,39.8666563 C-1.77039631,30.6221841 -1.77039631,21.3777119 1.31118892,12.1333784 C2.68287776,8.43583913 7.43594875,3.6827713 11.1333518,2.31108338" mask="url(#b)"/><path fill="url(#c)" fill-opacity=".5" d="M36,44.5 C36,43.6715729 31.5228475,41 26,41 C20.4771525,41 16,43.6715729 16,44.5 C16,45.3284271 36,45.3284271 36,44.5 Z" filter="url(#d)" mask="url(#b)"/><g fill-rule="nonzero" transform="translate(9.484 9.484)"><use xlink:href="#e" fill="url(#f)"/><use xlink:href="#e" fill="#000" filter="url(#g)"/><use xlink:href="#h" fill="#000" filter="url(#i)"/><use xlink:href="#h" fill="#FFF" fill-opacity=".4"/><g transform="rotate(7 23.055 9.663)"><use xlink:href="#j" fill="#000" filter="url(#k)"/><use xlink:href="#j" fill="url(#l)"/><use xlink:href="#j" fill="#000" filter="url(#m)"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52" height="52" viewBox="0 0 52 52"><defs><filter id="d" width="130%" height="245.6%" x="-15%" y="-72.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="f" width="112.3%" height="116.3%" x="-6.1%" y="-8.2%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="i" width="149.1%" height="175%" x="-24.6%" y="-37.5%" filterUnits="objectBoundingBox"><feOffset in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="2"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.908599411 0 0 0 0 0.38063485 0 0 0 0 0 0 0 0 1 0"/></filter><filter id="k" width="157.3%" height="187.5%" x="-28.7%" y="-43.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="2"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="n" width="118.5%" height="128.2%" x="-9.2%" y="-14.1%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="2"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="p" width="170.2%" height="225%" x="-35.1%" y="-37.5%" filterUnits="objectBoundingBox"><feOffset dy="3" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="2"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 1 0 0 0 0 0.521568627 0 0 0 0 0 0 0 0 1 0"/></filter><filter id="r" width="300%" height="176.8%" x="-50%" y="-38.4%" filterUnits="objectBoundingBox"><feOffset dx="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 1 0 0 0 0 0.521568627 0 0 0 0 0 0 0 0 0.6 0"/></filter><filter id="t" width="300%" height="176.8%" x="-50%" y="-38.4%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dx="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" result="shadowMatrixInner1" values="0 0 0 0 1 0 0 0 0 0.650980392 0 0 0 0 0 0 0 0 0.5 0"/><feGaussianBlur in="SourceAlpha" result="shadowBlurInner2" stdDeviation="1"/><feOffset in="shadowBlurInner2" result="shadowOffsetInner2"/><feComposite in="shadowOffsetInner2" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner2"/><feColorMatrix in="shadowInnerInner2" result="shadowMatrixInner2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0"/><feMerge><feMergeNode in="shadowMatrixInner1"/><feMergeNode in="shadowMatrixInner2"/></feMerge></filter><path id="e" d="M5.07018892,0 L10.3519294,0 C11.5344466,-2.17224891e-16 12.6497987,0.549600188 13.3702523,1.48730682 C14.0907078,2.42501607 15.2060546,2.9746285 16.3885751,2.97465383 L28.2675029,2.97490832 C30.6309074,2.97505063 32.5467985,4.89098273 32.5468902,7.25438723 L32.5468902,24.5340909 L32.5468902,24.5340909 L4.18016823,24.5340909 L0.851596575,4.99815956 C0.454629578,2.66829534 2.02155237,0.457761878 4.35141659,0.0607948817 C4.5888694,0.0203371906 4.82931414,-8.43930441e-16 5.07018892,0 Z"/><path id="h" d="M9.93098306,6.49090909 L23.7614371,6.49090909 C26.1248774,6.49090909 28.0408243,8.40685601 28.0408243,10.7702963 C28.0408243,11.0394099 28.0154392,11.3079236 27.9650063,11.5722693 L26.5453409,19.0134949 C26.160377,21.0312962 24.3959672,22.4909091 22.3417716,22.4909091 L9.22115032,22.4909091 C6.85771001,22.4909091 4.94176309,20.5749622 4.94176309,18.2115219 C4.94176309,18.0758338 4.94821655,17.9402225 4.9611016,17.8051477 L5.67093435,10.3639221 C5.88042009,8.16786865 7.7249606,6.49090909 9.93098306,6.49090909 Z"/><path id="l" d="M9.48442219,11.7068182 L30.8269894,11.7068182 C33.1904297,11.7068182 35.1063766,13.6227651 35.1063766,15.9862054 C35.1063766,16.255319 35.0809915,16.5238327 35.0305586,16.7881784 L32.6092781,29.479404 C32.2243142,31.4972053 30.4599044,32.9568182 28.4057088,32.9568182 L8.2737819,32.9568182 C5.91034159,32.9568182 3.99439467,31.0408713 3.99439467,28.6774309 C3.99439467,28.5417429 4.00084813,28.4061316 4.01373318,28.2710568 L5.22437347,15.5798312 C5.43385921,13.3837777 7.27839972,11.7068182 9.48442219,11.7068182 Z"/><path id="o" d="M12.2247335,16.3318182 L27.9731633,16.3318182 C29.0777328,16.3318182 29.9731633,17.2272487 29.9731633,18.3318182 C29.9731633,18.4779715 29.9571428,18.6236846 29.9253889,18.7663468 L28.1447398,26.7663468 C27.9411325,27.6811022 27.1296554,28.3318182 26.1925142,28.3318182 L11.334409,28.3318182 C10.2298395,28.3318182 9.33440902,27.4363877 9.33440902,26.3318182 C9.33440902,26.2579096 9.33850588,26.1840578 9.34668073,26.1106028 L10.2370053,18.1106028 C10.3497104,17.097892 11.2057705,16.3318182 12.2247335,16.3318182 Z"/><path id="q" d="M19.8947368,16.7894737 C20.9993063,16.7894737 21.8947368,17.6849042 21.8947368,18.7894737 L21.8947368,25.2105263 C21.8947368,26.3150958 20.9993063,27.2105263 19.8947368,27.2105263 C18.7901673,27.2105263 17.8947368,26.3150958 17.8947368,25.2105263 L17.8947368,18.7894737 C17.8947368,17.6849042 18.7901673,16.7894737 19.8947368,16.7894737 Z"/><radialGradient id="j" cx="26.486%" cy="8.756%" r="64.32%" fx="26.486%" fy="8.756%" gradientTransform="matrix(.41553 .77316 -.50657 .6342 .2 -.173)"><stop offset="0%" stop-color="#FFD48F"/><stop offset="100%" stop-color="#FFA81C"/></radialGradient><radialGradient id="m" cx="26.486%" cy="8.756%" r="64.32%" fx="26.486%" fy="8.756%" gradientTransform="matrix(.41553 .77316 -.50657 .6342 .2 -.173)"><stop offset="0%" stop-color="#FFD48F"/><stop offset="100%" stop-color="#FFA81C"/></radialGradient><radialGradient id="s" cx="50%" cy="70.049%" r="161.643%" fx="50%" fy="70.049%" gradientTransform="matrix(.22412 -.37407 .97456 .08602 -.295 .827)"><stop offset="0%" stop-color="#FFCC37"/><stop offset="100%" stop-color="#FFE18B"/></radialGradient><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FFA81C"/><stop offset="100%" stop-color="#FFA81C" stop-opacity="0"/></linearGradient><polygon id="a" points="0 0 52 0 52 52 0 52"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#F0A326" fill-opacity=".16" d="M12.1333518,2.31108338 C21.3778302,-0.770361126 30.6221698,-0.770361126 39.8666482,2.31108338 C43.5641899,3.6827713 48.3171222,8.43583913 49.6888111,12.1333784 C52.7703963,21.3777119 52.7703963,30.6221841 49.6888111,39.8666563 C48.3171222,43.5640569 43.5641899,48.3171247 39.8666482,49.6888126 C30.6221698,52.7703958 21.3778302,52.7703958 12.1333518,49.6888126 C8.43594875,48.3171247 3.68287776,43.5640569 2.31118892,39.8666563 C-0.770396306,30.6221841 -0.770396306,21.3777119 2.31118892,12.1333784 C3.68287776,8.43583913 8.43594875,3.6827713 12.1333518,2.31108338" mask="url(#b)"/><path fill="url(#c)" fill-opacity=".6" d="M36,44.5 C36,43.6715729 31.5228475,41 26,41 C20.4771525,41 16,43.6715729 16,44.5 C16,45.3284271 36,45.3284271 36,44.5 Z" filter="url(#d)" mask="url(#b)"/><g mask="url(#b)"><g transform="translate(8 9)"><rect width="32.433" height="34" x="3.567" fill="#000" fill-rule="nonzero" opacity="0"/><g transform="translate(0 5.216)"><mask id="g" fill="#fff"><use xlink:href="#e"/></mask><g fill-rule="nonzero"><use xlink:href="#e" fill="#FF9D00"/><use xlink:href="#e" fill="#000" filter="url(#f)"/></g><g fill-rule="nonzero" mask="url(#g)"><use xlink:href="#h" fill="#000" filter="url(#i)"/><use xlink:href="#h" fill="url(#j)"/><use xlink:href="#h" fill="#000" filter="url(#k)"/></g></g><g fill-rule="nonzero"><use xlink:href="#l" fill="url(#m)"/><use xlink:href="#l" fill="#000" filter="url(#n)"/></g><g fill-rule="nonzero"><use xlink:href="#o" fill="#000" filter="url(#p)"/><use xlink:href="#o" fill="#FFF" fill-opacity=".4"/></g><g fill-rule="nonzero" transform="rotate(90 19.895 22)"><use xlink:href="#q" fill="#000" filter="url(#r)"/><use xlink:href="#q" fill="url(#s)"/><use xlink:href="#q" fill="#000" filter="url(#t)"/></g></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52" height="52" viewBox="0 0 52 52"><defs><filter id="d" width="137.5%" height="245.6%" x="-18.8%" y="-72.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="f" width="150%" height="294.1%" x="-25%" y="-97.1%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="i" width="129.9%" height="129.9%" x="-14.9%" y="-14.9%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="l" width="135.7%" height="135.7%" x="-17.9%" y="-11.4%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1.5"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.941176471 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/></filter><filter id="m" width="135.7%" height="135.7%" x="-17.9%" y="-11.4%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="o" width="116.2%" height="116.2%" x="-8.1%" y="-8.1%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/></filter><filter id="q" width="148.3%" height="148.3%" x="-24.2%" y="-15.4%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1.5"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.94 0 0 0 0 0.1786 0 0 0 0 0.1786 0 0 0 1 0"/></filter><filter id="s" width="187.6%" height="275.3%" x="-43.8%" y="-43.8%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.941176471 0 0 0 0 0.367058824 0 0 0 0 0.367058824 0 0 0 0.6 0"/></filter><filter id="u" width="187.6%" height="275.3%" x="-43.8%" y="-43.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" result="shadowMatrixInner1" values="0 0 0 0 1 0 0 0 0 0.650980392 0 0 0 0 0 0 0 0 1 0"/><feGaussianBlur in="SourceAlpha" result="shadowBlurInner2" stdDeviation="1"/><feOffset dy="1" in="shadowBlurInner2" result="shadowOffsetInner2"/><feComposite in="shadowOffsetInner2" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner2"/><feColorMatrix in="shadowInnerInner2" result="shadowMatrixInner2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/><feMerge><feMergeNode in="shadowMatrixInner1"/><feMergeNode in="shadowMatrixInner2"/></feMerge></filter><path id="g" d="M8.37121212,0 C12.9921212,0 16.7424242,3.70168683 16.7424242,8.27229065 C16.7424242,11.5336592 14.7433788,14.3647549 11.6468674,15.8849411 C10.3702576,16.5119341 8.20127652,16.7881794 5.10476516,16.7362788 L4.72806062,16.7279077 L3.94953789,16.7036316 L3.54604545,16.6868895 L2.71394698,16.6433599 C2.45245136,16.6277491 2.22641188,16.4554362 2.14208585,16.2074228 C2.05775983,15.9594093 2.13192135,15.6850298 2.32970834,15.5132656 C2.61935229,15.2621335 2.83867803,15.0444857 2.98517425,14.8695303 L3.05214394,14.7858197 L3.10823107,14.7037832 L2.86714016,14.5045517 C1.19301872,13.0684315 0.166487342,11.0196269 0.0184166732,8.81892149 L0.00418561914,8.54100198 L0,8.27229065 C0,3.70168683 3.75030303,0 8.37121212,0 Z"/><path id="k" d="M21.430303,-15.4030303 C29.9327758,-15.4030303 36.8333333,-8.59192653 36.8333333,-0.182015503 C36.8333333,5.81890269 33.1550897,11.0281187 27.4575088,13.8252612 C25.1085467,14.9789285 21.1176215,15.4872198 15.4200406,15.3917227 L14.7269043,15.3763199 L13.2944224,15.3316519 L12.5519964,15.3008464 L11.0209352,15.220752 C10.5397832,15.192028 10.1238706,14.8749724 9.9687107,14.4186276 C9.81355081,13.9622828 9.95000801,13.4574246 10.3139361,13.1413784 C10.8468809,12.6792953 11.2504403,12.2788234 11.5199934,11.9569055 L11.6432176,11.8028779 L11.7464179,11.6519307 L11.3028106,11.2853449 C8.22242718,8.64288364 6.33360944,4.87308312 6.06115941,0.823785236 L6.03497427,0.312413332 L6.02727273,-0.182015503 C6.02727273,-8.59192653 12.9278303,-15.4030303 21.430303,-15.4030303 Z"/><path id="n" d="M21.430303,0 C29.9327758,0 36.8333333,6.81110377 36.8333333,15.2210148 C36.8333333,21.221933 33.1550897,26.431149 27.4575088,29.2282915 C25.1085467,30.3819588 21.1176215,30.8902501 15.4200406,30.794753 L14.7269043,30.7793502 L13.2944224,30.7346822 L12.5519964,30.7038767 L11.0209352,30.6237823 C10.5397832,30.5950583 10.1238706,30.2780027 9.9687107,29.8216579 C9.81355081,29.3653131 9.95000801,28.8604549 10.3139361,28.5444087 C10.8468809,28.0823256 11.2504403,27.6818537 11.5199934,27.3599358 L11.6432176,27.2059082 L11.7464179,27.054961 L11.3028106,26.6883752 C8.22242718,24.0459139 6.33360944,20.2761134 6.06115941,16.2268155 L6.03497427,15.7154436 L6.02727273,15.2210148 C6.02727273,6.81110377 12.9278303,0 21.430303,0 Z"/><path id="p" d="M21.430303,4.01818182 C27.7147394,4.01818182 32.8151515,9.05247591 32.8151515,15.2684971 C32.8151515,19.7039584 30.0964497,23.5542484 25.8851942,25.6217016 C24.1490048,26.4744122 21.1991906,26.8501058 16.9879352,26.779521 L16.475617,26.7681363 L15.4168261,26.7351208 L14.8680764,26.7123515 L13.7364224,26.6531513 C13.3807884,26.6319206 13.0733747,26.3975751 12.9586913,26.0602768 C12.8440079,25.7229784 12.9448676,25.3498224 13.2138579,25.116223 C13.6077737,24.7746834 13.9060567,24.4786824 14.1052915,24.2407431 L14.1963703,24.1268966 L14.2726488,24.0153269 L13.9447652,23.7443722 C11.66796,21.7912486 10.2718773,19.0048743 10.0705012,16.011915 L10.051147,15.6339445 L10.0454545,15.2684971 C10.0454545,9.05247591 15.1458667,4.01818182 21.430303,4.01818182 Z"/><path id="r" d="M25.0542392,16.606252 C24.6934328,16.4256274 24.2756542,16.3957968 23.8928529,16.5233257 C23.5100516,16.6508547 23.193601,16.9252912 23.0131493,17.2862341 C22.8428049,17.6254646 22.1735952,17.9662163 21.3309992,17.9662163 C20.4884032,17.9662163 19.8191934,17.6254646 19.65037,17.2862341 C19.407209,16.7998222 18.9230694,16.4801079 18.3803218,16.4475245 C17.8375742,16.4149411 17.3186749,16.6744388 17.0190882,17.1282673 C16.7195016,17.5820958 16.6847419,18.1613077 16.9279029,18.6477196 C17.6655546,20.11569 19.4207094,21.008642 21.3309992,21.008642 C23.2443309,21.008642 24.9979647,20.1156901 25.7340955,18.6477196 C25.9146867,18.2868465 25.9445118,17.8689906 25.8170064,17.4861184 C25.6895011,17.1032463 25.4151154,16.7867372 25.0542392,16.606252 Z"/><radialGradient id="h" cx="73.195%" cy="18.576%" r="55.879%" fx="73.195%" fy="18.576%"><stop offset="0%" stop-color="#FFB0B0"/><stop offset="100%" stop-color="#FF6464"/></radialGradient><radialGradient id="t" cx="50%" cy="70.049%" r="94.37%" fx="50%" fy="70.049%" gradientTransform="scale(.5 1) rotate(-39.847 .75 .01)"><stop offset="0%" stop-color="#F6BD16"/><stop offset="100%" stop-color="#FFE18B"/></radialGradient><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FF6464"/><stop offset="100%" stop-color="#FF6464" stop-opacity="0"/></linearGradient><linearGradient id="e" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FF6464"/><stop offset="100%" stop-color="#FF6464" stop-opacity="0"/></linearGradient><polygon id="a" points="0 0 52 0 52 52 0 52"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#F05E5E" fill-opacity=".16" d="M12.1333518,2.31108338 C21.3778302,-0.770361126 30.6221698,-0.770361126 39.8666482,2.31108338 C43.5641899,3.6827713 48.3171222,8.43583913 49.6888111,12.1333784 C52.7703963,21.3777119 52.7703963,30.6221841 49.6888111,39.8666563 C48.3171222,43.5640569 43.5641899,48.3171247 39.8666482,49.6888126 C30.6221698,52.7703958 21.3778302,52.7703958 12.1333518,49.6888126 C8.43594875,48.3171247 3.68287776,43.5640569 2.31118892,39.8666563 C-0.770396306,30.6221841 -0.770396306,21.3777119 2.31118892,12.1333784 C3.68287776,8.43583913 8.43594875,3.6827713 12.1333518,2.31108338" mask="url(#b)"/><path fill="url(#c)" fill-opacity=".5" d="M39,43.5 C39,42.6715729 35.418278,40 31,40 C26.581722,40 23,42.6715729 23,43.5 C23,44.3284271 39,44.3284271 39,43.5 Z" filter="url(#d)" mask="url(#b)"/><path fill="url(#e)" fill-opacity=".5" d="M23,44.140165 C23,43.5188447 20.3137085,41.515165 17,41.515165 C13.6862915,41.515165 11,43.5188447 11,44.140165 C11,44.7614854 23,44.7614854 23,44.140165 Z" filter="url(#f)" mask="url(#b)"/><g mask="url(#b)"><g transform="translate(7.918 9.927)"><g transform="translate(0 15.403)"><mask id="j" fill="#fff"><use xlink:href="#g"/></mask><g fill-rule="nonzero"><use xlink:href="#g" fill="url(#h)"/><use xlink:href="#g" fill="#000" filter="url(#i)"/></g><g fill-rule="nonzero" mask="url(#j)" transform="matrix(-1 0 0 1 42.86 0)"><use xlink:href="#k" fill="#000" filter="url(#l)"/><use xlink:href="#k" fill="url(#h)"/><use xlink:href="#k" fill="#000" filter="url(#m)"/></g></g><g fill-rule="nonzero" transform="matrix(-1 0 0 1 42.86 0)"><use xlink:href="#n" fill="url(#h)"/><use xlink:href="#n" fill="#000" filter="url(#o)"/></g><g fill-rule="nonzero" transform="matrix(-1 0 0 1 42.86 0)"><use xlink:href="#p" fill="#000" filter="url(#q)"/><use xlink:href="#p" fill="#FFF" fill-opacity=".4"/></g><g fill-rule="nonzero" transform="matrix(-1 0 0 1 42.662 0)"><use xlink:href="#r" fill="#000" filter="url(#s)"/><use xlink:href="#r" fill="url(#t)"/><use xlink:href="#r" fill="#000" filter="url(#u)"/></g></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52" height="52" viewBox="0 0 52 52"><defs><filter id="d" width="130%" height="245.6%" x="-15%" y="-72.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="g" width="113.9%" height="116.2%" x="-6.9%" y="-8.1%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dy="-1" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0"/></filter><filter id="j" width="129.1%" height="157.2%" x="-14.6%" y="-18.2%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1.5"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.941176471 0 0 0 0 0.0941176471 0 0 0 0 0.0941176471 0 0 0 1 0"/></filter><filter id="l" width="129.1%" height="157.2%" x="-14.6%" y="-18.2%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0"/></filter><filter id="n" width="113.2%" height="126%" x="-6.6%" y="-13%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0"/></filter><filter id="p" width="163.6%" height="225%" x="-31.8%" y="-44.7%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="2"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/></filter><filter id="r" width="300%" height="310.7%" x="-100%" y="-52.7%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.941176471 0 0 0 0 0.178823529 0 0 0 0 0.178823529 0 0 0 1 0"/></filter><filter id="t" width="300%" height="310.7%" x="-100%" y="-52.7%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" result="shadowMatrixInner1" values="0 0 0 0 1 0 0 0 0 0.650980392 0 0 0 0 0 0 0 0 0.8 0"/><feGaussianBlur in="SourceAlpha" result="shadowBlurInner2" stdDeviation="1"/><feOffset dy="1" in="shadowBlurInner2" result="shadowOffsetInner2"/><feComposite in="shadowOffsetInner2" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner2"/><feColorMatrix in="shadowInnerInner2" result="shadowMatrixInner2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/><feMerge><feMergeNode in="shadowMatrixInner1"/><feMergeNode in="shadowMatrixInner2"/></feMerge></filter><path id="e" d="M0.00405576544,0 L21.6040558,0 L21.6040558,12.6924006 C21.7141873,16.5589032 18.1061947,18.5114364 10.7800781,18.55 C3.45396151,18.5885636 -0.138045939,16.6786677 0.00405576544,12.8203123 L0.00405576544,0 Z"/><path id="i" d="M-6.20243504,1.04949194 L8.90789595,-7.24113875 C10.0966786,-7.89339172 11.5349591,-7.89898269 12.7287767,-7.25599151 L28.1419356,1.04554875 C28.6281781,1.30743936 28.8100512,1.91392106 28.5481606,2.40016354 C28.4465519,2.58881674 28.2870326,2.73984328 28.093108,2.83098945 L12.5316506,10.145004 C11.4447986,10.6558334 10.1859421,10.6513175 9.1027831,10.1327033 L-6.15325929,2.8281443 C-6.65139012,2.58964037 -6.86185931,1.99247992 -6.62335538,1.49434909 C-6.53302642,1.30569122 -6.38581373,1.15010688 -6.20243504,1.04949194 Z"/><path id="m" d="M1.70818205,9.33662267 L16.818513,1.04599198 C18.0072957,0.393739014 19.4455762,0.388148042 20.6393938,1.03113922 L36.0525527,9.33267948 C36.5387952,9.59457009 36.7206683,10.2010518 36.4587777,10.6872943 C36.357169,10.8759475 36.1976497,11.026974 36.0037251,11.1181202 L20.4422677,18.4321347 C19.3554156,18.9429642 18.0965592,18.9384482 17.0134002,18.4198341 L1.75735779,11.115275 C1.25922696,10.8767711 1.04875777,10.2796106 1.2872617,9.78147982 C1.37759067,9.59282195 1.52480335,9.43723761 1.70818205,9.33662267 Z"/><path id="o" d="M9.60818205,8.06317233 L16.8916962,4.06690475 C18.0804789,3.41465178 19.5187593,3.40906081 20.712577,4.05205199 L28.1525527,8.05922914 C28.6387952,8.32111975 28.8206683,8.92760145 28.5587777,9.41384394 C28.457169,9.60249713 28.2976497,9.75352368 28.1037251,9.84466984 L20.5154508,13.4112219 C19.4285988,13.9220514 18.1697424,13.9175354 17.0865833,13.3989213 L9.65735779,9.84182469 C9.15922696,9.60332077 8.94875777,9.00616031 9.1872617,8.50802948 C9.27759067,8.31937161 9.42480335,8.16378727 9.60818205,8.06317233 Z"/><path id="q" d="M18.5654735,5.67713414 L18.7967015,5.6487429 C19.8295559,5.52192433 20.7696565,6.25641147 20.8964751,7.28926583 C21.0232937,8.3221202 20.2888066,9.26222086 19.2559522,9.38903943 L19.0247241,9.41743066 C17.9918698,9.54424923 17.0517691,8.8097621 16.9249505,7.77690774 C16.798132,6.74405337 17.5326191,5.80395271 18.5654735,5.67713414 Z"/><radialGradient id="f" cx="17.152%" cy="9.856%" r="100.511%" fx="17.152%" fy="9.856%" gradientTransform="matrix(.62697 .68318 -.58655 .73025 .122 -.09)"><stop offset="0%" stop-color="#FFB0B0"/><stop offset="100%" stop-color="#FF6464"/></radialGradient><radialGradient id="k" cx="38.77%" cy="14.66%" r="80.931%" fx="38.77%" fy="14.66%" gradientTransform="matrix(.23066 .89141 -.4537 .45319 .365 -.265)"><stop offset="0%" stop-color="#FFB0B0"/><stop offset="100%" stop-color="#FF6464"/></radialGradient><radialGradient id="s" cx="50%" cy="70.049%" r="64.997%" fx="50%" fy="70.049%" gradientTransform="scale(-.9493 -1) rotate(54.194 1.356 -1.003)"><stop offset="0%" stop-color="#F6BD16"/><stop offset="100%" stop-color="#FFE18B"/></radialGradient><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FF6464"/><stop offset="100%" stop-color="#FF6464" stop-opacity="0"/></linearGradient><polygon id="a" points="0 0 52 0 52 52 0 52"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#F05E5E" fill-opacity=".16" d="M12.1333518,2.31108338 C21.3778302,-0.770361126 30.6221698,-0.770361126 39.8666482,2.31108338 C43.5641899,3.6827713 48.3171222,8.43583913 49.6888111,12.1333784 C52.7703963,21.3777119 52.7703963,30.6221841 49.6888111,39.8666563 C48.3171222,43.5640569 43.5641899,48.3171247 39.8666482,49.6888126 C30.6221698,52.7703958 21.3778302,52.7703958 12.1333518,49.6888126 C8.43594875,48.3171247 3.68287776,43.5640569 2.31118892,39.8666563 C-0.770396306,30.6221841 -0.770396306,21.3777119 2.31118892,12.1333784 C3.68287776,8.43583913 8.43594875,3.6827713 12.1333518,2.31108338" mask="url(#b)"/><path fill="url(#c)" fill-opacity=".5" d="M36,43.5 C36,42.6715729 31.5228475,40 26,40 C20.4771525,40 16,42.6715729 16,43.5 C16,44.3284271 36,44.3284271 36,43.5 Z" filter="url(#d)" mask="url(#b)"/><g mask="url(#b)"><g transform="translate(7.106 13)"><g transform="translate(7.91 8.287)"><mask id="h" fill="#fff"><use xlink:href="#e"/></mask><use xlink:href="#e" fill="url(#f)"/><use xlink:href="#e" fill="#000" filter="url(#g)"/><g mask="url(#h)"><use xlink:href="#i" fill="#000" filter="url(#j)"/><use xlink:href="#i" fill="url(#k)"/><use xlink:href="#i" fill="#000" filter="url(#l)"/></g></g><use xlink:href="#m" fill="url(#k)"/><use xlink:href="#m" fill="#000" filter="url(#n)"/><use xlink:href="#o" fill="#000" filter="url(#p)"/><use xlink:href="#o" fill="#FFF" fill-opacity=".3"/><g fill-rule="nonzero" transform="rotate(7 18.91 7.533)"><use xlink:href="#q" fill="#000" filter="url(#r)"/><use xlink:href="#q" fill="url(#s)"/><use xlink:href="#q" fill="#000" filter="url(#t)"/></g></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52" height="52" viewBox="0 0 52 52"><defs><filter id="d" width="137.5%" height="245.6%" x="-18.8%" y="-72.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><filter id="g" width="115.6%" height="115.6%" x="-7.8%" y="-7.8%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/></filter><filter id="i" width="159.7%" height="159.7%" x="-29.9%" y="-14.9%" filterUnits="objectBoundingBox"><feOffset dy="3" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1.5"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0.376744186 0 0 0 0 1 0 0 0 1 0"/></filter><filter id="k" width="191.9%" height="188.7%" x="-46%" y="-22.2%" filterUnits="objectBoundingBox"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.156862745 0 0 0 0 0.474509804 0 0 0 0 1 0 0 0 0.6 0"/></filter><filter id="m" width="191.9%" height="188.7%" x="-46%" y="-22.2%" filterUnits="objectBoundingBox"><feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/><feOffset dy="-2" in="shadowBlurInner1" result="shadowOffsetInner1"/><feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/><feColorMatrix in="shadowInnerInner1" result="shadowMatrixInner1" values="0 0 0 0 1 0 0 0 0 0.649746193 0 0 0 0 0 0 0 0 1 0"/><feGaussianBlur in="SourceAlpha" result="shadowBlurInner2" stdDeviation="1"/><feOffset dy="2" in="shadowBlurInner2" result="shadowOffsetInner2"/><feComposite in="shadowOffsetInner2" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner2"/><feColorMatrix in="shadowInnerInner2" result="shadowMatrixInner2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0"/><feMerge><feMergeNode in="shadowMatrixInner1"/><feMergeNode in="shadowMatrixInner2"/></feMerge></filter><radialGradient id="f" cx="26.486%" cy="8.756%" r="56.457%" fx="26.486%" fy="8.756%"><stop offset="0%" stop-color="#9FBFFF"/><stop offset="100%" stop-color="#4289FF"/></radialGradient><radialGradient id="l" cx="50%" cy="70.049%" r="72.376%" fx="50%" fy="70.049%" gradientTransform="scale(1 .96503) rotate(-59.965 .522 .713)"><stop offset="0%" stop-color="#F6BD16"/><stop offset="100%" stop-color="#FFE18B"/></radialGradient><circle id="e" cx="26.073" cy="26.073" r="16.073"/><circle id="h" cx="26" cy="26" r="10.045"/><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2879FF"/><stop offset="100%" stop-color="#2879FF" stop-opacity="0"/></linearGradient><polygon id="a" points="0 0 52 0 52 52 0 52"/><path id="j" d="M29.9271449,30.9355666 C30.0077178,30.8644113 30.037017,30.7513999 30.000393,30.6498989 L28.4988068,26.5051025 L29.9962074,22.3320533 C30.0328314,22.2305524 30.0035322,22.117541 29.9219129,22.0463857 C29.8402936,21.9752304 29.724143,21.9616272 29.6289205,22.0118544 L21.452339,26.2780334 C21.3654877,26.3230287 21.3121212,26.4130192 21.3121212,26.5103345 C21.3121212,26.6076499 21.3665341,26.6976404 21.4533854,26.7426357 L29.6341525,30.9721906 C29.7304214,31.0213715 29.846572,31.0067219 29.9271449,30.9355666 Z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#2879FF" fill-opacity=".16" d="M12.1333518,2.31108338 C21.3778302,-0.770361126 30.6221698,-0.770361126 39.8666482,2.31108338 C43.5641899,3.6827713 48.3171222,8.43583913 49.6888111,12.1333784 C52.7703963,21.3777119 52.7703963,30.6221841 49.6888111,39.8666563 C48.3171222,43.5640569 43.5641899,48.3171247 39.8666482,49.6888126 C30.6221698,52.7703958 21.3778302,52.7703958 12.1333518,49.6888126 C8.43594875,48.3171247 3.68287776,43.5640569 2.31118892,39.8666563 C-0.770396306,30.6221841 -0.770396306,21.3777119 2.31118892,12.1333784 C3.68287776,8.43583913 8.43594875,3.6827713 12.1333518,2.31108338" mask="url(#b)"/><path fill="url(#c)" fill-opacity=".5" d="M34,44.5 C34,43.6715729 30.418278,41 26,41 C21.581722,41 18,43.6715729 18,44.5 C18,45.3284271 34,45.3284271 34,44.5 Z" filter="url(#d)" mask="url(#b)"/><g mask="url(#b)"><use xlink:href="#e" fill="url(#f)"/><use xlink:href="#e" fill="#000" filter="url(#g)"/></g><g mask="url(#b)"><use xlink:href="#h" fill="#000" filter="url(#i)"/><use xlink:href="#h" fill="#FFF" fill-opacity=".4"/></g><g fill-rule="nonzero" mask="url(#b)" transform="rotate(-30 25.664 26.491)"><use xlink:href="#j" fill="#000" filter="url(#k)"/><use xlink:href="#j" fill="url(#l)"/><use xlink:href="#j" fill="#000" filter="url(#m)"/></g></g></svg>