zartui 2.0.22 → 2.0.24

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 (83) hide show
  1. package/es/calendar/index.js +1 -0
  2. package/es/cascader/index.js +46 -6
  3. package/es/cascader/style/index.js +2 -0
  4. package/es/cascader/style/less.js +2 -0
  5. package/es/collapse-item/index.css +1 -1
  6. package/es/collapse-item/index.js +31 -58
  7. package/es/collapse-item/index.less +30 -65
  8. package/es/collapse-item/style/index.js +0 -1
  9. package/es/collapse-item/style/less.js +0 -1
  10. package/es/datetime-picker/DatePicker.js +21 -3
  11. package/es/datetime-picker/shared.js +1 -0
  12. package/es/empty/images/Developing.js +221 -0
  13. package/es/empty/images/EmptyInterface.js +131 -0
  14. package/es/empty/images/EmptyResult.js +131 -0
  15. package/es/empty/images/FindNull.js +131 -0
  16. package/es/empty/images/NetworkError.js +131 -0
  17. package/es/empty/images/NotFound.js +186 -0
  18. package/es/empty/images/ReportSuccess.js +184 -0
  19. package/es/empty/images/Restricted.js +131 -0
  20. package/es/empty/images/ServerError.js +190 -0
  21. package/es/empty/index.css +1 -1
  22. package/es/empty/index.js +25 -13
  23. package/es/empty/index.less +2 -2
  24. package/es/index.js +1 -1
  25. package/es/media-picker/image/Img64.js +3 -0
  26. package/es/media-picker/index.css +1 -1
  27. package/es/media-picker/index.js +90 -14
  28. package/es/media-picker/index.less +30 -0
  29. package/es/multiple-picker/index.js +1 -0
  30. package/es/picker/index.js +1 -0
  31. package/es/style/var.less +21 -11
  32. package/es/timeline/index.css +1 -1
  33. package/es/timeline/index.js +21 -5
  34. package/es/timeline/index.less +5 -8
  35. package/lib/calendar/index.js +1 -0
  36. package/lib/cascader/index.js +47 -6
  37. package/lib/cascader/style/index.js +2 -0
  38. package/lib/cascader/style/less.js +2 -0
  39. package/lib/collapse-item/index.css +1 -1
  40. package/lib/collapse-item/index.js +31 -61
  41. package/lib/collapse-item/index.less +30 -65
  42. package/lib/collapse-item/style/index.js +0 -1
  43. package/lib/collapse-item/style/less.js +0 -1
  44. package/lib/datetime-picker/DatePicker.js +21 -3
  45. package/lib/datetime-picker/shared.js +1 -0
  46. package/lib/empty/images/Developing.js +226 -0
  47. package/lib/empty/images/EmptyInterface.js +136 -0
  48. package/lib/empty/images/EmptyResult.js +136 -0
  49. package/lib/empty/images/FindNull.js +136 -0
  50. package/lib/empty/images/NetworkError.js +136 -0
  51. package/lib/empty/images/NotFound.js +191 -0
  52. package/lib/empty/images/ReportSuccess.js +189 -0
  53. package/lib/empty/images/Restricted.js +136 -0
  54. package/lib/empty/images/ServerError.js +195 -0
  55. package/lib/empty/index.css +1 -1
  56. package/lib/empty/index.js +29 -13
  57. package/lib/empty/index.less +2 -2
  58. package/lib/index.css +1 -1
  59. package/lib/index.js +1 -1
  60. package/lib/index.less +1 -1
  61. package/lib/media-picker/image/Img64.js +10 -0
  62. package/lib/media-picker/index.css +1 -1
  63. package/lib/media-picker/index.js +91 -14
  64. package/lib/media-picker/index.less +30 -0
  65. package/lib/multiple-picker/index.js +1 -0
  66. package/lib/picker/index.js +1 -0
  67. package/lib/style/var.less +21 -11
  68. package/lib/timeline/index.css +1 -1
  69. package/lib/timeline/index.js +21 -5
  70. package/lib/timeline/index.less +5 -8
  71. package/lib/zart.js +1185 -3105
  72. package/lib/zart.min.js +4 -4
  73. package/package.json +1 -1
  74. package/es/empty/Developing.js +0 -1643
  75. package/es/empty/Error.js +0 -484
  76. package/es/empty/NotFound.js +0 -645
  77. package/es/empty/NotRight.js +0 -395
  78. package/es/empty/Search.js +0 -336
  79. package/lib/empty/Developing.js +0 -1648
  80. package/lib/empty/Error.js +0 -489
  81. package/lib/empty/NotFound.js +0 -650
  82. package/lib/empty/NotRight.js +0 -400
  83. package/lib/empty/Search.js +0 -341
@@ -166,6 +166,7 @@ export default createComponent({
166
166
  this.scrollIntoView();
167
167
  },
168
168
  onCancel: function onCancel() {
169
+ this.$emit('input', false);
169
170
  this.$emit('cancel');
170
171
  },
171
172
  init: function init() {
@@ -4,6 +4,7 @@ import Tabs from '../tabs';
4
4
  import Icon from '../icon';
5
5
  import Button from '../button';
6
6
  import Divider from "../divider";
7
+ import Popup from '../popup';
7
8
 
8
9
  var _createNamespace = createNamespace('cascader'),
9
10
  createComponent = _createNamespace[0],
@@ -22,7 +23,20 @@ export default createComponent({
22
23
  default: function _default() {
23
24
  return [];
24
25
  }
25
- }
26
+ },
27
+ poppable: {
28
+ type: Boolean,
29
+ default: true
30
+ },
31
+ closeOnClickOverlay: {
32
+ type: Boolean,
33
+ default: true
34
+ },
35
+ closeOnPopstate: {
36
+ type: Boolean,
37
+ default: true
38
+ },
39
+ show: Boolean
26
40
  },
27
41
  data: function data() {
28
42
  return {
@@ -74,6 +88,11 @@ export default createComponent({
74
88
  this.updateTabs();
75
89
  },
76
90
  methods: {
91
+ onClickOverlay: function onClickOverlay() {
92
+ if (this.closeOnClickOverlay) {
93
+ this.onCancel();
94
+ }
95
+ },
77
96
  getSelectedOptionsByValue: function getSelectedOptionsByValue(options, value) {
78
97
  for (var i = 0; i < options.length; i++) {
79
98
  var option = options[i];
@@ -170,7 +189,7 @@ export default createComponent({
170
189
  tabIndex: tabIndex,
171
190
  selectedOptions: selectedOptions
172
191
  };
173
- this.$emit('input', option[this.valueKey]);
192
+ this.$emit('update:value', option[this.valueKey]);
174
193
  this.$emit('change', eventParams);
175
194
 
176
195
  if (!option[this.childrenKey]) {
@@ -178,6 +197,7 @@ export default createComponent({
178
197
  }
179
198
  },
180
199
  onCancel: function onCancel() {
200
+ this.$emit('update:show', false);
181
201
  this.$emit('cancel');
182
202
  },
183
203
  renderHeader: function renderHeader() {
@@ -190,7 +210,7 @@ export default createComponent({
190
210
  },
191
211
  renderDivider: function renderDivider() {
192
212
  var h = this.$createElement;
193
- return h("zt-divider", {
213
+ return h(Divider, {
194
214
  "style": {
195
215
  margin: 0
196
216
  }
@@ -277,12 +297,32 @@ export default createComponent({
277
297
  "click": this.onCancel
278
298
  }
279
299
  }, ["\u53D6\u6D88"]);
300
+ },
301
+ renderCascade: function renderCascade() {
302
+ var h = this.$createElement;
303
+ return h("div", {
304
+ "class": bem()
305
+ }, [this.renderHeader(), this.renderDivider(), this.renderTabs(), this.renderDivider(), this.renderMenu()]);
280
306
  }
281
307
  },
282
308
  render: function render() {
283
309
  var h = arguments[0];
284
- return h("div", {
285
- "class": bem()
286
- }, [this.renderHeader(), this.renderDivider(), this.renderTabs(), this.renderDivider(), this.renderMenu()]);
310
+
311
+ if (this.poppable) {
312
+ return h(Popup, {
313
+ "attrs": {
314
+ "value": this.show,
315
+ "round": true,
316
+ "position": "bottom",
317
+ "get-container": "body",
318
+ "safe-area-inset-bottom": true,
319
+ "closeOnPopstate": this.closeOnPopstate,
320
+ "closeOnClickOverlay": this.closeOnClickOverlay,
321
+ "customOnClickOverlay": this.onClickOverlay
322
+ }
323
+ }, [this.renderCascade()]);
324
+ }
325
+
326
+ return this.renderCascade();
287
327
  }
288
328
  });
@@ -1,6 +1,8 @@
1
1
  import '../../style/base.css';
2
+ import '../../overlay/index.css';
2
3
  import '../../info/index.css';
3
4
  import '../../icon/index.css';
5
+ import '../../popup/index.css';
4
6
  import '../../loading/index.css';
5
7
  import '../../button/index.css';
6
8
  import '../../tab/index.css';
@@ -1,6 +1,8 @@
1
1
  import '../../style/base.less';
2
+ import '../../overlay/index.less';
2
3
  import '../../info/index.less';
3
4
  import '../../icon/index.less';
5
+ import '../../popup/index.less';
4
6
  import '../../loading/index.less';
5
7
  import '../../button/index.less';
6
8
  import '../../tab/index.less';
@@ -1 +1 @@
1
- .zt-collapse-item{position:relative}.zt-collapse-item__container{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background-color:transparent}.zt-collapse-item__container .zt-cell{padding-left:12px;background-color:transparent}.zt-collapse-item__container .zt-cell .zt-cell__title{color:#2d4b73}.zt-collapse-item__bar{width:4px;height:16px;background:#0091fa}.zt-collapse-item__title--iconWhite .zt-icon::before{color:#fff!important}.zt-collapse-item__title--titleWhite .zt-cell__title .zt-cell__title-content{color:#fff}.zt-collapse-item__title--titleWhite .zt-cell__value{color:#fff}.zt-collapse-item__title .zt-cell__title{font-weight:700;font-family:PingFangSC-Semibold}.zt-collapse-item__title .zt-cell__right-icon::before{-webkit-transform:rotate(90deg) translateZ(0);transform:rotate(90deg) translateZ(0);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;color:rgba(0,0,0,.2)}.zt-collapse-item__title::after{right:16px;display:none}.zt-collapse-item__title--expanded .zt-cell__right-icon::before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);color:#0091fa}.zt-collapse-item__title--expanded::after{display:block}.zt-collapse-item__title--borderless::after{display:none}.zt-collapse-item__title--disabled{cursor:not-allowed}.zt-collapse-item__title--disabled,.zt-collapse-item__title--disabled .zt-cell__right-icon{color:#c8c9cc}.zt-collapse-item__title--disabled:active{background-color:#fff}.zt-collapse-item__wrapper{overflow:hidden;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out;will-change:height}.zt-collapse-item__content{color:#2d4b73;font-size:14px;line-height:20px;background-color:transparent}
1
+ .zt-collapse-item{position:relative}.zt-collapse-item__title{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background-color:transparent;padding:10px 16px}.zt-collapse-item__title .zt-cell{padding-left:12px}.zt-collapse-item__bar{position:absolute;left:0;width:4px;height:16px;background:#0091fa}.zt-collapse-item__bar--custom{background:#fff}.zt-collapse-item__icon{font-size:24px;color:rgba(0,0,0,.2);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.zt-collapse-item__icon--expanded{color:#0091fa;-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.zt-collapse-item__icon--custom{color:#fff}.zt-collapse-item__text{-webkit-box-flex:1;-webkit-flex:1;flex:1;font-weight:700;font-size:16px;color:#2d4b73;line-height:20px}.zt-collapse-item__text--custom{color:#fff}.zt-collapse-item__text--disabled{cursor:not-allowed}.zt-collapse-item__wrapper{overflow:hidden;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out;will-change:height}.zt-collapse-item__content{color:#2d4b73;font-size:14px;line-height:20px;background-color:transparent}
@@ -1,32 +1,26 @@
1
- import _extends from "@babel/runtime/helpers/esm/extends";
2
1
  // Utils
3
2
  import { createNamespace } from '../utils';
4
3
  import { raf, doubleRaf } from '../utils/dom/raf'; // Mixins
5
4
 
6
5
  import { ChildrenMixin } from '../mixins/relation'; // Components
7
6
 
8
- import Cell from '../cell';
9
- import { cellProps } from '../cell/shared';
7
+ import Icon from '../icon';
10
8
 
11
9
  var _createNamespace = createNamespace('collapse-item'),
12
10
  createComponent = _createNamespace[0],
13
11
  bem = _createNamespace[1];
14
12
 
15
- var CELL_SLOTS = ['title', 'icon', 'right-icon'];
16
13
  export default createComponent({
17
14
  mixins: [ChildrenMixin('ztCollapse')],
18
- props: _extends({}, cellProps, {
15
+ props: {
19
16
  name: [Number, String],
20
- disabled: Boolean,
21
- isLink: {
22
- type: Boolean,
23
- default: true
24
- },
17
+ title: [Number, String],
25
18
  titleBG: {
26
19
  type: String,
27
20
  default: ""
28
- }
29
- }),
21
+ },
22
+ color: String
23
+ },
30
24
  data: function data() {
31
25
  return {
32
26
  show: null,
@@ -106,9 +100,7 @@ export default createComponent({
106
100
  },
107
101
  methods: {
108
102
  onClick: function onClick() {
109
- if (!this.disabled) {
110
- this.toggle();
111
- }
103
+ this.toggle();
112
104
  },
113
105
  // @exposed-api
114
106
  toggle: function toggle(expanded) {
@@ -130,54 +122,35 @@ export default createComponent({
130
122
  }
131
123
  },
132
124
  genTitle: function genTitle() {
133
- var _this3 = this;
134
-
135
125
  var h = this.$createElement;
136
- var border = this.border,
137
- disabled = this.disabled,
138
- expanded = this.expanded,
139
- titleBG = this.titleBG;
140
- var titleSlots = CELL_SLOTS.reduce(function (slots, name) {
141
- if (_this3.slots(name)) {
142
- slots[name] = function () {
143
- return _this3.slots(name);
144
- };
145
- }
146
-
147
- return slots;
148
- }, {});
149
-
150
- if (this.slots('value')) {
151
- titleSlots.default = function () {
152
- return _this3.slots('value');
153
- };
154
- }
155
-
126
+ var expanded = this.expanded,
127
+ titleBG = this.titleBG,
128
+ color = this.color;
156
129
  return h("div", {
157
- "class": bem("container") + " half-border-bottom",
158
- "style": titleBG ? "background:" + titleBG + ";color:#fff;" : ""
159
- }, [h("div", {
160
- "class": bem("bar"),
161
- "style": titleBG ? 'background-color:#fff;' : ''
162
- }), h(Cell, {
163
- "attrs": {
164
- "role": "button",
165
- "tabindex": disabled ? -1 : 0,
166
- "aria-expanded": String(expanded)
167
- },
168
- "class": bem('title', {
169
- disabled: disabled,
170
- expanded: expanded,
171
- borderless: !border,
172
- iconWhite: titleBG,
173
- titleWhite: titleBG
174
- }),
130
+ "class": [bem("title"), expanded ? " half-border-bottom" : ""],
131
+ "style": titleBG ? "background:" + titleBG + ";color:#fff;" : "",
175
132
  "on": {
176
133
  "click": this.onClick
134
+ }
135
+ }, [h("span", {
136
+ "class": bem("bar", {
137
+ custom: titleBG
138
+ }),
139
+ "style": color ? "background:" + color + ";" : ''
140
+ }), h("span", {
141
+ "class": bem("text", {
142
+ custom: titleBG
143
+ }),
144
+ "style": color ? "color:" + color + ";" : ''
145
+ }, [this.title]), h(Icon, {
146
+ "attrs": {
147
+ "name": "keyboard-arrow-up"
177
148
  },
178
- "scopedSlots": titleSlots,
179
- "style": titleBG ? "background:" + titleBG + ";color:#fff;" : "",
180
- "props": _extends({}, this.$props)
149
+ "style": color ? "color:" + color + ";" : '',
150
+ "class": bem('icon', {
151
+ expanded: expanded,
152
+ custom: titleBG
153
+ })
181
154
  })]);
182
155
  },
183
156
  genContent: function genContent() {
@@ -4,88 +4,53 @@
4
4
  .zt-collapse-item {
5
5
  position: relative;
6
6
 
7
- &__container {
7
+ &__title {
8
8
  display: flex;
9
9
  align-items: center;
10
- background-color: transparent;
10
+ background-color: @collapse-item-content-background-color;
11
+ padding: @collapse-item-title-padding;
11
12
  .zt-cell {
12
- padding-left: 12px;
13
- background-color: transparent;
14
- .zt-cell__title {
15
- color: rgba(45, 75, 115, 1)
16
- }
13
+ padding-left: @collapse-item-title-cell-padding;
17
14
  }
18
15
  }
19
16
  &__bar {
20
- width: 4px;
21
- height: 16px;
22
- background: #0091FA;
23
- }
24
-
25
- &__title {
26
- &--iconWhite {
27
- .zt-icon::before {
28
- color: #fff!important;
29
- }
30
- }
31
-
32
- &--titleWhite {
33
- .zt-cell__title {
34
- .zt-cell__title-content {
35
- color: #fff;
36
- }
37
- }
38
-
39
- .zt-cell__value {
40
- color: #fff;
41
- }
17
+ position: absolute;
18
+ left: 0;
19
+ width: @collapse-item-bar-width;
20
+ height: @collapse-item-bar-height;
21
+ background: @blue;
22
+ &--custom {
23
+ background: @white;
42
24
  }
25
+ }
26
+ &__icon {
27
+ font-size: @collapse-item-icon-font-size;
28
+ color: @gray-a2;
29
+ transition: transform 0.3s;
43
30
 
44
- .zt-cell__title {
45
- font-weight: bold;
46
- font-family: PingFangSC-Semibold;
47
- }
48
- .zt-cell__right-icon::before {
49
- // using translateZ to fix safari rendering issues
50
- // see: https://github.com/youzan/vant/issues/8608
51
- transform: rotate(90deg) translateZ(0);
52
- transition: transform @collapse-item-transition-duration;
53
- color: @gray-a2;
31
+ &--expanded {
32
+ color: @blue;
33
+ transform: rotate(-180deg);
54
34
  }
55
35
 
56
- &::after {
57
- right: @padding-md;
58
- display: none;
36
+ &--custom {
37
+ color: @white;
59
38
  }
39
+ }
60
40
 
61
- &--expanded {
62
- .zt-cell__right-icon::before {
63
- transform: rotate(-90deg);
64
- color: @blue;
65
- }
66
-
67
- &::after {
68
- display: block;
69
- }
70
- }
41
+ &__text {
42
+ flex: 1;
43
+ font-weight: @font-weight-bold;
44
+ font-size: @collapse-item-title-font-size;
45
+ color: @collapse-item-content-text-color;
46
+ line-height: @collapse-item-content-line-height;
71
47
 
72
- &--borderless {
73
- &::after {
74
- display: none;
75
- }
48
+ &--custom {
49
+ color: @white;
76
50
  }
77
51
 
78
52
  &--disabled {
79
53
  cursor: not-allowed;
80
-
81
- &,
82
- & .zt-cell__right-icon {
83
- color: @collapse-item-title-disabled-color;
84
- }
85
-
86
- &:active {
87
- background-color: @white;
88
- }
89
54
  }
90
55
  }
91
56
 
@@ -1,5 +1,4 @@
1
1
  import '../../style/base.css';
2
2
  import '../../info/index.css';
3
3
  import '../../icon/index.css';
4
- import '../../cell/index.css';
5
4
  import '../index.css';
@@ -1,5 +1,4 @@
1
1
  import '../../style/base.less';
2
2
  import '../../info/index.less';
3
3
  import '../../icon/index.less';
4
- import '../../cell/index.less';
5
4
  import '../index.less';
@@ -42,7 +42,17 @@ export default createComponent({
42
42
  });
43
43
  },
44
44
  maxDate: function maxDate(value) {
45
- if (this.innerValue.valueOf() >= value.valueOf()) {
45
+ var value1 = "";
46
+ var value2 = "";
47
+
48
+ try {
49
+ value1 = this.innerValue.valueOf();
50
+ value2 = value.valueOf();
51
+ } catch (error) {
52
+ console.warn("zartui datetime-picker maxDate valueOf error", error);
53
+ }
54
+
55
+ if (value1 && value2 && value1 >= value2) {
46
56
  this.innerValue = value;
47
57
  } else {
48
58
  this.updateInnerValue();
@@ -51,8 +61,16 @@ export default createComponent({
51
61
  value: function value(val) {
52
62
  val = this.formatValue(val);
53
63
 
54
- if (val && val.valueOf() !== this.innerValue.valueOf()) {
55
- this.innerValue = val;
64
+ try {
65
+ if (val && val.valueOf() !== this.innerValue.valueOf()) {
66
+ this.innerValue = val;
67
+ }
68
+ } catch (error) {
69
+ console.warn("zartui datetime-picker value valueOf error", error);
70
+
71
+ if (val && this.innerValue === null) {
72
+ this.innerValue = val;
73
+ }
56
74
  }
57
75
  }
58
76
  },
@@ -154,6 +154,7 @@ export var TimePickerMixin = {
154
154
  this.$emit('confirm', this.innerValue);
155
155
  },
156
156
  onCancel: function onCancel() {
157
+ this.$emit('update:showPicker', false);
157
158
  this.$emit('cancel');
158
159
  }
159
160
  },
@@ -0,0 +1,221 @@
1
+ export default {
2
+ render: function render() {
3
+ var h = arguments[0];
4
+ return h("svg", {
5
+ "attrs": {
6
+ "xmlns": "http://www.w3.org/2000/svg",
7
+ "viewBox": "0 0 200 200"
8
+ }
9
+ }, [h("defs", [h("filter", {
10
+ "attrs": {
11
+ "x": "-21.9%",
12
+ "y": "-16.7%",
13
+ "width": "143.8%",
14
+ "height": "146.7%",
15
+ "filterUnits": "objectBoundingBox",
16
+ "id": "361vbezwz__cla56gkuic"
17
+ }
18
+ }, [h("feOffset", {
19
+ "attrs": {
20
+ "dy": "2",
21
+ "in": "SourceAlpha",
22
+ "result": "shadowOffsetOuter1"
23
+ }
24
+ }), h("feGaussianBlur", {
25
+ "attrs": {
26
+ "stdDeviation": "2",
27
+ "in": "shadowOffsetOuter1",
28
+ "result": "shadowBlurOuter1"
29
+ }
30
+ }), h("feColorMatrix", {
31
+ "attrs": {
32
+ "values": "0 0 0 0 0 0 0 0 0 0.568627451 0 0 0 0 0.980392157 0 0 0 0.242009943 0",
33
+ "in": "shadowBlurOuter1"
34
+ }
35
+ })]), h("filter", {
36
+ "attrs": {
37
+ "x": "-38.6%",
38
+ "y": "-29.5%",
39
+ "width": "177.3%",
40
+ "height": "177.1%",
41
+ "filterUnits": "objectBoundingBox",
42
+ "id": "361vbezwz__q0cdghmuqe"
43
+ }
44
+ }, [h("feOffset", {
45
+ "attrs": {
46
+ "dy": "2",
47
+ "in": "SourceAlpha",
48
+ "result": "shadowOffsetOuter1"
49
+ }
50
+ }), h("feGaussianBlur", {
51
+ "attrs": {
52
+ "stdDeviation": "2.5",
53
+ "in": "shadowOffsetOuter1",
54
+ "result": "shadowBlurOuter1"
55
+ }
56
+ }), h("feColorMatrix", {
57
+ "attrs": {
58
+ "values": "0 0 0 0 0 0 0 0 0 0.568627451 0 0 0 0 0.980392157 0 0 0 0.242009943 0",
59
+ "in": "shadowBlurOuter1"
60
+ }
61
+ })]), h("filter", {
62
+ "attrs": {
63
+ "x": "-35.4%",
64
+ "y": "-162.5%",
65
+ "width": "170.8%",
66
+ "height": "525%",
67
+ "filterUnits": "objectBoundingBox",
68
+ "id": "361vbezwz__s7qq7y856g"
69
+ }
70
+ }, [h("feOffset", {
71
+ "attrs": {
72
+ "dy": "2",
73
+ "in": "SourceAlpha",
74
+ "result": "shadowOffsetOuter1"
75
+ }
76
+ }), h("feGaussianBlur", {
77
+ "attrs": {
78
+ "stdDeviation": "2.5",
79
+ "in": "shadowOffsetOuter1",
80
+ "result": "shadowBlurOuter1"
81
+ }
82
+ }), h("feColorMatrix", {
83
+ "attrs": {
84
+ "values": "0 0 0 0 0 0 0 0 0 0.568627451 0 0 0 0 0.980392157 0 0 0 0.242009943 0",
85
+ "in": "shadowBlurOuter1"
86
+ }
87
+ })]), h("linearGradient", {
88
+ "attrs": {
89
+ "x1": "50%",
90
+ "y1": "7.10247992%",
91
+ "x2": "50%",
92
+ "y2": "106.117243%",
93
+ "id": "361vbezwz__e1axvis34b"
94
+ }
95
+ }, [h("stop", {
96
+ "attrs": {
97
+ "stop-color": "#C3E6FF",
98
+ "offset": "0%"
99
+ }
100
+ }), h("stop", {
101
+ "attrs": {
102
+ "stop-color": "#F0FAFF",
103
+ "offset": "100%"
104
+ }
105
+ })]), h("linearGradient", {
106
+ "attrs": {
107
+ "x1": "50%",
108
+ "y1": "0%",
109
+ "x2": "50%",
110
+ "y2": "100%",
111
+ "id": "361vbezwz__8yfr6mnt5a"
112
+ }
113
+ }, [h("stop", {
114
+ "attrs": {
115
+ "stop-color": "#73C8FF",
116
+ "offset": "0%"
117
+ }
118
+ }), h("stop", {
119
+ "attrs": {
120
+ "stop-color": "#0091FA",
121
+ "offset": "100%"
122
+ }
123
+ })]), h("path", {
124
+ "attrs": {
125
+ "d": "M33.9840832,18.0485271 L34.1397811,18.092718 C35.9680641,18.7069479 37.665919,19.6433088 39.1508611,20.8547227 L39.5176132,21.1632792 C40.0028807,21.5885487 40.2120672,22.2358867 40.0744362,22.8523003 L40.032762,23.0056133 C39.6594765,24.1056234 39.7406748,25.3023428 40.2521987,26.3399731 L40.3683888,26.5597942 C40.973319,27.5544672 41.9485822,28.2734013 43.0814911,28.5681346 L43.3265928,28.6247448 C43.9671965,28.7639693 44.4745485,29.2356695 44.6564138,29.8475418 L44.692518,29.9911472 C45.0709575,31.8385398 45.1000682,33.737323 44.7798498,35.5926403 L44.6925175,36.0555093 C44.5593166,36.6850554 44.0886755,37.1887163 43.4715259,37.3765731 L43.3265928,37.4142323 C42.1645088,37.6520351 41.1481614,38.3305503 40.4942726,39.2973717 L40.3683919,39.4945347 C39.799387,40.5012284 39.653023,41.6832203 39.9536823,42.7898072 L40.0249603,43.0256874 C40.2260964,43.6310468 40.0777019,44.2915564 39.6467988,44.7561127 L39.5332258,44.8680245 C38.052689,46.1421612 36.3450615,47.1334124 34.498152,47.7924258 L34.0695097,47.9385857 C33.9561296,47.969783 33.8399402,47.9893883 33.7227843,47.997186 L33.5466014,48 C33.0981234,47.9984635 32.6682989,47.8334174 32.33852,47.5401764 L32.2197015,47.4242708 C30.647563,45.6394165 27.9018795,45.4459335 26.0870555,46.99211 C25.9825444,47.0811504 25.8824416,47.1750184 25.7870809,47.2733859 L25.6476382,47.4242708 C25.2046961,47.8900742 24.5443103,48.0818144 23.9213694,47.9360412 L23.7665626,47.8925299 C21.9645955,47.2836737 20.2898835,46.3615037 18.8216781,45.1711692 L18.4589749,44.868025 C17.9739714,44.4456681 17.7623709,43.8017221 17.8955123,43.1864445 L17.9360211,43.033367 C18.3125848,41.9407427 18.2390608,40.7499876 17.7377683,39.7140606 L17.6238091,39.4945381 C17.0205166,38.5014867 16.0481211,37.7828649 14.9179318,37.4865629 L14.67341,37.4295875 C14.0307509,37.2892936 13.5227795,36.8144479 13.3430449,36.1997579 L13.3074821,36.0555107 C12.9290426,34.2081181 12.8999319,32.3093349 13.2201498,30.4540176 L13.3074818,29.991149 C13.4381359,29.3588497 13.9090618,28.8519304 14.5280277,28.6626933 L14.6734065,28.62475 C15.8277511,28.3913748 16.8396419,27.7231934 17.4963917,26.7686691 L17.6316104,26.5597995 C18.2044883,25.5462123 18.3487621,24.3552519 18.0402793,23.2427238 L17.967237,23.0056187 C17.7629824,22.3981552 17.9113625,21.7340763 18.344731,21.267884 L18.4589709,21.1556062 C19.8837773,19.9241986 21.5201562,18.9543023 23.2901123,18.2906172 L23.735339,18.1311012 C24.3551362,17.9271354 25.0340049,18.073051 25.5096852,18.501701 L25.6242203,18.6147149 C26.4074536,19.4829298 27.5033844,20.0115837 28.6739596,20.0933047 L28.9258529,20.1039364 C30.1256982,20.0816502 31.2633577,19.5895895 32.0898289,18.7427253 L32.2509002,18.5686559 C32.6925471,18.0958778 33.3574885,17.900528 33.9840832,18.0485271 Z M29.0130295,23.5265071 C23.7110956,23.519402 19.4072031,27.7553117 19.3999999,32.9876694 C19.3929245,38.1298092 23.5383101,42.3206764 28.7136582,42.4703992 L28.9869792,42.4745313 C34.1997383,42.4745313 38.4442742,38.3797113 38.59582,33.2701969 L38.5999999,33.0003548 L38.5961908,32.7310413 C38.4517644,27.6282461 34.2185233,23.5334865 29.0130295,23.5265071 Z M29.0086863,26.6845111 C32.463133,26.6891427 35.2753305,29.3940738 35.3959674,32.7742022 L35.3999999,33.0004096 C35.3953743,36.4141606 32.6507945,39.1933223 29.2210604,39.3125421 L28.9913194,39.3165272 C25.4566935,39.3117941 22.5952002,36.4801879 22.5999999,32.9919527 C22.604802,29.5037142 25.4740637,26.6797744 29.0086863,26.6845111 Z M29.0043431,29.8425151 C27.2370318,29.8401468 25.802401,31.2521167 25.7999999,32.9962359 C25.7976828,34.6802115 27.1313786,36.0581247 28.8140797,36.1532809 L28.9956597,36.1585232 L29.1773713,36.1535262 C30.8007912,36.0639798 32.1017893,34.7817228 32.1946938,33.1797345 L32.1999999,33.0004644 L32.1949435,32.8214863 C32.1009767,31.162289 30.7090662,29.8448008 29.0043431,29.8425151 Z",
126
+ "id": "361vbezwz__0egysp8hmd"
127
+ }
128
+ }), h("path", {
129
+ "attrs": {
130
+ "d": "M39.2047448,56.3942048 C40.0726395,58.3846619 41.6805634,59.978318 43.6809259,60.8275824 L41.4914697,63.017355 C41.5726371,64.3587801 41.0852288,65.6863376 40.1087572,66.6628091 C38.2537668,68.5177995 35.2462332,68.5177995 33.3912428,66.6628091 C31.5362524,64.8078187 31.5362524,61.8002851 33.3912428,59.9452947 C34.3677144,58.9688231 35.6952718,58.4814149 37.036697,58.5625822 L39.2047448,56.3942048 Z M35.0882991,61.642351 C34.170567,62.5600831 34.170567,64.0480208 35.0882991,64.9657529 C36.0060311,65.8834849 37.4939689,65.8834849 38.4117009,64.9657529 C39.329433,64.0480208 39.329433,62.5600831 38.4117009,61.642351 C37.4939689,60.7246189 36.0060311,60.7246189 35.0882991,61.642351 Z M47,46 C47.8253625,46 48.6173615,46.1428457 49.3526235,46.4051634 L45.0502525,50.7071068 L49.2928932,54.9497475 L53.5948366,50.6473765 C53.8571543,51.3826385 54,52.1746375 54,53 C54,56.8659932 50.8659932,60 47,60 C43.1340068,60 40,56.8659932 40,53 C40,49.1340068 43.1340068,46 47,46 Z",
131
+ "id": "361vbezwz__3f4p3ywv0f"
132
+ }
133
+ }), h("rect", {
134
+ "attrs": {
135
+ "id": "361vbezwz__g0b74wfyeh",
136
+ "x": "20",
137
+ "y": "76",
138
+ "width": "24",
139
+ "height": "4",
140
+ "rx": "2"
141
+ }
142
+ })]), h("g", {
143
+ "attrs": {
144
+ "fill": "none",
145
+ "fill-rule": "evenodd"
146
+ }
147
+ }, [h("path", {
148
+ "attrs": {
149
+ "fill": "#E6F5FF",
150
+ "d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z",
151
+ "transform": "translate(20 20)"
152
+ }
153
+ }), h("path", {
154
+ "attrs": {
155
+ "d": "M86,68 L118,68 C122.418278,68 126,71.581722 126,76 L126,124 C126,128.418278 122.418278,132 118,132 L86,132 C81.581722,132 78,128.418278 78,124 L78,76 C78,71.581722 81.581722,68 86,68 Z",
156
+ "fill": "#73C8FF",
157
+ "opacity": ".24220203",
158
+ "transform": "translate(20 20)"
159
+ }
160
+ }), h("path", {
161
+ "attrs": {
162
+ "d": "M12,0 L52,0 C58.627417,-1.21743675e-15 64,5.372583 64,12 L64,76 C64,82.627417 58.627417,88 52,88 L12,88 C5.372583,88 8.11624501e-16,82.627417 0,76 L0,12 C-8.11624501e-16,5.372583 5.372583,1.21743675e-15 12,0 Z",
163
+ "stroke": "url(#361vbezwz__8yfr6mnt5a)",
164
+ "stroke-width": "8",
165
+ "fill": "url(#361vbezwz__e1axvis34b)",
166
+ "transform": "translate(65 54)"
167
+ }
168
+ }), h("g", {
169
+ "attrs": {
170
+ "transform": "translate(65 54)"
171
+ }
172
+ }, [h("use", {
173
+ "attrs": {
174
+ "fill": "#000",
175
+ "filter": "url(#361vbezwz__cla56gkuic)",
176
+ "href": "#361vbezwz__0egysp8hmd"
177
+ }
178
+ }), h("use", {
179
+ "attrs": {
180
+ "fill": "#FFF",
181
+ "href": "#361vbezwz__0egysp8hmd"
182
+ }
183
+ })]), h("g", {
184
+ "attrs": {
185
+ "transform": "translate(65 54)"
186
+ }
187
+ }, [h("use", {
188
+ "attrs": {
189
+ "fill": "#000",
190
+ "filter": "url(#361vbezwz__q0cdghmuqe)",
191
+ "href": "#361vbezwz__3f4p3ywv0f"
192
+ }
193
+ }), h("use", {
194
+ "attrs": {
195
+ "fill": "#FFF",
196
+ "href": "#361vbezwz__3f4p3ywv0f"
197
+ }
198
+ })]), h("g", {
199
+ "attrs": {
200
+ "transform": "translate(65 54)"
201
+ }
202
+ }, [h("use", {
203
+ "attrs": {
204
+ "fill": "#000",
205
+ "filter": "url(#361vbezwz__s7qq7y856g)",
206
+ "href": "#361vbezwz__g0b74wfyeh"
207
+ }
208
+ }), h("use", {
209
+ "attrs": {
210
+ "fill": "#FFF",
211
+ "href": "#361vbezwz__g0b74wfyeh"
212
+ }
213
+ })]), h("path", {
214
+ "attrs": {
215
+ "d": "M20,4 L44,4 L44,8 C44,10.209139 42.209139,12 40,12 L24,12 C21.790861,12 20,10.209139 20,8 L20,4 L20,4 Z",
216
+ "fill": "#6EC6FF",
217
+ "transform": "translate(65 54)"
218
+ }
219
+ })])]);
220
+ }
221
+ };