@expcat/tigercat-vue 2.1.4 → 2.2.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/{chunk-4KFAGTGA.mjs → chunk-3GNK4XIP.mjs} +1 -1
- package/dist/{chunk-MWYNO42Z.mjs → chunk-5IVN54XY.mjs} +1 -1
- package/dist/{chunk-BFIYTA3E.mjs → chunk-72XR5ZIW.mjs} +6 -2
- package/dist/{chunk-XCIQNTJN.mjs → chunk-77L52YWC.mjs} +37 -5
- package/dist/chunk-7L5MXXHC.mjs +85 -0
- package/dist/{chunk-FZQAYEIU.mjs → chunk-AIONRIMJ.mjs} +1 -1
- package/dist/{chunk-ETJ4QD6U.mjs → chunk-AYCK22RG.mjs} +1 -1
- package/dist/{chunk-35JLHFUT.mjs → chunk-ETW3MBHS.mjs} +22 -1
- package/dist/{chunk-ZHAIO7DA.mjs → chunk-GAIFRCYZ.mjs} +6 -3
- package/dist/chunk-GFSZU7EJ.mjs +98 -0
- package/dist/{chunk-TQEN6GDE.mjs → chunk-IKM3NBMK.mjs} +5 -6
- package/dist/chunk-JUSJUVFQ.mjs +76 -0
- package/dist/chunk-OEHI4BZZ.mjs +168 -0
- package/dist/{chunk-ZW2VXGO3.mjs → chunk-RBST5GCI.mjs} +6 -3
- package/dist/{chunk-HSKBYNCP.mjs → chunk-ZMSGID63.mjs} +7 -5
- package/dist/components/ActivityFeed.mjs +2 -2
- package/dist/components/Anchor.mjs +1 -1
- package/dist/components/BackTop.mjs +1 -1
- package/dist/components/Calendar.d.mts +12 -3
- package/dist/components/Calendar.mjs +1 -1
- package/dist/components/Code.d.mts +19 -1
- package/dist/components/Code.mjs +1 -1
- package/dist/components/CodeEditor.d.mts +2 -2
- package/dist/components/CommentThread.mjs +2 -2
- package/dist/components/DataTableWithToolbar.mjs +1 -1
- package/dist/components/DatePicker.mjs +2 -2
- package/dist/components/Drag.d.mts +62 -0
- package/dist/components/Drag.mjs +9 -0
- package/dist/components/Footer.d.mts +10 -0
- package/dist/components/Footer.mjs +1 -1
- package/dist/components/FullscreenButton.d.mts +58 -0
- package/dist/components/FullscreenButton.mjs +10 -0
- package/dist/components/Icon.d.mts +3 -3
- package/dist/components/Loading.d.mts +1 -1
- package/dist/components/Menu.d.mts +4 -4
- package/dist/components/Menu.mjs +1 -1
- package/dist/components/NotificationCenter.mjs +2 -2
- package/dist/components/ScrollSpy.mjs +1 -1
- package/dist/components/Text.d.mts +23 -73
- package/dist/components/Text.mjs +2 -1
- package/dist/composables/useFullscreen.d.mts +14 -0
- package/dist/composables/useFullscreen.mjs +6 -0
- package/dist/index.d.mts +5 -2
- package/dist/index.mjs +37 -0
- package/package.json +17 -2
- package/dist/chunk-I77GUQV4.mjs +0 -93
|
@@ -14,7 +14,7 @@ declare const Icon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
14
14
|
* set when no custom SVG children are provided.
|
|
15
15
|
*/
|
|
16
16
|
name: {
|
|
17
|
-
type: PropType<IconName>;
|
|
17
|
+
type: PropType<IconName | (string & {})>;
|
|
18
18
|
default: undefined;
|
|
19
19
|
};
|
|
20
20
|
/**
|
|
@@ -48,7 +48,7 @@ declare const Icon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
48
48
|
* set when no custom SVG children are provided.
|
|
49
49
|
*/
|
|
50
50
|
name: {
|
|
51
|
-
type: PropType<IconName>;
|
|
51
|
+
type: PropType<IconName | (string & {})>;
|
|
52
52
|
default: undefined;
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
@@ -75,7 +75,7 @@ declare const Icon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
75
75
|
default: undefined;
|
|
76
76
|
};
|
|
77
77
|
}>> & Readonly<{}>, {
|
|
78
|
-
name: "image" | "upload" | "calendar" | "filter" | "link" | "menu" | "search" | "close" | "copy" | "error" | "phone" | "success" | "warning" | "home" | "info" | "check" | "chevron-up" | "chevron-down" | "chevron-left" | "chevron-right" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-down" | "plus" | "minus" | "edit" | "trash" | "user" | "settings" | "eye" | "eye-off" | "clock" | "more-horizontal" | "more-vertical" | "external-link" | "bell" | "mail" | "download" | "refresh" | "logout" | "lock" | "star" | "heart" | "document" | "folder" | "map-pin" | "check-circle" | "x-circle" | "users" | "dashboard";
|
|
78
|
+
name: "image" | "upload" | "calendar" | "fullscreen" | "chart" | "filter" | "link" | "menu" | "search" | "close" | "copy" | "error" | "phone" | "success" | "warning" | (string & {}) | "home" | "info" | "check" | "chevron-up" | "chevron-down" | "chevron-left" | "chevron-right" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-down" | "plus" | "minus" | "edit" | "trash" | "user" | "settings" | "eye" | "eye-off" | "clock" | "more-horizontal" | "more-vertical" | "external-link" | "bell" | "mail" | "download" | "refresh" | "logout" | "lock" | "star" | "heart" | "document" | "folder" | "map-pin" | "check-circle" | "x-circle" | "users" | "dashboard" | "fullscreen-exit" | "ticket" | "bolt" | "zap" | "chart-bar" | "database";
|
|
79
79
|
size: IconSize;
|
|
80
80
|
color: string;
|
|
81
81
|
icon: IconDefinition;
|
|
@@ -118,13 +118,13 @@ declare const Loading: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
118
118
|
};
|
|
119
119
|
}>> & Readonly<{}>, {
|
|
120
120
|
locale: Partial<TigerLocale>;
|
|
121
|
+
fullscreen: boolean;
|
|
121
122
|
style: Record<string, string | number>;
|
|
122
123
|
size: LoadingSize;
|
|
123
124
|
className: string;
|
|
124
125
|
variant: LoadingVariant;
|
|
125
126
|
color: LoadingColor;
|
|
126
127
|
text: string;
|
|
127
|
-
fullscreen: boolean;
|
|
128
128
|
spinning: boolean;
|
|
129
129
|
delay: number;
|
|
130
130
|
background: string;
|
|
@@ -40,7 +40,7 @@ interface VueMenuProps {
|
|
|
40
40
|
popupPortal?: boolean;
|
|
41
41
|
className?: string;
|
|
42
42
|
style?: MenuProps$1['style'];
|
|
43
|
-
searchable?: boolean;
|
|
43
|
+
searchable?: boolean | 'auto';
|
|
44
44
|
searchValue?: string;
|
|
45
45
|
defaultSearchValue?: string;
|
|
46
46
|
searchPlaceholder?: string;
|
|
@@ -102,7 +102,7 @@ declare const Menu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
102
102
|
default: undefined;
|
|
103
103
|
};
|
|
104
104
|
searchable: {
|
|
105
|
-
type:
|
|
105
|
+
type: PropType<boolean | "auto">;
|
|
106
106
|
default: boolean;
|
|
107
107
|
};
|
|
108
108
|
searchValue: {
|
|
@@ -181,7 +181,7 @@ declare const Menu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
181
181
|
default: undefined;
|
|
182
182
|
};
|
|
183
183
|
searchable: {
|
|
184
|
-
type:
|
|
184
|
+
type: PropType<boolean | "auto">;
|
|
185
185
|
default: boolean;
|
|
186
186
|
};
|
|
187
187
|
searchValue: {
|
|
@@ -218,7 +218,7 @@ declare const Menu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
218
218
|
emptyText: string;
|
|
219
219
|
searchPlaceholder: string;
|
|
220
220
|
className: string;
|
|
221
|
-
searchable: boolean;
|
|
221
|
+
searchable: boolean | "auto";
|
|
222
222
|
multiple: boolean;
|
|
223
223
|
searchValue: string;
|
|
224
224
|
defaultSearchValue: string;
|
package/dist/components/Menu.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
NotificationCenter,
|
|
3
3
|
NotificationCenter_default
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-AIONRIMJ.mjs";
|
|
5
5
|
import "../chunk-B4RZHDOU.mjs";
|
|
6
6
|
import "../chunk-66JX7T3H.mjs";
|
|
7
7
|
import "../chunk-DXL3YHRP.mjs";
|
|
@@ -9,7 +9,7 @@ import "../chunk-IOSUZR6Z.mjs";
|
|
|
9
9
|
import "../chunk-SZO4WL42.mjs";
|
|
10
10
|
import "../chunk-X7UK3A6Z.mjs";
|
|
11
11
|
import "../chunk-NWPALCKN.mjs";
|
|
12
|
-
import "../chunk-
|
|
12
|
+
import "../chunk-OEHI4BZZ.mjs";
|
|
13
13
|
import "../chunk-W4A6L2TC.mjs";
|
|
14
14
|
import "../chunk-FEVDV3I6.mjs";
|
|
15
15
|
import "../chunk-4KIZXFFG.mjs";
|
|
@@ -1,153 +1,102 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
-
import { TextTag, TextSize, TextWeight, TextAlign, TextColor, TextProps } from '@expcat/tigercat-core';
|
|
3
|
+
import { TextTag, TextSize, TextWeight, TextAlign, TextColor, TextCopyable, TigerLocale, TextProps } from '@expcat/tigercat-core';
|
|
4
4
|
|
|
5
5
|
type VueTextProps = TextProps;
|
|
6
6
|
declare const Text: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
7
|
-
/**
|
|
8
|
-
* HTML tag to render. Only the TextTag whitelist is allowed.
|
|
9
|
-
* @default 'p'
|
|
10
|
-
*/
|
|
11
7
|
tag: {
|
|
12
8
|
type: PropType<TextTag>;
|
|
13
9
|
default: TextTag;
|
|
14
10
|
};
|
|
15
|
-
/**
|
|
16
|
-
* Text size
|
|
17
|
-
* @default 'base'
|
|
18
|
-
*/
|
|
19
11
|
size: {
|
|
20
12
|
type: PropType<TextSize>;
|
|
21
13
|
default: TextSize;
|
|
22
14
|
};
|
|
23
|
-
/**
|
|
24
|
-
* Font weight
|
|
25
|
-
* @default 'normal'
|
|
26
|
-
*/
|
|
27
15
|
weight: {
|
|
28
16
|
type: PropType<TextWeight>;
|
|
29
17
|
default: TextWeight;
|
|
30
18
|
};
|
|
31
|
-
/**
|
|
32
|
-
* Logical text alignment (`start` / `center` / `end` / `justify`)
|
|
33
|
-
*/
|
|
34
19
|
align: {
|
|
35
20
|
type: PropType<TextAlign>;
|
|
36
21
|
};
|
|
37
|
-
/**
|
|
38
|
-
* Text color
|
|
39
|
-
* @default 'default'
|
|
40
|
-
*/
|
|
41
22
|
color: {
|
|
42
23
|
type: PropType<TextColor>;
|
|
43
24
|
default: TextColor;
|
|
44
25
|
};
|
|
45
|
-
/**
|
|
46
|
-
* Truncate text with ellipsis
|
|
47
|
-
* @default false
|
|
48
|
-
*/
|
|
49
26
|
truncate: {
|
|
50
27
|
type: BooleanConstructor;
|
|
51
28
|
default: boolean;
|
|
52
29
|
};
|
|
53
|
-
/**
|
|
54
|
-
* Italic text style
|
|
55
|
-
* @default false
|
|
56
|
-
*/
|
|
57
30
|
italic: {
|
|
58
31
|
type: BooleanConstructor;
|
|
59
32
|
default: boolean;
|
|
60
33
|
};
|
|
61
|
-
/**
|
|
62
|
-
* Underline text decoration
|
|
63
|
-
* @default false
|
|
64
|
-
*/
|
|
65
34
|
underline: {
|
|
66
35
|
type: BooleanConstructor;
|
|
67
36
|
default: boolean;
|
|
68
37
|
};
|
|
69
|
-
/**
|
|
70
|
-
* Line-through text decoration
|
|
71
|
-
* @default false
|
|
72
|
-
*/
|
|
73
38
|
lineThrough: {
|
|
74
39
|
type: BooleanConstructor;
|
|
75
40
|
default: boolean;
|
|
76
41
|
};
|
|
42
|
+
copyable: {
|
|
43
|
+
type: PropType<TextCopyable>;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
locale: {
|
|
47
|
+
type: PropType<Partial<TigerLocale>>;
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
77
50
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
78
51
|
[key: string]: any;
|
|
79
|
-
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
80
|
-
/**
|
|
81
|
-
* HTML tag to render. Only the TextTag whitelist is allowed.
|
|
82
|
-
* @default 'p'
|
|
83
|
-
*/
|
|
52
|
+
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "copy"[], "copy", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
84
53
|
tag: {
|
|
85
54
|
type: PropType<TextTag>;
|
|
86
55
|
default: TextTag;
|
|
87
56
|
};
|
|
88
|
-
/**
|
|
89
|
-
* Text size
|
|
90
|
-
* @default 'base'
|
|
91
|
-
*/
|
|
92
57
|
size: {
|
|
93
58
|
type: PropType<TextSize>;
|
|
94
59
|
default: TextSize;
|
|
95
60
|
};
|
|
96
|
-
/**
|
|
97
|
-
* Font weight
|
|
98
|
-
* @default 'normal'
|
|
99
|
-
*/
|
|
100
61
|
weight: {
|
|
101
62
|
type: PropType<TextWeight>;
|
|
102
63
|
default: TextWeight;
|
|
103
64
|
};
|
|
104
|
-
/**
|
|
105
|
-
* Logical text alignment (`start` / `center` / `end` / `justify`)
|
|
106
|
-
*/
|
|
107
65
|
align: {
|
|
108
66
|
type: PropType<TextAlign>;
|
|
109
67
|
};
|
|
110
|
-
/**
|
|
111
|
-
* Text color
|
|
112
|
-
* @default 'default'
|
|
113
|
-
*/
|
|
114
68
|
color: {
|
|
115
69
|
type: PropType<TextColor>;
|
|
116
70
|
default: TextColor;
|
|
117
71
|
};
|
|
118
|
-
/**
|
|
119
|
-
* Truncate text with ellipsis
|
|
120
|
-
* @default false
|
|
121
|
-
*/
|
|
122
72
|
truncate: {
|
|
123
73
|
type: BooleanConstructor;
|
|
124
74
|
default: boolean;
|
|
125
75
|
};
|
|
126
|
-
/**
|
|
127
|
-
* Italic text style
|
|
128
|
-
* @default false
|
|
129
|
-
*/
|
|
130
76
|
italic: {
|
|
131
77
|
type: BooleanConstructor;
|
|
132
78
|
default: boolean;
|
|
133
79
|
};
|
|
134
|
-
/**
|
|
135
|
-
* Underline text decoration
|
|
136
|
-
* @default false
|
|
137
|
-
*/
|
|
138
80
|
underline: {
|
|
139
81
|
type: BooleanConstructor;
|
|
140
82
|
default: boolean;
|
|
141
83
|
};
|
|
142
|
-
/**
|
|
143
|
-
* Line-through text decoration
|
|
144
|
-
* @default false
|
|
145
|
-
*/
|
|
146
84
|
lineThrough: {
|
|
147
85
|
type: BooleanConstructor;
|
|
148
86
|
default: boolean;
|
|
149
87
|
};
|
|
150
|
-
|
|
88
|
+
copyable: {
|
|
89
|
+
type: PropType<TextCopyable>;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
locale: {
|
|
93
|
+
type: PropType<Partial<TigerLocale>>;
|
|
94
|
+
default: undefined;
|
|
95
|
+
};
|
|
96
|
+
}>> & Readonly<{
|
|
97
|
+
onCopy?: ((...args: any[]) => any) | undefined;
|
|
98
|
+
}>, {
|
|
99
|
+
locale: Partial<TigerLocale>;
|
|
151
100
|
italic: boolean;
|
|
152
101
|
underline: boolean;
|
|
153
102
|
size: TextSize;
|
|
@@ -156,6 +105,7 @@ declare const Text: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
156
105
|
weight: TextWeight;
|
|
157
106
|
tag: TextTag;
|
|
158
107
|
lineThrough: boolean;
|
|
108
|
+
copyable: TextCopyable;
|
|
159
109
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
160
110
|
|
|
161
111
|
export { Text, type VueTextProps, Text as default };
|
package/dist/components/Text.mjs
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ref, MaybeRefOrGetter } from 'vue';
|
|
2
|
+
import { UseFullscreenOptions } from '@expcat/tigercat-core';
|
|
3
|
+
export { UseFullscreenOptions } from '@expcat/tigercat-core';
|
|
4
|
+
|
|
5
|
+
interface UseFullscreenReturn {
|
|
6
|
+
isFullscreen: ReturnType<typeof ref<boolean>>;
|
|
7
|
+
supported: boolean;
|
|
8
|
+
enter: () => Promise<void>;
|
|
9
|
+
exit: () => Promise<void>;
|
|
10
|
+
toggle: () => Promise<void>;
|
|
11
|
+
}
|
|
12
|
+
declare function useFullscreen(options?: MaybeRefOrGetter<UseFullscreenOptions>): UseFullscreenReturn;
|
|
13
|
+
|
|
14
|
+
export { type UseFullscreenReturn, useFullscreen };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@expcat/tigercat-core';
|
|
2
|
-
export { AutoCompleteOption, BackTopProps, CarouselMethods, CascaderModelValue, CascaderOption, CascaderValue, ChatWindowHandle, ColorFormat, DrawerPlacement, DrawerSize, ListItem, LoadingBarOptions, LoadingBarProps, LoadingProps, MentionOption, MessageOptions, MessageProps, NotificationOptions, NotificationProps, PrintLayoutInstance, ProgressProps, ScrollAreaInstance, SelectOption, SelectOptions, TableColumn, TigerConfig, TreeNode, TreeSelectValue, UploadFile, UseDragOptions, VirtualListHandle, VirtualTableHandle } from '@expcat/tigercat-core';
|
|
2
|
+
export { AutoCompleteOption, BackTopProps, CarouselMethods, CascaderModelValue, CascaderOption, CascaderValue, ChatWindowHandle, ColorFormat, DrawerPlacement, DrawerSize, ListItem, LoadingBarOptions, LoadingBarProps, LoadingProps, MentionOption, MessageOptions, MessageProps, NotificationOptions, NotificationProps, PrintLayoutInstance, ProgressProps, ScrollAreaInstance, SelectOption, SelectOptions, TableColumn, TigerConfig, TreeNode, TreeSelectValue, UploadFile, UseDragOptions, UseFullscreenOptions, VirtualListHandle, VirtualTableHandle } from '@expcat/tigercat-core';
|
|
3
3
|
export { ConfigProvider, VueConfigProviderProps, useTigerConfig } from './components/ConfigProvider.mjs';
|
|
4
4
|
export { Button, VueButtonProps } from './components/Button.mjs';
|
|
5
5
|
export { ButtonGroup, VueButtonGroupProps } from './components/ButtonGroup.mjs';
|
|
@@ -142,6 +142,9 @@ export { Affix, AffixProps, VueAffixProps } from './components/Affix.mjs';
|
|
|
142
142
|
export { UseChartInteractionOptions, UseChartInteractionReturn, useChartInteraction } from './composables/useChartInteraction.mjs';
|
|
143
143
|
export { ResponsiveChartLayout, useResponsiveChartSize } from './composables/useResponsiveChartSize.mjs';
|
|
144
144
|
export { UseDragReturn, useDrag } from './composables/useDrag.mjs';
|
|
145
|
+
export { UseFullscreenReturn, useFullscreen } from './composables/useFullscreen.mjs';
|
|
146
|
+
export { FullscreenButton as Fullscreen, FullscreenButton, FullscreenButtonProps, VueFullscreenButtonProps } from './components/FullscreenButton.mjs';
|
|
147
|
+
export { Drag, DragProps, VueDragProps } from './components/Drag.mjs';
|
|
145
148
|
export { Splitter, VueSplitterProps } from './components/Splitter.mjs';
|
|
146
149
|
export { Resizable, VueResizableProps } from './components/Resizable.mjs';
|
|
147
150
|
export { ScrollArea, ScrollAreaProps, VueScrollAreaProps } from './components/ScrollArea.mjs';
|
|
@@ -168,6 +171,6 @@ import 'vue';
|
|
|
168
171
|
* Vue 3 components for Tigercat UI library
|
|
169
172
|
*/
|
|
170
173
|
|
|
171
|
-
declare const version = "2.
|
|
174
|
+
declare const version = "2.2.0";
|
|
172
175
|
|
|
173
176
|
export { version };
|
package/dist/index.mjs
CHANGED
|
@@ -323,6 +323,7 @@ export {
|
|
|
323
323
|
anchorNestedListClasses,
|
|
324
324
|
animationDelayClasses,
|
|
325
325
|
announceToScreenReader,
|
|
326
|
+
appendCalendarEventCountLabel,
|
|
326
327
|
appendDefaultTaskBoardCard,
|
|
327
328
|
appendDefaultTaskBoardColumn,
|
|
328
329
|
appendSignaturePoint,
|
|
@@ -417,6 +418,7 @@ export {
|
|
|
417
418
|
buildAffixPlaceholderStyle,
|
|
418
419
|
buildAffixRootMargin,
|
|
419
420
|
buildAffixStyle,
|
|
421
|
+
buildCalendarDateCellExtra,
|
|
420
422
|
buildChartLegendItems,
|
|
421
423
|
buildChartSeriesKeys,
|
|
422
424
|
buildChatMessageStatusInfo,
|
|
@@ -455,6 +457,8 @@ export {
|
|
|
455
457
|
calculateTransform,
|
|
456
458
|
calculateVirtualColumnRange,
|
|
457
459
|
calculateVirtualRange,
|
|
460
|
+
calendarDateCellDotClasses,
|
|
461
|
+
calendarDateCellExtraClasses,
|
|
458
462
|
calendarGridClasses,
|
|
459
463
|
calendarHeaderClasses,
|
|
460
464
|
calendarNavButtonClasses,
|
|
@@ -594,6 +598,7 @@ export {
|
|
|
594
598
|
clearChartAxisTickCache,
|
|
595
599
|
clearFieldErrors,
|
|
596
600
|
clearPieArcCache,
|
|
601
|
+
clearRegisteredIcons,
|
|
597
602
|
clearSelectValue,
|
|
598
603
|
clearSignatureStrokes,
|
|
599
604
|
clearTextareaAutoResize,
|
|
@@ -954,6 +959,7 @@ export {
|
|
|
954
959
|
evaluateFormConditions,
|
|
955
960
|
exclamationCircleIcon,
|
|
956
961
|
exclusiveRangeToInclusive,
|
|
962
|
+
exitElementFullscreen,
|
|
957
963
|
expandChevronIcon16PathD,
|
|
958
964
|
exportChartPng,
|
|
959
965
|
exportSignatureDataUrl,
|
|
@@ -1011,6 +1017,7 @@ export {
|
|
|
1011
1017
|
findHotkeyMatch,
|
|
1012
1018
|
findLastEnabledIndex,
|
|
1013
1019
|
findMarkdownHotkeyMatch,
|
|
1020
|
+
findNearestOverflowAncestor,
|
|
1014
1021
|
findNearestPointIndex,
|
|
1015
1022
|
findNearestSeriesPoint,
|
|
1016
1023
|
findNextEnabledIndex,
|
|
@@ -1059,6 +1066,7 @@ export {
|
|
|
1059
1066
|
formatBytes,
|
|
1060
1067
|
formatCalendarDayLabel,
|
|
1061
1068
|
formatCalendarDayNumber,
|
|
1069
|
+
formatCalendarEventCountLabel,
|
|
1062
1070
|
formatChartTemplate,
|
|
1063
1071
|
formatChatTime,
|
|
1064
1072
|
formatColorPickerSelectPreset,
|
|
@@ -1110,6 +1118,7 @@ export {
|
|
|
1110
1118
|
formatTimePickerDisplay,
|
|
1111
1119
|
formatTreeSelectNodeLabel,
|
|
1112
1120
|
freezeTableColumnWidths,
|
|
1121
|
+
fullscreenButtonClasses,
|
|
1113
1122
|
fullscreenExitIcon,
|
|
1114
1123
|
fullscreenIcon,
|
|
1115
1124
|
funnelSegmentTransitionClasses,
|
|
@@ -1199,6 +1208,8 @@ export {
|
|
|
1199
1208
|
getCalendarDayClasses,
|
|
1200
1209
|
getCalendarDayKeyAction,
|
|
1201
1210
|
getCalendarDays,
|
|
1211
|
+
getCalendarEventDotStyle,
|
|
1212
|
+
getCalendarEventsForDate,
|
|
1202
1213
|
getCalendarLabels,
|
|
1203
1214
|
getCalendarMonthClasses,
|
|
1204
1215
|
getCalendarMonthDaysCacheSize,
|
|
@@ -1434,6 +1445,8 @@ export {
|
|
|
1434
1445
|
getFormWizardHeaderClasses,
|
|
1435
1446
|
getFormWizardLabels,
|
|
1436
1447
|
getFormWizardWrapperClasses,
|
|
1448
|
+
getFullscreenElement,
|
|
1449
|
+
getFullscreenLabels,
|
|
1437
1450
|
getFunnelGradientPrefix,
|
|
1438
1451
|
getGanttDependencyPath,
|
|
1439
1452
|
getGanttTaskAriaLabel,
|
|
@@ -1522,6 +1535,7 @@ export {
|
|
|
1522
1535
|
getKbdVariantClasses,
|
|
1523
1536
|
getLastEnabledFileIndex,
|
|
1524
1537
|
getLayoutContentClasses,
|
|
1538
|
+
getLayoutFooterClasses,
|
|
1525
1539
|
getLayoutHeaderClasses,
|
|
1526
1540
|
getLayoutRootClasses,
|
|
1527
1541
|
getLayoutSidebarClasses,
|
|
@@ -2195,6 +2209,7 @@ export {
|
|
|
2195
2209
|
isDividerHorizontal,
|
|
2196
2210
|
isDragEnabled,
|
|
2197
2211
|
isDrawerSwipeCloseGesture,
|
|
2212
|
+
isElementFullscreen,
|
|
2198
2213
|
isEnterKey,
|
|
2199
2214
|
isEscapeKey,
|
|
2200
2215
|
isEventOutside,
|
|
@@ -2203,6 +2218,7 @@ export {
|
|
|
2203
2218
|
isFocusInsideNavigationMenu,
|
|
2204
2219
|
isFormItemGroupControl,
|
|
2205
2220
|
isFormValidationCancelled,
|
|
2221
|
+
isFullscreenSupported,
|
|
2206
2222
|
isHTMLElement,
|
|
2207
2223
|
isHourOptionDisabled,
|
|
2208
2224
|
isHttpResultStatus,
|
|
@@ -2279,6 +2295,7 @@ export {
|
|
|
2279
2295
|
isTabPaneType,
|
|
2280
2296
|
isTableCellEditable,
|
|
2281
2297
|
isTablet,
|
|
2298
|
+
isTextCopyable,
|
|
2282
2299
|
isTimeInRange,
|
|
2283
2300
|
isTimePickerDesktopLayout,
|
|
2284
2301
|
isTimePickerRangeComplete,
|
|
@@ -2313,6 +2330,7 @@ export {
|
|
|
2313
2330
|
layoutBarRects,
|
|
2314
2331
|
layoutContentClasses,
|
|
2315
2332
|
layoutFooterClasses,
|
|
2333
|
+
layoutFooterCompactClasses,
|
|
2316
2334
|
layoutFunnel,
|
|
2317
2335
|
layoutGantt,
|
|
2318
2336
|
layoutGauge,
|
|
@@ -2752,13 +2770,17 @@ export {
|
|
|
2752
2770
|
redoFormHistory,
|
|
2753
2771
|
registerBuiltInThemes,
|
|
2754
2772
|
registerEscapeDismiss,
|
|
2773
|
+
registerIcon,
|
|
2774
|
+
registerIcons,
|
|
2755
2775
|
registerImageGroupItem,
|
|
2776
|
+
registeredIconNames,
|
|
2756
2777
|
remapCropRect,
|
|
2757
2778
|
rememberCascaderLabel,
|
|
2758
2779
|
rememberSelectOptions,
|
|
2759
2780
|
rememberTreeSelectLabel,
|
|
2760
2781
|
removeCssVarsCached,
|
|
2761
2782
|
removeTagAt,
|
|
2783
|
+
renderCodeHighlightHtml,
|
|
2762
2784
|
renderMarkdownInline,
|
|
2763
2785
|
renderMarkdownToHtml,
|
|
2764
2786
|
renderTokenHtml,
|
|
@@ -2773,6 +2795,7 @@ export {
|
|
|
2773
2795
|
reorderTableRowsByKey,
|
|
2774
2796
|
replaceAnchorHash,
|
|
2775
2797
|
replaceKeys,
|
|
2798
|
+
requestElementFullscreen,
|
|
2776
2799
|
resetAreaGradientCounter,
|
|
2777
2800
|
resetAriaIdCounter,
|
|
2778
2801
|
resetBarGradientCounter,
|
|
@@ -2863,6 +2886,7 @@ export {
|
|
|
2863
2886
|
resolveFormConditionState,
|
|
2864
2887
|
resolveFormFieldConditionState,
|
|
2865
2888
|
resolveFormLabelAlign,
|
|
2889
|
+
resolveFullscreenTarget,
|
|
2866
2890
|
resolveGutter,
|
|
2867
2891
|
resolveHeatmapRenderMode,
|
|
2868
2892
|
resolveHighlightCaseSensitive,
|
|
@@ -2923,6 +2947,7 @@ export {
|
|
|
2923
2947
|
resolveMenuCollapsed,
|
|
2924
2948
|
resolveMenuIconKind,
|
|
2925
2949
|
resolveMenuMode,
|
|
2950
|
+
resolveMenuSearchQuery,
|
|
2926
2951
|
resolveMenuTabStopKey,
|
|
2927
2952
|
resolveMessageDuration,
|
|
2928
2953
|
resolveMotionDuration,
|
|
@@ -2983,6 +3008,8 @@ export {
|
|
|
2983
3008
|
resolveTaskBoardView,
|
|
2984
3009
|
resolveTextAlign,
|
|
2985
3010
|
resolveTextColor,
|
|
3011
|
+
resolveTextCopyContent,
|
|
3012
|
+
resolveTextCopyableOptions,
|
|
2986
3013
|
resolveTextSize,
|
|
2987
3014
|
resolveTextTag,
|
|
2988
3015
|
resolveTextWeight,
|
|
@@ -3139,6 +3166,7 @@ export {
|
|
|
3139
3166
|
shouldShowAutoCompleteClear,
|
|
3140
3167
|
shouldShowBackTop,
|
|
3141
3168
|
shouldShowCascaderClear,
|
|
3169
|
+
shouldShowMenuSearch,
|
|
3142
3170
|
shouldShowSelectClear,
|
|
3143
3171
|
shouldShowTreeSelectClear,
|
|
3144
3172
|
shouldSkipNavigationMenuOpenDelay,
|
|
@@ -3263,6 +3291,7 @@ export {
|
|
|
3263
3291
|
submenuExpandIconPopupClasses,
|
|
3264
3292
|
submenuHeightTransitionClasses,
|
|
3265
3293
|
submenuTitleClasses,
|
|
3294
|
+
subscribeFullscreenChange,
|
|
3266
3295
|
subscribeTableCardViewport,
|
|
3267
3296
|
successCircleSolidIcon20PathD,
|
|
3268
3297
|
sunIcon,
|
|
@@ -3347,6 +3376,10 @@ export {
|
|
|
3347
3376
|
terminalIcon,
|
|
3348
3377
|
textAlignClasses,
|
|
3349
3378
|
textColorClasses,
|
|
3379
|
+
textCopyableBodyClasses,
|
|
3380
|
+
textCopyableButtonClasses,
|
|
3381
|
+
textCopyableLiveClasses,
|
|
3382
|
+
textCopyableRootClasses,
|
|
3350
3383
|
textDecorationClasses,
|
|
3351
3384
|
textSizeClasses,
|
|
3352
3385
|
textWeightClasses,
|
|
@@ -3468,6 +3501,7 @@ export {
|
|
|
3468
3501
|
uniqueMenuKeys,
|
|
3469
3502
|
uniqueTreeKeys,
|
|
3470
3503
|
unlockIcon,
|
|
3504
|
+
unregisterIcon,
|
|
3471
3505
|
unregisterImageGroupItem,
|
|
3472
3506
|
updateCronExpressionField,
|
|
3473
3507
|
updateDragOffset,
|
|
@@ -3846,6 +3880,9 @@ export { Affix } from './components/Affix.mjs';
|
|
|
3846
3880
|
export { useChartInteraction } from './composables/useChartInteraction.mjs';
|
|
3847
3881
|
export { useResponsiveChartSize } from './composables/useResponsiveChartSize.mjs';
|
|
3848
3882
|
export { useDrag } from './composables/useDrag.mjs';
|
|
3883
|
+
export { useFullscreen } from './composables/useFullscreen.mjs';
|
|
3884
|
+
export { FullscreenButton, FullscreenButton as Fullscreen } from './components/FullscreenButton.mjs';
|
|
3885
|
+
export { Drag } from './components/Drag.mjs';
|
|
3849
3886
|
export { Splitter } from './components/Splitter.mjs';
|
|
3850
3887
|
export { Resizable } from './components/Resizable.mjs';
|
|
3851
3888
|
export { ScrollArea } from './components/ScrollArea.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expcat/tigercat-vue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Vue 3 components for Tigercat UI library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Yizhe Wang",
|
|
@@ -300,6 +300,11 @@
|
|
|
300
300
|
"import": "./dist/components/DonutChart.mjs",
|
|
301
301
|
"default": "./dist/components/DonutChart.mjs"
|
|
302
302
|
},
|
|
303
|
+
"./Drag": {
|
|
304
|
+
"types": "./dist/components/Drag.d.mts",
|
|
305
|
+
"import": "./dist/components/Drag.mjs",
|
|
306
|
+
"default": "./dist/components/Drag.mjs"
|
|
307
|
+
},
|
|
303
308
|
"./Drawer": {
|
|
304
309
|
"types": "./dist/components/Drawer.d.mts",
|
|
305
310
|
"import": "./dist/components/Drawer.mjs",
|
|
@@ -360,6 +365,11 @@
|
|
|
360
365
|
"import": "./dist/components/FormWizard.mjs",
|
|
361
366
|
"default": "./dist/components/FormWizard.mjs"
|
|
362
367
|
},
|
|
368
|
+
"./FullscreenButton": {
|
|
369
|
+
"types": "./dist/components/FullscreenButton.d.mts",
|
|
370
|
+
"import": "./dist/components/FullscreenButton.mjs",
|
|
371
|
+
"default": "./dist/components/FullscreenButton.mjs"
|
|
372
|
+
},
|
|
363
373
|
"./FunnelChart": {
|
|
364
374
|
"types": "./dist/components/FunnelChart.d.mts",
|
|
365
375
|
"import": "./dist/components/FunnelChart.mjs",
|
|
@@ -899,6 +909,11 @@
|
|
|
899
909
|
"types": "./dist/composables/useDrag.d.mts",
|
|
900
910
|
"import": "./dist/composables/useDrag.mjs",
|
|
901
911
|
"default": "./dist/composables/useDrag.mjs"
|
|
912
|
+
},
|
|
913
|
+
"./useFullscreen": {
|
|
914
|
+
"types": "./dist/composables/useFullscreen.d.mts",
|
|
915
|
+
"import": "./dist/composables/useFullscreen.mjs",
|
|
916
|
+
"default": "./dist/composables/useFullscreen.mjs"
|
|
902
917
|
}
|
|
903
918
|
},
|
|
904
919
|
"files": [
|
|
@@ -908,7 +923,7 @@
|
|
|
908
923
|
"access": "public"
|
|
909
924
|
},
|
|
910
925
|
"dependencies": {
|
|
911
|
-
"@expcat/tigercat-core": "2.
|
|
926
|
+
"@expcat/tigercat-core": "2.2.0"
|
|
912
927
|
},
|
|
913
928
|
"devDependencies": {
|
|
914
929
|
"@types/node": "^26.1.1",
|