@mijalowcode/materials 1.0.7 → 1.0.8
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/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -6355,7 +6355,16 @@ var SpinMeta = {
|
|
|
6355
6355
|
category: ComponentCategory.FEEDBACK,
|
|
6356
6356
|
icon: "LoadingOutlined",
|
|
6357
6357
|
canHaveChildren: true,
|
|
6358
|
+
visibleInComponentPanel: true,
|
|
6358
6359
|
props: [
|
|
6360
|
+
{
|
|
6361
|
+
name: "spinning",
|
|
6362
|
+
label: "\u662F\u5426\u52A0\u8F7D\u4E2D",
|
|
6363
|
+
type: PropType.BOOLEAN,
|
|
6364
|
+
bindable: true,
|
|
6365
|
+
defaultValue: false,
|
|
6366
|
+
group: "\u72B6\u6001"
|
|
6367
|
+
},
|
|
6359
6368
|
{
|
|
6360
6369
|
name: "size",
|
|
6361
6370
|
label: "\u5C3A\u5BF8",
|
|
@@ -6375,6 +6384,10 @@ var SpinMeta = {
|
|
|
6375
6384
|
group: "\u57FA\u7840"
|
|
6376
6385
|
}
|
|
6377
6386
|
],
|
|
6387
|
+
defaultProps: {
|
|
6388
|
+
spinning: false,
|
|
6389
|
+
size: "default"
|
|
6390
|
+
},
|
|
6378
6391
|
npm: {
|
|
6379
6392
|
package: "antd",
|
|
6380
6393
|
exportName: "Spin"
|
|
@@ -6382,7 +6395,9 @@ var SpinMeta = {
|
|
|
6382
6395
|
snippet: {
|
|
6383
6396
|
componentName: "Spin",
|
|
6384
6397
|
package: "antd",
|
|
6385
|
-
props: {
|
|
6398
|
+
props: {
|
|
6399
|
+
spinning: false
|
|
6400
|
+
}
|
|
6386
6401
|
}
|
|
6387
6402
|
};
|
|
6388
6403
|
var StatisticMeta = {
|