ninemoon-ui 0.1.3 → 0.1.5
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/directives/index.d.ts +10 -0
- package/dist/index.css +1033 -14
- package/dist/index.d.ts +9 -2
- package/dist/index.es.js +39 -32
- package/dist/index.umd.js +1341 -284
- package/dist/js/date/datepicker.js +1 -1
- package/dist/js/date/datepickerRange.js +1 -1
- package/dist/js/image/image.js +1 -101
- package/dist/js/index/index.js +329 -38
- package/dist/js/popover/popover.js +1 -99
- package/dist/js/scrollBar/scrollBar.js +1 -1
- package/dist/js/select/select.js +1 -59
- package/package.json +1 -1
- /package/dist/{components/scrollloading → directives}/scrolllead.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { App } from 'vue';
|
|
|
2
2
|
import { MessageClass as LibMessage } from './components/message/message';
|
|
3
3
|
import { default as LibAlert } from './components/alert/alert';
|
|
4
4
|
import { default as LibLoad } from './components/loadding/loadding';
|
|
5
|
-
import { createLoadingDirective } from './
|
|
5
|
+
import { createArrowKeysDirective, createDraggableDirective, createEscapeDirective, createBgClickDirective, createLoadingDirective, createScrollDirective, createWheelDirective, createBgClickeDirective } from './directives/index';
|
|
6
6
|
|
|
7
7
|
declare const LibDialog: {
|
|
8
8
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -2075,13 +2075,20 @@ declare const _default: {
|
|
|
2075
2075
|
install(app: App): void;
|
|
2076
2076
|
};
|
|
2077
2077
|
export default _default;
|
|
2078
|
-
export { LibDialog, LibForm, LibFormLabel, LibInput, LibSelect, LibSelectOption, LibTable, LibTableItem, LibImage, LibDatePicker, LibDatePickerRange, LibMenu, LibPagination, LibBadge, LibPopover, LibNumberInput, LibRadioBox, LibRadioGroup, LibCheckGroup, LibCheckBox, LibUpload, LibTabs, LibTabsPane, LibScrollBar, LibMessage, LibAlert, LibLoad,
|
|
2078
|
+
export { LibDialog, LibForm, LibFormLabel, LibInput, LibSelect, LibSelectOption, LibTable, LibTableItem, LibImage, LibDatePicker, LibDatePickerRange, LibMenu, LibPagination, LibBadge, LibPopover, LibNumberInput, LibRadioBox, LibRadioGroup, LibCheckGroup, LibCheckBox, LibUpload, LibTabs, LibTabsPane, LibScrollBar, LibMessage, LibAlert, LibLoad, LibCarousel, LibCarouselItem, LibSwitch, createArrowKeysDirective, createDraggableDirective, createEscapeDirective, createBgClickDirective, createLoadingDirective, createScrollDirective, createWheelDirective, createBgClickeDirective, };
|
|
2079
2079
|
declare module '@vue/runtime-core' {
|
|
2080
2080
|
interface ComponentCustomProperties {
|
|
2081
2081
|
$alert: typeof LibAlert;
|
|
2082
2082
|
$message: typeof LibMessage;
|
|
2083
2083
|
LibLoad: typeof LibLoad;
|
|
2084
2084
|
createLoadingDirective: typeof createLoadingDirective;
|
|
2085
|
+
createArrowKeysDirective: typeof createArrowKeysDirective;
|
|
2086
|
+
createDraggableDirective: typeof createDraggableDirective;
|
|
2087
|
+
createEscapeDirective: typeof createEscapeDirective;
|
|
2088
|
+
createBgClickDirective: typeof createBgClickDirective;
|
|
2089
|
+
createScrollDirective: typeof createScrollDirective;
|
|
2090
|
+
createWheelDirective: typeof createWheelDirective;
|
|
2091
|
+
createBgClickeDirective: typeof createBgClickeDirective;
|
|
2085
2092
|
LibDialog: typeof LibDialog;
|
|
2086
2093
|
LibForm: typeof LibForm;
|
|
2087
2094
|
LibFormLabel: typeof LibFormLabel;
|
package/dist/index.es.js
CHANGED
|
@@ -1,36 +1,43 @@
|
|
|
1
1
|
import "vue";
|
|
2
|
-
import {
|
|
2
|
+
import { O, A, Q, R, H, G, w, x, L, m, n, v, p, P, y, N, D, z, B, E, F, M, q, r, S, s, t, J, K, I, a, i, U, b, c, T, h, d, l } from "./js/index/index.js";
|
|
3
3
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
O as LibAlert,
|
|
5
|
+
A as LibBadge,
|
|
6
|
+
Q as LibCarousel,
|
|
7
|
+
R as LibCarouselItem,
|
|
8
|
+
H as LibCheckBox,
|
|
9
|
+
G as LibCheckGroup,
|
|
10
|
+
w as LibDatePicker,
|
|
11
|
+
x as LibDatePickerRange,
|
|
12
12
|
L as LibDialog,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
i as
|
|
13
|
+
m as LibForm,
|
|
14
|
+
n as LibFormLabel,
|
|
15
|
+
v as LibImage,
|
|
16
|
+
p as LibInput,
|
|
17
|
+
P as LibLoad,
|
|
18
|
+
y as LibMenu,
|
|
19
|
+
N as LibMessage,
|
|
20
|
+
D as LibNumberInput,
|
|
21
|
+
z as LibPagination,
|
|
22
|
+
B as LibPopover,
|
|
23
|
+
E as LibRadioBox,
|
|
24
|
+
F as LibRadioGroup,
|
|
25
|
+
M as LibScrollBar,
|
|
26
|
+
q as LibSelect,
|
|
27
|
+
r as LibSelectOption,
|
|
28
|
+
S as LibSwitch,
|
|
29
|
+
s as LibTable,
|
|
30
|
+
t as LibTableItem,
|
|
31
|
+
J as LibTabs,
|
|
32
|
+
K as LibTabsPane,
|
|
33
|
+
I as LibUpload,
|
|
34
|
+
a as createArrowKeysDirective,
|
|
35
|
+
i as createBgClickDirective,
|
|
36
|
+
U as createBgClickeDirective,
|
|
37
|
+
b as createDraggableDirective,
|
|
38
|
+
c as createEscapeDirective,
|
|
39
|
+
T as createLoadingDirective,
|
|
40
|
+
h as createScrollDirective,
|
|
41
|
+
d as createWheelDirective,
|
|
42
|
+
l as default
|
|
36
43
|
};
|