@next-bricks/presentational 1.7.0 → 1.7.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.
@@ -114,60 +114,6 @@
114
114
  "description": "分页",
115
115
  "category": "navigation"
116
116
  },
117
- {
118
- "name": "eo-alert",
119
- "alias": [
120
- "presentational.general-alert"
121
- ],
122
- "properties": [
123
- {
124
- "name": "type",
125
- "description": "警告类型",
126
- "attribute": false,
127
- "type": "AlertType"
128
- },
129
- {
130
- "name": "hasTitle",
131
- "description": "是否显示标题。开启后,可以使用 `title` 插槽",
132
- "type": "boolean"
133
- },
134
- {
135
- "name": "showIcon",
136
- "description": "是否显示提示图标",
137
- "type": "boolean"
138
- },
139
- {
140
- "name": "closable",
141
- "description": "是否显示关闭按钮",
142
- "type": "boolean"
143
- },
144
- {
145
- "name": "localStorageKey",
146
- "description": "以该值和页面 url 作为命名空间,决定是否显示该警告提示",
147
- "type": "string"
148
- },
149
- {
150
- "name": "disableUrlNamespace",
151
- "description": "关闭后仅以 `localStorageKey` 作为命名空间",
152
- "type": "boolean"
153
- }
154
- ],
155
- "events": [],
156
- "slots": [
157
- {
158
- "name": null,
159
- "description": "内容区"
160
- },
161
- {
162
- "name": "title",
163
- "description": "标题"
164
- }
165
- ],
166
- "methods": [],
167
- "parts": [],
168
- "description": "告警提示",
169
- "category": "display-component"
170
- },
171
117
  {
172
118
  "name": "eo-card-item",
173
119
  "properties": [
@@ -329,6 +275,49 @@
329
275
  "description": "分割线",
330
276
  "category": "container-display"
331
277
  },
278
+ {
279
+ "name": "eo-info-card-item",
280
+ "properties": [
281
+ {
282
+ "name": "cardTitle",
283
+ "description": "title",
284
+ "type": "string"
285
+ },
286
+ {
287
+ "name": "description",
288
+ "description": "description",
289
+ "type": "string"
290
+ },
291
+ {
292
+ "name": "url",
293
+ "description": "链接地址",
294
+ "type": "string"
295
+ },
296
+ {
297
+ "name": "cardIcon",
298
+ "description": "图标",
299
+ "attribute": false,
300
+ "type": "IconAvatar"
301
+ },
302
+ {
303
+ "name": "detailList",
304
+ "description": "详细列表",
305
+ "attribute": false,
306
+ "type": "InfoCardDetail[]"
307
+ },
308
+ {
309
+ "name": "target",
310
+ "description": "链接跳转目标",
311
+ "type": "LinkProps[\"target\"]"
312
+ }
313
+ ],
314
+ "events": [],
315
+ "slots": [],
316
+ "methods": [],
317
+ "parts": [],
318
+ "description": "信息卡片",
319
+ "category": "card-info"
320
+ },
332
321
  {
333
322
  "name": "eo-code-display",
334
323
  "alias": [
@@ -387,47 +376,58 @@
387
376
  "category": "display-component"
388
377
  },
389
378
  {
390
- "name": "eo-info-card-item",
379
+ "name": "eo-alert",
380
+ "alias": [
381
+ "presentational.general-alert"
382
+ ],
391
383
  "properties": [
392
384
  {
393
- "name": "cardTitle",
394
- "description": "title",
395
- "type": "string"
385
+ "name": "type",
386
+ "description": "警告类型",
387
+ "attribute": false,
388
+ "type": "AlertType"
396
389
  },
397
390
  {
398
- "name": "description",
399
- "description": "description",
400
- "type": "string"
391
+ "name": "hasTitle",
392
+ "description": "是否显示标题。开启后,可以使用 `title` 插槽",
393
+ "type": "boolean"
401
394
  },
402
395
  {
403
- "name": "url",
404
- "description": "链接地址",
405
- "type": "string"
396
+ "name": "showIcon",
397
+ "description": "是否显示提示图标",
398
+ "type": "boolean"
406
399
  },
407
400
  {
408
- "name": "cardIcon",
409
- "description": "图标",
410
- "attribute": false,
411
- "type": "IconAvatar"
401
+ "name": "closable",
402
+ "description": "是否显示关闭按钮",
403
+ "type": "boolean"
412
404
  },
413
405
  {
414
- "name": "detailList",
415
- "description": "详细列表",
416
- "attribute": false,
417
- "type": "InfoCardDetail[]"
406
+ "name": "localStorageKey",
407
+ "description": "以该值和页面 url 作为命名空间,决定是否显示该警告提示",
408
+ "type": "string"
418
409
  },
419
410
  {
420
- "name": "target",
421
- "description": "链接跳转目标",
422
- "type": "LinkProps[\"target\"]"
411
+ "name": "disableUrlNamespace",
412
+ "description": "关闭后仅以 `localStorageKey` 作为命名空间",
413
+ "type": "boolean"
423
414
  }
424
415
  ],
425
416
  "events": [],
426
- "slots": [],
417
+ "slots": [
418
+ {
419
+ "name": null,
420
+ "description": "内容区"
421
+ },
422
+ {
423
+ "name": "title",
424
+ "description": "标题"
425
+ }
426
+ ],
427
427
  "methods": [],
428
428
  "parts": [],
429
- "description": "信息卡片",
430
- "category": "card-info"
429
+ "description": "告警提示",
430
+ "category": "display-component"
431
431
  },
432
432
  {
433
433
  "name": "eo-humanize-time",
@@ -482,92 +482,6 @@
482
482
  "parts": [],
483
483
  "description": "人性化时间展示,可显示完整时间、相对时间、未来时间、耗时等,支持自定义输入值格式和输出格式。"
484
484
  },
485
- {
486
- "name": "eo-loading-step",
487
- "properties": [
488
- {
489
- "name": "visible",
490
- "description": "是否可见",
491
- "type": "boolean"
492
- },
493
- {
494
- "name": "width",
495
- "description": "宽度",
496
- "type": "string"
497
- },
498
- {
499
- "name": "stepTitle",
500
- "description": "步骤标题",
501
- "type": "string"
502
- },
503
- {
504
- "name": "stepList",
505
- "description": "步骤列表",
506
- "attribute": false,
507
- "type": "StepItem[]"
508
- },
509
- {
510
- "name": "curStep",
511
- "description": "当前步骤",
512
- "type": "string"
513
- }
514
- ],
515
- "events": [
516
- {
517
- "name": "open",
518
- "description": "打开事件",
519
- "detail": {
520
- "type": "void"
521
- }
522
- },
523
- {
524
- "name": "close",
525
- "description": "关闭事件",
526
- "detail": {
527
- "type": "void"
528
- }
529
- }
530
- ],
531
- "slots": [],
532
- "methods": [
533
- {
534
- "name": "open",
535
- "params": [],
536
- "description": "打开",
537
- "returns": {}
538
- },
539
- {
540
- "name": "close",
541
- "params": [],
542
- "description": "关闭",
543
- "returns": {}
544
- }
545
- ],
546
- "parts": [],
547
- "description": "加载步骤框"
548
- },
549
- {
550
- "name": "eo-current-time",
551
- "properties": [
552
- {
553
- "name": "format",
554
- "description": "时间格式",
555
- "default": "\"YYYY-MM-DD HH:mm:ss\"",
556
- "type": "string"
557
- },
558
- {
559
- "name": "icon",
560
- "description": "前置图标",
561
- "attribute": false,
562
- "type": "GeneralIconProps"
563
- }
564
- ],
565
- "events": [],
566
- "slots": [],
567
- "methods": [],
568
- "parts": [],
569
- "description": "构件 `eo-current-time`"
570
- },
571
485
  {
572
486
  "name": "eo-statistics-card",
573
487
  "properties": [
@@ -658,6 +572,70 @@
658
572
  "parts": [],
659
573
  "description": "统计卡片"
660
574
  },
575
+ {
576
+ "name": "eo-loading-step",
577
+ "properties": [
578
+ {
579
+ "name": "visible",
580
+ "description": "是否可见",
581
+ "type": "boolean"
582
+ },
583
+ {
584
+ "name": "width",
585
+ "description": "宽度",
586
+ "type": "string"
587
+ },
588
+ {
589
+ "name": "stepTitle",
590
+ "description": "步骤标题",
591
+ "type": "string"
592
+ },
593
+ {
594
+ "name": "stepList",
595
+ "description": "步骤列表",
596
+ "attribute": false,
597
+ "type": "StepItem[]"
598
+ },
599
+ {
600
+ "name": "curStep",
601
+ "description": "当前步骤",
602
+ "type": "string"
603
+ }
604
+ ],
605
+ "events": [
606
+ {
607
+ "name": "open",
608
+ "description": "打开事件",
609
+ "detail": {
610
+ "type": "void"
611
+ }
612
+ },
613
+ {
614
+ "name": "close",
615
+ "description": "关闭事件",
616
+ "detail": {
617
+ "type": "void"
618
+ }
619
+ }
620
+ ],
621
+ "slots": [],
622
+ "methods": [
623
+ {
624
+ "name": "open",
625
+ "params": [],
626
+ "description": "打开",
627
+ "returns": {}
628
+ },
629
+ {
630
+ "name": "close",
631
+ "params": [],
632
+ "description": "关闭",
633
+ "returns": {}
634
+ }
635
+ ],
636
+ "parts": [],
637
+ "description": "加载步骤框"
638
+ },
661
639
  {
662
640
  "name": "eo-carousel-text",
663
641
  "properties": [
@@ -697,6 +675,28 @@
697
675
  "methods": [],
698
676
  "parts": [],
699
677
  "description": "构件 `eo-carousel-text`"
678
+ },
679
+ {
680
+ "name": "eo-current-time",
681
+ "properties": [
682
+ {
683
+ "name": "format",
684
+ "description": "时间格式",
685
+ "default": "\"YYYY-MM-DD HH:mm:ss\"",
686
+ "type": "string"
687
+ },
688
+ {
689
+ "name": "icon",
690
+ "description": "前置图标",
691
+ "attribute": false,
692
+ "type": "GeneralIconProps"
693
+ }
694
+ ],
695
+ "events": [],
696
+ "slots": [],
697
+ "methods": [],
698
+ "parts": [],
699
+ "description": "构件 `eo-current-time`"
700
700
  }
701
701
  ],
702
702
  "providers": []