@movable/ui 3.2.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.
@@ -4,9 +4,14 @@ export interface InkDataGridProps extends DataGridPremiumProps {
4
4
  * Test selector for automated testing
5
5
  */
6
6
  testSelector?: string;
7
+ /**
8
+ * If true, the column reordering feature is disabled
9
+ * @default true
10
+ */
11
+ disableColumnReorder?: boolean;
7
12
  }
8
13
  /**
9
14
  * InkDataGrid is a customized DataGridPremium component with Movable Ink styling and behavior.
10
15
  * It provides automatic height adjustment, hidden column separators, and transparent row hover effects.
11
16
  */
12
- export declare function InkDataGrid({ testSelector, sx, rows, ...rest }: InkDataGridProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function InkDataGrid({ testSelector, disableColumnReorder, sx, rows, ...rest }: InkDataGridProps): import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -378,7 +378,7 @@ declare type InkChipPropType = {
378
378
  * InkDataGrid is a customized DataGridPremium component with Movable Ink styling and behavior.
379
379
  * It provides automatic height adjustment, hidden column separators, and transparent row hover effects.
380
380
  */
381
- export declare function InkDataGrid({ testSelector, sx, rows, ...rest }: InkDataGridProps): JSX_2.Element;
381
+ export declare function InkDataGrid({ testSelector, disableColumnReorder, sx, rows, ...rest }: InkDataGridProps): JSX_2.Element;
382
382
 
383
383
  /**
384
384
  * InkDataGridEmpty displays an empty state grid with skeleton rows.
@@ -402,6 +402,11 @@ export declare interface InkDataGridProps extends DataGridPremiumProps {
402
402
  * Test selector for automated testing
403
403
  */
404
404
  testSelector?: string;
405
+ /**
406
+ * If true, the column reordering feature is disabled
407
+ * @default true
408
+ */
409
+ disableColumnReorder?: boolean;
405
410
  }
406
411
 
407
412
  export declare function InkDialog({ Title, Content, Actions, onClose, hideCloseButton, ActionsProp, ...props }: InkDialogProps): JSX_2.Element;
@@ -480,6 +485,18 @@ export declare function InkGridToolBar({ groupingProps, filterDrawerBtnProps, sh
480
485
 
481
486
  export declare function InkImage({ src, alt, sx, imageSx, fallbackText, ...rest }: InkImageProps): JSX_2.Element;
482
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
+
483
500
  declare type InkImageProps = BoxProps_2 & {
484
501
  src: string;
485
502
  alt?: string;