toku-form-extensions 1.2.1 → 1.3.1
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/TCustomForm/CustomField.d.ts +2 -2
- package/dist/components/TCustomForm/CustomField.d.ts.map +1 -1
- package/dist/components/TCustomForm/FieldsSection.d.ts +2 -2
- package/dist/components/TCustomForm/FieldsSection.d.ts.map +1 -1
- package/dist/components/TCustomForm/{TAlertError.d.ts → TAlert.d.ts} +25 -4
- package/dist/components/TCustomForm/TAlert.d.ts.map +1 -0
- package/dist/components/TCustomForm/TCustomForm.d.ts +8 -40
- package/dist/components/TCustomForm/TCustomForm.d.ts.map +1 -1
- package/dist/components/TCustomForm/TCustomForm.types.d.ts +77 -0
- package/dist/components/TCustomForm/TCustomForm.types.d.ts.map +1 -0
- package/dist/components/TCustomForm/index.d.ts +1 -0
- package/dist/components/TCustomForm/index.d.ts.map +1 -1
- package/dist/index.es.js +3256 -3215
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/TCustomForm/TAlertError.d.ts.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { CustomFieldRegex } from './TCustomForm.types';
|
|
3
3
|
interface CustomFieldProps {
|
|
4
4
|
id: string;
|
|
5
5
|
value?: string | number | Date;
|
|
@@ -14,7 +14,7 @@ interface CustomFieldProps {
|
|
|
14
14
|
helperText?: string;
|
|
15
15
|
errorText?: string;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
regex?:
|
|
17
|
+
regex?: CustomFieldRegex;
|
|
18
18
|
isMobile?: boolean;
|
|
19
19
|
autocomplete?: boolean;
|
|
20
20
|
isExternalId?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CustomField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/CustomField"],"names":[],"mappings":"AAEA,OAAO,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"CustomField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/CustomField"],"names":[],"mappings":"AAEA,OAAO,+BAA+B,CAAC;AAKvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAIvD,UAAU,gBAAgB;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,gBAAgB,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;;;;;;;;AAoQD,wBAOG;AACH,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,10 +1,10 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import { Account } from '../../types/entities';
|
|
3
|
-
import {
|
|
3
|
+
import { CustomInputField } from './TCustomForm.types';
|
|
4
4
|
interface FieldSectionsProps {
|
|
5
5
|
fieldsType: 'invoice' | 'customer';
|
|
6
6
|
title: string | undefined;
|
|
7
|
-
fields:
|
|
7
|
+
fields: CustomInputField[];
|
|
8
8
|
autocomplete?: boolean;
|
|
9
9
|
accounts: Account[];
|
|
10
10
|
isMobile?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldsSection.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/FieldsSection"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"FieldsSection.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/FieldsSection"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAK3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAKvD,UAAU,kBAAkB;IAC1B,UAAU,EAAE,SAAS,GAAG,UAAU,CAAC;IACnC,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;;;;;;;;;;;;;;AA+UD,wBAOG;AACH,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,11 +1,24 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
variant: "error" | "success" | "warning" | "info" | "in-process";
|
|
3
4
|
fullWidth?: boolean | undefined;
|
|
5
|
+
icon?: string | undefined;
|
|
4
6
|
size: "large" | "small";
|
|
5
|
-
}>, {
|
|
7
|
+
}>, {
|
|
8
|
+
variant: string;
|
|
9
|
+
icon: undefined;
|
|
10
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
11
|
+
variant: "error" | "success" | "warning" | "info" | "in-process";
|
|
6
12
|
fullWidth?: boolean | undefined;
|
|
13
|
+
icon?: string | undefined;
|
|
7
14
|
size: "large" | "small";
|
|
8
|
-
}
|
|
15
|
+
}>, {
|
|
16
|
+
variant: string;
|
|
17
|
+
icon: undefined;
|
|
18
|
+
}>>>, {
|
|
19
|
+
variant: "error" | "success" | "warning" | "info" | "in-process";
|
|
20
|
+
icon: string;
|
|
21
|
+
}, {}>, {
|
|
9
22
|
default?(_: {}): any;
|
|
10
23
|
}>;
|
|
11
24
|
export default _default;
|
|
@@ -18,9 +31,17 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
18
31
|
required: true;
|
|
19
32
|
};
|
|
20
33
|
};
|
|
34
|
+
type __VLS_WithDefaults<P, D> = {
|
|
35
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
+
default: D[K];
|
|
37
|
+
}> : P[K];
|
|
38
|
+
};
|
|
39
|
+
type __VLS_Prettify<T> = {
|
|
40
|
+
[K in keyof T]: T[K];
|
|
41
|
+
} & {};
|
|
21
42
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
43
|
new (): {
|
|
23
44
|
$slots: S;
|
|
24
45
|
};
|
|
25
46
|
};
|
|
26
|
-
//# sourceMappingURL=
|
|
47
|
+
//# sourceMappingURL=TAlert.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TAlert.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/TAlert"],"names":[],"mappings":"AAmBA;;;;;;;;;;;;;;;;;;;;;;;AAuMA,wBAAwG;AACxG,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;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,37 +1,7 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { CheckBoxField, SignupField } from '../../types/signUpField';
|
|
3
1
|
import { Account } from '../../types/entities';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
+
import { FormRequestData, TCustomFormProps, CustomCheckBoxField, CustomInputField } from './TCustomForm.types';
|
|
4
4
|
import '@/assets/scss/main.scss';
|
|
5
|
-
export interface FormRequestData {
|
|
6
|
-
additional_data: Record<string, string | number | Date>;
|
|
7
|
-
customer_metadata: Record<string, string | number | Date>;
|
|
8
|
-
subscription_metadata: Record<string, string | number | Date>;
|
|
9
|
-
invoice_metadata: Record<string, string | number | Date>;
|
|
10
|
-
checkboxes_values: Record<string, boolean>;
|
|
11
|
-
[key: string]: string | number | boolean | Date | Record<string, string | number | Date> | Record<string, boolean>;
|
|
12
|
-
}
|
|
13
|
-
type LayoutOptions = 'columns' | 'rows';
|
|
14
|
-
export interface TCustomFormProps {
|
|
15
|
-
countryIso: string;
|
|
16
|
-
accounts: Account[];
|
|
17
|
-
isMobile: boolean;
|
|
18
|
-
title?: string;
|
|
19
|
-
layout?: LayoutOptions;
|
|
20
|
-
topSubtitle?: string;
|
|
21
|
-
bottomSubtitle?: string;
|
|
22
|
-
customerFieldsTitle?: string;
|
|
23
|
-
customerFields?: SignupField[];
|
|
24
|
-
invoiceFieldsTitle?: string;
|
|
25
|
-
invoiceFields?: SignupField[];
|
|
26
|
-
enableAutocomplete?: boolean;
|
|
27
|
-
checkboxes: CheckBoxField[];
|
|
28
|
-
themeColor?: string;
|
|
29
|
-
loading?: boolean;
|
|
30
|
-
formLinkLabel?: string;
|
|
31
|
-
disableSubmit?: boolean;
|
|
32
|
-
buttonLabel?: string;
|
|
33
|
-
errorMessage?: string;
|
|
34
|
-
}
|
|
35
5
|
declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TCustomFormProps>, {
|
|
36
6
|
customerFields: () => never[];
|
|
37
7
|
invoiceFields: () => never[];
|
|
@@ -45,8 +15,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
|
|
|
45
15
|
"submit-form-data": (values: FormRequestData) => void;
|
|
46
16
|
"autocomplete-subscription": (productId: string) => void;
|
|
47
17
|
"autocomplete-external-id": (externalId: string) => void;
|
|
48
|
-
"
|
|
49
|
-
foo: (id: number) => void;
|
|
18
|
+
"link-clicked": () => void;
|
|
50
19
|
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TCustomFormProps>, {
|
|
51
20
|
customerFields: () => never[];
|
|
52
21
|
invoiceFields: () => never[];
|
|
@@ -60,15 +29,14 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
|
|
|
60
29
|
"onSubmit-form-data"?: ((values: FormRequestData) => any) | undefined;
|
|
61
30
|
"onAutocomplete-subscription"?: ((productId: string) => any) | undefined;
|
|
62
31
|
"onAutocomplete-external-id"?: ((externalId: string) => any) | undefined;
|
|
63
|
-
"
|
|
64
|
-
onFoo?: ((id: number) => any) | undefined;
|
|
32
|
+
"onLink-clicked"?: (() => any) | undefined;
|
|
65
33
|
}, {
|
|
66
34
|
accounts: Account[];
|
|
67
|
-
customerFields:
|
|
68
|
-
invoiceFields:
|
|
35
|
+
customerFields: CustomInputField[];
|
|
36
|
+
invoiceFields: CustomInputField[];
|
|
69
37
|
buttonLabel: string;
|
|
70
|
-
layout:
|
|
71
|
-
checkboxes:
|
|
38
|
+
layout: "columns" | "rows";
|
|
39
|
+
checkboxes: CustomCheckBoxField[];
|
|
72
40
|
themeColor: string;
|
|
73
41
|
}, {}>;
|
|
74
42
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TCustomForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/TCustomForm"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TCustomForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/TCustomForm"],"names":[],"mappings":"AAgBA,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EACjB,MAAM,qBAAqB,CAAC;AAI7B,OAAO,yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8iBjC,wBAOG;AACH,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;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { Account } from '../../types/entities';
|
|
2
|
+
export interface CustomFieldRegex {
|
|
3
|
+
pattern: RegExp;
|
|
4
|
+
message?: string;
|
|
5
|
+
}
|
|
6
|
+
type CustomFieldDefaultOption = string | number | Date;
|
|
7
|
+
export interface CustomInputField {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
value?: string | number | Date;
|
|
11
|
+
defaultOptions?: CustomFieldDefaultOption[];
|
|
12
|
+
isAccount?: boolean;
|
|
13
|
+
relatedField?: string;
|
|
14
|
+
relatedFieldValue?: string | number | Date;
|
|
15
|
+
isExternalId?: boolean;
|
|
16
|
+
autocompleted?: boolean;
|
|
17
|
+
placeholder?: string;
|
|
18
|
+
helperText?: string;
|
|
19
|
+
regex?: CustomFieldRegex;
|
|
20
|
+
leftIcon?: string;
|
|
21
|
+
rightIcon?: string;
|
|
22
|
+
label?: string;
|
|
23
|
+
type?: string;
|
|
24
|
+
decimals?: number;
|
|
25
|
+
required?: boolean;
|
|
26
|
+
displayInfo?: boolean;
|
|
27
|
+
}
|
|
28
|
+
export interface CustomCheckBoxField {
|
|
29
|
+
id: string;
|
|
30
|
+
name: string;
|
|
31
|
+
type: 'checkbox';
|
|
32
|
+
label?: string;
|
|
33
|
+
value?: boolean;
|
|
34
|
+
relatedField?: string;
|
|
35
|
+
relatedFieldValue?: string | number | Date;
|
|
36
|
+
}
|
|
37
|
+
export interface CustomLinkField {
|
|
38
|
+
label: string;
|
|
39
|
+
external_url?: string;
|
|
40
|
+
workflow_url?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface MessageAlert {
|
|
43
|
+
label: string;
|
|
44
|
+
type: 'success' | 'in-process' | 'warning' | 'error' | 'info';
|
|
45
|
+
}
|
|
46
|
+
type LayoutOptions = 'columns' | 'rows';
|
|
47
|
+
export interface TCustomFormProps {
|
|
48
|
+
countryIso: string;
|
|
49
|
+
accounts: Account[];
|
|
50
|
+
isMobile: boolean;
|
|
51
|
+
title?: string;
|
|
52
|
+
layout?: LayoutOptions;
|
|
53
|
+
topSubtitle?: string;
|
|
54
|
+
bottomSubtitle?: string;
|
|
55
|
+
customerFieldsTitle?: string;
|
|
56
|
+
customerFields?: CustomInputField[];
|
|
57
|
+
invoiceFieldsTitle?: string;
|
|
58
|
+
invoiceFields?: CustomInputField[];
|
|
59
|
+
enableAutocomplete?: boolean;
|
|
60
|
+
checkboxes: CustomCheckBoxField[];
|
|
61
|
+
themeColor?: string;
|
|
62
|
+
loading?: boolean;
|
|
63
|
+
link?: CustomLinkField;
|
|
64
|
+
disableSubmit?: boolean;
|
|
65
|
+
buttonLabel?: string;
|
|
66
|
+
messageAlert?: MessageAlert;
|
|
67
|
+
}
|
|
68
|
+
export interface FormRequestData {
|
|
69
|
+
additional_data: Record<string, string | number | Date>;
|
|
70
|
+
customer_metadata: Record<string, string | number | Date>;
|
|
71
|
+
subscription_metadata: Record<string, string | number | Date>;
|
|
72
|
+
invoice_metadata: Record<string, string | number | Date>;
|
|
73
|
+
checkboxes_values: Record<string, boolean>;
|
|
74
|
+
[key: string]: string | number | boolean | Date | Record<string, string | number | Date> | Record<string, boolean>;
|
|
75
|
+
}
|
|
76
|
+
export {};
|
|
77
|
+
//# sourceMappingURL=TCustomForm.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TCustomForm.types.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/TCustomForm.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/TCustomForm/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAC3D,cAAc,qBAAqB,CAAC"}
|