lesli_audit 0.4.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/lesli_audit/application.js +2776 -1688
  3. data/app/assets/stylesheets/lesli_audit/application.css +35 -0
  4. data/app/controllers/lesli_audit/dashboards_controller.rb +26 -49
  5. data/app/controllers/lesli_audit/users_controller.rb +35 -0
  6. data/app/helpers/lesli_audit/dashboard/components_helper.rb +4 -0
  7. data/app/models/lesli_audit/account.rb +7 -0
  8. data/app/models/lesli_audit/dashboard/component.rb +18 -0
  9. data/app/models/lesli_audit/dashboard.rb +30 -2
  10. data/app/services/lesli_audit/account/activity_services.rb +2 -2
  11. data/app/services/lesli_audit/analytics/trend_services.rb +2 -2
  12. data/app/services/lesli_audit/user_service.rb +63 -0
  13. data/app/services/lesli_audit/users/activity_services.rb +2 -2
  14. data/app/services/lesli_audit/users/log_services.rb +2 -2
  15. data/app/services/lesli_audit/users/registration_services.rb +2 -2
  16. data/app/services/lesli_audit/users/role_services.rb +2 -2
  17. data/app/services/lesli_audit/users/working_hour_services.rb +2 -2
  18. data/app/views/lesli_audit/dashboard/components/_component.html.erb +2 -0
  19. data/app/views/lesli_audit/dashboard/components/_form.html.erb +17 -0
  20. data/app/views/lesli_audit/dashboard/components/edit.html.erb +1 -0
  21. data/app/views/lesli_audit/dashboard/components/index.html.erb +14 -0
  22. data/app/views/lesli_audit/dashboard/components/new.html.erb +9 -0
  23. data/app/views/lesli_audit/dashboard/components/show.html.erb +1 -0
  24. data/app/views/lesli_audit/dashboards/edit.html.erb +1 -10
  25. data/app/views/lesli_audit/partials/_engine-navigation.html.erb +4 -4
  26. data/config/locales/translations.en.yml +17 -1
  27. data/config/locales/translations.es.yml +17 -1
  28. data/config/locales/translations.fr.yml +21 -0
  29. data/config/locales/translations.it.yml +21 -0
  30. data/config/locales/translations.pt.yml +21 -0
  31. data/config/routes.rb +17 -3
  32. data/db/seeds.rb +4 -1
  33. data/lib/lesli_audit/version.rb +2 -2
  34. data/{app/assets/stylesheets/lesli_audit → lib/scss}/application.scss +0 -4
  35. data/lib/vue/application.js +47 -5
  36. data/lib/vue/apps/analytics/index.vue +1 -1
  37. data/lib/vue/apps/analytics/trends.vue +2 -3
  38. data/lib/vue/apps/dashboards/components/roles.vue +71 -0
  39. data/lib/vue/apps/dashboards/components/users.vue +71 -0
  40. data/lib/vue/apps/dashboards/show.vue +8 -0
  41. data/lib/vue/apps/requests/index.vue +1 -1
  42. data/lib/vue/apps/users/index.vue +80 -22
  43. data/lib/vue/apps/users/registrations.vue +21 -44
  44. data/lib/vue/components/requests.vue +1 -1
  45. data/lib/vue/components/visitors.vue +1 -1
  46. data/lib/vue/stores/analytics.js +24 -9
  47. data/lib/vue/stores/translations.json +133 -19
  48. data/lib/vue/stores/users.js +56 -0
  49. metadata +25 -10
  50. data/app/assets/javascripts/lesli_audit/application.js.LICENSE.txt +0 -327
  51. data/app/assets/stylesheets/lesli_audit/dashboard.scss +0 -0
  52. /data/db/migrate/v1.0/{0803000110_create_lesli_audit_accounts.rb → 0503000110_create_lesli_audit_accounts.rb} +0 -0
  53. /data/db/migrate/v1.0/{0803050110_create_lesli_audit_dashboards.rb → 0503050110_create_lesli_audit_dashboards.rb} +0 -0
  54. /data/db/migrate/v1.0/{0803050210_create_lesli_audit_dashboard_components.rb → 0503050210_create_lesli_audit_dashboard_components.rb} +0 -0
  55. /data/db/migrate/v1.0/{0803100010_create_lesli_audit_account_requests.rb → 0503100010_create_lesli_audit_account_requests.rb} +0 -0
  56. /data/db/migrate/v1.0/{0803110010_create_lesli_audit_user_requests.rb → 0503110010_create_lesli_audit_user_requests.rb} +0 -0
@@ -1,37 +1,151 @@
1
1
  {
2
2
  "en": {
3
3
  "lesli": {
4
- "shared": {
5
- "title_lesli": ":lesli.shared.title_lesli:"
4
+ "application": {
5
+ "navigation_logout": "Logout",
6
+ "navigation_my_profile": "My profile"
6
7
  },
7
- "users": {
8
- "title_users": "Users"
9
- }
10
- },
11
- "lesli_audit": {
12
- "shared": {
13
- "title_lesli": ":lesli.shared.title_lesli:"
8
+ "dashboards": {
9
+ "column_default": "Default",
10
+ "column_name": "Name",
11
+ "title": "Dashboards",
12
+ "view_add_component": "Add component"
14
13
  },
15
- "users": {
16
- "title_users": "Users"
14
+ "shared": {
15
+ "button_add_new": "Add new",
16
+ "button_delete": "Delete",
17
+ "button_edit": "Edit",
18
+ "button_list": "List",
19
+ "button_reload": "Reload",
20
+ "button_save": "Save",
21
+ "button_settings": "Settings",
22
+ "button_show": "Show",
23
+ "toolbar_search": "Search...",
24
+ "view_discussions": "Discussions",
25
+ "view_files": "Files",
26
+ "view_quick_actions": "Quick actions",
27
+ "view_status_active": "Active",
28
+ "view_status_inactive": "Inactive"
17
29
  }
18
30
  }
19
31
  },
20
32
  "es": {
21
33
  "lesli": {
34
+ "application": {
35
+ "navigation_logout": "Cerrar sesión",
36
+ "navigation_my_profile": "Mi perfil"
37
+ },
38
+ "dashboards": {
39
+ "column_default": "Default",
40
+ "column_name": "Nombre",
41
+ "title": "Dashboards",
42
+ "view_add_component": "Agregar componente"
43
+ },
22
44
  "shared": {
23
- "title_lesli": "Lesli en español "
45
+ "button_add_new": "Agregar nuevo",
46
+ "button_delete": "Eliminar",
47
+ "button_edit": "Editar",
48
+ "button_list": "Lista",
49
+ "button_reload": "Recargar",
50
+ "button_save": "Guardar",
51
+ "button_settings": "Configuración",
52
+ "button_show": "Ver",
53
+ "toolbar_search": "Buscar...",
54
+ "view_discussions": "Discusiones",
55
+ "view_files": "Archivos",
56
+ "view_quick_actions": "Acciones rapidas",
57
+ "view_status_active": "Activo",
58
+ "view_status_inactive": "Inactivo"
59
+ }
60
+ }
61
+ },
62
+ "fr": {
63
+ "lesli": {
64
+ "application": {
65
+ "navigation_logout": ":lesli.application.navigation_logout:",
66
+ "navigation_my_profile": ":lesli.application.navigation_my_profile:"
67
+ },
68
+ "dashboards": {
69
+ "column_default": ":lesli.dashboards.column_default:",
70
+ "column_name": ":lesli.dashboards.column_name:",
71
+ "title": ":lesli.dashboards.title:",
72
+ "view_add_component": ":lesli.dashboards.view_add_component:"
24
73
  },
25
- "users": {
26
- "title_users": "Usuarios"
74
+ "shared": {
75
+ "button_add_new": ":lesli.shared.button_add_new:",
76
+ "button_delete": ":lesli.shared.button_delete:",
77
+ "button_edit": ":lesli.shared.button_edit:",
78
+ "button_list": ":lesli.shared.button_list:",
79
+ "button_reload": ":lesli.shared.button_reload:",
80
+ "button_save": ":lesli.shared.button_save:",
81
+ "button_settings": ":lesli.shared.button_settings:",
82
+ "button_show": ":lesli.shared.button_show:",
83
+ "toolbar_search": ":lesli.shared.toolbar_search:",
84
+ "view_discussions": ":lesli.shared.view_discussions:",
85
+ "view_files": ":lesli.shared.view_files:",
86
+ "view_quick_actions": ":lesli.shared.view_quick_actions:",
87
+ "view_status_active": ":lesli.shared.view_status_active:",
88
+ "view_status_inactive": ":lesli.shared.view_status_inactive:"
27
89
  }
28
- },
29
- "lesli_audit": {
90
+ }
91
+ },
92
+ "it": {
93
+ "lesli": {
94
+ "application": {
95
+ "navigation_logout": ":lesli.application.navigation_logout:",
96
+ "navigation_my_profile": ":lesli.application.navigation_my_profile:"
97
+ },
98
+ "dashboards": {
99
+ "column_default": ":lesli.dashboards.column_default:",
100
+ "column_name": ":lesli.dashboards.column_name:",
101
+ "title": ":lesli.dashboards.title:",
102
+ "view_add_component": ":lesli.dashboards.view_add_component:"
103
+ },
30
104
  "shared": {
31
- "title_lesli": "Lesli en español "
105
+ "button_add_new": ":lesli.shared.button_add_new:",
106
+ "button_delete": ":lesli.shared.button_delete:",
107
+ "button_edit": ":lesli.shared.button_edit:",
108
+ "button_list": ":lesli.shared.button_list:",
109
+ "button_reload": ":lesli.shared.button_reload:",
110
+ "button_save": ":lesli.shared.button_save:",
111
+ "button_settings": ":lesli.shared.button_settings:",
112
+ "button_show": ":lesli.shared.button_show:",
113
+ "toolbar_search": ":lesli.shared.toolbar_search:",
114
+ "view_discussions": ":lesli.shared.view_discussions:",
115
+ "view_files": ":lesli.shared.view_files:",
116
+ "view_quick_actions": ":lesli.shared.view_quick_actions:",
117
+ "view_status_active": ":lesli.shared.view_status_active:",
118
+ "view_status_inactive": ":lesli.shared.view_status_inactive:"
119
+ }
120
+ }
121
+ },
122
+ "pt": {
123
+ "lesli": {
124
+ "application": {
125
+ "navigation_logout": ":lesli.application.navigation_logout:",
126
+ "navigation_my_profile": ":lesli.application.navigation_my_profile:"
32
127
  },
33
- "users": {
34
- "title_users": "Usuarios"
128
+ "dashboards": {
129
+ "column_default": ":lesli.dashboards.column_default:",
130
+ "column_name": ":lesli.dashboards.column_name:",
131
+ "title": ":lesli.dashboards.title:",
132
+ "view_add_component": ":lesli.dashboards.view_add_component:"
133
+ },
134
+ "shared": {
135
+ "button_add_new": ":lesli.shared.button_add_new:",
136
+ "button_delete": ":lesli.shared.button_delete:",
137
+ "button_edit": ":lesli.shared.button_edit:",
138
+ "button_list": ":lesli.shared.button_list:",
139
+ "button_reload": ":lesli.shared.button_reload:",
140
+ "button_save": ":lesli.shared.button_save:",
141
+ "button_settings": ":lesli.shared.button_settings:",
142
+ "button_show": ":lesli.shared.button_show:",
143
+ "toolbar_search": ":lesli.shared.toolbar_search:",
144
+ "view_discussions": ":lesli.shared.view_discussions:",
145
+ "view_files": ":lesli.shared.view_files:",
146
+ "view_quick_actions": ":lesli.shared.view_quick_actions:",
147
+ "view_status_active": ":lesli.shared.view_status_active:",
148
+ "view_status_inactive": ":lesli.shared.view_status_inactive:"
35
149
  }
36
150
  }
37
151
  }
@@ -0,0 +1,56 @@
1
+ /*
2
+
3
+ Lesli
4
+
5
+ Copyright (c) 2023, Lesli Technologies, S. A.
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see http://www.gnu.org/licenses/.
19
+
20
+ Lesli · Ruby on Rails SaaS Development Framework.
21
+
22
+ Made with ♥ by LesliTech
23
+ Building a better future, one line of code at a time.
24
+
25
+ @contact hello@lesli.tech
26
+ @website https://www.lesli.tech
27
+ @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
+
29
+ // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
+ // ·
31
+ */
32
+
33
+
34
+ // ·
35
+ import { defineStore } from "pinia"
36
+
37
+
38
+ // ·
39
+ export const useUsers = defineStore("audit.users", {
40
+ state: () => {
41
+ return {
42
+ registrations: []
43
+ }
44
+ },
45
+ actions: {
46
+
47
+ getRegistrations() {
48
+ this.registrations = []
49
+ this.http.get(this.url.audit("users/registrations")).then(result => {
50
+ this.registrations = result
51
+ }).catch(error => {
52
+ console.log(error)
53
+ })
54
+ }
55
+ }
56
+ })
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lesli_audit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Lesli Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-02 00:00:00.000000000 Z
11
+ date: 2024-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -35,9 +35,7 @@ files:
35
35
  - app/assets/config/lesli_audit_manifest.js
36
36
  - app/assets/images/lesli_audit/audit-logo.svg
37
37
  - app/assets/javascripts/lesli_audit/application.js
38
- - app/assets/javascripts/lesli_audit/application.js.LICENSE.txt
39
- - app/assets/stylesheets/lesli_audit/application.scss
40
- - app/assets/stylesheets/lesli_audit/dashboard.scss
38
+ - app/assets/stylesheets/lesli_audit/application.css
41
39
  - app/controllers/lesli_audit/accounts_controller.rb
42
40
  - app/controllers/lesli_audit/analytics_controller.rb
43
41
  - app/controllers/lesli_audit/application_controller.rb
@@ -47,6 +45,7 @@ files:
47
45
  - app/helpers/lesli_audit/accounts_helper.rb
48
46
  - app/helpers/lesli_audit/analytics_helper.rb
49
47
  - app/helpers/lesli_audit/application_helper.rb
48
+ - app/helpers/lesli_audit/dashboard/components_helper.rb
50
49
  - app/helpers/lesli_audit/dashboards_helper.rb
51
50
  - app/helpers/lesli_audit/requests_helper.rb
52
51
  - app/helpers/lesli_audit/users_helper.rb
@@ -58,6 +57,7 @@ files:
58
57
  - app/models/lesli_audit/analytic.rb
59
58
  - app/models/lesli_audit/application_record.rb
60
59
  - app/models/lesli_audit/dashboard.rb
60
+ - app/models/lesli_audit/dashboard/component.rb
61
61
  - app/models/lesli_audit/request.rb
62
62
  - app/models/lesli_audit/user.rb
63
63
  - app/models/lesli_audit/user_request.rb
@@ -66,6 +66,7 @@ files:
66
66
  - app/services/lesli_audit/analytics/trend_services.rb
67
67
  - app/services/lesli_audit/analytics/visitor_service.rb
68
68
  - app/services/lesli_audit/request_service.rb
69
+ - app/services/lesli_audit/user_service.rb
69
70
  - app/services/lesli_audit/users/activity_services.rb
70
71
  - app/services/lesli_audit/users/log_services.rb
71
72
  - app/services/lesli_audit/users/registration_services.rb
@@ -83,6 +84,12 @@ files:
83
84
  - app/views/lesli_audit/analytics/index.html.erb
84
85
  - app/views/lesli_audit/analytics/new.html.erb
85
86
  - app/views/lesli_audit/analytics/show.html.erb
87
+ - app/views/lesli_audit/dashboard/components/_component.html.erb
88
+ - app/views/lesli_audit/dashboard/components/_form.html.erb
89
+ - app/views/lesli_audit/dashboard/components/edit.html.erb
90
+ - app/views/lesli_audit/dashboard/components/index.html.erb
91
+ - app/views/lesli_audit/dashboard/components/new.html.erb
92
+ - app/views/lesli_audit/dashboard/components/show.html.erb
86
93
  - app/views/lesli_audit/dashboards/_dashboard.html.erb
87
94
  - app/views/lesli_audit/dashboards/_form.html.erb
88
95
  - app/views/lesli_audit/dashboards/edit.html.erb
@@ -104,12 +111,15 @@ files:
104
111
  - app/views/lesli_audit/users/show.html.erb
105
112
  - config/locales/translations.en.yml
106
113
  - config/locales/translations.es.yml
114
+ - config/locales/translations.fr.yml
115
+ - config/locales/translations.it.yml
116
+ - config/locales/translations.pt.yml
107
117
  - config/routes.rb
108
- - db/migrate/v1.0/0803000110_create_lesli_audit_accounts.rb
109
- - db/migrate/v1.0/0803050110_create_lesli_audit_dashboards.rb
110
- - db/migrate/v1.0/0803050210_create_lesli_audit_dashboard_components.rb
111
- - db/migrate/v1.0/0803100010_create_lesli_audit_account_requests.rb
112
- - db/migrate/v1.0/0803110010_create_lesli_audit_user_requests.rb
118
+ - db/migrate/v1.0/0503000110_create_lesli_audit_accounts.rb
119
+ - db/migrate/v1.0/0503050110_create_lesli_audit_dashboards.rb
120
+ - db/migrate/v1.0/0503050210_create_lesli_audit_dashboard_components.rb
121
+ - db/migrate/v1.0/0503100010_create_lesli_audit_account_requests.rb
122
+ - db/migrate/v1.0/0503110010_create_lesli_audit_user_requests.rb
113
123
  - db/seed/development.rb
114
124
  - db/seed/production.rb
115
125
  - db/seed/test.rb
@@ -117,11 +127,15 @@ files:
117
127
  - lib/lesli_audit.rb
118
128
  - lib/lesli_audit/engine.rb
119
129
  - lib/lesli_audit/version.rb
130
+ - lib/scss/application.scss
120
131
  - lib/tasks/lesli_audit_tasks.rake
121
132
  - lib/vue/application.js
122
133
  - lib/vue/apps/accounts/activities.vue
123
134
  - lib/vue/apps/analytics/index.vue
124
135
  - lib/vue/apps/analytics/trends.vue
136
+ - lib/vue/apps/dashboards/components/roles.vue
137
+ - lib/vue/apps/dashboards/components/users.vue
138
+ - lib/vue/apps/dashboards/show.vue
125
139
  - lib/vue/apps/requests/index.vue
126
140
  - lib/vue/apps/security/passwords.vue
127
141
  - lib/vue/apps/security/sessions.vue
@@ -139,6 +153,7 @@ files:
139
153
  - lib/vue/stores/security/password.js
140
154
  - lib/vue/stores/security/session.js
141
155
  - lib/vue/stores/translations.json
156
+ - lib/vue/stores/users.js
142
157
  - lib/vue/stores/users/activities.js
143
158
  - lib/vue/stores/users/logs.js
144
159
  - lib/vue/stores/users/registrations.js
@@ -1,327 +0,0 @@
1
- /*
2
-
3
- Lesli
4
-
5
- Copyright (c) 2023, Lesli Technologies, S. A.
6
-
7
- This program is free software: you can redistribute it and/or modify
8
- it under the terms of the GNU General Public License as published by
9
- the Free Software Foundation, either version 3 of the License, or
10
- (at your option) any later version.
11
-
12
- This program is distributed in the hope that it will be useful,
13
- but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- GNU General Public License for more details.
16
-
17
- You should have received a copy of the GNU General Public License
18
- along with this program. If not, see http://www.gnu.org/licenses/.
19
-
20
- Lesli · Ruby on Rails SaaS Development Framework.
21
-
22
- Made with ♥ by https://www.lesli.tech
23
- Building a better future, one line of code at a time.
24
-
25
- @contact hello@lesli.tech
26
- @website https://www.lesli.tech
27
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
-
29
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
- // ·
31
- */
32
-
33
- /*
34
-
35
- Lesli
36
-
37
- Copyright (c) 2023, Lesli Technologies, S. A.
38
-
39
- This program is free software: you can redistribute it and/or modify
40
- it under the terms of the GNU General Public License as published by
41
- the Free Software Foundation, either version 3 of the License, or
42
- (at your option) any later version.
43
-
44
- This program is distributed in the hope that it will be useful,
45
- but WITHOUT ANY WARRANTY; without even the implied warranty of
46
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
47
- GNU General Public License for more details.
48
-
49
- You should have received a copy of the GNU General Public License
50
- along with this program. If not, see http://www.gnu.org/licenses/.
51
-
52
- Lesli · Your Smart Business Assistant.
53
-
54
- Made with ♥ by https://www.lesli.tech
55
- Building a better future, one line of code at a time.
56
-
57
- @contact hello@lesli.tech
58
- @website https://lesli.tech
59
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
60
-
61
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
62
- // ·
63
-
64
- */
65
-
66
- /*
67
-
68
- Lesli
69
-
70
- Copyright (c) 2023, Lesli Technologies, S. A.
71
-
72
- This program is free software: you can redistribute it and/or modify
73
- it under the terms of the GNU General Public License as published by
74
- the Free Software Foundation, either version 3 of the License, or
75
- (at your option) any later version.
76
-
77
- This program is distributed in the hope that it will be useful,
78
- but WITHOUT ANY WARRANTY; without even the implied warranty of
79
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80
- GNU General Public License for more details.
81
-
82
- You should have received a copy of the GNU General Public License
83
- along with this program. If not, see http://www.gnu.org/licenses/.
84
-
85
- Lesli · Your Smart Business Assistant.
86
-
87
- Made with ♥ by https://www.lesli.tech
88
- Building a better future, one line of code at a time.
89
-
90
- @contact hello@lesli.tech
91
- @website https://lesli.tech
92
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
93
-
94
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
95
- // ·
96
- */
97
-
98
- /*
99
- Lesli
100
-
101
- Copyright (c) 2023, Lesli Technologies, S. A.
102
-
103
- This program is free software: you can redistribute it and/or modify
104
- it under the terms of the GNU General Public License as published by
105
- the Free Software Foundation, either version 3 of the License, or
106
- (at your option) any later version.
107
-
108
- This program is distributed in the hope that it will be useful,
109
- but WITHOUT ANY WARRANTY; without even the implied warranty of
110
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
111
- GNU General Public License for more details.
112
-
113
- You should have received a copy of the GNU General Public License
114
- along with this program. If not, see http://www.gnu.org/licenses/.
115
-
116
- Lesli · Ruby on Rails SaaS Development Framework.
117
-
118
- Made with ♥ by https://www.lesli.tech
119
- Building a better future, one line of code at a time.
120
-
121
- @contact hello@lesli.tech
122
- @website https://www.lesli.dev
123
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
124
-
125
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
126
- // ·
127
- */
128
-
129
- /*
130
- Lesli
131
-
132
- Copyright (c) 2023, Lesli Technologies, S. A.
133
-
134
- This program is free software: you can redistribute it and/or modify
135
- it under the terms of the GNU General Public License as published by
136
- the Free Software Foundation, either version 3 of the License, or
137
- (at your option) any later version.
138
-
139
- This program is distributed in the hope that it will be useful,
140
- but WITHOUT ANY WARRANTY; without even the implied warranty of
141
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
142
- GNU General Public License for more details.
143
-
144
- You should have received a copy of the GNU General Public License
145
- along with this program. If not, see http://www.gnu.org/licenses/.
146
-
147
- Lesli · Ruby on Rails SaaS Development Framework.
148
-
149
- Made with ♥ by https://www.lesli.tech
150
- Building a better future, one line of code at a time.
151
-
152
- @contact hello@lesli.tech
153
- @website https://www.lesli.tech
154
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
155
-
156
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
157
- // ·
158
- */
159
-
160
- /*
161
- Lesli
162
-
163
- Copyright (c) 2023, Lesli Technologies, S. A.
164
-
165
- This program is free software: you can redistribute it and/or modify
166
- it under the terms of the GNU General Public License as published by
167
- the Free Software Foundation, either version 3 of the License, or
168
- (at your option) any later version.
169
-
170
- This program is distributed in the hope that it will be useful,
171
- but WITHOUT ANY WARRANTY; without even the implied warranty of
172
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
173
- GNU General Public License for more details.
174
-
175
- You should have received a copy of the GNU General Public License
176
- along with this program. If not, see http://www.gnu.org/licenses/.
177
-
178
- Lesli · Ruby on Rails SaaS development platform.
179
-
180
- Made with ♥ by https://www.lesli.tech
181
- Building a better future, one line of code at a time.
182
-
183
- @contact hello@lesli.tech
184
- @website https://www.lesli.tech
185
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
186
-
187
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
188
- // ·
189
- */
190
-
191
- /*
192
- Lesli
193
-
194
- Copyright (c) 2020, Lesli Technologies, S. A.
195
-
196
- This program is free software: you can redistribute it and/or modify
197
- it under the terms of the GNU General Public License as published by
198
- the Free Software Foundation, either version 3 of the License, or
199
- (at your option) any later version.
200
-
201
- This program is distributed in the hope that it will be useful,
202
- but WITHOUT ANY WARRANTY; without even the implied warranty of
203
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
204
- GNU General Public License for more details.
205
-
206
- You should have received a copy of the GNU General Public License
207
- along with this program. If not, see <http://www.gnu.org/licenses/>.
208
-
209
- Lesli JS - JavaScript utilities for JavaScript applications
210
-
211
- Powered by LesliTech
212
- Building a better future, one line of code at a time.
213
-
214
- @contact <hello@lesli.tech>
215
- @website <https://lesli.tech>
216
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
217
-
218
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
219
- // ·
220
- */
221
-
222
- /*
223
- Lesli
224
-
225
- Copyright (c) 2021, Lesli Technologies, S. A.
226
-
227
- This program is free software: you can redistribute it and/or modify
228
- it under the terms of the GNU General Public License as published by
229
- the Free Software Foundation, either version 3 of the License, or
230
- (at your option) any later version.
231
-
232
- This program is distributed in the hope that it will be useful,
233
- but WITHOUT ANY WARRANTY; without even the implied warranty of
234
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
235
- GNU General Public License for more details.
236
-
237
- You should have received a copy of the GNU General Public License
238
- along with this program. If not, see <http://www.gnu.org/licenses/>.
239
-
240
- Lesli JS - JavaScript utilities for JavaScript applications
241
-
242
- Powered by LesliTech
243
- Building a better future, one line of code at a time.
244
-
245
- @contact <hello@lesli.tech>
246
- @website <https://lesli.tech>
247
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
248
-
249
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
250
- // ·
251
- */
252
-
253
- /*
254
- Lesli
255
-
256
- Copyright (c) 2023, Lesli Technologies, S. A.
257
-
258
- This program is free software: you can redistribute it and/or modify
259
- it under the terms of the GNU General Public License as published by
260
- the Free Software Foundation, either version 3 of the License, or
261
- (at your option) any later version.
262
-
263
- This program is distributed in the hope that it will be useful,
264
- but WITHOUT ANY WARRANTY; without even the implied warranty of
265
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
266
- GNU General Public License for more details.
267
-
268
- You should have received a copy of the GNU General Public License
269
- along with this program. If not, see http://www.gnu.org/licenses/.
270
-
271
- Lesli · Ruby on Rails SaaS Development Framework.
272
-
273
- Made with ♥ by https://www.lesli.tech
274
- Building a better future, one line of code at a time.
275
-
276
- @contact hello@lesli.tech
277
- @website https://www.lesli.dev
278
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
279
-
280
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
281
- // ·
282
- */
283
-
284
- /*
285
- Lesli
286
-
287
- Copyright (c) 2023, Lesli Technologies, S. A.
288
-
289
- This program is free software: you can redistribute it and/or modify
290
- it under the terms of the GNU General Public License as published by
291
- the Free Software Foundation, either version 3 of the License, or
292
- (at your option) any later version.
293
-
294
- This program is distributed in the hope that it will be useful,
295
- but WITHOUT ANY WARRANTY; without even the implied warranty of
296
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
297
- GNU General Public License for more details.
298
-
299
- You should have received a copy of the GNU General Public License
300
- along with this program. If not, see http://www.gnu.org/licenses/.
301
-
302
- Lesli · Ruby on Rails SaaS Development Framework.
303
-
304
- Made with ♥ by https://www.lesli.tech
305
- Building a better future, one line of code at a time.
306
-
307
- @contact hello@lesli.tech
308
- @website https://www.lesli.tech
309
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
310
-
311
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
312
- // ·
313
- */
314
-
315
- /*!
316
- * ApexCharts v3.41.1
317
- * (c) 2018-2023 ApexCharts
318
- * Released under the MIT License.
319
- */
320
-
321
- /*! svg.draggable.js - v2.2.2 - 2019-01-08
322
- * https://github.com/svgdotjs/svg.draggable.js
323
- * Copyright (c) 2019 Wout Fierens; Licensed MIT */
324
-
325
- /*! svg.filter.js - v2.0.2 - 2016-02-24
326
- * https://github.com/wout/svg.filter.js
327
- * Copyright (c) 2016 Wout Fierens; Licensed MIT */
File without changes