snail.vue 1.0.15 → 1.0.17
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/css/snail.vue.vue.css +4 -4
- package/dist/snail.vue.d.ts +41 -3
- package/dist/snail.vue.js +13 -6
- package/dist/snail.vue.umd.js +8 -0
- package/package.json +2 -2
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
.snail-loading{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10000}.snail-loading.show-mask{background-color:rgba(0,0,0,.15)}.snail-loading:after,.snail-loading:before{animation:snail-loading-stretch 1s ease-in-out infinite;border-radius:50%;content:"";display:block;display:inline-block;height:10px;left:50%;margin-left:-18px;margin-top:-6px;position:absolute;top:50%;width:10px}.snail-loading:before{background-color:#279bf1}.snail-loading:after{animation-delay:-.5s;background:#64d214;margin-left:0;margin-right:-18px}@keyframes snail-loading-stretch{0%,to{transform:scale(1)}50%{transform:scale(2)}}.snail-loading-enter-active,.snail-loading-leave-active{transition:opacity .5s ease-in-out}.snail-loading-enter-from,.snail-loading-leave-to{opacity:0}
|
|
19
19
|
/* src:prompt\no-data.vue index:0 */
|
|
20
20
|
.snail-no-data{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;width:100%}.snail-no-data>img{height:60px;width:60px}.snail-no-data>div.hint-message{color:#babdc2;font-size:14px;font-weight:400;padding:0 10px 10px}
|
|
21
|
-
/* src:
|
|
22
|
-
.snail-
|
|
21
|
+
/* src:container\components\dialog-wrapper.vue index:0 */
|
|
22
|
+
.snail-dialog{align-items:center;bottom:0;display:flex;justify-content:center;left:0;overflow:hidden;position:fixed;right:0;top:0}.snail-dialog:before{background-color:rgba(24,27,33,.45);content:"";height:100%;position:absolute;width:100%}.snail-dialog>.dialog-body{background-color:#fff;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.3);box-sizing:border-box;position:relative}.snail-dialog.unactive:before{display:none!important}.snail-dialog.unactive>.dialog-body{box-shadow:0 0 4px rgba(0,0,0,.3)}.snail-dialog-enter-active,.snail-dialog-leave-active{transition:scale .1s ease-in-out,opacity .1s ease}.snail-dialog-enter-from{opacity:0;scale:.4}.snail-dialog-leave-to{opacity:0;scale:0}
|
|
23
23
|
/* src:prompt\components\confirm.vue index:0 */
|
|
24
24
|
.snail-confirm{background-color:#fff;border-radius:4px;box-sizing:border-box;color:#2e2f33;display:flex;flex-direction:column;max-height:350px;max-width:548px;min-width:348px}.snail-confirm>main{flex:1;font-size:14px;margin:30px 44px;overflow:auto;word-wrap:break-word;box-sizing:border-box}
|
|
25
|
-
/* src:
|
|
26
|
-
.snail-
|
|
25
|
+
/* src:prompt\components\toast.vue index:0 */
|
|
26
|
+
.snail-toast{background:rgba(0,0,0,.7);border-radius:5px;color:#fff;display:flex;max-height:200px;max-width:500px;min-width:200px;opacity:.2;overflow:hidden;padding:20px 30px 20px 20px;position:fixed;transition:opacity .2s ease;z-index:99999}.snail-toast.show-toast{opacity:1}.snail-toast>svg.close-icon{position:absolute;right:10px;top:12px}.snail-toast>div.icon{align-items:center;align-self:center;background:hsla(0,0%,100%,.15);border-radius:50%;display:flex;height:26px;justify-content:center;margin-right:6px;width:26px}.snail-toast>div.icon>svg{background:#fff;border-radius:50%;cursor:none!important}.snail-toast>div.message{flex:1;line-height:24px;overflow:hidden;word-break:break-all}
|
package/dist/snail.vue.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { Component, App } from 'vue';
|
|
2
|
+
import { Component, App, Ref, ShallowRef } from 'vue';
|
|
3
3
|
import { IScope } from 'snail.core';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -497,6 +497,21 @@ declare function onResize(el: Element, fn: (size: Readonly<{
|
|
|
497
497
|
*/
|
|
498
498
|
declare function onRerect(el: Element, fn: (rect: DOMRectReadOnly) => void): IScope;
|
|
499
499
|
|
|
500
|
+
/**
|
|
501
|
+
* 响应式助手类,封装一些响应式相关的工具方法
|
|
502
|
+
*/
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* 作用域ref
|
|
506
|
+
* - 在scope创建时,为响应式变量赋start值,destroy销毁时赋destroy值
|
|
507
|
+
* - 可和 snail.core 中的awaitInScope方法联动实现:api请求开始时显示loading,api请求结束后隐藏loading
|
|
508
|
+
* @param rv 响应式变量
|
|
509
|
+
* @param start 起始值,scope创建时执行 rv.value = start
|
|
510
|
+
* @param destroy 销毁值,scope销毁时执行 rv.value = destroy
|
|
511
|
+
* @returns 新创建的作用域对象
|
|
512
|
+
*/
|
|
513
|
+
declare function scopeRef<T>(rv: Ref<T> | ShallowRef<T>, start: T, destroy: T): IScope;
|
|
514
|
+
|
|
500
515
|
/**
|
|
501
516
|
* 模态弹窗显示的组件配置选项
|
|
502
517
|
*/
|
|
@@ -636,6 +651,29 @@ type ConfirmHandle = {
|
|
|
636
651
|
close: (confirm: boolean) => void;
|
|
637
652
|
};
|
|
638
653
|
|
|
654
|
+
/**
|
|
655
|
+
* Toast配置选项
|
|
656
|
+
*/
|
|
657
|
+
type ToastOptions = {
|
|
658
|
+
/**
|
|
659
|
+
* 提示类型,基于类型展示图标
|
|
660
|
+
*/
|
|
661
|
+
type?: IconType;
|
|
662
|
+
/**
|
|
663
|
+
* 提示消息;支持html格式
|
|
664
|
+
*/
|
|
665
|
+
message: string;
|
|
666
|
+
};
|
|
667
|
+
/**
|
|
668
|
+
* Toast弹窗句柄
|
|
669
|
+
*/
|
|
670
|
+
type ToastHandle = {
|
|
671
|
+
/**
|
|
672
|
+
* 关闭toast弹窗
|
|
673
|
+
*/
|
|
674
|
+
close: () => void;
|
|
675
|
+
};
|
|
676
|
+
|
|
639
677
|
/**
|
|
640
678
|
* toast提示
|
|
641
679
|
* @param type 提示类型:成功、失败、、、
|
|
@@ -871,5 +909,5 @@ declare const components: {
|
|
|
871
909
|
*/
|
|
872
910
|
declare function mount(options: ComponentMountOptions, onDestroyed?: (fn: () => void) => void): IScope;
|
|
873
911
|
|
|
874
|
-
export { components, confirm, getSvgIcon, mount, onAppCreated, onEvent, onInterval, onRerect, onResize, onTimeout, openDialog, toast, triggerAppCreated, useScopes };
|
|
875
|
-
export type { ButtonOptions, ComponentMountOptions, ComponentOptions, ConfirmHandle, ConfirmOptions, Dialog, DialogHandle, DialogOpenResult, DialogOptions, DragVerifyInfo, DragVerifyOptions, FooterEvents, FooterOptions, HeaderEvents, HeaderOptions, IconOptions, IconPathOptions, IconType, LoadingOptions, NoDataOptions, ScrollEvents, ScrollOptions, ScrollTouchType, TableColOptions, TableOptions, TableRowOptions, TableStyleOptions };
|
|
912
|
+
export { components, confirm, getSvgIcon, mount, onAppCreated, onEvent, onInterval, onRerect, onResize, onTimeout, openDialog, scopeRef, toast, triggerAppCreated, useScopes };
|
|
913
|
+
export type { ButtonOptions, ComponentMountOptions, ComponentOptions, ConfirmHandle, ConfirmOptions, Dialog, DialogHandle, DialogOpenResult, DialogOptions, DragVerifyInfo, DragVerifyOptions, FooterEvents, FooterOptions, HeaderEvents, HeaderOptions, IconOptions, IconPathOptions, IconType, LoadingOptions, NoDataOptions, ScrollEvents, ScrollOptions, ScrollTouchType, TableColOptions, TableOptions, TableRowOptions, TableStyleOptions, ToastHandle, ToastOptions };
|
package/dist/snail.vue.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//@ sourceURL=/snail.vue.js
|
|
2
2
|
import { defineComponent, createElementBlock, openBlock, normalizeClass, renderSlot, createTextVNode, createBlock, createCommentVNode, toDisplayString, createElementVNode, normalizeProps, guardReactiveProps, unref, computed, mergeProps, getCurrentScope, onScopeDispose, Transition, withCtx, ref, shallowRef, watch, onErrorCaptured, onActivated, onDeactivated, Fragment, resolveDynamicComponent, createSlots, renderList, normalizeStyle, TransitionGroup, withModifiers, createVNode, createApp, useTemplateRef, onMounted, onUnmounted } from 'vue';
|
|
3
|
-
import { tidyString, throwError, mustString, mustFunction, throwIfFalse, isStringNotEmpty, isObject, script, delay, getMessage,
|
|
3
|
+
import { tidyString, throwError, mustString, style, mustFunction, throwIfFalse, isStringNotEmpty, isObject, script, delay, getMessage, hook, mustObject, defer, newId, isFunction } from 'snail.core';
|
|
4
4
|
|
|
5
5
|
var _sfc_main$e = defineComponent({
|
|
6
6
|
...{
|
|
@@ -134,6 +134,10 @@ var _sfc_main$c = defineComponent({
|
|
|
134
134
|
}
|
|
135
135
|
});
|
|
136
136
|
|
|
137
|
+
var addLink = href => setTimeout(style.register, 0, href);
|
|
138
|
+
|
|
139
|
+
addLink("/css/snail.vue.vue.css");
|
|
140
|
+
|
|
137
141
|
const _hoisted_1$6 = ["textContent"];
|
|
138
142
|
var _sfc_main$b = defineComponent({
|
|
139
143
|
...{
|
|
@@ -302,6 +306,13 @@ function onRerect(el, fn) {
|
|
|
302
306
|
};
|
|
303
307
|
}
|
|
304
308
|
|
|
309
|
+
function scopeRef(rv, start, destroy) {
|
|
310
|
+
rv.value = start;
|
|
311
|
+
return {
|
|
312
|
+
destroy: () => rv.value = destroy
|
|
313
|
+
};
|
|
314
|
+
}
|
|
315
|
+
|
|
305
316
|
var _sfc_main$a = defineComponent({
|
|
306
317
|
...{
|
|
307
318
|
name: "Loading",
|
|
@@ -499,10 +510,6 @@ var _sfc_main$7 = defineComponent({
|
|
|
499
510
|
}
|
|
500
511
|
});
|
|
501
512
|
|
|
502
|
-
var addLink = href => setTimeout(style.register, 0, href);
|
|
503
|
-
|
|
504
|
-
addLink("/css/snail.vue.vue.css");
|
|
505
|
-
|
|
506
513
|
var _sfc_main$6 = defineComponent({
|
|
507
514
|
...{
|
|
508
515
|
name: "TableRow",
|
|
@@ -1029,4 +1036,4 @@ function mount(options, onDestroyed) {
|
|
|
1029
1036
|
};
|
|
1030
1037
|
}
|
|
1031
1038
|
|
|
1032
|
-
export { components, confirm, getSvgIcon, mount, onAppCreated, onEvent, onInterval, onRerect, onResize, onTimeout, openDialog, toast, triggerAppCreated, useScopes };
|
|
1039
|
+
export { components, confirm, getSvgIcon, mount, onAppCreated, onEvent, onInterval, onRerect, onResize, onTimeout, openDialog, scopeRef, toast, triggerAppCreated, useScopes };
|
package/dist/snail.vue.umd.js
CHANGED
|
@@ -305,6 +305,13 @@
|
|
|
305
305
|
};
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
+
function scopeRef(rv, start, destroy) {
|
|
309
|
+
rv.value = start;
|
|
310
|
+
return {
|
|
311
|
+
destroy: () => rv.value = destroy
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
|
|
308
315
|
var _sfc_main$a = vue.defineComponent({
|
|
309
316
|
...{
|
|
310
317
|
name: "Loading",
|
|
@@ -1039,6 +1046,7 @@
|
|
|
1039
1046
|
exports.onResize = onResize;
|
|
1040
1047
|
exports.onTimeout = onTimeout;
|
|
1041
1048
|
exports.openDialog = openDialog;
|
|
1049
|
+
exports.scopeRef = scopeRef;
|
|
1042
1050
|
exports.toast = toast;
|
|
1043
1051
|
exports.triggerAppCreated = triggerAppCreated;
|
|
1044
1052
|
exports.useScopes = useScopes;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "依赖【snail】,基于vue封装常用UI组件",
|
|
4
4
|
"author": "snail_dev@163.com",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.17",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/snail.vue.js",
|
|
9
9
|
"module": "dist/snail.vue.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"vue": "^3.5.14",
|
|
18
|
-
"snail.core": ">=1.2.
|
|
18
|
+
"snail.core": ">=1.2.12"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"vue-tsc": "^2.2.10",
|