@a-vision-software/vue-input-components 1.2.13 → 1.3.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/dist/types.d.ts +3 -0
- package/dist/vue-input-components.cjs.js +1 -1
- package/dist/vue-input-components.css +1 -1
- package/dist/vue-input-components.es.js +3413 -3235
- package/dist/vue-input-components.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/TextInput.vue +29 -76
- package/src/index.ts +2 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as Action } from './components/Action';
|
|
2
2
|
import { Component } from 'vue';
|
|
3
|
+
import { default as Dropdown } from './components/Dropdown';
|
|
3
4
|
import { default as FileUpload } from './components/FileUpload';
|
|
4
5
|
import { default as Navigation } from './components/Navigation';
|
|
5
6
|
import { default as TextInput } from './components/TextInput';
|
|
@@ -22,6 +23,8 @@ export declare interface ActionProps {
|
|
|
22
23
|
variant?: 'solid' | 'transparent';
|
|
23
24
|
}
|
|
24
25
|
|
|
26
|
+
export { Dropdown }
|
|
27
|
+
|
|
25
28
|
export { FileUpload }
|
|
26
29
|
|
|
27
30
|
export declare type FileUploadComponent = Component<FileUploadProps>;
|