@movable/ui 3.11.0 → 3.13.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.
@@ -5,6 +5,7 @@ type InkChipPropType = {
5
5
  size?: 'small' | 'medium';
6
6
  expandOnHover?: boolean;
7
7
  truncation?: 'end' | 'middle';
8
+ isLoading?: boolean;
8
9
  };
9
- export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, }: InkChipPropType): import("react/jsx-runtime").JSX.Element;
10
+ export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, isLoading, }: InkChipPropType): import("react/jsx-runtime").JSX.Element;
10
11
  export {};
package/lib/index.d.ts CHANGED
@@ -382,7 +382,7 @@ export declare type InkCheckboxGroupProps = {
382
382
  helperText?: string;
383
383
  };
384
384
 
385
- export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, }: InkChipPropType): JSX_2.Element;
385
+ export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, isLoading, }: InkChipPropType): JSX_2.Element;
386
386
 
387
387
  export declare function InkChipGroup({ chipList, numTagsToDisplay, size, maxChipWidth, }: InkChipGroupProps): JSX_2.Element;
388
388
 
@@ -399,6 +399,7 @@ declare type InkChipPropType = {
399
399
  size?: 'small' | 'medium';
400
400
  expandOnHover?: boolean;
401
401
  truncation?: 'end' | 'middle';
402
+ isLoading?: boolean;
402
403
  };
403
404
 
404
405
  /**