toku-form-extensions 0.0.6 → 0.0.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.
@@ -83,10 +83,14 @@ declare const _default: DefineComponent<{
83
83
  type: PropType<string>;
84
84
  default: string;
85
85
  };
86
- isPaymentPortal: {
86
+ useRows: {
87
87
  type: PropType<boolean>;
88
88
  default: boolean;
89
89
  };
90
+ buttonColor: {
91
+ type: PropType<string>;
92
+ default: string;
93
+ };
90
94
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
91
95
  "submit-form-data": (values: SignupRequestData) => void;
92
96
  reset: () => void;
@@ -165,10 +169,14 @@ declare const _default: DefineComponent<{
165
169
  type: PropType<string>;
166
170
  default: string;
167
171
  };
168
- isPaymentPortal: {
172
+ useRows: {
169
173
  type: PropType<boolean>;
170
174
  default: boolean;
171
175
  };
176
+ buttonColor: {
177
+ type: PropType<string>;
178
+ default: string;
179
+ };
172
180
  }>>, {
173
181
  errorMessage: string;
174
182
  errorButtonLabel: string;
@@ -178,7 +186,8 @@ declare const _default: DefineComponent<{
178
186
  customerFieldsTitle: string;
179
187
  buttonLabel: string;
180
188
  sendByEmailText: string;
181
- isPaymentPortal: boolean;
189
+ useRows: boolean;
190
+ buttonColor: string;
182
191
  }>;
183
192
  export default _default;
184
193
  //# sourceMappingURL=CustomForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"CustomForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/CustomForm"],"names":[],"mappings":"AA4DA;AAOA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAO3C,OAAO,sBAAsB,CAAC;AAI9B,UAAU,iBAAiB;IACzB,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACxD,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC1D,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC9D,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACzD,SAAS,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GACR,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;CAC5C;AAED,KAAK,gBAAgB,GAAG,SAAS,GAAG,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyZ5C,wBAAkD"}
1
+ {"version":3,"file":"CustomForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/CustomForm"],"names":[],"mappings":"AA2DA;AAOA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAO3C,OAAO,yBAAyB,CAAC;AACjC,OAAO,sBAAsB,CAAC;AAK9B,UAAU,iBAAiB;IACzB,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACxD,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC1D,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC9D,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACzD,SAAS,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GACR,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;CAC5C;AAED,KAAK,gBAAgB,GAAG,SAAS,GAAG,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAic5C,wBASG"}
@@ -22,7 +22,9 @@ declare const _default: DefineComponent<{
22
22
  type: PropType<string>;
23
23
  required: true;
24
24
  };
25
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "reset"[], string, Readonly<ExtractPropTypes<{
25
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
26
+ reset: (...args: any[]) => void;
27
+ }, string, Readonly<ExtractPropTypes<{
26
28
  type: {
27
29
  type: PropType<"error" | "success">;
28
30
  required: true;
@@ -45,7 +47,7 @@ declare const _default: DefineComponent<{
45
47
  required: true;
46
48
  };
47
49
  }>>, {
48
- type: "error" | "success";
50
+ type: 'success' | 'error';
49
51
  }>;
50
52
  export default _default;
51
53
  //# sourceMappingURL=SignupCompleted.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SignupCompleted.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupCompleted"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6HA,wBAAkD"}
1
+ {"version":3,"file":"SignupCompleted.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupCompleted"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAoIU,SAAS,GAAG,OAAO;;AAH7B,wBAeG"}
@@ -1 +1 @@
1
- {"version":3,"file":"SignupField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupField"],"names":[],"mappings":"AAmDA;AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsT9B,wBAAkD"}
1
+ {"version":3,"file":"SignupField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupField"],"names":[],"mappings":"AAmDA;AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6U9B,wBASG"}
@@ -1 +1 @@
1
- {"version":3,"file":"SignupFields.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupFields"],"names":[],"mappings":"AAmEA;AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqP3C,wBAAkD"}
1
+ {"version":3,"file":"SignupFields.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupFields"],"names":[],"mappings":"AAmEA;AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsQ3C,wBAeG"}
@@ -1 +1,2 @@
1
1
  export { default as CustomForm } from "./CustomForm";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1,3 +1,4 @@
1
1
  export default function useI18n(): {
2
2
  cleanGovernmentId: (governmentId: string, countryIso: string | null) => string;
3
3
  };
4
+ //# sourceMappingURL=useI18n.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/composables/useI18n.ts"],"names":[],"mappings":"AAeA,MAAM,CAAC,OAAO,UAAU,OAAO;sCAEb,MAAM,cACR,MAAM,GAAG,IAAI;EAa5B"}
@@ -3,3 +3,4 @@ import { SignupField } from '../types/signupField';
3
3
  export default function useRelatedFields(fields?: Ref<SignupField[]> | ComputedRef<SignupField[]>): {
4
4
  shouldShowField: (field: SignupField) => boolean;
5
5
  };
6
+ //# sourceMappingURL=useRelatedFields.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useRelatedFields.d.ts","sourceRoot":"","sources":["../../src/composables/useRelatedFields.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,GAAG,EAAmB,MAAM,KAAK,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,MAAM,CAAC,OAAO,UAAU,gBAAgB,CACtC,MAAM,CAAC,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;6CAUV,OAAO;EAetD"}
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from './components/CustomForm';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}