tsv2-library 1.0.61-alpha.45 → 1.0.61-alpha.47
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.
|
@@ -167,9 +167,14 @@ export interface DialogSelectAssetProps {
|
|
|
167
167
|
excludedKey?: string[];
|
|
168
168
|
/**
|
|
169
169
|
*
|
|
170
|
-
* The list of asset name
|
|
170
|
+
* The list of asset name _id to be excluded in fetch list
|
|
171
171
|
*/
|
|
172
172
|
excludeId?: string[];
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* The list of group _id of asset names to be excluded in fetch list
|
|
176
|
+
*/
|
|
177
|
+
excludeInitialGroup?: string[];
|
|
173
178
|
/**
|
|
174
179
|
* The header of the dialog.
|
|
175
180
|
*
|
package/dist/tsv2-library.es.js
CHANGED
|
@@ -55611,6 +55611,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
55611
55611
|
filterLists: {},
|
|
55612
55612
|
excludedKey: {},
|
|
55613
55613
|
excludeId: {},
|
|
55614
|
+
excludeInitialGroup: {},
|
|
55614
55615
|
header: {},
|
|
55615
55616
|
description: {},
|
|
55616
55617
|
size: {},
|
|
@@ -55997,6 +55998,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
55997
55998
|
params.tagType = typeof props.tagType === "string" ? JSON.stringify([props.tagType]) : void 0;
|
|
55998
55999
|
params.excludeKey = props.excludedKey ? JSON.stringify(props.excludedKey) : void 0;
|
|
55999
56000
|
params.excludeId = props.excludeId ? JSON.stringify(props.excludeId) : void 0;
|
|
56001
|
+
params.excludeInitialGroup = props.excludeInitialGroup ? JSON.stringify(props.excludeInitialGroup) : void 0;
|
|
56000
56002
|
const { data: data30 } = props.unpaired ? await AssetNameAPIs.getUnpairedAssetName(params) : await AssetNameAPIs.getAssetNameList(params);
|
|
56001
56003
|
if (props.unpaired) {
|
|
56002
56004
|
filterOption.value.nameOptions = (_c = (_b = data30.data) == null ? void 0 : _b.data) == null ? void 0 : _c.map(
|