@orangelogic/design-system 2.19.0-pr77234.3 → 2.19.0-pr77248.4
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/library/package.json
CHANGED
|
@@ -164,16 +164,9 @@ export default class CxPopup extends CortexElement {
|
|
|
164
164
|
* make the popup half the width of the available space.
|
|
165
165
|
*/
|
|
166
166
|
autoWidthFactor: number;
|
|
167
|
-
/**
|
|
168
|
-
* After `active` changes, cx-overlay takes some time to open.
|
|
169
|
-
* Until then, the positioning is not accurate, so we use this
|
|
170
|
-
* state to hide the popup until the overlay is opened.
|
|
171
|
-
* (Only for fixed strategy)
|
|
172
|
-
*/
|
|
173
|
-
overlayOpened: boolean;
|
|
174
167
|
private get isSizeMiddleWareUsed();
|
|
175
168
|
disconnectedCallback(): void;
|
|
176
|
-
protected runFirstUpdated(): void
|
|
169
|
+
protected runFirstUpdated(): Promise<void>;
|
|
177
170
|
updated(changedProps: Map<string, unknown>): Promise<void>;
|
|
178
171
|
private handleAnchorChange;
|
|
179
172
|
private handleOverlayOpened;
|
|
@@ -35,6 +35,14 @@ export declare class FetchImageController implements ReactiveController {
|
|
|
35
35
|
page: number;
|
|
36
36
|
pageSize?: number;
|
|
37
37
|
}): Promise<ExtendedGalleryItem[]>;
|
|
38
|
+
fetchImagesInFolderByChunk({ chunkSize, end, extraFields, folderId, forceRefetch, start, }: {
|
|
39
|
+
chunkSize?: number;
|
|
40
|
+
end?: number;
|
|
41
|
+
extraFields?: string[];
|
|
42
|
+
folderId: string;
|
|
43
|
+
forceRefetch?: boolean;
|
|
44
|
+
start?: number;
|
|
45
|
+
}): AsyncGenerator<ExtendedGalleryItem[], void, unknown>;
|
|
38
46
|
hostConnected?(): void;
|
|
39
47
|
hostDisconnected?(): void;
|
|
40
48
|
}
|