@castlabs/ui 7.6.2 → 7.8.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/dist/castlabs-ui.common.js +3 -3
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +23 -0
- package/dist/castlabs-ui.css +1 -1
- package/dist/castlabs-ui.module.js +23 -0
- package/dist/castlabs-ui.umd.js +4 -4
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ClCard/style.variables.scss +1 -2
- package/src/components/ClProgress/style.scss +1 -1
- package/src/components/form/ClField/style.scss +12 -1
- package/src/components/form/ClFieldGroup/style.scss +16 -6
- package/src/components/form/ClFieldInput/style.scss +1 -1
- package/src/components/navigation/ClNavTop/style.scss +10 -4
- package/src/components/table/ClTableCel/Currency/style.scss +9 -0
- package/src/components/table/ClTableCel/Time/style.scss +16 -0
- package/src/styles/abstracts/typography.scss +1 -1
- package/src/styles/assets/logo.scss +16 -0
- package/src/styles/layout/helper.scss +122 -9
- package/src/styles/layout/meta.scss +3 -0
- package/src/styles/ui.scss +2 -0
- package/types/index.d.ts +23 -0
package/dist/castlabs-ui.core.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* @castlabs/ui v7.8.0 */
|
|
2
|
+
|
|
1
3
|
/*!
|
|
2
4
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
3
5
|
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
|
@@ -305,6 +307,27 @@ function getColIndex (col) {
|
|
|
305
307
|
return colNo
|
|
306
308
|
}
|
|
307
309
|
|
|
310
|
+
const CONST = {
|
|
311
|
+
COLOR: {
|
|
312
|
+
ASH: '#6d5e5e',
|
|
313
|
+
BERRY: '#6e1c3b',
|
|
314
|
+
BRICK: '#ba4f4f',
|
|
315
|
+
CLAY: '#cfc8c8',
|
|
316
|
+
EGGSHELL: '#fbf9f2',
|
|
317
|
+
HAZE: '#eeece6',
|
|
318
|
+
HONEY: '#dc9404',
|
|
319
|
+
LEAF: '#53965d',
|
|
320
|
+
NIGHT: '#262a35',
|
|
321
|
+
ORCHID: '#b271bf',
|
|
322
|
+
PETROL: '#096174',
|
|
323
|
+
RED: '#fa423c',
|
|
324
|
+
SAND: '#fdf5cf',
|
|
325
|
+
SEA: '#5d9dd1',
|
|
326
|
+
SKY: '#71c0ff',
|
|
327
|
+
STEEL: '#a0a0a0'
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
308
331
|
|
|
309
332
|
|
|
310
333
|
// -----------------------------------------------------------------------------
|