@1money/component-ui 0.1.4-alpha.0 → 0.1.5-alpha.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.
Files changed (33) hide show
  1. package/es/components/Table/VirtualTable.js +4 -2
  2. package/es/components/Table/core/useTableColumns.d.ts +2 -1
  3. package/es/components/Table/core/useTableColumns.js +24 -10
  4. package/es/components/Table/core/useTableSetup.js +11 -4
  5. package/es/components/Table/interface.d.ts +10 -0
  6. package/es/components/Table/renderers/BodyCell.d.ts +3 -2
  7. package/es/components/Table/renderers/BodyCell.js +11 -5
  8. package/es/components/Table/renderers/CellContent.d.ts +3 -2
  9. package/es/components/Table/renderers/CellContent.js +6 -4
  10. package/es/components/Table/size.d.ts +18 -0
  11. package/es/components/Table/size.js +50 -0
  12. package/es/components/Table/style/Table.css +26 -25
  13. package/es/index.css +1 -1
  14. package/es/index.d.ts +1 -1
  15. package/es/index.js +1 -1
  16. package/lib/components/Table/VirtualTable.js +4 -2
  17. package/lib/components/Table/core/useTableColumns.d.ts +2 -1
  18. package/lib/components/Table/core/useTableColumns.js +24 -10
  19. package/lib/components/Table/core/useTableSetup.js +11 -4
  20. package/lib/components/Table/interface.d.ts +10 -0
  21. package/lib/components/Table/renderers/BodyCell.d.ts +3 -2
  22. package/lib/components/Table/renderers/BodyCell.js +11 -5
  23. package/lib/components/Table/renderers/CellContent.d.ts +3 -2
  24. package/lib/components/Table/renderers/CellContent.js +6 -4
  25. package/lib/components/Table/size.d.ts +18 -0
  26. package/lib/components/Table/size.js +57 -0
  27. package/lib/components/Table/style/Table.css +26 -25
  28. package/lib/index.css +1 -1
  29. package/lib/index.d.ts +1 -1
  30. package/lib/index.js +1 -1
  31. package/package.json +1 -1
  32. package/scripts/mcp-server/examples.generated.json +108 -6
  33. package/scripts/mcp-server/index.generated.json +188 -24
@@ -18281,22 +18281,25 @@
18281
18281
  "extends": [],
18282
18282
  "relatedSymbols": [
18283
18283
  "Table",
18284
+ "TableCellRenderMeta",
18284
18285
  "TableChangeMeta",
18285
18286
  "TableColumn",
18286
18287
  "TableExpandableConfig",
18288
+ "TableHeaderRenderMeta",
18287
18289
  "TableLoadingConfig",
18288
18290
  "TablePaginationConfig",
18289
18291
  "TableProps",
18290
18292
  "TableRef",
18291
18293
  "TableRowSelection",
18294
+ "TableSize",
18292
18295
  "VirtualTable",
18293
18296
  "VirtualTableProps"
18294
18297
  ],
18295
18298
  "searchTags": [],
18296
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
18299
+ "canonicalUsage": "<Summary />",
18297
18300
  "examples": [
18298
18301
  {
18299
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
18302
+ "hash": "fae264089283b656f9a24bbce734e2b54bc0d9f18746ef9131f5a7cdc4bd470f",
18300
18303
  "source": "canonical"
18301
18304
  }
18302
18305
  ]
@@ -18559,6 +18562,14 @@
18559
18562
  "description": "Row key for tracking.",
18560
18563
  "inheritedFrom": null
18561
18564
  },
18565
+ {
18566
+ "name": "size",
18567
+ "type": "TableSize",
18568
+ "optional": true,
18569
+ "default": null,
18570
+ "description": "Typography and cell density.",
18571
+ "inheritedFrom": null
18572
+ },
18562
18573
  {
18563
18574
  "name": "variant",
18564
18575
  "type": "TableVariant",
@@ -18733,26 +18744,37 @@
18733
18744
  ],
18734
18745
  "relatedSymbols": [
18735
18746
  "Summary",
18747
+ "TableCellRenderMeta",
18736
18748
  "TableChangeMeta",
18737
18749
  "TableColumn",
18738
18750
  "TableExpandableConfig",
18751
+ "TableHeaderRenderMeta",
18739
18752
  "TableLoadingConfig",
18740
18753
  "TablePaginationConfig",
18741
18754
  "TableProps",
18742
18755
  "TableRef",
18743
18756
  "TableRowSelection",
18757
+ "TableSize",
18744
18758
  "VirtualTable",
18745
18759
  "VirtualTableProps"
18746
18760
  ],
18747
18761
  "searchTags": [
18748
18762
  "table"
18749
18763
  ],
18750
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
18764
+ "canonicalUsage": "<Table columns={[]} dataSource={[]} />",
18751
18765
  "examples": [
18752
18766
  {
18753
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
18767
+ "hash": "37bb4876a09b2f248cd383472f4b87ae9d3d506cb167e556ebf9172042a8e8e2",
18754
18768
  "source": "canonical"
18755
18769
  },
18770
+ {
18771
+ "hash": "53167ecf48d5c721a493e3484b603f6d6ff55df6de52f2eee871f2ba5163873b",
18772
+ "source": "readme"
18773
+ },
18774
+ {
18775
+ "hash": "32ee89b7500ac273e94224fe50c54d5b112020598ee7e41ef53deb0c55cc4265",
18776
+ "source": "readme"
18777
+ },
18756
18778
  {
18757
18779
  "hash": "01e42b7a87c5cb58fa0997aac16923606d3e12ded9713d54d883d890454a0a25",
18758
18780
  "source": "readme"
@@ -18852,6 +18874,46 @@
18852
18874
  {
18853
18875
  "hash": "7d685c923f7021e20833ac461199f6027743a154ac0dd467e4199236b6de3909",
18854
18876
  "source": "stories"
18877
+ },
18878
+ {
18879
+ "hash": "2f3a058465d5dd11defb294f89ed561da3918e60d6ce7cbaf85bc274cc6c62e6",
18880
+ "source": "stories"
18881
+ }
18882
+ ]
18883
+ },
18884
+ {
18885
+ "name": "TableCellRenderMeta",
18886
+ "kind": "type",
18887
+ "category": "display",
18888
+ "summary": "",
18889
+ "importPath": "@1money/component-ui",
18890
+ "subpathImport": "@1money/component-ui/Table",
18891
+ "sourceFile": "src/components/Table/interface.ts",
18892
+ "props": [],
18893
+ "extends": [],
18894
+ "relatedSymbols": [
18895
+ "Summary",
18896
+ "Table",
18897
+ "TableChangeMeta",
18898
+ "TableColumn",
18899
+ "TableExpandableConfig",
18900
+ "TableHeaderRenderMeta",
18901
+ "TableLoadingConfig",
18902
+ "TablePaginationConfig",
18903
+ "TableProps",
18904
+ "TableRef",
18905
+ "TableRowSelection",
18906
+ "TableSize",
18907
+ "VirtualTable",
18908
+ "VirtualTableProps"
18909
+ ],
18910
+ "searchTags": [],
18911
+ "typeText": "interface TableCellRenderMeta { ... }",
18912
+ "canonicalUsage": "import type { TableCellRenderMeta } from '@1money/component-ui';",
18913
+ "examples": [
18914
+ {
18915
+ "hash": "7cb103faffb817fca4d3a428e074b5edc4985ec197ac2a6e4e19398697049aef",
18916
+ "source": "canonical"
18855
18917
  }
18856
18918
  ]
18857
18919
  },
@@ -18868,22 +18930,25 @@
18868
18930
  "relatedSymbols": [
18869
18931
  "Summary",
18870
18932
  "Table",
18933
+ "TableCellRenderMeta",
18871
18934
  "TableColumn",
18872
18935
  "TableExpandableConfig",
18936
+ "TableHeaderRenderMeta",
18873
18937
  "TableLoadingConfig",
18874
18938
  "TablePaginationConfig",
18875
18939
  "TableProps",
18876
18940
  "TableRef",
18877
18941
  "TableRowSelection",
18942
+ "TableSize",
18878
18943
  "VirtualTable",
18879
18944
  "VirtualTableProps"
18880
18945
  ],
18881
18946
  "searchTags": [],
18882
18947
  "typeText": "interface TableChangeMeta { ... }",
18883
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
18948
+ "canonicalUsage": "import type { TableChangeMeta } from '@1money/component-ui';",
18884
18949
  "examples": [
18885
18950
  {
18886
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
18951
+ "hash": "69d44bb29b24d881791aa802c075ac030daf746565250b57926c3c3ec7f64ffd",
18887
18952
  "source": "canonical"
18888
18953
  }
18889
18954
  ]
@@ -18901,22 +18966,25 @@
18901
18966
  "relatedSymbols": [
18902
18967
  "Summary",
18903
18968
  "Table",
18969
+ "TableCellRenderMeta",
18904
18970
  "TableChangeMeta",
18905
18971
  "TableExpandableConfig",
18972
+ "TableHeaderRenderMeta",
18906
18973
  "TableLoadingConfig",
18907
18974
  "TablePaginationConfig",
18908
18975
  "TableProps",
18909
18976
  "TableRef",
18910
18977
  "TableRowSelection",
18978
+ "TableSize",
18911
18979
  "VirtualTable",
18912
18980
  "VirtualTableProps"
18913
18981
  ],
18914
18982
  "searchTags": [],
18915
18983
  "typeText": "interface TableColumn { ... }",
18916
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
18984
+ "canonicalUsage": "import type { TableColumn } from '@1money/component-ui';",
18917
18985
  "examples": [
18918
18986
  {
18919
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
18987
+ "hash": "f0cce7849f34198b7b211f46339ef328a86a4dc06c7e60b676acecbc9a2ea7ad",
18920
18988
  "source": "canonical"
18921
18989
  }
18922
18990
  ]
@@ -18934,22 +19002,61 @@
18934
19002
  "relatedSymbols": [
18935
19003
  "Summary",
18936
19004
  "Table",
19005
+ "TableCellRenderMeta",
18937
19006
  "TableChangeMeta",
18938
19007
  "TableColumn",
19008
+ "TableHeaderRenderMeta",
18939
19009
  "TableLoadingConfig",
18940
19010
  "TablePaginationConfig",
18941
19011
  "TableProps",
18942
19012
  "TableRef",
18943
19013
  "TableRowSelection",
19014
+ "TableSize",
18944
19015
  "VirtualTable",
18945
19016
  "VirtualTableProps"
18946
19017
  ],
18947
19018
  "searchTags": [],
18948
19019
  "typeText": "interface TableExpandableConfig { ... }",
18949
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19020
+ "canonicalUsage": "import type { TableExpandableConfig } from '@1money/component-ui';",
18950
19021
  "examples": [
18951
19022
  {
18952
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19023
+ "hash": "eaebdaf93d22533c1732b2f7a3c46e6e24b5586efc210e4de83194bfd17d47d7",
19024
+ "source": "canonical"
19025
+ }
19026
+ ]
19027
+ },
19028
+ {
19029
+ "name": "TableHeaderRenderMeta",
19030
+ "kind": "type",
19031
+ "category": "display",
19032
+ "summary": "",
19033
+ "importPath": "@1money/component-ui",
19034
+ "subpathImport": "@1money/component-ui/Table",
19035
+ "sourceFile": "src/components/Table/interface.ts",
19036
+ "props": [],
19037
+ "extends": [],
19038
+ "relatedSymbols": [
19039
+ "Summary",
19040
+ "Table",
19041
+ "TableCellRenderMeta",
19042
+ "TableChangeMeta",
19043
+ "TableColumn",
19044
+ "TableExpandableConfig",
19045
+ "TableLoadingConfig",
19046
+ "TablePaginationConfig",
19047
+ "TableProps",
19048
+ "TableRef",
19049
+ "TableRowSelection",
19050
+ "TableSize",
19051
+ "VirtualTable",
19052
+ "VirtualTableProps"
19053
+ ],
19054
+ "searchTags": [],
19055
+ "typeText": "interface TableHeaderRenderMeta { ... }",
19056
+ "canonicalUsage": "import type { TableHeaderRenderMeta } from '@1money/component-ui';",
19057
+ "examples": [
19058
+ {
19059
+ "hash": "c4699e6662d26b6652ef964c537c81f9e4225e5e1388c617c64f9add2d40ed67",
18953
19060
  "source": "canonical"
18954
19061
  }
18955
19062
  ]
@@ -18967,22 +19074,25 @@
18967
19074
  "relatedSymbols": [
18968
19075
  "Summary",
18969
19076
  "Table",
19077
+ "TableCellRenderMeta",
18970
19078
  "TableChangeMeta",
18971
19079
  "TableColumn",
18972
19080
  "TableExpandableConfig",
19081
+ "TableHeaderRenderMeta",
18973
19082
  "TablePaginationConfig",
18974
19083
  "TableProps",
18975
19084
  "TableRef",
18976
19085
  "TableRowSelection",
19086
+ "TableSize",
18977
19087
  "VirtualTable",
18978
19088
  "VirtualTableProps"
18979
19089
  ],
18980
19090
  "searchTags": [],
18981
19091
  "typeText": "interface TableLoadingConfig { ... }",
18982
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19092
+ "canonicalUsage": "import type { TableLoadingConfig } from '@1money/component-ui';",
18983
19093
  "examples": [
18984
19094
  {
18985
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19095
+ "hash": "5149f9bf80a7dd88ad034aade0afba9649577c79fea303cc3865b7ab265ce7ef",
18986
19096
  "source": "canonical"
18987
19097
  }
18988
19098
  ]
@@ -19000,22 +19110,25 @@
19000
19110
  "relatedSymbols": [
19001
19111
  "Summary",
19002
19112
  "Table",
19113
+ "TableCellRenderMeta",
19003
19114
  "TableChangeMeta",
19004
19115
  "TableColumn",
19005
19116
  "TableExpandableConfig",
19117
+ "TableHeaderRenderMeta",
19006
19118
  "TableLoadingConfig",
19007
19119
  "TableProps",
19008
19120
  "TableRef",
19009
19121
  "TableRowSelection",
19122
+ "TableSize",
19010
19123
  "VirtualTable",
19011
19124
  "VirtualTableProps"
19012
19125
  ],
19013
19126
  "searchTags": [],
19014
19127
  "typeText": "interface TablePaginationConfig { ... }",
19015
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19128
+ "canonicalUsage": "import type { TablePaginationConfig } from '@1money/component-ui';",
19016
19129
  "examples": [
19017
19130
  {
19018
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19131
+ "hash": "9eaa49c3d6806dabc9eff48150dc83f759285d35079dd13d7187c5a146dad598",
19019
19132
  "source": "canonical"
19020
19133
  }
19021
19134
  ]
@@ -19033,22 +19146,25 @@
19033
19146
  "relatedSymbols": [
19034
19147
  "Summary",
19035
19148
  "Table",
19149
+ "TableCellRenderMeta",
19036
19150
  "TableChangeMeta",
19037
19151
  "TableColumn",
19038
19152
  "TableExpandableConfig",
19153
+ "TableHeaderRenderMeta",
19039
19154
  "TableLoadingConfig",
19040
19155
  "TablePaginationConfig",
19041
19156
  "TableRef",
19042
19157
  "TableRowSelection",
19158
+ "TableSize",
19043
19159
  "VirtualTable",
19044
19160
  "VirtualTableProps"
19045
19161
  ],
19046
19162
  "searchTags": [],
19047
19163
  "typeText": "interface TableProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> { ... }",
19048
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19164
+ "canonicalUsage": "import type { TableProps } from '@1money/component-ui';",
19049
19165
  "examples": [
19050
19166
  {
19051
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19167
+ "hash": "be3df64b2d9339e3051dff4ffd7b56a757354ac94b89f961592ea25e672f2a05",
19052
19168
  "source": "canonical"
19053
19169
  }
19054
19170
  ]
@@ -19066,22 +19182,25 @@
19066
19182
  "relatedSymbols": [
19067
19183
  "Summary",
19068
19184
  "Table",
19185
+ "TableCellRenderMeta",
19069
19186
  "TableChangeMeta",
19070
19187
  "TableColumn",
19071
19188
  "TableExpandableConfig",
19189
+ "TableHeaderRenderMeta",
19072
19190
  "TableLoadingConfig",
19073
19191
  "TablePaginationConfig",
19074
19192
  "TableProps",
19075
19193
  "TableRowSelection",
19194
+ "TableSize",
19076
19195
  "VirtualTable",
19077
19196
  "VirtualTableProps"
19078
19197
  ],
19079
19198
  "searchTags": [],
19080
19199
  "typeText": "interface TableRef { ... }",
19081
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19200
+ "canonicalUsage": "import type { TableRef } from '@1money/component-ui';",
19082
19201
  "examples": [
19083
19202
  {
19084
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19203
+ "hash": "d4b7560ccb58d1d0b1361e6f5d742883a8cd3d12755832d69b1e68d6f513aa80",
19085
19204
  "source": "canonical"
19086
19205
  }
19087
19206
  ]
@@ -19099,22 +19218,61 @@
19099
19218
  "relatedSymbols": [
19100
19219
  "Summary",
19101
19220
  "Table",
19221
+ "TableCellRenderMeta",
19102
19222
  "TableChangeMeta",
19103
19223
  "TableColumn",
19104
19224
  "TableExpandableConfig",
19225
+ "TableHeaderRenderMeta",
19105
19226
  "TableLoadingConfig",
19106
19227
  "TablePaginationConfig",
19107
19228
  "TableProps",
19108
19229
  "TableRef",
19230
+ "TableSize",
19109
19231
  "VirtualTable",
19110
19232
  "VirtualTableProps"
19111
19233
  ],
19112
19234
  "searchTags": [],
19113
19235
  "typeText": "interface TableRowSelection { ... }",
19114
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
19236
+ "canonicalUsage": "import type { TableRowSelection } from '@1money/component-ui';",
19237
+ "examples": [
19238
+ {
19239
+ "hash": "d1947ca96e9ea89c9d283feb5c5a7a6bcc7a76e41eb49283b3655805aa8a7f55",
19240
+ "source": "canonical"
19241
+ }
19242
+ ]
19243
+ },
19244
+ {
19245
+ "name": "TableSize",
19246
+ "kind": "type",
19247
+ "category": "display",
19248
+ "summary": "",
19249
+ "importPath": "@1money/component-ui",
19250
+ "subpathImport": "@1money/component-ui/Table",
19251
+ "sourceFile": "src/components/Table/interface.ts",
19252
+ "props": [],
19253
+ "extends": [],
19254
+ "relatedSymbols": [
19255
+ "Summary",
19256
+ "Table",
19257
+ "TableCellRenderMeta",
19258
+ "TableChangeMeta",
19259
+ "TableColumn",
19260
+ "TableExpandableConfig",
19261
+ "TableHeaderRenderMeta",
19262
+ "TableLoadingConfig",
19263
+ "TablePaginationConfig",
19264
+ "TableProps",
19265
+ "TableRef",
19266
+ "TableRowSelection",
19267
+ "VirtualTable",
19268
+ "VirtualTableProps"
19269
+ ],
19270
+ "searchTags": [],
19271
+ "typeText": "'large' | 'small' | 'extra-small'",
19272
+ "canonicalUsage": "import type { TableSize } from '@1money/component-ui';",
19115
19273
  "examples": [
19116
19274
  {
19117
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
19275
+ "hash": "94490b9b28e0f552f27bfdb7ec934d71428f9d049e4e56018f62206ccbbb0930",
19118
19276
  "source": "canonical"
19119
19277
  }
19120
19278
  ]
@@ -21322,23 +21480,26 @@
21322
21480
  "relatedSymbols": [
21323
21481
  "Summary",
21324
21482
  "Table",
21483
+ "TableCellRenderMeta",
21325
21484
  "TableChangeMeta",
21326
21485
  "TableColumn",
21327
21486
  "TableExpandableConfig",
21487
+ "TableHeaderRenderMeta",
21328
21488
  "TableLoadingConfig",
21329
21489
  "TablePaginationConfig",
21330
21490
  "TableProps",
21331
21491
  "TableRef",
21332
21492
  "TableRowSelection",
21493
+ "TableSize",
21333
21494
  "VirtualTableProps"
21334
21495
  ],
21335
21496
  "searchTags": [
21336
21497
  "table"
21337
21498
  ],
21338
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
21499
+ "canonicalUsage": "<VirtualTable />",
21339
21500
  "examples": [
21340
21501
  {
21341
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
21502
+ "hash": "0b83c27f98c765b2e5d993540dbf0b0631eeb789758abe3fb5698a11f83ce55f",
21342
21503
  "source": "canonical"
21343
21504
  }
21344
21505
  ]
@@ -21356,22 +21517,25 @@
21356
21517
  "relatedSymbols": [
21357
21518
  "Summary",
21358
21519
  "Table",
21520
+ "TableCellRenderMeta",
21359
21521
  "TableChangeMeta",
21360
21522
  "TableColumn",
21361
21523
  "TableExpandableConfig",
21524
+ "TableHeaderRenderMeta",
21362
21525
  "TableLoadingConfig",
21363
21526
  "TablePaginationConfig",
21364
21527
  "TableProps",
21365
21528
  "TableRef",
21366
21529
  "TableRowSelection",
21530
+ "TableSize",
21367
21531
  "VirtualTable"
21368
21532
  ],
21369
21533
  "searchTags": [],
21370
21534
  "typeText": "interface VirtualTableProps extends Omit<TableProps<T>, 'scroll'> { ... }",
21371
- "canonicalUsage": "import { Table, VirtualTable, Summary } from '@1money/component-ui';\n// or\nimport { Table, VirtualTable, Summary } from '@1money/component-ui/Table';",
21535
+ "canonicalUsage": "import type { VirtualTableProps } from '@1money/component-ui';",
21372
21536
  "examples": [
21373
21537
  {
21374
- "hash": "768f1f82744cbb6dbd0604c2f6a6bf1d19ce230205eb3b898ad5fb07aa975ff6",
21538
+ "hash": "9bfd0718942bb787b65f7163906c6810657045acdcd186ce5b506d01fec40d75",
21375
21539
  "source": "canonical"
21376
21540
  }
21377
21541
  ]