vant 3.5.3 → 3.6.1

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 (199) hide show
  1. package/README.md +4 -0
  2. package/changelog.generated.md +39 -42
  3. package/es/badge/Badge.mjs +1 -1
  4. package/es/calendar/Calendar.mjs +3 -4
  5. package/es/composables/use-global-z-index.d.ts +4 -0
  6. package/es/composables/use-global-z-index.mjs +9 -0
  7. package/es/composables/use-height.mjs +2 -0
  8. package/es/composables/use-lock-scroll.mjs +3 -1
  9. package/es/config-provider/ConfigProvider.d.ts +3 -0
  10. package/es/config-provider/ConfigProvider.mjs +8 -1
  11. package/es/config-provider/index.d.ts +2 -0
  12. package/es/dropdown-menu/DropdownMenu.mjs +2 -1
  13. package/es/empty/Empty.d.ts +1 -1
  14. package/es/empty/Empty.mjs +281 -16
  15. package/es/field/Field.mjs +4 -1
  16. package/es/field/types.d.ts +1 -0
  17. package/es/field/utils.d.ts +1 -0
  18. package/es/field/utils.mjs +8 -2
  19. package/es/image-preview/ImagePreviewItem.mjs +1 -1
  20. package/es/index-bar/IndexBar.mjs +3 -2
  21. package/es/index.d.ts +2 -1
  22. package/es/index.mjs +4 -1
  23. package/es/list/List.mjs +2 -1
  24. package/es/number-keyboard/NumberKeyboard.mjs +1 -2
  25. package/es/number-keyboard/NumberKeyboardKey.mjs +2 -2
  26. package/es/password-input/PasswordInput.mjs +1 -1
  27. package/es/picker/PickerColumn.mjs +1 -1
  28. package/es/popover/Popover.mjs +11 -9
  29. package/es/popup/Popup.mjs +6 -5
  30. package/es/pull-refresh/PullRefresh.mjs +7 -3
  31. package/es/rate/Rate.mjs +1 -1
  32. package/es/search/index.css +1 -1
  33. package/es/search/index.less +3 -1
  34. package/es/slider/Slider.mjs +1 -1
  35. package/es/space/Space.d.ts +48 -0
  36. package/es/space/Space.mjs +87 -0
  37. package/es/space/index.css +1 -0
  38. package/es/space/index.d.ts +37 -0
  39. package/es/space/index.less +38 -0
  40. package/es/space/index.mjs +8 -0
  41. package/es/space/style/index.d.ts +1 -0
  42. package/es/space/style/index.mjs +2 -0
  43. package/es/space/style/less.d.ts +1 -0
  44. package/es/space/style/less.mjs +2 -0
  45. package/es/stepper/Stepper.mjs +1 -1
  46. package/es/sticky/Sticky.mjs +2 -1
  47. package/es/swipe/Swipe.mjs +1 -1
  48. package/es/swipe-cell/SwipeCell.mjs +1 -1
  49. package/es/tabs/Tabs.mjs +12 -2
  50. package/es/tabs/TabsContent.mjs +4 -0
  51. package/es/vue-tsx-shim.d.ts +7 -0
  52. package/lib/badge/Badge.js +1 -1
  53. package/lib/calendar/Calendar.js +3 -4
  54. package/lib/composables/use-global-z-index.d.ts +4 -0
  55. package/lib/composables/use-global-z-index.js +28 -0
  56. package/lib/composables/use-height.js +2 -0
  57. package/lib/composables/use-lock-scroll.js +3 -1
  58. package/lib/config-provider/ConfigProvider.d.ts +3 -0
  59. package/lib/config-provider/ConfigProvider.js +7 -0
  60. package/lib/config-provider/index.d.ts +2 -0
  61. package/lib/dropdown-menu/DropdownMenu.js +2 -1
  62. package/lib/empty/Empty.d.ts +1 -1
  63. package/lib/empty/Empty.js +281 -16
  64. package/lib/field/Field.js +3 -0
  65. package/lib/field/types.d.ts +1 -0
  66. package/lib/field/utils.d.ts +1 -0
  67. package/lib/field/utils.js +8 -2
  68. package/lib/image-preview/ImagePreviewItem.js +1 -1
  69. package/lib/index-bar/IndexBar.js +3 -2
  70. package/lib/index.css +1 -1
  71. package/lib/index.d.ts +2 -1
  72. package/lib/index.js +4 -1
  73. package/lib/index.less +1 -0
  74. package/lib/list/List.js +2 -1
  75. package/lib/number-keyboard/NumberKeyboard.js +1 -2
  76. package/lib/number-keyboard/NumberKeyboardKey.js +2 -2
  77. package/lib/password-input/PasswordInput.js +1 -1
  78. package/lib/picker/PickerColumn.js +1 -1
  79. package/lib/popover/Popover.js +10 -8
  80. package/lib/popup/Popup.js +6 -5
  81. package/lib/pull-refresh/PullRefresh.js +6 -2
  82. package/lib/rate/Rate.js +1 -1
  83. package/lib/search/index.css +1 -1
  84. package/lib/search/index.less +3 -1
  85. package/lib/slider/Slider.js +1 -1
  86. package/lib/space/Space.d.ts +48 -0
  87. package/lib/space/Space.js +106 -0
  88. package/lib/space/index.css +1 -0
  89. package/lib/space/index.d.ts +37 -0
  90. package/lib/space/index.js +30 -0
  91. package/lib/space/index.less +38 -0
  92. package/lib/space/style/index.d.ts +1 -0
  93. package/lib/space/style/index.js +2 -0
  94. package/lib/space/style/less.d.ts +1 -0
  95. package/lib/space/style/less.js +2 -0
  96. package/lib/stepper/Stepper.js +1 -1
  97. package/lib/sticky/Sticky.js +2 -1
  98. package/lib/swipe/Swipe.js +1 -1
  99. package/lib/swipe-cell/SwipeCell.js +1 -1
  100. package/lib/tabs/Tabs.js +12 -2
  101. package/lib/tabs/TabsContent.js +4 -0
  102. package/lib/vant.cjs.js +1202 -1074
  103. package/lib/vant.es.js +1203 -1075
  104. package/lib/vant.js +1212 -1150
  105. package/lib/vant.min.js +1 -1
  106. package/lib/vue-tsx-shim.d.ts +7 -0
  107. package/lib/web-types.json +1189 -1117
  108. package/package.json +2 -2
  109. package/es/empty/Images.d.ts +0 -4
  110. package/es/empty/Images.mjs +0 -271
  111. package/lib/.DS_Store +0 -0
  112. package/lib/action-bar/.DS_Store +0 -0
  113. package/lib/action-bar-button/.DS_Store +0 -0
  114. package/lib/action-bar-icon/.DS_Store +0 -0
  115. package/lib/action-sheet/.DS_Store +0 -0
  116. package/lib/address-edit/.DS_Store +0 -0
  117. package/lib/address-list/.DS_Store +0 -0
  118. package/lib/area/.DS_Store +0 -0
  119. package/lib/badge/.DS_Store +0 -0
  120. package/lib/button/.DS_Store +0 -0
  121. package/lib/calendar/.DS_Store +0 -0
  122. package/lib/card/.DS_Store +0 -0
  123. package/lib/cascader/.DS_Store +0 -0
  124. package/lib/cell/.DS_Store +0 -0
  125. package/lib/cell-group/.DS_Store +0 -0
  126. package/lib/checkbox/.DS_Store +0 -0
  127. package/lib/checkbox-group/.DS_Store +0 -0
  128. package/lib/circle/.DS_Store +0 -0
  129. package/lib/col/.DS_Store +0 -0
  130. package/lib/collapse/.DS_Store +0 -0
  131. package/lib/collapse-item/.DS_Store +0 -0
  132. package/lib/config-provider/.DS_Store +0 -0
  133. package/lib/contact-card/.DS_Store +0 -0
  134. package/lib/contact-edit/.DS_Store +0 -0
  135. package/lib/contact-list/.DS_Store +0 -0
  136. package/lib/count-down/.DS_Store +0 -0
  137. package/lib/coupon/.DS_Store +0 -0
  138. package/lib/coupon-cell/.DS_Store +0 -0
  139. package/lib/coupon-list/.DS_Store +0 -0
  140. package/lib/datetime-picker/.DS_Store +0 -0
  141. package/lib/dialog/.DS_Store +0 -0
  142. package/lib/divider/.DS_Store +0 -0
  143. package/lib/dropdown-item/.DS_Store +0 -0
  144. package/lib/dropdown-menu/.DS_Store +0 -0
  145. package/lib/empty/.DS_Store +0 -0
  146. package/lib/empty/Images.d.ts +0 -4
  147. package/lib/empty/Images.js +0 -290
  148. package/lib/field/.DS_Store +0 -0
  149. package/lib/form/.DS_Store +0 -0
  150. package/lib/grid/.DS_Store +0 -0
  151. package/lib/grid-item/.DS_Store +0 -0
  152. package/lib/icon/.DS_Store +0 -0
  153. package/lib/image/.DS_Store +0 -0
  154. package/lib/image-preview/.DS_Store +0 -0
  155. package/lib/index-anchor/.DS_Store +0 -0
  156. package/lib/index-bar/.DS_Store +0 -0
  157. package/lib/lazyload/.DS_Store +0 -0
  158. package/lib/list/.DS_Store +0 -0
  159. package/lib/loading/.DS_Store +0 -0
  160. package/lib/locale/.DS_Store +0 -0
  161. package/lib/nav-bar/.DS_Store +0 -0
  162. package/lib/notice-bar/.DS_Store +0 -0
  163. package/lib/notify/.DS_Store +0 -0
  164. package/lib/number-keyboard/.DS_Store +0 -0
  165. package/lib/overlay/.DS_Store +0 -0
  166. package/lib/pagination/.DS_Store +0 -0
  167. package/lib/password-input/.DS_Store +0 -0
  168. package/lib/picker/.DS_Store +0 -0
  169. package/lib/popover/.DS_Store +0 -0
  170. package/lib/popup/.DS_Store +0 -0
  171. package/lib/progress/.DS_Store +0 -0
  172. package/lib/pull-refresh/.DS_Store +0 -0
  173. package/lib/radio/.DS_Store +0 -0
  174. package/lib/radio-group/.DS_Store +0 -0
  175. package/lib/rate/.DS_Store +0 -0
  176. package/lib/row/.DS_Store +0 -0
  177. package/lib/search/.DS_Store +0 -0
  178. package/lib/share-sheet/.DS_Store +0 -0
  179. package/lib/sidebar/.DS_Store +0 -0
  180. package/lib/sidebar-item/.DS_Store +0 -0
  181. package/lib/skeleton/.DS_Store +0 -0
  182. package/lib/slider/.DS_Store +0 -0
  183. package/lib/step/.DS_Store +0 -0
  184. package/lib/stepper/.DS_Store +0 -0
  185. package/lib/steps/.DS_Store +0 -0
  186. package/lib/sticky/.DS_Store +0 -0
  187. package/lib/submit-bar/.DS_Store +0 -0
  188. package/lib/swipe/.DS_Store +0 -0
  189. package/lib/swipe-cell/.DS_Store +0 -0
  190. package/lib/swipe-item/.DS_Store +0 -0
  191. package/lib/switch/.DS_Store +0 -0
  192. package/lib/tab/.DS_Store +0 -0
  193. package/lib/tabbar/.DS_Store +0 -0
  194. package/lib/tabbar-item/.DS_Store +0 -0
  195. package/lib/tabs/.DS_Store +0 -0
  196. package/lib/tag/.DS_Store +0 -0
  197. package/lib/toast/.DS_Store +0 -0
  198. package/lib/tree-select/.DS_Store +0 -0
  199. package/lib/uploader/.DS_Store +0 -0
@@ -1,290 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var stdin_exports = {};
19
- __export(stdin_exports, {
20
- renderError: () => renderError,
21
- renderMaterial: () => renderMaterial,
22
- renderNetwork: () => renderNetwork,
23
- renderSearch: () => renderSearch
24
- });
25
- module.exports = __toCommonJS(stdin_exports);
26
- var import_vue = require("vue");
27
- const getId = (num) => `van-empty-${num}`;
28
- const useId = (num) => `url(#${getId(num)})`;
29
- const renderStop = (color, offset, opacity) => (0, import_vue.createVNode)("stop", {
30
- "stop-color": color,
31
- "offset": `${offset}%`,
32
- "stop-opacity": opacity
33
- }, null);
34
- const renderStops = (fromColor, toColor) => [renderStop(fromColor, 0), renderStop(toColor, 100)];
35
- const renderShadow = (id) => [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("radialGradient", {
36
- "id": getId(id),
37
- "cx": "50%",
38
- "cy": "54%",
39
- "fx": "50%",
40
- "fy": "54%",
41
- "r": "297%",
42
- "gradientTransform": "matrix(-.16 0 0 -.33 .58 .72)"
43
- }, [renderStop("#EBEDF0", 0), renderStop("#F2F3F5", 100, 0.3)])]), (0, import_vue.createVNode)("ellipse", {
44
- "fill": useId(id),
45
- "opacity": ".8",
46
- "cx": "80",
47
- "cy": "140",
48
- "rx": "46",
49
- "ry": "8"
50
- }, null)];
51
- const renderBuilding = () => [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
52
- "id": getId("a"),
53
- "x1": "64%",
54
- "y1": "100%",
55
- "x2": "64%"
56
- }, [renderStop("#FFF", 0, 0.5), renderStop("#F2F3F5", 100)])]), (0, import_vue.createVNode)("g", {
57
- "opacity": ".8"
58
- }, [(0, import_vue.createVNode)("path", {
59
- "d": "M36 131V53H16v20H2v58h34z",
60
- "fill": useId("a")
61
- }, null), (0, import_vue.createVNode)("path", {
62
- "d": "M123 15h22v14h9v77h-31V15z",
63
- "fill": useId("a")
64
- }, null)])];
65
- const renderCloud = () => [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
66
- "id": getId("b"),
67
- "x1": "64%",
68
- "y1": "97%",
69
- "x2": "64%",
70
- "y2": "0%"
71
- }, [renderStop("#F2F3F5", 0, 0.3), renderStop("#F2F3F5", 100)])]), (0, import_vue.createVNode)("g", {
72
- "opacity": ".8"
73
- }, [(0, import_vue.createVNode)("path", {
74
- "d": "M87 6c3 0 7 3 8 6a8 8 0 1 1-1 16H80a7 7 0 0 1-8-6c0-4 3-7 6-7 0-5 4-9 9-9Z",
75
- "fill": useId("b")
76
- }, null), (0, import_vue.createVNode)("path", {
77
- "d": "M19 23c2 0 3 1 4 3 2 0 4 2 4 4a4 4 0 0 1-4 3v1h-7v-1l-1 1c-2 0-3-2-3-4 0-1 1-3 3-3 0-2 2-4 4-4Z",
78
- "fill": useId("b")
79
- }, null)])];
80
- const renderNetwork = () => (0, import_vue.createVNode)("svg", {
81
- "viewBox": "0 0 160 160"
82
- }, [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
83
- "id": getId(1),
84
- "x1": "64%",
85
- "y1": "100%",
86
- "x2": "64%"
87
- }, [renderStop("#FFF", 0, 0.5), renderStop("#F2F3F5", 100)]), (0, import_vue.createVNode)("linearGradient", {
88
- "id": getId(2),
89
- "x1": "50%",
90
- "x2": "50%",
91
- "y2": "84%"
92
- }, [renderStop("#EBEDF0", 0), renderStop("#DCDEE0", 100, 0)]), (0, import_vue.createVNode)("linearGradient", {
93
- "id": getId(3),
94
- "x1": "100%",
95
- "x2": "100%",
96
- "y2": "100%"
97
- }, [renderStops("#EAEDF0", "#DCDEE0")]), (0, import_vue.createVNode)("radialGradient", {
98
- "id": getId(4),
99
- "cx": "50%",
100
- "cy": "0%",
101
- "fx": "50%",
102
- "fy": "0%",
103
- "r": "100%",
104
- "gradientTransform": "matrix(0 1 -.54 0 .5 -.5)"
105
- }, [renderStop("#EBEDF0", 0), renderStop("#FFF", 100, 0)])]), (0, import_vue.createVNode)("g", {
106
- "fill": "none"
107
- }, [renderBuilding(), (0, import_vue.createVNode)("path", {
108
- "fill": useId(4),
109
- "d": "M0 139h160v21H0z"
110
- }, null), (0, import_vue.createVNode)("path", {
111
- "d": "M80 54a7 7 0 0 1 3 13v27l-2 2h-2a2 2 0 0 1-2-2V67a7 7 0 0 1 3-13z",
112
- "fill": useId(2)
113
- }, null), (0, import_vue.createVNode)("g", {
114
- "opacity": ".6",
115
- "stroke-linecap": "round",
116
- "stroke-width": "7"
117
- }, [(0, import_vue.createVNode)("path", {
118
- "d": "M64 47a19 19 0 0 0-5 13c0 5 2 10 5 13",
119
- "stroke": useId(3)
120
- }, null), (0, import_vue.createVNode)("path", {
121
- "d": "M53 36a34 34 0 0 0 0 48",
122
- "stroke": useId(3)
123
- }, null), (0, import_vue.createVNode)("path", {
124
- "d": "M95 73a19 19 0 0 0 6-13c0-5-2-9-6-13",
125
- "stroke": useId(3)
126
- }, null), (0, import_vue.createVNode)("path", {
127
- "d": "M106 84a34 34 0 0 0 0-48",
128
- "stroke": useId(3)
129
- }, null)]), (0, import_vue.createVNode)("g", {
130
- "transform": "translate(31 105)"
131
- }, [(0, import_vue.createVNode)("rect", {
132
- "fill": "#EBEDF0",
133
- "width": "98",
134
- "height": "34",
135
- "rx": "2"
136
- }, null), (0, import_vue.createVNode)("rect", {
137
- "fill": "#FFF",
138
- "x": "9",
139
- "y": "8",
140
- "width": "80",
141
- "height": "18",
142
- "rx": "1.1"
143
- }, null), (0, import_vue.createVNode)("rect", {
144
- "fill": "#EBEDF0",
145
- "x": "15",
146
- "y": "12",
147
- "width": "18",
148
- "height": "6",
149
- "rx": "1.1"
150
- }, null)])])]);
151
- const renderMaterial = () => (0, import_vue.createVNode)("svg", {
152
- "viewBox": "0 0 160 160"
153
- }, [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
154
- "x1": "50%",
155
- "x2": "50%",
156
- "y2": "100%",
157
- "id": getId(5)
158
- }, [renderStops("#F2F3F5", "#DCDEE0")]), (0, import_vue.createVNode)("linearGradient", {
159
- "x1": "95%",
160
- "y1": "48%",
161
- "x2": "5.5%",
162
- "y2": "51%",
163
- "id": getId(6)
164
- }, [renderStops("#EAEDF1", "#DCDEE0")]), (0, import_vue.createVNode)("linearGradient", {
165
- "y1": "45%",
166
- "x2": "100%",
167
- "y2": "54%",
168
- "id": getId(7)
169
- }, [renderStops("#EAEDF1", "#DCDEE0")])]), renderBuilding(), renderCloud(), (0, import_vue.createVNode)("g", {
170
- "transform": "translate(36 50)",
171
- "fill": "none"
172
- }, [(0, import_vue.createVNode)("g", {
173
- "transform": "translate(8)"
174
- }, [(0, import_vue.createVNode)("rect", {
175
- "fill": "#EBEDF0",
176
- "opacity": ".6",
177
- "x": "38",
178
- "y": "13",
179
- "width": "36",
180
- "height": "53",
181
- "rx": "2"
182
- }, null), (0, import_vue.createVNode)("rect", {
183
- "fill": useId(5),
184
- "width": "64",
185
- "height": "66",
186
- "rx": "2"
187
- }, null), (0, import_vue.createVNode)("rect", {
188
- "fill": "#FFF",
189
- "x": "6",
190
- "y": "6",
191
- "width": "52",
192
- "height": "55",
193
- "rx": "1"
194
- }, null), (0, import_vue.createVNode)("g", {
195
- "transform": "translate(15 17)",
196
- "fill": useId(6)
197
- }, [(0, import_vue.createVNode)("rect", {
198
- "width": "34",
199
- "height": "6",
200
- "rx": "1"
201
- }, null), (0, import_vue.createVNode)("path", {
202
- "d": "M0 14h34v6H0z"
203
- }, null), (0, import_vue.createVNode)("rect", {
204
- "y": "28",
205
- "width": "34",
206
- "height": "6",
207
- "rx": "1"
208
- }, null)])]), (0, import_vue.createVNode)("rect", {
209
- "fill": useId(7),
210
- "y": "61",
211
- "width": "88",
212
- "height": "28",
213
- "rx": "1"
214
- }, null), (0, import_vue.createVNode)("rect", {
215
- "fill": "#F7F8FA",
216
- "x": "29",
217
- "y": "72",
218
- "width": "30",
219
- "height": "6",
220
- "rx": "1"
221
- }, null)])]);
222
- const renderError = () => (0, import_vue.createVNode)("svg", {
223
- "viewBox": "0 0 160 160"
224
- }, [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
225
- "x1": "50%",
226
- "x2": "50%",
227
- "y2": "100%",
228
- "id": getId(8)
229
- }, [renderStops("#EAEDF1", "#DCDEE0")])]), renderBuilding(), renderCloud(), renderShadow("c"), (0, import_vue.createVNode)("path", {
230
- "d": "m59 60 21 21 21-21h3l9 9v3L92 93l21 21v3l-9 9h-3l-21-21-21 21h-3l-9-9v-3l21-21-21-21v-3l9-9h3Z",
231
- "fill": useId(8)
232
- }, null)]);
233
- const renderSearch = () => (0, import_vue.createVNode)("svg", {
234
- "viewBox": "0 0 160 160"
235
- }, [(0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
236
- "x1": "50%",
237
- "y1": "100%",
238
- "x2": "50%",
239
- "id": getId(9)
240
- }, [renderStops("#EEE", "#D8D8D8")]), (0, import_vue.createVNode)("linearGradient", {
241
- "x1": "100%",
242
- "y1": "50%",
243
- "y2": "50%",
244
- "id": getId(10)
245
- }, [renderStops("#F2F3F5", "#DCDEE0")]), (0, import_vue.createVNode)("linearGradient", {
246
- "x1": "50%",
247
- "x2": "50%",
248
- "y2": "100%",
249
- "id": getId(11)
250
- }, [renderStops("#F2F3F5", "#DCDEE0")]), (0, import_vue.createVNode)("linearGradient", {
251
- "x1": "50%",
252
- "x2": "50%",
253
- "y2": "100%",
254
- "id": getId(12)
255
- }, [renderStops("#FFF", "#F7F8FA")])]), renderBuilding(), renderCloud(), renderShadow("d"), (0, import_vue.createVNode)("g", {
256
- "transform": "rotate(-45 113 -4)",
257
- "fill": "none"
258
- }, [(0, import_vue.createVNode)("rect", {
259
- "fill": useId(9),
260
- "x": "24",
261
- "y": "52.8",
262
- "width": "5.8",
263
- "height": "19",
264
- "rx": "1"
265
- }, null), (0, import_vue.createVNode)("rect", {
266
- "fill": useId(10),
267
- "x": "22.1",
268
- "y": "67.3",
269
- "width": "9.9",
270
- "height": "28",
271
- "rx": "1"
272
- }, null), (0, import_vue.createVNode)("circle", {
273
- "stroke": useId(11),
274
- "stroke-width": "8",
275
- "cx": "27",
276
- "cy": "27",
277
- "r": "27"
278
- }, null), (0, import_vue.createVNode)("circle", {
279
- "fill": useId(12),
280
- "cx": "27",
281
- "cy": "27",
282
- "r": "16"
283
- }, null), (0, import_vue.createVNode)("path", {
284
- "d": "M37 7c-8 0-15 5-16 12",
285
- "stroke": useId(11),
286
- "stroke-width": "3",
287
- "opacity": ".5",
288
- "stroke-linecap": "round",
289
- "transform": "rotate(45 29 13)"
290
- }, null)])]);
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/lib/row/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/lib/tab/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file
package/lib/tag/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file