@castlabs/ui 5.0.0 → 5.1.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-editor.common.js +1 -1
- package/dist/castlabs-ui-editor.common.js.map +1 -1
- package/dist/castlabs-ui-editor.umd.js +1 -1
- package/dist/castlabs-ui-editor.umd.js.map +1 -1
- package/dist/castlabs-ui.common.js +4 -4
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +11 -3
- package/dist/castlabs-ui.css +1 -1
- package/dist/castlabs-ui.module.js +11 -3
- package/dist/castlabs-ui.umd.js +6 -6
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ClDropdown/style.scss +10 -2
- package/src/components/ClHighlight/style.scss +21 -0
- package/src/styles/components/button.variables.scss +1 -1
- package/src/styles/components/form.variables.scss +1 -1
- package/src/styles/ui.scss +1 -0
package/dist/castlabs-ui.core.js
CHANGED
|
@@ -1038,6 +1038,14 @@ function clReload (component, forced = [], optional = [], loading = true) {
|
|
|
1038
1038
|
// --- $ref typescript cast methods --------------------------------------------
|
|
1039
1039
|
// -----------------------------------------------------------------------------
|
|
1040
1040
|
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1041
|
+
function clRefClField (ref) {
|
|
1042
|
+
return ref
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
function clRefClFieldGroup (ref) {
|
|
1046
|
+
return ref
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
function clRefHTMLElement (ref) {
|
|
1050
|
+
return ref
|
|
1051
|
+
}
|