@bnsights/bbsf-controls 1.0.54 → 1.0.55
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/README.md
CHANGED
|
@@ -6,6 +6,10 @@ For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsigh
|
|
|
6
6
|
|
|
7
7
|
# Change Log
|
|
8
8
|
|
|
9
|
+
## 1.0.55 / 1-9-2022
|
|
10
|
+
===================
|
|
11
|
+
* Add style to disapled options in dropdown control
|
|
12
|
+
|
|
9
13
|
## 1.0.54 / 1-9-2022
|
|
10
14
|
===================
|
|
11
15
|
* Add LabelKey to MultilingualControlOptionsBase
|
|
Binary file
|
package/package.json
CHANGED
package/src/lib/assets/Style.css
CHANGED
|
@@ -1144,4 +1144,14 @@ button.swal2-cancel {
|
|
|
1144
1144
|
/*table with control remove margin*/
|
|
1145
1145
|
.table-w-control .b-control .form-group {
|
|
1146
1146
|
margin-bottom: 0px;
|
|
1147
|
-
}
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled {
|
|
1150
|
+
background: #efefef !important;
|
|
1151
|
+
cursor: not-allowed;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option-disabled .ng-option-label {
|
|
1155
|
+
cursor: not-allowed !important;
|
|
1156
|
+
color: #999999 !important;
|
|
1157
|
+
}
|
|
Binary file
|