@hed-hog/core 0.0.16 → 0.0.18
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/dist/auth/auth.controller.d.ts +1 -1
- package/dist/auth/auth.service.d.ts +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.controller.d.ts +2 -2
- package/dist/dashboard/dashboard-core/dashboard-core.service.d.ts +2 -2
- package/dist/dashboard/dashboard-user/dashboard-user.controller.d.ts +3 -3
- package/dist/dashboard/dashboard-user/dashboard-user.service.d.ts +3 -3
- package/dist/mail/mail.controller.d.ts +2 -2
- package/dist/mail/mail.service.d.ts +2 -2
- package/dist/menu/menu.controller.d.ts +6 -6
- package/dist/menu/menu.service.d.ts +6 -6
- package/dist/screen/screen.controller.d.ts +3 -3
- package/dist/screen/screen.service.d.ts +3 -3
- package/dist/setting/setting.controller.d.ts +4 -4
- package/dist/setting/setting.service.d.ts +4 -4
- package/dist/user/user.controller.d.ts +1 -1
- package/dist/user/user.service.d.ts +2 -2
- package/hedhog/data/setting_group.yaml +212 -100
- package/hedhog/table/setting.yaml +1 -0
- package/package.json +5 -5
|
@@ -21,9 +21,9 @@ export declare class AuthController {
|
|
|
21
21
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
22
22
|
created_at: Date;
|
|
23
23
|
updated_at: Date;
|
|
24
|
-
email: string | null;
|
|
25
24
|
user_id: number;
|
|
26
25
|
provider_user_id: string;
|
|
26
|
+
email: string | null;
|
|
27
27
|
scopes: string | null;
|
|
28
28
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
29
29
|
token_expires_at: Date | null;
|
|
@@ -67,9 +67,9 @@ export declare class AuthService {
|
|
|
67
67
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
68
68
|
created_at: Date;
|
|
69
69
|
updated_at: Date;
|
|
70
|
-
email: string | null;
|
|
71
70
|
user_id: number;
|
|
72
71
|
provider_user_id: string;
|
|
72
|
+
email: string | null;
|
|
73
73
|
scopes: string | null;
|
|
74
74
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
75
75
|
token_expires_at: Date | null;
|
|
@@ -16,9 +16,9 @@ export declare class DashboardCoreController {
|
|
|
16
16
|
path: string;
|
|
17
17
|
width: number;
|
|
18
18
|
id: number;
|
|
19
|
+
slug: string;
|
|
19
20
|
created_at: Date;
|
|
20
21
|
updated_at: Date;
|
|
21
|
-
slug: string;
|
|
22
22
|
min_width: number;
|
|
23
23
|
max_width: number | null;
|
|
24
24
|
min_height: number;
|
|
@@ -31,11 +31,11 @@ export declare class DashboardCoreController {
|
|
|
31
31
|
id: number;
|
|
32
32
|
created_at: Date;
|
|
33
33
|
updated_at: Date;
|
|
34
|
-
user_id: number;
|
|
35
34
|
height: number;
|
|
36
35
|
x_axis: number;
|
|
37
36
|
y_axis: number;
|
|
38
37
|
item_id: number;
|
|
38
|
+
user_id: number;
|
|
39
39
|
}[];
|
|
40
40
|
} & {
|
|
41
41
|
width: number;
|
|
@@ -16,9 +16,9 @@ export declare class DashboardCoreService {
|
|
|
16
16
|
path: string;
|
|
17
17
|
width: number;
|
|
18
18
|
id: number;
|
|
19
|
+
slug: string;
|
|
19
20
|
created_at: Date;
|
|
20
21
|
updated_at: Date;
|
|
21
|
-
slug: string;
|
|
22
22
|
min_width: number;
|
|
23
23
|
max_width: number | null;
|
|
24
24
|
min_height: number;
|
|
@@ -31,11 +31,11 @@ export declare class DashboardCoreService {
|
|
|
31
31
|
id: number;
|
|
32
32
|
created_at: Date;
|
|
33
33
|
updated_at: Date;
|
|
34
|
-
user_id: number;
|
|
35
34
|
height: number;
|
|
36
35
|
x_axis: number;
|
|
37
36
|
y_axis: number;
|
|
38
37
|
item_id: number;
|
|
38
|
+
user_id: number;
|
|
39
39
|
}[];
|
|
40
40
|
} & {
|
|
41
41
|
width: number;
|
|
@@ -19,33 +19,33 @@ export declare class DashboardUserController {
|
|
|
19
19
|
id: number;
|
|
20
20
|
created_at: Date;
|
|
21
21
|
updated_at: Date;
|
|
22
|
-
user_id: number;
|
|
23
22
|
height: number;
|
|
24
23
|
x_axis: number;
|
|
25
24
|
y_axis: number;
|
|
26
25
|
item_id: number;
|
|
26
|
+
user_id: number;
|
|
27
27
|
}>;
|
|
28
28
|
create(data: CreateDTO): Promise<{
|
|
29
29
|
width: number;
|
|
30
30
|
id: number;
|
|
31
31
|
created_at: Date;
|
|
32
32
|
updated_at: Date;
|
|
33
|
-
user_id: number;
|
|
34
33
|
height: number;
|
|
35
34
|
x_axis: number;
|
|
36
35
|
y_axis: number;
|
|
37
36
|
item_id: number;
|
|
37
|
+
user_id: number;
|
|
38
38
|
}>;
|
|
39
39
|
update(id: number, data: UpdateDTO): Promise<{
|
|
40
40
|
width: number;
|
|
41
41
|
id: number;
|
|
42
42
|
created_at: Date;
|
|
43
43
|
updated_at: Date;
|
|
44
|
-
user_id: number;
|
|
45
44
|
height: number;
|
|
46
45
|
x_axis: number;
|
|
47
46
|
y_axis: number;
|
|
48
47
|
item_id: number;
|
|
48
|
+
user_id: number;
|
|
49
49
|
}>;
|
|
50
50
|
delete(data: DeleteDTO): Promise<{
|
|
51
51
|
count: number;
|
|
@@ -23,22 +23,22 @@ export declare class DashboardUserService {
|
|
|
23
23
|
id: number;
|
|
24
24
|
created_at: Date;
|
|
25
25
|
updated_at: Date;
|
|
26
|
-
user_id: number;
|
|
27
26
|
height: number;
|
|
28
27
|
x_axis: number;
|
|
29
28
|
y_axis: number;
|
|
30
29
|
item_id: number;
|
|
30
|
+
user_id: number;
|
|
31
31
|
}>;
|
|
32
32
|
create(data: CreateDTO): Promise<{
|
|
33
33
|
width: number;
|
|
34
34
|
id: number;
|
|
35
35
|
created_at: Date;
|
|
36
36
|
updated_at: Date;
|
|
37
|
-
user_id: number;
|
|
38
37
|
height: number;
|
|
39
38
|
x_axis: number;
|
|
40
39
|
y_axis: number;
|
|
41
40
|
item_id: number;
|
|
41
|
+
user_id: number;
|
|
42
42
|
}>;
|
|
43
43
|
update({ id, data }: {
|
|
44
44
|
id: number;
|
|
@@ -48,11 +48,11 @@ export declare class DashboardUserService {
|
|
|
48
48
|
id: number;
|
|
49
49
|
created_at: Date;
|
|
50
50
|
updated_at: Date;
|
|
51
|
-
user_id: number;
|
|
52
51
|
height: number;
|
|
53
52
|
x_axis: number;
|
|
54
53
|
y_axis: number;
|
|
55
54
|
item_id: number;
|
|
55
|
+
user_id: number;
|
|
56
56
|
}>;
|
|
57
57
|
delete({ ids }: DeleteDTO): Promise<{
|
|
58
58
|
count: number;
|
|
@@ -51,9 +51,9 @@ export declare class MailController {
|
|
|
51
51
|
}[];
|
|
52
52
|
} & {
|
|
53
53
|
id: number;
|
|
54
|
+
slug: string;
|
|
54
55
|
created_at: Date;
|
|
55
56
|
updated_at: Date;
|
|
56
|
-
slug: string;
|
|
57
57
|
}>;
|
|
58
58
|
update(id: number, data: UpdateDTO): Promise<{
|
|
59
59
|
mail_locale: {
|
|
@@ -74,9 +74,9 @@ export declare class MailController {
|
|
|
74
74
|
}[];
|
|
75
75
|
} & {
|
|
76
76
|
id: number;
|
|
77
|
+
slug: string;
|
|
77
78
|
created_at: Date;
|
|
78
79
|
updated_at: Date;
|
|
79
|
-
slug: string;
|
|
80
80
|
}>;
|
|
81
81
|
delete(data: DeleteDTO): Promise<{
|
|
82
82
|
count: number;
|
|
@@ -63,9 +63,9 @@ export declare class MailService {
|
|
|
63
63
|
}[];
|
|
64
64
|
} & {
|
|
65
65
|
id: number;
|
|
66
|
+
slug: string;
|
|
66
67
|
created_at: Date;
|
|
67
68
|
updated_at: Date;
|
|
68
|
-
slug: string;
|
|
69
69
|
}>;
|
|
70
70
|
update({ id, data }: {
|
|
71
71
|
id: number;
|
|
@@ -89,9 +89,9 @@ export declare class MailService {
|
|
|
89
89
|
}[];
|
|
90
90
|
} & {
|
|
91
91
|
id: number;
|
|
92
|
+
slug: string;
|
|
92
93
|
created_at: Date;
|
|
93
94
|
updated_at: Date;
|
|
94
|
-
slug: string;
|
|
95
95
|
}>;
|
|
96
96
|
delete({ ids }: DeleteDTO): Promise<{
|
|
97
97
|
count: number;
|
|
@@ -46,32 +46,32 @@ export declare class MenuController {
|
|
|
46
46
|
show(menuId: number): Promise<{
|
|
47
47
|
id: number;
|
|
48
48
|
order: number;
|
|
49
|
+
slug: string;
|
|
49
50
|
created_at: Date;
|
|
50
51
|
updated_at: Date;
|
|
51
|
-
slug: string;
|
|
52
|
-
icon: string;
|
|
53
52
|
menu_id: number | null;
|
|
54
53
|
url: string | null;
|
|
54
|
+
icon: string;
|
|
55
55
|
}>;
|
|
56
56
|
create(data: CreateDTO): Promise<{
|
|
57
57
|
id: number;
|
|
58
58
|
order: number;
|
|
59
|
+
slug: string;
|
|
59
60
|
created_at: Date;
|
|
60
61
|
updated_at: Date;
|
|
61
|
-
slug: string;
|
|
62
|
-
icon: string;
|
|
63
62
|
menu_id: number | null;
|
|
64
63
|
url: string | null;
|
|
64
|
+
icon: string;
|
|
65
65
|
}>;
|
|
66
66
|
update(menuId: number, data: UpdateDTO): Promise<{
|
|
67
67
|
id: number;
|
|
68
68
|
order: number;
|
|
69
|
+
slug: string;
|
|
69
70
|
created_at: Date;
|
|
70
71
|
updated_at: Date;
|
|
71
|
-
slug: string;
|
|
72
|
-
icon: string;
|
|
73
72
|
menu_id: number | null;
|
|
74
73
|
url: string | null;
|
|
74
|
+
icon: string;
|
|
75
75
|
}>;
|
|
76
76
|
delete(data: DeleteDTO): Promise<{
|
|
77
77
|
count: number;
|
|
@@ -47,22 +47,22 @@ export declare class MenuService {
|
|
|
47
47
|
get(menuId: number): Promise<{
|
|
48
48
|
id: number;
|
|
49
49
|
order: number;
|
|
50
|
+
slug: string;
|
|
50
51
|
created_at: Date;
|
|
51
52
|
updated_at: Date;
|
|
52
|
-
slug: string;
|
|
53
|
-
icon: string;
|
|
54
53
|
menu_id: number | null;
|
|
55
54
|
url: string | null;
|
|
55
|
+
icon: string;
|
|
56
56
|
}>;
|
|
57
57
|
create({ slug, url, icon, order, menuId }: CreateDTO): Promise<{
|
|
58
58
|
id: number;
|
|
59
59
|
order: number;
|
|
60
|
+
slug: string;
|
|
60
61
|
created_at: Date;
|
|
61
62
|
updated_at: Date;
|
|
62
|
-
slug: string;
|
|
63
|
-
icon: string;
|
|
64
63
|
menu_id: number | null;
|
|
65
64
|
url: string | null;
|
|
65
|
+
icon: string;
|
|
66
66
|
}>;
|
|
67
67
|
update({ id, data }: {
|
|
68
68
|
id: number;
|
|
@@ -70,12 +70,12 @@ export declare class MenuService {
|
|
|
70
70
|
}): Promise<{
|
|
71
71
|
id: number;
|
|
72
72
|
order: number;
|
|
73
|
+
slug: string;
|
|
73
74
|
created_at: Date;
|
|
74
75
|
updated_at: Date;
|
|
75
|
-
slug: string;
|
|
76
|
-
icon: string;
|
|
77
76
|
menu_id: number | null;
|
|
78
77
|
url: string | null;
|
|
78
|
+
icon: string;
|
|
79
79
|
}>;
|
|
80
80
|
delete({ ids }: DeleteDTO, locale?: string): Promise<{
|
|
81
81
|
count: number;
|
|
@@ -41,23 +41,23 @@ export declare class ScreenController {
|
|
|
41
41
|
}>;
|
|
42
42
|
show(screenId: number): Promise<{
|
|
43
43
|
id: number;
|
|
44
|
+
slug: string;
|
|
44
45
|
created_at: Date;
|
|
45
46
|
updated_at: Date;
|
|
46
|
-
slug: string;
|
|
47
47
|
icon: string | null;
|
|
48
48
|
}>;
|
|
49
49
|
create(data: CreateDTO): Promise<{
|
|
50
50
|
id: number;
|
|
51
|
+
slug: string;
|
|
51
52
|
created_at: Date;
|
|
52
53
|
updated_at: Date;
|
|
53
|
-
slug: string;
|
|
54
54
|
icon: string | null;
|
|
55
55
|
}>;
|
|
56
56
|
update(screenId: number, data: UpdateDTO): Promise<{
|
|
57
57
|
id: number;
|
|
58
|
+
slug: string;
|
|
58
59
|
created_at: Date;
|
|
59
60
|
updated_at: Date;
|
|
60
|
-
slug: string;
|
|
61
61
|
icon: string | null;
|
|
62
62
|
}>;
|
|
63
63
|
delete(data: DeleteDTO): Promise<{
|
|
@@ -43,16 +43,16 @@ export declare class ScreenService {
|
|
|
43
43
|
}>;
|
|
44
44
|
get(screenId: number): Promise<{
|
|
45
45
|
id: number;
|
|
46
|
+
slug: string;
|
|
46
47
|
created_at: Date;
|
|
47
48
|
updated_at: Date;
|
|
48
|
-
slug: string;
|
|
49
49
|
icon: string | null;
|
|
50
50
|
}>;
|
|
51
51
|
create({ slug, icon }: CreateDTO): Promise<{
|
|
52
52
|
id: number;
|
|
53
|
+
slug: string;
|
|
53
54
|
created_at: Date;
|
|
54
55
|
updated_at: Date;
|
|
55
|
-
slug: string;
|
|
56
56
|
icon: string | null;
|
|
57
57
|
}>;
|
|
58
58
|
update({ id, data }: {
|
|
@@ -60,9 +60,9 @@ export declare class ScreenService {
|
|
|
60
60
|
data: UpdateDTO;
|
|
61
61
|
}): Promise<{
|
|
62
62
|
id: number;
|
|
63
|
+
slug: string;
|
|
63
64
|
created_at: Date;
|
|
64
65
|
updated_at: Date;
|
|
65
|
-
slug: string;
|
|
66
66
|
icon: string | null;
|
|
67
67
|
}>;
|
|
68
68
|
delete({ ids }: DeleteDTO): Promise<{
|
|
@@ -59,9 +59,9 @@ export declare class SettingsController {
|
|
|
59
59
|
value: string | null;
|
|
60
60
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
61
61
|
id: number;
|
|
62
|
+
slug: string;
|
|
62
63
|
created_at: Date;
|
|
63
64
|
updated_at: Date;
|
|
64
|
-
slug: string;
|
|
65
65
|
group_id: number;
|
|
66
66
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
67
67
|
user_override: boolean;
|
|
@@ -81,9 +81,9 @@ export declare class SettingsController {
|
|
|
81
81
|
value: string | null;
|
|
82
82
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
83
83
|
id: number;
|
|
84
|
+
slug: string;
|
|
84
85
|
created_at: Date;
|
|
85
86
|
updated_at: Date;
|
|
86
|
-
slug: string;
|
|
87
87
|
group_id: number;
|
|
88
88
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
89
89
|
user_override: boolean;
|
|
@@ -99,9 +99,9 @@ export declare class SettingsController {
|
|
|
99
99
|
value: string | null;
|
|
100
100
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
101
101
|
id: number;
|
|
102
|
+
slug: string;
|
|
102
103
|
created_at: Date;
|
|
103
104
|
updated_at: Date;
|
|
104
|
-
slug: string;
|
|
105
105
|
group_id: number;
|
|
106
106
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
107
107
|
user_override: boolean;
|
|
@@ -113,9 +113,9 @@ export declare class SettingsController {
|
|
|
113
113
|
value: string | null;
|
|
114
114
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
115
115
|
id: number;
|
|
116
|
+
slug: string;
|
|
116
117
|
created_at: Date;
|
|
117
118
|
updated_at: Date;
|
|
118
|
-
slug: string;
|
|
119
119
|
group_id: number;
|
|
120
120
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
121
121
|
user_override: boolean;
|
|
@@ -61,9 +61,9 @@ export declare class SettingService {
|
|
|
61
61
|
value: string | null;
|
|
62
62
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
63
63
|
id: number;
|
|
64
|
+
slug: string;
|
|
64
65
|
created_at: Date;
|
|
65
66
|
updated_at: Date;
|
|
66
|
-
slug: string;
|
|
67
67
|
group_id: number;
|
|
68
68
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
69
69
|
user_override: boolean;
|
|
@@ -72,9 +72,9 @@ export declare class SettingService {
|
|
|
72
72
|
value: string | null;
|
|
73
73
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
74
74
|
id: number;
|
|
75
|
+
slug: string;
|
|
75
76
|
created_at: Date;
|
|
76
77
|
updated_at: Date;
|
|
77
|
-
slug: string;
|
|
78
78
|
group_id: number;
|
|
79
79
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
80
80
|
user_override: boolean;
|
|
@@ -86,9 +86,9 @@ export declare class SettingService {
|
|
|
86
86
|
value: string | null;
|
|
87
87
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
88
88
|
id: number;
|
|
89
|
+
slug: string;
|
|
89
90
|
created_at: Date;
|
|
90
91
|
updated_at: Date;
|
|
91
|
-
slug: string;
|
|
92
92
|
group_id: number;
|
|
93
93
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
94
94
|
user_override: boolean;
|
|
@@ -97,9 +97,9 @@ export declare class SettingService {
|
|
|
97
97
|
value: string | null;
|
|
98
98
|
type: import("@prisma/client").$Enums.setting_type_enum;
|
|
99
99
|
id: number;
|
|
100
|
+
slug: string;
|
|
100
101
|
created_at: Date;
|
|
101
102
|
updated_at: Date;
|
|
102
|
-
slug: string;
|
|
103
103
|
group_id: number;
|
|
104
104
|
component: import("@prisma/client").$Enums.setting_component_enum;
|
|
105
105
|
user_override: boolean;
|
|
@@ -25,9 +25,9 @@ export declare class UserController {
|
|
|
25
25
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
26
26
|
created_at: Date;
|
|
27
27
|
updated_at: Date;
|
|
28
|
-
email: string | null;
|
|
29
28
|
user_id: number;
|
|
30
29
|
provider_user_id: string;
|
|
30
|
+
email: string | null;
|
|
31
31
|
scopes: string | null;
|
|
32
32
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
33
33
|
token_expires_at: Date | null;
|
|
@@ -30,9 +30,9 @@ export declare class UserService {
|
|
|
30
30
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
31
31
|
created_at: Date;
|
|
32
32
|
updated_at: Date;
|
|
33
|
-
email: string | null;
|
|
34
33
|
user_id: number;
|
|
35
34
|
provider_user_id: string;
|
|
35
|
+
email: string | null;
|
|
36
36
|
scopes: string | null;
|
|
37
37
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
38
38
|
token_expires_at: Date | null;
|
|
@@ -124,9 +124,9 @@ export declare class UserService {
|
|
|
124
124
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
125
125
|
created_at: Date;
|
|
126
126
|
updated_at: Date;
|
|
127
|
-
email: string | null;
|
|
128
127
|
user_id: number;
|
|
129
128
|
provider_user_id: string;
|
|
129
|
+
email: string | null;
|
|
130
130
|
scopes: string | null;
|
|
131
131
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
132
132
|
token_expires_at: Date | null;
|
|
@@ -455,182 +455,292 @@
|
|
|
455
455
|
order: 1
|
|
456
456
|
- value: system
|
|
457
457
|
order: 2
|
|
458
|
-
- slug: theme-primary
|
|
458
|
+
- slug: theme-primary-light
|
|
459
459
|
type: string
|
|
460
460
|
name:
|
|
461
|
-
en: Primary Color
|
|
462
|
-
pt: Cor Primária
|
|
461
|
+
en: Primary Color (Light)
|
|
462
|
+
pt: Cor Primária (Claro)
|
|
463
463
|
description:
|
|
464
|
-
en: The primary color
|
|
465
|
-
pt: A cor primária
|
|
466
|
-
value: "#
|
|
464
|
+
en: The primary color for light theme
|
|
465
|
+
pt: A cor primária para o tema claro
|
|
466
|
+
value: "#f59e0b"
|
|
467
467
|
component: color-picker
|
|
468
468
|
relations:
|
|
469
469
|
setting_list:
|
|
470
|
-
- value: "#
|
|
470
|
+
- value: "#f59e0b"
|
|
471
471
|
order: 0
|
|
472
|
-
- value: "#
|
|
472
|
+
- value: "#3B82F6"
|
|
473
473
|
order: 1
|
|
474
|
-
- value: "#
|
|
474
|
+
- value: "#22C55E"
|
|
475
475
|
order: 2
|
|
476
|
-
- value: "#
|
|
476
|
+
- value: "#8B5CF6"
|
|
477
477
|
order: 3
|
|
478
|
-
- value: "#
|
|
478
|
+
- value: "#EF4444"
|
|
479
479
|
order: 4
|
|
480
|
-
- slug: theme-primary-foreground
|
|
480
|
+
- slug: theme-primary-foreground-light
|
|
481
481
|
type: string
|
|
482
482
|
name:
|
|
483
|
-
en: Primary Color Foreground
|
|
484
|
-
pt: Contraste da Cor Primária
|
|
483
|
+
en: Primary Color Foreground (Light)
|
|
484
|
+
pt: Contraste da Cor Primária (Claro)
|
|
485
485
|
description:
|
|
486
|
-
en: The primary color foreground
|
|
487
|
-
pt: O contraste da cor primária
|
|
488
|
-
value: "#
|
|
486
|
+
en: The primary color foreground for light theme
|
|
487
|
+
pt: O contraste da cor primária para o tema claro
|
|
488
|
+
value: "#ffffff"
|
|
489
489
|
component: color-picker
|
|
490
490
|
relations:
|
|
491
491
|
setting_list:
|
|
492
|
-
- value: "#
|
|
492
|
+
- value: "#ffffff"
|
|
493
493
|
order: 0
|
|
494
|
-
- value: "#
|
|
494
|
+
- value: "#fafafa"
|
|
495
495
|
order: 1
|
|
496
|
-
- value: "#
|
|
496
|
+
- value: "#f4f4f5"
|
|
497
497
|
order: 2
|
|
498
|
-
|
|
499
|
-
order: 3
|
|
500
|
-
- value: "#F97316"
|
|
501
|
-
order: 4
|
|
502
|
-
- slug: theme-secondary
|
|
498
|
+
- slug: theme-secondary-light
|
|
503
499
|
type: string
|
|
504
500
|
name:
|
|
505
|
-
en: Secondary Color
|
|
506
|
-
pt: Cor Secundária
|
|
501
|
+
en: Secondary Color (Light)
|
|
502
|
+
pt: Cor Secundária (Claro)
|
|
507
503
|
description:
|
|
508
|
-
en: The secondary color
|
|
509
|
-
pt: A cor secundária
|
|
504
|
+
en: The secondary color for light theme
|
|
505
|
+
pt: A cor secundária para o tema claro
|
|
510
506
|
value: "#f4f4f5"
|
|
511
507
|
component: color-picker
|
|
512
508
|
relations:
|
|
513
509
|
setting_list:
|
|
514
|
-
- value: "#
|
|
510
|
+
- value: "#f4f4f5"
|
|
515
511
|
order: 0
|
|
516
|
-
- value: "#
|
|
512
|
+
- value: "#e4e4e7"
|
|
517
513
|
order: 1
|
|
518
|
-
- value: "#
|
|
514
|
+
- value: "#d4d4d8"
|
|
519
515
|
order: 2
|
|
520
|
-
|
|
521
|
-
order: 3
|
|
522
|
-
- value: "#F97316"
|
|
523
|
-
order: 4
|
|
524
|
-
- slug: theme-secondary-foreground
|
|
516
|
+
- slug: theme-secondary-foreground-light
|
|
525
517
|
type: string
|
|
526
518
|
name:
|
|
527
|
-
en: Secondary Color Foreground
|
|
528
|
-
pt: Contraste da Cor Secundária
|
|
519
|
+
en: Secondary Color Foreground (Light)
|
|
520
|
+
pt: Contraste da Cor Secundária (Claro)
|
|
529
521
|
description:
|
|
530
|
-
en: The secondary color foreground
|
|
531
|
-
pt: O contraste da cor secundária
|
|
532
|
-
value: "#
|
|
522
|
+
en: The secondary color foreground for light theme
|
|
523
|
+
pt: O contraste da cor secundária para o tema claro
|
|
524
|
+
value: "#18181b"
|
|
533
525
|
component: color-picker
|
|
534
526
|
relations:
|
|
535
527
|
setting_list:
|
|
536
|
-
- value: "#
|
|
528
|
+
- value: "#18181b"
|
|
537
529
|
order: 0
|
|
538
|
-
- value: "#
|
|
530
|
+
- value: "#09090b"
|
|
539
531
|
order: 1
|
|
540
|
-
|
|
541
|
-
order: 2
|
|
542
|
-
- value: "#EF4444"
|
|
543
|
-
order: 3
|
|
544
|
-
- value: "#F97316"
|
|
545
|
-
order: 4
|
|
546
|
-
- slug: theme-accent
|
|
532
|
+
- slug: theme-accent-light
|
|
547
533
|
type: string
|
|
548
534
|
name:
|
|
549
|
-
en: Accent Color
|
|
550
|
-
pt: Cor de Realce
|
|
535
|
+
en: Accent Color (Light)
|
|
536
|
+
pt: Cor de Realce (Claro)
|
|
551
537
|
description:
|
|
552
|
-
en: The accent color
|
|
553
|
-
pt: A cor de realce
|
|
538
|
+
en: The accent color for light theme
|
|
539
|
+
pt: A cor de realce para o tema claro
|
|
554
540
|
value: "#f4f4f5"
|
|
555
541
|
component: color-picker
|
|
556
542
|
relations:
|
|
557
543
|
setting_list:
|
|
558
|
-
- value: "#
|
|
544
|
+
- value: "#f4f4f5"
|
|
559
545
|
order: 0
|
|
560
|
-
- value: "#
|
|
546
|
+
- value: "#e4e4e7"
|
|
561
547
|
order: 1
|
|
562
|
-
- value: "#
|
|
548
|
+
- value: "#d4d4d8"
|
|
563
549
|
order: 2
|
|
564
|
-
|
|
565
|
-
order: 3
|
|
566
|
-
- value: "#F97316"
|
|
567
|
-
order: 4
|
|
568
|
-
- slug: theme-accent-foreground
|
|
550
|
+
- slug: theme-accent-foreground-light
|
|
569
551
|
type: string
|
|
570
552
|
name:
|
|
571
|
-
en: Accent Color Foreground
|
|
572
|
-
pt: Contraste da Cor de Realce
|
|
553
|
+
en: Accent Color Foreground (Light)
|
|
554
|
+
pt: Contraste da Cor de Realce (Claro)
|
|
573
555
|
description:
|
|
574
|
-
en: The accent color foreground
|
|
575
|
-
pt: O contraste da cor de realce
|
|
576
|
-
value: "#
|
|
556
|
+
en: The accent color foreground for light theme
|
|
557
|
+
pt: O contraste da cor de realce para o tema claro
|
|
558
|
+
value: "#18181b"
|
|
577
559
|
component: color-picker
|
|
578
560
|
relations:
|
|
579
561
|
setting_list:
|
|
580
|
-
- value: "#
|
|
562
|
+
- value: "#18181b"
|
|
581
563
|
order: 0
|
|
582
|
-
- value: "#
|
|
564
|
+
- value: "#09090b"
|
|
583
565
|
order: 1
|
|
584
|
-
|
|
585
|
-
order: 2
|
|
586
|
-
- value: "#EF4444"
|
|
587
|
-
order: 3
|
|
588
|
-
- value: "#F97316"
|
|
589
|
-
order: 4
|
|
590
|
-
- slug: theme-muted
|
|
566
|
+
- slug: theme-muted-light
|
|
591
567
|
type: string
|
|
592
568
|
name:
|
|
593
|
-
en: Muted Color
|
|
594
|
-
pt: Cor Suave
|
|
569
|
+
en: Muted Color (Light)
|
|
570
|
+
pt: Cor Suave (Claro)
|
|
595
571
|
description:
|
|
596
|
-
en: The muted color
|
|
597
|
-
pt: A cor suave
|
|
572
|
+
en: The muted color for light theme
|
|
573
|
+
pt: A cor suave para o tema claro
|
|
598
574
|
value: "#f4f4f5"
|
|
599
575
|
component: color-picker
|
|
600
576
|
relations:
|
|
601
577
|
setting_list:
|
|
602
|
-
- value: "#
|
|
578
|
+
- value: "#f4f4f5"
|
|
603
579
|
order: 0
|
|
604
|
-
- value: "#
|
|
580
|
+
- value: "#e4e4e7"
|
|
605
581
|
order: 1
|
|
606
|
-
- value: "#
|
|
582
|
+
- value: "#d4d4d8"
|
|
607
583
|
order: 2
|
|
608
|
-
|
|
609
|
-
order: 3
|
|
610
|
-
- value: "#F97316"
|
|
611
|
-
order: 4
|
|
612
|
-
- slug: theme-muted-foreground
|
|
584
|
+
- slug: theme-muted-foreground-light
|
|
613
585
|
type: string
|
|
614
586
|
name:
|
|
615
|
-
en: Muted Color Foreground
|
|
616
|
-
pt: Contraste da Cor Suave
|
|
587
|
+
en: Muted Color Foreground (Light)
|
|
588
|
+
pt: Contraste da Cor Suave (Claro)
|
|
617
589
|
description:
|
|
618
|
-
en: The muted color foreground
|
|
619
|
-
pt: O contraste da cor suave
|
|
590
|
+
en: The muted color foreground for light theme
|
|
591
|
+
pt: O contraste da cor suave para o tema claro
|
|
620
592
|
value: "#71717a"
|
|
621
593
|
component: color-picker
|
|
622
594
|
relations:
|
|
623
595
|
setting_list:
|
|
624
|
-
- value: "#
|
|
596
|
+
- value: "#71717a"
|
|
625
597
|
order: 0
|
|
626
|
-
- value: "#
|
|
598
|
+
- value: "#52525b"
|
|
627
599
|
order: 1
|
|
628
|
-
- value: "#
|
|
600
|
+
- value: "#3f3f46"
|
|
601
|
+
order: 2
|
|
602
|
+
- slug: theme-primary-dark
|
|
603
|
+
type: string
|
|
604
|
+
name:
|
|
605
|
+
en: Primary Color (Dark)
|
|
606
|
+
pt: Cor Primária (Escuro)
|
|
607
|
+
description:
|
|
608
|
+
en: The primary color for dark theme
|
|
609
|
+
pt: A cor primária para o tema escuro
|
|
610
|
+
value: "#f59e0b"
|
|
611
|
+
component: color-picker
|
|
612
|
+
relations:
|
|
613
|
+
setting_list:
|
|
614
|
+
- value: "#f59e0b"
|
|
615
|
+
order: 0
|
|
616
|
+
- value: "#fbbf24"
|
|
617
|
+
order: 1
|
|
618
|
+
- value: "#f97316"
|
|
619
|
+
order: 2
|
|
620
|
+
- slug: theme-primary-foreground-dark
|
|
621
|
+
type: string
|
|
622
|
+
name:
|
|
623
|
+
en: Primary Color Foreground (Dark)
|
|
624
|
+
pt: Contraste da Cor Primária (Escuro)
|
|
625
|
+
description:
|
|
626
|
+
en: The primary color foreground for dark theme
|
|
627
|
+
pt: O contraste da cor primária para o tema escuro
|
|
628
|
+
value: "#ffffff"
|
|
629
|
+
component: color-picker
|
|
630
|
+
relations:
|
|
631
|
+
setting_list:
|
|
632
|
+
- value: "#ffffff"
|
|
633
|
+
order: 0
|
|
634
|
+
- value: "#fafafa"
|
|
635
|
+
order: 1
|
|
636
|
+
- slug: theme-secondary-dark
|
|
637
|
+
type: string
|
|
638
|
+
name:
|
|
639
|
+
en: Secondary Color (Dark)
|
|
640
|
+
pt: Cor Secundária (Escuro)
|
|
641
|
+
description:
|
|
642
|
+
en: The secondary color for dark theme
|
|
643
|
+
pt: A cor secundária para o tema escuro
|
|
644
|
+
value: "#27272a"
|
|
645
|
+
component: color-picker
|
|
646
|
+
relations:
|
|
647
|
+
setting_list:
|
|
648
|
+
- value: "#27272a"
|
|
649
|
+
order: 0
|
|
650
|
+
- value: "#3f3f46"
|
|
651
|
+
order: 1
|
|
652
|
+
- value: "#52525b"
|
|
653
|
+
order: 2
|
|
654
|
+
- slug: theme-secondary-foreground-dark
|
|
655
|
+
type: string
|
|
656
|
+
name:
|
|
657
|
+
en: Secondary Color Foreground (Dark)
|
|
658
|
+
pt: Contraste da Cor Secundária (Escuro)
|
|
659
|
+
description:
|
|
660
|
+
en: The secondary color foreground for dark theme
|
|
661
|
+
pt: O contraste da cor secundária para o tema escuro
|
|
662
|
+
value: "#fafafa"
|
|
663
|
+
component: color-picker
|
|
664
|
+
relations:
|
|
665
|
+
setting_list:
|
|
666
|
+
- value: "#fafafa"
|
|
667
|
+
order: 0
|
|
668
|
+
- value: "#f4f4f5"
|
|
669
|
+
order: 1
|
|
670
|
+
- value: "#e4e4e7"
|
|
671
|
+
order: 2
|
|
672
|
+
- slug: theme-accent-dark
|
|
673
|
+
type: string
|
|
674
|
+
name:
|
|
675
|
+
en: Accent Color (Dark)
|
|
676
|
+
pt: Cor de Realce (Escuro)
|
|
677
|
+
description:
|
|
678
|
+
en: The accent color for dark theme
|
|
679
|
+
pt: A cor de realce para o tema escuro
|
|
680
|
+
value: "#27272a"
|
|
681
|
+
component: color-picker
|
|
682
|
+
relations:
|
|
683
|
+
setting_list:
|
|
684
|
+
- value: "#27272a"
|
|
685
|
+
order: 0
|
|
686
|
+
- value: "#3f3f46"
|
|
687
|
+
order: 1
|
|
688
|
+
- value: "#52525b"
|
|
689
|
+
order: 2
|
|
690
|
+
- slug: theme-accent-foreground-dark
|
|
691
|
+
type: string
|
|
692
|
+
name:
|
|
693
|
+
en: Accent Color Foreground (Dark)
|
|
694
|
+
pt: Contraste da Cor de Realce (Escuro)
|
|
695
|
+
description:
|
|
696
|
+
en: The accent color foreground for dark theme
|
|
697
|
+
pt: O contraste da cor de realce para o tema escuro
|
|
698
|
+
value: "#fafafa"
|
|
699
|
+
component: color-picker
|
|
700
|
+
relations:
|
|
701
|
+
setting_list:
|
|
702
|
+
- value: "#fafafa"
|
|
703
|
+
order: 0
|
|
704
|
+
- value: "#f4f4f5"
|
|
705
|
+
order: 1
|
|
706
|
+
- value: "#e4e4e7"
|
|
707
|
+
order: 2
|
|
708
|
+
- slug: theme-muted-dark
|
|
709
|
+
type: string
|
|
710
|
+
name:
|
|
711
|
+
en: Muted Color (Dark)
|
|
712
|
+
pt: Cor Suave (Escuro)
|
|
713
|
+
description:
|
|
714
|
+
en: The muted color for dark theme
|
|
715
|
+
pt: A cor suave para o tema escuro
|
|
716
|
+
value: "#27272a"
|
|
717
|
+
component: color-picker
|
|
718
|
+
relations:
|
|
719
|
+
setting_list:
|
|
720
|
+
- value: "#27272a"
|
|
721
|
+
order: 0
|
|
722
|
+
- value: "#3f3f46"
|
|
723
|
+
order: 1
|
|
724
|
+
- value: "#52525b"
|
|
725
|
+
order: 2
|
|
726
|
+
- slug: theme-muted-foreground-dark
|
|
727
|
+
type: string
|
|
728
|
+
name:
|
|
729
|
+
en: Muted Color Foreground (Dark)
|
|
730
|
+
pt: Contraste da Cor Suave (Escuro)
|
|
731
|
+
description:
|
|
732
|
+
en: The muted color foreground for dark theme
|
|
733
|
+
pt: O contraste da cor suave para o tema escuro
|
|
734
|
+
value: "#a1a1aa"
|
|
735
|
+
component: color-picker
|
|
736
|
+
relations:
|
|
737
|
+
setting_list:
|
|
738
|
+
- value: "#a1a1aa"
|
|
739
|
+
order: 0
|
|
740
|
+
- value: "#71717a"
|
|
741
|
+
order: 1
|
|
742
|
+
- value: "#52525b"
|
|
629
743
|
order: 2
|
|
630
|
-
- value: "#EF4444"
|
|
631
|
-
order: 3
|
|
632
|
-
- value: "#F97316"
|
|
633
|
-
order: 4
|
|
634
744
|
- slug: theme-radius
|
|
635
745
|
type: string
|
|
636
746
|
name:
|
|
@@ -669,6 +779,7 @@
|
|
|
669
779
|
value: "16"
|
|
670
780
|
- slug: image-url
|
|
671
781
|
type: string
|
|
782
|
+
component: input-file
|
|
672
783
|
name:
|
|
673
784
|
en: System Image URL
|
|
674
785
|
pt: URL da Imagem do Sistema
|
|
@@ -678,6 +789,7 @@
|
|
|
678
789
|
value: /logo.svg
|
|
679
790
|
- slug: icon-url
|
|
680
791
|
type: string
|
|
792
|
+
component: input-file
|
|
681
793
|
name:
|
|
682
794
|
en: System Icon URL
|
|
683
795
|
pt: URL da Ícone do Sistema
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"sharp": "^0.34.2",
|
|
30
30
|
"speakeasy": "^2.0.0",
|
|
31
31
|
"uuid": "^11.1.0",
|
|
32
|
-
"@hed-hog/api": "0.0.3",
|
|
33
32
|
"@hed-hog/api-mail": "0.0.7",
|
|
34
|
-
"@hed-hog/api
|
|
33
|
+
"@hed-hog/api": "0.0.3",
|
|
34
|
+
"@hed-hog/types": "0.0.1",
|
|
35
35
|
"@hed-hog/api-prisma": "0.0.4",
|
|
36
|
-
"@hed-hog/api-
|
|
37
|
-
"@hed-hog/
|
|
36
|
+
"@hed-hog/api-locale": "0.0.10",
|
|
37
|
+
"@hed-hog/api-pagination": "0.0.3"
|
|
38
38
|
},
|
|
39
39
|
"exports": {
|
|
40
40
|
".": {
|