@castlabs/ui 7.9.1 → 7.9.3
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-editor.css +1 -1
- package/dist/castlabs-ui-editor.umd.js +1 -1
- package/dist/castlabs-ui.common.js +2 -2
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +12 -3
- package/dist/castlabs-ui.css +1 -1
- package/dist/castlabs-ui.module.js +12 -3
- package/dist/castlabs-ui.umd.js +3 -3
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/layout/meta.scss +1 -1
- package/types/index.d.ts +2 -18
package/dist/castlabs-ui.core.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @castlabs/ui v7.9.
|
|
1
|
+
/* @castlabs/ui v7.9.3 */
|
|
2
2
|
|
|
3
3
|
/*!
|
|
4
4
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
@@ -325,6 +325,15 @@ const CONST = {
|
|
|
325
325
|
SEA: '#5d9dd1',
|
|
326
326
|
SKY: '#71c0ff',
|
|
327
327
|
STEEL: '#a0a0a0'
|
|
328
|
+
},
|
|
329
|
+
SPACING: {
|
|
330
|
+
HUGE: '48px',
|
|
331
|
+
LARGE: '32px',
|
|
332
|
+
MEDIUM: '24px',
|
|
333
|
+
SMALL: '16px',
|
|
334
|
+
TINY: '8px',
|
|
335
|
+
MICRO: '4px',
|
|
336
|
+
NONE: '0px'
|
|
328
337
|
}
|
|
329
338
|
}
|
|
330
339
|
|
|
@@ -1028,7 +1037,7 @@ function clCopyData (data) {
|
|
|
1028
1037
|
* @param {ComponentCustomProperties} component Vue component to set the loaded flag on.
|
|
1029
1038
|
* @param {function[]} forced Array of callbacks will always run (forced)
|
|
1030
1039
|
* @param {function[]} optional (Optional) Array of callbacks that will only load if not yet loaded (non-forced)
|
|
1031
|
-
* @param {boolean} loading If false, the component.loading Promise
|
|
1040
|
+
* @param {boolean} loading If false, the component.loading Promise won’t be handled.
|
|
1032
1041
|
* @returns A promise of all the triggered callbacks.
|
|
1033
1042
|
* @deprecated use clReload() instead
|
|
1034
1043
|
*/
|
|
@@ -1072,7 +1081,7 @@ function clReloadStore (component, forced = [], optional = [], loading = true) {
|
|
|
1072
1081
|
* @param {ComponentCustomProperties} component Vue component to set the loaded flag on.
|
|
1073
1082
|
* @param {function[]} forced Array of callbacks will always run (forced)
|
|
1074
1083
|
* @param {function[]} optional (Optional) Array of callbacks that will only load if not yet loaded (non-forced)
|
|
1075
|
-
* @param {boolean} loading If false, the component.loading Promise
|
|
1084
|
+
* @param {boolean} loading If false, the component.loading Promise won’t be handled.
|
|
1076
1085
|
* @returns A promise of all the triggered callbacks.
|
|
1077
1086
|
*/
|
|
1078
1087
|
function clReload (component, forced = [], optional = [], loading = true) {
|