@pantograph/vue 0.33.0 → 0.33.2
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-JGiYFqgq.js → ColorSwatch-BMWavxvo.js} +1 -1
- package/dist/ColorSwatch-DDxjjz-z.js +4 -0
- package/dist/Combobox/types.d.ts +1 -0
- package/dist/Comment/CommentMention.d.ts +2 -0
- package/dist/IndentLevel/IndentLevel.d.ts +55 -4
- package/dist/{index-BIbL3sya.js → index-BzcgWdfP.js} +1374 -1359
- package/dist/index-uBC8jNlu.js +12 -0
- package/dist/index.js +1 -1
- 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 +1 -1
- package/dist/ColorSwatch-6fHr2d_5.js +0 -4
- package/dist/index-BG34GcW_.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-uBC8jNlu.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
|
+
import { PropType } from 'vue';
|
|
1
2
|
import { IndentLevelShowLine, IndentLevelSize } from './IndentLevel.model';
|
|
2
3
|
import { ClassValue } from 'clsx';
|
|
3
4
|
import { Direction } from '../ConfigProvider';
|
|
@@ -58,11 +59,61 @@ declare function __VLS_template(): {
|
|
|
58
59
|
rootEl: HTMLDivElement;
|
|
59
60
|
};
|
|
60
61
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
61
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
62
|
-
size:
|
|
62
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
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;
|
|
63
113
|
branchIcon: string;
|
|
64
|
-
level:
|
|
65
|
-
|
|
114
|
+
level: string | number;
|
|
115
|
+
noRotateBranch: boolean;
|
|
116
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
66
117
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
67
118
|
export default _default;
|
|
68
119
|
type __VLS_WithTemplateSlots<T, S> = T & {
|