@finema/finework-layer 0.2.59 → 0.2.60

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.
@@ -6,29 +6,6 @@
6
6
  root-app-path="/layout-admin"
7
7
  >
8
8
  <NuxtLayout>
9
- <TeleportSafe to="#page-filters">
10
- <div class="mb-4 flex items-center justify-between gap-1">
11
- <div class="font-bold">
12
- Filters
13
- <Badge
14
- v-if="countForm"
15
- class="size-6 items-center justify-center rounded-full"
16
- :label="countForm"
17
- />
18
- </div>
19
- <Button
20
- label="Clear all"
21
- variant="ghost"
22
- class="text-muted p-0 text-sm"
23
- @click="form.resetForm()"
24
- />
25
- </div>
26
- <FormFields
27
- :form="form"
28
- :options="formFields"
29
- class="grid w-full gap-x-3"
30
- />
31
- </TeleportSafe>
32
9
  <div class="mb-4 flex gap-4">
33
10
  <FormFields
34
11
  :form="form"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.59...0.2.60) (2025-11-18)
4
+
3
5
  ## [0.2.59](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.58...0.2.59) (2025-11-18)
4
6
 
5
7
  ## [0.2.58](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.57...0.2.58) (2025-11-18)
@@ -1,7 +1,74 @@
1
1
  @import "tailwindcss";
2
2
 
3
+ @theme static{
4
+ --color-main: #1570EF;
5
+ --color-main-50: #EFF8FF;
6
+ --color-main-100: #D1E9FF;
7
+ --color-main-200: #B2DDFF;
8
+ --color-main-300: #84CAFF;
9
+ --color-main-400: #53B1FD;
10
+ --color-main-500: #2E90FA;
11
+ --color-main-600: #1570EF;
12
+ --color-main-700: #175CD3;
13
+ --color-main-800: #1849A9;
14
+ --color-main-900: #194185;
15
+ --color-main-950: #102A56;
16
+
17
+ --color-warning: #DC6803;
18
+ --color-warning-50: #FFFAEB;
19
+ --color-warning-100: #FEF0C7;
20
+ --color-warning-200: #FEDF89;
21
+ --color-warning-300: #FEC84B;
22
+ --color-warning-400: #FDB022;
23
+ --color-warning-500: #F79009;
24
+ --color-warning-600: #DC6803;
25
+ --color-warning-700: #B54708;
26
+ --color-warning-800: #93370D;
27
+ --color-warning-900: #7A2E0E;
28
+ --color-warning-950: #4E1D09;
29
+
30
+ --color-success: #079455;
31
+ --color-success-50: #ECFDF3;
32
+ --color-success-100: #DCFAE6;
33
+ --color-success-200: #ABEFC6;
34
+ --color-success-300: #75E0A7;
35
+ --color-success-400: #47CD89;
36
+ --color-success-500: #17B26A;
37
+ --color-success-600: #079455;
38
+ --color-success-700: #067647;
39
+ --color-success-800: #085D3A;
40
+ --color-success-900: #074D31;
41
+ --color-success-950: #053321;
42
+
43
+ --color-error: #AF1738;
44
+ --color-error-50: #FEF3F2;
45
+ --color-error-100: #FEE4E2;
46
+ --color-error-200: #FECDCA;
47
+ --color-error-300: #FDA29B;
48
+ --color-error-400: #F97066;
49
+ --color-error-500: #F04438;
50
+ --color-error-600: #D92D20;
51
+ --color-error-700: #B42318;
52
+ --color-error-800: #912018;
53
+ --color-error-900: #7A271A;
54
+ --color-error-950: #55160C;
55
+
56
+ --color-gray: #475467;
57
+ --color-gray-50: #F9FAFB;
58
+ --color-gray-100: #F2F4F7;
59
+ --color-gray-200: #EAECF0;
60
+ --color-gray-300: #D0D5DD;
61
+ --color-gray-400: #98A2B3;
62
+ --color-gray-500: #667085;
63
+ --color-gray-600: #475467;
64
+ --color-gray-700: #344054;
65
+ --color-gray-800: #182230;
66
+ --color-gray-900: #101828;
67
+ --color-gray-950: #0C111D;
68
+ }
3
69
  :root {
4
70
  --color-background: var(--color-gray-50);
71
+ --ui-primary: var(--color-primary-600);
5
72
  }
6
73
 
7
74
  body {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.59",
4
+ "version": "0.2.60",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",