@pksep/yui 0.1.272 → 0.1.273
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/components/ContentEditor/ImageAttachmentEditor.vue.d.ts +21 -0
- package/dist/components/Icon/enum/enum.d.ts +7 -1
- package/dist/components/Icon/icons.d.ts +6 -0
- package/dist/sep-yui.es.ts +25471 -24534
- package/dist/sep-yui.umd.ts +280 -245
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
file: File;
|
|
3
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
|
+
apply: (file: File) => void;
|
|
5
|
+
close: () => void;
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
file: File;
|
|
8
|
+
}>>> & Readonly<{
|
|
9
|
+
onClose?: (() => any) | undefined;
|
|
10
|
+
onApply?: ((file: File) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
+
} : {
|
|
18
|
+
type: import('vue').PropType<T[K]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -151,5 +151,11 @@ export declare enum IconNameEnum {
|
|
|
151
151
|
asc = "asc",
|
|
152
152
|
desc = "desc",
|
|
153
153
|
errorAlert = "error-alert",
|
|
154
|
-
parent = "parent"
|
|
154
|
+
parent = "parent",
|
|
155
|
+
undo = "undo",
|
|
156
|
+
redo = "redo",
|
|
157
|
+
crop = "crop",
|
|
158
|
+
imagePaint = "image-paint",
|
|
159
|
+
text = "text",
|
|
160
|
+
colorPicker = "color-picker"
|
|
155
161
|
}
|
|
@@ -165,3 +165,9 @@ export declare const briefcase: IVectorIcon;
|
|
|
165
165
|
export declare const warning: IVectorIcon;
|
|
166
166
|
export declare const errorAlert: IVectorIcon;
|
|
167
167
|
export declare const parent: IVectorIcon;
|
|
168
|
+
export declare const undo: IVectorIcon;
|
|
169
|
+
export declare const redo: IVectorIcon;
|
|
170
|
+
export declare const crop: IVectorIcon;
|
|
171
|
+
export declare const imagePaint: IVectorIcon;
|
|
172
|
+
export declare const text: IVectorIcon;
|
|
173
|
+
export declare const colorPicker: IVectorIcon;
|