@trionesdev/antd-taro-react 0.0.2-beta.15 → 0.0.2-beta.17

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 (62) hide show
  1. package/LICENSE +21 -21
  2. package/dist/ActionSheet/style.scss +52 -52
  3. package/dist/Button/button.d.ts +2 -2
  4. package/dist/Button/button.js +2 -3
  5. package/dist/Button/style.scss +246 -235
  6. package/dist/Calendar/style.scss +88 -88
  7. package/dist/Calendar/touchable-calendar-grid.js +9 -9
  8. package/dist/CalendarDatetimePicker/style.scss +62 -62
  9. package/dist/CalendarDatetimePickerCell/CalendarDatetimePickerCell.d.ts +2 -2
  10. package/dist/CalendarDatetimePickerCell/CalendarDatetimePickerCell.js +3 -3
  11. package/dist/CalendarPicker/style.scss +32 -32
  12. package/dist/CalendarPickerCell/CalendarPickerCell.d.ts +2 -2
  13. package/dist/CalendarPickerCell/CalendarPickerCell.js +3 -3
  14. package/dist/CalendarPickerCell/CalendarRangePickerCell.d.ts +2 -2
  15. package/dist/CalendarPickerCell/CalendarRangePickerCell.js +3 -3
  16. package/dist/CascaderPicker/style.scss +45 -45
  17. package/dist/CascaderPickerCell/CascaderPickerCell.d.ts +2 -2
  18. package/dist/CascaderPickerCell/CascaderPickerCell.js +3 -3
  19. package/dist/DatePicker/style.scss +41 -41
  20. package/dist/FetchPicker/FetchPicker.d.ts +113 -0
  21. package/dist/FetchPicker/FetchPicker.js +322 -0
  22. package/dist/FetchPicker/index.d.ts +4 -0
  23. package/dist/FetchPicker/index.js +3 -0
  24. package/dist/FetchPicker/styles.scss +118 -0
  25. package/dist/FloatButton/style.scss +126 -126
  26. package/dist/Form/FormItem/{form-item-input.d.ts → form-item-content.d.ts} +3 -1
  27. package/dist/Form/FormItem/{form-item-input.js → form-item-content.js} +2 -2
  28. package/dist/Form/FormItem/form-item-label.js +2 -8
  29. package/dist/Form/FormItem/form-item.d.ts +3 -2
  30. package/dist/Form/FormItem/form-item.js +23 -19
  31. package/dist/Form/index.d.ts +2 -2
  32. package/dist/Form/style.scss +100 -78
  33. package/dist/FormCell/index.d.ts +3 -0
  34. package/dist/FormCell/index.js +2 -0
  35. package/dist/ImagesPreview/style.scss +34 -34
  36. package/dist/ImagesWall/style.scss +70 -70
  37. package/dist/Input/index.scss +282 -267
  38. package/dist/Input/input-affix-wrapper.js +1 -1
  39. package/dist/Input/taro-input.js +16 -3
  40. package/dist/Input/types.d.ts +3 -3
  41. package/dist/Loading/index.d.ts +4 -0
  42. package/dist/Loading/index.js +3 -0
  43. package/dist/Overlay/style.scss +20 -20
  44. package/dist/Picker/Picker.d.ts +8 -0
  45. package/dist/Picker/Picker.js +6 -7
  46. package/dist/Picker/style.scss +41 -41
  47. package/dist/PickerView/style.scss +13 -13
  48. package/dist/PickerView/types.d.ts +2 -2
  49. package/dist/Popup/style.scss +126 -124
  50. package/dist/SideBar/side-bar.js +6 -6
  51. package/dist/SideBar/style.scss +85 -85
  52. package/dist/Stepper/index.d.ts +3 -0
  53. package/dist/Stepper/index.js +2 -0
  54. package/dist/Toast/style.scss +63 -63
  55. package/dist/VerificationCodeInput/style.scss +20 -20
  56. package/dist/index.d.ts +10 -3
  57. package/dist/index.js +4 -1
  58. package/dist/style/variable.scss +34 -20
  59. package/package.json +20 -24
  60. package/readme.md +23 -23
  61. package/dist/SpinLoading/index.d.ts +0 -3
  62. package/dist/SpinLoading/index.js +0 -2
@@ -1,267 +1,282 @@
1
- @use "../style/variable" as variable;
2
-
3
- $inputCls: 'triones-antm-input';
4
- $inputAffixWrapperCls: 'triones-antm-input-affix-wrapper';
5
- $inputGroupWrapperCls: 'triones-antm-input-group-wrapper';
6
- $inputPotCls: 'triones-antm-pot';
7
-
8
- $inputSm: 24Px;
9
- $inputMd: 32Px;
10
- $inputLg: 40Px;
11
-
12
- $placeholderColor: variable.$trionesColorTextPlaceholder;
13
-
14
- input {
15
- height: auto;
16
- font-size: variable.$trionesInputInputFontSize;
17
-
18
-
19
- &::placeholder {
20
- font-size: variable.$trionesInputInputFontSize;
21
- color: $placeholderColor
22
- }
23
- }
24
-
25
- wx-input {
26
- &::placeholder {
27
- font-size: variable.$trionesInputInputFontSize;
28
- color: $placeholderColor
29
- }
30
- }
31
-
32
- .#{$inputCls} {
33
- box-sizing: border-box;
34
- display: inline-block;
35
- position: relative;
36
- width: 100%;
37
- min-width: 0;
38
- transition: all .2s;
39
- outline: none;
40
- box-shadow: none;
41
- border: none;
42
- border-radius: variable.$trionesBorderRadius;
43
- font-size: variable.$trionesInputInputFontSize;
44
- padding: variable.$trionesInputPaddingBlock 0;
45
-
46
- &-sm {
47
- max-height: $inputSm;
48
- }
49
-
50
- &-lg {
51
- max-height: $inputLg;
52
- }
53
-
54
- &::placeholder {
55
- font-size: variable.$trionesInputInputFontSize;
56
- color: $placeholderColor
57
- }
58
-
59
- .weui-input {
60
- &::placeholder {
61
- font-size: variable.$trionesInputInputFontSize;
62
- color: $placeholderColor
63
- }
64
- }
65
- }
66
-
67
-
68
- .#{$inputAffixWrapperCls} {
69
- box-sizing: border-box;
70
- position: relative;
71
- display: inline-flex;
72
- align-items: center;
73
- width: 100%;
74
- min-width: 0;
75
- flex-shrink: 1;
76
- //line-height: variable.$trionesLineHeight;
77
- padding: variable.$trionesInputPaddingBlock 0;
78
- gap: 4Px;
79
- box-sizing: border-box;
80
-
81
-
82
- .#{$inputCls} {
83
- padding: 0;
84
- background-color: transparent;
85
- height: 100%;
86
-
87
-
88
- &-prifix {}
89
-
90
- &-suffix {
91
- display: inline-flex;
92
- align-items: center;
93
- vertical-align: middle;
94
- flex-shrink: 0;
95
- row-gap: 4Px;
96
- // padding-inline: 4Px;
97
- line-height: normal;
98
-
99
- .clear-icon {
100
- color: rgba(0, 0, 0, 0.25);
101
-
102
-
103
- &:hover {
104
- color: rgba(0, 0, 0, 0.45);
105
- }
106
- }
107
-
108
- .triones-antm-icon {
109
- cursor: pointer;
110
- padding-inline: 4Px;
111
- }
112
- }
113
- }
114
-
115
- taro-input-core {
116
- &::placeholder {
117
- font-size: variable.$trionesInputInputFontSize;
118
- color: $placeholderColor
119
- }
120
-
121
-
122
- .weui-input {
123
- &::placeholder {
124
- font-size: variable.$trionesInputInputFontSize;
125
- color: $placeholderColor
126
- }
127
- }
128
- }
129
-
130
-
131
- .triones-antm-icon {
132
- font-size: 14Px;
133
- }
134
-
135
- }
136
-
137
- .#{$inputCls} {
138
- &-outlined {
139
- border-radius: variable.$trionesBorderRadius;
140
- border: 1Px solid variable.$trionesBorderColor;
141
- padding-inline: 4Px;
142
- }
143
-
144
- &-filled {
145
- border-radius: variable.$trionesBorderRadius;
146
- background-color: variable.$trionesColorFillTertiary;
147
- padding-inline: 4Px;
148
- }
149
-
150
- &-underlined {
151
- border-bottom: 1Px solid variable.$trionesBorderColor;
152
- }
153
- }
154
-
155
- .#{$inputGroupWrapperCls} {}
156
-
157
-
158
- .#{$inputPotCls} {
159
- position: relative;
160
- display: inline-flex;
161
- vertical-align: middle;
162
-
163
- &-wrapper {
164
- position: relative;
165
- display: inline-flex;
166
- align-items: center;
167
- flex-wrap: nowrap;
168
- column-gap: 8Px;
169
- }
170
-
171
- &-input {
172
- position: absolute;
173
- background-color: transparent;
174
- z-index: -1;
175
- left: 0;
176
- top: 0;
177
- right: 0;
178
- bottom: 0;
179
- opacity: 0;
180
- -moz-appearance: textfield;
181
-
182
- &::-webkit-outer-spin-button,
183
- &::-webkit-inner-spin-button {
184
- -webkit-appearance: none;
185
- margin: 0;
186
- }
187
- }
188
-
189
- &-item {
190
- text-align: center;
191
- font-size: variable.$trionesInputInputFontSize;
192
- height: 32Px;
193
- width: 32Px;
194
- display: inline-flex;
195
- align-items: center;
196
- justify-content: center;
197
-
198
- &-sm {
199
- width: $inputSm;
200
- height: $inputSm;
201
- }
202
-
203
- &-lg {
204
- width: $inputLg;
205
- height: $inputLg;
206
- }
207
-
208
- &::placeholder {
209
- font-size: variable.$trionesInputInputFontSize;
210
- color: $placeholderColor
211
- }
212
-
213
- &-focus {
214
- &::after {
215
- content: ' ';
216
- height: 100%;
217
- width: 0.5Px;
218
- background-color: #0a0a0a;
219
- transition: transform 0.1s ease;
220
- animation: blink 1s step-end infinite;
221
- }
222
- }
223
-
224
- }
225
-
226
- .#{$inputCls}-outlined {
227
- font-size: variable.$trionesInputInputFontSize;
228
- color: rgba(0, 0, 0, 0.88);
229
- background: #ffffff;
230
- border-width: 1Px;
231
- border-style: solid;
232
- border-color: #d9d9d9;
233
- -webkit-appearance: none;
234
- -moz-appearance: none;
235
- appearance: none;
236
- }
237
- }
238
-
239
-
240
- .#{$inputCls}-textarea {
241
- box-sizing: border-box;
242
- width: 100%;
243
- outline: 0;
244
- font-size: variable.$trionesInputInputFontSize;
245
-
246
- taro-textarea-core {
247
- width: 100%;
248
- }
249
- .taro-textarea{
250
- background-color: transparent;
251
- }
252
- textarea {
253
- padding: variable.$trionesInputPaddingBlock 0;
254
- background-color: transparent;
255
- &::placeholder {
256
- font-size: variable.$trionesInputInputFontSize;
257
- color: $placeholderColor
258
- }
259
- }
260
-
261
- }
262
-
263
- @keyframes blink {
264
- 50% {
265
- background-color: transparent;
266
- }
267
- }
1
+ @use "../style/variable" as variable;
2
+
3
+ $inputCls: 'triones-antm-input';
4
+ $inputAffixWrapperCls: 'triones-antm-input-affix-wrapper';
5
+ $inputGroupWrapperCls: 'triones-antm-input-group-wrapper';
6
+ $inputPotCls: 'triones-antm-pot';
7
+
8
+ $inputSm: 24Px;
9
+ $inputMd: 32Px;
10
+ $inputLg: 40Px;
11
+
12
+ $placeholderColor: variable.$trionesColorTextPlaceholder;
13
+
14
+ input {
15
+ height: auto;
16
+ font-size: variable.$trionesInputInputFontSize;
17
+
18
+
19
+ &::placeholder {
20
+ font-size: variable.$trionesInputInputFontSize;
21
+ color: $placeholderColor
22
+ }
23
+ }
24
+
25
+ wx-input {
26
+ &::placeholder {
27
+ font-size: variable.$trionesInputInputFontSize;
28
+ color: $placeholderColor
29
+ }
30
+ }
31
+
32
+ .#{$inputCls} {
33
+ box-sizing: border-box;
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 100%;
37
+ min-width: 0;
38
+ transition: all .2s;
39
+ outline: none;
40
+ box-shadow: none;
41
+ border: none;
42
+ border-radius: variable.$trionesBorderRadius;
43
+ font-size: variable.$trionesInputInputFontSize;
44
+
45
+ &-small {
46
+ padding: variable.$trionesInputPaddingBlockSm 0;
47
+ font-size: variable.$trionesInputInputFontSizeSm;
48
+ }
49
+
50
+ &-large {
51
+ padding: variable.$trionesInputPaddingBlockLg 0;
52
+ font-size: variable.$trionesInputInputFontSizeLg;
53
+ }
54
+
55
+ &::placeholder {
56
+ font-size: variable.$trionesInputInputFontSize;
57
+ color: $placeholderColor
58
+ }
59
+
60
+ .weui-input {
61
+ &::placeholder {
62
+ font-size: variable.$trionesInputInputFontSize;
63
+ color: $placeholderColor
64
+ }
65
+ }
66
+ }
67
+
68
+
69
+ .#{$inputAffixWrapperCls} {
70
+ box-sizing: border-box;
71
+ position: relative;
72
+ display: inline-flex;
73
+ align-items: center;
74
+ width: 100%;
75
+ min-width: 0;
76
+ flex-shrink: 1;
77
+ //line-height: variable.$trionesLineHeight;
78
+ //padding: variable.$trionesInputPaddingBlock 0;
79
+ gap: 4Px;
80
+
81
+
82
+ &-small {
83
+ padding: variable.$trionesInputPaddingBlockSm 0;
84
+ font-size: variable.$trionesInputInputFontSizeSm;
85
+ }
86
+
87
+ &-large {
88
+ padding: variable.$trionesInputPaddingBlockLg 0;
89
+ font-size: variable.$trionesInputInputFontSizeLg;
90
+ }
91
+
92
+
93
+
94
+ .#{$inputCls} {
95
+ padding: 0;
96
+ background-color: transparent;
97
+ height: 100%;
98
+
99
+
100
+ &-prifix {}
101
+
102
+ &-suffix {
103
+ display: inline-flex;
104
+ align-items: center;
105
+ vertical-align: middle;
106
+ flex-shrink: 0;
107
+ row-gap: 4Px;
108
+ // padding-inline: 4Px;
109
+ line-height: normal;
110
+
111
+ .clear-icon {
112
+ color: rgba(0, 0, 0, 0.25);
113
+
114
+
115
+ &:hover {
116
+ color: rgba(0, 0, 0, 0.45);
117
+ }
118
+ }
119
+
120
+ .triones-antm-icon {
121
+ cursor: pointer;
122
+ padding-inline: 4Px;
123
+ }
124
+ }
125
+ }
126
+
127
+ taro-input-core {
128
+ &::placeholder {
129
+ font-size: variable.$trionesInputInputFontSize;
130
+ color: $placeholderColor
131
+ }
132
+
133
+
134
+ .weui-input {
135
+ &::placeholder {
136
+ font-size: variable.$trionesInputInputFontSize;
137
+ color: $placeholderColor
138
+ }
139
+ }
140
+ }
141
+
142
+
143
+ .triones-antm-icon {
144
+ font-size: 14Px;
145
+ }
146
+
147
+ }
148
+
149
+ .#{$inputCls} {
150
+ &-outlined {
151
+ border-radius: variable.$trionesBorderRadius;
152
+ border: 1Px solid variable.$trionesBorderColor;
153
+ padding-block: variable.$trionesInputPaddingBlock;
154
+ padding-inline: variable.$trionesInputPaddingBlock;
155
+ }
156
+
157
+ &-filled {
158
+ border-radius: variable.$trionesBorderRadius;
159
+ background-color: variable.$trionesColorFillTertiary;
160
+ padding-block: variable.$trionesInputPaddingBlock;
161
+ padding-inline: variable.$trionesInputPaddingBlock;
162
+ }
163
+
164
+ &-underlined {
165
+ border-bottom: 1Px solid variable.$trionesBorderColor;
166
+ padding-block: variable.$trionesInputPaddingBlock;
167
+ }
168
+ }
169
+
170
+ .#{$inputGroupWrapperCls} {}
171
+
172
+
173
+ .#{$inputPotCls} {
174
+ position: relative;
175
+ display: inline-flex;
176
+ vertical-align: middle;
177
+
178
+ &-wrapper {
179
+ position: relative;
180
+ display: inline-flex;
181
+ align-items: center;
182
+ flex-wrap: nowrap;
183
+ column-gap: 8Px;
184
+ }
185
+
186
+ &-input {
187
+ position: absolute;
188
+ background-color: transparent;
189
+ z-index: -1;
190
+ left: 0;
191
+ top: 0;
192
+ right: 0;
193
+ bottom: 0;
194
+ opacity: 0;
195
+ -moz-appearance: textfield;
196
+
197
+ &::-webkit-outer-spin-button,
198
+ &::-webkit-inner-spin-button {
199
+ -webkit-appearance: none;
200
+ margin: 0;
201
+ }
202
+ }
203
+
204
+ &-item {
205
+ text-align: center;
206
+ font-size: variable.$trionesInputInputFontSize;
207
+ height: variable.$trionesControlHeight;
208
+ width: variable.$trionesControlHeight;
209
+ display: inline-flex;
210
+ align-items: center;
211
+ justify-content: center;
212
+
213
+ &-sm {
214
+ width: variable.$trionesControlHeightSm;
215
+ height: variable.$trionesControlHeightSm;
216
+ }
217
+
218
+ &-lg {
219
+ width: variable.$trionesControlHeightLg;
220
+ height: variable.$trionesControlHeightLg;
221
+ }
222
+
223
+ &::placeholder {
224
+ font-size: variable.$trionesInputInputFontSize;
225
+ color: $placeholderColor
226
+ }
227
+
228
+ &-focus {
229
+ &::after {
230
+ content: ' ';
231
+ height: 100%;
232
+ width: 0.5Px;
233
+ background-color: #0a0a0a;
234
+ transition: transform 0.1s ease;
235
+ animation: blink 1s step-end infinite;
236
+ }
237
+ }
238
+
239
+ }
240
+
241
+ .#{$inputCls}-outlined {
242
+ font-size: variable.$trionesInputInputFontSize;
243
+ color: rgba(0, 0, 0, 0.88);
244
+ background: #ffffff;
245
+ border-width: 1Px;
246
+ border-style: solid;
247
+ border-color: #d9d9d9;
248
+ -webkit-appearance: none;
249
+ -moz-appearance: none;
250
+ appearance: none;
251
+ }
252
+ }
253
+
254
+
255
+ .#{$inputCls}-textarea {
256
+ box-sizing: border-box;
257
+ width: 100%;
258
+ outline: 0;
259
+ font-size: variable.$trionesInputInputFontSize;
260
+
261
+ taro-textarea-core {
262
+ width: 100%;
263
+ }
264
+ .taro-textarea{
265
+ background-color: transparent;
266
+ }
267
+ textarea {
268
+ padding-block: 2Px;
269
+ background-color: transparent;
270
+ &::placeholder {
271
+ font-size: variable.$trionesInputInputFontSize;
272
+ color: $placeholderColor
273
+ }
274
+ }
275
+
276
+ }
277
+
278
+ @keyframes blink {
279
+ 50% {
280
+ background-color: transparent;
281
+ }
282
+ }
@@ -22,7 +22,7 @@ export var InputAffixWrapper = function InputAffixWrapper(_ref) {
22
22
  rest = _objectWithoutProperties(_ref, _excluded);
23
23
  var innerStyle = style || {};
24
24
  return /*#__PURE__*/React.createElement("div", {
25
- className: classNames([inputAffixWrapperCls, _defineProperty({}, "".concat(inputCls, "-").concat(variant), variant)]),
25
+ className: classNames(inputAffixWrapperCls, _defineProperty({}, "".concat(inputCls, "-").concat(variant), variant), className),
26
26
  style: innerStyle
27
27
  }, prefix && /*#__PURE__*/React.createElement("div", {
28
28
  className: classNames(["".concat(inputCls, "-prefix")])
@@ -9,7 +9,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
9
9
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
10
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
11
  import { Input as InternalTaroInput } from '@tarojs/components';
12
- import React, { useEffect } from "react";
12
+ import React, { useEffect, useMemo } from "react";
13
13
  import { InputAffixWrapper } from "./input-affix-wrapper";
14
14
  export var TaroInput = function TaroInput(_ref) {
15
15
  var value = _ref.value,
@@ -18,12 +18,24 @@ export var TaroInput = function TaroInput(_ref) {
18
18
  _ref$size = _ref.size,
19
19
  size = _ref$size === void 0 ? 'middle' : _ref$size,
20
20
  _ref$align = _ref.align,
21
- align = _ref$align === void 0 ? 'left' : _ref$align,
21
+ align = _ref$align === void 0 ? 'start' : _ref$align,
22
22
  rest = _objectWithoutProperties(_ref, _excluded);
23
23
  var _React$useState = React.useState(value),
24
24
  _React$useState2 = _slicedToArray(_React$useState, 2),
25
25
  innerValue = _React$useState2[0],
26
26
  setInnerValue = _React$useState2[1];
27
+ var textAlign = useMemo(function () {
28
+ switch (align) {
29
+ case 'start':
30
+ return 'left';
31
+ case 'center':
32
+ return 'center';
33
+ case 'end':
34
+ return 'right';
35
+ default:
36
+ return 'left';
37
+ }
38
+ }, [align]);
27
39
  useEffect(function () {
28
40
  if (value !== innerValue) {
29
41
  setInnerValue(value);
@@ -42,13 +54,14 @@ export var TaroInput = function TaroInput(_ref) {
42
54
  }), /*#__PURE__*/React.createElement(InternalTaroInput, {
43
55
  style: {
44
56
  flex: 1,
45
- textAlign: align
57
+ textAlign: textAlign
46
58
  },
47
59
  type: type,
48
60
  defaultValue: rest.defaultValue,
49
61
  value: innerValue,
50
62
  placeholder: rest.placeholder,
51
63
  password: rest.password,
64
+ disabled: rest.disabled,
52
65
  onInput: function onInput(e) {
53
66
  setInnerValue(e.target.value);
54
67
  onChange === null || onChange === void 0 || onChange(e.target.value);
@@ -1,4 +1,4 @@
1
- import { SizeType } from "@trionesdev/antd-mobile-base-react";
1
+ import { AntSize } from "@trionesdev/antd-mobile-base-react";
2
2
  import React from "react";
3
3
  export declare const inputCls = "triones-antm-input";
4
4
  export declare const inputAffixWrapperCls = "triones-antm-input-affix-wrapper";
@@ -6,9 +6,9 @@ export type InputProps = {
6
6
  className?: string;
7
7
  style?: React.CSSProperties;
8
8
  placeholder?: string;
9
- size?: SizeType;
9
+ size?: AntSize;
10
10
  disabled?: boolean;
11
- align?: 'left' | 'center' | 'right';
11
+ align?: 'start' | 'center' | 'end';
12
12
  allowClear?: boolean;
13
13
  prefix?: React.ReactNode;
14
14
  suffix?: React.ReactNode;
@@ -0,0 +1,4 @@
1
+ import { SpinLoading, SpinLoadingProps, DotLoading, DotLoadingProps } from "@trionesdev/antd-mobile-base-react";
2
+ export type { SpinLoadingProps, DotLoadingProps };
3
+ export { SpinLoading };
4
+ export { DotLoading };
@@ -0,0 +1,3 @@
1
+ import { SpinLoading, DotLoading } from "@trionesdev/antd-mobile-base-react";
2
+ export { SpinLoading };
3
+ export { DotLoading };