@actdim/dynstruct-mui 1.5.5 → 1.5.8
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/dist/Accordion.d.ts +24 -0
- package/dist/Accordion.d.ts.map +6 -0
- package/dist/Alert.d.ts +23 -0
- package/dist/Alert.d.ts.map +6 -0
- package/dist/Autocomplete.d.ts +31 -0
- package/dist/Autocomplete.d.ts.map +6 -0
- package/dist/Avatar.d.ts +23 -0
- package/dist/Avatar.d.ts.map +6 -0
- package/dist/Badge.d.ts +26 -0
- package/dist/Badge.d.ts.map +6 -0
- package/dist/Breadcrumbs.d.ts +27 -0
- package/dist/Breadcrumbs.d.ts.map +6 -0
- package/dist/Button.d.ts +28 -0
- package/dist/Button.d.ts.map +6 -0
- package/dist/Card.d.ts +26 -0
- package/dist/Card.d.ts.map +6 -0
- package/dist/Checkbox.d.ts +27 -0
- package/dist/Checkbox.d.ts.map +6 -0
- package/dist/Chip.d.ts +26 -0
- package/dist/Chip.d.ts.map +6 -0
- package/dist/CircularProgress.d.ts +24 -0
- package/dist/CircularProgress.d.ts.map +6 -0
- package/dist/Dialog.d.ts +27 -0
- package/dist/Dialog.d.ts.map +6 -0
- package/dist/Drawer.d.ts +24 -0
- package/dist/Drawer.d.ts.map +6 -0
- package/dist/Fab.d.ts +26 -0
- package/dist/Fab.d.ts.map +6 -0
- package/dist/IconButton.d.ts +26 -0
- package/dist/IconButton.d.ts.map +6 -0
- package/dist/LinearProgress.d.ts +23 -0
- package/dist/LinearProgress.d.ts.map +6 -0
- package/dist/List.d.ts +30 -0
- package/dist/List.d.ts.map +6 -0
- package/dist/Menu.d.ts +29 -0
- package/dist/Menu.d.ts.map +6 -0
- package/dist/Pagination.d.ts +26 -0
- package/dist/Pagination.d.ts.map +6 -0
- package/dist/RadioGroup.d.ts +32 -0
- package/dist/RadioGroup.d.ts.map +6 -0
- package/dist/Rating.d.ts +25 -0
- package/dist/Rating.d.ts.map +6 -0
- package/dist/Select.d.ts +33 -0
- package/dist/Select.d.ts.map +6 -0
- package/dist/Skeleton.d.ts +23 -0
- package/dist/Skeleton.d.ts.map +6 -0
- package/dist/Slider.d.ts +29 -0
- package/dist/Slider.d.ts.map +6 -0
- package/dist/Snackbar.d.ts +25 -0
- package/dist/Snackbar.d.ts.map +6 -0
- package/dist/SpeedDial.d.ts +29 -0
- package/dist/SpeedDial.d.ts.map +6 -0
- package/dist/Stepper.d.ts +28 -0
- package/dist/Stepper.d.ts.map +6 -0
- package/dist/Switch.d.ts +26 -0
- package/dist/Switch.d.ts.map +6 -0
- package/dist/Table.d.ts +29 -0
- package/dist/Table.d.ts.map +6 -0
- package/dist/Tabs.d.ts +30 -0
- package/dist/Tabs.d.ts.map +6 -0
- package/dist/TextField.d.ts +32 -0
- package/dist/TextField.d.ts.map +6 -0
- package/dist/Toast.d.ts +41 -0
- package/dist/Toast.d.ts.map +6 -0
- package/dist/Toast.es.js +135 -0
- package/dist/Toast.es.js.map +1 -0
- package/dist/ToggleButtonGroup.d.ts +33 -0
- package/dist/ToggleButtonGroup.d.ts.map +6 -0
- package/dist/Tooltip.d.ts +22 -0
- package/dist/Tooltip.d.ts.map +6 -0
- package/dist/index.d.ts +40 -0
- package/dist/index.d.ts.map +6 -0
- package/dist/index.es.js +3 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { AccordionProps as MuiAccordionProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
summary: React.ReactNode;
|
|
13
|
+
content: React.FC;
|
|
14
|
+
expanded?: boolean;
|
|
15
|
+
onChange?: (expanded: boolean) => void;
|
|
16
|
+
expandIcon?: React.ReactNode;
|
|
17
|
+
sx?: MuiAccordionProps['sx'];
|
|
18
|
+
};
|
|
19
|
+
}>;
|
|
20
|
+
export declare const useAccordion: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
21
|
+
export type AccordionStruct = Struct;
|
|
22
|
+
export declare const Accordion: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../src/Accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAIH,KAAK,cAAc,IAAI,iBAAiB,EAC3C,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;QAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;QACvC,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC7B,EAAE,CAAC,EAAE,iBAAiB,CAAC,IAAI,CAAC,CAAC;KAChC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAkC9E,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC,eAAO,MAAM,SAAS,qDAAwB,CAAC"}
|
package/dist/Alert.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { AlertProps as MuiAlertProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
message: string;
|
|
13
|
+
severity?: MuiAlertProps['severity'];
|
|
14
|
+
variant?: MuiAlertProps['variant'];
|
|
15
|
+
onClose?: () => void;
|
|
16
|
+
sx?: MuiAlertProps['sx'];
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useAlert: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
20
|
+
export type AlertStruct = Struct;
|
|
21
|
+
export declare const Alert: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=Alert.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../src/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAqB,KAAK,UAAU,IAAI,aAAa,EAAE,MAAM,eAAe,CAAC;AACpF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,CAAC,EAAE,aAAa,CAAC,UAAU,CAAC,CAAC;QACrC,OAAO,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;QACrB,EAAE,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;KAC5B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA4B1E,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,eAAO,MAAM,KAAK,qDAAoB,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { AutocompleteProps as MuiAutocompleteProps, TextFieldProps as MuiTextFieldProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
value: string | null;
|
|
13
|
+
onChange: (value: string | null) => void;
|
|
14
|
+
options: string[];
|
|
15
|
+
label?: string;
|
|
16
|
+
placeholder?: string;
|
|
17
|
+
helperText?: string;
|
|
18
|
+
error?: boolean;
|
|
19
|
+
loading?: boolean;
|
|
20
|
+
freeSolo?: boolean;
|
|
21
|
+
fullWidth?: boolean;
|
|
22
|
+
variant?: MuiTextFieldProps['variant'];
|
|
23
|
+
size?: MuiAutocompleteProps<string, false, false, false>['size'];
|
|
24
|
+
sx?: MuiAutocompleteProps<string, false, false, false>['sx'];
|
|
25
|
+
};
|
|
26
|
+
}>;
|
|
27
|
+
export declare const useAutocomplete: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
28
|
+
export type AutocompleteStruct = Struct;
|
|
29
|
+
export declare const Autocomplete: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
30
|
+
export {};
|
|
31
|
+
//# sourceMappingURL=Autocomplete.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../src/Autocomplete.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAGH,KAAK,iBAAiB,IAAI,oBAAoB,EAC9C,KAAK,cAAc,IAAI,iBAAiB,EAC3C,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;QACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;QACzC,OAAO,EAAE,MAAM,EAAE,CAAC;QAClB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,CAAC,EAAE,iBAAiB,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,CAAC,EAAE,oBAAoB,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;QACjE,EAAE,CAAC,EAAE,oBAAoB,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC;KAChE,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAkDjF,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC;AAExC,eAAO,MAAM,YAAY,qDAA2B,CAAC"}
|
package/dist/Avatar.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { AvatarProps as MuiAvatarProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
src?: string;
|
|
13
|
+
alt?: string;
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
variant?: MuiAvatarProps['variant'];
|
|
16
|
+
sx?: MuiAvatarProps['sx'];
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useAvatar: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
20
|
+
export type AvatarStruct = Struct;
|
|
21
|
+
export declare const Avatar: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=Avatar.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../src/Avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,KAAK,WAAW,IAAI,cAAc,EAAE,MAAM,eAAe,CAAC;AACxF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;QACpC,EAAE,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;KAC7B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAuB3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Badge.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { BadgeProps as MuiBadgeProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
children: React.FC;
|
|
13
|
+
badgeContent?: React.ReactNode;
|
|
14
|
+
color?: MuiBadgeProps['color'];
|
|
15
|
+
variant?: MuiBadgeProps['variant'];
|
|
16
|
+
max?: number;
|
|
17
|
+
invisible?: boolean;
|
|
18
|
+
anchorOrigin?: MuiBadgeProps['anchorOrigin'];
|
|
19
|
+
sx?: MuiBadgeProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useBadge: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type BadgeStruct = Struct;
|
|
24
|
+
export declare const Badge: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Badge.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../src/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAqB,KAAK,UAAU,IAAI,aAAa,EAAE,MAAM,eAAe,CAAC;AACpF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;QACnB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC/B,KAAK,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;QAC/B,OAAO,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;QACnC,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,YAAY,CAAC,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;QAC7C,EAAE,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;KAC5B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAkC1E,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,eAAO,MAAM,KAAK,qDAAoB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { BreadcrumbsProps as MuiBreadcrumbsProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type BreadcrumbItem = {
|
|
11
|
+
label: string;
|
|
12
|
+
href?: string;
|
|
13
|
+
onClick?: () => void;
|
|
14
|
+
};
|
|
15
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
16
|
+
props: {
|
|
17
|
+
items: BreadcrumbItem[];
|
|
18
|
+
separator?: React.ReactNode;
|
|
19
|
+
maxItems?: number;
|
|
20
|
+
sx?: MuiBreadcrumbsProps['sx'];
|
|
21
|
+
};
|
|
22
|
+
}>;
|
|
23
|
+
export declare const useBreadcrumbs: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
24
|
+
export type BreadcrumbsStruct = Struct;
|
|
25
|
+
export declare const Breadcrumbs: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
26
|
+
export {};
|
|
27
|
+
//# sourceMappingURL=Breadcrumbs.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../src/Breadcrumbs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAIH,KAAK,gBAAgB,IAAI,mBAAmB,EAC/C,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,MAAM,MAAM,cAAc,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,cAAc,EAAE,CAAC;QACxB,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC5B,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,EAAE,CAAC,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;KAClC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA4ChF,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC;AAEvC,eAAO,MAAM,WAAW,qDAA0B,CAAC"}
|
package/dist/Button.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { ButtonProps as MuiButtonProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
label: string;
|
|
13
|
+
onClick: () => void;
|
|
14
|
+
variant?: MuiButtonProps['variant'];
|
|
15
|
+
color?: MuiButtonProps['color'];
|
|
16
|
+
size?: MuiButtonProps['size'];
|
|
17
|
+
fullWidth?: boolean;
|
|
18
|
+
startIcon?: React.ReactNode;
|
|
19
|
+
endIcon?: React.ReactNode;
|
|
20
|
+
loading?: boolean;
|
|
21
|
+
sx?: MuiButtonProps['sx'];
|
|
22
|
+
};
|
|
23
|
+
}>;
|
|
24
|
+
export declare const useButton: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
25
|
+
export type ButtonStruct = Struct;
|
|
26
|
+
export declare const Button: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
27
|
+
export {};
|
|
28
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,KAAK,WAAW,IAAI,cAAc,EAAE,MAAM,eAAe,CAAC;AACxF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,IAAI,CAAC;QACpB,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;QACpC,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;QAC9B,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC5B,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,EAAE,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;KAC7B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAuC3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Card.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { CardProps as MuiCardProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
content: React.FC;
|
|
13
|
+
title?: React.ReactNode;
|
|
14
|
+
subheader?: React.ReactNode;
|
|
15
|
+
avatar?: React.ReactNode;
|
|
16
|
+
headerAction?: React.FC;
|
|
17
|
+
actions?: React.FC;
|
|
18
|
+
raised?: boolean;
|
|
19
|
+
sx?: MuiCardProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useCard: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type CardStruct = Struct;
|
|
24
|
+
export declare const Card: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Card.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,SAAS,IAAI,YAAY,EACjC,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;QAClB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACxB,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAC5B,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,YAAY,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;QACxB,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;QACnB,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,EAAE,CAAC,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;KAC3B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAyCzE,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,eAAO,MAAM,IAAI,qDAAmB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { CheckboxProps as MuiCheckboxProps, FormControlProps as MuiFormControlProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
checked: boolean;
|
|
13
|
+
onChange: (checked: boolean) => void;
|
|
14
|
+
label?: string;
|
|
15
|
+
helperText?: string;
|
|
16
|
+
error?: boolean;
|
|
17
|
+
color?: MuiCheckboxProps['color'];
|
|
18
|
+
size?: MuiCheckboxProps['size'];
|
|
19
|
+
indeterminate?: boolean;
|
|
20
|
+
sx?: MuiFormControlProps['sx'];
|
|
21
|
+
};
|
|
22
|
+
}>;
|
|
23
|
+
export declare const useCheckbox: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
24
|
+
export type CheckboxStruct = Struct;
|
|
25
|
+
export declare const Checkbox: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
26
|
+
export {};
|
|
27
|
+
//# sourceMappingURL=Checkbox.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,aAAa,IAAI,gBAAgB,EACtC,KAAK,gBAAgB,IAAI,mBAAmB,EAC/C,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,OAAO,CAAC;QACjB,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;QACrC,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,KAAK,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;QAClC,IAAI,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;QAChC,aAAa,CAAC,EAAE,OAAO,CAAC;QACxB,EAAE,CAAC,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;KAClC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA+C7E,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,eAAO,MAAM,QAAQ,qDAAuB,CAAC"}
|
package/dist/Chip.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { ChipProps as MuiChipProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
label: string;
|
|
13
|
+
onClick?: () => void;
|
|
14
|
+
onDelete?: () => void;
|
|
15
|
+
variant?: MuiChipProps['variant'];
|
|
16
|
+
color?: MuiChipProps['color'];
|
|
17
|
+
size?: MuiChipProps['size'];
|
|
18
|
+
icon?: React.ReactNode;
|
|
19
|
+
sx?: MuiChipProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useChip: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type ChipStruct = Struct;
|
|
24
|
+
export declare const Chip: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Chip.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["../src/Chip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAmB,KAAK,SAAS,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AAChF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;QACrB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;QACtB,OAAO,CAAC,EAAE,YAAY,CAAC,SAAS,CAAC,CAAC;QAClC,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;QAC9B,IAAI,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;QAC5B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACvB,EAAE,CAAC,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;KAC3B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAkCzE,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,eAAO,MAAM,IAAI,qDAAmB,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { CircularProgressProps as MuiCircularProgressProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
variant?: MuiCircularProgressProps['variant'];
|
|
13
|
+
value?: number;
|
|
14
|
+
color?: MuiCircularProgressProps['color'];
|
|
15
|
+
size?: number | string;
|
|
16
|
+
thickness?: number;
|
|
17
|
+
sx?: MuiCircularProgressProps['sx'];
|
|
18
|
+
};
|
|
19
|
+
}>;
|
|
20
|
+
export declare const useCircularProgress: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
21
|
+
export type CircularProgressStruct = Struct;
|
|
22
|
+
export declare const CircularProgress: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=CircularProgress.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"CircularProgress.d.ts","sourceRoot":"","sources":["../src/CircularProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEH,KAAK,qBAAqB,IAAI,wBAAwB,EACzD,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,CAAC,EAAE,wBAAwB,CAAC,SAAS,CAAC,CAAC;QAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,wBAAwB,CAAC,OAAO,CAAC,CAAC;QAC1C,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACvB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,EAAE,CAAC,EAAE,wBAAwB,CAAC,IAAI,CAAC,CAAC;KACvC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA6BrF,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC;AAE5C,eAAO,MAAM,gBAAgB,qDAA+B,CAAC"}
|
package/dist/Dialog.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { DialogProps as MuiDialogProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
open: boolean;
|
|
13
|
+
onClose: () => void;
|
|
14
|
+
title?: string;
|
|
15
|
+
content?: React.FC;
|
|
16
|
+
actions?: React.FC;
|
|
17
|
+
maxWidth?: MuiDialogProps['maxWidth'];
|
|
18
|
+
fullWidth?: boolean;
|
|
19
|
+
fullScreen?: boolean;
|
|
20
|
+
sx?: MuiDialogProps['sx'];
|
|
21
|
+
};
|
|
22
|
+
}>;
|
|
23
|
+
export declare const useDialog: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
24
|
+
export type DialogStruct = Struct;
|
|
25
|
+
export declare const Dialog: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
26
|
+
export {};
|
|
27
|
+
//# sourceMappingURL=Dialog.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,WAAW,IAAI,cAAc,EACrC,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,IAAI,EAAE,OAAO,CAAC;QACd,OAAO,EAAE,MAAM,IAAI,CAAC;QACpB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;QACnB,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;QACnB,QAAQ,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAC;QACtC,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,EAAE,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;KAC7B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA4C3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Drawer.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { DrawerProps as MuiDrawerProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
open: boolean;
|
|
13
|
+
onClose: () => void;
|
|
14
|
+
children: React.FC;
|
|
15
|
+
anchor?: MuiDrawerProps['anchor'];
|
|
16
|
+
variant?: MuiDrawerProps['variant'];
|
|
17
|
+
sx?: MuiDrawerProps['sx'];
|
|
18
|
+
};
|
|
19
|
+
}>;
|
|
20
|
+
export declare const useDrawer: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
21
|
+
export type DrawerStruct = Struct;
|
|
22
|
+
export declare const Drawer: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=Drawer.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Drawer.d.ts","sourceRoot":"","sources":["../src/Drawer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,KAAK,WAAW,IAAI,cAAc,EAAE,MAAM,eAAe,CAAC;AACxF,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,IAAI,EAAE,OAAO,CAAC;QACd,OAAO,EAAE,MAAM,IAAI,CAAC;QACpB,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;QACnB,MAAM,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;QAClC,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;QACpC,EAAE,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;KAC7B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA8B3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Fab.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { FabProps as MuiFabProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
icon: React.FC;
|
|
13
|
+
onClick: () => void;
|
|
14
|
+
ariaLabel: string;
|
|
15
|
+
color?: MuiFabProps['color'];
|
|
16
|
+
size?: MuiFabProps['size'];
|
|
17
|
+
variant?: MuiFabProps['variant'];
|
|
18
|
+
label?: string;
|
|
19
|
+
sx?: MuiFabProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useFab: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type FabStruct = Struct;
|
|
24
|
+
export declare const Fab: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Fab.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"Fab.d.ts","sourceRoot":"","sources":["../src/Fab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAiB,KAAK,QAAQ,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5E,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC;QACf,OAAO,EAAE,MAAM,IAAI,CAAC;QACpB,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;QAC3B,OAAO,CAAC,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;QACjC,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,EAAE,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;KAC1B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,MAAM,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAmCxE,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B,eAAO,MAAM,GAAG,qDAAkB,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { IconButtonProps as MuiIconButtonProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
onClick: () => void;
|
|
13
|
+
icon: React.ReactNode;
|
|
14
|
+
color?: MuiIconButtonProps['color'];
|
|
15
|
+
size?: MuiIconButtonProps['size'];
|
|
16
|
+
edge?: MuiIconButtonProps['edge'];
|
|
17
|
+
loading?: boolean;
|
|
18
|
+
'aria-label'?: string;
|
|
19
|
+
sx?: MuiIconButtonProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useIconButton: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type IconButtonStruct = Struct;
|
|
24
|
+
export declare const IconButton: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../src/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA+B,KAAK,eAAe,IAAI,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACxG,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,MAAM,IAAI,CAAC;QACpB,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;QACtB,KAAK,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC;QACpC,IAAI,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;QAClC,IAAI,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;QAClC,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,EAAE,CAAC,EAAE,kBAAkB,CAAC,IAAI,CAAC,CAAC;KACjC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAmC/E,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC,eAAO,MAAM,UAAU,qDAAyB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { LinearProgressProps as MuiLinearProgressProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
11
|
+
props: {
|
|
12
|
+
variant?: MuiLinearProgressProps['variant'];
|
|
13
|
+
value?: number;
|
|
14
|
+
valueBuffer?: number;
|
|
15
|
+
color?: MuiLinearProgressProps['color'];
|
|
16
|
+
sx?: MuiLinearProgressProps['sx'];
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useLinearProgress: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
20
|
+
export type LinearProgressStruct = Struct;
|
|
21
|
+
export declare const LinearProgress: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=LinearProgress.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"LinearProgress.d.ts","sourceRoot":"","sources":["../src/LinearProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEH,KAAK,mBAAmB,IAAI,sBAAsB,EACrD,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,CAAC,EAAE,sBAAsB,CAAC,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,KAAK,CAAC,EAAE,sBAAsB,CAAC,OAAO,CAAC,CAAC;QACxC,EAAE,CAAC,EAAE,sBAAsB,CAAC,IAAI,CAAC,CAAC;KACrC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA2BnF,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC;AAE1C,eAAO,MAAM,cAAc,qDAA6B,CAAC"}
|
package/dist/List.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { ListProps as MuiListProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type ListItemDef = {
|
|
11
|
+
primary: React.ReactNode;
|
|
12
|
+
secondary?: React.ReactNode;
|
|
13
|
+
icon?: React.FC;
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
divider?: boolean;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
};
|
|
18
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
19
|
+
props: {
|
|
20
|
+
items: ListItemDef[];
|
|
21
|
+
dense?: boolean;
|
|
22
|
+
disablePadding?: boolean;
|
|
23
|
+
sx?: MuiListProps['sx'];
|
|
24
|
+
};
|
|
25
|
+
}>;
|
|
26
|
+
export declare const useList: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
27
|
+
export type ListStruct = Struct;
|
|
28
|
+
export declare const List: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=List.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* @see {@link ../AGENTS.md} AI Agent Guidelines (https://github.com/actdim/dynstruct-mui)
|
|
4
|
+
* @see {@link ../llms.txt} LLM Summary
|
|
5
|
+
*/
|
|
6
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../src/List.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAOH,KAAK,SAAS,IAAI,YAAY,EACjC,MAAM,eAAe,CAAC;AACvB,OAAO,EACH,KAAK,eAAe,EAEpB,KAAK,eAAe,EACpB,KAAK,SAAS,EAEjB,MAAM,4CAA4C,CAAC;AAEpD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,MAAM,MAAM,WAAW,GAAG;IACtB,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC5B,IAAI,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,WAAW,EAAE,CAAC;QACrB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,EAAE,CAAC,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;KAC3B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA8CzE,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,eAAO,MAAM,IAAI,qDAAmB,CAAC"}
|