ninemoon-ui 0.1.1 → 0.1.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/components/loadding/loadding.d.ts +1 -1
- package/dist/components/popover/poparrow.d.ts +2 -10
- package/dist/components/popover/popover.vue.d.ts +1 -6
- package/dist/components/scrollBar/scrollBar.vue.d.ts +2 -0
- package/dist/components/scrollloading/scrolllead.d.ts +1 -1
- package/dist/directives/watchwindow.d.ts +1 -0
- package/dist/index.css +26 -1133
- package/dist/index.d.ts +18 -24
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +110 -1216
- package/dist/js/date/datepicker.js +3 -3
- package/dist/js/date/datepickerRange.js +3 -3
- package/dist/js/dialog/dialog.js +0 -1
- package/dist/js/form/formlabel.js +2 -2
- package/dist/js/index/index.js +6 -4
- package/dist/js/input/input.js +3 -3
- package/dist/js/numberInput/numberinput.js +3 -3
- package/dist/js/popover/popover.js +15 -14
- package/dist/js/scrollBar/scrollBar.js +7 -4
- package/dist/js/select/select.js +6 -4
- package/dist/js/tabs/tabs.js +5 -3
- package/dist/tabs.css +3 -2
- package/package.json +1 -2
- package/dist/dialog.css +0 -9
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 {
|
|
5
|
+
import { createLoadingDirective } from './components/scrollloading/scrolllead';
|
|
6
6
|
|
|
7
7
|
declare const LibDialog: {
|
|
8
8
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -1218,10 +1218,6 @@ declare const LibPopover: {
|
|
|
1218
1218
|
width: {
|
|
1219
1219
|
type: import('vue').PropType<string | number>;
|
|
1220
1220
|
};
|
|
1221
|
-
arrowshow: {
|
|
1222
|
-
type: import('vue').PropType<boolean>;
|
|
1223
|
-
default: boolean;
|
|
1224
|
-
};
|
|
1225
1221
|
beforebgcolor: {
|
|
1226
1222
|
type: import('vue').PropType<string>;
|
|
1227
1223
|
};
|
|
@@ -1235,7 +1231,7 @@ declare const LibPopover: {
|
|
|
1235
1231
|
beforeHidden: {
|
|
1236
1232
|
type: import('vue').PropType<Function>;
|
|
1237
1233
|
};
|
|
1238
|
-
|
|
1234
|
+
arrowshow: {
|
|
1239
1235
|
type: import('vue').PropType<boolean>;
|
|
1240
1236
|
default: boolean;
|
|
1241
1237
|
};
|
|
@@ -1247,9 +1243,8 @@ declare const LibPopover: {
|
|
|
1247
1243
|
"update:modelValue": (...args: any[]) => void;
|
|
1248
1244
|
}, import('vue').PublicProps, {
|
|
1249
1245
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
1250
|
-
arrowshow: boolean;
|
|
1251
1246
|
trigger: "click" | "hover" | "native";
|
|
1252
|
-
|
|
1247
|
+
arrowshow: boolean;
|
|
1253
1248
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1254
1249
|
P: {};
|
|
1255
1250
|
B: {};
|
|
@@ -1268,10 +1263,6 @@ declare const LibPopover: {
|
|
|
1268
1263
|
width: {
|
|
1269
1264
|
type: import('vue').PropType<string | number>;
|
|
1270
1265
|
};
|
|
1271
|
-
arrowshow: {
|
|
1272
|
-
type: import('vue').PropType<boolean>;
|
|
1273
|
-
default: boolean;
|
|
1274
|
-
};
|
|
1275
1266
|
beforebgcolor: {
|
|
1276
1267
|
type: import('vue').PropType<string>;
|
|
1277
1268
|
};
|
|
@@ -1285,7 +1276,7 @@ declare const LibPopover: {
|
|
|
1285
1276
|
beforeHidden: {
|
|
1286
1277
|
type: import('vue').PropType<Function>;
|
|
1287
1278
|
};
|
|
1288
|
-
|
|
1279
|
+
arrowshow: {
|
|
1289
1280
|
type: import('vue').PropType<boolean>;
|
|
1290
1281
|
default: boolean;
|
|
1291
1282
|
};
|
|
@@ -1295,9 +1286,8 @@ declare const LibPopover: {
|
|
|
1295
1286
|
hideHandle: (disablecancelflag?: boolean) => void;
|
|
1296
1287
|
}, {}, {}, {}, {
|
|
1297
1288
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
1298
|
-
arrowshow: boolean;
|
|
1299
1289
|
trigger: "click" | "hover" | "native";
|
|
1300
|
-
|
|
1290
|
+
arrowshow: boolean;
|
|
1301
1291
|
}>;
|
|
1302
1292
|
__isFragment?: never;
|
|
1303
1293
|
__isTeleport?: never;
|
|
@@ -1313,10 +1303,6 @@ declare const LibPopover: {
|
|
|
1313
1303
|
width: {
|
|
1314
1304
|
type: import('vue').PropType<string | number>;
|
|
1315
1305
|
};
|
|
1316
|
-
arrowshow: {
|
|
1317
|
-
type: import('vue').PropType<boolean>;
|
|
1318
|
-
default: boolean;
|
|
1319
|
-
};
|
|
1320
1306
|
beforebgcolor: {
|
|
1321
1307
|
type: import('vue').PropType<string>;
|
|
1322
1308
|
};
|
|
@@ -1330,7 +1316,7 @@ declare const LibPopover: {
|
|
|
1330
1316
|
beforeHidden: {
|
|
1331
1317
|
type: import('vue').PropType<Function>;
|
|
1332
1318
|
};
|
|
1333
|
-
|
|
1319
|
+
arrowshow: {
|
|
1334
1320
|
type: import('vue').PropType<boolean>;
|
|
1335
1321
|
default: boolean;
|
|
1336
1322
|
};
|
|
@@ -1342,9 +1328,8 @@ declare const LibPopover: {
|
|
|
1342
1328
|
"update:modelValue": (...args: any[]) => void;
|
|
1343
1329
|
}, string, {
|
|
1344
1330
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
1345
|
-
arrowshow: boolean;
|
|
1346
1331
|
trigger: "click" | "hover" | "native";
|
|
1347
|
-
|
|
1332
|
+
arrowshow: boolean;
|
|
1348
1333
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1349
1334
|
$slots: {
|
|
1350
1335
|
reference?(_: {}): any;
|
|
@@ -1880,6 +1865,9 @@ declare const LibScrollBar: {
|
|
|
1880
1865
|
maxHeight: {
|
|
1881
1866
|
type: import('vue').PropType<string>;
|
|
1882
1867
|
};
|
|
1868
|
+
id: {
|
|
1869
|
+
type: import('vue').PropType<string>;
|
|
1870
|
+
};
|
|
1883
1871
|
}>> & Readonly<{}>, {
|
|
1884
1872
|
setScrollTop: (percentage: number, options?: {
|
|
1885
1873
|
behavior?: "auto" | "smooth";
|
|
@@ -1907,6 +1895,9 @@ declare const LibScrollBar: {
|
|
|
1907
1895
|
maxHeight: {
|
|
1908
1896
|
type: import('vue').PropType<string>;
|
|
1909
1897
|
};
|
|
1898
|
+
id: {
|
|
1899
|
+
type: import('vue').PropType<string>;
|
|
1900
|
+
};
|
|
1910
1901
|
}>> & Readonly<{}>, {
|
|
1911
1902
|
setScrollTop: (percentage: number, options?: {
|
|
1912
1903
|
behavior?: "auto" | "smooth";
|
|
@@ -1931,6 +1922,9 @@ declare const LibScrollBar: {
|
|
|
1931
1922
|
maxHeight: {
|
|
1932
1923
|
type: import('vue').PropType<string>;
|
|
1933
1924
|
};
|
|
1925
|
+
id: {
|
|
1926
|
+
type: import('vue').PropType<string>;
|
|
1927
|
+
};
|
|
1934
1928
|
}>> & Readonly<{}>, {
|
|
1935
1929
|
setScrollTop: (percentage: number, options?: {
|
|
1936
1930
|
behavior?: "auto" | "smooth";
|
|
@@ -2081,13 +2075,13 @@ declare const _default: {
|
|
|
2081
2075
|
install(app: App): void;
|
|
2082
2076
|
};
|
|
2083
2077
|
export default _default;
|
|
2084
|
-
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, createLoadingDirective, LibCarousel, LibCarouselItem, LibSwitch, };
|
|
2085
2079
|
declare module '@vue/runtime-core' {
|
|
2086
2080
|
interface ComponentCustomProperties {
|
|
2087
2081
|
$alert: typeof LibAlert;
|
|
2088
2082
|
$message: typeof LibMessage;
|
|
2089
2083
|
LibLoad: typeof LibLoad;
|
|
2090
|
-
|
|
2084
|
+
createLoadingDirective: typeof createLoadingDirective;
|
|
2091
2085
|
LibDialog: typeof LibDialog;
|
|
2092
2086
|
LibForm: typeof LibForm;
|
|
2093
2087
|
LibFormLabel: typeof LibFormLabel;
|