zxq-com 0.0.10 → 0.0.12
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/index.d.ts +2 -0
- package/dist/zxq-com.css +1 -1
- package/dist/zxq-com.js +371 -321
- package/dist/zxq-com.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Component } from 'vue';
|
|
|
3
3
|
import { ComponentOptionsMixin } from 'vue';
|
|
4
4
|
import { ComponentProvideOptions } from 'vue';
|
|
5
5
|
import { DefineComponent } from 'vue';
|
|
6
|
+
import { GlobalThemeOverrides } from 'naive-ui';
|
|
6
7
|
import { PublicProps } from 'vue';
|
|
7
8
|
import { ShallowRef } from 'vue';
|
|
8
9
|
import { WebSocketStatus } from '@vueuse/core';
|
|
@@ -109,6 +110,7 @@ export declare function zwqWs(_app: any, config: WsConfig): void;
|
|
|
109
110
|
declare interface ZxqConfig {
|
|
110
111
|
ws?: WsConfig;
|
|
111
112
|
iconApi?: string;
|
|
113
|
+
theme?: GlobalThemeOverrides;
|
|
112
114
|
}
|
|
113
115
|
|
|
114
116
|
export { }
|
package/dist/zxq-com.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.zxq-button{color:#fff;cursor:pointer;background-color:#409eff;border:none;border-radius:4px;padding:8px 16px;transition:opacity .2s}.zxq-button:hover{opacity:.8}.z-icon-picker[data-v-
|
|
1
|
+
.zxq-button{color:#fff;cursor:pointer;background-color:#409eff;border:none;border-radius:4px;padding:8px 16px;transition:opacity .2s}.zxq-button:hover{opacity:.8}.z-icon-picker[data-v-8e9a4617]{--select-color:var(--v96180658);--select-bg-color:var(--v40b2d95a)}.z-icon-picker .set[data-v-8e9a4617]{margin-right:10px}.z-icon-picker .set .item[data-v-8e9a4617]{cursor:pointer;border-radius:4px;padding:6px 10px}.z-icon-picker .set .item[data-v-8e9a4617]:hover{background:#f5f7fa}.z-icon-picker .set .item.selected[data-v-8e9a4617]{color:var(--select-color);background:var(--select-bg-color)}.z-icon-picker .category[data-v-8e9a4617]{flex:0 0 40px}.z-icon-picker .category .item[data-v-8e9a4617]{cursor:pointer;white-space:nowrap;margin:10px}.z-icon-picker .icon-list[data-v-8e9a4617]{flex-wrap:wrap;padding:10px 0;display:flex}.z-icon-picker .icon-list[data-v-8e9a4617]>*{cursor:pointer;border-radius:4px;align-items:center;padding:10px;font-size:40px;transition:all .3s ease-in-out;display:flex}.z-icon-picker .icon-list[data-v-8e9a4617]>:hover{color:var(--select-color);background:var(--select-bg-color);transform:scale(1.2)}.z-icon-picker-dropdown{max-height:300px;overflow:auto}
|
|
2
2
|
/*$vite$:1*/
|