@citruslime/ui 2.1.3 → 2.1.4-beta.1
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/citrus-lime-ui.es.js +109 -109
- package/dist/citrus-lime-ui.umd.js +2 -2
- package/dist/components/accordion/cl-ui-accordion.d.ts +5 -13
- package/dist/components/accordion/item/cl-ui-accordion-item.d.ts +7 -11
- package/dist/components/app/cl-ui-app.d.ts +5 -41
- package/dist/components/button/cl-ui-button.d.ts +14 -15
- package/dist/components/calendar/cl-ui-calendar.d.ts +101 -2
- package/dist/components/card/cl-ui-card.d.ts +7 -7
- package/dist/components/combo-box/cl-ui-combo-box.d.ts +40 -2252
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.d.ts +29 -782
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.d.ts +10 -10
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.d.ts +17 -25
- package/dist/components/grid/action-row/cl-ui-grid-action-row.d.ts +11 -72
- package/dist/components/grid/body/cl-ui-grid-body.d.ts +17 -826
- package/dist/components/grid/body/cl-ui-grid-cell-value.d.ts +7 -628
- package/dist/components/grid/body/cl-ui-grid-cell.d.ts +10 -659
- package/dist/components/grid/body/cl-ui-grid-row.d.ts +9 -694
- package/dist/components/grid/cl-ui-grid.d.ts +15 -3110
- package/dist/components/grid/footer/cl-ui-grid-footer.d.ts +8 -644
- package/dist/components/grid/header/cl-ui-grid-filter.d.ts +10 -696
- package/dist/components/grid/header/cl-ui-grid-header.d.ts +11 -757
- package/dist/components/grid/header/cl-ui-grid-method-selector.d.ts +12 -25
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.d.ts +4 -682
- package/dist/components/header/menu/cl-ui-header-menu.d.ts +13 -18
- package/dist/components/input/cl-ui-input.d.ts +74 -327
- package/dist/components/language-switcher/cl-ui-language-switcher.d.ts +10 -20
- package/dist/components/login/cl-ui-login.d.ts +8 -689
- package/dist/components/modal/cl-ui-modal.d.ts +11 -17
- package/dist/components/navigation/cl-ui-navigation.d.ts +2 -20
- package/dist/components/navigation/group/cl-ui-navigation-group.d.ts +3 -3
- package/dist/components/navigation/icon/cl-ui-navigation-icon.d.ts +5 -5
- package/dist/components/notification/cl-ui-notification.d.ts +8 -17
- package/dist/components/slider/cl-ui-slider.d.ts +20 -43
- package/dist/components/tab/cl-ui-tab.d.ts +11 -21
- package/dist/components/tab/header/cl-ui-tab-header.d.ts +12 -19
- package/dist/style.css +1 -1
- package/package.json +5 -5
|
@@ -1,57 +1,44 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type
|
|
3
|
-
import type { DefineComponent, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
4
|
-
import { type FilterMethodType, type FilterArg, type FilterMethod } from '../types';
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
+
import { type FilterArg, FilterOperation, type GridColumn } from '../types';
|
|
5
3
|
declare const _sfc_main: DefineComponent<{
|
|
6
4
|
filter: {
|
|
7
|
-
type:
|
|
5
|
+
type: __PropType<FilterArg | undefined>;
|
|
8
6
|
required: true;
|
|
9
7
|
};
|
|
10
8
|
column: {
|
|
11
|
-
type:
|
|
9
|
+
type: __PropType<GridColumn<Record<string, unknown>>>;
|
|
12
10
|
required: true;
|
|
13
11
|
};
|
|
14
12
|
defaultOperation: {
|
|
15
|
-
type:
|
|
13
|
+
type: __PropType<FilterOperation>;
|
|
16
14
|
required: true;
|
|
17
15
|
};
|
|
18
16
|
firstHalf: {
|
|
19
|
-
type:
|
|
17
|
+
type: __PropType<boolean | undefined>;
|
|
20
18
|
required: false;
|
|
21
19
|
default: boolean;
|
|
22
20
|
};
|
|
23
|
-
}, {
|
|
24
|
-
props: any;
|
|
25
|
-
emit: (e: 'update:filter', value: FilterArg) => void;
|
|
26
|
-
t: ComposerTranslation<{
|
|
27
|
-
[x: string]: LocaleMessage<VueMessageType>;
|
|
28
|
-
}, string, RemoveIndexSignature<{
|
|
29
|
-
[x: string]: LocaleMessageValue<VueMessageType>;
|
|
30
|
-
}>, never, string, string>;
|
|
31
|
-
allowedFilterMethods: ComputedRef<FilterMethod[]>;
|
|
32
|
-
currentFilterMethod: ComputedRef<FilterMethod | undefined>;
|
|
33
|
-
setFilterMethod: (filterMethod: FilterMethodType) => void;
|
|
34
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:filter"[], "update:filter", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
21
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:filter"[], "update:filter", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
35
22
|
filter: {
|
|
36
|
-
type:
|
|
23
|
+
type: __PropType<FilterArg | undefined>;
|
|
37
24
|
required: true;
|
|
38
25
|
};
|
|
39
26
|
column: {
|
|
40
|
-
type:
|
|
27
|
+
type: __PropType<GridColumn<Record<string, unknown>>>;
|
|
41
28
|
required: true;
|
|
42
29
|
};
|
|
43
30
|
defaultOperation: {
|
|
44
|
-
type:
|
|
31
|
+
type: __PropType<FilterOperation>;
|
|
45
32
|
required: true;
|
|
46
33
|
};
|
|
47
34
|
firstHalf: {
|
|
48
|
-
type:
|
|
35
|
+
type: __PropType<boolean | undefined>;
|
|
49
36
|
required: false;
|
|
50
37
|
default: boolean;
|
|
51
38
|
};
|
|
52
39
|
}>> & {
|
|
53
40
|
"onUpdate:filter"?: ((...args: any[]) => any) | undefined;
|
|
54
41
|
}, {
|
|
55
|
-
firstHalf: boolean;
|
|
42
|
+
firstHalf: boolean | undefined;
|
|
56
43
|
}>;
|
|
57
44
|
export default _sfc_main;
|