@pisell/materials 2.2.29 → 2.2.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +2 -2
- package/build/lowcode/preview.js +7 -7
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +10 -10
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +17 -17
- package/es/components/pisellFloatingPanel/index.d.ts +17 -0
- package/es/components/pisellFloatingPanel/index.js +89 -0
- package/es/components/pisellFloatingPanel/index.less +30 -0
- package/es/components/pisellStatisticList/index.d.ts +18 -0
- package/es/components/pisellStatisticList/index.js +67 -0
- package/es/components/pisellStatisticList/index.less +47 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +3 -1
- package/lib/components/pisellFloatingPanel/index.d.ts +17 -0
- package/lib/components/pisellFloatingPanel/index.js +113 -0
- package/lib/components/pisellFloatingPanel/index.less +30 -0
- package/lib/components/pisellStatisticList/index.d.ts +18 -0
- package/lib/components/pisellStatisticList/index.js +109 -0
- package/lib/components/pisellStatisticList/index.less +47 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +6 -0
- package/lowcode/pisell-floating-panel/meta.ts +232 -0
- package/lowcode/pisell-modal.information/meta.ts +5 -0
- package/lowcode/pisell-statistic-list/meta.ts +264 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -85,6 +85,7 @@ __export(src_exports, {
|
|
|
85
85
|
PisellCountdown: () => import_pisellCountdown.default,
|
|
86
86
|
PisellDatePicker: () => import_pisellDatePicker.default,
|
|
87
87
|
PisellEmpty: () => import_pisellEmpty.default,
|
|
88
|
+
PisellFloatingPanel: () => import_pisellFloatingPanel.default,
|
|
88
89
|
PisellInformationEntry: () => import_pisellInformationEntry.default,
|
|
89
90
|
PisellInput: () => import_pisellInput.default,
|
|
90
91
|
PisellLoading: () => import_pisellLoading.default,
|
|
@@ -93,6 +94,7 @@ __export(src_exports, {
|
|
|
93
94
|
PisellPriceKeyboard: () => import_Amount.default,
|
|
94
95
|
PisellRow: () => import_pisellRow.default,
|
|
95
96
|
PisellScan: () => import_pisellScan.default,
|
|
97
|
+
PisellStatisticList: () => import_pisellStatisticList.default,
|
|
96
98
|
PisellText: () => import_pisellText.default,
|
|
97
99
|
PisellToast: () => import_pisellToast.default,
|
|
98
100
|
PisellTooltip: () => import_pisellTooltip.default,
|
|
@@ -248,6 +250,8 @@ var import_Amount = __toESM(require("./components/virtual-keyboard/Amount"));
|
|
|
248
250
|
var import_Number = __toESM(require("./components/virtual-keyboard/Number"));
|
|
249
251
|
var import_pisellAdjustPrice = __toESM(require("./components/pisellAdjustPrice"));
|
|
250
252
|
var import_PisellAdjustPriceInputNumber = __toESM(require("./components/pisellAdjustPrice/PisellAdjustPriceInputNumber"));
|
|
253
|
+
var import_pisellStatisticList = __toESM(require("./components/pisellStatisticList"));
|
|
254
|
+
var import_pisellFloatingPanel = __toESM(require("./components/pisellFloatingPanel"));
|
|
251
255
|
// Annotate the CommonJS export names for ESM import in node:
|
|
252
256
|
0 && (module.exports = {
|
|
253
257
|
Affix,
|
|
@@ -306,6 +310,7 @@ var import_PisellAdjustPriceInputNumber = __toESM(require("./components/pisellAd
|
|
|
306
310
|
PisellCountdown,
|
|
307
311
|
PisellDatePicker,
|
|
308
312
|
PisellEmpty,
|
|
313
|
+
PisellFloatingPanel,
|
|
309
314
|
PisellInformationEntry,
|
|
310
315
|
PisellInput,
|
|
311
316
|
PisellLoading,
|
|
@@ -314,6 +319,7 @@ var import_PisellAdjustPriceInputNumber = __toESM(require("./components/pisellAd
|
|
|
314
319
|
PisellPriceKeyboard,
|
|
315
320
|
PisellRow,
|
|
316
321
|
PisellScan,
|
|
322
|
+
PisellStatisticList,
|
|
317
323
|
PisellText,
|
|
318
324
|
PisellToast,
|
|
319
325
|
PisellTooltip,
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import { ComponentMetadata, Snippet } from '@alilc/lowcode-types';
|
|
2
|
+
|
|
3
|
+
const PisellFloatingPanelMeta: ComponentMetadata = {
|
|
4
|
+
componentName: 'PisellFloatingPanel',
|
|
5
|
+
title: 'PisellFloatingPanel',
|
|
6
|
+
docUrl: '',
|
|
7
|
+
screenshot: '',
|
|
8
|
+
devMode: 'proCode',
|
|
9
|
+
npm: {
|
|
10
|
+
package: '@pisell/materials',
|
|
11
|
+
version: '3.0.48',
|
|
12
|
+
exportName: 'PisellFloatingPanel',
|
|
13
|
+
main: 'src/index.tsx',
|
|
14
|
+
destructuring: true,
|
|
15
|
+
subName: '',
|
|
16
|
+
},
|
|
17
|
+
configure: {
|
|
18
|
+
props: [
|
|
19
|
+
{
|
|
20
|
+
title: {
|
|
21
|
+
label: {
|
|
22
|
+
type: 'i18n',
|
|
23
|
+
'en-US': 'fullHeight',
|
|
24
|
+
'zh-CN': 'fullHeight',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
name: 'fullHeight',
|
|
28
|
+
setter: {
|
|
29
|
+
componentName: 'MixedSetter',
|
|
30
|
+
props: {
|
|
31
|
+
setters: [
|
|
32
|
+
{
|
|
33
|
+
componentName: 'StringSetter',
|
|
34
|
+
isRequired: false,
|
|
35
|
+
initialValue: '',
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
title: {
|
|
43
|
+
label: {
|
|
44
|
+
type: 'i18n',
|
|
45
|
+
'en-US': 'retractHeight',
|
|
46
|
+
'zh-CN': 'retractHeight',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
name: 'retractHeight',
|
|
50
|
+
setter: {
|
|
51
|
+
componentName: 'MixedSetter',
|
|
52
|
+
props: {
|
|
53
|
+
setters: [
|
|
54
|
+
{
|
|
55
|
+
componentName: 'StringSetter',
|
|
56
|
+
isRequired: false,
|
|
57
|
+
initialValue: '',
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
title: {
|
|
65
|
+
label: {
|
|
66
|
+
type: 'i18n',
|
|
67
|
+
'en-US': 'width',
|
|
68
|
+
'zh-CN': 'width',
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
name: 'width',
|
|
72
|
+
setter: {
|
|
73
|
+
componentName: 'MixedSetter',
|
|
74
|
+
props: {
|
|
75
|
+
setters: [
|
|
76
|
+
{
|
|
77
|
+
componentName: 'StringSetter',
|
|
78
|
+
isRequired: false,
|
|
79
|
+
initialValue: '',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
title: {
|
|
87
|
+
label: {
|
|
88
|
+
type: 'i18n',
|
|
89
|
+
'en-US': 'open',
|
|
90
|
+
'zh-CN': 'open',
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
name: 'open',
|
|
94
|
+
setter: {
|
|
95
|
+
componentName: 'MixedSetter',
|
|
96
|
+
props: {
|
|
97
|
+
setters: [
|
|
98
|
+
{
|
|
99
|
+
componentName: 'BoolSetter',
|
|
100
|
+
isRequired: false,
|
|
101
|
+
initialValue: false,
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
title: {
|
|
109
|
+
label: {
|
|
110
|
+
type: 'i18n',
|
|
111
|
+
'en-US': 'onOpenChange',
|
|
112
|
+
'zh-CN': 'onOpenChange',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
name: 'onOpenChange',
|
|
116
|
+
setter: {
|
|
117
|
+
componentName: 'MixedSetter',
|
|
118
|
+
props: {
|
|
119
|
+
setters: [
|
|
120
|
+
{
|
|
121
|
+
componentName: 'FunctionSetter',
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
title: {
|
|
129
|
+
label: {
|
|
130
|
+
type: 'i18n',
|
|
131
|
+
'en-US': 'defaultOpen',
|
|
132
|
+
'zh-CN': 'defaultOpen',
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
name: 'defaultOpen',
|
|
136
|
+
setter: {
|
|
137
|
+
componentName: 'MixedSetter',
|
|
138
|
+
props: {
|
|
139
|
+
setters: [
|
|
140
|
+
{
|
|
141
|
+
componentName: 'BoolSetter',
|
|
142
|
+
isRequired: false,
|
|
143
|
+
initialValue: false,
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
name: 'retractSlot',
|
|
151
|
+
title: {
|
|
152
|
+
label: '收起插槽',
|
|
153
|
+
},
|
|
154
|
+
propType: { type: 'oneOfType', value: ['node'] },
|
|
155
|
+
setter: [
|
|
156
|
+
{
|
|
157
|
+
componentName: 'SlotSetter',
|
|
158
|
+
initialValue: {
|
|
159
|
+
type: 'JSSlot',
|
|
160
|
+
value: [],
|
|
161
|
+
},
|
|
162
|
+
defaultValue: null,
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
title: {
|
|
168
|
+
label: {
|
|
169
|
+
type: 'i18n',
|
|
170
|
+
'en-US': 'isFloat',
|
|
171
|
+
'zh-CN': 'isFloat',
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
name: 'isFloat',
|
|
175
|
+
setter: {
|
|
176
|
+
componentName: 'MixedSetter',
|
|
177
|
+
props: {
|
|
178
|
+
setters: [
|
|
179
|
+
{
|
|
180
|
+
componentName: 'BoolSetter',
|
|
181
|
+
isRequired: false,
|
|
182
|
+
initialValue: false,
|
|
183
|
+
},
|
|
184
|
+
],
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: 'retractIconStyle',
|
|
190
|
+
title: 'retractIconStyle',
|
|
191
|
+
type: 'group',
|
|
192
|
+
extraProps: {
|
|
193
|
+
display: 'entry',
|
|
194
|
+
},
|
|
195
|
+
items: [
|
|
196
|
+
{
|
|
197
|
+
name: 'retractIconStyle',
|
|
198
|
+
title: {
|
|
199
|
+
label: '样式设置',
|
|
200
|
+
tip: 'retractIconStyle | 可用于设置收起按钮图标样式',
|
|
201
|
+
},
|
|
202
|
+
setter: 'StyleSetter',
|
|
203
|
+
extraProps: {
|
|
204
|
+
display: 'block',
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
},
|
|
209
|
+
],
|
|
210
|
+
supports: {
|
|
211
|
+
style: true,
|
|
212
|
+
},
|
|
213
|
+
component: {
|
|
214
|
+
isContainer: true,
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
};
|
|
218
|
+
const snippets: Snippet[] = [
|
|
219
|
+
{
|
|
220
|
+
title: 'PisellFloatingPanel',
|
|
221
|
+
screenshot: '',
|
|
222
|
+
schema: {
|
|
223
|
+
componentName: 'PisellFloatingPanel',
|
|
224
|
+
props: {},
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
];
|
|
228
|
+
|
|
229
|
+
export default {
|
|
230
|
+
...PisellFloatingPanelMeta,
|
|
231
|
+
snippets,
|
|
232
|
+
};
|
|
@@ -77,6 +77,11 @@ export default {
|
|
|
77
77
|
propType: { type: "oneOfType", value: ["string", "node"] },
|
|
78
78
|
setter: ["PisellI18nSetter", "SlotSetter"],
|
|
79
79
|
},
|
|
80
|
+
{
|
|
81
|
+
name: "cancelButtonProps",
|
|
82
|
+
title: { label: "取消按钮配置", tip: "详见 antd Modal cancelButtonProps" },
|
|
83
|
+
setter: [ "JSONSetter"],
|
|
84
|
+
},
|
|
80
85
|
],
|
|
81
86
|
configure: {
|
|
82
87
|
component: {
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import { ComponentMetadata, Snippet } from '@alilc/lowcode-types';
|
|
2
|
+
|
|
3
|
+
const PisellStatisticListMeta: ComponentMetadata = {
|
|
4
|
+
componentName: 'PisellStatisticList',
|
|
5
|
+
title: 'PisellStatisticList',
|
|
6
|
+
docUrl: '',
|
|
7
|
+
screenshot: '',
|
|
8
|
+
devMode: 'proCode',
|
|
9
|
+
npm: {
|
|
10
|
+
package: '@pisell/materials',
|
|
11
|
+
version: '3.0.48',
|
|
12
|
+
exportName: 'PisellStatisticList',
|
|
13
|
+
main: 'src/index.tsx',
|
|
14
|
+
destructuring: true,
|
|
15
|
+
subName: '',
|
|
16
|
+
},
|
|
17
|
+
configure: {
|
|
18
|
+
props: [
|
|
19
|
+
{
|
|
20
|
+
title: {
|
|
21
|
+
label: {
|
|
22
|
+
type: 'i18n',
|
|
23
|
+
'en-US': 'backgroundColors',
|
|
24
|
+
'zh-CN': 'backgroundColors',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
name: 'backgroundColors',
|
|
28
|
+
setter: {
|
|
29
|
+
componentName: 'MixedSetter',
|
|
30
|
+
props: {
|
|
31
|
+
setters: [
|
|
32
|
+
{
|
|
33
|
+
componentName: 'ArraySetter',
|
|
34
|
+
props: {
|
|
35
|
+
itemSetter: {
|
|
36
|
+
componentName: 'StringSetter',
|
|
37
|
+
isRequired: false,
|
|
38
|
+
initialValue: '',
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
initialValue: [],
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
title: {
|
|
49
|
+
label: {
|
|
50
|
+
type: 'i18n',
|
|
51
|
+
'en-US': 'labelColor',
|
|
52
|
+
'zh-CN': 'labelColor',
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
name: 'labelColor',
|
|
56
|
+
setter: {
|
|
57
|
+
componentName: 'MixedSetter',
|
|
58
|
+
props: {
|
|
59
|
+
setters: [
|
|
60
|
+
{
|
|
61
|
+
componentName: 'StringSetter',
|
|
62
|
+
isRequired: false,
|
|
63
|
+
initialValue: '',
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
title: {
|
|
71
|
+
label: {
|
|
72
|
+
type: 'i18n',
|
|
73
|
+
'en-US': 'valueColor',
|
|
74
|
+
'zh-CN': 'valueColor',
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
name: 'valueColor',
|
|
78
|
+
setter: {
|
|
79
|
+
componentName: 'MixedSetter',
|
|
80
|
+
props: {
|
|
81
|
+
setters: [
|
|
82
|
+
{
|
|
83
|
+
componentName: 'StringSetter',
|
|
84
|
+
isRequired: false,
|
|
85
|
+
initialValue: '',
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: {
|
|
93
|
+
label: {
|
|
94
|
+
type: 'i18n',
|
|
95
|
+
'en-US': 'data',
|
|
96
|
+
'zh-CN': 'data',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
name: 'data',
|
|
100
|
+
setter: {
|
|
101
|
+
componentName: 'ArraySetter',
|
|
102
|
+
props: {
|
|
103
|
+
itemSetter: {
|
|
104
|
+
componentName: 'ObjectSetter',
|
|
105
|
+
props: {
|
|
106
|
+
config: {
|
|
107
|
+
items: [
|
|
108
|
+
{
|
|
109
|
+
title: {
|
|
110
|
+
label: {
|
|
111
|
+
type: 'i18n',
|
|
112
|
+
'en-US': 'label',
|
|
113
|
+
'zh-CN': 'label',
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
name: 'label',
|
|
117
|
+
setter: {
|
|
118
|
+
componentName: 'StringSetter',
|
|
119
|
+
isRequired: true,
|
|
120
|
+
initialValue: '',
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
title: {
|
|
125
|
+
label: {
|
|
126
|
+
type: 'i18n',
|
|
127
|
+
'en-US': 'value',
|
|
128
|
+
'zh-CN': 'value',
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
name: 'value',
|
|
132
|
+
setter: {
|
|
133
|
+
componentName: 'StringSetter',
|
|
134
|
+
isRequired: true,
|
|
135
|
+
initialValue: '',
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
title: {
|
|
140
|
+
label: 'tip',
|
|
141
|
+
},
|
|
142
|
+
name: 'tip',
|
|
143
|
+
setter: {
|
|
144
|
+
componentName: 'StringSetter',
|
|
145
|
+
initialValue: '',
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
title: {
|
|
150
|
+
label: {
|
|
151
|
+
type: 'i18n',
|
|
152
|
+
'en-US': 'children',
|
|
153
|
+
'zh-CN': 'children',
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
name: 'children',
|
|
157
|
+
setter: {
|
|
158
|
+
componentName: 'MixedSetter',
|
|
159
|
+
props: {
|
|
160
|
+
setters: [
|
|
161
|
+
{
|
|
162
|
+
componentName: 'ObjectSetter',
|
|
163
|
+
props: {
|
|
164
|
+
config: {
|
|
165
|
+
extraSetter: {
|
|
166
|
+
componentName: 'MixedSetter',
|
|
167
|
+
isRequired: false,
|
|
168
|
+
props: {},
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
isRequired: false,
|
|
173
|
+
initialValue: {},
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
componentName: 'ArraySetter',
|
|
177
|
+
props: {
|
|
178
|
+
itemSetter: {
|
|
179
|
+
componentName: 'ObjectSetter',
|
|
180
|
+
props: {
|
|
181
|
+
config: {
|
|
182
|
+
items: [
|
|
183
|
+
{
|
|
184
|
+
title: {
|
|
185
|
+
label: {
|
|
186
|
+
type: 'i18n',
|
|
187
|
+
'en-US': 'label',
|
|
188
|
+
'zh-CN': 'label',
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
name: 'label',
|
|
192
|
+
setter: {
|
|
193
|
+
componentName: 'StringSetter',
|
|
194
|
+
isRequired: true,
|
|
195
|
+
initialValue: '',
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
title: {
|
|
200
|
+
label: {
|
|
201
|
+
type: 'i18n',
|
|
202
|
+
'en-US': 'value',
|
|
203
|
+
'zh-CN': 'value',
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
name: 'value',
|
|
207
|
+
setter: {
|
|
208
|
+
componentName: 'StringSetter',
|
|
209
|
+
isRequired: true,
|
|
210
|
+
initialValue: '',
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
],
|
|
214
|
+
extraSetter: {
|
|
215
|
+
componentName: 'MixedSetter',
|
|
216
|
+
isRequired: false,
|
|
217
|
+
props: {},
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
initialValue: [],
|
|
224
|
+
},
|
|
225
|
+
],
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
extraSetter: {
|
|
231
|
+
componentName: 'MixedSetter',
|
|
232
|
+
isRequired: false,
|
|
233
|
+
props: {},
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
},
|
|
238
|
+
},
|
|
239
|
+
isRequired: true,
|
|
240
|
+
initialValue: [],
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
],
|
|
244
|
+
supports: {
|
|
245
|
+
style: true,
|
|
246
|
+
},
|
|
247
|
+
component: {},
|
|
248
|
+
},
|
|
249
|
+
};
|
|
250
|
+
const snippets: Snippet[] = [
|
|
251
|
+
{
|
|
252
|
+
title: 'PisellStatisticList',
|
|
253
|
+
screenshot: '',
|
|
254
|
+
schema: {
|
|
255
|
+
componentName: 'PisellStatisticList',
|
|
256
|
+
props: {},
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
];
|
|
260
|
+
|
|
261
|
+
export default {
|
|
262
|
+
...PisellStatisticListMeta,
|
|
263
|
+
snippets,
|
|
264
|
+
};
|