@cuby-ui/core 0.0.98 → 0.0.100

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuby-ui/core",
3
- "version": "0.0.98",
3
+ "version": "0.0.100",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=15.0.0",
6
6
  "@angular/core": ">=15.0.0",
@@ -31,7 +31,7 @@
31
31
  border: $border-width solid colors.$cui-base-200;
32
32
  border-radius: 8px;
33
33
  cursor: text;
34
- background: colors.$cui-gray-10;
34
+ background: colors.$cui-input;
35
35
  color: colors.$cui-base-900;
36
36
  font-family: fonts.$cui-main-font;
37
37
 
@@ -69,10 +69,6 @@
69
69
  }
70
70
  }
71
71
 
72
- :host-context([cuiTheme='dark']) {
73
- background: colors.$cui-slate-700;
74
- }
75
-
76
72
  .c-input {
77
73
  @include cui-clear-input();
78
74
 
package/styles/theme.scss CHANGED
@@ -127,6 +127,8 @@
127
127
  --cui-info: var(--cui-blue-600);
128
128
 
129
129
  --cui-focus: var(--cui-blue-100);
130
+
131
+ --cui-input: var(--cui-base-10);
130
132
  }
131
133
 
132
134
  [cuiTheme='dark'] {
@@ -149,4 +151,6 @@
149
151
  --cui-info: var(--cui-blue-500);
150
152
 
151
153
  --cui-focus: var(--cui-light-blue-700);
154
+
155
+ --cui-input: var(--cui-slate-700);
152
156
  }
@@ -125,3 +125,5 @@ $cui-danger: var(--cui-danger);
125
125
  $cui-info: var(--cui-info);
126
126
 
127
127
  $cui-focus: var(--cui-focus);
128
+
129
+ $cui-input: var(--cui-input);