tsv2-library 1.1.0-dev-alpha.31 → 1.1.0-dev-alpha.32
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.
|
@@ -11,6 +11,7 @@ export interface TreeListData {
|
|
|
11
11
|
}
|
|
12
12
|
export type RoleType = 'Manager' | 'Monitoring' | 'Approval' | 'Staff';
|
|
13
13
|
export interface TreeRoleParams {
|
|
14
|
+
showAll?: boolean;
|
|
14
15
|
systemRole?: SystemRoleAttribute[];
|
|
15
16
|
transactionAttribute?: TransactionAttribute[];
|
|
16
17
|
roleType?: RoleType[];
|
package/dist/tsv2-library.es.js
CHANGED
|
@@ -42175,6 +42175,10 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
|
|
|
42175
42175
|
const getParamsByPath = () => {
|
|
42176
42176
|
const pathName = window.location.pathname;
|
|
42177
42177
|
switch (true) {
|
|
42178
|
+
case pathName.includes("assets/all"):
|
|
42179
|
+
case pathName.includes("assets/available"):
|
|
42180
|
+
case pathName.includes("assets/registration"):
|
|
42181
|
+
return { showAll: true };
|
|
42178
42182
|
case pathName.includes("group"):
|
|
42179
42183
|
return {
|
|
42180
42184
|
systemRole: ["group"]
|
|
@@ -62303,7 +62307,6 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
62303
62307
|
key: 2,
|
|
62304
62308
|
keys: filter4.value.group,
|
|
62305
62309
|
"onUpdate:keys": _cache[2] || (_cache[2] = ($event) => filter4.value.group = $event),
|
|
62306
|
-
"group-params": { showAll: true },
|
|
62307
62310
|
"data-ts-section": "group-filter-input",
|
|
62308
62311
|
"field-label": "Group",
|
|
62309
62312
|
type: "Group"
|