@fewangsit/wangsvue-fats 1.0.0-alpha.97 → 1.0.0-alpha.99
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/components/index.d.ts +1 -0
- package/components/tabmenu/TabMenu.vue.d.ts +1 -1
- package/package.json +1 -1
- package/plugins/WangsVue.d.ts +4 -0
- package/stats.html +1 -1
- package/wangsvue-fats.js +8657 -8353
- package/wangsvue-fats.system.js +70 -70
package/components/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { default as InputBadge } from './inputbadge/InputBadge.vue';
|
|
|
34
34
|
export { default as InputCurrency } from './inputcurrency/InputCurrency.vue';
|
|
35
35
|
export { default as InputEmail } from './inputemail/InputEmail.vue';
|
|
36
36
|
export { default as InputNumber } from './inputnumber/InputNumber.vue';
|
|
37
|
+
export { default as InputOtp } from './inputotp/InputOtp.vue';
|
|
37
38
|
export { default as InputPassword } from './inputpassword/InputPassword.vue';
|
|
38
39
|
export { default as InputPhoneNumber } from './inputphonenumber/InputPhoneNumber.vue';
|
|
39
40
|
export { default as InputRangeNumber } from './inputrangenumber/InputRangeNumber.vue';
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import { TabMenuProps as WangsUITabMenuProps } from '@wangs-ui/core';
|
|
12
|
+
import { MenuItem } from '@wangs-ui/core/dist/types/components/menuitem/menuitem.type';
|
|
12
13
|
|
|
13
|
-
import { MenuItem } from '../menuitem';
|
|
14
14
|
import { ClassComponent } from '../ts-helpers';
|
|
15
15
|
|
|
16
16
|
/**
|
package/package.json
CHANGED
package/plugins/WangsVue.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { Plugin } from 'vue';
|
|
2
|
+
import { InputOtpRawPreset } from '@wangs-ui/core/dist/types/components/inputotp/inputotp.type';
|
|
3
|
+
import { TabMenuRawPreset } from '@wangs-ui/core/dist/types/components/tabmenu/tabmenu.type';
|
|
2
4
|
import { AnimationDefaultConfig } from '../components/animation/Animation.vue.d';
|
|
3
5
|
import { BadgeComponentConfigs } from '../components/badge/Badge.vue.d';
|
|
4
6
|
import {
|
|
@@ -100,6 +102,8 @@ export interface ComponentPresetOptions {
|
|
|
100
102
|
overlaypanel: OverlayPanelPassThroughOptions;
|
|
101
103
|
loading: LoadingPresetOptions;
|
|
102
104
|
username: UserNamePresetOptions;
|
|
105
|
+
inputotp: InputOtpRawPreset;
|
|
106
|
+
tabmenu: TabMenuRawPreset;
|
|
103
107
|
[key: string]: any;
|
|
104
108
|
}
|
|
105
109
|
export type WangsVueComponentConfig<
|