@movable/ui 3.3.0 → 3.4.0-Claude.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.
- package/lib/index.d.ts +12 -0
- package/lib/index.mjs +1430 -1403
- package/lib/index.mjs.map +1 -1
- package/lib/page-objects/index.d.ts +1 -0
- package/package.json +10 -17
package/lib/index.d.ts
CHANGED
|
@@ -485,6 +485,18 @@ export declare function InkGridToolBar({ groupingProps, filterDrawerBtnProps, sh
|
|
|
485
485
|
|
|
486
486
|
export declare function InkImage({ src, alt, sx, imageSx, fallbackText, ...rest }: InkImageProps): JSX_2.Element;
|
|
487
487
|
|
|
488
|
+
export declare class InkImagePageObject {
|
|
489
|
+
baseSelector: string;
|
|
490
|
+
name: string;
|
|
491
|
+
static create(name: string): InkImagePageObject;
|
|
492
|
+
constructor(name: string);
|
|
493
|
+
get element(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
494
|
+
get successImage(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
495
|
+
get errorImage(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
496
|
+
hasSrc(src: string): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
497
|
+
isSuccessHidden(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
498
|
+
}
|
|
499
|
+
|
|
488
500
|
declare type InkImageProps = BoxProps_2 & {
|
|
489
501
|
src: string;
|
|
490
502
|
alt?: string;
|