@pantograph/vue 0.33.1 → 0.33.3
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/ColorSwatch-BgMNdBK_.js +4 -0
- package/dist/{ColorSwatch-D8i1r-KN.js → ColorSwatch-DxQt9OuK.js} +1 -1
- package/dist/Combobox/types.d.ts +1 -0
- package/dist/Comment/CommentMention.d.ts +2 -0
- package/dist/ConfigProvider/index.d.ts +1 -0
- package/dist/GraphicalObject/index.d.ts +1 -0
- package/dist/IndentLevel/IndentLevel.d.ts +5 -56
- package/dist/Popover/index.d.ts +1 -0
- package/dist/Tree/index.d.ts +1 -0
- package/dist/index-Dfhs4Ees.js +12 -0
- package/dist/{index-DgbvxsPr.js → index-WVq-uSZI.js} +3275 -3216
- package/dist/index.js +285 -274
- package/dist/index.umd.cjs +1 -1
- package/dist/style/index.css +1 -1
- package/dist/use/index.js +1 -1
- package/dist/use/index.umd.cjs +1 -1
- package/package.json +2 -2
- package/dist/ColorSwatch-DHmBvjfa.js +0 -4
- package/dist/index-w7ro9awO.js +0 -12
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-Dfhs4Ees.js");exports.default=e._sfc_main;
|
package/dist/Combobox/types.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ export interface ComboboxProps extends Partial<Pick<PopoverProps, 'placement' |
|
|
|
90
90
|
optionCls?: ClassValue;
|
|
91
91
|
tagCls?: ClassValue;
|
|
92
92
|
popupCls?: ClassValue;
|
|
93
|
+
containerCls?: ClassValue;
|
|
93
94
|
labelCls?: ClassValue;
|
|
94
95
|
optionsCls?: ClassValue;
|
|
95
96
|
optionTextCls?: ClassValue;
|
|
@@ -61,6 +61,7 @@ declare function __VLS_template(): {
|
|
|
61
61
|
readonly optionCls?: import('clsx').ClassValue;
|
|
62
62
|
readonly tagCls?: import('clsx').ClassValue;
|
|
63
63
|
readonly popupCls?: import('clsx').ClassValue;
|
|
64
|
+
readonly containerCls?: import('clsx').ClassValue;
|
|
64
65
|
readonly labelCls?: import('clsx').ClassValue;
|
|
65
66
|
readonly optionsCls?: import('clsx').ClassValue;
|
|
66
67
|
readonly optionTextCls?: import('clsx').ClassValue;
|
|
@@ -888,6 +889,7 @@ declare const __VLS_component: import('vue').DefineComponent<ComboboxProps, {
|
|
|
888
889
|
readonly optionCls?: import('clsx').ClassValue;
|
|
889
890
|
readonly tagCls?: import('clsx').ClassValue;
|
|
890
891
|
readonly popupCls?: import('clsx').ClassValue;
|
|
892
|
+
readonly containerCls?: import('clsx').ClassValue;
|
|
891
893
|
readonly labelCls?: import('clsx').ClassValue;
|
|
892
894
|
readonly optionsCls?: import('clsx').ClassValue;
|
|
893
895
|
readonly optionTextCls?: import('clsx').ClassValue;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { default as ConfigProvider, provideConfigContext, injectConfigContext, useConfig, FlipOnDir, Direction, ConfigProviderProps } from './ConfigProvider';
|
|
2
2
|
declare const ConfigProviderPlugin: import('vue').Plugin;
|
|
3
3
|
export { ConfigProvider, ConfigProviderPlugin, provideConfigContext, injectConfigContext, useConfig, type FlipOnDir, type Direction, type ConfigProviderProps, };
|
|
4
|
+
export * from './utils';
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
1
|
import { IndentLevelShowLine, IndentLevelSize } from './IndentLevel.model';
|
|
3
2
|
import { ClassValue } from 'clsx';
|
|
4
3
|
import { Direction } from '../ConfigProvider';
|
|
@@ -14,7 +13,7 @@ export interface IndentLevelProps {
|
|
|
14
13
|
/**
|
|
15
14
|
* Controls the visibility and placement of lines indicating hierarchical relationships
|
|
16
15
|
*/
|
|
17
|
-
showLine?: IndentLevelShowLine | number | false;
|
|
16
|
+
showLine?: IndentLevelShowLine | string | number | false;
|
|
18
17
|
/**
|
|
19
18
|
* Whether the current level contains nested or child elements
|
|
20
19
|
*/
|
|
@@ -59,61 +58,11 @@ declare function __VLS_template(): {
|
|
|
59
58
|
rootEl: HTMLDivElement;
|
|
60
59
|
};
|
|
61
60
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
62
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').
|
|
63
|
-
size:
|
|
64
|
-
type: PropType<IndentLevelSize>;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
showLine: {
|
|
68
|
-
type: PropType<IndentLevelShowLine | number | false>;
|
|
69
|
-
validator: (value: any) => boolean;
|
|
70
|
-
};
|
|
71
|
-
children: BooleanConstructor;
|
|
72
|
-
level: {
|
|
73
|
-
type: PropType<number | string>;
|
|
74
|
-
default: number;
|
|
75
|
-
};
|
|
76
|
-
expanded: BooleanConstructor;
|
|
77
|
-
dir: PropType<Direction>;
|
|
78
|
-
loading: BooleanConstructor;
|
|
79
|
-
class: PropType<ClassValue>;
|
|
80
|
-
branchIcon: {
|
|
81
|
-
type: StringConstructor;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
noRotateBranch: BooleanConstructor;
|
|
85
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
86
|
-
size: {
|
|
87
|
-
type: PropType<IndentLevelSize>;
|
|
88
|
-
default: string;
|
|
89
|
-
};
|
|
90
|
-
showLine: {
|
|
91
|
-
type: PropType<IndentLevelShowLine | number | false>;
|
|
92
|
-
validator: (value: any) => boolean;
|
|
93
|
-
};
|
|
94
|
-
children: BooleanConstructor;
|
|
95
|
-
level: {
|
|
96
|
-
type: PropType<number | string>;
|
|
97
|
-
default: number;
|
|
98
|
-
};
|
|
99
|
-
expanded: BooleanConstructor;
|
|
100
|
-
dir: PropType<Direction>;
|
|
101
|
-
loading: BooleanConstructor;
|
|
102
|
-
class: PropType<ClassValue>;
|
|
103
|
-
branchIcon: {
|
|
104
|
-
type: StringConstructor;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
|
-
noRotateBranch: BooleanConstructor;
|
|
108
|
-
}>> & Readonly<{}>, {
|
|
109
|
-
children: boolean;
|
|
110
|
-
size: "2xsm" | "xsm" | "sm";
|
|
111
|
-
loading: boolean;
|
|
112
|
-
expanded: boolean;
|
|
61
|
+
declare const __VLS_component: import('vue').DefineComponent<IndentLevelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IndentLevelProps> & Readonly<{}>, {
|
|
62
|
+
size: IndentLevelSize;
|
|
113
63
|
branchIcon: string;
|
|
114
|
-
level:
|
|
115
|
-
|
|
116
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
64
|
+
level: number | string;
|
|
65
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
117
66
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
118
67
|
export default _default;
|
|
119
68
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
package/dist/Popover/index.d.ts
CHANGED
package/dist/Tree/index.d.ts
CHANGED