@meshmakers/octo-ui 3.3.950 → 3.3.970
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/package.json
CHANGED
|
@@ -153,6 +153,12 @@ interface AttributeSortSelectorDialogData {
|
|
|
153
153
|
hideNavigationControls?: boolean;
|
|
154
154
|
/** When set, restricts the available attributes to only these attribute paths (filtered client-side after fetching) */
|
|
155
155
|
attributePaths?: string[];
|
|
156
|
+
/**
|
|
157
|
+
* Virtual attributes appended to the available list — useful for stream-data fields
|
|
158
|
+
* like `timestamp` that aren't part of the CK type's attribute graph but are sortable
|
|
159
|
+
* on the per-archive CrateDB table. Bypasses the `attributePaths` restriction.
|
|
160
|
+
*/
|
|
161
|
+
additionalAttributes?: AttributeItem[];
|
|
156
162
|
}
|
|
157
163
|
interface AttributeSortSelectorDialogResult {
|
|
158
164
|
selectedAttributes: AttributeSortItem[];
|
|
@@ -228,7 +234,7 @@ declare class AttributeSortSelectorDialogService {
|
|
|
228
234
|
* @param hideNavigationControls Optional flag to hide the navigation property controls
|
|
229
235
|
* @returns Promise that resolves with the result containing selected attributes with sort orders and confirmation status
|
|
230
236
|
*/
|
|
231
|
-
openAttributeSortSelector(ckTypeId: string, selectedAttributes?: AttributeSortItem[], dialogTitle?: string, includeNavigationProperties?: boolean, hideNavigationControls?: boolean, attributePaths?: string[]): Promise<AttributeSortSelectorResult>;
|
|
237
|
+
openAttributeSortSelector(ckTypeId: string, selectedAttributes?: AttributeSortItem[], dialogTitle?: string, includeNavigationProperties?: boolean, hideNavigationControls?: boolean, attributePaths?: string[], additionalAttributes?: AttributeItem[]): Promise<AttributeSortSelectorResult>;
|
|
232
238
|
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeSortSelectorDialogService, never>;
|
|
233
239
|
static ɵprov: i0.ɵɵInjectableDeclaration<AttributeSortSelectorDialogService>;
|
|
234
240
|
}
|