rdy-dashboard 1.0.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.
- package/README.md +106 -0
- package/dist/components/alert/alert.d.ts +3 -0
- package/dist/components/alert/alert.d.ts.map +1 -0
- package/dist/components/alert/alert.styles.d.ts +11 -0
- package/dist/components/alert/alert.styles.d.ts.map +1 -0
- package/dist/components/alert/alert.types.d.ts +7 -0
- package/dist/components/alert/alert.types.d.ts.map +1 -0
- package/dist/components/alertWrapper/alertWrapper.d.ts +7 -0
- package/dist/components/alertWrapper/alertWrapper.d.ts.map +1 -0
- package/dist/components/alertWrapper/alertWrapper.styles.d.ts +5 -0
- package/dist/components/alertWrapper/alertWrapper.styles.d.ts.map +1 -0
- package/dist/components/button/button.d.ts +3 -0
- package/dist/components/button/button.d.ts.map +1 -0
- package/dist/components/button/button.styles.d.ts +8 -0
- package/dist/components/button/button.styles.d.ts.map +1 -0
- package/dist/components/button/button.types.d.ts +12 -0
- package/dist/components/button/button.types.d.ts.map +1 -0
- package/dist/components/input/Input.d.ts +30 -0
- package/dist/components/input/Input.d.ts.map +1 -0
- package/dist/components/label/label.d.ts +8 -0
- package/dist/components/label/label.d.ts.map +1 -0
- package/dist/components/modal/context/modal.context.d.ts +11 -0
- package/dist/components/modal/context/modal.context.d.ts.map +1 -0
- package/dist/components/modal/modal.context.d.ts +11 -0
- package/dist/components/modal/modal.context.d.ts.map +1 -0
- package/dist/components/modal/modal.d.ts +15 -0
- package/dist/components/modal/modal.d.ts.map +1 -0
- package/dist/components/modal/modal.styles.d.ts +13 -0
- package/dist/components/modal/modal.styles.d.ts.map +1 -0
- package/dist/components/modal/modal.ui.d.ts +11 -0
- package/dist/components/modal/modal.ui.d.ts.map +1 -0
- package/dist/components/modal/useModal.d.ts +6 -0
- package/dist/components/modal/useModal.d.ts.map +1 -0
- package/dist/components/modal/useModalNavigate.d.ts +6 -0
- package/dist/components/modal/useModalNavigate.d.ts.map +1 -0
- package/dist/components/motionLabel/motionLabel.d.ts +12 -0
- package/dist/components/motionLabel/motionLabel.d.ts.map +1 -0
- package/dist/components/option/option.d.ts +10 -0
- package/dist/components/option/option.d.ts.map +1 -0
- package/dist/components/option/option.styles.d.ts +4 -0
- package/dist/components/option/option.styles.d.ts.map +1 -0
- package/dist/components/select/select.d.ts +38 -0
- package/dist/components/select/select.d.ts.map +1 -0
- package/dist/components/select/select.styles.d.ts +14 -0
- package/dist/components/select/select.styles.d.ts.map +1 -0
- package/dist/components/toast/toastContainer.d.ts +13 -0
- package/dist/components/toast/toastContainer.d.ts.map +1 -0
- package/dist/components/toast/toastContext.d.ts +25 -0
- package/dist/components/toast/toastContext.d.ts.map +1 -0
- package/dist/components/toggle/toggle.d.ts +12 -0
- package/dist/components/toggle/toggle.d.ts.map +1 -0
- package/dist/icons/error.icon.d.ts +5 -0
- package/dist/icons/error.icon.d.ts.map +1 -0
- package/dist/icons/select.icon.d.ts +4 -0
- package/dist/icons/select.icon.d.ts.map +1 -0
- package/dist/icons/success.icon.d.ts +6 -0
- package/dist/icons/success.icon.d.ts.map +1 -0
- package/dist/icons/warning.icon.d.ts +4 -0
- package/dist/icons/warning.icon.d.ts.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +13080 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +215 -0
- package/dist/index.js.map +1 -0
- package/dist/types/api/api.d.ts +7 -0
- package/dist/types/api/auth.api.d.ts +8 -0
- package/dist/types/api/headers.api.d.ts +5 -0
- package/dist/types/components/input.d.ts +13 -0
- package/dist/types/components/protectedRoute.d.ts +3 -0
- package/dist/types/context/AuthContext.d.ts +16 -0
- package/dist/types/context/RoutesContext.d.ts +12 -0
- package/dist/types/entities/admin/admin.ui.d.ts +7 -0
- package/dist/types/entities/login/login.ui.d.ts +1 -0
- package/dist/types/entities/sidebar/sidebar.ui.d.ts +1 -0
- package/dist/types/entities/table/table.ui.d.ts +4 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/types/model/model.d.ts +12 -0
- package/package.json +55 -0
package/README.md
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
|
|
2
|
+
# Ready Components
|
|
3
|
+
|
|
4
|
+
## Ready components to create your React App!
|
|
5
|
+
## Usage/Examples RdyInput
|
|
6
|
+
|
|
7
|
+
```javascript
|
|
8
|
+
<Input
|
|
9
|
+
id="email"
|
|
10
|
+
label="E-mail"
|
|
11
|
+
type="email"
|
|
12
|
+
rounded="md"
|
|
13
|
+
bordered={{
|
|
14
|
+
onFocus: 'green',
|
|
15
|
+
onBlur: 'blue',
|
|
16
|
+
}}
|
|
17
|
+
/>
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Usage/Expample with react-hook-form
|
|
21
|
+
|
|
22
|
+
```javascript
|
|
23
|
+
<Input
|
|
24
|
+
{...register('email')} //add attr register from useForm() react-hook-form
|
|
25
|
+
id="email"
|
|
26
|
+
label="E-mail"
|
|
27
|
+
type="email"
|
|
28
|
+
rounded="md"
|
|
29
|
+
bordered={{
|
|
30
|
+
onFocus: 'green',
|
|
31
|
+
onBlur: 'blue',
|
|
32
|
+
}}
|
|
33
|
+
/>
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### `RdyInput Props`
|
|
37
|
+
|
|
38
|
+
| Prop | Type | Usage |
|
|
39
|
+
| --------------| --------|-----------------------------------------|
|
|
40
|
+
| type | `type?: "text" / "password" / "email" / "number" / "search"` | `type="text"` |
|
|
41
|
+
| placeholder | `placeholder?: string / ""` | `placeholder="Введите данные"` |
|
|
42
|
+
| className | `className?: string` | `className="inputClass"` |
|
|
43
|
+
| id | `id: string` | `id="name"` |
|
|
44
|
+
| label | `label?: string` | `label="Label title"` |
|
|
45
|
+
| error | `error?: string` | `error="Value is must required"` |`
|
|
46
|
+
| bordered | `onFocus?: string, onBlur?: string` | `onFocus="red"` |
|
|
47
|
+
| | | `onBlur="white"` |
|
|
48
|
+
| rounded | `rounded?: "none" / "sm" / "md" / "lg" / "xl" / "2xl" / "3xl" / "full" / boolean`| `rounded="lg"`|
|
|
49
|
+
| backgroundColor | `backgroundColor?: ` | |
|
|
50
|
+
| | ` onFocus?: string ` |`onFocus="white"`
|
|
51
|
+
| | ` onBlur?: string ` | `onBlur="red"` |
|
|
52
|
+
| value | `value?: string` | `value={value}` //with react useState() |
|
|
53
|
+
| onChange | `onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void` | `onChange={(e) => setValue(e.targe.value)}` |
|
|
54
|
+
| ref | `ref?: React.Ref<HTMLInputElement>` | `ref={ref}` |
|
|
55
|
+
| ...props | | `{...register('name')}` // with react-hook-form
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## Usage/Examples RdySelect
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
```javascript
|
|
63
|
+
<CustomSelect
|
|
64
|
+
searchable //Добавить поиск
|
|
65
|
+
multiple //Возможность выбора несколько опций
|
|
66
|
+
clearable //Кнопка стирания
|
|
67
|
+
value={value} //use state
|
|
68
|
+
onChange={setValue} //use state
|
|
69
|
+
placeholder="Выберите фрукт" //placeholder
|
|
70
|
+
>
|
|
71
|
+
<CustomSelectOption
|
|
72
|
+
value="apple" //value
|
|
73
|
+
label="Яблоко" //label
|
|
74
|
+
disabled //disabled
|
|
75
|
+
>Яблоко</CustomSelectOption>
|
|
76
|
+
<CustomSelectOption value="banana" label="Банан" >Банан</CustomSelectOption>
|
|
77
|
+
<CustomSelectOption value="orange" label="Апельсин" >Апельсин</CustomSelectOption>
|
|
78
|
+
<CustomSelectOption value="grape" label="Виноград" >Виноград</CustomSelectOption>
|
|
79
|
+
<CustomSelectOption value="mango" label="Манго" >Манго</CustomSelectOption>
|
|
80
|
+
</CustomSelect>
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### How to useage RdySelect component with react-hook-form
|
|
85
|
+
|
|
86
|
+
```javascript
|
|
87
|
+
<Controller
|
|
88
|
+
name="select"
|
|
89
|
+
control={control}
|
|
90
|
+
render={({ field }) => (
|
|
91
|
+
<CustomSelect
|
|
92
|
+
{...field}
|
|
93
|
+
searchable
|
|
94
|
+
clearable
|
|
95
|
+
placeholder="Выберите фрукт"
|
|
96
|
+
>
|
|
97
|
+
<CustomSelectOption value="apple" label="Яблоко" disabled>Яблоко</CustomSelectOption>
|
|
98
|
+
<CustomSelectOption value="banana" label="Банан" >Банан</CustomSelectOption>
|
|
99
|
+
<CustomSelectOption value="orange" label="Апельсин" >Апельсин</CustomSelectOption>
|
|
100
|
+
<CustomSelectOption value="grape" label="Виноград" >Виноград</CustomSelectOption>
|
|
101
|
+
<CustomSelectOption value="mango" label="Манго" >Манго</CustomSelectOption>
|
|
102
|
+
</CustomSelect>
|
|
103
|
+
)}
|
|
104
|
+
/>
|
|
105
|
+
```
|
|
106
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../src/components/alert/alert.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAEtC,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA8DjC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert.styles.d.ts","sourceRoot":"","sources":["../../../src/components/alert/alert.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;uCAKd;QACC,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,KAAK,CAAC,EAAE,OAAO,CAAA;KAClB;;;;CAgDJ,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert.types.d.ts","sourceRoot":"","sources":["../../../src/components/alert/alert.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alertWrapper.d.ts","sourceRoot":"","sources":["../../../src/components/alertWrapper/alertWrapper.tsx"],"names":[],"mappings":"AAKA,UAAU,KAAK;IACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,KAAK,CAAC,EAAE,MAAM,CAAA;CACjB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAaxC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alertWrapper.styles.d.ts","sourceRoot":"","sources":["../../../src/components/alertWrapper/alertWrapper.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;CAsB3B,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAGvC,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAoClC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.styles.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.styles.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;iDAMb;QACC,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KACnB;CAQR,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface Props {
|
|
2
|
+
children: React.ReactNode;
|
|
3
|
+
backgroundColor?: string;
|
|
4
|
+
color?: string;
|
|
5
|
+
radius?: number;
|
|
6
|
+
duration?: number;
|
|
7
|
+
whileTap?: {};
|
|
8
|
+
whileHover?: {};
|
|
9
|
+
className?: string;
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=button.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.types.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.types.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,EAAE,CAAC;IACd,UAAU,CAAC,EAAE,EAAE,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface Props {
|
|
3
|
+
type?: "text" | "password" | "email" | "number" | "search";
|
|
4
|
+
placeholder?: string | "";
|
|
5
|
+
className?: string;
|
|
6
|
+
id: string;
|
|
7
|
+
label?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
labelColor?: {
|
|
10
|
+
onBlur?: string;
|
|
11
|
+
onFocus?: string;
|
|
12
|
+
};
|
|
13
|
+
error?: string;
|
|
14
|
+
bordered?: {
|
|
15
|
+
onFocus?: string;
|
|
16
|
+
onBlur?: string;
|
|
17
|
+
};
|
|
18
|
+
rounded?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | boolean;
|
|
19
|
+
backgroundColor?: {
|
|
20
|
+
onFocus?: string;
|
|
21
|
+
onBlur?: string;
|
|
22
|
+
};
|
|
23
|
+
value?: string;
|
|
24
|
+
defaultValue?: string;
|
|
25
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
26
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
27
|
+
}
|
|
28
|
+
export declare const Input: React.FC<Props>;
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/input/Input.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAInD,UAAU,KAAK;IACX,IAAI,CAAC,EAAE,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAC3D,WAAW,CAAC,EAAE,MAAM,GAAG,EAAE,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE;QACT,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE;QACP,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,MAAM,CAAC;KACnB,CAAA;IACD,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;IAChF,eAAe,CAAC,EAAE;QACd,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IAC5D,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;CACrC;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA6KhC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/label/label.tsx"],"names":[],"mappings":"AAAA,UAAU,KAAK;IACX,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC5B;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAMjC,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface ModalContextType {
|
|
2
|
+
openModal: (id: string) => void;
|
|
3
|
+
closeModal: (id: string) => void;
|
|
4
|
+
isModalOpen: (id: string) => boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare const useModal: () => ModalContextType;
|
|
7
|
+
export declare const ModalProvider: React.FC<{
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
}>;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=modal.context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.context.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/context/modal.context.tsx"],"names":[],"mappings":"AAEA,UAAU,gBAAgB;IACtB,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,UAAU,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC;CACxC;AAID,eAAO,MAAM,QAAQ,wBAOpB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAwBjE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface ModalContextType {
|
|
2
|
+
openModal: (id: string) => void;
|
|
3
|
+
closeModal: (id: string) => void;
|
|
4
|
+
isModalOpen: (id: string) => boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare const useModal: () => ModalContextType;
|
|
7
|
+
export declare const ModalProvider: React.FC<{
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
}>;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=modal.context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.context.d.ts","sourceRoot":"","sources":["../../../src/components/modal/modal.context.tsx"],"names":[],"mappings":"AAEA,UAAU,gBAAgB;IACtB,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,UAAU,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC;CACxC;AAID,eAAO,MAAM,QAAQ,wBAOpB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAwBjE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
id: string;
|
|
3
|
+
onClose?: () => void;
|
|
4
|
+
alwaysOpen?: boolean;
|
|
5
|
+
title: string;
|
|
6
|
+
className: string;
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
width?: string;
|
|
9
|
+
background?: string;
|
|
10
|
+
rounded?: string;
|
|
11
|
+
close?: true;
|
|
12
|
+
}
|
|
13
|
+
export declare const Modal: React.FC<Props>;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../src/components/modal/modal.tsx"],"names":[],"mappings":"AAKA,UAAU,KAAK;IACX,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,IAAI,CAAA;CACf;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA0JjC,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const modalStyles: {
|
|
2
|
+
overlay: string;
|
|
3
|
+
content: ({ background, rounded, width }: {
|
|
4
|
+
background?: string;
|
|
5
|
+
rounded?: string;
|
|
6
|
+
width?: string;
|
|
7
|
+
}) => string;
|
|
8
|
+
header: string;
|
|
9
|
+
title: string;
|
|
10
|
+
closeButton: string;
|
|
11
|
+
body: string;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=modal.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.styles.d.ts","sourceRoot":"","sources":["../../../src/components/modal/modal.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;8CAoBb;QACC,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,KAAK,CAAC,EAAE,MAAM,CAAA;KACjB;;;;;CAoDR,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
background?: string;
|
|
3
|
+
rounded?: string;
|
|
4
|
+
width?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
handleClose: () => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const ModalUi: React.FC<Props>;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=modal.ui.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.ui.d.ts","sourceRoot":"","sources":["../../../src/components/modal/modal.ui.tsx"],"names":[],"mappings":"AAGA,UAAU,KAAK;IACX,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,WAAW,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAiDnC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useModal.d.ts","sourceRoot":"","sources":["../../../src/components/modal/useModal.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;oBAGM,MAAM;qBAIL,MAAM;sBAQL,MAAM;CAUlC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useModalNavigate.d.ts","sourceRoot":"","sources":["../../../src/components/modal/useModalNavigate.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB;qBAQD,MAAM;0BAMD,MAAM;6BAQH,KAAK,WAAW,MAAM;CAOzD,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
children: React.ReactNode;
|
|
3
|
+
isFocused: boolean | false;
|
|
4
|
+
value: string | '';
|
|
5
|
+
className?: string;
|
|
6
|
+
color?: string | '#3b82f6';
|
|
7
|
+
background?: string | '#ffffff';
|
|
8
|
+
htmlFor?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const MotionLabel: React.FC<Props>;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=motionLabel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"motionLabel.d.ts","sourceRoot":"","sources":["../../../src/components/motionLabel/motionLabel.tsx"],"names":[],"mappings":"AAEA,UAAU,KAAK;IACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,EAAE,OAAO,GAAG,KAAK,CAAC;IAC3B,KAAK,EAAE,MAAM,GAAG,EAAE,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAgBvC,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface OptionProps {
|
|
3
|
+
value: string;
|
|
4
|
+
label: string;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare function Option({ value, label, children, disabled }: OptionProps): import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=option.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"option.d.ts","sourceRoot":"","sources":["../../../src/components/option/option.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAKzC,UAAU,WAAW;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,wBAAgB,MAAM,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAgB,EAAE,EAAE,WAAW,kDA2B/E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"option.styles.d.ts","sourceRoot":"","sources":["../../../src/components/option/option.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;uBACC,OAAO;CAiB7B,CAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type OptionValue = string;
|
|
3
|
+
interface OptionData {
|
|
4
|
+
value: string;
|
|
5
|
+
label: string;
|
|
6
|
+
}
|
|
7
|
+
interface SelectContextProps {
|
|
8
|
+
open: boolean;
|
|
9
|
+
value: OptionValue | OptionValue[];
|
|
10
|
+
selectedLabels: string[];
|
|
11
|
+
multiple: boolean;
|
|
12
|
+
searchable: boolean;
|
|
13
|
+
query: string;
|
|
14
|
+
chips?: boolean;
|
|
15
|
+
setQuery: (q: string) => void;
|
|
16
|
+
selectOption: (opt: OptionData) => void;
|
|
17
|
+
clear: () => void;
|
|
18
|
+
isSelected: (val: OptionValue) => boolean;
|
|
19
|
+
registerOption: (opt: OptionData) => void;
|
|
20
|
+
options: OptionData[];
|
|
21
|
+
}
|
|
22
|
+
export declare function useSelect(): SelectContextProps;
|
|
23
|
+
interface SelectProps {
|
|
24
|
+
name?: string;
|
|
25
|
+
value?: string | string[];
|
|
26
|
+
onChange?: (value: string | string[]) => void;
|
|
27
|
+
multiple?: boolean;
|
|
28
|
+
searchable?: boolean;
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
className?: string;
|
|
31
|
+
chips?: boolean;
|
|
32
|
+
clearable?: boolean;
|
|
33
|
+
children: React.ReactNode;
|
|
34
|
+
ref: React.Ref<HTMLSelectElement>;
|
|
35
|
+
}
|
|
36
|
+
export declare const Select: React.FC<SelectProps>;
|
|
37
|
+
export {};
|
|
38
|
+
//# sourceMappingURL=select.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/select/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAiE,MAAM,OAAO,CAAC;AAKtF,KAAK,WAAW,GAAG,MAAM,CAAC;AAE1B,UAAU,UAAU;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,UAAU,kBAAkB;IACxB,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,WAAW,GAAG,WAAW,EAAE,CAAC;IACnC,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9B,YAAY,EAAE,CAAC,GAAG,EAAE,UAAU,KAAK,IAAI,CAAC;IACxC,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,UAAU,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,OAAO,CAAC;IAC1C,cAAc,EAAE,CAAC,GAAG,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,OAAO,EAAE,UAAU,EAAE,CAAC;CACzB;AAGD,wBAAgB,SAAS,uBAIxB;AAED,UAAU,WAAW;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC1B,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,IAAI,CAAC;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;CACrC;AAGD,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAuNvC,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const SelectCSS: {
|
|
2
|
+
select: () => string;
|
|
3
|
+
selectList: () => string;
|
|
4
|
+
selectShip: () => string;
|
|
5
|
+
selectValue: () => string;
|
|
6
|
+
clear: () => string;
|
|
7
|
+
clearButton: () => string;
|
|
8
|
+
arrow: () => string;
|
|
9
|
+
poppup: () => string;
|
|
10
|
+
search: () => string;
|
|
11
|
+
searchInput: () => string;
|
|
12
|
+
options: () => string;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=select.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.styles.d.ts","sourceRoot":"","sources":["../../../src/components/select/select.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;CAkGrB,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface ToastContainerProps {
|
|
2
|
+
toasts: {
|
|
3
|
+
id: number;
|
|
4
|
+
title: string;
|
|
5
|
+
message?: string;
|
|
6
|
+
icon?: React.ReactNode;
|
|
7
|
+
type?: string;
|
|
8
|
+
}[];
|
|
9
|
+
removeToast: (id: number) => void;
|
|
10
|
+
}
|
|
11
|
+
export default function ToastContainer({ toasts, removeToast }: ToastContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=toastContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toastContainer.d.ts","sourceRoot":"","sources":["../../../src/components/toast/toastContainer.tsx"],"names":[],"mappings":"AAMA,UAAU,mBAAmB;IACzB,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACjG,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EAAE,MAAM,EAAE,WAAW,EAAE,EAAE,mBAAmB,2CAmFlF"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React, { ReactNode } from "react";
|
|
2
|
+
interface Toast {
|
|
3
|
+
id: number;
|
|
4
|
+
title: string;
|
|
5
|
+
message?: string;
|
|
6
|
+
icon?: React.ReactNode;
|
|
7
|
+
type?: "success" | "error" | "info" | "warning";
|
|
8
|
+
}
|
|
9
|
+
interface ToastProps {
|
|
10
|
+
title: string;
|
|
11
|
+
message?: string;
|
|
12
|
+
icon?: React.ReactNode;
|
|
13
|
+
type?: "success" | "error" | "info" | "warning";
|
|
14
|
+
}
|
|
15
|
+
interface ToastContextType {
|
|
16
|
+
toasts: Toast[];
|
|
17
|
+
showToast: ({ title, message, icon, type }: ToastProps) => void;
|
|
18
|
+
removeToast: (id: number) => void;
|
|
19
|
+
}
|
|
20
|
+
export declare const ToastProvider: ({ children }: {
|
|
21
|
+
children: ReactNode;
|
|
22
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const useToast: () => ToastContextType;
|
|
24
|
+
export {};
|
|
25
|
+
//# sourceMappingURL=toastContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toastContext.d.ts","sourceRoot":"","sources":["../../../src/components/toast/toastContext.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAuC,SAAS,EAAE,MAAM,OAAO,CAAC;AAG9E,UAAU,KAAK;IACX,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;CACnD;AAED,UAAU,UAAU;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;CACnD;AAED,UAAU,gBAAgB;IACtB,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,SAAS,EAAE,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,UAAU,KAAK,IAAI,CAAC;IAChE,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAID,eAAO,MAAM,aAAa,GAAI,cAAc;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,4CAoBlE,CAAC;AAEF,eAAO,MAAM,QAAQ,wBAIpB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface Props {
|
|
3
|
+
className?: string;
|
|
4
|
+
background?: {
|
|
5
|
+
enabled: string;
|
|
6
|
+
disabled: string;
|
|
7
|
+
};
|
|
8
|
+
ref: React.Ref<HTMLInputElement>;
|
|
9
|
+
}
|
|
10
|
+
export declare const Toggle: React.FC<Props>;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=toggle.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toggle.d.ts","sourceRoot":"","sources":["../../../src/components/toggle/toggle.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,KAAK;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE;QACT,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAA;IACD,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;CACnC;AAED,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAkFjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error.icon.d.ts","sourceRoot":"","sources":["../../src/icons/error.icon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,GAAI,iBAAiB;IAAE,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,4CAwB3E,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.icon.d.ts","sourceRoot":"","sources":["../../src/icons/select.icon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,GAAI,UAAU;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,4CA0BpD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"success.icon.d.ts","sourceRoot":"","sources":["../../src/icons/success.icon.tsx"],"names":[],"mappings":"AAAA,UAAU,KAAK;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,WAAW,GAAI,UAAU,KAAK,4CAU1C,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"warning.icon.d.ts","sourceRoot":"","sources":["../../src/icons/warning.icon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,GAAI,UAAU;IAAE,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,4CAUtD,CAAA"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { Input as RdyInput } from './components/input/Input';
|
|
2
|
+
export { Button as RdyButton } from './components/button/button';
|
|
3
|
+
export { Select as RdySelect } from './components/select/select';
|
|
4
|
+
export { Option as RdyOption } from './components/option/option';
|
|
5
|
+
export { Modal as RdyModal } from './components/modal/modal';
|
|
6
|
+
export { Toggle as RdyToggle } from './components/toggle/toggle';
|
|
7
|
+
export { ToastProvider } from './components/toast/toastContext';
|
|
8
|
+
export { ModalProvider } from './components/modal/modal.context';
|
|
9
|
+
export { useToast } from './components/toast/toastContext';
|
|
10
|
+
export { useSelect as useRdySelect } from './components/select/select';
|
|
11
|
+
export { useModal } from './components/modal/modal.context';
|
|
12
|
+
export { IconSuccess as RIconSuccess } from './icons/success.icon';
|
|
13
|
+
export { IconWarning as RIconWarning } from './icons/warning.icon';
|
|
14
|
+
export { IconError as RIconError } from './icons/error.icon';
|
|
15
|
+
export { SelectIcon as RSelectIcon } from './icons/select.icon';
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,IAAI,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,KAAK,IAAI,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAGjE,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAGjE,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,EAAE,SAAS,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAG5D,OAAO,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,EAAE,SAAS,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,UAAU,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC"}
|