smarteye-e-components 0.0.26 → 0.0.28
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/smarteye-e-components.js +27 -1
- package/dist/smarteye-e-components.js.map +1 -1
- package/dist/smarteye-e-components.mjs +2402 -394
- package/dist/smarteye-e-components.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/lib/components/recursion-device-group/index.vue.d.ts +9 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.root[data-v-
|
|
1
|
+
.root[data-v-a063c331]{position:relative}.count-show[data-v-a063c331]{position:absolute;right:10px;color:#b7b7b7}.infinite-list-container[data-v-12d2a294]{height:100%;overflow:auto;position:relative;-webkit-overflow-scrolling:touch}.infinite-list-phantom[data-v-12d2a294]{position:absolute;left:0;top:0;right:0;z-index:-1}.infinite-list[data-v-12d2a294]{left:0;right:0;top:0;position:absolute}.infinite-list-item[data-v-12d2a294]{color:#555;box-sizing:border-box}:root{--device-offline-color: rgb(168, 168, 168);--device-online-color: rgb(1, 172, 1);--group-name-width: 160px}.group-head-db-click[data-v-af859703],.group-head-db-click .group-name[data-v-af859703]{cursor:pointer;user-select:none;position:relative}.group-head-count[data-v-af859703]{position:absolute;left:0px;display:inline-block;width:24px;height:100%;line-height:24px;text-align:center;font-size:10px}.device-show-div[data-v-af859703]{max-height:400px;overflow-y:auto}.dark .handle-ls-svg[data-v-af859703]{color:#fff}.handle-ls-svg[data-v-af859703]{vertical-align:-5px;cursor:pointer;margin-right:5px;color:#383838}.group-avatar[data-v-af859703]{vertical-align:-6px;color:gray}.device[data-v-af859703],.group[data-v-af859703]{margin:5px 0}.group-name[data-v-af859703]{display:inline-block;width:var(--group-name-width);cursor:default;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;line-height:24px;padding-left:5px}.group-slot[data-v-af859703]{display:inline-block;width:calc(100% - var(--group-name-width) - 100px)}.device-slot[data-v-af859703]{display:inline-block;width:calc(100% - var(--group-name-width) - 42px)}.device-avatar[data-v-af859703]{vertical-align:-2px;margin-right:4px;margin-left:2px;color:var(--device-offline-color)}.device-name[data-v-af859703]{display:inline-block;width:var(--group-name-width);cursor:default;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:bottom;color:var(--device-offline-color);padding-left:5px}.online-device .device-avatar[data-v-af859703],.online-device .device-name[data-v-af859703]{color:var(--device-online-color)}:root{--sec-main-search-height: 32px }.device-group-list[data-v-c882ab2c]{height:100%}.device-group-list .search-panel[data-v-c882ab2c]{height:var(--sec-main-search-height)}.device-group-list .device-panel[data-v-c882ab2c]{height:calc(100% - var(--sec-main-search-height));overflow-y:auto}
|
|
@@ -6,7 +6,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
6
|
type: PropType<"" | "dark">;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
+
locale: PropType<"en-us" | "zh-ch">;
|
|
9
10
|
}, {
|
|
11
|
+
i18nHello: import("vue-i18n").VueI18n<{
|
|
12
|
+
"zh-cn": any;
|
|
13
|
+
"en-us": any;
|
|
14
|
+
}, {}, {}, string, "en-us" | "zh-cn", "en-us" | "zh-cn", import("vue-i18n").Composer<{
|
|
15
|
+
"zh-cn": any;
|
|
16
|
+
"en-us": any;
|
|
17
|
+
}, {}, {}, string, "en-us" | "zh-cn", "en-us" | "zh-cn">>;
|
|
10
18
|
inputSearchRef: import("vue").Ref<HTMLInputElement | undefined>;
|
|
11
19
|
controlParams: import("vue").Ref<{
|
|
12
20
|
onlyShowOnline: boolean;
|
|
@@ -22,6 +30,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
22
30
|
type: PropType<"" | "dark">;
|
|
23
31
|
default: string;
|
|
24
32
|
};
|
|
33
|
+
locale: PropType<"en-us" | "zh-ch">;
|
|
25
34
|
}>>, {
|
|
26
35
|
theme: "" | "dark";
|
|
27
36
|
}>;
|