@volverjs/ui-vue 0.0.10-beta.54 → 0.0.10-beta.56
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/auto-imports.d.ts +3 -0
- package/dist/components/VvCombobox/VvCombobox.es.js +357 -357
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.es.js +150 -44
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +6 -6
- package/dist/components/VvInputText/index.d.ts +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +966 -67
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +52 -0
- package/dist/components/VvTextarea/index.d.ts +37 -1
- package/dist/components/index.es.js +542 -284
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/InputText/InputText.test.d.ts +1 -0
- package/dist/stories/InputText/InputTextIso.stories.d.ts +10 -0
- package/dist/utils/DateUtilities.d.ts +22 -0
- package/package.json +22 -22
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCombobox/VvCombobox.vue +3 -3
- package/src/components/VvInputText/VvInputText.vue +103 -63
- package/src/components/VvInputText/index.ts +1 -1
- package/src/components/VvTextarea/VvTextarea.vue +108 -5
- package/src/components/VvTextarea/index.ts +32 -1
- package/src/stories/InputText/InputText.test.ts +25 -0
- package/src/stories/InputText/InputTextIso.stories.ts +69 -0
- package/src/utils/DateUtilities.ts +98 -0
package/auto-imports.d.ts
CHANGED
|
@@ -41,10 +41,13 @@ declare global {
|
|
|
41
41
|
const findScrollContainer: typeof import('./src/utils/DomUtilities')['findScrollContainer']
|
|
42
42
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
43
43
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
44
|
+
const getDateFromInputValue: typeof import('./src/utils/DateUtilities')['getDateFromInputValue']
|
|
45
|
+
const getInputValueFromDate: typeof import('./src/utils/DateUtilities')['getInputValueFromDate']
|
|
44
46
|
const h: typeof import('vue')['h']
|
|
45
47
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
46
48
|
const inject: typeof import('vue')['inject']
|
|
47
49
|
const injectLocal: typeof import('@vueuse/core')['injectLocal']
|
|
50
|
+
const isDateIsoString: typeof import('./src/utils/DateUtilities')['isDateIsoString']
|
|
48
51
|
const isDefined: typeof import('@vueuse/core')['isDefined']
|
|
49
52
|
const isEmpty: typeof import('./src/utils/ObjectUtilities')['isEmpty']
|
|
50
53
|
const isFunction: typeof import('./src/utils/ObjectUtilities')['isFunction']
|