tsv2-library 1.0.61-alpha.90 → 1.0.61-alpha.93

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tsv2-library",
3
3
  "author": "fixedassetv2-fe",
4
- "version": "1.0.61-alpha.90",
4
+ "version": "1.0.61-alpha.93",
5
5
  "license": "ISC",
6
6
  "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
7
  "repository": {
@@ -0,0 +1,30 @@
1
+ import { DefineComponent } from 'vue';
2
+ import {
3
+ InputCurrencyEmits,
4
+ InputCurrencyProps,
5
+ } from '../InputCurrency/InputCurrency.vue.d';
6
+
7
+ export interface CurrencyValue {
8
+ currency: string; // Currency ISO Code
9
+ value?: number;
10
+ }
11
+
12
+ /**
13
+ * InputCurrencyReference component props
14
+ */
15
+ export interface InputCurrencyReferenceProps extends InputCurrencyProps {
16
+ inputWrapperClass?: string;
17
+ inputClass?: string;
18
+ }
19
+
20
+ /**
21
+ * InputCurrencyReference component emits
22
+ */
23
+ export type InputCurrencyReferenceEmits = InputCurrencyEmits;
24
+
25
+ declare const InputCurrencyReference: DefineComponent<
26
+ InputCurrencyReferenceProps,
27
+ InputCurrencyReferenceEmits
28
+ >;
29
+
30
+ export default InputCurrencyReference;