tsv2-library 1.0.61-alpha.116 → 1.0.61-alpha.117

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.
@@ -304,7 +304,7 @@ export default {
304
304
  class: [
305
305
  // Position
306
306
  'absolute top-0 left-0',
307
- 'mt-1',
307
+ 'mt-1 !z-[1111]',
308
308
 
309
309
  // Shape
310
310
  'border-0',
@@ -77,6 +77,7 @@ export type Asset = {
77
77
  address?: string;
78
78
  latitude: number | null;
79
79
  longitude: number | null;
80
+ registeredAssetId?: string;
80
81
  };
81
82
  export type TransactionPolicyType = {
82
83
  borrowing: boolean;
@@ -1,4 +1,4 @@
1
- import { formatUserName, formatVowelSoundLabel } from './textFormater.util';
1
+ import { formatUserName, formatVowelSoundLabel, formatDisplayAssetId, formatDisplayAssetName } from './textFormater.util';
2
2
  import handleTokenExpiration from './handleTokenExpiration.util';
3
3
  import exportToExcel from './exportToExcel.util';
4
4
  import { formatGoDate, formatDate, formatDateReadable, getUserLocale } from './date.util';
@@ -19,4 +19,4 @@ import { formatLogResponseData } from './changelog.util';
19
19
  import { googleMapLoader } from './googleMapLoader.util';
20
20
  declare const isObjectEmpty: (object: object) => boolean;
21
21
  declare const getNestedProperyValue: (object: object, property: string) => string | boolean | number | object;
22
- export { isObjectEmpty, getNestedProperyValue, handleTokenExpiration, getImageURL, downloadFile, formatUserName, formatVowelSoundLabel, exportToExcel, formatGoDate, formatDate, getUserLocale, formatDateReadable, useToast, listenSidebarChanges, unListenSidebarChanges, getCurrency, formatCurrency, getBaseURL, getHostName, useI18n, getSeverityByAssetStatus, clearStorage, forceLogout, reLogin, isValidJSONString, buildBodyParams, formatLogResponseData, googleMapLoader, getTransactionRole, getSystemRole, hasSystemRole, hasTransactionRole, checkRouteAccess, hasApprovalRole, hasManagerRole, hasAnyManagerRole, hasMonitoringReportRole, hasAnyMonitoringReportRole, hasStaffRole, hasAccessToAssetDetail, };
22
+ export { isObjectEmpty, getNestedProperyValue, handleTokenExpiration, getImageURL, downloadFile, formatUserName, formatVowelSoundLabel, formatDisplayAssetId, formatDisplayAssetName, exportToExcel, formatGoDate, formatDate, getUserLocale, formatDateReadable, useToast, listenSidebarChanges, unListenSidebarChanges, getCurrency, formatCurrency, getBaseURL, getHostName, useI18n, getSeverityByAssetStatus, clearStorage, forceLogout, reLogin, isValidJSONString, buildBodyParams, formatLogResponseData, googleMapLoader, getTransactionRole, getSystemRole, hasSystemRole, hasTransactionRole, checkRouteAccess, hasApprovalRole, hasManagerRole, hasAnyManagerRole, hasMonitoringReportRole, hasAnyMonitoringReportRole, hasStaffRole, hasAccessToAssetDetail, };
@@ -1,4 +1,7 @@
1
+ import { Asset } from '../types/assets.type';
1
2
  export declare const formatVowelSoundLabel: (label?: string) => string;
2
3
  export declare const formatUserName: (name?: string) => string;
3
4
  export declare const formatTagCode: (tagCode?: string) => string;
5
+ export declare const formatDisplayAssetName: (asset: Asset) => string;
6
+ export declare const formatDisplayAssetId: (asset: Asset) => string;
4
7
  export default formatUserName;