@bagelink/vue 0.0.114 → 0.0.116
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/components/Btn.vue.d.ts +1 -1
- package/dist/components/Comments.vue.d.ts +2 -6
- package/dist/components/Comments.vue.d.ts.map +1 -1
- package/dist/components/PersonPreview.vue.d.ts +22 -0
- package/dist/components/PersonPreview.vue.d.ts.map +1 -0
- package/dist/components/charts/index.d.ts +1 -1
- package/dist/components/charts/index.d.ts.map +1 -1
- package/dist/components/dashboard/index.d.ts +1 -1
- package/dist/components/dashboard/index.d.ts.map +1 -1
- package/dist/components/form/index.d.ts +3 -3
- package/dist/components/form/index.d.ts.map +1 -1
- package/dist/components/form/inputs/index.d.ts +17 -17
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/components/formkit/index.d.ts +9 -9
- package/dist/components/formkit/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +20 -19
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/whatsapp/index.d.ts +2 -2
- package/dist/components/whatsapp/index.d.ts.map +1 -1
- package/dist/index.cjs +434 -509
- package/dist/index.mjs +434 -509
- package/dist/style.css +105 -26
- package/package.json +2 -3
- package/src/components/Comments.vue +2 -4
- package/src/components/PersonPreview.vue +1 -1
- package/src/components/charts/index.ts +1 -1
- package/src/components/dashboard/index.ts +1 -1
- package/src/components/form/index.ts +3 -3
- package/src/components/form/inputs/index.ts +17 -17
- package/src/components/formkit/index.ts +16 -16
- package/src/components/index.ts +20 -19
- package/src/components/whatsapp/index.ts +2 -2
- package/tsconfig.json +1 -0
- package/vite.config.ts +0 -1
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
ref_table: string;
|
|
3
3
|
ref_id: string;
|
|
4
|
-
|
|
5
|
-
send: string;
|
|
6
|
-
};
|
|
4
|
+
sendBtnLabel: string;
|
|
7
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
6
|
ref_table: string;
|
|
9
7
|
ref_id: string;
|
|
10
|
-
|
|
11
|
-
send: string;
|
|
12
|
-
};
|
|
8
|
+
sendBtnLabel: string;
|
|
13
9
|
}>>>, {}, {}>;
|
|
14
10
|
export default _default;
|
|
15
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Comments.vue.d.ts","sourceRoot":"","sources":["../../src/components/Comments.vue"],"names":[],"mappings":"AAmEA;;
|
|
1
|
+
{"version":3,"file":"Comments.vue.d.ts","sourceRoot":"","sources":["../../src/components/Comments.vue"],"names":[],"mappings":"AAmEA;;eAwWY,MAAM;YACT,MAAM;kBACA,MAAM;;eAFT,MAAM;YACT,MAAM;kBACA,MAAM;;AAJrB,wBAUG;AAGH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
2
|
+
import type { Person } from '..';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
person: Person;
|
|
5
|
+
onClick?: ((event: MouseEvent) => void) | undefined;
|
|
6
|
+
personSchema: () => FormKitSchemaDefinition;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
person: Person;
|
|
9
|
+
onClick?: ((event: MouseEvent) => void) | undefined;
|
|
10
|
+
personSchema: () => FormKitSchemaDefinition;
|
|
11
|
+
}>>>, {}, {}>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
+
} : {
|
|
18
|
+
type: import('vue').PropType<T[K]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=PersonPreview.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PersonPreview.vue.d.ts","sourceRoot":"","sources":["../../src/components/PersonPreview.vue"],"names":[],"mappings":"AA2EA;AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;;YA+RnC,MAAM;uBAEK,UAAU,KAAK,IAAI;kBACxB,MAAM,uBAAuB;;YAHnC,MAAM;uBAEK,UAAU,KAAK,IAAI;kBACxB,MAAM,uBAAuB;;AAL5C,wBAWG;AAGH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as BarChart } from './BarChart.vue';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/charts/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/charts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as Lineart } from './Lineart.vue';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/dashboard/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/dashboard/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { default as ItemRef } from './ItemRef.vue';
|
|
2
|
+
export { default as MaterialIcon } from './MaterialIcon.vue';
|
|
3
|
+
export { default as PlainInputField } from './PlainInputField.vue';
|
|
4
4
|
export * from './inputs';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,cAAc,UAAU,CAAC"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
1
|
+
export { default as CheckInput } from './CheckInput.vue';
|
|
2
|
+
export { default as CurrencyInput } from './CurrencyInput.vue';
|
|
3
|
+
export { default as DateInput } from './DateInput.vue';
|
|
4
|
+
export { default as DatetimeInput } from './DatetimeInput.vue';
|
|
5
|
+
export { default as EmailInput } from './EmailInput.vue';
|
|
6
|
+
export { default as FloatInput } from './FloatInput.vue';
|
|
7
|
+
export { default as IntInput } from './IntInput.vue';
|
|
8
|
+
export { default as JSONInput } from './JSONInput.vue';
|
|
9
|
+
export { default as LinkField } from './LinkField.vue';
|
|
10
|
+
export { default as PasswordInput } from './PasswordInput.vue';
|
|
11
|
+
export { default as Password } from './Password.vue';
|
|
12
|
+
export { default as ReadOnlyInput } from './ReadOnlyInput.vue';
|
|
13
|
+
export { default as SelectField } from './SelectField.vue';
|
|
14
|
+
export { default as RichTextEditor } from './RichTextEditor.vue';
|
|
15
|
+
export { default as TableField } from './TableField.vue';
|
|
16
|
+
export { default as DurationInput } from './DurationInput.vue';
|
|
17
|
+
export { default as TextInput } from './TextInput.vue';
|
|
18
18
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const
|
|
3
|
-
declare const
|
|
4
|
-
declare const
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
declare const
|
|
8
|
-
declare const
|
|
9
|
-
export {
|
|
1
|
+
declare const ContactArrayInput: import("@formkit/core").FormKitTypeDefinition;
|
|
2
|
+
declare const AddressInput: import("@formkit/core").FormKitTypeDefinition;
|
|
3
|
+
declare const BankDetailsInput: import("@formkit/core").FormKitTypeDefinition;
|
|
4
|
+
declare const MiscFieldsInput: import("@formkit/core").FormKitTypeDefinition;
|
|
5
|
+
declare const ToggleSwitchInput: import("@formkit/core").FormKitTypeDefinition;
|
|
6
|
+
declare const FileUploadInput: import("@formkit/core").FormKitTypeDefinition;
|
|
7
|
+
declare const TextVariablesInput: import("@formkit/core").FormKitTypeDefinition;
|
|
8
|
+
declare const PersonPreviewInput: import("@formkit/core").FormKitTypeDefinition;
|
|
9
|
+
export { TextVariablesInput, ContactArrayInput, PersonPreviewInput, AddressInput, BankDetailsInput, MiscFieldsInput, ToggleSwitchInput, FileUploadInput, };
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/formkit/index.ts"],"names":[],"mappings":"AAUA,QAAA,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/formkit/index.ts"],"names":[],"mappings":"AAUA,QAAA,MAAM,iBAAiB,+CAAmC,CAAC;AAC3D,QAAA,MAAM,YAAY,+CAA4B,CAAC;AAC/C,QAAA,MAAM,gBAAgB,+CAAgC,CAAC;AACvD,QAAA,MAAM,eAAe,+CAA8B,CAAC;AACpD,QAAA,MAAM,iBAAiB,+CAAsB,CAAC;AAC9C,QAAA,MAAM,eAAe,+CAA4B,CAAC;AAClD,QAAA,MAAM,kBAAkB,+CAAoC,CAAC;AAC7D,QAAA,MAAM,kBAAkB,+CAAmB,CAAC;AAE5C,OAAO,EACN,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,iBAAiB,EACjB,eAAe,GACf,CAAC"}
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
1
|
+
export { default as LangText } from './LangText.vue';
|
|
2
|
+
export { default as RTXEditor } from './RTXEditor.vue';
|
|
3
|
+
export { default as MaterialIcon } from './MaterialIcon.vue';
|
|
4
|
+
export { default as NavBar } from './NavBar.vue';
|
|
5
|
+
export { default as Btn } from './Btn.vue';
|
|
6
|
+
export { default as Modal } from './Modal.vue';
|
|
7
|
+
export { default as DropDown } from './DropDown.vue';
|
|
8
|
+
export { default as ListView } from './ListView.vue';
|
|
9
|
+
export { default as ListItem } from './ListItem.vue';
|
|
10
|
+
export { default as TabbedLayout } from './TabbedLayout.vue';
|
|
11
|
+
export { default as Comments } from './Comments.vue';
|
|
12
|
+
export { default as PageTitle } from './PageTitle.vue';
|
|
13
|
+
export { default as ModalForm } from './ModalForm.vue';
|
|
14
|
+
export { default as DataPreview } from './DataPreview.vue';
|
|
15
|
+
export { default as FormSchema } from './FormSchema.vue';
|
|
16
|
+
export { default as TableSchema } from './TableSchema.vue';
|
|
17
|
+
export { default as TopBar } from './TopBar.vue';
|
|
18
|
+
export { default as RouterWrapper } from './RouterWrapper.vue';
|
|
19
|
+
export { default as ContactSubmissions } from './ContactSubmissions.vue';
|
|
20
|
+
export { default as PersonPreview } from './PersonPreview.vue';
|
|
20
21
|
export * from './charts';
|
|
21
22
|
export * from './formkit';
|
|
22
23
|
export * from './form';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,WAAW,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAE/D,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export { default as MsgTemplate } from './form/MsgTemplate.vue';
|
|
2
|
+
export { default as TextVariableExamples } from './form/TextVariableExamples.vue';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/whatsapp/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/whatsapp/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,iCAAiC,CAAC"}
|