@castlabs/ui 7.19.2 → 7.20.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/dist/castlabs-ui.common.js +2 -2
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +3 -7
- package/dist/castlabs-ui.css +1 -1
- package/dist/castlabs-ui.module.js +3 -7
- 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/form/ClFieldInput/style.scss +4 -1
- package/src/components/navigation/ClNavSide/ClNavDrawer/style.scss +1 -3
- package/src/styles/layout/grid.scss +7 -0
- package/src/styles/layout/meta.scss +1 -1
- package/types/index.d.ts +1 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @castlabs/ui v7.
|
|
1
|
+
/* @castlabs/ui v7.20.1 */
|
|
2
2
|
|
|
3
3
|
/*!
|
|
4
4
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
@@ -728,7 +728,6 @@ function basic (service) {
|
|
|
728
728
|
title: service.title,
|
|
729
729
|
subtitle: service.subtitle,
|
|
730
730
|
url: '#',
|
|
731
|
-
locked: false,
|
|
732
731
|
disabled: false,
|
|
733
732
|
badge: undefined
|
|
734
733
|
}
|
|
@@ -738,7 +737,6 @@ function disabled (service) {
|
|
|
738
737
|
// sidenav entry in org-unavailable mode
|
|
739
738
|
return {
|
|
740
739
|
...basic(service),
|
|
741
|
-
locked: true,
|
|
742
740
|
disabled: true
|
|
743
741
|
}
|
|
744
742
|
}
|
|
@@ -764,8 +762,7 @@ function subscribe (service, oid, env) {
|
|
|
764
762
|
return {
|
|
765
763
|
...basic(service),
|
|
766
764
|
url: service.urlPlan(env, oid),
|
|
767
|
-
badge: 'Subscribe'
|
|
768
|
-
locked: true
|
|
765
|
+
badge: 'Subscribe'
|
|
769
766
|
}
|
|
770
767
|
}
|
|
771
768
|
|
|
@@ -774,8 +771,7 @@ function pending (service, oid, env) {
|
|
|
774
771
|
return {
|
|
775
772
|
...basic(service),
|
|
776
773
|
url: service.urlPlan(env, oid),
|
|
777
|
-
badge: 'Pending'
|
|
778
|
-
locked: true
|
|
774
|
+
badge: 'Pending'
|
|
779
775
|
}
|
|
780
776
|
}
|
|
781
777
|
|