@cuby-ui/core 0.0.104 → 0.0.105

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@cuby-ui/core",
3
- "version": "0.0.104",
3
+ "version": "0.0.105",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=15.0.0",
6
6
  "@angular/core": ">=15.0.0",
7
7
  "@angular/forms": ">=15.0.0",
8
- "@cuby-ui/icons": "^0.0.103",
9
- "@cuby-ui/cdk": "^0.0.103"
8
+ "@cuby-ui/icons": "^0.0.105",
9
+ "@cuby-ui/cdk": "^0.0.105"
10
10
  },
11
11
  "dependencies": {
12
12
  "tslib": "^2.3.0"
package/styles/theme.scss CHANGED
@@ -130,6 +130,8 @@
130
130
  --cui-focus: var(--cui-blue-100);
131
131
 
132
132
  --cui-input: var(--cui-base-10);
133
+
134
+ --cui-badge-info-bg: var(--cui-blue-50);
133
135
  }
134
136
 
135
137
  [cuiTheme='dark'] {
@@ -154,4 +156,6 @@
154
156
  --cui-focus: var(--cui-light-blue-700);
155
157
 
156
158
  --cui-input: var(--cui-slate-700);
159
+
160
+ --cui-badge-info-bg: var(--cui-blue-900);
157
161
  }
@@ -127,3 +127,5 @@ $cui-info: var(--cui-info);
127
127
  $cui-focus: var(--cui-focus);
128
128
 
129
129
  $cui-input: var(--cui-input);
130
+
131
+ $cui-badge-info-bg: var(--cui-badge-info-bg);