@cuby-ui/core 0.0.219 → 0.0.221
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/components/card-wrapper/card-wrapper.component.d.ts +6 -0
- package/components/card-wrapper/index.d.ts +1 -0
- package/components/index.d.ts +1 -0
- package/esm2022/components/card-wrapper/card-wrapper.component.mjs +16 -0
- package/esm2022/components/card-wrapper/index.mjs +2 -0
- package/esm2022/components/index.mjs +2 -1
- package/fesm2022/cuby-ui-core.mjs +15 -1
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +3 -3
- package/styles/theme.scss +1 -12
- package/styles/variables/colors.scss +1 -12
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.221",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/forms": ">=18.0.0",
|
|
8
|
-
"@cuby-ui/cdk": "^0.0.
|
|
9
|
-
"@cuby-ui/icons": "^0.0.
|
|
8
|
+
"@cuby-ui/cdk": "^0.0.221",
|
|
9
|
+
"@cuby-ui/icons": "^0.0.221",
|
|
10
10
|
"@maskito/angular": "^2.5.0",
|
|
11
11
|
"@maskito/core": "^2.5.0",
|
|
12
12
|
"@maskito/kit": "^2.5.0",
|
package/styles/theme.scss
CHANGED
|
@@ -148,17 +148,6 @@
|
|
|
148
148
|
--cui-violet-800: #291A77;
|
|
149
149
|
--cui-violet-900: #1A0F55;
|
|
150
150
|
|
|
151
|
-
--cui-lavender-50: #F7F0FB;
|
|
152
|
-
--cui-lavender-100: #F3E8F9;
|
|
153
|
-
--cui-lavender-200: #E6CFF3;
|
|
154
|
-
--cui-lavender-300: #C47EEE;
|
|
155
|
-
--cui-lavender-400: #9E5BC3;
|
|
156
|
-
--cui-lavender-500: #8C51AE;
|
|
157
|
-
--cui-lavender-600: #834CA3;
|
|
158
|
-
--cui-lavender-700: #693D82;
|
|
159
|
-
--cui-lavender-800: #4F2D62;
|
|
160
|
-
--cui-lavender-900: #3D234C;
|
|
161
|
-
|
|
162
151
|
--cui-purple-50: #F4F2FF;
|
|
163
152
|
--cui-purple-100: #D4CDFF;
|
|
164
153
|
--cui-purple-200: #B4A7FF;
|
|
@@ -417,4 +406,4 @@
|
|
|
417
406
|
--cui-yellow-bg: var(--cui-yellow-600);
|
|
418
407
|
--cui-lavender-bg: var(--cui-lavender-900);
|
|
419
408
|
--cui-violet-bg: var(-cui-violet-600);
|
|
420
|
-
}
|
|
409
|
+
}
|
|
@@ -154,17 +154,6 @@ $cui-purple-700: var(--cui-purple-700);
|
|
|
154
154
|
$cui-purple-800: var(--cui-purple-800);
|
|
155
155
|
$cui-purple-900: var(--cui-purple-900);
|
|
156
156
|
|
|
157
|
-
$cui-lavender-50: var(--cui-lavender-50);
|
|
158
|
-
$cui-lavender-100: var(--cui-lavender-100);
|
|
159
|
-
$cui-lavender-200: var(--cui-lavender-200);
|
|
160
|
-
$cui-lavender-300: var(--cui-lavender-300);
|
|
161
|
-
$cui-lavender-400: var(--cui-lavender-400);
|
|
162
|
-
$cui-lavender-500: var(--cui-lavender-500);
|
|
163
|
-
$cui-lavender-600: var(--cui-lavender-600);
|
|
164
|
-
$cui-lavender-700: var(--cui-lavender-700);
|
|
165
|
-
$cui-lavender-800: var(--cui-lavender-800);
|
|
166
|
-
$cui-lavender-900: var(--cui-lavender-900);
|
|
167
|
-
|
|
168
157
|
$cui-base: var(--cui-base);
|
|
169
158
|
$cui-base-0: var(--cui-base-0);
|
|
170
159
|
$cui-base-10: var(--cui-base-10);
|
|
@@ -284,4 +273,4 @@ $cui-toast-success-icon: var(--cui-toast-success-icon);
|
|
|
284
273
|
$cui-cyan-bg: var(--cui-cyan-bg);
|
|
285
274
|
$cui-yellow-bg: var(--cui-yellow-bg);
|
|
286
275
|
$cui-violet-bg: var(--cui-violet-bg);
|
|
287
|
-
$cui-lavender-bg: var(--cui-lavender-bg);
|
|
276
|
+
$cui-lavender-bg: var(--cui-lavender-bg);
|