@castlabs/ui 5.1.2 → 5.2.1
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/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -130,11 +130,35 @@ export function clReload (
|
|
|
130
130
|
): Promise<any>
|
|
131
131
|
export function clReloadStore (component: any, forced?: any[], optional?: any[], loading?: boolean): Promise<any>
|
|
132
132
|
|
|
133
|
-
// search
|
|
133
|
+
// --- utils/search ------------------------------------------------------------
|
|
134
|
+
|
|
134
135
|
export function clMatch (string: string, expression?: string, caseSensitive?: boolean): boolean
|
|
135
136
|
|
|
136
|
-
//
|
|
137
|
+
// --- utils/vitest ------------------------------------------------------------
|
|
138
|
+
|
|
137
139
|
export function clGetAllComponents(): object
|
|
138
140
|
export function clGetAllPlugins(): [{ install: (app: any) => void }]
|
|
139
141
|
export function clPatch (source: any, patches: any): object
|
|
140
142
|
export function clPatchStore (source: any, patches: any): object
|
|
143
|
+
|
|
144
|
+
// --- utils/ui ----------------------------------------------------------------
|
|
145
|
+
|
|
146
|
+
export type ClService = {
|
|
147
|
+
id: string
|
|
148
|
+
subtitle: string
|
|
149
|
+
title: string
|
|
150
|
+
urlManage: (env?: string, oid?: string) => string
|
|
151
|
+
sidenav: boolean
|
|
152
|
+
}
|
|
153
|
+
export function clGetServices (): ClService[]
|
|
154
|
+
|
|
155
|
+
export const NAV: {
|
|
156
|
+
CP: ClService
|
|
157
|
+
CS: ClService
|
|
158
|
+
DT: ClService
|
|
159
|
+
DTS: ClService
|
|
160
|
+
DTO: ClService
|
|
161
|
+
PP: ClService
|
|
162
|
+
WM: ClService
|
|
163
|
+
VTK: ClService
|
|
164
|
+
}
|