@piedata/pieui 1.1.19 → 1.1.21
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/cli.js +6 -4
- package/dist/components/Common/IOEventsCard/types/index.d.ts +6 -3
- package/dist/components/Common/IOEventsCard/types/index.d.ts.map +1 -1
- package/dist/components/Common/IOEventsCard/ui/IOEventsCard.d.ts.map +1 -1
- package/dist/components/Containers/TableCard/index.d.ts +2 -0
- package/dist/components/Containers/TableCard/index.d.ts.map +1 -0
- package/dist/components/Containers/TableCard/types/index.d.ts +21 -0
- package/dist/components/Containers/TableCard/types/index.d.ts.map +1 -0
- package/dist/components/Containers/TableCard/ui/ContentCell.d.ts +6 -0
- package/dist/components/Containers/TableCard/ui/ContentCell.d.ts.map +1 -0
- package/dist/components/Containers/TableCard/ui/StringCell.d.ts +6 -0
- package/dist/components/Containers/TableCard/ui/StringCell.d.ts.map +1 -0
- package/dist/components/Containers/TableCard/ui/TableCard.d.ts +4 -0
- package/dist/components/Containers/TableCard/ui/TableCard.d.ts.map +1 -0
- package/dist/components/index.esm.js +31 -31
- package/dist/components/index.js +44 -44
- package/dist/index.esm.js +42 -42
- package/dist/index.js +53 -53
- package/dist/pieui.components.json +103 -0
- package/dist/util/initializeComponents.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -623,5 +623,108 @@
|
|
|
623
623
|
],
|
|
624
624
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
625
625
|
}
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"card": "TableCard",
|
|
629
|
+
"data": {
|
|
630
|
+
"type": "object",
|
|
631
|
+
"properties": {
|
|
632
|
+
"name": {
|
|
633
|
+
"type": "string"
|
|
634
|
+
},
|
|
635
|
+
"headers": {
|
|
636
|
+
"type": "array",
|
|
637
|
+
"items": {
|
|
638
|
+
"type": "array",
|
|
639
|
+
"items": {
|
|
640
|
+
"anyOf": [
|
|
641
|
+
{
|
|
642
|
+
"$ref": "#/definitions/UIConfigType"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"type": "string"
|
|
646
|
+
}
|
|
647
|
+
]
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"rows": {
|
|
652
|
+
"type": "array",
|
|
653
|
+
"items": {
|
|
654
|
+
"type": "array",
|
|
655
|
+
"items": {
|
|
656
|
+
"anyOf": [
|
|
657
|
+
{
|
|
658
|
+
"$ref": "#/definitions/UIConfigType"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"type": "string"
|
|
662
|
+
}
|
|
663
|
+
]
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"rowUrls": {
|
|
668
|
+
"type": "array",
|
|
669
|
+
"items": {
|
|
670
|
+
"type": "string"
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
"useSocketioSupport": {
|
|
674
|
+
"type": "boolean"
|
|
675
|
+
},
|
|
676
|
+
"useCentrifugeSupport": {
|
|
677
|
+
"type": "boolean"
|
|
678
|
+
},
|
|
679
|
+
"useMittSupport": {
|
|
680
|
+
"type": "boolean"
|
|
681
|
+
},
|
|
682
|
+
"centrifugeChannel": {
|
|
683
|
+
"type": "string"
|
|
684
|
+
},
|
|
685
|
+
"columns": {
|
|
686
|
+
"type": "array",
|
|
687
|
+
"items": {
|
|
688
|
+
"type": "string"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"content": {
|
|
692
|
+
"type": "object",
|
|
693
|
+
"additionalProperties": {}
|
|
694
|
+
},
|
|
695
|
+
"sx": {
|
|
696
|
+
"type": "object",
|
|
697
|
+
"additionalProperties": {}
|
|
698
|
+
},
|
|
699
|
+
"sxMap": {
|
|
700
|
+
"type": "object",
|
|
701
|
+
"properties": {
|
|
702
|
+
"table": {},
|
|
703
|
+
"cell": {},
|
|
704
|
+
"row": {}
|
|
705
|
+
},
|
|
706
|
+
"additionalProperties": false,
|
|
707
|
+
"required": [
|
|
708
|
+
"cell",
|
|
709
|
+
"row",
|
|
710
|
+
"table"
|
|
711
|
+
]
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"additionalProperties": false,
|
|
715
|
+
"required": [
|
|
716
|
+
"columns",
|
|
717
|
+
"content",
|
|
718
|
+
"headers",
|
|
719
|
+
"name",
|
|
720
|
+
"rowUrls",
|
|
721
|
+
"rows",
|
|
722
|
+
"sxMap",
|
|
723
|
+
"useCentrifugeSupport",
|
|
724
|
+
"useMittSupport",
|
|
725
|
+
"useSocketioSupport"
|
|
726
|
+
],
|
|
727
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
728
|
+
}
|
|
626
729
|
}
|
|
627
730
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"initializeComponents.d.ts","sourceRoot":"","sources":["../../src/util/initializeComponents.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"initializeComponents.d.ts","sourceRoot":"","sources":["../../src/util/initializeComponents.ts"],"names":[],"mappings":"AAoBA;;;;;;;;;;;GAWG;AACH,wBAAgB,uBAAuB,IAAI,IAAI,CA4G9C;AAED;;GAEG;AACH,wBAAgB,0BAA0B,IAAI,OAAO,CAEpD"}
|