@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
package/dist/Menu.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
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 { MenuProps as MuiMenuProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type MenuItemDef = {
|
|
11
|
+
label: string;
|
|
12
|
+
onClick?: () => void;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
divider?: boolean;
|
|
15
|
+
};
|
|
16
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
17
|
+
props: {
|
|
18
|
+
open: boolean;
|
|
19
|
+
onClose: () => void;
|
|
20
|
+
items: MenuItemDef[];
|
|
21
|
+
anchorEl?: HTMLElement | null;
|
|
22
|
+
sx?: MuiMenuProps['sx'];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
export declare const useMenu: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
26
|
+
export type MenuStruct = Struct;
|
|
27
|
+
export declare const Menu: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
28
|
+
export {};
|
|
29
|
+
//# sourceMappingURL=Menu.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":"Menu.d.ts","sourceRoot":"","sources":["../src/Menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAIH,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,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,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,EAAE,WAAW,EAAE,CAAC;QACrB,QAAQ,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;QAC9B,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,CAsCzE,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,eAAO,MAAM,IAAI,qDAAmB,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 { PaginationProps as MuiPaginationProps } 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
|
+
count: number;
|
|
13
|
+
page: number;
|
|
14
|
+
onChange: (page: number) => void;
|
|
15
|
+
size?: MuiPaginationProps['size'];
|
|
16
|
+
color?: MuiPaginationProps['color'];
|
|
17
|
+
shape?: MuiPaginationProps['shape'];
|
|
18
|
+
variant?: MuiPaginationProps['variant'];
|
|
19
|
+
sx?: MuiPaginationProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const usePagination: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type PaginationStruct = Struct;
|
|
24
|
+
export declare const Pagination: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Pagination.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":"Pagination.d.ts","sourceRoot":"","sources":["../src/Pagination.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,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;QACjC,IAAI,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;QAClC,KAAK,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC;QACpC,KAAK,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC;QACpC,OAAO,CAAC,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;QACxC,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,CAkC/E,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC,eAAO,MAAM,UAAU,qDAAyB,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { RadioProps as MuiRadioProps, 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
|
+
export type RadioOption = {
|
|
11
|
+
value: string;
|
|
12
|
+
label: string;
|
|
13
|
+
};
|
|
14
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
15
|
+
props: {
|
|
16
|
+
value: string;
|
|
17
|
+
onChange: (value: string) => void;
|
|
18
|
+
options: RadioOption[];
|
|
19
|
+
label?: string;
|
|
20
|
+
helperText?: string;
|
|
21
|
+
error?: boolean;
|
|
22
|
+
row?: boolean;
|
|
23
|
+
color?: MuiRadioProps['color'];
|
|
24
|
+
size?: MuiRadioProps['size'];
|
|
25
|
+
sx?: MuiFormControlProps['sx'];
|
|
26
|
+
};
|
|
27
|
+
}>;
|
|
28
|
+
export declare const useRadioGroup: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
29
|
+
export type RadioGroupStruct = Struct;
|
|
30
|
+
export declare const RadioGroup: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
31
|
+
export {};
|
|
32
|
+
//# sourceMappingURL=RadioGroup.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":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAOH,KAAK,UAAU,IAAI,aAAa,EAChC,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,WAAW,GAAG;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAClC,OAAO,EAAE,WAAW,EAAE,CAAC;QACvB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,GAAG,CAAC,EAAE,OAAO,CAAC;QACd,KAAK,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;QAC/B,IAAI,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;QAC7B,EAAE,CAAC,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;KAClC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAgD/E,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC,eAAO,MAAM,UAAU,qDAAyB,CAAC"}
|
package/dist/Rating.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
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 { RatingProps as MuiRatingProps } 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: number | null;
|
|
13
|
+
onChange?: (value: number | null) => void;
|
|
14
|
+
max?: number;
|
|
15
|
+
precision?: number;
|
|
16
|
+
size?: MuiRatingProps['size'];
|
|
17
|
+
readOnly?: boolean;
|
|
18
|
+
sx?: MuiRatingProps['sx'];
|
|
19
|
+
};
|
|
20
|
+
}>;
|
|
21
|
+
export declare const useRating: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
22
|
+
export type RatingStruct = Struct;
|
|
23
|
+
export declare const Rating: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
24
|
+
export {};
|
|
25
|
+
//# sourceMappingURL=Rating.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":"Rating.d.ts","sourceRoot":"","sources":["../src/Rating.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,GAAG,IAAI,CAAC;QACrB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;QAC1C,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;QAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,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,CAgC3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Select.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
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 { SelectProps as MuiSelectProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type SelectOption = {
|
|
11
|
+
value: string;
|
|
12
|
+
label: string;
|
|
13
|
+
};
|
|
14
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
15
|
+
props: {
|
|
16
|
+
value: string;
|
|
17
|
+
onChange: (value: string) => void;
|
|
18
|
+
options: SelectOption[];
|
|
19
|
+
label?: string;
|
|
20
|
+
helperText?: string;
|
|
21
|
+
error?: boolean;
|
|
22
|
+
fullWidth?: boolean;
|
|
23
|
+
variant?: MuiSelectProps['variant'];
|
|
24
|
+
size?: MuiSelectProps['size'];
|
|
25
|
+
color?: MuiSelectProps['color'];
|
|
26
|
+
sx?: MuiSelectProps['sx'];
|
|
27
|
+
};
|
|
28
|
+
}>;
|
|
29
|
+
export declare const useSelect: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
30
|
+
export type SelectStruct = Struct;
|
|
31
|
+
export declare const Select: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
32
|
+
export {};
|
|
33
|
+
//# sourceMappingURL=Select.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":"Select.d.ts","sourceRoot":"","sources":["../src/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAMH,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,MAAM,MAAM,YAAY,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAClC,OAAO,EAAE,YAAY,EAAE,CAAC;QACxB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;QACpC,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;QAC9B,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QAChC,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,CAsD3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,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 { SkeletonProps as MuiSkeletonProps } 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?: MuiSkeletonProps['variant'];
|
|
13
|
+
width?: number | string;
|
|
14
|
+
height?: number | string;
|
|
15
|
+
animation?: MuiSkeletonProps['animation'];
|
|
16
|
+
sx?: MuiSkeletonProps['sx'];
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useSkeleton: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
20
|
+
export type SkeletonStruct = Struct;
|
|
21
|
+
export declare const Skeleton: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=Skeleton.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":"Skeleton.d.ts","sourceRoot":"","sources":["../src/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA2B,KAAK,aAAa,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAChG,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,gBAAgB,CAAC,SAAS,CAAC,CAAC;QACtC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACxB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACzB,SAAS,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAC,CAAC;QAC1C,EAAE,CAAC,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;KAC/B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA2B7E,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,eAAO,MAAM,QAAQ,qDAAuB,CAAC"}
|
package/dist/Slider.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
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 { SliderProps as MuiSliderProps } 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: number;
|
|
13
|
+
onChange: (value: number) => void;
|
|
14
|
+
min?: number;
|
|
15
|
+
max?: number;
|
|
16
|
+
step?: number;
|
|
17
|
+
marks?: boolean;
|
|
18
|
+
color?: MuiSliderProps['color'];
|
|
19
|
+
size?: MuiSliderProps['size'];
|
|
20
|
+
valueLabelDisplay?: MuiSliderProps['valueLabelDisplay'];
|
|
21
|
+
track?: MuiSliderProps['track'];
|
|
22
|
+
sx?: MuiSliderProps['sx'];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
export declare const useSlider: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
26
|
+
export type SliderStruct = Struct;
|
|
27
|
+
export declare const Slider: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
28
|
+
export {};
|
|
29
|
+
//# sourceMappingURL=Slider.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":"Slider.d.ts","sourceRoot":"","sources":["../src/Slider.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,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAClC,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;QAC9B,iBAAiB,CAAC,EAAE,cAAc,CAAC,mBAAmB,CAAC,CAAC;QACxD,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QAChC,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,CAwC3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { SnackbarProps as MuiSnackbarProps } 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
|
+
message: string;
|
|
15
|
+
autoHideDuration?: number | null;
|
|
16
|
+
anchorOrigin?: MuiSnackbarProps['anchorOrigin'];
|
|
17
|
+
action?: React.ReactNode;
|
|
18
|
+
sx?: MuiSnackbarProps['sx'];
|
|
19
|
+
};
|
|
20
|
+
}>;
|
|
21
|
+
export declare const useSnackbar: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
22
|
+
export type SnackbarStruct = Struct;
|
|
23
|
+
export declare const Snackbar: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
24
|
+
export {};
|
|
25
|
+
//# sourceMappingURL=Snackbar.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":"Snackbar.d.ts","sourceRoot":"","sources":["../src/Snackbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEH,KAAK,aAAa,IAAI,gBAAgB,EACzC,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,OAAO,EAAE,MAAM,CAAC;QAChB,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QACjC,YAAY,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC,CAAC;QAChD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,EAAE,CAAC,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;KAC/B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA+B7E,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,eAAO,MAAM,QAAQ,qDAAuB,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { SpeedDialProps as MuiSpeedDialProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type SpeedDialActionDef = {
|
|
11
|
+
name: string;
|
|
12
|
+
icon: React.FC;
|
|
13
|
+
onClick?: () => void;
|
|
14
|
+
};
|
|
15
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
16
|
+
props: {
|
|
17
|
+
ariaLabel: string;
|
|
18
|
+
actions: SpeedDialActionDef[];
|
|
19
|
+
icon?: React.FC;
|
|
20
|
+
direction?: MuiSpeedDialProps['direction'];
|
|
21
|
+
hidden?: boolean;
|
|
22
|
+
sx?: MuiSpeedDialProps['sx'];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
export declare const useSpeedDial: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
26
|
+
export type SpeedDialStruct = Struct;
|
|
27
|
+
export declare const SpeedDial: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
28
|
+
export {};
|
|
29
|
+
//# sourceMappingURL=SpeedDial.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":"SpeedDial.d.ts","sourceRoot":"","sources":["../src/SpeedDial.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,MAAM,MAAM,kBAAkB,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC;IACf,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,SAAS,EAAE,MAAM,CAAC;QAClB,OAAO,EAAE,kBAAkB,EAAE,CAAC;QAC9B,IAAI,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;QAChB,SAAS,CAAC,EAAE,iBAAiB,CAAC,WAAW,CAAC,CAAC;QAC3C,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,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,CAqC9E,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC,eAAO,MAAM,SAAS,qDAAwB,CAAC"}
|
|
@@ -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 { StepperProps as MuiStepperProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type StepDef = {
|
|
11
|
+
label: string;
|
|
12
|
+
optional?: string;
|
|
13
|
+
};
|
|
14
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
15
|
+
props: {
|
|
16
|
+
activeStep: number;
|
|
17
|
+
steps: StepDef[];
|
|
18
|
+
orientation?: MuiStepperProps['orientation'];
|
|
19
|
+
alternativeLabel?: boolean;
|
|
20
|
+
nonLinear?: boolean;
|
|
21
|
+
sx?: MuiStepperProps['sx'];
|
|
22
|
+
};
|
|
23
|
+
}>;
|
|
24
|
+
export declare const useStepper: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
25
|
+
export type StepperStruct = Struct;
|
|
26
|
+
export declare const Stepper: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
27
|
+
export {};
|
|
28
|
+
//# sourceMappingURL=Stepper.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":"Stepper.d.ts","sourceRoot":"","sources":["../src/Stepper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,YAAY,IAAI,eAAe,EACvC,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,OAAO,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,UAAU,EAAE,MAAM,CAAC;QACnB,KAAK,EAAE,OAAO,EAAE,CAAC;QACjB,WAAW,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QAC7C,gBAAgB,CAAC,EAAE,OAAO,CAAC;QAC3B,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,EAAE,CAAC,EAAE,eAAe,CAAC,IAAI,CAAC,CAAC;KAC9B,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA0C5E,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC;AAEnC,eAAO,MAAM,OAAO,qDAAsB,CAAC"}
|
package/dist/Switch.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 { SwitchProps as MuiSwitchProps, 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?: MuiSwitchProps['color'];
|
|
18
|
+
size?: MuiSwitchProps['size'];
|
|
19
|
+
sx?: MuiFormControlProps['sx'];
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const useSwitch: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
23
|
+
export type SwitchStruct = Struct;
|
|
24
|
+
export declare const Switch: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=Switch.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":"Switch.d.ts","sourceRoot":"","sources":["../src/Switch.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,WAAW,IAAI,cAAc,EAClC,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,cAAc,CAAC,OAAO,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;QAC9B,EAAE,CAAC,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;KAClC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA6C3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,eAAO,MAAM,MAAM,qDAAqB,CAAC"}
|
package/dist/Table.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
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 { TableProps as MuiTableProps, TableContainerProps as MuiTableContainerProps, TableCellProps as MuiTableCellProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type TableColumn = {
|
|
11
|
+
id: string;
|
|
12
|
+
label: string;
|
|
13
|
+
align?: MuiTableCellProps['align'];
|
|
14
|
+
minWidth?: number;
|
|
15
|
+
};
|
|
16
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
17
|
+
props: {
|
|
18
|
+
columns: TableColumn[];
|
|
19
|
+
rows: Record<string, React.ReactNode>[];
|
|
20
|
+
stickyHeader?: boolean;
|
|
21
|
+
size?: MuiTableProps['size'];
|
|
22
|
+
sx?: MuiTableContainerProps['sx'];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
export declare const useTable: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
26
|
+
export type TableStruct = Struct;
|
|
27
|
+
export declare const Table: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
28
|
+
export {};
|
|
29
|
+
//# sourceMappingURL=Table.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":"Table.d.ts","sourceRoot":"","sources":["../src/Table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAQH,KAAK,UAAU,IAAI,aAAa,EAChC,KAAK,mBAAmB,IAAI,sBAAsB,EAClD,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,MAAM,MAAM,WAAW,GAAG;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QACH,OAAO,EAAE,WAAW,EAAE,CAAC;QACvB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;QACxC,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,IAAI,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;QAC7B,EAAE,CAAC,EAAE,sBAAsB,CAAC,IAAI,CAAC,CAAC;KACrC,CAAC;CACL,CACJ,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CAgD1E,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,eAAO,MAAM,KAAK,qDAAoB,CAAC"}
|
package/dist/Tabs.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 { TabsProps as MuiTabsProps } from '@mui/material';
|
|
8
|
+
import { ComponentStruct, ComponentParams, Component } from '@actdim/dynstruct/componentModel/contracts';
|
|
9
|
+
import { BaseAppMsgStruct } from '@actdim/dynstruct/appDomain/appContracts';
|
|
10
|
+
export type TabItem = {
|
|
11
|
+
value: string;
|
|
12
|
+
label: string;
|
|
13
|
+
content?: React.FC;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
};
|
|
16
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
17
|
+
props: {
|
|
18
|
+
value: string;
|
|
19
|
+
onChange: (value: string) => void;
|
|
20
|
+
tabs: TabItem[];
|
|
21
|
+
orientation?: MuiTabsProps['orientation'];
|
|
22
|
+
variant?: MuiTabsProps['variant'];
|
|
23
|
+
sx?: MuiTabsProps['sx'];
|
|
24
|
+
};
|
|
25
|
+
}>;
|
|
26
|
+
export declare const useTabs: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
27
|
+
export type TabsStruct = Struct;
|
|
28
|
+
export declare const Tabs: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=Tabs.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":"Tabs.d.ts","sourceRoot":"","sources":["../src/Tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuC,KAAK,SAAS,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AACpG,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,OAAO,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;IACnB,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,MAAM,CAAC;QACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAClC,IAAI,EAAE,OAAO,EAAE,CAAC;QAChB,WAAW,CAAC,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC;QAC1C,OAAO,CAAC,EAAE,YAAY,CAAC,SAAS,CAAC,CAAC;QAClC,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,CAgEzE,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,eAAO,MAAM,IAAI,qDAAmB,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { 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;
|
|
13
|
+
onChange: (value: string) => void;
|
|
14
|
+
label?: string;
|
|
15
|
+
placeholder?: string;
|
|
16
|
+
helperText?: string;
|
|
17
|
+
error?: boolean;
|
|
18
|
+
type?: string;
|
|
19
|
+
multiline?: boolean;
|
|
20
|
+
rows?: number;
|
|
21
|
+
fullWidth?: boolean;
|
|
22
|
+
variant?: MuiTextFieldProps['variant'];
|
|
23
|
+
size?: MuiTextFieldProps['size'];
|
|
24
|
+
color?: MuiTextFieldProps['color'];
|
|
25
|
+
sx?: MuiTextFieldProps['sx'];
|
|
26
|
+
};
|
|
27
|
+
}>;
|
|
28
|
+
export declare const useTextField: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
29
|
+
export type TextFieldStruct = Struct;
|
|
30
|
+
export declare const TextField: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
31
|
+
export {};
|
|
32
|
+
//# sourceMappingURL=TextField.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":"TextField.d.ts","sourceRoot":"","sources":["../src/TextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA6B,KAAK,cAAc,IAAI,iBAAiB,EAAE,MAAM,eAAe,CAAC;AACpG,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,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAClC,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,CAAC,EAAE,iBAAiB,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,CAAC,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC;QACjC,KAAK,CAAC,EAAE,iBAAiB,CAAC,OAAO,CAAC,CAAC;QACnC,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,CA+C9E,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC,eAAO,MAAM,SAAS,qDAAwB,CAAC"}
|
package/dist/Toast.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
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 { SnackbarProps as MuiSnackbarProps, 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
|
+
export type ToastItem = {
|
|
11
|
+
id: string;
|
|
12
|
+
message: string;
|
|
13
|
+
title?: string;
|
|
14
|
+
severity?: MuiAlertProps['severity'];
|
|
15
|
+
variant?: MuiAlertProps['variant'];
|
|
16
|
+
autoHideDuration?: number | null;
|
|
17
|
+
action?: React.ReactNode;
|
|
18
|
+
alertSx?: MuiAlertProps['sx'];
|
|
19
|
+
};
|
|
20
|
+
type Struct<TMsgStruct extends BaseAppMsgStruct = BaseAppMsgStruct> = ComponentStruct<TMsgStruct, {
|
|
21
|
+
props: {
|
|
22
|
+
items?: ToastItem[];
|
|
23
|
+
onDismiss?: (id: string) => void;
|
|
24
|
+
open?: boolean;
|
|
25
|
+
onClose?: () => void;
|
|
26
|
+
message?: string;
|
|
27
|
+
title?: string;
|
|
28
|
+
severity?: MuiAlertProps['severity'];
|
|
29
|
+
variant?: MuiAlertProps['variant'];
|
|
30
|
+
autoHideDuration?: number | null;
|
|
31
|
+
anchorOrigin?: MuiSnackbarProps['anchorOrigin'];
|
|
32
|
+
action?: React.ReactNode;
|
|
33
|
+
sx?: MuiSnackbarProps['sx'];
|
|
34
|
+
alertSx?: MuiAlertProps['sx'];
|
|
35
|
+
};
|
|
36
|
+
}>;
|
|
37
|
+
export declare const useToast: (params: ComponentParams<Struct>) => Component<Struct>;
|
|
38
|
+
export type ToastStruct = Struct;
|
|
39
|
+
export declare const Toast: React.FC<ComponentParams<Struct<BaseAppMsgStruct>>>;
|
|
40
|
+
export {};
|
|
41
|
+
//# sourceMappingURL=Toast.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":"Toast.d.ts","sourceRoot":"","sources":["../src/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAKH,KAAK,aAAa,IAAI,gBAAgB,EACtC,KAAK,UAAU,IAAI,aAAa,EACnC,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,SAAS,GAAG;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,aAAa,CAAC,UAAU,CAAC,CAAC;IACrC,OAAO,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;IACnC,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,OAAO,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;CACjC,CAAC;AAEF,KAAK,MAAM,CAAC,UAAU,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,eAAe,CACjF,UAAU,EACV;IACI,KAAK,EAAE;QAEH,KAAK,CAAC,EAAE,SAAS,EAAE,CAAC;QACpB,SAAS,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;QAGjC,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,QAAQ,CAAC,EAAE,aAAa,CAAC,UAAU,CAAC,CAAC;QACrC,OAAO,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;QACnC,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QACjC,YAAY,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC,CAAC;QAChD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,EAAE,CAAC,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;QAC5B,OAAO,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;KACjC,CAAC;CACL,CACJ,CAAC;AA8CF,eAAO,MAAM,QAAQ,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,SAAS,CAAC,MAAM,CA8F1E,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,eAAO,MAAM,KAAK,qDAAoB,CAAC"}
|