@unizhen/ui 0.0.45 → 0.0.46
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/lib/components/searchBar/index.vue.d.ts +2 -1
- package/lib/ui.js +783 -744
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PropType, DefineComponent, ExtractPropTypes, Ref, VNodeChild, ComponentOptionsMixin, PublicProps, Component, ComputedRef, ComponentProvideOptions, SlotsType, CSSProperties, TextareaHTMLAttributes, InputHTMLAttributes, HTMLAttributes, VNode } from 'vue';
|
|
2
2
|
import { IUzSearchBars } from './interface';
|
|
3
3
|
import { ObjectKey, Fn } from 'components/interface';
|
|
4
|
+
import { default as dayjs } from 'dayjs';
|
|
4
5
|
import { Depth } from 'naive-ui/es/icon/src/Icon';
|
|
5
6
|
import { Theme } from 'naive-ui/es/_mixins';
|
|
6
7
|
import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
|
|
@@ -3651,7 +3652,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3651
3652
|
isMobile: ComputedRef<boolean>;
|
|
3652
3653
|
showDropdown: Ref<boolean, boolean>;
|
|
3653
3654
|
dropdownOptions: Ref<any[], any[]>;
|
|
3654
|
-
dayjs: typeof
|
|
3655
|
+
dayjs: typeof dayjs;
|
|
3655
3656
|
updateValue: (item: IUzFormItem, value: any, option?: SelectOption) => Promise<void>;
|
|
3656
3657
|
selectFallback: (value: any) => any | boolean;
|
|
3657
3658
|
showPlaceholder: (item: IUzFormItem) => any;
|