@movable/ui 1.3.0 → 1.3.1

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.
@@ -2,6 +2,10 @@
2
2
  export declare class InkDialogPageObject {
3
3
  BASE_ATTRIBUTE: string;
4
4
  get element(): Cypress.Chainable<JQuery<HTMLElement>>;
5
+ get paper(): Cypress.Chainable<JQuery<HTMLElement>>;
6
+ get primaryAction(): Cypress.Chainable<JQuery<HTMLElement>>;
7
+ get secondaryAction(): Cypress.Chainable<JQuery<HTMLElement>>;
8
+ get cancelAction(): Cypress.Chainable<JQuery<HTMLElement>>;
5
9
  get dialogTrigger(): Cypress.Chainable<JQuery<HTMLElement>>;
6
10
  get closeTrigger(): Cypress.Chainable<JQuery<HTMLElement>>;
7
11
  get title(): Cypress.Chainable<JQuery<HTMLElement>>;
@@ -9,6 +13,10 @@ export declare class InkDialogPageObject {
9
13
  isClosed(): void;
10
14
  openDialog(): void;
11
15
  closeDialog(): void;
16
+ hasPrimaryAction(label: string): void;
17
+ hasSecondaryAction(label: string): void;
18
+ hasCancelAction(label: string): void;
19
+ hasTitle(title: string): void;
12
20
  }
13
21
  declare const _default: InkDialogPageObject;
14
22
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
5
5
  "module": "lib/index.mjs",
6
6
  "types": "lib/index.d.ts",