@finema/finework-layer 0.2.69 → 0.2.70
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.70](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.69...0.2.70) (2025-11-26)
|
|
4
|
+
|
|
3
5
|
## [0.2.69](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.68...0.2.69) (2025-11-26)
|
|
4
6
|
|
|
5
7
|
## [0.2.68](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.67...0.2.68) (2025-11-25)
|
package/app/app.config.ts
CHANGED
|
@@ -132,5 +132,14 @@ export default defineAppConfig({
|
|
|
132
132
|
td: 'text-[#222222] border-r border-[#EAECF0] last:border-0',
|
|
133
133
|
},
|
|
134
134
|
},
|
|
135
|
+
button: {
|
|
136
|
+
compoundVariants: [
|
|
137
|
+
{
|
|
138
|
+
color: 'error',
|
|
139
|
+
variant: 'outline',
|
|
140
|
+
class: 'ring ring-inset ring-[#FDA29B] text-[#B42318] hover:bg-error/10 active:bg-error/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent focus:outline-none focus-visible:ring-2 focus-visible:ring-error',
|
|
141
|
+
},
|
|
142
|
+
],
|
|
143
|
+
},
|
|
135
144
|
},
|
|
136
145
|
})
|
package/app/assets/css/main.css
CHANGED
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
--color-success-900: #074D31;
|
|
41
41
|
--color-success-950: #053321;
|
|
42
42
|
|
|
43
|
-
--color-error: #
|
|
43
|
+
--color-error: #D92D20 !important;
|
|
44
44
|
--color-error-50: #FEF3F2;
|
|
45
45
|
--color-error-100: #FEE4E2;
|
|
46
46
|
--color-error-200: #FECDCA;
|
|
47
47
|
--color-error-300: #FDA29B;
|
|
48
48
|
--color-error-400: #F97066;
|
|
49
49
|
--color-error-500: #F04438;
|
|
50
|
-
--color-error-600: #D92D20;
|
|
50
|
+
--color-error-600: #D92D20 !important;
|
|
51
51
|
--color-error-700: #B42318;
|
|
52
52
|
--color-error-800: #912018;
|
|
53
53
|
--color-error-900: #7A271A;
|
|
@@ -68,7 +68,9 @@
|
|
|
68
68
|
}
|
|
69
69
|
:root {
|
|
70
70
|
--color-background: var(--color-gray-50);
|
|
71
|
-
--ui-primary
|
|
71
|
+
--ui-primary:#1570EF;
|
|
72
|
+
--ui-error: #D92D20;
|
|
73
|
+
--ui-success: #079455;
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
body {
|