smarteye-e-components 0.0.34 → 0.0.38
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 +6 -6
- package/dist/smarteye-e-components.js.map +1 -1
- package/dist/smarteye-e-components.mjs +603 -576
- package/dist/smarteye-e-components.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/lib/comp.d.ts +1 -1
- package/lib/components/recursion-device-group/model/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
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;--device-opts-width: 80px}.group-head-db-click[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;--device-opts-width: 80px}.group-head-db-click[data-v-38529838],.group-head-db-click .group-name[data-v-38529838]{cursor:pointer;user-select:none;position:relative}.group-head-count[data-v-38529838]{position:absolute;left:0px;display:inline-block;width:24px;height:24px;line-height:24px;top:calc(50% - 12px);text-align:center;font-size:10px}.device-show-div[data-v-38529838]{max-height:400px;overflow-y:auto}.dark .handle-ls-svg[data-v-38529838]{color:#fff}.handle-ls-svg[data-v-38529838]{vertical-align:-5px;cursor:pointer;margin-right:5px;color:#383838}.group-avatar[data-v-38529838]{vertical-align:-6px;color:gray}.device[data-v-38529838],.group[data-v-38529838]{margin:5px 0}.group-name[data-v-38529838]{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-38529838]{display:inline-block;width:calc(100% - var(--group-name-width) - 100px)}.device-slot[data-v-38529838]{display:inline-block;width:calc(var(--device-opts-width))}.device-avatar[data-v-38529838]{vertical-align:-2px;margin-right:4px;margin-left:2px;color:var(--device-offline-color)}.device-name[data-v-38529838]{display:inline-block;width:calc(100% - var(--device-opts-width) - 42px);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-38529838],.online-device .device-name[data-v-38529838]{color:var(--device-online-color)}:root{--sec-main-search-height: 32px }.device-group-list[data-v-17e4082a]{height:100%}.device-group-list .search-panel[data-v-17e4082a]{height:var(--sec-main-search-height)}.device-group-list .device-panel[data-v-17e4082a]{height:calc(100% - var(--sec-main-search-height));overflow-y:auto}
|
package/lib/comp.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ declare module '@vue/runtime-core' {
|
|
|
8
8
|
export interface GlobalComponents {
|
|
9
9
|
MultiVideoAreaLayoutSwitch: typeof import('./components/multi-video-area-layout-switch/index.vue')['default']
|
|
10
10
|
RecursionDeviceGroup: typeof import('./components/recursion-device-group/index.vue')['default']
|
|
11
|
-
|
|
11
|
+
VideoAreasLayoutShow: typeof import('./components/video-areas-layout-show/index.vue')['default']
|
|
12
12
|
}
|
|
13
13
|
}
|