@movable/ui 1.17.0-alpha.0 → 1.17.0-alpha.2
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 +5 -5
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -141,7 +141,7 @@ export declare class InkDialogPageObject {
|
|
|
141
141
|
hasTitle(title: string): void;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
declare type InkDialogProps = DialogProps & {
|
|
144
|
+
export declare type InkDialogProps = DialogProps & {
|
|
145
145
|
Title?: string | JSX.Element;
|
|
146
146
|
Content?: JSX.Element;
|
|
147
147
|
Actions?: JSX.Element;
|
|
@@ -175,7 +175,7 @@ declare type InkPageHeaderProps = {
|
|
|
175
175
|
|
|
176
176
|
export declare function InkPaper({ Header, Description, Icon, CTA, children, ...props }: InkPaperProps): JSX_2.Element;
|
|
177
177
|
|
|
178
|
-
declare type InkPaperProps = PaperProps & {
|
|
178
|
+
export declare type InkPaperProps = PaperProps & {
|
|
179
179
|
Header: string | JSX.Element;
|
|
180
180
|
Description?: string;
|
|
181
181
|
Icon?: JSX.Element;
|
|
@@ -187,7 +187,7 @@ export declare function InkPersistentFilterDrawer({ isOpen, handleDrawerClose, c
|
|
|
187
187
|
|
|
188
188
|
export declare const InkRadioTiles: ({ name, options, value, ref, direction, cardSx, fullWidth, disabled, onChange, onBlur, }: InkRadioTilesProps) => JSX_2.Element;
|
|
189
189
|
|
|
190
|
-
declare type InkRadioTilesProps = {
|
|
190
|
+
export declare type InkRadioTilesProps = {
|
|
191
191
|
name: string;
|
|
192
192
|
options: Option_2[];
|
|
193
193
|
onChange: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
@@ -247,7 +247,7 @@ export declare function InkToggleIcon({ value, size, ariaLabel, icon, ...rest }:
|
|
|
247
247
|
|
|
248
248
|
export declare function InkToggleIconGroup({ id, toggleButtons, ariaLabel, size, single, value, onChange, sx, ...rest }: InkToggleIconGroupProps): JSX_2.Element;
|
|
249
249
|
|
|
250
|
-
declare type InkToggleIconGroupProps = ToggleButtonGroupProps & {
|
|
250
|
+
export declare type InkToggleIconGroupProps = ToggleButtonGroupProps & {
|
|
251
251
|
id: string;
|
|
252
252
|
toggleButtons: {
|
|
253
253
|
value: string | number;
|
|
@@ -304,7 +304,7 @@ declare type LayoutDetailsProps = GridProps & {
|
|
|
304
304
|
|
|
305
305
|
export declare function LinkBreadcrumbs({ breadcrumbs }: BreadcrumbProps): JSX_2.Element;
|
|
306
306
|
|
|
307
|
-
declare type MenuOption = MenuItemProps & {
|
|
307
|
+
export declare type MenuOption = MenuItemProps & {
|
|
308
308
|
label: string;
|
|
309
309
|
group?: string;
|
|
310
310
|
};
|
package/package.json
CHANGED