@castlabs/ui 5.2.0 → 5.3.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@castlabs/ui",
3
- "version": "5.2.0",
3
+ "version": "5.3.0",
4
4
  "repository": "https://github.com/castlabs/ui-styleguide",
5
5
  "private": false,
6
6
  "description": "A vanilla HTML/CS/JS & Vue.js component library for castLabs.",
@@ -203,7 +203,7 @@ div.cl-dropdown summary {
203
203
  font-size: px(14);
204
204
  font-weight: 400;
205
205
  letter-spacing: 0;
206
- margin-top: px(5);
206
+ margin-top: px(3);
207
207
  opacity: $color-hover-opacity;
208
208
  }
209
209
 
@@ -303,6 +303,10 @@ main {
303
303
  }
304
304
  }
305
305
 
306
+ .cl-nowrap {
307
+ text-wrap: nowrap;
308
+ }
309
+
306
310
  // --- text select -------------------------------------------------------------
307
311
 
308
312
  ::selection {
package/types/index.d.ts CHANGED
@@ -148,5 +148,17 @@ export type ClService = {
148
148
  subtitle: string
149
149
  title: string
150
150
  urlManage: (env?: string, oid?: string) => string
151
+ sidenav: boolean
151
152
  }
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
+ }