@kengic/vue 0.29.1-beta.7 → 0.29.1-beta.8
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.
@@ -192,6 +192,19 @@ export interface IKgCircleVisStoreState {
|
|
192
192
|
* 画布:设置:小车间距.
|
193
193
|
*/
|
194
194
|
$Canvas$Setting$RgvMarginY: number;
|
195
|
+
/**
|
196
|
+
* <p>画布:设置:小车属性.</p>
|
197
|
+
* <ul>
|
198
|
+
* <li>key: 小车编号</li>
|
199
|
+
* <li>value: 小车属性</li>
|
200
|
+
* </ul>
|
201
|
+
*/
|
202
|
+
$Canvas$Setting$RgvProperty: Record<string, {
|
203
|
+
/**
|
204
|
+
* 路径颜色.
|
205
|
+
*/
|
206
|
+
pathColor: string;
|
207
|
+
}>;
|
195
208
|
/**
|
196
209
|
* 画布:设置:闪烁间隔毫秒.
|
197
210
|
*/
|
@@ -252,6 +265,13 @@ export interface IKgCircleVisStoreState {
|
|
252
265
|
export interface IKgCircleVisStoreGetters {
|
253
266
|
$AreaSelect$getIsRequesting(): boolean;
|
254
267
|
$AreaSelect$getValue(): string | null;
|
268
|
+
/**
|
269
|
+
* 获取小车路径颜色.
|
270
|
+
*
|
271
|
+
* @param rgvNo 小车编号.
|
272
|
+
* @param index 小车序号.
|
273
|
+
*/
|
274
|
+
$Canvas$Setting$RgvProperty$pathColor(): (rgvNo?: string | null | undefined, index?: number | null | undefined) => string;
|
255
275
|
$Canvas$Setting$getCollapseActiveKey(): Array<string>;
|
256
276
|
$Canvas$Setting$getIsAisleVisible(): boolean;
|
257
277
|
$Canvas$Setting$getIsLegendVisible(): boolean;
|
package/package.json
CHANGED