@texturehq/edges 1.12.1 → 1.13.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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.12.1",
3
- "generatedAt": "2025-10-24T17:11:02.263Z",
2
+ "version": "1.13.0",
3
+ "generatedAt": "2025-10-26T01:11:39.874Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "ActionCell",
@@ -28,7 +28,7 @@
28
28
  {
29
29
  "name": "ActivityFeed",
30
30
  "category": "Activity",
31
- "description": "Feed content",
31
+ "description": "Height/maxHeight for scroll container",
32
32
  "importRoot": "@texturehq/edges",
33
33
  "importPath": "@texturehq/edges/components/ActivityFeed",
34
34
  "props": [],
@@ -204,7 +204,9 @@
204
204
  "importRoot": "@texturehq/edges",
205
205
  "importPath": "@texturehq/edges/components/AutoMobileRenderer",
206
206
  "props": [],
207
- "relatedComponents": [],
207
+ "relatedComponents": [
208
+ "Skeleton"
209
+ ],
208
210
  "storybookPath": "Data/AutoMobileRenderer"
209
211
  },
210
212
  {
@@ -543,7 +545,9 @@
543
545
  "importRoot": "@texturehq/edges",
544
546
  "importPath": "@texturehq/edges/components/CardMobileRenderer",
545
547
  "props": [],
546
- "relatedComponents": [],
548
+ "relatedComponents": [
549
+ "Skeleton"
550
+ ],
547
551
  "storybookPath": "Data/CardMobileRenderer"
548
552
  },
549
553
  {
@@ -808,11 +812,13 @@
808
812
  {
809
813
  "name": "DataTable",
810
814
  "category": "Data",
811
- "description": "DataTable Advanced table component with sorting, filtering, pagination, and mobile-responsive views. Supports custom cell renderers, column configurations, and multiple display densities.",
815
+ "description": "DataTable Advanced table component with sorting, filtering, pagination, and infinite scroll. Supports custom cell renderers, column configurations, multiple display densities, and virtualization for large datasets.",
812
816
  "importRoot": "@texturehq/edges",
813
817
  "importPath": "@texturehq/edges/components/DataTable",
814
818
  "props": [],
815
- "relatedComponents": [],
819
+ "relatedComponents": [
820
+ "Skeleton"
821
+ ],
816
822
  "storybookPath": "Data/DataTable"
817
823
  },
818
824
  {
@@ -1020,6 +1026,16 @@
1020
1026
  "relatedComponents": [],
1021
1027
  "storybookPath": "Design Tokens/Icon"
1022
1028
  },
1029
+ {
1030
+ "name": "InfiniteScrollIndicator",
1031
+ "category": "Feedback",
1032
+ "description": "InfiniteScrollIndicator Lightweight composition component for displaying loading states in infinite scroll contexts. Uses the Loader component for consistency. - For initial loading: Use component-specific Skeleton implementations - For loading-more: Use this component at the bottom of lists/tables By default, shows only a spinner (no text) to avoid internationalization concerns. Consuming applications can provide their own localized message via the `message` prop. Example usage: ```tsx // Default: spinner only (no i18n needed) <InfiniteScrollIndicator state=\"loading-more\" /> // With localized text <InfiniteScrollIndicator state=\"loading-more\" message={t('loading.loadMore')} /> ```",
1033
+ "importRoot": "@texturehq/edges",
1034
+ "importPath": "@texturehq/edges/components/InfiniteScrollIndicator",
1035
+ "props": [],
1036
+ "relatedComponents": [],
1037
+ "storybookPath": "Feedback/InfiniteScrollIndicator"
1038
+ },
1023
1039
  {
1024
1040
  "name": "InteractiveMap",
1025
1041
  "category": "Uncategorized",
@@ -1075,18 +1091,13 @@
1075
1091
  {
1076
1092
  "name": "List",
1077
1093
  "category": "Lists",
1078
- "description": "List A semantic wrapper and state manager for rows. Handles selection, hover, keyboard navigation, and accessibility. Composes with ListItem for visual rows. Example usage: ```tsx <List items={sites} selectedId={selectedSiteId} onSelect={(id) => openDetail(id)} onHoverChange={(id) => highlightOnMap(id)} renderItem={({ item, rowProps, isSelected }) => ( <ListItem id={item.id} title={item.name} subtitle={item.address?.city} isSelected={isSelected} {...rowProps} /> )} /> ```",
1094
+ "description": "List A semantic wrapper and state manager for rows. Handles selection, hover, keyboard navigation, accessibility, and infinite scroll with virtualization. Composes with ListItem for visual rows. Example usage: ```tsx <List items={sites} selectedId={selectedSiteId} onSelect={(id) => openDetail(id)} onHoverChange={(id) => highlightOnMap(id)} renderItem={({ item, rowProps, isSelected }) => ( <ListItem id={item.id} title={item.name} subtitle={item.address?.city} isSelected={isSelected} {...rowProps} /> )} // Optional: Custom loading skeleton matching your data structure renderLoadingSkeleton={() => ( <div className=\"flex items-center gap-3 px-4 py-3\"> <Skeleton width={40} height={40} variant=\"circle\" /> <div className=\"flex-1\"> <Skeleton width=\"60%\" height={16} /> <Skeleton width=\"40%\" height={12} /> </div> </div> )} loadingSkeletonCount={8} // Infinite scroll onLoadMore={loadMoreSites} hasMore={hasMoreSites} isLoading={isLoading} /> ```",
1079
1095
  "importRoot": "@texturehq/edges",
1080
1096
  "importPath": "@texturehq/edges/components/List",
1081
1097
  "props": [],
1082
1098
  "relatedComponents": [
1083
- "Button",
1084
1099
  "Icon",
1085
- "ListStoryContainer",
1086
- "StoryLayout",
1087
- "StoryTable",
1088
- "StoryTableCell",
1089
- "StoryTableRow"
1100
+ "Skeleton"
1090
1101
  ],
1091
1102
  "storybookPath": "Lists/List"
1092
1103
  },
@@ -1130,13 +1141,8 @@
1130
1141
  "importPath": "@texturehq/edges/components/ListItem",
1131
1142
  "props": [],
1132
1143
  "relatedComponents": [
1133
- "Button",
1134
1144
  "Icon",
1135
- "ListStoryContainer",
1136
- "StoryLayout",
1137
- "StoryTable",
1138
- "StoryTableCell",
1139
- "StoryTableRow"
1145
+ "Skeleton"
1140
1146
  ],
1141
1147
  "storybookPath": "Lists/ListItem"
1142
1148
  },
@@ -1148,13 +1154,8 @@
1148
1154
  "importPath": "@texturehq/edges/components/ListPane",
1149
1155
  "props": [],
1150
1156
  "relatedComponents": [
1151
- "Button",
1152
1157
  "Icon",
1153
- "ListStoryContainer",
1154
- "StoryLayout",
1155
- "StoryTable",
1156
- "StoryTableCell",
1157
- "StoryTableRow"
1158
+ "Skeleton"
1158
1159
  ],
1159
1160
  "storybookPath": "Lists/ListPane"
1160
1161
  },
@@ -2435,6 +2436,7 @@
2435
2436
  "Feedback": [
2436
2437
  "EmptyState",
2437
2438
  "ErrorBoundary",
2439
+ "InfiniteScrollIndicator",
2438
2440
  "Meter",
2439
2441
  "Notice",
2440
2442
  "NoticeContainer",