@salesforce/ui-bundle-features 11.68.0 → 11.68.2
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/features.json +0 -72
- package/package.json +1 -1
package/dist/features.json
CHANGED
|
@@ -220,78 +220,6 @@
|
|
|
220
220
|
],
|
|
221
221
|
"components": []
|
|
222
222
|
},
|
|
223
|
-
"object-search": {
|
|
224
|
-
"name": "Object Search",
|
|
225
|
-
"package": "@salesforce/ui-bundle-template-feature-object-search",
|
|
226
|
-
"shortDescription": "Configurable object search and detail pages with filtering, sorting, pagination, and GraphQL-powered queries",
|
|
227
|
-
"longDescription": "Configurable object search feature with filtering, sorting, pagination, and detail views powered by Salesforce GraphQL APIs. Provides a generic search service layer, reusable filter components (text, picklist, multi-select, numeric range, date, date range, boolean, search), sort controls, cursor-based pagination with configurable page size, and URL-synced search parameters. Includes an Account-based example implementation demonstrating search list pages, detail pages with collapsible sections, breadcrumb navigation, and dynamic picklist option fetching via aggregate groupBy queries. The filter system is configuration-driven — adding a new filterable field requires only a config entry, no component changes.",
|
|
228
|
-
"keywords": [
|
|
229
|
-
"search",
|
|
230
|
-
"filter",
|
|
231
|
-
"sort",
|
|
232
|
-
"object detail",
|
|
233
|
-
"GraphQL",
|
|
234
|
-
"pagination",
|
|
235
|
-
"account",
|
|
236
|
-
"picklist",
|
|
237
|
-
"date filter",
|
|
238
|
-
"numeric filter"
|
|
239
|
-
],
|
|
240
|
-
"featureDependencies": [],
|
|
241
|
-
"packageDependencies": {
|
|
242
|
-
"@salesforce/platform-sdk": "^4.0.0",
|
|
243
|
-
"@salesforce/ui-bundle": "^4.0.0",
|
|
244
|
-
"react-day-picker": "^9.14.0"
|
|
245
|
-
},
|
|
246
|
-
"copy": [
|
|
247
|
-
{
|
|
248
|
-
"from": "force-app/main/default/uiBundles/feature-object-search/src/features/object-search",
|
|
249
|
-
"to": "<uiBundleDir>/src/features/object-search",
|
|
250
|
-
"description": "Generic object search components, hooks, filter panel, sort controls, and utilities"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"from": "force-app/main/default/uiBundles/feature-object-search/src/routes.tsx",
|
|
254
|
-
"to": "<uiBundleDir>/src/features/object-search/__examples__/object-search-routes.tsx",
|
|
255
|
-
"description": "Example showing how to add object search and detail routes",
|
|
256
|
-
"integrationTarget": "src/routes.tsx"
|
|
257
|
-
}
|
|
258
|
-
],
|
|
259
|
-
"features": [
|
|
260
|
-
"GraphQL-powered object search with configurable filters and sorting",
|
|
261
|
-
"Configuration-driven filter system — add fields via config, no component changes needed",
|
|
262
|
-
"Filter types: text, picklist, multi-select, numeric range, date, date range, boolean, search",
|
|
263
|
-
"Dynamic picklist options via aggregate groupBy queries",
|
|
264
|
-
"URL-synced search parameters for bookmarkable/shareable searches",
|
|
265
|
-
"Cursor-based pagination with configurable page size",
|
|
266
|
-
"Reusable search service layer for any Salesforce object",
|
|
267
|
-
"Record detail page with collapsible field sections",
|
|
268
|
-
"Breadcrumb navigation between list and detail views",
|
|
269
|
-
"Debounced text search input",
|
|
270
|
-
"Active filter chips with individual removal"
|
|
271
|
-
],
|
|
272
|
-
"components": [
|
|
273
|
-
"ObjectSearchBar - Search input bar for quick keyword search with navigation",
|
|
274
|
-
"PaginationControls - Pagination with page navigation and configurable page size",
|
|
275
|
-
"FilterPanel - Sidebar panel rendering filter controls from config",
|
|
276
|
-
"ActiveFilters - Chip display of active filters with removal buttons",
|
|
277
|
-
"SortControl - Dropdown for selecting sort field and direction",
|
|
278
|
-
"TextFilter - Text input filter with debounced updates",
|
|
279
|
-
"SelectFilter - Single-select picklist filter",
|
|
280
|
-
"MultiSelectFilter - Multi-select picklist filter with checkboxes",
|
|
281
|
-
"NumericRangeFilter - Min/max numeric range filter",
|
|
282
|
-
"DateFilter - Single date filter with calendar picker",
|
|
283
|
-
"DateRangeFilter - Date range filter with start/end pickers",
|
|
284
|
-
"BooleanFilter - Boolean toggle filter",
|
|
285
|
-
"SearchFilter - Multi-field keyword search filter",
|
|
286
|
-
"ObjectBreadcrumb - Breadcrumb navigation for list/detail pages",
|
|
287
|
-
"useObjectSearchParams - Hook for URL-synced filter, sort, and pagination state",
|
|
288
|
-
"useAsyncData - Hook for async data fetching with loading/error states",
|
|
289
|
-
"objectSearchService - Generic GraphQL search and distinct value fetching",
|
|
290
|
-
"fieldUtils - Field value extraction, address formatting, and date/time formatting",
|
|
291
|
-
"filterUtils - URL serialization and GraphQL filter building for all filter types",
|
|
292
|
-
"sortUtils - GraphQL sort order building"
|
|
293
|
-
]
|
|
294
|
-
},
|
|
295
223
|
"search": {
|
|
296
224
|
"name": "Search (Beta)",
|
|
297
225
|
"package": "@salesforce/ui-bundle-template-feature-react-search",
|
package/package.json
CHANGED