@3mo/data-grid 0.9.18 → 0.9.20-preview.0
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/CsvGenerator.d.ts +4 -1
- package/dist/CsvGenerator.d.ts.map +1 -1
- package/dist/CsvGenerator.js +56 -23
- package/dist/DataGrid.d.ts +2 -1
- package/dist/DataGrid.d.ts.map +1 -1
- package/dist/DataGrid.js +15 -6
- package/dist/DataGridCell.d.ts.map +1 -1
- package/dist/DataGridCell.js +5 -10
- package/dist/DataGridColumn.d.ts +3 -0
- package/dist/DataGridColumn.d.ts.map +1 -1
- package/dist/DataGridColumn.js +7 -0
- package/dist/DataGridFooter.d.ts.map +1 -1
- package/dist/DataGridFooter.js +6 -23
- package/dist/DataGridPrimaryContextMenuItem.js +5 -5
- package/dist/columns/DataGridColumnBoolean.d.ts +1 -0
- package/dist/columns/DataGridColumnBoolean.d.ts.map +1 -1
- package/dist/columns/DataGridColumnBoolean.js +4 -0
- package/dist/columns/DataGridColumnComponent.d.ts +3 -0
- package/dist/columns/DataGridColumnComponent.d.ts.map +1 -1
- package/dist/columns/DataGridColumnComponent.js +13 -0
- package/dist/columns/DataGridColumnImage.d.ts +2 -0
- package/dist/columns/DataGridColumnImage.d.ts.map +1 -1
- package/dist/columns/DataGridColumnImage.js +12 -5
- package/dist/columns/date-time/DataGridColumnDate.d.ts +1 -0
- package/dist/columns/date-time/DataGridColumnDate.d.ts.map +1 -1
- package/dist/columns/date-time/DataGridColumnDate.js +3 -0
- package/dist/columns/date-time/DataGridColumnDateTime.d.ts +1 -0
- package/dist/columns/date-time/DataGridColumnDateTime.d.ts.map +1 -1
- package/dist/columns/date-time/DataGridColumnDateTime.js +3 -0
- package/dist/columns/number/DataGridColumnCurrency.d.ts +3 -0
- package/dist/columns/number/DataGridColumnCurrency.d.ts.map +1 -1
- package/dist/columns/number/DataGridColumnCurrency.js +18 -0
- package/dist/columns/number/DataGridColumnPercent.d.ts +2 -0
- package/dist/columns/number/DataGridColumnPercent.d.ts.map +1 -1
- package/dist/columns/number/DataGridColumnPercent.js +6 -0
- package/dist/custom-elements.json +12 -4655
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/excel.svg.d.ts +0 -3
- package/dist/excel.svg.d.ts.map +0 -1
- package/dist/excel.svg.js +0 -48
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "mo-data-grid",
|
|
6
|
-
"path": ".\\packages
|
|
6
|
+
"path": ".\\packages/DataGrid/DataGrid.ts",
|
|
7
7
|
"attributes": [
|
|
8
8
|
{
|
|
9
9
|
"name": "data",
|
|
@@ -232,6 +232,11 @@
|
|
|
232
232
|
"name": "rows",
|
|
233
233
|
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
234
234
|
},
|
|
235
|
+
{
|
|
236
|
+
"name": "isGenerating",
|
|
237
|
+
"type": "boolean",
|
|
238
|
+
"default": "false"
|
|
239
|
+
},
|
|
235
240
|
{
|
|
236
241
|
"name": "hasSelection",
|
|
237
242
|
"type": "boolean"
|
|
@@ -656,7 +661,7 @@
|
|
|
656
661
|
},
|
|
657
662
|
{
|
|
658
663
|
"name": "mo-data-grid-cell",
|
|
659
|
-
"path": ".\\packages
|
|
664
|
+
"path": ".\\packages/DataGrid/DataGridCell.ts",
|
|
660
665
|
"attributes": [
|
|
661
666
|
{
|
|
662
667
|
"name": "value",
|
|
@@ -707,7 +712,7 @@
|
|
|
707
712
|
},
|
|
708
713
|
{
|
|
709
714
|
"name": "mo-data-grid-footer",
|
|
710
|
-
"path": ".\\packages
|
|
715
|
+
"path": ".\\packages/DataGrid/DataGridFooter.ts",
|
|
711
716
|
"attributes": [
|
|
712
717
|
{
|
|
713
718
|
"name": "dataGrid",
|
|
@@ -735,7 +740,7 @@
|
|
|
735
740
|
},
|
|
736
741
|
{
|
|
737
742
|
"name": "mo-data-grid-header",
|
|
738
|
-
"path": ".\\packages
|
|
743
|
+
"path": ".\\packages/DataGrid/DataGridHeader.ts",
|
|
739
744
|
"attributes": [
|
|
740
745
|
{
|
|
741
746
|
"name": "dataGrid",
|
|
@@ -771,7 +776,7 @@
|
|
|
771
776
|
},
|
|
772
777
|
{
|
|
773
778
|
"name": "mo-data-grid-header-separator",
|
|
774
|
-
"path": ".\\packages
|
|
779
|
+
"path": ".\\packages/DataGrid/DataGridHeaderSeparator.ts",
|
|
775
780
|
"attributes": [
|
|
776
781
|
{
|
|
777
782
|
"name": "dataGrid",
|
|
@@ -797,7 +802,7 @@
|
|
|
797
802
|
},
|
|
798
803
|
{
|
|
799
804
|
"name": "mo-data-grid-primary-context-menu-item",
|
|
800
|
-
"path": ".\\packages
|
|
805
|
+
"path": ".\\packages/DataGrid/DataGridPrimaryContextMenuItem.ts",
|
|
801
806
|
"attributes": [
|
|
802
807
|
{
|
|
803
808
|
"name": "open",
|
|
@@ -888,7 +893,7 @@
|
|
|
888
893
|
},
|
|
889
894
|
{
|
|
890
895
|
"name": "mo-data-grid-side-panel",
|
|
891
|
-
"path": ".\\packages
|
|
896
|
+
"path": ".\\packages/DataGrid/DataGridSidePanel.ts",
|
|
892
897
|
"attributes": [
|
|
893
898
|
{
|
|
894
899
|
"name": "dataGrid",
|
|
@@ -911,4654 +916,6 @@
|
|
|
911
916
|
"type": "DataGridSidePanelTab | undefined"
|
|
912
917
|
}
|
|
913
918
|
]
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"name": "mo-data-grid-column-boolean",
|
|
917
|
-
"path": ".\\packages\\DataGrid\\columns\\DataGridColumnBoolean.ts",
|
|
918
|
-
"attributes": [
|
|
919
|
-
{
|
|
920
|
-
"name": "trueIcon",
|
|
921
|
-
"description": "Icon to show for true values",
|
|
922
|
-
"type": "MaterialIcon",
|
|
923
|
-
"default": "\"done\""
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
"name": "falseIcon",
|
|
927
|
-
"description": "Icon to show for false values",
|
|
928
|
-
"type": "MaterialIcon",
|
|
929
|
-
"default": "\"clear\""
|
|
930
|
-
},
|
|
931
|
-
{
|
|
932
|
-
"name": "trueIconColor",
|
|
933
|
-
"description": "Color of the true icon",
|
|
934
|
-
"type": "string",
|
|
935
|
-
"default": "\"var(--mo-color-accent)\""
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
"name": "falseIconColor",
|
|
939
|
-
"description": "Color of the false icon",
|
|
940
|
-
"type": "string",
|
|
941
|
-
"default": "\"var(--mo-color-gray)\""
|
|
942
|
-
},
|
|
943
|
-
{
|
|
944
|
-
"name": "dataGrid",
|
|
945
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
"name": "width",
|
|
949
|
-
"description": "The width of the column",
|
|
950
|
-
"type": "string",
|
|
951
|
-
"default": "\"max-content\""
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
"name": "hidden",
|
|
955
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
956
|
-
"type": "boolean",
|
|
957
|
-
"default": "false"
|
|
958
|
-
},
|
|
959
|
-
{
|
|
960
|
-
"name": "heading",
|
|
961
|
-
"description": "The heading of the column",
|
|
962
|
-
"type": "string",
|
|
963
|
-
"default": "\"\""
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
"name": "textAlign",
|
|
967
|
-
"description": "The text alignment of the column",
|
|
968
|
-
"type": "DataGridColumnAlignment",
|
|
969
|
-
"default": "\"start\""
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
"name": "description",
|
|
973
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
974
|
-
"type": "string | undefined"
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
"name": "dataSelector",
|
|
978
|
-
"description": "The data selector of the column",
|
|
979
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"name": "sortDataSelector",
|
|
983
|
-
"description": "The data selector of the column",
|
|
984
|
-
"type": "KeyPathOf<TData>"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"name": "nonSortable",
|
|
988
|
-
"description": "Whether the column is sortable",
|
|
989
|
-
"type": "boolean",
|
|
990
|
-
"default": "false"
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"name": "nonEditable",
|
|
994
|
-
"description": "Whether the column is editable",
|
|
995
|
-
"type": "boolean | Predicate<TData>",
|
|
996
|
-
"default": "false"
|
|
997
|
-
},
|
|
998
|
-
{
|
|
999
|
-
"name": "sticky",
|
|
1000
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1001
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1002
|
-
}
|
|
1003
|
-
],
|
|
1004
|
-
"properties": [
|
|
1005
|
-
{
|
|
1006
|
-
"name": "trueIcon",
|
|
1007
|
-
"attribute": "trueIcon",
|
|
1008
|
-
"description": "Icon to show for true values",
|
|
1009
|
-
"type": "MaterialIcon",
|
|
1010
|
-
"default": "\"done\""
|
|
1011
|
-
},
|
|
1012
|
-
{
|
|
1013
|
-
"name": "falseIcon",
|
|
1014
|
-
"attribute": "falseIcon",
|
|
1015
|
-
"description": "Icon to show for false values",
|
|
1016
|
-
"type": "MaterialIcon",
|
|
1017
|
-
"default": "\"clear\""
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"name": "trueIconColor",
|
|
1021
|
-
"attribute": "trueIconColor",
|
|
1022
|
-
"description": "Color of the true icon",
|
|
1023
|
-
"type": "string",
|
|
1024
|
-
"default": "\"var(--mo-color-accent)\""
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"name": "falseIconColor",
|
|
1028
|
-
"attribute": "falseIconColor",
|
|
1029
|
-
"description": "Color of the false icon",
|
|
1030
|
-
"type": "string",
|
|
1031
|
-
"default": "\"var(--mo-color-gray)\""
|
|
1032
|
-
},
|
|
1033
|
-
{
|
|
1034
|
-
"name": "dataGrid",
|
|
1035
|
-
"attribute": "dataGrid",
|
|
1036
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1037
|
-
},
|
|
1038
|
-
{
|
|
1039
|
-
"name": "column",
|
|
1040
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"name": "width",
|
|
1044
|
-
"attribute": "width",
|
|
1045
|
-
"description": "The width of the column",
|
|
1046
|
-
"type": "string",
|
|
1047
|
-
"default": "\"max-content\""
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
"name": "hidden",
|
|
1051
|
-
"attribute": "hidden",
|
|
1052
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1053
|
-
"type": "boolean",
|
|
1054
|
-
"default": "false"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"name": "heading",
|
|
1058
|
-
"attribute": "heading",
|
|
1059
|
-
"description": "The heading of the column",
|
|
1060
|
-
"type": "string",
|
|
1061
|
-
"default": "\"\""
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"name": "textAlign",
|
|
1065
|
-
"attribute": "textAlign",
|
|
1066
|
-
"description": "The text alignment of the column",
|
|
1067
|
-
"type": "DataGridColumnAlignment",
|
|
1068
|
-
"default": "\"start\""
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"name": "description",
|
|
1072
|
-
"attribute": "description",
|
|
1073
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1074
|
-
"type": "string | undefined"
|
|
1075
|
-
},
|
|
1076
|
-
{
|
|
1077
|
-
"name": "dataSelector",
|
|
1078
|
-
"attribute": "dataSelector",
|
|
1079
|
-
"description": "The data selector of the column",
|
|
1080
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"name": "sortDataSelector",
|
|
1084
|
-
"attribute": "sortDataSelector",
|
|
1085
|
-
"description": "The data selector of the column",
|
|
1086
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"name": "nonSortable",
|
|
1090
|
-
"attribute": "nonSortable",
|
|
1091
|
-
"description": "Whether the column is sortable",
|
|
1092
|
-
"type": "boolean",
|
|
1093
|
-
"default": "false"
|
|
1094
|
-
},
|
|
1095
|
-
{
|
|
1096
|
-
"name": "nonEditable",
|
|
1097
|
-
"attribute": "nonEditable",
|
|
1098
|
-
"description": "Whether the column is editable",
|
|
1099
|
-
"type": "boolean | Predicate<TData>",
|
|
1100
|
-
"default": "false"
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"name": "sticky",
|
|
1104
|
-
"attribute": "sticky",
|
|
1105
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1106
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1107
|
-
}
|
|
1108
|
-
]
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
"name": "mo-data-grid-column-deletion",
|
|
1112
|
-
"path": ".\\packages\\DataGrid\\columns\\DataGridColumnDeletion.ts",
|
|
1113
|
-
"attributes": [
|
|
1114
|
-
{
|
|
1115
|
-
"name": "icon",
|
|
1116
|
-
"type": "MaterialIcon",
|
|
1117
|
-
"default": "\"delete\""
|
|
1118
|
-
},
|
|
1119
|
-
{
|
|
1120
|
-
"name": "prevent",
|
|
1121
|
-
"description": "Prevents the deletion button from being displayed",
|
|
1122
|
-
"type": "boolean",
|
|
1123
|
-
"default": "false"
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
"name": "dataGrid",
|
|
1127
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1128
|
-
},
|
|
1129
|
-
{
|
|
1130
|
-
"name": "width",
|
|
1131
|
-
"description": "The width of the column",
|
|
1132
|
-
"type": "string",
|
|
1133
|
-
"default": "\"max-content\""
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
"name": "hidden",
|
|
1137
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1138
|
-
"type": "boolean",
|
|
1139
|
-
"default": "false"
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"name": "heading",
|
|
1143
|
-
"description": "The heading of the column",
|
|
1144
|
-
"type": "string",
|
|
1145
|
-
"default": "\"\""
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
"name": "textAlign",
|
|
1149
|
-
"description": "The text alignment of the column",
|
|
1150
|
-
"type": "DataGridColumnAlignment",
|
|
1151
|
-
"default": "\"start\""
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
"name": "description",
|
|
1155
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1156
|
-
"type": "string | undefined"
|
|
1157
|
-
},
|
|
1158
|
-
{
|
|
1159
|
-
"name": "dataSelector",
|
|
1160
|
-
"description": "The data selector of the column",
|
|
1161
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
"name": "sortDataSelector",
|
|
1165
|
-
"description": "The data selector of the column",
|
|
1166
|
-
"type": "KeyPathOf<TData>"
|
|
1167
|
-
},
|
|
1168
|
-
{
|
|
1169
|
-
"name": "nonSortable",
|
|
1170
|
-
"description": "Whether the column is sortable",
|
|
1171
|
-
"type": "boolean",
|
|
1172
|
-
"default": "true"
|
|
1173
|
-
},
|
|
1174
|
-
{
|
|
1175
|
-
"name": "nonEditable",
|
|
1176
|
-
"description": "Whether the column is editable",
|
|
1177
|
-
"type": "boolean",
|
|
1178
|
-
"default": "true"
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
"name": "sticky",
|
|
1182
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1183
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1184
|
-
}
|
|
1185
|
-
],
|
|
1186
|
-
"properties": [
|
|
1187
|
-
{
|
|
1188
|
-
"name": "delete",
|
|
1189
|
-
"type": "EventDispatcher<TData>"
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"name": "icon",
|
|
1193
|
-
"attribute": "icon",
|
|
1194
|
-
"type": "MaterialIcon",
|
|
1195
|
-
"default": "\"delete\""
|
|
1196
|
-
},
|
|
1197
|
-
{
|
|
1198
|
-
"name": "getContentTemplate",
|
|
1199
|
-
"type": "(_: never, data?: TData | undefined) => HTMLTemplateResult",
|
|
1200
|
-
"default": "\"(_: never, data?: TData) => this.prevent ? html.nothing : html`\\r\\n\\t\\t<mo-icon-button icon=${this.icon}\\r\\n\\t\\t\\t${tooltip(t('Delete position'))}\\r\\n\\t\\t\\t${style({ color: 'var(--mo-color-gray)', height: '40px', display: 'flex' })}\\r\\n\\t\\t\\t@click=${() => !data ? void 0 : this.delete.dispatch(data)}\\r\\n\\t\\t></mo-icon-button>\\r\\n\\t`\""
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"name": "getEditContentTemplate",
|
|
1204
|
-
"type": "undefined",
|
|
1205
|
-
"default": "\"undefined\""
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
"name": "prevent",
|
|
1209
|
-
"attribute": "prevent",
|
|
1210
|
-
"description": "Prevents the deletion button from being displayed",
|
|
1211
|
-
"type": "boolean",
|
|
1212
|
-
"default": "false"
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"name": "dataGrid",
|
|
1216
|
-
"attribute": "dataGrid",
|
|
1217
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"name": "column",
|
|
1221
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1222
|
-
},
|
|
1223
|
-
{
|
|
1224
|
-
"name": "width",
|
|
1225
|
-
"attribute": "width",
|
|
1226
|
-
"description": "The width of the column",
|
|
1227
|
-
"type": "string",
|
|
1228
|
-
"default": "\"max-content\""
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
"name": "hidden",
|
|
1232
|
-
"attribute": "hidden",
|
|
1233
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1234
|
-
"type": "boolean",
|
|
1235
|
-
"default": "false"
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"name": "heading",
|
|
1239
|
-
"attribute": "heading",
|
|
1240
|
-
"description": "The heading of the column",
|
|
1241
|
-
"type": "string",
|
|
1242
|
-
"default": "\"\""
|
|
1243
|
-
},
|
|
1244
|
-
{
|
|
1245
|
-
"name": "textAlign",
|
|
1246
|
-
"attribute": "textAlign",
|
|
1247
|
-
"description": "The text alignment of the column",
|
|
1248
|
-
"type": "DataGridColumnAlignment",
|
|
1249
|
-
"default": "\"start\""
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
"name": "description",
|
|
1253
|
-
"attribute": "description",
|
|
1254
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1255
|
-
"type": "string | undefined"
|
|
1256
|
-
},
|
|
1257
|
-
{
|
|
1258
|
-
"name": "dataSelector",
|
|
1259
|
-
"attribute": "dataSelector",
|
|
1260
|
-
"description": "The data selector of the column",
|
|
1261
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1262
|
-
},
|
|
1263
|
-
{
|
|
1264
|
-
"name": "sortDataSelector",
|
|
1265
|
-
"attribute": "sortDataSelector",
|
|
1266
|
-
"description": "The data selector of the column",
|
|
1267
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1268
|
-
},
|
|
1269
|
-
{
|
|
1270
|
-
"name": "nonSortable",
|
|
1271
|
-
"attribute": "nonSortable",
|
|
1272
|
-
"description": "Whether the column is sortable",
|
|
1273
|
-
"type": "boolean",
|
|
1274
|
-
"default": "true"
|
|
1275
|
-
},
|
|
1276
|
-
{
|
|
1277
|
-
"name": "nonEditable",
|
|
1278
|
-
"attribute": "nonEditable",
|
|
1279
|
-
"description": "Whether the column is editable",
|
|
1280
|
-
"type": "boolean",
|
|
1281
|
-
"default": "true"
|
|
1282
|
-
},
|
|
1283
|
-
{
|
|
1284
|
-
"name": "sticky",
|
|
1285
|
-
"attribute": "sticky",
|
|
1286
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1287
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1288
|
-
}
|
|
1289
|
-
],
|
|
1290
|
-
"events": [
|
|
1291
|
-
{
|
|
1292
|
-
"name": "delete",
|
|
1293
|
-
"type": "CustomEvent<TData>"
|
|
1294
|
-
}
|
|
1295
|
-
]
|
|
1296
|
-
},
|
|
1297
|
-
{
|
|
1298
|
-
"name": "mo-data-grid-column-image",
|
|
1299
|
-
"path": ".\\packages\\DataGrid\\columns\\DataGridColumnImage.ts",
|
|
1300
|
-
"attributes": [
|
|
1301
|
-
{
|
|
1302
|
-
"name": "tooltipSelector",
|
|
1303
|
-
"description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
|
|
1304
|
-
"type": "KeyPathOf<TData>"
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
"name": "dataGrid",
|
|
1308
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
"name": "width",
|
|
1312
|
-
"description": "The width of the column",
|
|
1313
|
-
"type": "string",
|
|
1314
|
-
"default": "\"max-content\""
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
"name": "hidden",
|
|
1318
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1319
|
-
"type": "boolean",
|
|
1320
|
-
"default": "false"
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
"name": "heading",
|
|
1324
|
-
"description": "The heading of the column",
|
|
1325
|
-
"type": "string",
|
|
1326
|
-
"default": "\"\""
|
|
1327
|
-
},
|
|
1328
|
-
{
|
|
1329
|
-
"name": "textAlign",
|
|
1330
|
-
"description": "The text alignment of the column",
|
|
1331
|
-
"type": "DataGridColumnAlignment",
|
|
1332
|
-
"default": "\"start\""
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
"name": "description",
|
|
1336
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1337
|
-
"type": "string | undefined"
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"name": "dataSelector",
|
|
1341
|
-
"description": "The data selector of the column",
|
|
1342
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1343
|
-
},
|
|
1344
|
-
{
|
|
1345
|
-
"name": "sortDataSelector",
|
|
1346
|
-
"description": "The data selector of the column",
|
|
1347
|
-
"type": "KeyPathOf<TData>"
|
|
1348
|
-
},
|
|
1349
|
-
{
|
|
1350
|
-
"name": "nonSortable",
|
|
1351
|
-
"description": "Whether the column is sortable",
|
|
1352
|
-
"type": "boolean",
|
|
1353
|
-
"default": "true"
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
"name": "nonEditable",
|
|
1357
|
-
"description": "Whether the column is editable",
|
|
1358
|
-
"type": "boolean",
|
|
1359
|
-
"default": "true"
|
|
1360
|
-
},
|
|
1361
|
-
{
|
|
1362
|
-
"name": "sticky",
|
|
1363
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1364
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1365
|
-
}
|
|
1366
|
-
],
|
|
1367
|
-
"properties": [
|
|
1368
|
-
{
|
|
1369
|
-
"name": "getEditContentTemplate",
|
|
1370
|
-
"type": "undefined",
|
|
1371
|
-
"default": "\"undefined\""
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
"name": "tooltipSelector",
|
|
1375
|
-
"attribute": "tooltipSelector",
|
|
1376
|
-
"description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
|
|
1377
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | ((data: TData) => string | undefined) | undefined"
|
|
1378
|
-
},
|
|
1379
|
-
{
|
|
1380
|
-
"name": "dataGrid",
|
|
1381
|
-
"attribute": "dataGrid",
|
|
1382
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1383
|
-
},
|
|
1384
|
-
{
|
|
1385
|
-
"name": "column",
|
|
1386
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1387
|
-
},
|
|
1388
|
-
{
|
|
1389
|
-
"name": "width",
|
|
1390
|
-
"attribute": "width",
|
|
1391
|
-
"description": "The width of the column",
|
|
1392
|
-
"type": "string",
|
|
1393
|
-
"default": "\"max-content\""
|
|
1394
|
-
},
|
|
1395
|
-
{
|
|
1396
|
-
"name": "hidden",
|
|
1397
|
-
"attribute": "hidden",
|
|
1398
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1399
|
-
"type": "boolean",
|
|
1400
|
-
"default": "false"
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
"name": "heading",
|
|
1404
|
-
"attribute": "heading",
|
|
1405
|
-
"description": "The heading of the column",
|
|
1406
|
-
"type": "string",
|
|
1407
|
-
"default": "\"\""
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"name": "textAlign",
|
|
1411
|
-
"attribute": "textAlign",
|
|
1412
|
-
"description": "The text alignment of the column",
|
|
1413
|
-
"type": "DataGridColumnAlignment",
|
|
1414
|
-
"default": "\"start\""
|
|
1415
|
-
},
|
|
1416
|
-
{
|
|
1417
|
-
"name": "description",
|
|
1418
|
-
"attribute": "description",
|
|
1419
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1420
|
-
"type": "string | undefined"
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"name": "dataSelector",
|
|
1424
|
-
"attribute": "dataSelector",
|
|
1425
|
-
"description": "The data selector of the column",
|
|
1426
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1427
|
-
},
|
|
1428
|
-
{
|
|
1429
|
-
"name": "sortDataSelector",
|
|
1430
|
-
"attribute": "sortDataSelector",
|
|
1431
|
-
"description": "The data selector of the column",
|
|
1432
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1433
|
-
},
|
|
1434
|
-
{
|
|
1435
|
-
"name": "nonSortable",
|
|
1436
|
-
"attribute": "nonSortable",
|
|
1437
|
-
"description": "Whether the column is sortable",
|
|
1438
|
-
"type": "boolean",
|
|
1439
|
-
"default": "true"
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"name": "nonEditable",
|
|
1443
|
-
"attribute": "nonEditable",
|
|
1444
|
-
"description": "Whether the column is editable",
|
|
1445
|
-
"type": "boolean",
|
|
1446
|
-
"default": "true"
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"name": "sticky",
|
|
1450
|
-
"attribute": "sticky",
|
|
1451
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1452
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1453
|
-
}
|
|
1454
|
-
]
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
"name": "mo-data-grid-column-text",
|
|
1458
|
-
"path": ".\\packages\\DataGrid\\columns\\DataGridColumnText.ts",
|
|
1459
|
-
"attributes": [
|
|
1460
|
-
{
|
|
1461
|
-
"name": "dataGrid",
|
|
1462
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
"name": "width",
|
|
1466
|
-
"description": "The width of the column",
|
|
1467
|
-
"type": "string",
|
|
1468
|
-
"default": "\"max-content\""
|
|
1469
|
-
},
|
|
1470
|
-
{
|
|
1471
|
-
"name": "hidden",
|
|
1472
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1473
|
-
"type": "boolean",
|
|
1474
|
-
"default": "false"
|
|
1475
|
-
},
|
|
1476
|
-
{
|
|
1477
|
-
"name": "heading",
|
|
1478
|
-
"description": "The heading of the column",
|
|
1479
|
-
"type": "string",
|
|
1480
|
-
"default": "\"\""
|
|
1481
|
-
},
|
|
1482
|
-
{
|
|
1483
|
-
"name": "textAlign",
|
|
1484
|
-
"description": "The text alignment of the column",
|
|
1485
|
-
"type": "DataGridColumnAlignment",
|
|
1486
|
-
"default": "\"start\""
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
"name": "description",
|
|
1490
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1491
|
-
"type": "string | undefined"
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
"name": "dataSelector",
|
|
1495
|
-
"description": "The data selector of the column",
|
|
1496
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
"name": "sortDataSelector",
|
|
1500
|
-
"description": "The data selector of the column",
|
|
1501
|
-
"type": "KeyPathOf<TData>"
|
|
1502
|
-
},
|
|
1503
|
-
{
|
|
1504
|
-
"name": "nonSortable",
|
|
1505
|
-
"description": "Whether the column is sortable",
|
|
1506
|
-
"type": "boolean",
|
|
1507
|
-
"default": "false"
|
|
1508
|
-
},
|
|
1509
|
-
{
|
|
1510
|
-
"name": "nonEditable",
|
|
1511
|
-
"description": "Whether the column is editable",
|
|
1512
|
-
"type": "boolean | Predicate<TData>",
|
|
1513
|
-
"default": "false"
|
|
1514
|
-
},
|
|
1515
|
-
{
|
|
1516
|
-
"name": "sticky",
|
|
1517
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1518
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1519
|
-
}
|
|
1520
|
-
],
|
|
1521
|
-
"properties": [
|
|
1522
|
-
{
|
|
1523
|
-
"name": "dataGrid",
|
|
1524
|
-
"attribute": "dataGrid",
|
|
1525
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1526
|
-
},
|
|
1527
|
-
{
|
|
1528
|
-
"name": "column",
|
|
1529
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"name": "width",
|
|
1533
|
-
"attribute": "width",
|
|
1534
|
-
"description": "The width of the column",
|
|
1535
|
-
"type": "string",
|
|
1536
|
-
"default": "\"max-content\""
|
|
1537
|
-
},
|
|
1538
|
-
{
|
|
1539
|
-
"name": "hidden",
|
|
1540
|
-
"attribute": "hidden",
|
|
1541
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1542
|
-
"type": "boolean",
|
|
1543
|
-
"default": "false"
|
|
1544
|
-
},
|
|
1545
|
-
{
|
|
1546
|
-
"name": "heading",
|
|
1547
|
-
"attribute": "heading",
|
|
1548
|
-
"description": "The heading of the column",
|
|
1549
|
-
"type": "string",
|
|
1550
|
-
"default": "\"\""
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
"name": "textAlign",
|
|
1554
|
-
"attribute": "textAlign",
|
|
1555
|
-
"description": "The text alignment of the column",
|
|
1556
|
-
"type": "DataGridColumnAlignment",
|
|
1557
|
-
"default": "\"start\""
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
"name": "description",
|
|
1561
|
-
"attribute": "description",
|
|
1562
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1563
|
-
"type": "string | undefined"
|
|
1564
|
-
},
|
|
1565
|
-
{
|
|
1566
|
-
"name": "dataSelector",
|
|
1567
|
-
"attribute": "dataSelector",
|
|
1568
|
-
"description": "The data selector of the column",
|
|
1569
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
"name": "sortDataSelector",
|
|
1573
|
-
"attribute": "sortDataSelector",
|
|
1574
|
-
"description": "The data selector of the column",
|
|
1575
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1576
|
-
},
|
|
1577
|
-
{
|
|
1578
|
-
"name": "nonSortable",
|
|
1579
|
-
"attribute": "nonSortable",
|
|
1580
|
-
"description": "Whether the column is sortable",
|
|
1581
|
-
"type": "boolean",
|
|
1582
|
-
"default": "false"
|
|
1583
|
-
},
|
|
1584
|
-
{
|
|
1585
|
-
"name": "nonEditable",
|
|
1586
|
-
"attribute": "nonEditable",
|
|
1587
|
-
"description": "Whether the column is editable",
|
|
1588
|
-
"type": "boolean | Predicate<TData>",
|
|
1589
|
-
"default": "false"
|
|
1590
|
-
},
|
|
1591
|
-
{
|
|
1592
|
-
"name": "sticky",
|
|
1593
|
-
"attribute": "sticky",
|
|
1594
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1595
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1596
|
-
}
|
|
1597
|
-
]
|
|
1598
|
-
},
|
|
1599
|
-
{
|
|
1600
|
-
"name": "mo-data-grid-column-date",
|
|
1601
|
-
"path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDate.ts",
|
|
1602
|
-
"attributes": [
|
|
1603
|
-
{
|
|
1604
|
-
"name": "formatOptions",
|
|
1605
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
1606
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1607
|
-
},
|
|
1608
|
-
{
|
|
1609
|
-
"name": "pickerHidden",
|
|
1610
|
-
"description": "Hides the date/time picker",
|
|
1611
|
-
"type": "boolean",
|
|
1612
|
-
"default": "false"
|
|
1613
|
-
},
|
|
1614
|
-
{
|
|
1615
|
-
"name": "dataGrid",
|
|
1616
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1617
|
-
},
|
|
1618
|
-
{
|
|
1619
|
-
"name": "width",
|
|
1620
|
-
"description": "The width of the column",
|
|
1621
|
-
"type": "string",
|
|
1622
|
-
"default": "\"max-content\""
|
|
1623
|
-
},
|
|
1624
|
-
{
|
|
1625
|
-
"name": "hidden",
|
|
1626
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1627
|
-
"type": "boolean",
|
|
1628
|
-
"default": "false"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"name": "heading",
|
|
1632
|
-
"description": "The heading of the column",
|
|
1633
|
-
"type": "string",
|
|
1634
|
-
"default": "\"\""
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"name": "textAlign",
|
|
1638
|
-
"description": "The text alignment of the column",
|
|
1639
|
-
"type": "DataGridColumnAlignment",
|
|
1640
|
-
"default": "\"start\""
|
|
1641
|
-
},
|
|
1642
|
-
{
|
|
1643
|
-
"name": "description",
|
|
1644
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1645
|
-
"type": "string | undefined"
|
|
1646
|
-
},
|
|
1647
|
-
{
|
|
1648
|
-
"name": "dataSelector",
|
|
1649
|
-
"description": "The data selector of the column",
|
|
1650
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1651
|
-
},
|
|
1652
|
-
{
|
|
1653
|
-
"name": "sortDataSelector",
|
|
1654
|
-
"description": "The data selector of the column",
|
|
1655
|
-
"type": "KeyPathOf<TData>"
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
"name": "nonSortable",
|
|
1659
|
-
"description": "Whether the column is sortable",
|
|
1660
|
-
"type": "boolean",
|
|
1661
|
-
"default": "false"
|
|
1662
|
-
},
|
|
1663
|
-
{
|
|
1664
|
-
"name": "nonEditable",
|
|
1665
|
-
"description": "Whether the column is editable",
|
|
1666
|
-
"type": "boolean | Predicate<TData>",
|
|
1667
|
-
"default": "false"
|
|
1668
|
-
},
|
|
1669
|
-
{
|
|
1670
|
-
"name": "sticky",
|
|
1671
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1672
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1673
|
-
}
|
|
1674
|
-
],
|
|
1675
|
-
"properties": [
|
|
1676
|
-
{
|
|
1677
|
-
"name": "defaultFormatOptions",
|
|
1678
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1679
|
-
},
|
|
1680
|
-
{
|
|
1681
|
-
"name": "fieldTag",
|
|
1682
|
-
"type": "StaticValue",
|
|
1683
|
-
"default": "\"literal`mo-field-date`\""
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"name": "formatOptions",
|
|
1687
|
-
"attribute": "formatOptions",
|
|
1688
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
1689
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1690
|
-
},
|
|
1691
|
-
{
|
|
1692
|
-
"name": "pickerHidden",
|
|
1693
|
-
"attribute": "pickerHidden",
|
|
1694
|
-
"description": "Hides the date/time picker",
|
|
1695
|
-
"type": "boolean",
|
|
1696
|
-
"default": "false"
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
"name": "dataGrid",
|
|
1700
|
-
"attribute": "dataGrid",
|
|
1701
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"name": "column",
|
|
1705
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1706
|
-
},
|
|
1707
|
-
{
|
|
1708
|
-
"name": "width",
|
|
1709
|
-
"attribute": "width",
|
|
1710
|
-
"description": "The width of the column",
|
|
1711
|
-
"type": "string",
|
|
1712
|
-
"default": "\"max-content\""
|
|
1713
|
-
},
|
|
1714
|
-
{
|
|
1715
|
-
"name": "hidden",
|
|
1716
|
-
"attribute": "hidden",
|
|
1717
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1718
|
-
"type": "boolean",
|
|
1719
|
-
"default": "false"
|
|
1720
|
-
},
|
|
1721
|
-
{
|
|
1722
|
-
"name": "heading",
|
|
1723
|
-
"attribute": "heading",
|
|
1724
|
-
"description": "The heading of the column",
|
|
1725
|
-
"type": "string",
|
|
1726
|
-
"default": "\"\""
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
"name": "textAlign",
|
|
1730
|
-
"attribute": "textAlign",
|
|
1731
|
-
"description": "The text alignment of the column",
|
|
1732
|
-
"type": "DataGridColumnAlignment",
|
|
1733
|
-
"default": "\"start\""
|
|
1734
|
-
},
|
|
1735
|
-
{
|
|
1736
|
-
"name": "description",
|
|
1737
|
-
"attribute": "description",
|
|
1738
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1739
|
-
"type": "string | undefined"
|
|
1740
|
-
},
|
|
1741
|
-
{
|
|
1742
|
-
"name": "dataSelector",
|
|
1743
|
-
"attribute": "dataSelector",
|
|
1744
|
-
"description": "The data selector of the column",
|
|
1745
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1746
|
-
},
|
|
1747
|
-
{
|
|
1748
|
-
"name": "sortDataSelector",
|
|
1749
|
-
"attribute": "sortDataSelector",
|
|
1750
|
-
"description": "The data selector of the column",
|
|
1751
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
"name": "nonSortable",
|
|
1755
|
-
"attribute": "nonSortable",
|
|
1756
|
-
"description": "Whether the column is sortable",
|
|
1757
|
-
"type": "boolean",
|
|
1758
|
-
"default": "false"
|
|
1759
|
-
},
|
|
1760
|
-
{
|
|
1761
|
-
"name": "nonEditable",
|
|
1762
|
-
"attribute": "nonEditable",
|
|
1763
|
-
"description": "Whether the column is editable",
|
|
1764
|
-
"type": "boolean | Predicate<TData>",
|
|
1765
|
-
"default": "false"
|
|
1766
|
-
},
|
|
1767
|
-
{
|
|
1768
|
-
"name": "sticky",
|
|
1769
|
-
"attribute": "sticky",
|
|
1770
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1771
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1772
|
-
}
|
|
1773
|
-
]
|
|
1774
|
-
},
|
|
1775
|
-
{
|
|
1776
|
-
"name": "mo-data-grid-column-date-range",
|
|
1777
|
-
"path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateRange.ts",
|
|
1778
|
-
"attributes": [
|
|
1779
|
-
{
|
|
1780
|
-
"name": "formatOptions",
|
|
1781
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
1782
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1783
|
-
},
|
|
1784
|
-
{
|
|
1785
|
-
"name": "pickerHidden",
|
|
1786
|
-
"description": "Hides the date/time picker",
|
|
1787
|
-
"type": "boolean",
|
|
1788
|
-
"default": "false"
|
|
1789
|
-
},
|
|
1790
|
-
{
|
|
1791
|
-
"name": "dataGrid",
|
|
1792
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1793
|
-
},
|
|
1794
|
-
{
|
|
1795
|
-
"name": "width",
|
|
1796
|
-
"description": "The width of the column",
|
|
1797
|
-
"type": "string",
|
|
1798
|
-
"default": "\"max-content\""
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
"name": "hidden",
|
|
1802
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1803
|
-
"type": "boolean",
|
|
1804
|
-
"default": "false"
|
|
1805
|
-
},
|
|
1806
|
-
{
|
|
1807
|
-
"name": "heading",
|
|
1808
|
-
"description": "The heading of the column",
|
|
1809
|
-
"type": "string",
|
|
1810
|
-
"default": "\"\""
|
|
1811
|
-
},
|
|
1812
|
-
{
|
|
1813
|
-
"name": "textAlign",
|
|
1814
|
-
"description": "The text alignment of the column",
|
|
1815
|
-
"type": "DataGridColumnAlignment",
|
|
1816
|
-
"default": "\"start\""
|
|
1817
|
-
},
|
|
1818
|
-
{
|
|
1819
|
-
"name": "description",
|
|
1820
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1821
|
-
"type": "string | undefined"
|
|
1822
|
-
},
|
|
1823
|
-
{
|
|
1824
|
-
"name": "dataSelector",
|
|
1825
|
-
"description": "The data selector of the column",
|
|
1826
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1827
|
-
},
|
|
1828
|
-
{
|
|
1829
|
-
"name": "sortDataSelector",
|
|
1830
|
-
"description": "The data selector of the column",
|
|
1831
|
-
"type": "KeyPathOf<TData>"
|
|
1832
|
-
},
|
|
1833
|
-
{
|
|
1834
|
-
"name": "nonSortable",
|
|
1835
|
-
"description": "Whether the column is sortable",
|
|
1836
|
-
"type": "boolean",
|
|
1837
|
-
"default": "false"
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"name": "nonEditable",
|
|
1841
|
-
"description": "Whether the column is editable",
|
|
1842
|
-
"type": "boolean | Predicate<TData>",
|
|
1843
|
-
"default": "false"
|
|
1844
|
-
},
|
|
1845
|
-
{
|
|
1846
|
-
"name": "sticky",
|
|
1847
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1848
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1849
|
-
}
|
|
1850
|
-
],
|
|
1851
|
-
"properties": [
|
|
1852
|
-
{
|
|
1853
|
-
"name": "defaultFormatOptions",
|
|
1854
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1855
|
-
},
|
|
1856
|
-
{
|
|
1857
|
-
"name": "fieldTag",
|
|
1858
|
-
"type": "StaticValue",
|
|
1859
|
-
"default": "\"literal`mo-field-date-range`\""
|
|
1860
|
-
},
|
|
1861
|
-
{
|
|
1862
|
-
"name": "formatOptions",
|
|
1863
|
-
"attribute": "formatOptions",
|
|
1864
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
1865
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1866
|
-
},
|
|
1867
|
-
{
|
|
1868
|
-
"name": "pickerHidden",
|
|
1869
|
-
"attribute": "pickerHidden",
|
|
1870
|
-
"description": "Hides the date/time picker",
|
|
1871
|
-
"type": "boolean",
|
|
1872
|
-
"default": "false"
|
|
1873
|
-
},
|
|
1874
|
-
{
|
|
1875
|
-
"name": "dataGrid",
|
|
1876
|
-
"attribute": "dataGrid",
|
|
1877
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
"name": "column",
|
|
1881
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
1882
|
-
},
|
|
1883
|
-
{
|
|
1884
|
-
"name": "width",
|
|
1885
|
-
"attribute": "width",
|
|
1886
|
-
"description": "The width of the column",
|
|
1887
|
-
"type": "string",
|
|
1888
|
-
"default": "\"max-content\""
|
|
1889
|
-
},
|
|
1890
|
-
{
|
|
1891
|
-
"name": "hidden",
|
|
1892
|
-
"attribute": "hidden",
|
|
1893
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1894
|
-
"type": "boolean",
|
|
1895
|
-
"default": "false"
|
|
1896
|
-
},
|
|
1897
|
-
{
|
|
1898
|
-
"name": "heading",
|
|
1899
|
-
"attribute": "heading",
|
|
1900
|
-
"description": "The heading of the column",
|
|
1901
|
-
"type": "string",
|
|
1902
|
-
"default": "\"\""
|
|
1903
|
-
},
|
|
1904
|
-
{
|
|
1905
|
-
"name": "textAlign",
|
|
1906
|
-
"attribute": "textAlign",
|
|
1907
|
-
"description": "The text alignment of the column",
|
|
1908
|
-
"type": "DataGridColumnAlignment",
|
|
1909
|
-
"default": "\"start\""
|
|
1910
|
-
},
|
|
1911
|
-
{
|
|
1912
|
-
"name": "description",
|
|
1913
|
-
"attribute": "description",
|
|
1914
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1915
|
-
"type": "string | undefined"
|
|
1916
|
-
},
|
|
1917
|
-
{
|
|
1918
|
-
"name": "dataSelector",
|
|
1919
|
-
"attribute": "dataSelector",
|
|
1920
|
-
"description": "The data selector of the column",
|
|
1921
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
1922
|
-
},
|
|
1923
|
-
{
|
|
1924
|
-
"name": "sortDataSelector",
|
|
1925
|
-
"attribute": "sortDataSelector",
|
|
1926
|
-
"description": "The data selector of the column",
|
|
1927
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
1928
|
-
},
|
|
1929
|
-
{
|
|
1930
|
-
"name": "nonSortable",
|
|
1931
|
-
"attribute": "nonSortable",
|
|
1932
|
-
"description": "Whether the column is sortable",
|
|
1933
|
-
"type": "boolean",
|
|
1934
|
-
"default": "false"
|
|
1935
|
-
},
|
|
1936
|
-
{
|
|
1937
|
-
"name": "nonEditable",
|
|
1938
|
-
"attribute": "nonEditable",
|
|
1939
|
-
"description": "Whether the column is editable",
|
|
1940
|
-
"type": "boolean | Predicate<TData>",
|
|
1941
|
-
"default": "false"
|
|
1942
|
-
},
|
|
1943
|
-
{
|
|
1944
|
-
"name": "sticky",
|
|
1945
|
-
"attribute": "sticky",
|
|
1946
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
1947
|
-
"type": "DataGridColumnSticky | undefined"
|
|
1948
|
-
}
|
|
1949
|
-
]
|
|
1950
|
-
},
|
|
1951
|
-
{
|
|
1952
|
-
"name": "mo-data-grid-column-date-time",
|
|
1953
|
-
"path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateTime.ts",
|
|
1954
|
-
"attributes": [
|
|
1955
|
-
{
|
|
1956
|
-
"name": "formatOptions",
|
|
1957
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
1958
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
1959
|
-
},
|
|
1960
|
-
{
|
|
1961
|
-
"name": "pickerHidden",
|
|
1962
|
-
"description": "Hides the date/time picker",
|
|
1963
|
-
"type": "boolean",
|
|
1964
|
-
"default": "false"
|
|
1965
|
-
},
|
|
1966
|
-
{
|
|
1967
|
-
"name": "dataGrid",
|
|
1968
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
"name": "width",
|
|
1972
|
-
"description": "The width of the column",
|
|
1973
|
-
"type": "string",
|
|
1974
|
-
"default": "\"max-content\""
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
"name": "hidden",
|
|
1978
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
1979
|
-
"type": "boolean",
|
|
1980
|
-
"default": "false"
|
|
1981
|
-
},
|
|
1982
|
-
{
|
|
1983
|
-
"name": "heading",
|
|
1984
|
-
"description": "The heading of the column",
|
|
1985
|
-
"type": "string",
|
|
1986
|
-
"default": "\"\""
|
|
1987
|
-
},
|
|
1988
|
-
{
|
|
1989
|
-
"name": "textAlign",
|
|
1990
|
-
"description": "The text alignment of the column",
|
|
1991
|
-
"type": "DataGridColumnAlignment",
|
|
1992
|
-
"default": "\"start\""
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"name": "description",
|
|
1996
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
1997
|
-
"type": "string | undefined"
|
|
1998
|
-
},
|
|
1999
|
-
{
|
|
2000
|
-
"name": "dataSelector",
|
|
2001
|
-
"description": "The data selector of the column",
|
|
2002
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2003
|
-
},
|
|
2004
|
-
{
|
|
2005
|
-
"name": "sortDataSelector",
|
|
2006
|
-
"description": "The data selector of the column",
|
|
2007
|
-
"type": "KeyPathOf<TData>"
|
|
2008
|
-
},
|
|
2009
|
-
{
|
|
2010
|
-
"name": "nonSortable",
|
|
2011
|
-
"description": "Whether the column is sortable",
|
|
2012
|
-
"type": "boolean",
|
|
2013
|
-
"default": "false"
|
|
2014
|
-
},
|
|
2015
|
-
{
|
|
2016
|
-
"name": "nonEditable",
|
|
2017
|
-
"description": "Whether the column is editable",
|
|
2018
|
-
"type": "boolean | Predicate<TData>",
|
|
2019
|
-
"default": "false"
|
|
2020
|
-
},
|
|
2021
|
-
{
|
|
2022
|
-
"name": "sticky",
|
|
2023
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2024
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2025
|
-
}
|
|
2026
|
-
],
|
|
2027
|
-
"properties": [
|
|
2028
|
-
{
|
|
2029
|
-
"name": "defaultFormatOptions",
|
|
2030
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
2031
|
-
},
|
|
2032
|
-
{
|
|
2033
|
-
"name": "fieldTag",
|
|
2034
|
-
"type": "StaticValue",
|
|
2035
|
-
"default": "\"literal`mo-field-date-time`\""
|
|
2036
|
-
},
|
|
2037
|
-
{
|
|
2038
|
-
"name": "formatOptions",
|
|
2039
|
-
"attribute": "formatOptions",
|
|
2040
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
2041
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
2042
|
-
},
|
|
2043
|
-
{
|
|
2044
|
-
"name": "pickerHidden",
|
|
2045
|
-
"attribute": "pickerHidden",
|
|
2046
|
-
"description": "Hides the date/time picker",
|
|
2047
|
-
"type": "boolean",
|
|
2048
|
-
"default": "false"
|
|
2049
|
-
},
|
|
2050
|
-
{
|
|
2051
|
-
"name": "dataGrid",
|
|
2052
|
-
"attribute": "dataGrid",
|
|
2053
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2054
|
-
},
|
|
2055
|
-
{
|
|
2056
|
-
"name": "column",
|
|
2057
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
2058
|
-
},
|
|
2059
|
-
{
|
|
2060
|
-
"name": "width",
|
|
2061
|
-
"attribute": "width",
|
|
2062
|
-
"description": "The width of the column",
|
|
2063
|
-
"type": "string",
|
|
2064
|
-
"default": "\"max-content\""
|
|
2065
|
-
},
|
|
2066
|
-
{
|
|
2067
|
-
"name": "hidden",
|
|
2068
|
-
"attribute": "hidden",
|
|
2069
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2070
|
-
"type": "boolean",
|
|
2071
|
-
"default": "false"
|
|
2072
|
-
},
|
|
2073
|
-
{
|
|
2074
|
-
"name": "heading",
|
|
2075
|
-
"attribute": "heading",
|
|
2076
|
-
"description": "The heading of the column",
|
|
2077
|
-
"type": "string",
|
|
2078
|
-
"default": "\"\""
|
|
2079
|
-
},
|
|
2080
|
-
{
|
|
2081
|
-
"name": "textAlign",
|
|
2082
|
-
"attribute": "textAlign",
|
|
2083
|
-
"description": "The text alignment of the column",
|
|
2084
|
-
"type": "DataGridColumnAlignment",
|
|
2085
|
-
"default": "\"start\""
|
|
2086
|
-
},
|
|
2087
|
-
{
|
|
2088
|
-
"name": "description",
|
|
2089
|
-
"attribute": "description",
|
|
2090
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2091
|
-
"type": "string | undefined"
|
|
2092
|
-
},
|
|
2093
|
-
{
|
|
2094
|
-
"name": "dataSelector",
|
|
2095
|
-
"attribute": "dataSelector",
|
|
2096
|
-
"description": "The data selector of the column",
|
|
2097
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
"name": "sortDataSelector",
|
|
2101
|
-
"attribute": "sortDataSelector",
|
|
2102
|
-
"description": "The data selector of the column",
|
|
2103
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2104
|
-
},
|
|
2105
|
-
{
|
|
2106
|
-
"name": "nonSortable",
|
|
2107
|
-
"attribute": "nonSortable",
|
|
2108
|
-
"description": "Whether the column is sortable",
|
|
2109
|
-
"type": "boolean",
|
|
2110
|
-
"default": "false"
|
|
2111
|
-
},
|
|
2112
|
-
{
|
|
2113
|
-
"name": "nonEditable",
|
|
2114
|
-
"attribute": "nonEditable",
|
|
2115
|
-
"description": "Whether the column is editable",
|
|
2116
|
-
"type": "boolean | Predicate<TData>",
|
|
2117
|
-
"default": "false"
|
|
2118
|
-
},
|
|
2119
|
-
{
|
|
2120
|
-
"name": "sticky",
|
|
2121
|
-
"attribute": "sticky",
|
|
2122
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2123
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2124
|
-
}
|
|
2125
|
-
]
|
|
2126
|
-
},
|
|
2127
|
-
{
|
|
2128
|
-
"name": "mo-data-grid-column-date-time-range",
|
|
2129
|
-
"path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateTimeRange.ts",
|
|
2130
|
-
"attributes": [
|
|
2131
|
-
{
|
|
2132
|
-
"name": "formatOptions",
|
|
2133
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
2134
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
2135
|
-
},
|
|
2136
|
-
{
|
|
2137
|
-
"name": "pickerHidden",
|
|
2138
|
-
"description": "Hides the date/time picker",
|
|
2139
|
-
"type": "boolean",
|
|
2140
|
-
"default": "false"
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
"name": "dataGrid",
|
|
2144
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2145
|
-
},
|
|
2146
|
-
{
|
|
2147
|
-
"name": "width",
|
|
2148
|
-
"description": "The width of the column",
|
|
2149
|
-
"type": "string",
|
|
2150
|
-
"default": "\"max-content\""
|
|
2151
|
-
},
|
|
2152
|
-
{
|
|
2153
|
-
"name": "hidden",
|
|
2154
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2155
|
-
"type": "boolean",
|
|
2156
|
-
"default": "false"
|
|
2157
|
-
},
|
|
2158
|
-
{
|
|
2159
|
-
"name": "heading",
|
|
2160
|
-
"description": "The heading of the column",
|
|
2161
|
-
"type": "string",
|
|
2162
|
-
"default": "\"\""
|
|
2163
|
-
},
|
|
2164
|
-
{
|
|
2165
|
-
"name": "textAlign",
|
|
2166
|
-
"description": "The text alignment of the column",
|
|
2167
|
-
"type": "DataGridColumnAlignment",
|
|
2168
|
-
"default": "\"start\""
|
|
2169
|
-
},
|
|
2170
|
-
{
|
|
2171
|
-
"name": "description",
|
|
2172
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2173
|
-
"type": "string | undefined"
|
|
2174
|
-
},
|
|
2175
|
-
{
|
|
2176
|
-
"name": "dataSelector",
|
|
2177
|
-
"description": "The data selector of the column",
|
|
2178
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2179
|
-
},
|
|
2180
|
-
{
|
|
2181
|
-
"name": "sortDataSelector",
|
|
2182
|
-
"description": "The data selector of the column",
|
|
2183
|
-
"type": "KeyPathOf<TData>"
|
|
2184
|
-
},
|
|
2185
|
-
{
|
|
2186
|
-
"name": "nonSortable",
|
|
2187
|
-
"description": "Whether the column is sortable",
|
|
2188
|
-
"type": "boolean",
|
|
2189
|
-
"default": "false"
|
|
2190
|
-
},
|
|
2191
|
-
{
|
|
2192
|
-
"name": "nonEditable",
|
|
2193
|
-
"description": "Whether the column is editable",
|
|
2194
|
-
"type": "boolean | Predicate<TData>",
|
|
2195
|
-
"default": "false"
|
|
2196
|
-
},
|
|
2197
|
-
{
|
|
2198
|
-
"name": "sticky",
|
|
2199
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2200
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2201
|
-
}
|
|
2202
|
-
],
|
|
2203
|
-
"properties": [
|
|
2204
|
-
{
|
|
2205
|
-
"name": "defaultFormatOptions",
|
|
2206
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
2207
|
-
},
|
|
2208
|
-
{
|
|
2209
|
-
"name": "fieldTag",
|
|
2210
|
-
"type": "StaticValue",
|
|
2211
|
-
"default": "\"literal`mo-field-date-time-range`\""
|
|
2212
|
-
},
|
|
2213
|
-
{
|
|
2214
|
-
"name": "formatOptions",
|
|
2215
|
-
"attribute": "formatOptions",
|
|
2216
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
2217
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
2218
|
-
},
|
|
2219
|
-
{
|
|
2220
|
-
"name": "pickerHidden",
|
|
2221
|
-
"attribute": "pickerHidden",
|
|
2222
|
-
"description": "Hides the date/time picker",
|
|
2223
|
-
"type": "boolean",
|
|
2224
|
-
"default": "false"
|
|
2225
|
-
},
|
|
2226
|
-
{
|
|
2227
|
-
"name": "dataGrid",
|
|
2228
|
-
"attribute": "dataGrid",
|
|
2229
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2230
|
-
},
|
|
2231
|
-
{
|
|
2232
|
-
"name": "column",
|
|
2233
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
2234
|
-
},
|
|
2235
|
-
{
|
|
2236
|
-
"name": "width",
|
|
2237
|
-
"attribute": "width",
|
|
2238
|
-
"description": "The width of the column",
|
|
2239
|
-
"type": "string",
|
|
2240
|
-
"default": "\"max-content\""
|
|
2241
|
-
},
|
|
2242
|
-
{
|
|
2243
|
-
"name": "hidden",
|
|
2244
|
-
"attribute": "hidden",
|
|
2245
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2246
|
-
"type": "boolean",
|
|
2247
|
-
"default": "false"
|
|
2248
|
-
},
|
|
2249
|
-
{
|
|
2250
|
-
"name": "heading",
|
|
2251
|
-
"attribute": "heading",
|
|
2252
|
-
"description": "The heading of the column",
|
|
2253
|
-
"type": "string",
|
|
2254
|
-
"default": "\"\""
|
|
2255
|
-
},
|
|
2256
|
-
{
|
|
2257
|
-
"name": "textAlign",
|
|
2258
|
-
"attribute": "textAlign",
|
|
2259
|
-
"description": "The text alignment of the column",
|
|
2260
|
-
"type": "DataGridColumnAlignment",
|
|
2261
|
-
"default": "\"start\""
|
|
2262
|
-
},
|
|
2263
|
-
{
|
|
2264
|
-
"name": "description",
|
|
2265
|
-
"attribute": "description",
|
|
2266
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2267
|
-
"type": "string | undefined"
|
|
2268
|
-
},
|
|
2269
|
-
{
|
|
2270
|
-
"name": "dataSelector",
|
|
2271
|
-
"attribute": "dataSelector",
|
|
2272
|
-
"description": "The data selector of the column",
|
|
2273
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2274
|
-
},
|
|
2275
|
-
{
|
|
2276
|
-
"name": "sortDataSelector",
|
|
2277
|
-
"attribute": "sortDataSelector",
|
|
2278
|
-
"description": "The data selector of the column",
|
|
2279
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2280
|
-
},
|
|
2281
|
-
{
|
|
2282
|
-
"name": "nonSortable",
|
|
2283
|
-
"attribute": "nonSortable",
|
|
2284
|
-
"description": "Whether the column is sortable",
|
|
2285
|
-
"type": "boolean",
|
|
2286
|
-
"default": "false"
|
|
2287
|
-
},
|
|
2288
|
-
{
|
|
2289
|
-
"name": "nonEditable",
|
|
2290
|
-
"attribute": "nonEditable",
|
|
2291
|
-
"description": "Whether the column is editable",
|
|
2292
|
-
"type": "boolean | Predicate<TData>",
|
|
2293
|
-
"default": "false"
|
|
2294
|
-
},
|
|
2295
|
-
{
|
|
2296
|
-
"name": "sticky",
|
|
2297
|
-
"attribute": "sticky",
|
|
2298
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2299
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2300
|
-
}
|
|
2301
|
-
]
|
|
2302
|
-
},
|
|
2303
|
-
{
|
|
2304
|
-
"name": "mo-data-grid-column-currency",
|
|
2305
|
-
"path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnCurrency.ts",
|
|
2306
|
-
"attributes": [
|
|
2307
|
-
{
|
|
2308
|
-
"name": "currency",
|
|
2309
|
-
"description": "The currency of the values.",
|
|
2310
|
-
"type": "Currency | undefined"
|
|
2311
|
-
},
|
|
2312
|
-
{
|
|
2313
|
-
"name": "currencyDataSelector",
|
|
2314
|
-
"description": "The key path to the currency of the values.",
|
|
2315
|
-
"type": "KeyPathOf<TData>"
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
"name": "sumHeading",
|
|
2319
|
-
"type": "string | undefined",
|
|
2320
|
-
"default": "\"undefined\""
|
|
2321
|
-
},
|
|
2322
|
-
{
|
|
2323
|
-
"name": "dataGrid",
|
|
2324
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2325
|
-
},
|
|
2326
|
-
{
|
|
2327
|
-
"name": "width",
|
|
2328
|
-
"description": "The width of the column",
|
|
2329
|
-
"type": "string",
|
|
2330
|
-
"default": "\"max-content\""
|
|
2331
|
-
},
|
|
2332
|
-
{
|
|
2333
|
-
"name": "hidden",
|
|
2334
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2335
|
-
"type": "boolean",
|
|
2336
|
-
"default": "false"
|
|
2337
|
-
},
|
|
2338
|
-
{
|
|
2339
|
-
"name": "heading",
|
|
2340
|
-
"description": "The heading of the column",
|
|
2341
|
-
"type": "string",
|
|
2342
|
-
"default": "\"\""
|
|
2343
|
-
},
|
|
2344
|
-
{
|
|
2345
|
-
"name": "textAlign",
|
|
2346
|
-
"description": "The text alignment of the column",
|
|
2347
|
-
"type": "DataGridColumnAlignment",
|
|
2348
|
-
"default": "\"end\""
|
|
2349
|
-
},
|
|
2350
|
-
{
|
|
2351
|
-
"name": "description",
|
|
2352
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2353
|
-
"type": "string | undefined"
|
|
2354
|
-
},
|
|
2355
|
-
{
|
|
2356
|
-
"name": "dataSelector",
|
|
2357
|
-
"description": "The data selector of the column",
|
|
2358
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2359
|
-
},
|
|
2360
|
-
{
|
|
2361
|
-
"name": "sortDataSelector",
|
|
2362
|
-
"description": "The data selector of the column",
|
|
2363
|
-
"type": "KeyPathOf<TData>"
|
|
2364
|
-
},
|
|
2365
|
-
{
|
|
2366
|
-
"name": "nonSortable",
|
|
2367
|
-
"description": "Whether the column is sortable",
|
|
2368
|
-
"type": "boolean",
|
|
2369
|
-
"default": "false"
|
|
2370
|
-
},
|
|
2371
|
-
{
|
|
2372
|
-
"name": "nonEditable",
|
|
2373
|
-
"description": "Whether the column is editable",
|
|
2374
|
-
"type": "boolean | Predicate<TData>",
|
|
2375
|
-
"default": "false"
|
|
2376
|
-
},
|
|
2377
|
-
{
|
|
2378
|
-
"name": "sticky",
|
|
2379
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2380
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2381
|
-
}
|
|
2382
|
-
],
|
|
2383
|
-
"properties": [
|
|
2384
|
-
{
|
|
2385
|
-
"name": "defaultCurrency",
|
|
2386
|
-
"type": "Currency | undefined"
|
|
2387
|
-
},
|
|
2388
|
-
{
|
|
2389
|
-
"name": "currency",
|
|
2390
|
-
"attribute": "currency",
|
|
2391
|
-
"description": "The currency of the values.",
|
|
2392
|
-
"type": "Currency | undefined"
|
|
2393
|
-
},
|
|
2394
|
-
{
|
|
2395
|
-
"name": "currencyDataSelector",
|
|
2396
|
-
"attribute": "currencyDataSelector",
|
|
2397
|
-
"description": "The key path to the currency of the values.",
|
|
2398
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2399
|
-
},
|
|
2400
|
-
{
|
|
2401
|
-
"name": "sumHeading",
|
|
2402
|
-
"attribute": "sumHeading",
|
|
2403
|
-
"type": "string | undefined",
|
|
2404
|
-
"default": "\"undefined\""
|
|
2405
|
-
},
|
|
2406
|
-
{
|
|
2407
|
-
"name": "dataGrid",
|
|
2408
|
-
"attribute": "dataGrid",
|
|
2409
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"name": "column",
|
|
2413
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
2414
|
-
},
|
|
2415
|
-
{
|
|
2416
|
-
"name": "width",
|
|
2417
|
-
"attribute": "width",
|
|
2418
|
-
"description": "The width of the column",
|
|
2419
|
-
"type": "string",
|
|
2420
|
-
"default": "\"max-content\""
|
|
2421
|
-
},
|
|
2422
|
-
{
|
|
2423
|
-
"name": "hidden",
|
|
2424
|
-
"attribute": "hidden",
|
|
2425
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2426
|
-
"type": "boolean",
|
|
2427
|
-
"default": "false"
|
|
2428
|
-
},
|
|
2429
|
-
{
|
|
2430
|
-
"name": "heading",
|
|
2431
|
-
"attribute": "heading",
|
|
2432
|
-
"description": "The heading of the column",
|
|
2433
|
-
"type": "string",
|
|
2434
|
-
"default": "\"\""
|
|
2435
|
-
},
|
|
2436
|
-
{
|
|
2437
|
-
"name": "textAlign",
|
|
2438
|
-
"attribute": "textAlign",
|
|
2439
|
-
"description": "The text alignment of the column",
|
|
2440
|
-
"type": "DataGridColumnAlignment",
|
|
2441
|
-
"default": "\"end\""
|
|
2442
|
-
},
|
|
2443
|
-
{
|
|
2444
|
-
"name": "description",
|
|
2445
|
-
"attribute": "description",
|
|
2446
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2447
|
-
"type": "string | undefined"
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"name": "dataSelector",
|
|
2451
|
-
"attribute": "dataSelector",
|
|
2452
|
-
"description": "The data selector of the column",
|
|
2453
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2454
|
-
},
|
|
2455
|
-
{
|
|
2456
|
-
"name": "sortDataSelector",
|
|
2457
|
-
"attribute": "sortDataSelector",
|
|
2458
|
-
"description": "The data selector of the column",
|
|
2459
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2460
|
-
},
|
|
2461
|
-
{
|
|
2462
|
-
"name": "nonSortable",
|
|
2463
|
-
"attribute": "nonSortable",
|
|
2464
|
-
"description": "Whether the column is sortable",
|
|
2465
|
-
"type": "boolean",
|
|
2466
|
-
"default": "false"
|
|
2467
|
-
},
|
|
2468
|
-
{
|
|
2469
|
-
"name": "nonEditable",
|
|
2470
|
-
"attribute": "nonEditable",
|
|
2471
|
-
"description": "Whether the column is editable",
|
|
2472
|
-
"type": "boolean | Predicate<TData>",
|
|
2473
|
-
"default": "false"
|
|
2474
|
-
},
|
|
2475
|
-
{
|
|
2476
|
-
"name": "sticky",
|
|
2477
|
-
"attribute": "sticky",
|
|
2478
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2479
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2480
|
-
}
|
|
2481
|
-
]
|
|
2482
|
-
},
|
|
2483
|
-
{
|
|
2484
|
-
"name": "mo-data-grid-column-number",
|
|
2485
|
-
"path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnNumber.ts",
|
|
2486
|
-
"attributes": [
|
|
2487
|
-
{
|
|
2488
|
-
"name": "sumHeading",
|
|
2489
|
-
"type": "string | undefined",
|
|
2490
|
-
"default": "\"undefined\""
|
|
2491
|
-
},
|
|
2492
|
-
{
|
|
2493
|
-
"name": "dataGrid",
|
|
2494
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2495
|
-
},
|
|
2496
|
-
{
|
|
2497
|
-
"name": "width",
|
|
2498
|
-
"description": "The width of the column",
|
|
2499
|
-
"type": "string",
|
|
2500
|
-
"default": "\"max-content\""
|
|
2501
|
-
},
|
|
2502
|
-
{
|
|
2503
|
-
"name": "hidden",
|
|
2504
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2505
|
-
"type": "boolean",
|
|
2506
|
-
"default": "false"
|
|
2507
|
-
},
|
|
2508
|
-
{
|
|
2509
|
-
"name": "heading",
|
|
2510
|
-
"description": "The heading of the column",
|
|
2511
|
-
"type": "string",
|
|
2512
|
-
"default": "\"\""
|
|
2513
|
-
},
|
|
2514
|
-
{
|
|
2515
|
-
"name": "textAlign",
|
|
2516
|
-
"description": "The text alignment of the column",
|
|
2517
|
-
"type": "DataGridColumnAlignment",
|
|
2518
|
-
"default": "\"end\""
|
|
2519
|
-
},
|
|
2520
|
-
{
|
|
2521
|
-
"name": "description",
|
|
2522
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2523
|
-
"type": "string | undefined"
|
|
2524
|
-
},
|
|
2525
|
-
{
|
|
2526
|
-
"name": "dataSelector",
|
|
2527
|
-
"description": "The data selector of the column",
|
|
2528
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2529
|
-
},
|
|
2530
|
-
{
|
|
2531
|
-
"name": "sortDataSelector",
|
|
2532
|
-
"description": "The data selector of the column",
|
|
2533
|
-
"type": "KeyPathOf<TData>"
|
|
2534
|
-
},
|
|
2535
|
-
{
|
|
2536
|
-
"name": "nonSortable",
|
|
2537
|
-
"description": "Whether the column is sortable",
|
|
2538
|
-
"type": "boolean",
|
|
2539
|
-
"default": "false"
|
|
2540
|
-
},
|
|
2541
|
-
{
|
|
2542
|
-
"name": "nonEditable",
|
|
2543
|
-
"description": "Whether the column is editable",
|
|
2544
|
-
"type": "boolean | Predicate<TData>",
|
|
2545
|
-
"default": "false"
|
|
2546
|
-
},
|
|
2547
|
-
{
|
|
2548
|
-
"name": "sticky",
|
|
2549
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2550
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2551
|
-
}
|
|
2552
|
-
],
|
|
2553
|
-
"properties": [
|
|
2554
|
-
{
|
|
2555
|
-
"name": "sumHeading",
|
|
2556
|
-
"attribute": "sumHeading",
|
|
2557
|
-
"type": "string | undefined",
|
|
2558
|
-
"default": "\"undefined\""
|
|
2559
|
-
},
|
|
2560
|
-
{
|
|
2561
|
-
"name": "dataGrid",
|
|
2562
|
-
"attribute": "dataGrid",
|
|
2563
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2564
|
-
},
|
|
2565
|
-
{
|
|
2566
|
-
"name": "column",
|
|
2567
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
2568
|
-
},
|
|
2569
|
-
{
|
|
2570
|
-
"name": "width",
|
|
2571
|
-
"attribute": "width",
|
|
2572
|
-
"description": "The width of the column",
|
|
2573
|
-
"type": "string",
|
|
2574
|
-
"default": "\"max-content\""
|
|
2575
|
-
},
|
|
2576
|
-
{
|
|
2577
|
-
"name": "hidden",
|
|
2578
|
-
"attribute": "hidden",
|
|
2579
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2580
|
-
"type": "boolean",
|
|
2581
|
-
"default": "false"
|
|
2582
|
-
},
|
|
2583
|
-
{
|
|
2584
|
-
"name": "heading",
|
|
2585
|
-
"attribute": "heading",
|
|
2586
|
-
"description": "The heading of the column",
|
|
2587
|
-
"type": "string",
|
|
2588
|
-
"default": "\"\""
|
|
2589
|
-
},
|
|
2590
|
-
{
|
|
2591
|
-
"name": "textAlign",
|
|
2592
|
-
"attribute": "textAlign",
|
|
2593
|
-
"description": "The text alignment of the column",
|
|
2594
|
-
"type": "DataGridColumnAlignment",
|
|
2595
|
-
"default": "\"end\""
|
|
2596
|
-
},
|
|
2597
|
-
{
|
|
2598
|
-
"name": "description",
|
|
2599
|
-
"attribute": "description",
|
|
2600
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2601
|
-
"type": "string | undefined"
|
|
2602
|
-
},
|
|
2603
|
-
{
|
|
2604
|
-
"name": "dataSelector",
|
|
2605
|
-
"attribute": "dataSelector",
|
|
2606
|
-
"description": "The data selector of the column",
|
|
2607
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"name": "sortDataSelector",
|
|
2611
|
-
"attribute": "sortDataSelector",
|
|
2612
|
-
"description": "The data selector of the column",
|
|
2613
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2614
|
-
},
|
|
2615
|
-
{
|
|
2616
|
-
"name": "nonSortable",
|
|
2617
|
-
"attribute": "nonSortable",
|
|
2618
|
-
"description": "Whether the column is sortable",
|
|
2619
|
-
"type": "boolean",
|
|
2620
|
-
"default": "false"
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
"name": "nonEditable",
|
|
2624
|
-
"attribute": "nonEditable",
|
|
2625
|
-
"description": "Whether the column is editable",
|
|
2626
|
-
"type": "boolean | Predicate<TData>",
|
|
2627
|
-
"default": "false"
|
|
2628
|
-
},
|
|
2629
|
-
{
|
|
2630
|
-
"name": "sticky",
|
|
2631
|
-
"attribute": "sticky",
|
|
2632
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2633
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2634
|
-
}
|
|
2635
|
-
]
|
|
2636
|
-
},
|
|
2637
|
-
{
|
|
2638
|
-
"name": "mo-data-grid-column-percent",
|
|
2639
|
-
"path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnPercent.ts",
|
|
2640
|
-
"attributes": [
|
|
2641
|
-
{
|
|
2642
|
-
"name": "sumHeading",
|
|
2643
|
-
"type": "string | undefined",
|
|
2644
|
-
"default": "\"undefined\""
|
|
2645
|
-
},
|
|
2646
|
-
{
|
|
2647
|
-
"name": "dataGrid",
|
|
2648
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2649
|
-
},
|
|
2650
|
-
{
|
|
2651
|
-
"name": "width",
|
|
2652
|
-
"description": "The width of the column",
|
|
2653
|
-
"type": "string",
|
|
2654
|
-
"default": "\"max-content\""
|
|
2655
|
-
},
|
|
2656
|
-
{
|
|
2657
|
-
"name": "hidden",
|
|
2658
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2659
|
-
"type": "boolean",
|
|
2660
|
-
"default": "false"
|
|
2661
|
-
},
|
|
2662
|
-
{
|
|
2663
|
-
"name": "heading",
|
|
2664
|
-
"description": "The heading of the column",
|
|
2665
|
-
"type": "string",
|
|
2666
|
-
"default": "\"\""
|
|
2667
|
-
},
|
|
2668
|
-
{
|
|
2669
|
-
"name": "textAlign",
|
|
2670
|
-
"description": "The text alignment of the column",
|
|
2671
|
-
"type": "DataGridColumnAlignment",
|
|
2672
|
-
"default": "\"end\""
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"name": "description",
|
|
2676
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2677
|
-
"type": "string | undefined"
|
|
2678
|
-
},
|
|
2679
|
-
{
|
|
2680
|
-
"name": "dataSelector",
|
|
2681
|
-
"description": "The data selector of the column",
|
|
2682
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2683
|
-
},
|
|
2684
|
-
{
|
|
2685
|
-
"name": "sortDataSelector",
|
|
2686
|
-
"description": "The data selector of the column",
|
|
2687
|
-
"type": "KeyPathOf<TData>"
|
|
2688
|
-
},
|
|
2689
|
-
{
|
|
2690
|
-
"name": "nonSortable",
|
|
2691
|
-
"description": "Whether the column is sortable",
|
|
2692
|
-
"type": "boolean",
|
|
2693
|
-
"default": "false"
|
|
2694
|
-
},
|
|
2695
|
-
{
|
|
2696
|
-
"name": "nonEditable",
|
|
2697
|
-
"description": "Whether the column is editable",
|
|
2698
|
-
"type": "boolean | Predicate<TData>",
|
|
2699
|
-
"default": "false"
|
|
2700
|
-
},
|
|
2701
|
-
{
|
|
2702
|
-
"name": "sticky",
|
|
2703
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2704
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2705
|
-
}
|
|
2706
|
-
],
|
|
2707
|
-
"properties": [
|
|
2708
|
-
{
|
|
2709
|
-
"name": "sumHeading",
|
|
2710
|
-
"attribute": "sumHeading",
|
|
2711
|
-
"type": "string | undefined",
|
|
2712
|
-
"default": "\"undefined\""
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"name": "dataGrid",
|
|
2716
|
-
"attribute": "dataGrid",
|
|
2717
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
2718
|
-
},
|
|
2719
|
-
{
|
|
2720
|
-
"name": "column",
|
|
2721
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
2722
|
-
},
|
|
2723
|
-
{
|
|
2724
|
-
"name": "width",
|
|
2725
|
-
"attribute": "width",
|
|
2726
|
-
"description": "The width of the column",
|
|
2727
|
-
"type": "string",
|
|
2728
|
-
"default": "\"max-content\""
|
|
2729
|
-
},
|
|
2730
|
-
{
|
|
2731
|
-
"name": "hidden",
|
|
2732
|
-
"attribute": "hidden",
|
|
2733
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
2734
|
-
"type": "boolean",
|
|
2735
|
-
"default": "false"
|
|
2736
|
-
},
|
|
2737
|
-
{
|
|
2738
|
-
"name": "heading",
|
|
2739
|
-
"attribute": "heading",
|
|
2740
|
-
"description": "The heading of the column",
|
|
2741
|
-
"type": "string",
|
|
2742
|
-
"default": "\"\""
|
|
2743
|
-
},
|
|
2744
|
-
{
|
|
2745
|
-
"name": "textAlign",
|
|
2746
|
-
"attribute": "textAlign",
|
|
2747
|
-
"description": "The text alignment of the column",
|
|
2748
|
-
"type": "DataGridColumnAlignment",
|
|
2749
|
-
"default": "\"end\""
|
|
2750
|
-
},
|
|
2751
|
-
{
|
|
2752
|
-
"name": "description",
|
|
2753
|
-
"attribute": "description",
|
|
2754
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
2755
|
-
"type": "string | undefined"
|
|
2756
|
-
},
|
|
2757
|
-
{
|
|
2758
|
-
"name": "dataSelector",
|
|
2759
|
-
"attribute": "dataSelector",
|
|
2760
|
-
"description": "The data selector of the column",
|
|
2761
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
2762
|
-
},
|
|
2763
|
-
{
|
|
2764
|
-
"name": "sortDataSelector",
|
|
2765
|
-
"attribute": "sortDataSelector",
|
|
2766
|
-
"description": "The data selector of the column",
|
|
2767
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
2768
|
-
},
|
|
2769
|
-
{
|
|
2770
|
-
"name": "nonSortable",
|
|
2771
|
-
"attribute": "nonSortable",
|
|
2772
|
-
"description": "Whether the column is sortable",
|
|
2773
|
-
"type": "boolean",
|
|
2774
|
-
"default": "false"
|
|
2775
|
-
},
|
|
2776
|
-
{
|
|
2777
|
-
"name": "nonEditable",
|
|
2778
|
-
"attribute": "nonEditable",
|
|
2779
|
-
"description": "Whether the column is editable",
|
|
2780
|
-
"type": "boolean | Predicate<TData>",
|
|
2781
|
-
"default": "false"
|
|
2782
|
-
},
|
|
2783
|
-
{
|
|
2784
|
-
"name": "sticky",
|
|
2785
|
-
"attribute": "sticky",
|
|
2786
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
2787
|
-
"type": "DataGridColumnSticky | undefined"
|
|
2788
|
-
}
|
|
2789
|
-
]
|
|
2790
|
-
},
|
|
2791
|
-
{
|
|
2792
|
-
"name": "mo-data-grid-footer-sum",
|
|
2793
|
-
"path": ".\\packages\\DataGrid\\columns\\number\\DataGridFooterSum.ts",
|
|
2794
|
-
"attributes": [
|
|
2795
|
-
{
|
|
2796
|
-
"name": "heading",
|
|
2797
|
-
"type": "string",
|
|
2798
|
-
"default": "\"\""
|
|
2799
|
-
}
|
|
2800
|
-
],
|
|
2801
|
-
"properties": [
|
|
2802
|
-
{
|
|
2803
|
-
"name": "heading",
|
|
2804
|
-
"attribute": "heading",
|
|
2805
|
-
"type": "string",
|
|
2806
|
-
"default": "\"\""
|
|
2807
|
-
}
|
|
2808
|
-
],
|
|
2809
|
-
"slots": [
|
|
2810
|
-
{
|
|
2811
|
-
"name": "",
|
|
2812
|
-
"description": "Sum of values"
|
|
2813
|
-
}
|
|
2814
|
-
]
|
|
2815
|
-
},
|
|
2816
|
-
{
|
|
2817
|
-
"name": "mo-data-grid",
|
|
2818
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGrid.d.ts",
|
|
2819
|
-
"attributes": [
|
|
2820
|
-
{
|
|
2821
|
-
"name": "data",
|
|
2822
|
-
"description": "The data to be displayed in the DataGrid. It is an array of objects, where each object represents a row.",
|
|
2823
|
-
"type": "TData[]"
|
|
2824
|
-
},
|
|
2825
|
-
{
|
|
2826
|
-
"name": "columns",
|
|
2827
|
-
"description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
|
|
2828
|
-
"type": "DataGridColumn<TData, unknown>[]"
|
|
2829
|
-
},
|
|
2830
|
-
{
|
|
2831
|
-
"name": "headerHidden",
|
|
2832
|
-
"description": "Whether the header should be hidden.",
|
|
2833
|
-
"type": "boolean"
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"name": "preventVerticalContentScroll",
|
|
2837
|
-
"description": "Whether the content should be prevented from scrolling vertically.",
|
|
2838
|
-
"type": "boolean"
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"name": "page",
|
|
2842
|
-
"description": "The current page.",
|
|
2843
|
-
"type": "number"
|
|
2844
|
-
},
|
|
2845
|
-
{
|
|
2846
|
-
"name": "pagination",
|
|
2847
|
-
"description": "The pagination mode. It can be either `auto` or a number.",
|
|
2848
|
-
"type": "DataGridPagination | undefined"
|
|
2849
|
-
},
|
|
2850
|
-
{
|
|
2851
|
-
"name": "sorting",
|
|
2852
|
-
"description": "The sorting mode. It is an object with `selector` and `strategy` properties.",
|
|
2853
|
-
"type": "DataGridSorting<TData> | undefined"
|
|
2854
|
-
},
|
|
2855
|
-
{
|
|
2856
|
-
"name": "selectionMode",
|
|
2857
|
-
"description": "The selection mode.",
|
|
2858
|
-
"type": "DataGridSelectionMode"
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"name": "isDataSelectable",
|
|
2862
|
-
"description": "Whether data of a given row is selectable.",
|
|
2863
|
-
"type": "((data: TData) => boolean) | undefined"
|
|
2864
|
-
},
|
|
2865
|
-
{
|
|
2866
|
-
"name": "selectedData",
|
|
2867
|
-
"description": "The selected data.",
|
|
2868
|
-
"type": "TData[]"
|
|
2869
|
-
},
|
|
2870
|
-
{
|
|
2871
|
-
"name": "selectOnClick",
|
|
2872
|
-
"description": "Whether the row should be selected on click.",
|
|
2873
|
-
"type": "boolean"
|
|
2874
|
-
},
|
|
2875
|
-
{
|
|
2876
|
-
"name": "selectionCheckboxesHidden",
|
|
2877
|
-
"description": "Whether the selection checkboxes should be hidden. This activates selection on row click ignoring the `selectOnClick` attribute.",
|
|
2878
|
-
"type": "boolean"
|
|
2879
|
-
},
|
|
2880
|
-
{
|
|
2881
|
-
"name": "selectionBehaviorOnDataChange",
|
|
2882
|
-
"description": "The behavior of the selection when the data changes.",
|
|
2883
|
-
"type": "DataGridSelectionBehaviorOnDataChange"
|
|
2884
|
-
},
|
|
2885
|
-
{
|
|
2886
|
-
"name": "multipleDetails",
|
|
2887
|
-
"description": "Whether multiple details can be opened at the same time.",
|
|
2888
|
-
"type": "boolean"
|
|
2889
|
-
},
|
|
2890
|
-
{
|
|
2891
|
-
"name": "subDataGridDataSelector",
|
|
2892
|
-
"description": "The key path of the sub data grid data.",
|
|
2893
|
-
"type": "KeyPathOf<TData>"
|
|
2894
|
-
},
|
|
2895
|
-
{
|
|
2896
|
-
"name": "hasDataDetail",
|
|
2897
|
-
"description": "Whether the data has a detail.",
|
|
2898
|
-
"type": "((data: TData) => boolean) | undefined"
|
|
2899
|
-
},
|
|
2900
|
-
{
|
|
2901
|
-
"name": "detailsOnClick",
|
|
2902
|
-
"description": "Whether the details should be opened on click.",
|
|
2903
|
-
"type": "boolean"
|
|
2904
|
-
},
|
|
2905
|
-
{
|
|
2906
|
-
"name": "primaryContextMenuItemOnDoubleClick",
|
|
2907
|
-
"description": "The primary context menu item on double click.",
|
|
2908
|
-
"type": "boolean"
|
|
2909
|
-
},
|
|
2910
|
-
{
|
|
2911
|
-
"name": "editability",
|
|
2912
|
-
"description": "The editability mode.",
|
|
2913
|
-
"type": "DataGridEditability"
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"name": "getRowDetailsTemplate",
|
|
2917
|
-
"description": "A function which returns a template for the details of a given row.",
|
|
2918
|
-
"type": "((data: TData) => HTMLTemplateResult) | undefined"
|
|
2919
|
-
},
|
|
2920
|
-
{
|
|
2921
|
-
"name": "getRowContextMenuTemplate",
|
|
2922
|
-
"description": "A function which returns a template for the context menu of a given row.",
|
|
2923
|
-
"type": "((data: TData[]) => HTMLTemplateResult) | undefined"
|
|
2924
|
-
},
|
|
2925
|
-
{
|
|
2926
|
-
"name": "sidePanelTab",
|
|
2927
|
-
"description": "The side panel tab.",
|
|
2928
|
-
"type": "DataGridSidePanelTab | undefined"
|
|
2929
|
-
},
|
|
2930
|
-
{
|
|
2931
|
-
"name": "sidePanelHidden",
|
|
2932
|
-
"description": "Whether the side panel should be hidden.",
|
|
2933
|
-
"type": "boolean"
|
|
2934
|
-
},
|
|
2935
|
-
{
|
|
2936
|
-
"name": "hasAlternatingBackground",
|
|
2937
|
-
"description": "Whether the rows should have alternating background.",
|
|
2938
|
-
"type": "LocalStorage<boolean>"
|
|
2939
|
-
},
|
|
2940
|
-
{
|
|
2941
|
-
"name": "preventFabCollapse",
|
|
2942
|
-
"description": "Whether the FAB should be prevented from collapsing.",
|
|
2943
|
-
"type": "boolean"
|
|
2944
|
-
},
|
|
2945
|
-
{
|
|
2946
|
-
"name": "cellFontSize",
|
|
2947
|
-
"description": "The font size of the cells relative to the default font size. Defaults",
|
|
2948
|
-
"type": "number"
|
|
2949
|
-
},
|
|
2950
|
-
{
|
|
2951
|
-
"name": "rowHeight",
|
|
2952
|
-
"description": "The height of the rows in pixels. Defaults to",
|
|
2953
|
-
"type": "LocalStorage<number>"
|
|
2954
|
-
},
|
|
2955
|
-
{
|
|
2956
|
-
"name": "exportable",
|
|
2957
|
-
"description": "Whether the DataGrid is exportable. This will show an export button in the footer.",
|
|
2958
|
-
"type": "boolean"
|
|
2959
|
-
}
|
|
2960
|
-
],
|
|
2961
|
-
"properties": [
|
|
2962
|
-
{
|
|
2963
|
-
"name": "cellRelativeFontSize",
|
|
2964
|
-
"type": "LocalStorage<number>"
|
|
2965
|
-
},
|
|
2966
|
-
{
|
|
2967
|
-
"name": "dataChange",
|
|
2968
|
-
"type": "EventDispatcher<TData[]>"
|
|
2969
|
-
},
|
|
2970
|
-
{
|
|
2971
|
-
"name": "selectionChange",
|
|
2972
|
-
"type": "EventDispatcher<TData[]>"
|
|
2973
|
-
},
|
|
2974
|
-
{
|
|
2975
|
-
"name": "pageChange",
|
|
2976
|
-
"type": "EventDispatcher<number>"
|
|
2977
|
-
},
|
|
2978
|
-
{
|
|
2979
|
-
"name": "paginationChange",
|
|
2980
|
-
"type": "EventDispatcher<DataGridPagination | undefined>"
|
|
2981
|
-
},
|
|
2982
|
-
{
|
|
2983
|
-
"name": "columnsChange",
|
|
2984
|
-
"type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
|
|
2985
|
-
},
|
|
2986
|
-
{
|
|
2987
|
-
"name": "sidePanelOpen",
|
|
2988
|
-
"type": "EventDispatcher<DataGridSidePanelTab>"
|
|
2989
|
-
},
|
|
2990
|
-
{
|
|
2991
|
-
"name": "sidePanelClose",
|
|
2992
|
-
"type": "EventDispatcher<void>"
|
|
2993
|
-
},
|
|
2994
|
-
{
|
|
2995
|
-
"name": "sortingChange",
|
|
2996
|
-
"type": "EventDispatcher<DataGridRankedSortDefinition<TData>[]>"
|
|
2997
|
-
},
|
|
2998
|
-
{
|
|
2999
|
-
"name": "rowDetailsOpen",
|
|
3000
|
-
"type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
|
|
3001
|
-
},
|
|
3002
|
-
{
|
|
3003
|
-
"name": "rowDetailsClose",
|
|
3004
|
-
"type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
|
|
3005
|
-
},
|
|
3006
|
-
{
|
|
3007
|
-
"name": "rowClick",
|
|
3008
|
-
"type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
|
|
3009
|
-
},
|
|
3010
|
-
{
|
|
3011
|
-
"name": "rowDoubleClick",
|
|
3012
|
-
"type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
|
|
3013
|
-
},
|
|
3014
|
-
{
|
|
3015
|
-
"name": "rowMiddleClick",
|
|
3016
|
-
"type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
|
|
3017
|
-
},
|
|
3018
|
-
{
|
|
3019
|
-
"name": "cellEdit",
|
|
3020
|
-
"type": "EventDispatcher<DataGridCell<any, TData, TDetailsElement>>"
|
|
3021
|
-
},
|
|
3022
|
-
{
|
|
3023
|
-
"name": "rows",
|
|
3024
|
-
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
3025
|
-
},
|
|
3026
|
-
{
|
|
3027
|
-
"name": "hasSelection",
|
|
3028
|
-
"type": "boolean"
|
|
3029
|
-
},
|
|
3030
|
-
{
|
|
3031
|
-
"name": "hasDetails",
|
|
3032
|
-
"type": "boolean"
|
|
3033
|
-
},
|
|
3034
|
-
{
|
|
3035
|
-
"name": "allRowDetailsOpen",
|
|
3036
|
-
"type": "boolean"
|
|
3037
|
-
},
|
|
3038
|
-
{
|
|
3039
|
-
"name": "extractedColumns",
|
|
3040
|
-
"type": "DataGridColumn<TData, unknown>[]"
|
|
3041
|
-
},
|
|
3042
|
-
{
|
|
3043
|
-
"name": "visibleColumns",
|
|
3044
|
-
"type": "DataGridColumn<TData, unknown>[]"
|
|
3045
|
-
},
|
|
3046
|
-
{
|
|
3047
|
-
"name": "hasContextMenu",
|
|
3048
|
-
"type": "boolean"
|
|
3049
|
-
},
|
|
3050
|
-
{
|
|
3051
|
-
"name": "toolbarElements",
|
|
3052
|
-
"type": "Element[]"
|
|
3053
|
-
},
|
|
3054
|
-
{
|
|
3055
|
-
"name": "filterElements",
|
|
3056
|
-
"type": "Element[]"
|
|
3057
|
-
},
|
|
3058
|
-
{
|
|
3059
|
-
"name": "hasToolbar",
|
|
3060
|
-
"type": "boolean"
|
|
3061
|
-
},
|
|
3062
|
-
{
|
|
3063
|
-
"name": "hasFilters",
|
|
3064
|
-
"type": "boolean"
|
|
3065
|
-
},
|
|
3066
|
-
{
|
|
3067
|
-
"name": "hasSums",
|
|
3068
|
-
"type": "boolean"
|
|
3069
|
-
},
|
|
3070
|
-
{
|
|
3071
|
-
"name": "hasFabs",
|
|
3072
|
-
"type": "boolean"
|
|
3073
|
-
},
|
|
3074
|
-
{
|
|
3075
|
-
"name": "hasPagination",
|
|
3076
|
-
"type": "boolean"
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"name": "supportsDynamicPageSize",
|
|
3080
|
-
"type": "boolean"
|
|
3081
|
-
},
|
|
3082
|
-
{
|
|
3083
|
-
"name": "pageSize",
|
|
3084
|
-
"type": "LocalStorage<number>"
|
|
3085
|
-
},
|
|
3086
|
-
{
|
|
3087
|
-
"name": "hasFooter",
|
|
3088
|
-
"type": "boolean"
|
|
3089
|
-
},
|
|
3090
|
-
{
|
|
3091
|
-
"name": "dataLength",
|
|
3092
|
-
"type": "number"
|
|
3093
|
-
},
|
|
3094
|
-
{
|
|
3095
|
-
"name": "maxPage",
|
|
3096
|
-
"type": "number"
|
|
3097
|
-
},
|
|
3098
|
-
{
|
|
3099
|
-
"name": "hasNextPage",
|
|
3100
|
-
"type": "boolean"
|
|
3101
|
-
},
|
|
3102
|
-
{
|
|
3103
|
-
"name": "columnsController",
|
|
3104
|
-
"type": "DataGridColumnsController<TData>"
|
|
3105
|
-
},
|
|
3106
|
-
{
|
|
3107
|
-
"name": "selectionController",
|
|
3108
|
-
"type": "DataGridSelectionController<TData>"
|
|
3109
|
-
},
|
|
3110
|
-
{
|
|
3111
|
-
"name": "sortingController",
|
|
3112
|
-
"type": "DataGridSortingController<TData>"
|
|
3113
|
-
},
|
|
3114
|
-
{
|
|
3115
|
-
"name": "contextMenuController",
|
|
3116
|
-
"type": "DataGridContextMenuController<TData>"
|
|
3117
|
-
},
|
|
3118
|
-
{
|
|
3119
|
-
"name": "detailsController",
|
|
3120
|
-
"type": "DataGridDetailsController<TData>"
|
|
3121
|
-
},
|
|
3122
|
-
{
|
|
3123
|
-
"name": "rowIntersectionObserver",
|
|
3124
|
-
"type": "IntersectionObserver | undefined"
|
|
3125
|
-
},
|
|
3126
|
-
{
|
|
3127
|
-
"name": "hasDefaultRowElements",
|
|
3128
|
-
"type": "boolean"
|
|
3129
|
-
},
|
|
3130
|
-
{
|
|
3131
|
-
"name": "sumsTemplate",
|
|
3132
|
-
"type": "HTMLTemplateResult"
|
|
3133
|
-
},
|
|
3134
|
-
{
|
|
3135
|
-
"name": "dataRecords",
|
|
3136
|
-
"type": "DataRecord<TData>[]"
|
|
3137
|
-
},
|
|
3138
|
-
{
|
|
3139
|
-
"name": "renderDataRecords",
|
|
3140
|
-
"type": "DataRecord<TData>[]"
|
|
3141
|
-
},
|
|
3142
|
-
{
|
|
3143
|
-
"name": "data",
|
|
3144
|
-
"attribute": "data",
|
|
3145
|
-
"description": "The data to be displayed in the DataGrid. It is an array of objects, where each object represents a row.",
|
|
3146
|
-
"type": "TData[]"
|
|
3147
|
-
},
|
|
3148
|
-
{
|
|
3149
|
-
"name": "columns",
|
|
3150
|
-
"attribute": "columns",
|
|
3151
|
-
"description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
|
|
3152
|
-
"type": "DataGridColumn<TData, unknown>[]"
|
|
3153
|
-
},
|
|
3154
|
-
{
|
|
3155
|
-
"name": "headerHidden",
|
|
3156
|
-
"attribute": "headerHidden",
|
|
3157
|
-
"description": "Whether the header should be hidden.",
|
|
3158
|
-
"type": "boolean"
|
|
3159
|
-
},
|
|
3160
|
-
{
|
|
3161
|
-
"name": "preventVerticalContentScroll",
|
|
3162
|
-
"attribute": "preventVerticalContentScroll",
|
|
3163
|
-
"description": "Whether the content should be prevented from scrolling vertically.",
|
|
3164
|
-
"type": "boolean"
|
|
3165
|
-
},
|
|
3166
|
-
{
|
|
3167
|
-
"name": "page",
|
|
3168
|
-
"attribute": "page",
|
|
3169
|
-
"description": "The current page.",
|
|
3170
|
-
"type": "number"
|
|
3171
|
-
},
|
|
3172
|
-
{
|
|
3173
|
-
"name": "pagination",
|
|
3174
|
-
"attribute": "pagination",
|
|
3175
|
-
"description": "The pagination mode. It can be either `auto` or a number.",
|
|
3176
|
-
"type": "DataGridPagination | undefined"
|
|
3177
|
-
},
|
|
3178
|
-
{
|
|
3179
|
-
"name": "sorting",
|
|
3180
|
-
"attribute": "sorting",
|
|
3181
|
-
"description": "The sorting mode. It is an object with `selector` and `strategy` properties.",
|
|
3182
|
-
"type": "DataGridSorting<TData> | undefined"
|
|
3183
|
-
},
|
|
3184
|
-
{
|
|
3185
|
-
"name": "selectionMode",
|
|
3186
|
-
"attribute": "selectionMode",
|
|
3187
|
-
"description": "The selection mode.",
|
|
3188
|
-
"type": "DataGridSelectionMode"
|
|
3189
|
-
},
|
|
3190
|
-
{
|
|
3191
|
-
"name": "isDataSelectable",
|
|
3192
|
-
"attribute": "isDataSelectable",
|
|
3193
|
-
"description": "Whether data of a given row is selectable.",
|
|
3194
|
-
"type": "((data: TData) => boolean) | undefined"
|
|
3195
|
-
},
|
|
3196
|
-
{
|
|
3197
|
-
"name": "selectedData",
|
|
3198
|
-
"attribute": "selectedData",
|
|
3199
|
-
"description": "The selected data.",
|
|
3200
|
-
"type": "TData[]"
|
|
3201
|
-
},
|
|
3202
|
-
{
|
|
3203
|
-
"name": "selectOnClick",
|
|
3204
|
-
"attribute": "selectOnClick",
|
|
3205
|
-
"description": "Whether the row should be selected on click.",
|
|
3206
|
-
"type": "boolean"
|
|
3207
|
-
},
|
|
3208
|
-
{
|
|
3209
|
-
"name": "selectionCheckboxesHidden",
|
|
3210
|
-
"attribute": "selectionCheckboxesHidden",
|
|
3211
|
-
"description": "Whether the selection checkboxes should be hidden. This activates selection on row click ignoring the `selectOnClick` attribute.",
|
|
3212
|
-
"type": "boolean"
|
|
3213
|
-
},
|
|
3214
|
-
{
|
|
3215
|
-
"name": "selectionBehaviorOnDataChange",
|
|
3216
|
-
"attribute": "selectionBehaviorOnDataChange",
|
|
3217
|
-
"description": "The behavior of the selection when the data changes.",
|
|
3218
|
-
"type": "DataGridSelectionBehaviorOnDataChange"
|
|
3219
|
-
},
|
|
3220
|
-
{
|
|
3221
|
-
"name": "multipleDetails",
|
|
3222
|
-
"attribute": "multipleDetails",
|
|
3223
|
-
"description": "Whether multiple details can be opened at the same time.",
|
|
3224
|
-
"type": "boolean"
|
|
3225
|
-
},
|
|
3226
|
-
{
|
|
3227
|
-
"name": "subDataGridDataSelector",
|
|
3228
|
-
"attribute": "subDataGridDataSelector",
|
|
3229
|
-
"description": "The key path of the sub data grid data.",
|
|
3230
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
3231
|
-
},
|
|
3232
|
-
{
|
|
3233
|
-
"name": "hasDataDetail",
|
|
3234
|
-
"attribute": "hasDataDetail",
|
|
3235
|
-
"description": "Whether the data has a detail.",
|
|
3236
|
-
"type": "((data: TData) => boolean) | undefined"
|
|
3237
|
-
},
|
|
3238
|
-
{
|
|
3239
|
-
"name": "detailsOnClick",
|
|
3240
|
-
"attribute": "detailsOnClick",
|
|
3241
|
-
"description": "Whether the details should be opened on click.",
|
|
3242
|
-
"type": "boolean"
|
|
3243
|
-
},
|
|
3244
|
-
{
|
|
3245
|
-
"name": "primaryContextMenuItemOnDoubleClick",
|
|
3246
|
-
"attribute": "primaryContextMenuItemOnDoubleClick",
|
|
3247
|
-
"description": "The primary context menu item on double click.",
|
|
3248
|
-
"type": "boolean"
|
|
3249
|
-
},
|
|
3250
|
-
{
|
|
3251
|
-
"name": "editability",
|
|
3252
|
-
"attribute": "editability",
|
|
3253
|
-
"description": "The editability mode.",
|
|
3254
|
-
"type": "DataGridEditability"
|
|
3255
|
-
},
|
|
3256
|
-
{
|
|
3257
|
-
"name": "getRowDetailsTemplate",
|
|
3258
|
-
"attribute": "getRowDetailsTemplate",
|
|
3259
|
-
"description": "A function which returns a template for the details of a given row.",
|
|
3260
|
-
"type": "((data: TData) => HTMLTemplateResult) | undefined"
|
|
3261
|
-
},
|
|
3262
|
-
{
|
|
3263
|
-
"name": "getRowContextMenuTemplate",
|
|
3264
|
-
"attribute": "getRowContextMenuTemplate",
|
|
3265
|
-
"description": "A function which returns a template for the context menu of a given row.",
|
|
3266
|
-
"type": "((data: TData[]) => HTMLTemplateResult) | undefined"
|
|
3267
|
-
},
|
|
3268
|
-
{
|
|
3269
|
-
"name": "sidePanelTab",
|
|
3270
|
-
"attribute": "sidePanelTab",
|
|
3271
|
-
"description": "The side panel tab.",
|
|
3272
|
-
"type": "DataGridSidePanelTab | undefined"
|
|
3273
|
-
},
|
|
3274
|
-
{
|
|
3275
|
-
"name": "sidePanelHidden",
|
|
3276
|
-
"attribute": "sidePanelHidden",
|
|
3277
|
-
"description": "Whether the side panel should be hidden.",
|
|
3278
|
-
"type": "boolean"
|
|
3279
|
-
},
|
|
3280
|
-
{
|
|
3281
|
-
"name": "hasAlternatingBackground",
|
|
3282
|
-
"attribute": "hasAlternatingBackground",
|
|
3283
|
-
"description": "Whether the rows should have alternating background.",
|
|
3284
|
-
"type": "LocalStorage<boolean>"
|
|
3285
|
-
},
|
|
3286
|
-
{
|
|
3287
|
-
"name": "preventFabCollapse",
|
|
3288
|
-
"attribute": "preventFabCollapse",
|
|
3289
|
-
"description": "Whether the FAB should be prevented from collapsing.",
|
|
3290
|
-
"type": "boolean"
|
|
3291
|
-
},
|
|
3292
|
-
{
|
|
3293
|
-
"name": "cellFontSize",
|
|
3294
|
-
"attribute": "cellFontSize",
|
|
3295
|
-
"description": "The font size of the cells relative to the default font size. Defaults",
|
|
3296
|
-
"type": "number"
|
|
3297
|
-
},
|
|
3298
|
-
{
|
|
3299
|
-
"name": "rowHeight",
|
|
3300
|
-
"attribute": "rowHeight",
|
|
3301
|
-
"description": "The height of the rows in pixels. Defaults to",
|
|
3302
|
-
"type": "LocalStorage<number>"
|
|
3303
|
-
},
|
|
3304
|
-
{
|
|
3305
|
-
"name": "exportable",
|
|
3306
|
-
"attribute": "exportable",
|
|
3307
|
-
"description": "Whether the DataGrid is exportable. This will show an export button in the footer.",
|
|
3308
|
-
"type": "boolean"
|
|
3309
|
-
}
|
|
3310
|
-
],
|
|
3311
|
-
"events": [
|
|
3312
|
-
{
|
|
3313
|
-
"name": "dataChange",
|
|
3314
|
-
"type": "CustomEvent<TData[]>"
|
|
3315
|
-
},
|
|
3316
|
-
{
|
|
3317
|
-
"name": "selectionChange",
|
|
3318
|
-
"type": "CustomEvent<TData[]>"
|
|
3319
|
-
},
|
|
3320
|
-
{
|
|
3321
|
-
"name": "pageChange",
|
|
3322
|
-
"type": "CustomEvent<number>"
|
|
3323
|
-
},
|
|
3324
|
-
{
|
|
3325
|
-
"name": "paginationChange",
|
|
3326
|
-
"type": "CustomEvent<DataGridPagination | undefined>"
|
|
3327
|
-
},
|
|
3328
|
-
{
|
|
3329
|
-
"name": "columnsChange",
|
|
3330
|
-
"type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"name": "sidePanelOpen",
|
|
3334
|
-
"type": "CustomEvent<DataGridSidePanelTab>"
|
|
3335
|
-
},
|
|
3336
|
-
{
|
|
3337
|
-
"name": "sidePanelClose",
|
|
3338
|
-
"type": "CustomEvent<void>"
|
|
3339
|
-
},
|
|
3340
|
-
{
|
|
3341
|
-
"name": "sortingChange",
|
|
3342
|
-
"type": "CustomEvent<DataGridRankedSortDefinition<TData>[]>"
|
|
3343
|
-
},
|
|
3344
|
-
{
|
|
3345
|
-
"name": "rowDetailsOpen",
|
|
3346
|
-
"type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
|
|
3347
|
-
},
|
|
3348
|
-
{
|
|
3349
|
-
"name": "rowDetailsClose",
|
|
3350
|
-
"type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
|
|
3351
|
-
},
|
|
3352
|
-
{
|
|
3353
|
-
"name": "rowClick",
|
|
3354
|
-
"type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
|
|
3355
|
-
},
|
|
3356
|
-
{
|
|
3357
|
-
"name": "rowDoubleClick",
|
|
3358
|
-
"type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
|
|
3359
|
-
},
|
|
3360
|
-
{
|
|
3361
|
-
"name": "rowMiddleClick",
|
|
3362
|
-
"type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
|
|
3363
|
-
},
|
|
3364
|
-
{
|
|
3365
|
-
"name": "cellEdit",
|
|
3366
|
-
"type": "CustomEvent<DataGridCell<any, TData, TDetailsElement>>"
|
|
3367
|
-
}
|
|
3368
|
-
],
|
|
3369
|
-
"slots": [
|
|
3370
|
-
{
|
|
3371
|
-
"name": "",
|
|
3372
|
-
"description": "Use this slot only for declarative DataGrid APIs e.g. setting ColumnDefinitions via `mo-data-grid-columns` tag."
|
|
3373
|
-
},
|
|
3374
|
-
{
|
|
3375
|
-
"name": "toolbar",
|
|
3376
|
-
"description": "The horizontal bar above DataGrid's contents."
|
|
3377
|
-
},
|
|
3378
|
-
{
|
|
3379
|
-
"name": "filter",
|
|
3380
|
-
"description": "A vertical bar for elements which filter DataGrid's data. It is opened through an icon-button in the toolbar."
|
|
3381
|
-
},
|
|
3382
|
-
{
|
|
3383
|
-
"name": "sum",
|
|
3384
|
-
"description": "A horizontal bar in the DataGrid's footer for showing sums. Calculated sums are also placed here by default."
|
|
3385
|
-
},
|
|
3386
|
-
{
|
|
3387
|
-
"name": "settings",
|
|
3388
|
-
"description": "A vertical bar for elements which change DataGrid's settings. It is pre-filled with columns' settings and can be opened through an icon-button in the toolbar."
|
|
3389
|
-
},
|
|
3390
|
-
{
|
|
3391
|
-
"name": "fab",
|
|
3392
|
-
"description": "A wrapper at the bottom right edge, floating right above the footer, expecting Floating Action Button to be placed in."
|
|
3393
|
-
},
|
|
3394
|
-
{
|
|
3395
|
-
"name": "error-no-content",
|
|
3396
|
-
"description": "A slot for displaying an error message when no data is available."
|
|
3397
|
-
}
|
|
3398
|
-
],
|
|
3399
|
-
"cssProperties": [
|
|
3400
|
-
{
|
|
3401
|
-
"name": "--mo-data-grid-min-visible-rows",
|
|
3402
|
-
"description": "The minimum number of visible rows. Default to 2.5."
|
|
3403
|
-
},
|
|
3404
|
-
{
|
|
3405
|
-
"name": "--mo-data-grid-footer-background",
|
|
3406
|
-
"description": "The background of the footer."
|
|
3407
|
-
},
|
|
3408
|
-
{
|
|
3409
|
-
"name": "--mo-data-grid-cell-padding",
|
|
3410
|
-
"description": "The inline padding of the cells. Default to 10px."
|
|
3411
|
-
},
|
|
3412
|
-
{
|
|
3413
|
-
"name": "--mo-data-grid-column-sub-row-indentation",
|
|
3414
|
-
"description": "The indentation of the first column in the sub row. Default to 20px."
|
|
3415
|
-
}
|
|
3416
|
-
]
|
|
3417
|
-
},
|
|
3418
|
-
{
|
|
3419
|
-
"name": "mo-data-grid-cell",
|
|
3420
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridCell.d.ts",
|
|
3421
|
-
"attributes": [
|
|
3422
|
-
{
|
|
3423
|
-
"name": "value",
|
|
3424
|
-
"type": "TValue"
|
|
3425
|
-
},
|
|
3426
|
-
{
|
|
3427
|
-
"name": "column",
|
|
3428
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
3429
|
-
},
|
|
3430
|
-
{
|
|
3431
|
-
"name": "row",
|
|
3432
|
-
"type": "DataGridRow<TData, TDetailsElement>"
|
|
3433
|
-
}
|
|
3434
|
-
],
|
|
3435
|
-
"properties": [
|
|
3436
|
-
{
|
|
3437
|
-
"name": "dataGrid",
|
|
3438
|
-
"type": "DataGrid<TData, any>"
|
|
3439
|
-
},
|
|
3440
|
-
{
|
|
3441
|
-
"name": "data",
|
|
3442
|
-
"type": "TData"
|
|
3443
|
-
},
|
|
3444
|
-
{
|
|
3445
|
-
"name": "dataSelector",
|
|
3446
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | (Extract<keyof TData, `${number}`> extends infer T ? T extends Extract<...> ? T extends keyof TData ? `${T}.${object extends TData[T] ? string : TData[T] extends infer T_1 ? T_1 extends TData[T] ? T_1 extends readonly ..."
|
|
3447
|
-
},
|
|
3448
|
-
{
|
|
3449
|
-
"name": "isEditing",
|
|
3450
|
-
"type": "boolean"
|
|
3451
|
-
},
|
|
3452
|
-
{
|
|
3453
|
-
"name": "value",
|
|
3454
|
-
"attribute": "value",
|
|
3455
|
-
"type": "TValue"
|
|
3456
|
-
},
|
|
3457
|
-
{
|
|
3458
|
-
"name": "column",
|
|
3459
|
-
"attribute": "column",
|
|
3460
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
3461
|
-
},
|
|
3462
|
-
{
|
|
3463
|
-
"name": "row",
|
|
3464
|
-
"attribute": "row",
|
|
3465
|
-
"type": "DataGridRow<TData, TDetailsElement>"
|
|
3466
|
-
}
|
|
3467
|
-
]
|
|
3468
|
-
},
|
|
3469
|
-
{
|
|
3470
|
-
"name": "mo-data-grid-footer",
|
|
3471
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridFooter.d.ts",
|
|
3472
|
-
"attributes": [
|
|
3473
|
-
{
|
|
3474
|
-
"name": "dataGrid",
|
|
3475
|
-
"type": "DataGrid<TData, any>"
|
|
3476
|
-
},
|
|
3477
|
-
{
|
|
3478
|
-
"name": "page",
|
|
3479
|
-
"type": "number"
|
|
3480
|
-
}
|
|
3481
|
-
],
|
|
3482
|
-
"properties": [
|
|
3483
|
-
{
|
|
3484
|
-
"name": "dataGrid",
|
|
3485
|
-
"attribute": "dataGrid",
|
|
3486
|
-
"type": "DataGrid<TData, any>"
|
|
3487
|
-
},
|
|
3488
|
-
{
|
|
3489
|
-
"name": "page",
|
|
3490
|
-
"attribute": "page",
|
|
3491
|
-
"type": "number"
|
|
3492
|
-
}
|
|
3493
|
-
]
|
|
3494
|
-
},
|
|
3495
|
-
{
|
|
3496
|
-
"name": "mo-data-grid-header",
|
|
3497
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridHeader.d.ts",
|
|
3498
|
-
"properties": [
|
|
3499
|
-
{
|
|
3500
|
-
"name": "pageChange",
|
|
3501
|
-
"type": "EventDispatcher<number>"
|
|
3502
|
-
},
|
|
3503
|
-
{
|
|
3504
|
-
"name": "modeSelectionChange",
|
|
3505
|
-
"type": "EventDispatcher<string>"
|
|
3506
|
-
},
|
|
3507
|
-
{
|
|
3508
|
-
"name": "dataGrid",
|
|
3509
|
-
"type": "DataGrid<TData, any>"
|
|
3510
|
-
},
|
|
3511
|
-
{
|
|
3512
|
-
"name": "overlayOpen",
|
|
3513
|
-
"type": "boolean"
|
|
3514
|
-
}
|
|
3515
|
-
]
|
|
3516
|
-
},
|
|
3517
|
-
{
|
|
3518
|
-
"name": "mo-data-grid-header-separator",
|
|
3519
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridHeaderSeparator.d.ts",
|
|
3520
|
-
"properties": [
|
|
3521
|
-
{
|
|
3522
|
-
"name": "dataGrid",
|
|
3523
|
-
"type": "DataGrid<unknown, undefined>"
|
|
3524
|
-
},
|
|
3525
|
-
{
|
|
3526
|
-
"name": "column",
|
|
3527
|
-
"type": "DataGridColumn<unknown, unknown>"
|
|
3528
|
-
}
|
|
3529
|
-
]
|
|
3530
|
-
},
|
|
3531
|
-
{
|
|
3532
|
-
"name": "mo-data-grid-primary-context-menu-item",
|
|
3533
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridPrimaryContextMenuItem.d.ts",
|
|
3534
|
-
"attributes": [
|
|
3535
|
-
{
|
|
3536
|
-
"name": "open",
|
|
3537
|
-
"type": "boolean",
|
|
3538
|
-
"default": "false"
|
|
3539
|
-
},
|
|
3540
|
-
{
|
|
3541
|
-
"name": "icon",
|
|
3542
|
-
"type": "MaterialIcon | undefined"
|
|
3543
|
-
},
|
|
3544
|
-
{
|
|
3545
|
-
"name": "disabled",
|
|
3546
|
-
"description": "Whether the list item is disabled",
|
|
3547
|
-
"type": "boolean",
|
|
3548
|
-
"default": "false"
|
|
3549
|
-
},
|
|
3550
|
-
{
|
|
3551
|
-
"name": "preventClickOnSpace",
|
|
3552
|
-
"description": "Whether the list item should prevent click on space",
|
|
3553
|
-
"type": "boolean",
|
|
3554
|
-
"default": "false"
|
|
3555
|
-
}
|
|
3556
|
-
],
|
|
3557
|
-
"properties": [
|
|
3558
|
-
{
|
|
3559
|
-
"name": "open",
|
|
3560
|
-
"attribute": "open",
|
|
3561
|
-
"type": "boolean",
|
|
3562
|
-
"default": "false"
|
|
3563
|
-
},
|
|
3564
|
-
{
|
|
3565
|
-
"name": "subMenu",
|
|
3566
|
-
"type": "Menu"
|
|
3567
|
-
},
|
|
3568
|
-
{
|
|
3569
|
-
"name": "slotController",
|
|
3570
|
-
"type": "SlotController",
|
|
3571
|
-
"default": "\"new SlotController(this)\""
|
|
3572
|
-
},
|
|
3573
|
-
{
|
|
3574
|
-
"name": "menuItemClick",
|
|
3575
|
-
"type": "EventDispatcher<void>"
|
|
3576
|
-
},
|
|
3577
|
-
{
|
|
3578
|
-
"name": "icon",
|
|
3579
|
-
"attribute": "icon",
|
|
3580
|
-
"type": "MaterialIcon | undefined"
|
|
3581
|
-
},
|
|
3582
|
-
{
|
|
3583
|
-
"name": "role",
|
|
3584
|
-
"type": "\"menuitem\"",
|
|
3585
|
-
"default": "\"menuitem\""
|
|
3586
|
-
},
|
|
3587
|
-
{
|
|
3588
|
-
"name": "tabIndex",
|
|
3589
|
-
"type": "number",
|
|
3590
|
-
"default": "0"
|
|
3591
|
-
},
|
|
3592
|
-
{
|
|
3593
|
-
"name": "disabled",
|
|
3594
|
-
"attribute": "disabled",
|
|
3595
|
-
"description": "Whether the list item is disabled",
|
|
3596
|
-
"type": "boolean",
|
|
3597
|
-
"default": "false"
|
|
3598
|
-
},
|
|
3599
|
-
{
|
|
3600
|
-
"name": "preventClickOnSpace",
|
|
3601
|
-
"attribute": "preventClickOnSpace",
|
|
3602
|
-
"description": "Whether the list item should prevent click on space",
|
|
3603
|
-
"type": "boolean",
|
|
3604
|
-
"default": "false"
|
|
3605
|
-
}
|
|
3606
|
-
],
|
|
3607
|
-
"slots": [
|
|
3608
|
-
{
|
|
3609
|
-
"name": "submenu"
|
|
3610
|
-
},
|
|
3611
|
-
{
|
|
3612
|
-
"name": "",
|
|
3613
|
-
"description": "Default slot for content"
|
|
3614
|
-
}
|
|
3615
|
-
],
|
|
3616
|
-
"cssParts": [
|
|
3617
|
-
{
|
|
3618
|
-
"name": "icon"
|
|
3619
|
-
}
|
|
3620
|
-
]
|
|
3621
|
-
},
|
|
3622
|
-
{
|
|
3623
|
-
"name": "mo-data-grid-side-panel",
|
|
3624
|
-
"path": ".\\packages\\DataGrid\\dist\\DataGridSidePanel.d.ts",
|
|
3625
|
-
"attributes": [
|
|
3626
|
-
{
|
|
3627
|
-
"name": "dataGrid",
|
|
3628
|
-
"type": "DataGrid<TData, any>"
|
|
3629
|
-
},
|
|
3630
|
-
{
|
|
3631
|
-
"name": "tab",
|
|
3632
|
-
"type": "DataGridSidePanelTab | undefined"
|
|
3633
|
-
}
|
|
3634
|
-
],
|
|
3635
|
-
"properties": [
|
|
3636
|
-
{
|
|
3637
|
-
"name": "dataGrid",
|
|
3638
|
-
"attribute": "dataGrid",
|
|
3639
|
-
"type": "DataGrid<TData, any>"
|
|
3640
|
-
},
|
|
3641
|
-
{
|
|
3642
|
-
"name": "tab",
|
|
3643
|
-
"attribute": "tab",
|
|
3644
|
-
"type": "DataGridSidePanelTab | undefined"
|
|
3645
|
-
}
|
|
3646
|
-
]
|
|
3647
|
-
},
|
|
3648
|
-
{
|
|
3649
|
-
"name": "mo-data-grid-column-boolean",
|
|
3650
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnBoolean.d.ts",
|
|
3651
|
-
"attributes": [
|
|
3652
|
-
{
|
|
3653
|
-
"name": "trueIcon",
|
|
3654
|
-
"description": "Icon to show for true values",
|
|
3655
|
-
"type": "MaterialIcon"
|
|
3656
|
-
},
|
|
3657
|
-
{
|
|
3658
|
-
"name": "falseIcon",
|
|
3659
|
-
"description": "Icon to show for false values",
|
|
3660
|
-
"type": "MaterialIcon"
|
|
3661
|
-
},
|
|
3662
|
-
{
|
|
3663
|
-
"name": "trueIconColor",
|
|
3664
|
-
"description": "Color of the true icon",
|
|
3665
|
-
"type": "string"
|
|
3666
|
-
},
|
|
3667
|
-
{
|
|
3668
|
-
"name": "falseIconColor",
|
|
3669
|
-
"description": "Color of the false icon",
|
|
3670
|
-
"type": "string"
|
|
3671
|
-
},
|
|
3672
|
-
{
|
|
3673
|
-
"name": "width",
|
|
3674
|
-
"description": "The width of the column",
|
|
3675
|
-
"type": "string"
|
|
3676
|
-
},
|
|
3677
|
-
{
|
|
3678
|
-
"name": "hidden",
|
|
3679
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
3680
|
-
"type": "boolean"
|
|
3681
|
-
},
|
|
3682
|
-
{
|
|
3683
|
-
"name": "heading",
|
|
3684
|
-
"description": "The heading of the column",
|
|
3685
|
-
"type": "string"
|
|
3686
|
-
},
|
|
3687
|
-
{
|
|
3688
|
-
"name": "textAlign",
|
|
3689
|
-
"description": "The text alignment of the column",
|
|
3690
|
-
"type": "DataGridColumnAlignment"
|
|
3691
|
-
},
|
|
3692
|
-
{
|
|
3693
|
-
"name": "description",
|
|
3694
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
3695
|
-
"type": "string | undefined"
|
|
3696
|
-
},
|
|
3697
|
-
{
|
|
3698
|
-
"name": "dataSelector",
|
|
3699
|
-
"description": "The data selector of the column",
|
|
3700
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
3701
|
-
},
|
|
3702
|
-
{
|
|
3703
|
-
"name": "sortDataSelector",
|
|
3704
|
-
"description": "The data selector of the column",
|
|
3705
|
-
"type": "KeyPathOf<TData>"
|
|
3706
|
-
},
|
|
3707
|
-
{
|
|
3708
|
-
"name": "nonSortable",
|
|
3709
|
-
"description": "Whether the column is sortable",
|
|
3710
|
-
"type": "boolean"
|
|
3711
|
-
},
|
|
3712
|
-
{
|
|
3713
|
-
"name": "nonEditable",
|
|
3714
|
-
"description": "Whether the column is editable",
|
|
3715
|
-
"type": "boolean | Predicate<TData>"
|
|
3716
|
-
},
|
|
3717
|
-
{
|
|
3718
|
-
"name": "sticky",
|
|
3719
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
3720
|
-
"type": "DataGridColumnSticky | undefined"
|
|
3721
|
-
}
|
|
3722
|
-
],
|
|
3723
|
-
"properties": [
|
|
3724
|
-
{
|
|
3725
|
-
"name": "trueIcon",
|
|
3726
|
-
"attribute": "trueIcon",
|
|
3727
|
-
"description": "Icon to show for true values",
|
|
3728
|
-
"type": "MaterialIcon"
|
|
3729
|
-
},
|
|
3730
|
-
{
|
|
3731
|
-
"name": "falseIcon",
|
|
3732
|
-
"attribute": "falseIcon",
|
|
3733
|
-
"description": "Icon to show for false values",
|
|
3734
|
-
"type": "MaterialIcon"
|
|
3735
|
-
},
|
|
3736
|
-
{
|
|
3737
|
-
"name": "trueIconColor",
|
|
3738
|
-
"attribute": "trueIconColor",
|
|
3739
|
-
"description": "Color of the true icon",
|
|
3740
|
-
"type": "string"
|
|
3741
|
-
},
|
|
3742
|
-
{
|
|
3743
|
-
"name": "falseIconColor",
|
|
3744
|
-
"attribute": "falseIconColor",
|
|
3745
|
-
"description": "Color of the false icon",
|
|
3746
|
-
"type": "string"
|
|
3747
|
-
},
|
|
3748
|
-
{
|
|
3749
|
-
"name": "dataGrid",
|
|
3750
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
3751
|
-
},
|
|
3752
|
-
{
|
|
3753
|
-
"name": "column",
|
|
3754
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
3755
|
-
},
|
|
3756
|
-
{
|
|
3757
|
-
"name": "width",
|
|
3758
|
-
"attribute": "width",
|
|
3759
|
-
"description": "The width of the column",
|
|
3760
|
-
"type": "string"
|
|
3761
|
-
},
|
|
3762
|
-
{
|
|
3763
|
-
"name": "hidden",
|
|
3764
|
-
"attribute": "hidden",
|
|
3765
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
3766
|
-
"type": "boolean"
|
|
3767
|
-
},
|
|
3768
|
-
{
|
|
3769
|
-
"name": "heading",
|
|
3770
|
-
"attribute": "heading",
|
|
3771
|
-
"description": "The heading of the column",
|
|
3772
|
-
"type": "string"
|
|
3773
|
-
},
|
|
3774
|
-
{
|
|
3775
|
-
"name": "textAlign",
|
|
3776
|
-
"attribute": "textAlign",
|
|
3777
|
-
"description": "The text alignment of the column",
|
|
3778
|
-
"type": "DataGridColumnAlignment"
|
|
3779
|
-
},
|
|
3780
|
-
{
|
|
3781
|
-
"name": "description",
|
|
3782
|
-
"attribute": "description",
|
|
3783
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
3784
|
-
"type": "string | undefined"
|
|
3785
|
-
},
|
|
3786
|
-
{
|
|
3787
|
-
"name": "dataSelector",
|
|
3788
|
-
"attribute": "dataSelector",
|
|
3789
|
-
"description": "The data selector of the column",
|
|
3790
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
3791
|
-
},
|
|
3792
|
-
{
|
|
3793
|
-
"name": "sortDataSelector",
|
|
3794
|
-
"attribute": "sortDataSelector",
|
|
3795
|
-
"description": "The data selector of the column",
|
|
3796
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
3797
|
-
},
|
|
3798
|
-
{
|
|
3799
|
-
"name": "nonSortable",
|
|
3800
|
-
"attribute": "nonSortable",
|
|
3801
|
-
"description": "Whether the column is sortable",
|
|
3802
|
-
"type": "boolean"
|
|
3803
|
-
},
|
|
3804
|
-
{
|
|
3805
|
-
"name": "nonEditable",
|
|
3806
|
-
"attribute": "nonEditable",
|
|
3807
|
-
"description": "Whether the column is editable",
|
|
3808
|
-
"type": "boolean | Predicate<TData>"
|
|
3809
|
-
},
|
|
3810
|
-
{
|
|
3811
|
-
"name": "sticky",
|
|
3812
|
-
"attribute": "sticky",
|
|
3813
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
3814
|
-
"type": "DataGridColumnSticky | undefined"
|
|
3815
|
-
}
|
|
3816
|
-
]
|
|
3817
|
-
},
|
|
3818
|
-
{
|
|
3819
|
-
"name": "mo-data-grid-column-deletion",
|
|
3820
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnDeletion.d.ts",
|
|
3821
|
-
"attributes": [
|
|
3822
|
-
{
|
|
3823
|
-
"name": "prevent",
|
|
3824
|
-
"description": "Prevents the deletion button from being displayed",
|
|
3825
|
-
"type": "boolean"
|
|
3826
|
-
},
|
|
3827
|
-
{
|
|
3828
|
-
"name": "width",
|
|
3829
|
-
"description": "The width of the column",
|
|
3830
|
-
"type": "string"
|
|
3831
|
-
},
|
|
3832
|
-
{
|
|
3833
|
-
"name": "hidden",
|
|
3834
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
3835
|
-
"type": "boolean"
|
|
3836
|
-
},
|
|
3837
|
-
{
|
|
3838
|
-
"name": "heading",
|
|
3839
|
-
"description": "The heading of the column",
|
|
3840
|
-
"type": "string"
|
|
3841
|
-
},
|
|
3842
|
-
{
|
|
3843
|
-
"name": "textAlign",
|
|
3844
|
-
"description": "The text alignment of the column",
|
|
3845
|
-
"type": "DataGridColumnAlignment"
|
|
3846
|
-
},
|
|
3847
|
-
{
|
|
3848
|
-
"name": "description",
|
|
3849
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
3850
|
-
"type": "string | undefined"
|
|
3851
|
-
},
|
|
3852
|
-
{
|
|
3853
|
-
"name": "dataSelector",
|
|
3854
|
-
"description": "The data selector of the column",
|
|
3855
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
3856
|
-
},
|
|
3857
|
-
{
|
|
3858
|
-
"name": "sortDataSelector",
|
|
3859
|
-
"description": "The data selector of the column",
|
|
3860
|
-
"type": "KeyPathOf<TData>"
|
|
3861
|
-
},
|
|
3862
|
-
{
|
|
3863
|
-
"name": "nonSortable",
|
|
3864
|
-
"description": "Whether the column is sortable",
|
|
3865
|
-
"type": "boolean"
|
|
3866
|
-
},
|
|
3867
|
-
{
|
|
3868
|
-
"name": "nonEditable",
|
|
3869
|
-
"description": "Whether the column is editable",
|
|
3870
|
-
"type": "boolean"
|
|
3871
|
-
},
|
|
3872
|
-
{
|
|
3873
|
-
"name": "sticky",
|
|
3874
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
3875
|
-
"type": "DataGridColumnSticky | undefined"
|
|
3876
|
-
}
|
|
3877
|
-
],
|
|
3878
|
-
"properties": [
|
|
3879
|
-
{
|
|
3880
|
-
"name": "delete",
|
|
3881
|
-
"type": "EventDispatcher<TData>"
|
|
3882
|
-
},
|
|
3883
|
-
{
|
|
3884
|
-
"name": "icon",
|
|
3885
|
-
"type": "MaterialIcon"
|
|
3886
|
-
},
|
|
3887
|
-
{
|
|
3888
|
-
"name": "getContentTemplate",
|
|
3889
|
-
"type": "(_: never, data?: TData | undefined) => HTMLTemplateResult"
|
|
3890
|
-
},
|
|
3891
|
-
{
|
|
3892
|
-
"name": "getEditContentTemplate",
|
|
3893
|
-
"type": "undefined"
|
|
3894
|
-
},
|
|
3895
|
-
{
|
|
3896
|
-
"name": "prevent",
|
|
3897
|
-
"attribute": "prevent",
|
|
3898
|
-
"description": "Prevents the deletion button from being displayed",
|
|
3899
|
-
"type": "boolean"
|
|
3900
|
-
},
|
|
3901
|
-
{
|
|
3902
|
-
"name": "dataGrid",
|
|
3903
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
3904
|
-
},
|
|
3905
|
-
{
|
|
3906
|
-
"name": "column",
|
|
3907
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
3908
|
-
},
|
|
3909
|
-
{
|
|
3910
|
-
"name": "width",
|
|
3911
|
-
"attribute": "width",
|
|
3912
|
-
"description": "The width of the column",
|
|
3913
|
-
"type": "string"
|
|
3914
|
-
},
|
|
3915
|
-
{
|
|
3916
|
-
"name": "hidden",
|
|
3917
|
-
"attribute": "hidden",
|
|
3918
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
3919
|
-
"type": "boolean"
|
|
3920
|
-
},
|
|
3921
|
-
{
|
|
3922
|
-
"name": "heading",
|
|
3923
|
-
"attribute": "heading",
|
|
3924
|
-
"description": "The heading of the column",
|
|
3925
|
-
"type": "string"
|
|
3926
|
-
},
|
|
3927
|
-
{
|
|
3928
|
-
"name": "textAlign",
|
|
3929
|
-
"attribute": "textAlign",
|
|
3930
|
-
"description": "The text alignment of the column",
|
|
3931
|
-
"type": "DataGridColumnAlignment"
|
|
3932
|
-
},
|
|
3933
|
-
{
|
|
3934
|
-
"name": "description",
|
|
3935
|
-
"attribute": "description",
|
|
3936
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
3937
|
-
"type": "string | undefined"
|
|
3938
|
-
},
|
|
3939
|
-
{
|
|
3940
|
-
"name": "dataSelector",
|
|
3941
|
-
"attribute": "dataSelector",
|
|
3942
|
-
"description": "The data selector of the column",
|
|
3943
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
3944
|
-
},
|
|
3945
|
-
{
|
|
3946
|
-
"name": "sortDataSelector",
|
|
3947
|
-
"attribute": "sortDataSelector",
|
|
3948
|
-
"description": "The data selector of the column",
|
|
3949
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
3950
|
-
},
|
|
3951
|
-
{
|
|
3952
|
-
"name": "nonSortable",
|
|
3953
|
-
"attribute": "nonSortable",
|
|
3954
|
-
"description": "Whether the column is sortable",
|
|
3955
|
-
"type": "boolean"
|
|
3956
|
-
},
|
|
3957
|
-
{
|
|
3958
|
-
"name": "nonEditable",
|
|
3959
|
-
"attribute": "nonEditable",
|
|
3960
|
-
"description": "Whether the column is editable",
|
|
3961
|
-
"type": "boolean"
|
|
3962
|
-
},
|
|
3963
|
-
{
|
|
3964
|
-
"name": "sticky",
|
|
3965
|
-
"attribute": "sticky",
|
|
3966
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
3967
|
-
"type": "DataGridColumnSticky | undefined"
|
|
3968
|
-
}
|
|
3969
|
-
],
|
|
3970
|
-
"events": [
|
|
3971
|
-
{
|
|
3972
|
-
"name": "delete",
|
|
3973
|
-
"type": "CustomEvent<TData>"
|
|
3974
|
-
}
|
|
3975
|
-
]
|
|
3976
|
-
},
|
|
3977
|
-
{
|
|
3978
|
-
"name": "mo-data-grid-column-image",
|
|
3979
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnImage.d.ts",
|
|
3980
|
-
"attributes": [
|
|
3981
|
-
{
|
|
3982
|
-
"name": "tooltipSelector",
|
|
3983
|
-
"description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
|
|
3984
|
-
"type": "KeyPathOf<TData>"
|
|
3985
|
-
},
|
|
3986
|
-
{
|
|
3987
|
-
"name": "width",
|
|
3988
|
-
"description": "The width of the column",
|
|
3989
|
-
"type": "string"
|
|
3990
|
-
},
|
|
3991
|
-
{
|
|
3992
|
-
"name": "hidden",
|
|
3993
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
3994
|
-
"type": "boolean"
|
|
3995
|
-
},
|
|
3996
|
-
{
|
|
3997
|
-
"name": "heading",
|
|
3998
|
-
"description": "The heading of the column",
|
|
3999
|
-
"type": "string"
|
|
4000
|
-
},
|
|
4001
|
-
{
|
|
4002
|
-
"name": "textAlign",
|
|
4003
|
-
"description": "The text alignment of the column",
|
|
4004
|
-
"type": "DataGridColumnAlignment"
|
|
4005
|
-
},
|
|
4006
|
-
{
|
|
4007
|
-
"name": "description",
|
|
4008
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4009
|
-
"type": "string | undefined"
|
|
4010
|
-
},
|
|
4011
|
-
{
|
|
4012
|
-
"name": "dataSelector",
|
|
4013
|
-
"description": "The data selector of the column",
|
|
4014
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4015
|
-
},
|
|
4016
|
-
{
|
|
4017
|
-
"name": "sortDataSelector",
|
|
4018
|
-
"description": "The data selector of the column",
|
|
4019
|
-
"type": "KeyPathOf<TData>"
|
|
4020
|
-
},
|
|
4021
|
-
{
|
|
4022
|
-
"name": "nonSortable",
|
|
4023
|
-
"description": "Whether the column is sortable",
|
|
4024
|
-
"type": "boolean"
|
|
4025
|
-
},
|
|
4026
|
-
{
|
|
4027
|
-
"name": "nonEditable",
|
|
4028
|
-
"description": "Whether the column is editable",
|
|
4029
|
-
"type": "boolean"
|
|
4030
|
-
},
|
|
4031
|
-
{
|
|
4032
|
-
"name": "sticky",
|
|
4033
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4034
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4035
|
-
}
|
|
4036
|
-
],
|
|
4037
|
-
"properties": [
|
|
4038
|
-
{
|
|
4039
|
-
"name": "getEditContentTemplate",
|
|
4040
|
-
"type": "undefined"
|
|
4041
|
-
},
|
|
4042
|
-
{
|
|
4043
|
-
"name": "tooltipSelector",
|
|
4044
|
-
"attribute": "tooltipSelector",
|
|
4045
|
-
"description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
|
|
4046
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | ((data: TData) => string | undefined) | undefined"
|
|
4047
|
-
},
|
|
4048
|
-
{
|
|
4049
|
-
"name": "dataGrid",
|
|
4050
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4051
|
-
},
|
|
4052
|
-
{
|
|
4053
|
-
"name": "column",
|
|
4054
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4055
|
-
},
|
|
4056
|
-
{
|
|
4057
|
-
"name": "width",
|
|
4058
|
-
"attribute": "width",
|
|
4059
|
-
"description": "The width of the column",
|
|
4060
|
-
"type": "string"
|
|
4061
|
-
},
|
|
4062
|
-
{
|
|
4063
|
-
"name": "hidden",
|
|
4064
|
-
"attribute": "hidden",
|
|
4065
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4066
|
-
"type": "boolean"
|
|
4067
|
-
},
|
|
4068
|
-
{
|
|
4069
|
-
"name": "heading",
|
|
4070
|
-
"attribute": "heading",
|
|
4071
|
-
"description": "The heading of the column",
|
|
4072
|
-
"type": "string"
|
|
4073
|
-
},
|
|
4074
|
-
{
|
|
4075
|
-
"name": "textAlign",
|
|
4076
|
-
"attribute": "textAlign",
|
|
4077
|
-
"description": "The text alignment of the column",
|
|
4078
|
-
"type": "DataGridColumnAlignment"
|
|
4079
|
-
},
|
|
4080
|
-
{
|
|
4081
|
-
"name": "description",
|
|
4082
|
-
"attribute": "description",
|
|
4083
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4084
|
-
"type": "string | undefined"
|
|
4085
|
-
},
|
|
4086
|
-
{
|
|
4087
|
-
"name": "dataSelector",
|
|
4088
|
-
"attribute": "dataSelector",
|
|
4089
|
-
"description": "The data selector of the column",
|
|
4090
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4091
|
-
},
|
|
4092
|
-
{
|
|
4093
|
-
"name": "sortDataSelector",
|
|
4094
|
-
"attribute": "sortDataSelector",
|
|
4095
|
-
"description": "The data selector of the column",
|
|
4096
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4097
|
-
},
|
|
4098
|
-
{
|
|
4099
|
-
"name": "nonSortable",
|
|
4100
|
-
"attribute": "nonSortable",
|
|
4101
|
-
"description": "Whether the column is sortable",
|
|
4102
|
-
"type": "boolean"
|
|
4103
|
-
},
|
|
4104
|
-
{
|
|
4105
|
-
"name": "nonEditable",
|
|
4106
|
-
"attribute": "nonEditable",
|
|
4107
|
-
"description": "Whether the column is editable",
|
|
4108
|
-
"type": "boolean"
|
|
4109
|
-
},
|
|
4110
|
-
{
|
|
4111
|
-
"name": "sticky",
|
|
4112
|
-
"attribute": "sticky",
|
|
4113
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4114
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4115
|
-
}
|
|
4116
|
-
]
|
|
4117
|
-
},
|
|
4118
|
-
{
|
|
4119
|
-
"name": "mo-data-grid-column-text",
|
|
4120
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnText.d.ts",
|
|
4121
|
-
"attributes": [
|
|
4122
|
-
{
|
|
4123
|
-
"name": "width",
|
|
4124
|
-
"description": "The width of the column",
|
|
4125
|
-
"type": "string"
|
|
4126
|
-
},
|
|
4127
|
-
{
|
|
4128
|
-
"name": "hidden",
|
|
4129
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4130
|
-
"type": "boolean"
|
|
4131
|
-
},
|
|
4132
|
-
{
|
|
4133
|
-
"name": "heading",
|
|
4134
|
-
"description": "The heading of the column",
|
|
4135
|
-
"type": "string"
|
|
4136
|
-
},
|
|
4137
|
-
{
|
|
4138
|
-
"name": "textAlign",
|
|
4139
|
-
"description": "The text alignment of the column",
|
|
4140
|
-
"type": "DataGridColumnAlignment"
|
|
4141
|
-
},
|
|
4142
|
-
{
|
|
4143
|
-
"name": "description",
|
|
4144
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4145
|
-
"type": "string | undefined"
|
|
4146
|
-
},
|
|
4147
|
-
{
|
|
4148
|
-
"name": "dataSelector",
|
|
4149
|
-
"description": "The data selector of the column",
|
|
4150
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4151
|
-
},
|
|
4152
|
-
{
|
|
4153
|
-
"name": "sortDataSelector",
|
|
4154
|
-
"description": "The data selector of the column",
|
|
4155
|
-
"type": "KeyPathOf<TData>"
|
|
4156
|
-
},
|
|
4157
|
-
{
|
|
4158
|
-
"name": "nonSortable",
|
|
4159
|
-
"description": "Whether the column is sortable",
|
|
4160
|
-
"type": "boolean"
|
|
4161
|
-
},
|
|
4162
|
-
{
|
|
4163
|
-
"name": "nonEditable",
|
|
4164
|
-
"description": "Whether the column is editable",
|
|
4165
|
-
"type": "boolean | Predicate<TData>"
|
|
4166
|
-
},
|
|
4167
|
-
{
|
|
4168
|
-
"name": "sticky",
|
|
4169
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4170
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4171
|
-
}
|
|
4172
|
-
],
|
|
4173
|
-
"properties": [
|
|
4174
|
-
{
|
|
4175
|
-
"name": "dataGrid",
|
|
4176
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4177
|
-
},
|
|
4178
|
-
{
|
|
4179
|
-
"name": "column",
|
|
4180
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4181
|
-
},
|
|
4182
|
-
{
|
|
4183
|
-
"name": "width",
|
|
4184
|
-
"attribute": "width",
|
|
4185
|
-
"description": "The width of the column",
|
|
4186
|
-
"type": "string"
|
|
4187
|
-
},
|
|
4188
|
-
{
|
|
4189
|
-
"name": "hidden",
|
|
4190
|
-
"attribute": "hidden",
|
|
4191
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4192
|
-
"type": "boolean"
|
|
4193
|
-
},
|
|
4194
|
-
{
|
|
4195
|
-
"name": "heading",
|
|
4196
|
-
"attribute": "heading",
|
|
4197
|
-
"description": "The heading of the column",
|
|
4198
|
-
"type": "string"
|
|
4199
|
-
},
|
|
4200
|
-
{
|
|
4201
|
-
"name": "textAlign",
|
|
4202
|
-
"attribute": "textAlign",
|
|
4203
|
-
"description": "The text alignment of the column",
|
|
4204
|
-
"type": "DataGridColumnAlignment"
|
|
4205
|
-
},
|
|
4206
|
-
{
|
|
4207
|
-
"name": "description",
|
|
4208
|
-
"attribute": "description",
|
|
4209
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4210
|
-
"type": "string | undefined"
|
|
4211
|
-
},
|
|
4212
|
-
{
|
|
4213
|
-
"name": "dataSelector",
|
|
4214
|
-
"attribute": "dataSelector",
|
|
4215
|
-
"description": "The data selector of the column",
|
|
4216
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4217
|
-
},
|
|
4218
|
-
{
|
|
4219
|
-
"name": "sortDataSelector",
|
|
4220
|
-
"attribute": "sortDataSelector",
|
|
4221
|
-
"description": "The data selector of the column",
|
|
4222
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4223
|
-
},
|
|
4224
|
-
{
|
|
4225
|
-
"name": "nonSortable",
|
|
4226
|
-
"attribute": "nonSortable",
|
|
4227
|
-
"description": "Whether the column is sortable",
|
|
4228
|
-
"type": "boolean"
|
|
4229
|
-
},
|
|
4230
|
-
{
|
|
4231
|
-
"name": "nonEditable",
|
|
4232
|
-
"attribute": "nonEditable",
|
|
4233
|
-
"description": "Whether the column is editable",
|
|
4234
|
-
"type": "boolean | Predicate<TData>"
|
|
4235
|
-
},
|
|
4236
|
-
{
|
|
4237
|
-
"name": "sticky",
|
|
4238
|
-
"attribute": "sticky",
|
|
4239
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4240
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4241
|
-
}
|
|
4242
|
-
]
|
|
4243
|
-
},
|
|
4244
|
-
{
|
|
4245
|
-
"name": "mo-data-grid-column-date",
|
|
4246
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDate.d.ts",
|
|
4247
|
-
"attributes": [
|
|
4248
|
-
{
|
|
4249
|
-
"name": "formatOptions",
|
|
4250
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4251
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4252
|
-
},
|
|
4253
|
-
{
|
|
4254
|
-
"name": "pickerHidden",
|
|
4255
|
-
"description": "Hides the date/time picker",
|
|
4256
|
-
"type": "boolean"
|
|
4257
|
-
},
|
|
4258
|
-
{
|
|
4259
|
-
"name": "width",
|
|
4260
|
-
"description": "The width of the column",
|
|
4261
|
-
"type": "string"
|
|
4262
|
-
},
|
|
4263
|
-
{
|
|
4264
|
-
"name": "hidden",
|
|
4265
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4266
|
-
"type": "boolean"
|
|
4267
|
-
},
|
|
4268
|
-
{
|
|
4269
|
-
"name": "heading",
|
|
4270
|
-
"description": "The heading of the column",
|
|
4271
|
-
"type": "string"
|
|
4272
|
-
},
|
|
4273
|
-
{
|
|
4274
|
-
"name": "textAlign",
|
|
4275
|
-
"description": "The text alignment of the column",
|
|
4276
|
-
"type": "DataGridColumnAlignment"
|
|
4277
|
-
},
|
|
4278
|
-
{
|
|
4279
|
-
"name": "description",
|
|
4280
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4281
|
-
"type": "string | undefined"
|
|
4282
|
-
},
|
|
4283
|
-
{
|
|
4284
|
-
"name": "dataSelector",
|
|
4285
|
-
"description": "The data selector of the column",
|
|
4286
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4287
|
-
},
|
|
4288
|
-
{
|
|
4289
|
-
"name": "sortDataSelector",
|
|
4290
|
-
"description": "The data selector of the column",
|
|
4291
|
-
"type": "KeyPathOf<TData>"
|
|
4292
|
-
},
|
|
4293
|
-
{
|
|
4294
|
-
"name": "nonSortable",
|
|
4295
|
-
"description": "Whether the column is sortable",
|
|
4296
|
-
"type": "boolean"
|
|
4297
|
-
},
|
|
4298
|
-
{
|
|
4299
|
-
"name": "nonEditable",
|
|
4300
|
-
"description": "Whether the column is editable",
|
|
4301
|
-
"type": "boolean | Predicate<TData>"
|
|
4302
|
-
},
|
|
4303
|
-
{
|
|
4304
|
-
"name": "sticky",
|
|
4305
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4306
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4307
|
-
}
|
|
4308
|
-
],
|
|
4309
|
-
"properties": [
|
|
4310
|
-
{
|
|
4311
|
-
"name": "defaultFormatOptions",
|
|
4312
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4313
|
-
},
|
|
4314
|
-
{
|
|
4315
|
-
"name": "fieldTag",
|
|
4316
|
-
"type": "StaticValue"
|
|
4317
|
-
},
|
|
4318
|
-
{
|
|
4319
|
-
"name": "formatOptions",
|
|
4320
|
-
"attribute": "formatOptions",
|
|
4321
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4322
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4323
|
-
},
|
|
4324
|
-
{
|
|
4325
|
-
"name": "pickerHidden",
|
|
4326
|
-
"attribute": "pickerHidden",
|
|
4327
|
-
"description": "Hides the date/time picker",
|
|
4328
|
-
"type": "boolean"
|
|
4329
|
-
},
|
|
4330
|
-
{
|
|
4331
|
-
"name": "dataGrid",
|
|
4332
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4333
|
-
},
|
|
4334
|
-
{
|
|
4335
|
-
"name": "column",
|
|
4336
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4337
|
-
},
|
|
4338
|
-
{
|
|
4339
|
-
"name": "width",
|
|
4340
|
-
"attribute": "width",
|
|
4341
|
-
"description": "The width of the column",
|
|
4342
|
-
"type": "string"
|
|
4343
|
-
},
|
|
4344
|
-
{
|
|
4345
|
-
"name": "hidden",
|
|
4346
|
-
"attribute": "hidden",
|
|
4347
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4348
|
-
"type": "boolean"
|
|
4349
|
-
},
|
|
4350
|
-
{
|
|
4351
|
-
"name": "heading",
|
|
4352
|
-
"attribute": "heading",
|
|
4353
|
-
"description": "The heading of the column",
|
|
4354
|
-
"type": "string"
|
|
4355
|
-
},
|
|
4356
|
-
{
|
|
4357
|
-
"name": "textAlign",
|
|
4358
|
-
"attribute": "textAlign",
|
|
4359
|
-
"description": "The text alignment of the column",
|
|
4360
|
-
"type": "DataGridColumnAlignment"
|
|
4361
|
-
},
|
|
4362
|
-
{
|
|
4363
|
-
"name": "description",
|
|
4364
|
-
"attribute": "description",
|
|
4365
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4366
|
-
"type": "string | undefined"
|
|
4367
|
-
},
|
|
4368
|
-
{
|
|
4369
|
-
"name": "dataSelector",
|
|
4370
|
-
"attribute": "dataSelector",
|
|
4371
|
-
"description": "The data selector of the column",
|
|
4372
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4373
|
-
},
|
|
4374
|
-
{
|
|
4375
|
-
"name": "sortDataSelector",
|
|
4376
|
-
"attribute": "sortDataSelector",
|
|
4377
|
-
"description": "The data selector of the column",
|
|
4378
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4379
|
-
},
|
|
4380
|
-
{
|
|
4381
|
-
"name": "nonSortable",
|
|
4382
|
-
"attribute": "nonSortable",
|
|
4383
|
-
"description": "Whether the column is sortable",
|
|
4384
|
-
"type": "boolean"
|
|
4385
|
-
},
|
|
4386
|
-
{
|
|
4387
|
-
"name": "nonEditable",
|
|
4388
|
-
"attribute": "nonEditable",
|
|
4389
|
-
"description": "Whether the column is editable",
|
|
4390
|
-
"type": "boolean | Predicate<TData>"
|
|
4391
|
-
},
|
|
4392
|
-
{
|
|
4393
|
-
"name": "sticky",
|
|
4394
|
-
"attribute": "sticky",
|
|
4395
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4396
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4397
|
-
}
|
|
4398
|
-
]
|
|
4399
|
-
},
|
|
4400
|
-
{
|
|
4401
|
-
"name": "mo-data-grid-column-date-range",
|
|
4402
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateRange.d.ts",
|
|
4403
|
-
"attributes": [
|
|
4404
|
-
{
|
|
4405
|
-
"name": "formatOptions",
|
|
4406
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4407
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4408
|
-
},
|
|
4409
|
-
{
|
|
4410
|
-
"name": "pickerHidden",
|
|
4411
|
-
"description": "Hides the date/time picker",
|
|
4412
|
-
"type": "boolean"
|
|
4413
|
-
},
|
|
4414
|
-
{
|
|
4415
|
-
"name": "width",
|
|
4416
|
-
"description": "The width of the column",
|
|
4417
|
-
"type": "string"
|
|
4418
|
-
},
|
|
4419
|
-
{
|
|
4420
|
-
"name": "hidden",
|
|
4421
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4422
|
-
"type": "boolean"
|
|
4423
|
-
},
|
|
4424
|
-
{
|
|
4425
|
-
"name": "heading",
|
|
4426
|
-
"description": "The heading of the column",
|
|
4427
|
-
"type": "string"
|
|
4428
|
-
},
|
|
4429
|
-
{
|
|
4430
|
-
"name": "textAlign",
|
|
4431
|
-
"description": "The text alignment of the column",
|
|
4432
|
-
"type": "DataGridColumnAlignment"
|
|
4433
|
-
},
|
|
4434
|
-
{
|
|
4435
|
-
"name": "description",
|
|
4436
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4437
|
-
"type": "string | undefined"
|
|
4438
|
-
},
|
|
4439
|
-
{
|
|
4440
|
-
"name": "dataSelector",
|
|
4441
|
-
"description": "The data selector of the column",
|
|
4442
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4443
|
-
},
|
|
4444
|
-
{
|
|
4445
|
-
"name": "sortDataSelector",
|
|
4446
|
-
"description": "The data selector of the column",
|
|
4447
|
-
"type": "KeyPathOf<TData>"
|
|
4448
|
-
},
|
|
4449
|
-
{
|
|
4450
|
-
"name": "nonSortable",
|
|
4451
|
-
"description": "Whether the column is sortable",
|
|
4452
|
-
"type": "boolean"
|
|
4453
|
-
},
|
|
4454
|
-
{
|
|
4455
|
-
"name": "nonEditable",
|
|
4456
|
-
"description": "Whether the column is editable",
|
|
4457
|
-
"type": "boolean | Predicate<TData>"
|
|
4458
|
-
},
|
|
4459
|
-
{
|
|
4460
|
-
"name": "sticky",
|
|
4461
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4462
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4463
|
-
}
|
|
4464
|
-
],
|
|
4465
|
-
"properties": [
|
|
4466
|
-
{
|
|
4467
|
-
"name": "defaultFormatOptions",
|
|
4468
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4469
|
-
},
|
|
4470
|
-
{
|
|
4471
|
-
"name": "fieldTag",
|
|
4472
|
-
"type": "StaticValue"
|
|
4473
|
-
},
|
|
4474
|
-
{
|
|
4475
|
-
"name": "formatOptions",
|
|
4476
|
-
"attribute": "formatOptions",
|
|
4477
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4478
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4479
|
-
},
|
|
4480
|
-
{
|
|
4481
|
-
"name": "pickerHidden",
|
|
4482
|
-
"attribute": "pickerHidden",
|
|
4483
|
-
"description": "Hides the date/time picker",
|
|
4484
|
-
"type": "boolean"
|
|
4485
|
-
},
|
|
4486
|
-
{
|
|
4487
|
-
"name": "dataGrid",
|
|
4488
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4489
|
-
},
|
|
4490
|
-
{
|
|
4491
|
-
"name": "column",
|
|
4492
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4493
|
-
},
|
|
4494
|
-
{
|
|
4495
|
-
"name": "width",
|
|
4496
|
-
"attribute": "width",
|
|
4497
|
-
"description": "The width of the column",
|
|
4498
|
-
"type": "string"
|
|
4499
|
-
},
|
|
4500
|
-
{
|
|
4501
|
-
"name": "hidden",
|
|
4502
|
-
"attribute": "hidden",
|
|
4503
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4504
|
-
"type": "boolean"
|
|
4505
|
-
},
|
|
4506
|
-
{
|
|
4507
|
-
"name": "heading",
|
|
4508
|
-
"attribute": "heading",
|
|
4509
|
-
"description": "The heading of the column",
|
|
4510
|
-
"type": "string"
|
|
4511
|
-
},
|
|
4512
|
-
{
|
|
4513
|
-
"name": "textAlign",
|
|
4514
|
-
"attribute": "textAlign",
|
|
4515
|
-
"description": "The text alignment of the column",
|
|
4516
|
-
"type": "DataGridColumnAlignment"
|
|
4517
|
-
},
|
|
4518
|
-
{
|
|
4519
|
-
"name": "description",
|
|
4520
|
-
"attribute": "description",
|
|
4521
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4522
|
-
"type": "string | undefined"
|
|
4523
|
-
},
|
|
4524
|
-
{
|
|
4525
|
-
"name": "dataSelector",
|
|
4526
|
-
"attribute": "dataSelector",
|
|
4527
|
-
"description": "The data selector of the column",
|
|
4528
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4529
|
-
},
|
|
4530
|
-
{
|
|
4531
|
-
"name": "sortDataSelector",
|
|
4532
|
-
"attribute": "sortDataSelector",
|
|
4533
|
-
"description": "The data selector of the column",
|
|
4534
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4535
|
-
},
|
|
4536
|
-
{
|
|
4537
|
-
"name": "nonSortable",
|
|
4538
|
-
"attribute": "nonSortable",
|
|
4539
|
-
"description": "Whether the column is sortable",
|
|
4540
|
-
"type": "boolean"
|
|
4541
|
-
},
|
|
4542
|
-
{
|
|
4543
|
-
"name": "nonEditable",
|
|
4544
|
-
"attribute": "nonEditable",
|
|
4545
|
-
"description": "Whether the column is editable",
|
|
4546
|
-
"type": "boolean | Predicate<TData>"
|
|
4547
|
-
},
|
|
4548
|
-
{
|
|
4549
|
-
"name": "sticky",
|
|
4550
|
-
"attribute": "sticky",
|
|
4551
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4552
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4553
|
-
}
|
|
4554
|
-
]
|
|
4555
|
-
},
|
|
4556
|
-
{
|
|
4557
|
-
"name": "mo-data-grid-column-date-time",
|
|
4558
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateTime.d.ts",
|
|
4559
|
-
"attributes": [
|
|
4560
|
-
{
|
|
4561
|
-
"name": "formatOptions",
|
|
4562
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4563
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4564
|
-
},
|
|
4565
|
-
{
|
|
4566
|
-
"name": "pickerHidden",
|
|
4567
|
-
"description": "Hides the date/time picker",
|
|
4568
|
-
"type": "boolean"
|
|
4569
|
-
},
|
|
4570
|
-
{
|
|
4571
|
-
"name": "width",
|
|
4572
|
-
"description": "The width of the column",
|
|
4573
|
-
"type": "string"
|
|
4574
|
-
},
|
|
4575
|
-
{
|
|
4576
|
-
"name": "hidden",
|
|
4577
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4578
|
-
"type": "boolean"
|
|
4579
|
-
},
|
|
4580
|
-
{
|
|
4581
|
-
"name": "heading",
|
|
4582
|
-
"description": "The heading of the column",
|
|
4583
|
-
"type": "string"
|
|
4584
|
-
},
|
|
4585
|
-
{
|
|
4586
|
-
"name": "textAlign",
|
|
4587
|
-
"description": "The text alignment of the column",
|
|
4588
|
-
"type": "DataGridColumnAlignment"
|
|
4589
|
-
},
|
|
4590
|
-
{
|
|
4591
|
-
"name": "description",
|
|
4592
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4593
|
-
"type": "string | undefined"
|
|
4594
|
-
},
|
|
4595
|
-
{
|
|
4596
|
-
"name": "dataSelector",
|
|
4597
|
-
"description": "The data selector of the column",
|
|
4598
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4599
|
-
},
|
|
4600
|
-
{
|
|
4601
|
-
"name": "sortDataSelector",
|
|
4602
|
-
"description": "The data selector of the column",
|
|
4603
|
-
"type": "KeyPathOf<TData>"
|
|
4604
|
-
},
|
|
4605
|
-
{
|
|
4606
|
-
"name": "nonSortable",
|
|
4607
|
-
"description": "Whether the column is sortable",
|
|
4608
|
-
"type": "boolean"
|
|
4609
|
-
},
|
|
4610
|
-
{
|
|
4611
|
-
"name": "nonEditable",
|
|
4612
|
-
"description": "Whether the column is editable",
|
|
4613
|
-
"type": "boolean | Predicate<TData>"
|
|
4614
|
-
},
|
|
4615
|
-
{
|
|
4616
|
-
"name": "sticky",
|
|
4617
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4618
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4619
|
-
}
|
|
4620
|
-
],
|
|
4621
|
-
"properties": [
|
|
4622
|
-
{
|
|
4623
|
-
"name": "defaultFormatOptions",
|
|
4624
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4625
|
-
},
|
|
4626
|
-
{
|
|
4627
|
-
"name": "fieldTag",
|
|
4628
|
-
"type": "StaticValue"
|
|
4629
|
-
},
|
|
4630
|
-
{
|
|
4631
|
-
"name": "formatOptions",
|
|
4632
|
-
"attribute": "formatOptions",
|
|
4633
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4634
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4635
|
-
},
|
|
4636
|
-
{
|
|
4637
|
-
"name": "pickerHidden",
|
|
4638
|
-
"attribute": "pickerHidden",
|
|
4639
|
-
"description": "Hides the date/time picker",
|
|
4640
|
-
"type": "boolean"
|
|
4641
|
-
},
|
|
4642
|
-
{
|
|
4643
|
-
"name": "dataGrid",
|
|
4644
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4645
|
-
},
|
|
4646
|
-
{
|
|
4647
|
-
"name": "column",
|
|
4648
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4649
|
-
},
|
|
4650
|
-
{
|
|
4651
|
-
"name": "width",
|
|
4652
|
-
"attribute": "width",
|
|
4653
|
-
"description": "The width of the column",
|
|
4654
|
-
"type": "string"
|
|
4655
|
-
},
|
|
4656
|
-
{
|
|
4657
|
-
"name": "hidden",
|
|
4658
|
-
"attribute": "hidden",
|
|
4659
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4660
|
-
"type": "boolean"
|
|
4661
|
-
},
|
|
4662
|
-
{
|
|
4663
|
-
"name": "heading",
|
|
4664
|
-
"attribute": "heading",
|
|
4665
|
-
"description": "The heading of the column",
|
|
4666
|
-
"type": "string"
|
|
4667
|
-
},
|
|
4668
|
-
{
|
|
4669
|
-
"name": "textAlign",
|
|
4670
|
-
"attribute": "textAlign",
|
|
4671
|
-
"description": "The text alignment of the column",
|
|
4672
|
-
"type": "DataGridColumnAlignment"
|
|
4673
|
-
},
|
|
4674
|
-
{
|
|
4675
|
-
"name": "description",
|
|
4676
|
-
"attribute": "description",
|
|
4677
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4678
|
-
"type": "string | undefined"
|
|
4679
|
-
},
|
|
4680
|
-
{
|
|
4681
|
-
"name": "dataSelector",
|
|
4682
|
-
"attribute": "dataSelector",
|
|
4683
|
-
"description": "The data selector of the column",
|
|
4684
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4685
|
-
},
|
|
4686
|
-
{
|
|
4687
|
-
"name": "sortDataSelector",
|
|
4688
|
-
"attribute": "sortDataSelector",
|
|
4689
|
-
"description": "The data selector of the column",
|
|
4690
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4691
|
-
},
|
|
4692
|
-
{
|
|
4693
|
-
"name": "nonSortable",
|
|
4694
|
-
"attribute": "nonSortable",
|
|
4695
|
-
"description": "Whether the column is sortable",
|
|
4696
|
-
"type": "boolean"
|
|
4697
|
-
},
|
|
4698
|
-
{
|
|
4699
|
-
"name": "nonEditable",
|
|
4700
|
-
"attribute": "nonEditable",
|
|
4701
|
-
"description": "Whether the column is editable",
|
|
4702
|
-
"type": "boolean | Predicate<TData>"
|
|
4703
|
-
},
|
|
4704
|
-
{
|
|
4705
|
-
"name": "sticky",
|
|
4706
|
-
"attribute": "sticky",
|
|
4707
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4708
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4709
|
-
}
|
|
4710
|
-
]
|
|
4711
|
-
},
|
|
4712
|
-
{
|
|
4713
|
-
"name": "mo-data-grid-column-date-time-range",
|
|
4714
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateTimeRange.d.ts",
|
|
4715
|
-
"attributes": [
|
|
4716
|
-
{
|
|
4717
|
-
"name": "formatOptions",
|
|
4718
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4719
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4720
|
-
},
|
|
4721
|
-
{
|
|
4722
|
-
"name": "pickerHidden",
|
|
4723
|
-
"description": "Hides the date/time picker",
|
|
4724
|
-
"type": "boolean"
|
|
4725
|
-
},
|
|
4726
|
-
{
|
|
4727
|
-
"name": "width",
|
|
4728
|
-
"description": "The width of the column",
|
|
4729
|
-
"type": "string"
|
|
4730
|
-
},
|
|
4731
|
-
{
|
|
4732
|
-
"name": "hidden",
|
|
4733
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4734
|
-
"type": "boolean"
|
|
4735
|
-
},
|
|
4736
|
-
{
|
|
4737
|
-
"name": "heading",
|
|
4738
|
-
"description": "The heading of the column",
|
|
4739
|
-
"type": "string"
|
|
4740
|
-
},
|
|
4741
|
-
{
|
|
4742
|
-
"name": "textAlign",
|
|
4743
|
-
"description": "The text alignment of the column",
|
|
4744
|
-
"type": "DataGridColumnAlignment"
|
|
4745
|
-
},
|
|
4746
|
-
{
|
|
4747
|
-
"name": "description",
|
|
4748
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4749
|
-
"type": "string | undefined"
|
|
4750
|
-
},
|
|
4751
|
-
{
|
|
4752
|
-
"name": "dataSelector",
|
|
4753
|
-
"description": "The data selector of the column",
|
|
4754
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4755
|
-
},
|
|
4756
|
-
{
|
|
4757
|
-
"name": "sortDataSelector",
|
|
4758
|
-
"description": "The data selector of the column",
|
|
4759
|
-
"type": "KeyPathOf<TData>"
|
|
4760
|
-
},
|
|
4761
|
-
{
|
|
4762
|
-
"name": "nonSortable",
|
|
4763
|
-
"description": "Whether the column is sortable",
|
|
4764
|
-
"type": "boolean"
|
|
4765
|
-
},
|
|
4766
|
-
{
|
|
4767
|
-
"name": "nonEditable",
|
|
4768
|
-
"description": "Whether the column is editable",
|
|
4769
|
-
"type": "boolean | Predicate<TData>"
|
|
4770
|
-
},
|
|
4771
|
-
{
|
|
4772
|
-
"name": "sticky",
|
|
4773
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4774
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4775
|
-
}
|
|
4776
|
-
],
|
|
4777
|
-
"properties": [
|
|
4778
|
-
{
|
|
4779
|
-
"name": "defaultFormatOptions",
|
|
4780
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4781
|
-
},
|
|
4782
|
-
{
|
|
4783
|
-
"name": "fieldTag",
|
|
4784
|
-
"type": "StaticValue"
|
|
4785
|
-
},
|
|
4786
|
-
{
|
|
4787
|
-
"name": "formatOptions",
|
|
4788
|
-
"attribute": "formatOptions",
|
|
4789
|
-
"description": "Options to pass to Date.prototype.format()",
|
|
4790
|
-
"type": "DateTimeFormatOptions | undefined"
|
|
4791
|
-
},
|
|
4792
|
-
{
|
|
4793
|
-
"name": "pickerHidden",
|
|
4794
|
-
"attribute": "pickerHidden",
|
|
4795
|
-
"description": "Hides the date/time picker",
|
|
4796
|
-
"type": "boolean"
|
|
4797
|
-
},
|
|
4798
|
-
{
|
|
4799
|
-
"name": "dataGrid",
|
|
4800
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4801
|
-
},
|
|
4802
|
-
{
|
|
4803
|
-
"name": "column",
|
|
4804
|
-
"type": "DataGridColumn<TData, TValue>"
|
|
4805
|
-
},
|
|
4806
|
-
{
|
|
4807
|
-
"name": "width",
|
|
4808
|
-
"attribute": "width",
|
|
4809
|
-
"description": "The width of the column",
|
|
4810
|
-
"type": "string"
|
|
4811
|
-
},
|
|
4812
|
-
{
|
|
4813
|
-
"name": "hidden",
|
|
4814
|
-
"attribute": "hidden",
|
|
4815
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4816
|
-
"type": "boolean"
|
|
4817
|
-
},
|
|
4818
|
-
{
|
|
4819
|
-
"name": "heading",
|
|
4820
|
-
"attribute": "heading",
|
|
4821
|
-
"description": "The heading of the column",
|
|
4822
|
-
"type": "string"
|
|
4823
|
-
},
|
|
4824
|
-
{
|
|
4825
|
-
"name": "textAlign",
|
|
4826
|
-
"attribute": "textAlign",
|
|
4827
|
-
"description": "The text alignment of the column",
|
|
4828
|
-
"type": "DataGridColumnAlignment"
|
|
4829
|
-
},
|
|
4830
|
-
{
|
|
4831
|
-
"name": "description",
|
|
4832
|
-
"attribute": "description",
|
|
4833
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4834
|
-
"type": "string | undefined"
|
|
4835
|
-
},
|
|
4836
|
-
{
|
|
4837
|
-
"name": "dataSelector",
|
|
4838
|
-
"attribute": "dataSelector",
|
|
4839
|
-
"description": "The data selector of the column",
|
|
4840
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4841
|
-
},
|
|
4842
|
-
{
|
|
4843
|
-
"name": "sortDataSelector",
|
|
4844
|
-
"attribute": "sortDataSelector",
|
|
4845
|
-
"description": "The data selector of the column",
|
|
4846
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4847
|
-
},
|
|
4848
|
-
{
|
|
4849
|
-
"name": "nonSortable",
|
|
4850
|
-
"attribute": "nonSortable",
|
|
4851
|
-
"description": "Whether the column is sortable",
|
|
4852
|
-
"type": "boolean"
|
|
4853
|
-
},
|
|
4854
|
-
{
|
|
4855
|
-
"name": "nonEditable",
|
|
4856
|
-
"attribute": "nonEditable",
|
|
4857
|
-
"description": "Whether the column is editable",
|
|
4858
|
-
"type": "boolean | Predicate<TData>"
|
|
4859
|
-
},
|
|
4860
|
-
{
|
|
4861
|
-
"name": "sticky",
|
|
4862
|
-
"attribute": "sticky",
|
|
4863
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4864
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4865
|
-
}
|
|
4866
|
-
]
|
|
4867
|
-
},
|
|
4868
|
-
{
|
|
4869
|
-
"name": "mo-data-grid-column-currency",
|
|
4870
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnCurrency.d.ts",
|
|
4871
|
-
"attributes": [
|
|
4872
|
-
{
|
|
4873
|
-
"name": "currency",
|
|
4874
|
-
"description": "The currency of the values.",
|
|
4875
|
-
"type": "Currency | undefined"
|
|
4876
|
-
},
|
|
4877
|
-
{
|
|
4878
|
-
"name": "currencyDataSelector",
|
|
4879
|
-
"description": "The key path to the currency of the values.",
|
|
4880
|
-
"type": "KeyPathOf<TData>"
|
|
4881
|
-
},
|
|
4882
|
-
{
|
|
4883
|
-
"name": "width",
|
|
4884
|
-
"description": "The width of the column",
|
|
4885
|
-
"type": "string"
|
|
4886
|
-
},
|
|
4887
|
-
{
|
|
4888
|
-
"name": "hidden",
|
|
4889
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4890
|
-
"type": "boolean"
|
|
4891
|
-
},
|
|
4892
|
-
{
|
|
4893
|
-
"name": "heading",
|
|
4894
|
-
"description": "The heading of the column",
|
|
4895
|
-
"type": "string"
|
|
4896
|
-
},
|
|
4897
|
-
{
|
|
4898
|
-
"name": "textAlign",
|
|
4899
|
-
"description": "The text alignment of the column",
|
|
4900
|
-
"type": "DataGridColumnAlignment"
|
|
4901
|
-
},
|
|
4902
|
-
{
|
|
4903
|
-
"name": "description",
|
|
4904
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4905
|
-
"type": "string | undefined"
|
|
4906
|
-
},
|
|
4907
|
-
{
|
|
4908
|
-
"name": "dataSelector",
|
|
4909
|
-
"description": "The data selector of the column",
|
|
4910
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4911
|
-
},
|
|
4912
|
-
{
|
|
4913
|
-
"name": "sortDataSelector",
|
|
4914
|
-
"description": "The data selector of the column",
|
|
4915
|
-
"type": "KeyPathOf<TData>"
|
|
4916
|
-
},
|
|
4917
|
-
{
|
|
4918
|
-
"name": "nonSortable",
|
|
4919
|
-
"description": "Whether the column is sortable",
|
|
4920
|
-
"type": "boolean"
|
|
4921
|
-
},
|
|
4922
|
-
{
|
|
4923
|
-
"name": "nonEditable",
|
|
4924
|
-
"description": "Whether the column is editable",
|
|
4925
|
-
"type": "boolean | Predicate<TData>"
|
|
4926
|
-
},
|
|
4927
|
-
{
|
|
4928
|
-
"name": "sticky",
|
|
4929
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
4930
|
-
"type": "DataGridColumnSticky | undefined"
|
|
4931
|
-
}
|
|
4932
|
-
],
|
|
4933
|
-
"properties": [
|
|
4934
|
-
{
|
|
4935
|
-
"name": "defaultCurrency",
|
|
4936
|
-
"type": "Currency | undefined"
|
|
4937
|
-
},
|
|
4938
|
-
{
|
|
4939
|
-
"name": "currency",
|
|
4940
|
-
"attribute": "currency",
|
|
4941
|
-
"description": "The currency of the values.",
|
|
4942
|
-
"type": "Currency | undefined"
|
|
4943
|
-
},
|
|
4944
|
-
{
|
|
4945
|
-
"name": "currencyDataSelector",
|
|
4946
|
-
"attribute": "currencyDataSelector",
|
|
4947
|
-
"description": "The key path to the currency of the values.",
|
|
4948
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
4949
|
-
},
|
|
4950
|
-
{
|
|
4951
|
-
"name": "sumHeading",
|
|
4952
|
-
"type": "string | undefined"
|
|
4953
|
-
},
|
|
4954
|
-
{
|
|
4955
|
-
"name": "dataGrid",
|
|
4956
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
4957
|
-
},
|
|
4958
|
-
{
|
|
4959
|
-
"name": "column",
|
|
4960
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
4961
|
-
},
|
|
4962
|
-
{
|
|
4963
|
-
"name": "width",
|
|
4964
|
-
"attribute": "width",
|
|
4965
|
-
"description": "The width of the column",
|
|
4966
|
-
"type": "string"
|
|
4967
|
-
},
|
|
4968
|
-
{
|
|
4969
|
-
"name": "hidden",
|
|
4970
|
-
"attribute": "hidden",
|
|
4971
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
4972
|
-
"type": "boolean"
|
|
4973
|
-
},
|
|
4974
|
-
{
|
|
4975
|
-
"name": "heading",
|
|
4976
|
-
"attribute": "heading",
|
|
4977
|
-
"description": "The heading of the column",
|
|
4978
|
-
"type": "string"
|
|
4979
|
-
},
|
|
4980
|
-
{
|
|
4981
|
-
"name": "textAlign",
|
|
4982
|
-
"attribute": "textAlign",
|
|
4983
|
-
"description": "The text alignment of the column",
|
|
4984
|
-
"type": "DataGridColumnAlignment"
|
|
4985
|
-
},
|
|
4986
|
-
{
|
|
4987
|
-
"name": "description",
|
|
4988
|
-
"attribute": "description",
|
|
4989
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
4990
|
-
"type": "string | undefined"
|
|
4991
|
-
},
|
|
4992
|
-
{
|
|
4993
|
-
"name": "dataSelector",
|
|
4994
|
-
"attribute": "dataSelector",
|
|
4995
|
-
"description": "The data selector of the column",
|
|
4996
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
4997
|
-
},
|
|
4998
|
-
{
|
|
4999
|
-
"name": "sortDataSelector",
|
|
5000
|
-
"attribute": "sortDataSelector",
|
|
5001
|
-
"description": "The data selector of the column",
|
|
5002
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
5003
|
-
},
|
|
5004
|
-
{
|
|
5005
|
-
"name": "nonSortable",
|
|
5006
|
-
"attribute": "nonSortable",
|
|
5007
|
-
"description": "Whether the column is sortable",
|
|
5008
|
-
"type": "boolean"
|
|
5009
|
-
},
|
|
5010
|
-
{
|
|
5011
|
-
"name": "nonEditable",
|
|
5012
|
-
"attribute": "nonEditable",
|
|
5013
|
-
"description": "Whether the column is editable",
|
|
5014
|
-
"type": "boolean | Predicate<TData>"
|
|
5015
|
-
},
|
|
5016
|
-
{
|
|
5017
|
-
"name": "sticky",
|
|
5018
|
-
"attribute": "sticky",
|
|
5019
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
5020
|
-
"type": "DataGridColumnSticky | undefined"
|
|
5021
|
-
}
|
|
5022
|
-
]
|
|
5023
|
-
},
|
|
5024
|
-
{
|
|
5025
|
-
"name": "mo-data-grid-column-number",
|
|
5026
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnNumber.d.ts",
|
|
5027
|
-
"attributes": [
|
|
5028
|
-
{
|
|
5029
|
-
"name": "width",
|
|
5030
|
-
"description": "The width of the column",
|
|
5031
|
-
"type": "string"
|
|
5032
|
-
},
|
|
5033
|
-
{
|
|
5034
|
-
"name": "hidden",
|
|
5035
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
5036
|
-
"type": "boolean"
|
|
5037
|
-
},
|
|
5038
|
-
{
|
|
5039
|
-
"name": "heading",
|
|
5040
|
-
"description": "The heading of the column",
|
|
5041
|
-
"type": "string"
|
|
5042
|
-
},
|
|
5043
|
-
{
|
|
5044
|
-
"name": "textAlign",
|
|
5045
|
-
"description": "The text alignment of the column",
|
|
5046
|
-
"type": "DataGridColumnAlignment"
|
|
5047
|
-
},
|
|
5048
|
-
{
|
|
5049
|
-
"name": "description",
|
|
5050
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
5051
|
-
"type": "string | undefined"
|
|
5052
|
-
},
|
|
5053
|
-
{
|
|
5054
|
-
"name": "dataSelector",
|
|
5055
|
-
"description": "The data selector of the column",
|
|
5056
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
5057
|
-
},
|
|
5058
|
-
{
|
|
5059
|
-
"name": "sortDataSelector",
|
|
5060
|
-
"description": "The data selector of the column",
|
|
5061
|
-
"type": "KeyPathOf<TData>"
|
|
5062
|
-
},
|
|
5063
|
-
{
|
|
5064
|
-
"name": "nonSortable",
|
|
5065
|
-
"description": "Whether the column is sortable",
|
|
5066
|
-
"type": "boolean"
|
|
5067
|
-
},
|
|
5068
|
-
{
|
|
5069
|
-
"name": "nonEditable",
|
|
5070
|
-
"description": "Whether the column is editable",
|
|
5071
|
-
"type": "boolean | Predicate<TData>"
|
|
5072
|
-
},
|
|
5073
|
-
{
|
|
5074
|
-
"name": "sticky",
|
|
5075
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
5076
|
-
"type": "DataGridColumnSticky | undefined"
|
|
5077
|
-
}
|
|
5078
|
-
],
|
|
5079
|
-
"properties": [
|
|
5080
|
-
{
|
|
5081
|
-
"name": "sumHeading",
|
|
5082
|
-
"type": "string | undefined"
|
|
5083
|
-
},
|
|
5084
|
-
{
|
|
5085
|
-
"name": "dataGrid",
|
|
5086
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
5087
|
-
},
|
|
5088
|
-
{
|
|
5089
|
-
"name": "column",
|
|
5090
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
5091
|
-
},
|
|
5092
|
-
{
|
|
5093
|
-
"name": "width",
|
|
5094
|
-
"attribute": "width",
|
|
5095
|
-
"description": "The width of the column",
|
|
5096
|
-
"type": "string"
|
|
5097
|
-
},
|
|
5098
|
-
{
|
|
5099
|
-
"name": "hidden",
|
|
5100
|
-
"attribute": "hidden",
|
|
5101
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
5102
|
-
"type": "boolean"
|
|
5103
|
-
},
|
|
5104
|
-
{
|
|
5105
|
-
"name": "heading",
|
|
5106
|
-
"attribute": "heading",
|
|
5107
|
-
"description": "The heading of the column",
|
|
5108
|
-
"type": "string"
|
|
5109
|
-
},
|
|
5110
|
-
{
|
|
5111
|
-
"name": "textAlign",
|
|
5112
|
-
"attribute": "textAlign",
|
|
5113
|
-
"description": "The text alignment of the column",
|
|
5114
|
-
"type": "DataGridColumnAlignment"
|
|
5115
|
-
},
|
|
5116
|
-
{
|
|
5117
|
-
"name": "description",
|
|
5118
|
-
"attribute": "description",
|
|
5119
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
5120
|
-
"type": "string | undefined"
|
|
5121
|
-
},
|
|
5122
|
-
{
|
|
5123
|
-
"name": "dataSelector",
|
|
5124
|
-
"attribute": "dataSelector",
|
|
5125
|
-
"description": "The data selector of the column",
|
|
5126
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
5127
|
-
},
|
|
5128
|
-
{
|
|
5129
|
-
"name": "sortDataSelector",
|
|
5130
|
-
"attribute": "sortDataSelector",
|
|
5131
|
-
"description": "The data selector of the column",
|
|
5132
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
5133
|
-
},
|
|
5134
|
-
{
|
|
5135
|
-
"name": "nonSortable",
|
|
5136
|
-
"attribute": "nonSortable",
|
|
5137
|
-
"description": "Whether the column is sortable",
|
|
5138
|
-
"type": "boolean"
|
|
5139
|
-
},
|
|
5140
|
-
{
|
|
5141
|
-
"name": "nonEditable",
|
|
5142
|
-
"attribute": "nonEditable",
|
|
5143
|
-
"description": "Whether the column is editable",
|
|
5144
|
-
"type": "boolean | Predicate<TData>"
|
|
5145
|
-
},
|
|
5146
|
-
{
|
|
5147
|
-
"name": "sticky",
|
|
5148
|
-
"attribute": "sticky",
|
|
5149
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
5150
|
-
"type": "DataGridColumnSticky | undefined"
|
|
5151
|
-
}
|
|
5152
|
-
]
|
|
5153
|
-
},
|
|
5154
|
-
{
|
|
5155
|
-
"name": "mo-data-grid-column-percent",
|
|
5156
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnPercent.d.ts",
|
|
5157
|
-
"attributes": [
|
|
5158
|
-
{
|
|
5159
|
-
"name": "width",
|
|
5160
|
-
"description": "The width of the column",
|
|
5161
|
-
"type": "string"
|
|
5162
|
-
},
|
|
5163
|
-
{
|
|
5164
|
-
"name": "hidden",
|
|
5165
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
5166
|
-
"type": "boolean"
|
|
5167
|
-
},
|
|
5168
|
-
{
|
|
5169
|
-
"name": "heading",
|
|
5170
|
-
"description": "The heading of the column",
|
|
5171
|
-
"type": "string"
|
|
5172
|
-
},
|
|
5173
|
-
{
|
|
5174
|
-
"name": "textAlign",
|
|
5175
|
-
"description": "The text alignment of the column",
|
|
5176
|
-
"type": "DataGridColumnAlignment"
|
|
5177
|
-
},
|
|
5178
|
-
{
|
|
5179
|
-
"name": "description",
|
|
5180
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
5181
|
-
"type": "string | undefined"
|
|
5182
|
-
},
|
|
5183
|
-
{
|
|
5184
|
-
"name": "dataSelector",
|
|
5185
|
-
"description": "The data selector of the column",
|
|
5186
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
5187
|
-
},
|
|
5188
|
-
{
|
|
5189
|
-
"name": "sortDataSelector",
|
|
5190
|
-
"description": "The data selector of the column",
|
|
5191
|
-
"type": "KeyPathOf<TData>"
|
|
5192
|
-
},
|
|
5193
|
-
{
|
|
5194
|
-
"name": "nonSortable",
|
|
5195
|
-
"description": "Whether the column is sortable",
|
|
5196
|
-
"type": "boolean"
|
|
5197
|
-
},
|
|
5198
|
-
{
|
|
5199
|
-
"name": "nonEditable",
|
|
5200
|
-
"description": "Whether the column is editable",
|
|
5201
|
-
"type": "boolean | Predicate<TData>"
|
|
5202
|
-
},
|
|
5203
|
-
{
|
|
5204
|
-
"name": "sticky",
|
|
5205
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
5206
|
-
"type": "DataGridColumnSticky | undefined"
|
|
5207
|
-
}
|
|
5208
|
-
],
|
|
5209
|
-
"properties": [
|
|
5210
|
-
{
|
|
5211
|
-
"name": "sumHeading",
|
|
5212
|
-
"type": "string | undefined"
|
|
5213
|
-
},
|
|
5214
|
-
{
|
|
5215
|
-
"name": "dataGrid",
|
|
5216
|
-
"type": "DataGrid<TData, any> | undefined"
|
|
5217
|
-
},
|
|
5218
|
-
{
|
|
5219
|
-
"name": "column",
|
|
5220
|
-
"type": "DataGridColumn<TData, unknown>"
|
|
5221
|
-
},
|
|
5222
|
-
{
|
|
5223
|
-
"name": "width",
|
|
5224
|
-
"attribute": "width",
|
|
5225
|
-
"description": "The width of the column",
|
|
5226
|
-
"type": "string"
|
|
5227
|
-
},
|
|
5228
|
-
{
|
|
5229
|
-
"name": "hidden",
|
|
5230
|
-
"attribute": "hidden",
|
|
5231
|
-
"description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
|
|
5232
|
-
"type": "boolean"
|
|
5233
|
-
},
|
|
5234
|
-
{
|
|
5235
|
-
"name": "heading",
|
|
5236
|
-
"attribute": "heading",
|
|
5237
|
-
"description": "The heading of the column",
|
|
5238
|
-
"type": "string"
|
|
5239
|
-
},
|
|
5240
|
-
{
|
|
5241
|
-
"name": "textAlign",
|
|
5242
|
-
"attribute": "textAlign",
|
|
5243
|
-
"description": "The text alignment of the column",
|
|
5244
|
-
"type": "DataGridColumnAlignment"
|
|
5245
|
-
},
|
|
5246
|
-
{
|
|
5247
|
-
"name": "description",
|
|
5248
|
-
"attribute": "description",
|
|
5249
|
-
"description": "The description of the column. It will be displayed as a tooltip on the heading.",
|
|
5250
|
-
"type": "string | undefined"
|
|
5251
|
-
},
|
|
5252
|
-
{
|
|
5253
|
-
"name": "dataSelector",
|
|
5254
|
-
"attribute": "dataSelector",
|
|
5255
|
-
"description": "The data selector of the column",
|
|
5256
|
-
"type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
|
|
5257
|
-
},
|
|
5258
|
-
{
|
|
5259
|
-
"name": "sortDataSelector",
|
|
5260
|
-
"attribute": "sortDataSelector",
|
|
5261
|
-
"description": "The data selector of the column",
|
|
5262
|
-
"type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
|
|
5263
|
-
},
|
|
5264
|
-
{
|
|
5265
|
-
"name": "nonSortable",
|
|
5266
|
-
"attribute": "nonSortable",
|
|
5267
|
-
"description": "Whether the column is sortable",
|
|
5268
|
-
"type": "boolean"
|
|
5269
|
-
},
|
|
5270
|
-
{
|
|
5271
|
-
"name": "nonEditable",
|
|
5272
|
-
"attribute": "nonEditable",
|
|
5273
|
-
"description": "Whether the column is editable",
|
|
5274
|
-
"type": "boolean | Predicate<TData>"
|
|
5275
|
-
},
|
|
5276
|
-
{
|
|
5277
|
-
"name": "sticky",
|
|
5278
|
-
"attribute": "sticky",
|
|
5279
|
-
"description": "The sticky position of the column, either 'start', 'end', or 'both'",
|
|
5280
|
-
"type": "DataGridColumnSticky | undefined"
|
|
5281
|
-
}
|
|
5282
|
-
]
|
|
5283
|
-
},
|
|
5284
|
-
{
|
|
5285
|
-
"name": "mo-data-grid-footer-sum",
|
|
5286
|
-
"path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridFooterSum.d.ts",
|
|
5287
|
-
"attributes": [
|
|
5288
|
-
{
|
|
5289
|
-
"name": "heading",
|
|
5290
|
-
"type": "string"
|
|
5291
|
-
}
|
|
5292
|
-
],
|
|
5293
|
-
"properties": [
|
|
5294
|
-
{
|
|
5295
|
-
"name": "heading",
|
|
5296
|
-
"attribute": "heading",
|
|
5297
|
-
"type": "string"
|
|
5298
|
-
}
|
|
5299
|
-
],
|
|
5300
|
-
"slots": [
|
|
5301
|
-
{
|
|
5302
|
-
"name": "",
|
|
5303
|
-
"description": "Sum of values"
|
|
5304
|
-
}
|
|
5305
|
-
]
|
|
5306
|
-
},
|
|
5307
|
-
{
|
|
5308
|
-
"name": "mo-data-grid-default-row",
|
|
5309
|
-
"path": ".\\packages\\DataGrid\\dist\\rows\\DataGridDefaultRow.d.ts",
|
|
5310
|
-
"properties": [
|
|
5311
|
-
{
|
|
5312
|
-
"name": "cells",
|
|
5313
|
-
"type": "DataGridCell<any, TData, TDetailsElement>[]"
|
|
5314
|
-
},
|
|
5315
|
-
{
|
|
5316
|
-
"name": "subRows",
|
|
5317
|
-
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
5318
|
-
},
|
|
5319
|
-
{
|
|
5320
|
-
"name": "content",
|
|
5321
|
-
"type": "HTMLElement"
|
|
5322
|
-
},
|
|
5323
|
-
{
|
|
5324
|
-
"name": "isIntersecting",
|
|
5325
|
-
"type": "boolean"
|
|
5326
|
-
},
|
|
5327
|
-
{
|
|
5328
|
-
"name": "dataRecord",
|
|
5329
|
-
"type": "DataRecord<TData>"
|
|
5330
|
-
},
|
|
5331
|
-
{
|
|
5332
|
-
"name": "dataGrid",
|
|
5333
|
-
"type": "DataGrid<TData, any>"
|
|
5334
|
-
},
|
|
5335
|
-
{
|
|
5336
|
-
"name": "data",
|
|
5337
|
-
"type": "TData"
|
|
5338
|
-
},
|
|
5339
|
-
{
|
|
5340
|
-
"name": "index",
|
|
5341
|
-
"type": "number"
|
|
5342
|
-
},
|
|
5343
|
-
{
|
|
5344
|
-
"name": "level",
|
|
5345
|
-
"type": "number"
|
|
5346
|
-
},
|
|
5347
|
-
{
|
|
5348
|
-
"name": "selected",
|
|
5349
|
-
"type": "boolean"
|
|
5350
|
-
},
|
|
5351
|
-
{
|
|
5352
|
-
"name": "detailsOpen",
|
|
5353
|
-
"type": "boolean"
|
|
5354
|
-
},
|
|
5355
|
-
{
|
|
5356
|
-
"name": "detailsElement",
|
|
5357
|
-
"type": "TDetailsElement | undefined"
|
|
5358
|
-
}
|
|
5359
|
-
]
|
|
5360
|
-
},
|
|
5361
|
-
{
|
|
5362
|
-
"name": "mo-data-grid-row",
|
|
5363
|
-
"path": ".\\packages\\DataGrid\\dist\\rows\\DataGridRow.d.ts",
|
|
5364
|
-
"properties": [
|
|
5365
|
-
{
|
|
5366
|
-
"name": "cells",
|
|
5367
|
-
"type": "DataGridCell<any, TData, TDetailsElement>[]"
|
|
5368
|
-
},
|
|
5369
|
-
{
|
|
5370
|
-
"name": "subRows",
|
|
5371
|
-
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
5372
|
-
},
|
|
5373
|
-
{
|
|
5374
|
-
"name": "content",
|
|
5375
|
-
"type": "HTMLElement"
|
|
5376
|
-
},
|
|
5377
|
-
{
|
|
5378
|
-
"name": "isIntersecting",
|
|
5379
|
-
"type": "boolean"
|
|
5380
|
-
},
|
|
5381
|
-
{
|
|
5382
|
-
"name": "dataRecord",
|
|
5383
|
-
"type": "DataRecord<TData>"
|
|
5384
|
-
},
|
|
5385
|
-
{
|
|
5386
|
-
"name": "dataGrid",
|
|
5387
|
-
"type": "DataGrid<TData, any>"
|
|
5388
|
-
},
|
|
5389
|
-
{
|
|
5390
|
-
"name": "data",
|
|
5391
|
-
"type": "TData"
|
|
5392
|
-
},
|
|
5393
|
-
{
|
|
5394
|
-
"name": "index",
|
|
5395
|
-
"type": "number"
|
|
5396
|
-
},
|
|
5397
|
-
{
|
|
5398
|
-
"name": "level",
|
|
5399
|
-
"type": "number"
|
|
5400
|
-
},
|
|
5401
|
-
{
|
|
5402
|
-
"name": "selected",
|
|
5403
|
-
"type": "boolean"
|
|
5404
|
-
},
|
|
5405
|
-
{
|
|
5406
|
-
"name": "detailsOpen",
|
|
5407
|
-
"type": "boolean"
|
|
5408
|
-
},
|
|
5409
|
-
{
|
|
5410
|
-
"name": "detailsElement",
|
|
5411
|
-
"type": "TDetailsElement | undefined"
|
|
5412
|
-
}
|
|
5413
|
-
]
|
|
5414
|
-
},
|
|
5415
|
-
{
|
|
5416
|
-
"name": "mo-data-grid-default-row",
|
|
5417
|
-
"path": ".\\packages\\DataGrid\\rows\\DataGridDefaultRow.ts",
|
|
5418
|
-
"attributes": [
|
|
5419
|
-
{
|
|
5420
|
-
"name": "isIntersecting",
|
|
5421
|
-
"type": "boolean",
|
|
5422
|
-
"default": "false"
|
|
5423
|
-
},
|
|
5424
|
-
{
|
|
5425
|
-
"name": "dataRecord",
|
|
5426
|
-
"type": "DataRecord<TData>"
|
|
5427
|
-
}
|
|
5428
|
-
],
|
|
5429
|
-
"properties": [
|
|
5430
|
-
{
|
|
5431
|
-
"name": "cells",
|
|
5432
|
-
"type": "DataGridCell<any, TData, TDetailsElement>[]"
|
|
5433
|
-
},
|
|
5434
|
-
{
|
|
5435
|
-
"name": "subRows",
|
|
5436
|
-
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
5437
|
-
},
|
|
5438
|
-
{
|
|
5439
|
-
"name": "content",
|
|
5440
|
-
"type": "HTMLElement"
|
|
5441
|
-
},
|
|
5442
|
-
{
|
|
5443
|
-
"name": "isIntersecting",
|
|
5444
|
-
"attribute": "isIntersecting",
|
|
5445
|
-
"type": "boolean",
|
|
5446
|
-
"default": "false"
|
|
5447
|
-
},
|
|
5448
|
-
{
|
|
5449
|
-
"name": "dataRecord",
|
|
5450
|
-
"attribute": "dataRecord",
|
|
5451
|
-
"type": "DataRecord<TData>"
|
|
5452
|
-
},
|
|
5453
|
-
{
|
|
5454
|
-
"name": "dataGrid",
|
|
5455
|
-
"type": "DataGrid<TData, any>"
|
|
5456
|
-
},
|
|
5457
|
-
{
|
|
5458
|
-
"name": "data",
|
|
5459
|
-
"type": "TData"
|
|
5460
|
-
},
|
|
5461
|
-
{
|
|
5462
|
-
"name": "index",
|
|
5463
|
-
"type": "number"
|
|
5464
|
-
},
|
|
5465
|
-
{
|
|
5466
|
-
"name": "level",
|
|
5467
|
-
"type": "number"
|
|
5468
|
-
},
|
|
5469
|
-
{
|
|
5470
|
-
"name": "selected",
|
|
5471
|
-
"type": "boolean"
|
|
5472
|
-
},
|
|
5473
|
-
{
|
|
5474
|
-
"name": "detailsOpen",
|
|
5475
|
-
"type": "boolean"
|
|
5476
|
-
},
|
|
5477
|
-
{
|
|
5478
|
-
"name": "detailsElement",
|
|
5479
|
-
"type": "TDetailsElement | undefined"
|
|
5480
|
-
}
|
|
5481
|
-
],
|
|
5482
|
-
"events": [
|
|
5483
|
-
{
|
|
5484
|
-
"name": "contextmenu",
|
|
5485
|
-
"type": "CustomEvent"
|
|
5486
|
-
}
|
|
5487
|
-
]
|
|
5488
|
-
},
|
|
5489
|
-
{
|
|
5490
|
-
"name": "mo-data-grid-row",
|
|
5491
|
-
"path": ".\\packages\\DataGrid\\rows\\DataGridRow.ts",
|
|
5492
|
-
"attributes": [
|
|
5493
|
-
{
|
|
5494
|
-
"name": "isIntersecting",
|
|
5495
|
-
"type": "boolean",
|
|
5496
|
-
"default": "false"
|
|
5497
|
-
},
|
|
5498
|
-
{
|
|
5499
|
-
"name": "dataRecord",
|
|
5500
|
-
"type": "DataRecord<TData>"
|
|
5501
|
-
}
|
|
5502
|
-
],
|
|
5503
|
-
"properties": [
|
|
5504
|
-
{
|
|
5505
|
-
"name": "cells",
|
|
5506
|
-
"type": "DataGridCell<any, TData, TDetailsElement>[]"
|
|
5507
|
-
},
|
|
5508
|
-
{
|
|
5509
|
-
"name": "subRows",
|
|
5510
|
-
"type": "DataGridRow<TData, TDetailsElement>[]"
|
|
5511
|
-
},
|
|
5512
|
-
{
|
|
5513
|
-
"name": "content",
|
|
5514
|
-
"type": "HTMLElement"
|
|
5515
|
-
},
|
|
5516
|
-
{
|
|
5517
|
-
"name": "isIntersecting",
|
|
5518
|
-
"attribute": "isIntersecting",
|
|
5519
|
-
"type": "boolean",
|
|
5520
|
-
"default": "false"
|
|
5521
|
-
},
|
|
5522
|
-
{
|
|
5523
|
-
"name": "dataRecord",
|
|
5524
|
-
"attribute": "dataRecord",
|
|
5525
|
-
"type": "DataRecord<TData>"
|
|
5526
|
-
},
|
|
5527
|
-
{
|
|
5528
|
-
"name": "dataGrid",
|
|
5529
|
-
"type": "DataGrid<TData, any>"
|
|
5530
|
-
},
|
|
5531
|
-
{
|
|
5532
|
-
"name": "data",
|
|
5533
|
-
"type": "TData"
|
|
5534
|
-
},
|
|
5535
|
-
{
|
|
5536
|
-
"name": "index",
|
|
5537
|
-
"type": "number"
|
|
5538
|
-
},
|
|
5539
|
-
{
|
|
5540
|
-
"name": "level",
|
|
5541
|
-
"type": "number"
|
|
5542
|
-
},
|
|
5543
|
-
{
|
|
5544
|
-
"name": "selected",
|
|
5545
|
-
"type": "boolean"
|
|
5546
|
-
},
|
|
5547
|
-
{
|
|
5548
|
-
"name": "detailsOpen",
|
|
5549
|
-
"type": "boolean"
|
|
5550
|
-
},
|
|
5551
|
-
{
|
|
5552
|
-
"name": "detailsElement",
|
|
5553
|
-
"type": "TDetailsElement | undefined"
|
|
5554
|
-
}
|
|
5555
|
-
],
|
|
5556
|
-
"events": [
|
|
5557
|
-
{
|
|
5558
|
-
"name": "contextmenu",
|
|
5559
|
-
"type": "CustomEvent"
|
|
5560
|
-
}
|
|
5561
|
-
]
|
|
5562
919
|
}
|
|
5563
920
|
]
|
|
5564
921
|
}
|