django-spire 0.19.1__py3-none-any.whl → 0.19.3__py3-none-any.whl

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.
Files changed (24) hide show
  1. django_spire/ai/chat/intelligence/workflows/chat_workflow.py +7 -0
  2. django_spire/ai/chat/templates/django_spire/ai/chat/widget/dialog_widget.html +1 -1
  3. django_spire/consts.py +1 -1
  4. django_spire/core/static/django_spire/css/bootstrap-override.css +33 -0
  5. django_spire/core/static/django_spire/css/themes/ayu/app-dark.css +12 -12
  6. django_spire/core/static/django_spire/css/themes/catppuccin/app-dark.css +12 -12
  7. django_spire/core/static/django_spire/css/themes/default/app-dark.css +11 -11
  8. django_spire/core/static/django_spire/css/themes/dracula/app-dark.css +12 -12
  9. django_spire/core/static/django_spire/css/themes/gruvbox/app-dark.css +12 -12
  10. django_spire/core/static/django_spire/css/themes/material/app-dark.css +12 -12
  11. django_spire/core/static/django_spire/css/themes/nord/app-dark.css +12 -12
  12. django_spire/core/static/django_spire/css/themes/oceanic-next/app-dark.css +12 -12
  13. django_spire/core/static/django_spire/css/themes/one-dark/app-dark.css +12 -12
  14. django_spire/core/static/django_spire/css/themes/palenight/app-dark.css +12 -12
  15. django_spire/core/static/django_spire/css/themes/rose-pine/app-dark.css +12 -12
  16. django_spire/core/static/django_spire/css/themes/synthwave/app-dark.css +12 -12
  17. django_spire/core/static/django_spire/css/themes/tokyo-night/app-dark.css +12 -12
  18. django_spire/core/templates/django_spire/card/infinite_scroll_card.html +1 -1
  19. django_spire/file/tools.py +2 -3
  20. {django_spire-0.19.1.dist-info → django_spire-0.19.3.dist-info}/METADATA +1 -1
  21. {django_spire-0.19.1.dist-info → django_spire-0.19.3.dist-info}/RECORD +24 -24
  22. {django_spire-0.19.1.dist-info → django_spire-0.19.3.dist-info}/WHEEL +0 -0
  23. {django_spire-0.19.1.dist-info → django_spire-0.19.3.dist-info}/licenses/LICENSE.md +0 -0
  24. {django_spire-0.19.1.dist-info → django_spire-0.19.3.dist-info}/top_level.txt +0 -0
@@ -63,6 +63,13 @@ def chat_workflow(
63
63
  message_intel = run_workflow_process(intent_process)
64
64
 
65
65
  if not isinstance(message_intel, BaseMessageIntel):
66
+ if message_intel is None:
67
+ return default_chat_response(
68
+ request=request,
69
+ user_input=user_input,
70
+ message_history=message_history
71
+ )
72
+
66
73
  message = f'{intent_process.__qualname__} must return an instance of a {BaseMessageIntel.__name__} sub class.'
67
74
  raise TypeError(message)
68
75
 
@@ -67,7 +67,7 @@
67
67
  )
68
68
 
69
69
  if (was_new_chat) {
70
- this.chat_name = message_body
70
+ this.chat_name = message_body.length > 24 ? message_body.substring(0, 21) + '...' : message_body
71
71
 
72
72
  let message_element = this.$refs.target_div.querySelector('[data-message-chat-id]')
73
73
 
django_spire/consts.py CHANGED
@@ -1,4 +1,4 @@
1
- __VERSION__ = '0.19.1'
1
+ __VERSION__ = '0.19.3'
2
2
 
3
3
  MAINTENANCE_MODE_SETTINGS_NAME = 'MAINTENANCE_MODE'
4
4
 
@@ -164,6 +164,9 @@
164
164
 
165
165
  --bs-tooltip-bg: var(--app-layer-two);
166
166
  --bs-tooltip-color: var(--app-default-text-color);
167
+
168
+ --bs-card-border-width: 1px;
169
+ --bs-list-group-border-width: 1px;
167
170
  }
168
171
 
169
172
  [data-theme="light"] {
@@ -182,6 +185,28 @@
182
185
  --bs-form-select-focus-box-shadow: 0 0 0 0.25rem var(--app-focus-ring-primary);
183
186
  }
184
187
 
188
+ .card {
189
+ border-width: 1px;
190
+ border-color: var(--bs-border-color);
191
+ }
192
+
193
+ .card-body {
194
+ background-color: var(--bs-card-bg);
195
+ }
196
+
197
+ .list-group-flush .list-group-item {
198
+ border-left: 0;
199
+ border-right: 0;
200
+ }
201
+
202
+ .list-group-flush .list-group-item:first-child {
203
+ border-top: 0;
204
+ }
205
+
206
+ .list-group-flush .list-group-item:last-child {
207
+ border-bottom: 0;
208
+ }
209
+
185
210
  .form-control {
186
211
  background-color: var(--app-form-field-bg) !important;
187
212
  border-color: var(--app-form-field-border) !important;
@@ -230,6 +255,14 @@
230
255
  cursor: not-allowed;
231
256
  }
232
257
 
258
+ .progress {
259
+ background-color: var(--app-layer-three);
260
+ }
261
+
262
+ .progress-bar {
263
+ background-color: var(--app-primary);
264
+ }
265
+
233
266
  .ce-block__content [data-placeholder]:empty::before,
234
267
  .ce-block__content [data-placeholder][data-empty="true"]::before {
235
268
  color: var(--app-primary) !important;
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #59c2ff;
3
- --app-primary-soft: #1f2430;
3
+ --app-primary-soft: #0f232e;
4
4
  --app-primary-dark: #39bae6;
5
5
 
6
6
  --app-secondary: #5c6773;
7
- --app-secondary-soft: #1f2430;
7
+ --app-secondary-soft: #262d35;
8
8
  --app-secondary-dark: #4d5562;
9
9
 
10
10
  --app-accent: #ff8f40;
11
- --app-accent-soft: #1f2430;
11
+ --app-accent-soft: #3d2414;
12
12
  --app-accent-dark: #ff7733;
13
13
 
14
14
  --app-success: #95e6cb;
15
- --app-success-soft: #1f2430;
15
+ --app-success-soft: #1a2e2a;
16
16
  --app-success-dark: #7fd4b4;
17
17
 
18
18
  --app-warning: #ffb454;
19
- --app-warning-soft: #1f2430;
19
+ --app-warning-soft: #3d2f14;
20
20
  --app-warning-dark: #ffa940;
21
21
 
22
22
  --app-danger: #f07178;
23
- --app-danger-soft: #1f2430;
23
+ --app-danger-soft: #3d2426;
24
24
  --app-danger-dark: #ed5a61;
25
25
 
26
26
  --app-layer-one: #0d1017;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #1f2430;
60
60
  --app-table-row-hover-color: #272d38;
61
61
 
62
- --bs-border-color: #272d38;
62
+ --bs-border-color: #3e4b59;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(39, 45, 56, 0.175);
69
+ --app-border-translucent-light: rgba(62, 75, 89, 0.3);
70
70
  --app-focus-ring-primary: rgba(89, 194, 255, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #cba6f7;
3
- --app-primary-soft: #313244;
3
+ --app-primary-soft: #262034;
4
4
  --app-primary-dark: #a385d8;
5
5
 
6
6
  --app-secondary: #a6adc8;
7
- --app-secondary-soft: #313244;
7
+ --app-secondary-soft: #3a3d4f;
8
8
  --app-secondary-dark: #7f849c;
9
9
 
10
10
  --app-accent: #f38ba8;
11
- --app-accent-soft: #313244;
11
+ --app-accent-soft: #2f2026;
12
12
  --app-accent-dark: #e06b75;
13
13
 
14
14
  --app-success: #a6e3a1;
15
- --app-success-soft: #313244;
15
+ --app-success-soft: #222e23;
16
16
  --app-success-dark: #81c784;
17
17
 
18
18
  --app-warning: #f9e2af;
19
- --app-warning-soft: #313244;
19
+ --app-warning-soft: #3d3826;
20
20
  --app-warning-dark: #f4d47c;
21
21
 
22
22
  --app-danger: #f38ba8;
23
- --app-danger-soft: #313244;
23
+ --app-danger-soft: #2f2026;
24
24
  --app-danger-dark: #e06b75;
25
25
 
26
26
  --app-layer-one: #181825;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #313244;
60
60
  --app-table-row-hover-color: #45475a;
61
61
 
62
- --bs-border-color: #45475a;
62
+ --bs-border-color: #585b70;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(69, 71, 90, 0.175);
69
+ --app-border-translucent-light: rgba(88, 91, 112, 0.3);
70
70
  --app-focus-ring-primary: rgba(203, 166, 247, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #0097c9;
3
- --app-primary-soft: #1a2a2f;
3
+ --app-primary-soft: #0a252f;
4
4
  --app-primary-dark: #00b8e6;
5
5
 
6
6
  --app-secondary: #797c7d;
7
- --app-secondary-soft: #232526;
7
+ --app-secondary-soft: #2a2c2d;
8
8
  --app-secondary-dark: #949799;
9
9
 
10
10
  --app-accent: #0097c9;
11
- --app-accent-soft: #1a2a2f;
11
+ --app-accent-soft: #0a252f;
12
12
  --app-accent-dark: #00b8e6;
13
13
 
14
14
  --app-success: #10b981;
15
- --app-success-soft: #1a2e23;
15
+ --app-success-soft: #0a2e20;
16
16
  --app-success-dark: #34d399;
17
17
 
18
18
  --app-warning: #f59e0b;
19
- --app-warning-soft: #2d251a;
19
+ --app-warning-soft: #3d2d14;
20
20
  --app-warning-dark: #fbbf24;
21
21
 
22
22
  --app-danger: #ef4444;
23
- --app-danger-soft: #2d1a1a;
23
+ --app-danger-soft: #3d1a1a;
24
24
  --app-danger-dark: #f87171;
25
25
 
26
26
  --app-layer-one: #181818;
@@ -61,11 +61,11 @@
61
61
 
62
62
  --bs-border-color: #3a3d3e;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(58, 61, 62, 0.175);
69
+ --app-border-translucent-light: rgba(58, 61, 62, 0.3);
70
70
  --app-focus-ring-primary: rgba(0, 151, 201, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #bd93f9;
3
- --app-primary-soft: #44475a;
3
+ --app-primary-soft: #2a1f35;
4
4
  --app-primary-dark: #9580d4;
5
5
 
6
6
  --app-secondary: #6272a4;
7
- --app-secondary-soft: #44475a;
7
+ --app-secondary-soft: #323547;
8
8
  --app-secondary-dark: #4b5b8c;
9
9
 
10
10
  --app-accent: #ff79c6;
11
- --app-accent-soft: #44475a;
11
+ --app-accent-soft: #3d1f2f;
12
12
  --app-accent-dark: #e056a2;
13
13
 
14
14
  --app-success: #50fa7b;
15
- --app-success-soft: #44475a;
15
+ --app-success-soft: #1a2e21;
16
16
  --app-success-dark: #3dcc58;
17
17
 
18
18
  --app-warning: #f1fa8c;
19
- --app-warning-soft: #44475a;
19
+ --app-warning-soft: #3d3d23;
20
20
  --app-warning-dark: #e6f06f;
21
21
 
22
22
  --app-danger: #ff5555;
23
- --app-danger-soft: #44475a;
23
+ --app-danger-soft: #3d1f1f;
24
24
  --app-danger-dark: #e63946;
25
25
 
26
26
  --app-layer-one: #282a36;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #44475a;
60
60
  --app-table-row-hover-color: #6272a4;
61
61
 
62
- --bs-border-color: #6272a4;
62
+ --bs-border-color: #7882b4;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(98, 114, 164, 0.175);
69
+ --app-border-translucent-light: rgba(120, 130, 180, 0.3);
70
70
  --app-focus-ring-primary: rgba(189, 147, 249, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #fabd2f;
3
- --app-primary-soft: #3c3836;
3
+ --app-primary-soft: #312a1a;
4
4
  --app-primary-dark: #d79921;
5
5
 
6
6
  --app-secondary: #a89984;
7
- --app-secondary-soft: #3c3836;
7
+ --app-secondary-soft: #423d38;
8
8
  --app-secondary-dark: #928374;
9
9
 
10
10
  --app-accent: #fe8019;
11
- --app-accent-soft: #3c3836;
11
+ --app-accent-soft: #3d2410;
12
12
  --app-accent-dark: #d65d0e;
13
13
 
14
14
  --app-success: #b8bb26;
15
- --app-success-soft: #3c3836;
15
+ --app-success-soft: #2a2e1a;
16
16
  --app-success-dark: #98971a;
17
17
 
18
18
  --app-warning: #fabd2f;
19
- --app-warning-soft: #3c3836;
19
+ --app-warning-soft: #312a1a;
20
20
  --app-warning-dark: #d79921;
21
21
 
22
22
  --app-danger: #fb4934;
23
- --app-danger-soft: #3c3836;
23
+ --app-danger-soft: #3d1a17;
24
24
  --app-danger-dark: #cc241d;
25
25
 
26
26
  --app-layer-one: #282828;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #3c3836;
60
60
  --app-table-row-hover-color: #504945;
61
61
 
62
- --bs-border-color: #504945;
62
+ --bs-border-color: #665c54;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(80, 73, 69, 0.175);
69
+ --app-border-translucent-light: rgba(102, 92, 84, 0.3);
70
70
  --app-focus-ring-primary: rgba(250, 189, 47, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #90caf9;
3
- --app-primary-soft: #1e1e1e;
3
+ --app-primary-soft: #1a2630;
4
4
  --app-primary-dark: #64b5f6;
5
5
 
6
6
  --app-secondary: #b0bec5;
7
- --app-secondary-soft: #1e1e1e;
7
+ --app-secondary-soft: #2a2f33;
8
8
  --app-secondary-dark: #90a4ae;
9
9
 
10
10
  --app-accent: #ff8a65;
11
- --app-accent-soft: #1e1e1e;
11
+ --app-accent-soft: #3d2419;
12
12
  --app-accent-dark: #ff7043;
13
13
 
14
14
  --app-success: #a5d6a7;
15
- --app-success-soft: #1e1e1e;
15
+ --app-success-soft: #1a2e1f;
16
16
  --app-success-dark: #81c784;
17
17
 
18
18
  --app-warning: #ffcc02;
19
- --app-warning-soft: #1e1e1e;
19
+ --app-warning-soft: #3d3300;
20
20
  --app-warning-dark: #ffb300;
21
21
 
22
22
  --app-danger: #ef5350;
23
- --app-danger-soft: #1e1e1e;
23
+ --app-danger-soft: #3d1a1a;
24
24
  --app-danger-dark: #e53935;
25
25
 
26
26
  --app-layer-one: #121212;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #1e1e1e;
60
60
  --app-table-row-hover-color: #2d2d2d;
61
61
 
62
- --bs-border-color: #2d2d2d;
62
+ --bs-border-color: #404040;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(45, 45, 45, 0.175);
69
+ --app-border-translucent-light: rgba(64, 64, 64, 0.3);
70
70
  --app-focus-ring-primary: rgba(144, 202, 249, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #81a1c1;
3
- --app-primary-soft: #3b4252;
3
+ --app-primary-soft: #1f3140;
4
4
  --app-primary-dark: #5e81ac;
5
5
 
6
6
  --app-secondary: #d8dee9;
7
- --app-secondary-soft: #3b4252;
7
+ --app-secondary-soft: #424952;
8
8
  --app-secondary-dark: #e5e9f0;
9
9
 
10
10
  --app-accent: #bf616a;
11
- --app-accent-soft: #3b4252;
11
+ --app-accent-soft: #3d2a2d;
12
12
  --app-accent-dark: #a54e56;
13
13
 
14
14
  --app-success: #a3be8c;
15
- --app-success-soft: #3b4252;
15
+ --app-success-soft: #232e24;
16
16
  --app-success-dark: #8fa876;
17
17
 
18
18
  --app-warning: #ebcb8b;
19
- --app-warning-soft: #3b4252;
19
+ --app-warning-soft: #3d3527;
20
20
  --app-warning-dark: #d4b066;
21
21
 
22
22
  --app-danger: #bf616a;
23
- --app-danger-soft: #3b4252;
23
+ --app-danger-soft: #3d2a2d;
24
24
  --app-danger-dark: #a54e56;
25
25
 
26
26
  --app-layer-one: #2e3440;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #3b4252;
60
60
  --app-table-row-hover-color: #434c5e;
61
61
 
62
- --bs-border-color: #434c5e;
62
+ --bs-border-color: #4c566a;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(67, 76, 94, 0.175);
69
+ --app-border-translucent-light: rgba(76, 86, 106, 0.3);
70
70
  --app-focus-ring-primary: rgba(129, 161, 193, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #6699cc;
3
- --app-primary-soft: #343d46;
3
+ --app-primary-soft: #1a262f;
4
4
  --app-primary-dark: #4f8cc9;
5
5
 
6
6
  --app-secondary: #65737e;
7
- --app-secondary-soft: #343d46;
7
+ --app-secondary-soft: #2d3640;
8
8
  --app-secondary-dark: #556873;
9
9
 
10
10
  --app-accent: #f99157;
11
- --app-accent-soft: #343d46;
11
+ --app-accent-soft: #3d2515;
12
12
  --app-accent-dark: #ec7940;
13
13
 
14
14
  --app-success: #99c794;
15
- --app-success-soft: #343d46;
15
+ --app-success-soft: #202e24;
16
16
  --app-success-dark: #7cb668;
17
17
 
18
18
  --app-warning: #fac863;
19
- --app-warning-soft: #343d46;
19
+ --app-warning-soft: #3d3319;
20
20
  --app-warning-dark: #f5b942;
21
21
 
22
22
  --app-danger: #ec5f67;
23
- --app-danger-soft: #343d46;
23
+ --app-danger-soft: #3d1f22;
24
24
  --app-danger-dark: #e74c3c;
25
25
 
26
26
  --app-layer-one: #1b2b34;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #343d46;
60
60
  --app-table-row-hover-color: #4f5b66;
61
61
 
62
- --bs-border-color: #4f5b66;
62
+ --bs-border-color: #65737e;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(79, 91, 102, 0.175);
69
+ --app-border-translucent-light: rgba(101, 115, 126, 0.3);
70
70
  --app-focus-ring-primary: rgba(102, 153, 204, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #61afef;
3
- --app-primary-soft: #2c313c;
3
+ --app-primary-soft: #1c2531;
4
4
  --app-primary-dark: #4aa5f0;
5
5
 
6
6
  --app-secondary: #828997;
7
- --app-secondary-soft: #2c313c;
7
+ --app-secondary-soft: #2a2d33;
8
8
  --app-secondary-dark: #6b7280;
9
9
 
10
10
  --app-accent: #e06c75;
11
- --app-accent-soft: #2c313c;
11
+ --app-accent-soft: #2f2024;
12
12
  --app-accent-dark: #be5046;
13
13
 
14
14
  --app-success: #98c379;
15
- --app-success-soft: #2c313c;
15
+ --app-success-soft: #232e20;
16
16
  --app-success-dark: #7cb668;
17
17
 
18
18
  --app-warning: #e5c07b;
19
- --app-warning-soft: #2c313c;
19
+ --app-warning-soft: #342f20;
20
20
  --app-warning-dark: #d19a66;
21
21
 
22
22
  --app-danger: #e06c75;
23
- --app-danger-soft: #2c313c;
23
+ --app-danger-soft: #2f2024;
24
24
  --app-danger-dark: #be5046;
25
25
 
26
26
  --app-layer-one: #1e2227;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #2c313c;
60
60
  --app-table-row-hover-color: #3b4048;
61
61
 
62
- --bs-border-color: #3b4048;
62
+ --bs-border-color: #4b5263;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(59, 64, 72, 0.175);
69
+ --app-border-translucent-light: rgba(75, 82, 99, 0.3);
70
70
  --app-focus-ring-primary: rgba(97, 175, 239, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #82aaff;
3
- --app-primary-soft: #444267;
3
+ --app-primary-soft: #1a2535;
4
4
  --app-primary-dark: #5c7cfa;
5
5
 
6
6
  --app-secondary: #676e95;
7
- --app-secondary-soft: #444267;
7
+ --app-secondary-soft: #323647;
8
8
  --app-secondary-dark: #5a6394;
9
9
 
10
10
  --app-accent: #f78c6c;
11
- --app-accent-soft: #444267;
11
+ --app-accent-soft: #3d2419;
12
12
  --app-accent-dark: #ff8a65;
13
13
 
14
14
  --app-success: #c3e88d;
15
- --app-success-soft: #444267;
15
+ --app-success-soft: #272e1f;
16
16
  --app-success-dark: #a5e075;
17
17
 
18
18
  --app-warning: #ffcb6b;
19
- --app-warning-soft: #444267;
19
+ --app-warning-soft: #3d3319;
20
20
  --app-warning-dark: #ffc947;
21
21
 
22
22
  --app-danger: #f07178;
23
- --app-danger-soft: #444267;
23
+ --app-danger-soft: #3d2426;
24
24
  --app-danger-dark: #ff5370;
25
25
 
26
26
  --app-layer-one: #1e1e2e;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #444267;
60
60
  --app-table-row-hover-color: #4e5579;
61
61
 
62
- --bs-border-color: #4e5579;
62
+ --bs-border-color: #676e95;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(78, 85, 121, 0.175);
69
+ --app-border-translucent-light: rgba(103, 110, 149, 0.3);
70
70
  --app-focus-ring-primary: rgba(130, 170, 255, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #c4a7e7;
3
- --app-primary-soft: #26233a;
3
+ --app-primary-soft: #26202f;
4
4
  --app-primary-dark: #907aa9;
5
5
 
6
6
  --app-secondary: #908caa;
7
- --app-secondary-soft: #26233a;
7
+ --app-secondary-soft: #3a3649;
8
8
  --app-secondary-dark: #6e6a86;
9
9
 
10
10
  --app-accent: #eb6f92;
11
- --app-accent-soft: #26233a;
11
+ --app-accent-soft: #2f2026;
12
12
  --app-accent-dark: #b4637a;
13
13
 
14
14
  --app-success: #31748f;
15
- --app-success-soft: #26233a;
15
+ --app-success-soft: #1a2c35;
16
16
  --app-success-dark: #286983;
17
17
 
18
18
  --app-warning: #f6c177;
19
- --app-warning-soft: #26233a;
19
+ --app-warning-soft: #3d3319;
20
20
  --app-warning-dark: #ea9d34;
21
21
 
22
22
  --app-danger: #eb6f92;
23
- --app-danger-soft: #26233a;
23
+ --app-danger-soft: #2f2026;
24
24
  --app-danger-dark: #b4637a;
25
25
 
26
26
  --app-layer-one: #1f1d2e;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #26233a;
60
60
  --app-table-row-hover-color: #403d52;
61
61
 
62
- --bs-border-color: #403d52;
62
+ --bs-border-color: #6e6a86;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(64, 61, 82, 0.175);
69
+ --app-border-translucent-light: rgba(110, 106, 134, 0.3);
70
70
  --app-focus-ring-primary: rgba(196, 167, 231, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #ff7edb;
3
- --app-primary-soft: #34294f;
3
+ --app-primary-soft: #301a2e;
4
4
  --app-primary-dark: #e967c8;
5
5
 
6
6
  --app-secondary: #848bbd;
7
- --app-secondary-soft: #34294f;
7
+ --app-secondary-soft: #3a3649;
8
8
  --app-secondary-dark: #6b7394;
9
9
 
10
10
  --app-accent: #f97e72;
11
- --app-accent-soft: #34294f;
11
+ --app-accent-soft: #3d1f1f;
12
12
  --app-accent-dark: #f36c60;
13
13
 
14
14
  --app-success: #72f1b8;
15
- --app-success-soft: #34294f;
15
+ --app-success-soft: #1a2e28;
16
16
  --app-success-dark: #36f9aa;
17
17
 
18
18
  --app-warning: #fede5d;
19
- --app-warning-soft: #34294f;
19
+ --app-warning-soft: #3d3d1a;
20
20
  --app-warning-dark: #fed83d;
21
21
 
22
22
  --app-danger: #ff8a80;
23
- --app-danger-soft: #34294f;
23
+ --app-danger-soft: #3d2626;
24
24
  --app-danger-dark: #ff7a6b;
25
25
 
26
26
  --app-layer-one: #241b2f;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #34294f;
60
60
  --app-table-row-hover-color: #495361;
61
61
 
62
- --bs-border-color: #495361;
62
+ --bs-border-color: #6b7394;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(73, 83, 97, 0.175);
69
+ --app-border-translucent-light: rgba(107, 115, 148, 0.3);
70
70
  --app-focus-ring-primary: rgba(255, 126, 219, 0.25);
71
71
  }
@@ -1,26 +1,26 @@
1
1
  [data-theme="dark"] {
2
2
  --app-primary: #7aa2f7;
3
- --app-primary-soft: #24283b;
3
+ --app-primary-soft: #1a2433;
4
4
  --app-primary-dark: #5a80d4;
5
5
 
6
6
  --app-secondary: #9aa5ce;
7
- --app-secondary-soft: #24283b;
7
+ --app-secondary-soft: #272d3e;
8
8
  --app-secondary-dark: #7c88b5;
9
9
 
10
10
  --app-accent: #f7768e;
11
- --app-accent-soft: #24283b;
11
+ --app-accent-soft: #2f2026;
12
12
  --app-accent-dark: #e85d75;
13
13
 
14
14
  --app-success: #9ece6a;
15
- --app-success-soft: #24283b;
15
+ --app-success-soft: #1f2e20;
16
16
  --app-success-dark: #7fb347;
17
17
 
18
18
  --app-warning: #e0af68;
19
- --app-warning-soft: #24283b;
19
+ --app-warning-soft: #342f20;
20
20
  --app-warning-dark: #d49c3d;
21
21
 
22
22
  --app-danger: #f7768e;
23
- --app-danger-soft: #24283b;
23
+ --app-danger-soft: #2f2026;
24
24
  --app-danger-dark: #e85d75;
25
25
 
26
26
  --app-layer-one: #16161e;
@@ -59,13 +59,13 @@
59
59
  --app-table-row-alt-color: #24283b;
60
60
  --app-table-row-hover-color: #2f3349;
61
61
 
62
- --bs-border-color: #2f3349;
62
+ --bs-border-color: #3b4261;
63
63
 
64
- --app-shadow-light: rgba(0, 0, 0, 0.2);
65
- --app-shadow-medium: rgba(0, 0, 0, 0.4);
66
- --app-shadow-heavy: rgba(0, 0, 0, 0.6);
67
- --app-shadow-navigation: rgba(0, 0, 0, 0.8);
64
+ --app-shadow-light: rgba(0, 0, 0, 0.3);
65
+ --app-shadow-medium: rgba(0, 0, 0, 0.5);
66
+ --app-shadow-heavy: rgba(0, 0, 0, 0.7);
67
+ --app-shadow-navigation: rgba(0, 0, 0, 0.9);
68
68
 
69
- --app-border-translucent-light: rgba(47, 51, 73, 0.175);
69
+ --app-border-translucent-light: rgba(59, 66, 97, 0.3);
70
70
  --app-focus-ring-primary: rgba(122, 162, 247, 0.25);
71
71
  }
@@ -1,4 +1,4 @@
1
- {% extends 'core/card/title_card.html' %}
1
+ {% extends 'django_spire/card/title_card.html' %}
2
2
 
3
3
  {% block card_content %}
4
4
  <div
@@ -1,12 +1,11 @@
1
- from typing import List, Type, TypeVar, Any
1
+ from typing import Any
2
2
 
3
3
  from django.contrib.contenttypes.models import ContentType
4
- from django.db import models
5
4
 
6
5
  from django_spire.file.models import File
7
6
 
8
7
 
9
- def copy_files_from_source_to_target_model_object(source: Any[models.Model], target: Any[models.Model]) -> List[File]:
8
+ def copy_files_from_source_to_target_model_object(source: Any, target: Any) -> list[File]:
10
9
  target_class = target.__class__
11
10
  target_content_type = ContentType.objects.get_for_model(target_class)
12
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-spire
3
- Version: 0.19.1
3
+ Version: 0.19.3
4
4
  Summary: A project for Django Spire
5
5
  Author-email: Brayden Carlson <braydenc@stratusadv.com>, Nathan Johnson <nathanj@stratusadv.com>
6
6
  License: Copyright (c) 2024 Stratus Advanced Technologies and Contributors.
@@ -1,6 +1,6 @@
1
1
  django_spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  django_spire/conf.py,sha256=c5Hs-7lk9T15254tOasiQ2ZTFLQIVJof9_QJDfm1PAI,933
3
- django_spire/consts.py,sha256=GqwKKYevR0Ew6grst8Ii6x4u_9Cds318I-LxabTpU9I,171
3
+ django_spire/consts.py,sha256=_orNcz_DOMU-_wDzuaNdwpZye_OrFWc-MpTqdb1mECg,171
4
4
  django_spire/exceptions.py,sha256=L5ndRO5ftMmh0pHkO2z_NG3LSGZviJ-dDHNT73SzTNw,48
5
5
  django_spire/settings.py,sha256=_bM5uUqJXq3sW-NZBNAzt4egZwmvLq_jA8DaQGHqVoE,661
6
6
  django_spire/urls.py,sha256=mKeZszb5U4iIGqddMb5Tt5fRC72U2wABEOi6mvOfEBU,656
@@ -27,7 +27,7 @@ django_spire/ai/chat/intelligence/prompts.py,sha256=jnFaN7EUUQM-wxloWJZ2UAGw1RDX
27
27
  django_spire/ai/chat/intelligence/decoders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
28
  django_spire/ai/chat/intelligence/decoders/tools.py,sha256=8fSnuWL1Apr32-hH52Fz9UUAA0Ph54EYUgohAXnwGIM,933
29
29
  django_spire/ai/chat/intelligence/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- django_spire/ai/chat/intelligence/workflows/chat_workflow.py,sha256=-OEOAQzeOAEIZam7ru4IAOjcSiZvWk_G9fpYdDlSc58,2078
30
+ django_spire/ai/chat/intelligence/workflows/chat_workflow.py,sha256=a5rMWbSEBHFe_EAiWpiow0WanAdibLdywtJfrL0oBX8,2289
31
31
  django_spire/ai/chat/migrations/0001_initial.py,sha256=1cbREhX3_fNsbfumJoKAZ8w91Kq5NeXUn_iI45B7oGE,2632
32
32
  django_spire/ai/chat/migrations/0002_remove_chatmessage_content_chatmessage__content_and_more.py,sha256=KeNT7VRFmwA74odh9wxIE1Cr4KAO4Tmtqu0FuI2AmK0,752
33
33
  django_spire/ai/chat/migrations/0003_rename__content_chatmessage__intel_data_and_more.py,sha256=wAcJ6Ia3fWrGbqnVrqD2C3-3ijAot0LK-B3KZavoY_A,754
@@ -43,7 +43,7 @@ django_spire/ai/chat/templates/django_spire/ai/chat/message/request_message.html
43
43
  django_spire/ai/chat/templates/django_spire/ai/chat/message/response_message.html,sha256=NZDDVY1nYxvyplQobO3gW6i-sevPZd8pXSIsNacF9Yw,525
44
44
  django_spire/ai/chat/templates/django_spire/ai/chat/page/chat_page.html,sha256=atgCFgXIAIVKnD6oEFzIF7MiUFTrS7GwN8klKRdB7LE,957
45
45
  django_spire/ai/chat/templates/django_spire/ai/chat/section/confirm_delete_section.html,sha256=yJr-zmu4CV7REGnHa2uA_MqgqiftSz-r2bb7U0_5CIY,720
46
- django_spire/ai/chat/templates/django_spire/ai/chat/widget/dialog_widget.html,sha256=tSUbcdmotVJxU4DqmgLkqlFOVoJpxbMPy0BruPeU6yc,5239
46
+ django_spire/ai/chat/templates/django_spire/ai/chat/widget/dialog_widget.html,sha256=-TwiNUfwh81JHjSLPmE-WLM8FR0FxPM9jeL0IZwztlI,5306
47
47
  django_spire/ai/chat/templates/django_spire/ai/chat/widget/recent_chat_list_widget.html,sha256=pbn8yyVL2i0ugyS84cmNX-nrr1K-oOAQiHnsjlQ_wYc,132
48
48
  django_spire/ai/chat/templates/django_spire/ai/chat/widget/selection_widget.html,sha256=Fa5Ja2i7J4rL5hU53b90RKPjFFyDpGujqOp5LpnyfCU,1617
49
49
  django_spire/ai/chat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -511,35 +511,35 @@ django_spire/core/static/django_spire/css/app-template.css,sha256=D5ORspwfokNqRW
511
511
  django_spire/core/static/django_spire/css/app-text.css,sha256=Zw2ORIz8LNNUdXd3A-kn5GuofDaf6ccAGyLwK3wODyM,6257
512
512
  django_spire/core/static/django_spire/css/app-theme.css,sha256=6vxu-tNDS4i1wWwLxdkCuiucN_ZKzGqwZmqZ8Vcwzk0,421
513
513
  django_spire/core/static/django_spire/css/bootstrap-extension.css,sha256=yvfy6YYKOmdzfnJhaFonUQkSbwS0YhRdeTHlEGKSXX4,12894
514
- django_spire/core/static/django_spire/css/bootstrap-override.css,sha256=G7D094GQAxhQ6hfOKh5wPJwi6XYwVfWedOFmCA1IFxI,9067
514
+ django_spire/core/static/django_spire/css/bootstrap-override.css,sha256=3hOf1TwwWEsFIR8JQ9TXnI7M5U3dRHLL8F1maqVTNt4,9620
515
515
  django_spire/core/static/django_spire/css/bootstrap.css,sha256=GEgESnyGv91X48AEz35ovTv1fF8JPaB_VZB-JXJjdb0,155840
516
516
  django_spire/core/static/django_spire/css/flatpickr.min.css,sha256=RXPAyxHVyMLxb0TYCM2OW5R4GWkcDe02jdYgyZp41OU,16081
517
517
  django_spire/core/static/django_spire/css/themes/input.css,sha256=dHY08qEODw-L1xbelx2q-5zu7g9hznVw3Ii3INKlQKU,738
518
- django_spire/core/static/django_spire/css/themes/ayu/app-dark.css,sha256=9p5y9HqEc8S8LC_FXu7hyDfbcw2eo6N7XSEsHNPjFNo,2112
518
+ django_spire/core/static/django_spire/css/themes/ayu/app-dark.css,sha256=qJhCfNrtbUGmCOCeGWSaokhOxI8bS04W7q1AUBx9tP8,2110
519
519
  django_spire/core/static/django_spire/css/themes/ayu/app-light.css,sha256=wPjL41knsu9rE8yI7ihUgCad_jkieT0r_H7NW0rmvs0,1917
520
- django_spire/core/static/django_spire/css/themes/catppuccin/app-dark.css,sha256=MSztY-35zoTMdffdbx-hDECCML64zoPQW_TwhatGHe8,2113
520
+ django_spire/core/static/django_spire/css/themes/catppuccin/app-dark.css,sha256=IOVvlmGZfigehehfBVkggUV7BSOh-NMS1YWyjt138II,2112
521
521
  django_spire/core/static/django_spire/css/themes/catppuccin/app-light.css,sha256=DmJbiMHdPIYZv-PJOw0_55V3BQXoTjWKFuw8szXfkrU,1918
522
- django_spire/core/static/django_spire/css/themes/default/app-dark.css,sha256=lNYTZjhttdAhvcQcJKtv_mEs7juJOJAk6BwRNep_PZs,2111
522
+ django_spire/core/static/django_spire/css/themes/default/app-dark.css,sha256=rg51-iDlle0UJTO_-9iODAKpqe1Yp7i1Tc-8pgFkF2k,2109
523
523
  django_spire/core/static/django_spire/css/themes/default/app-light.css,sha256=Wtr7SVyxMs7hHsn3VvVy0Pz2h9L6TO21xewpf67Y8wI,2114
524
- django_spire/core/static/django_spire/css/themes/dracula/app-dark.css,sha256=59MOrgxjx4E8uNB3dMS4xOAh66qVwslrxQlOBrxByl4,2115
524
+ django_spire/core/static/django_spire/css/themes/dracula/app-dark.css,sha256=U5eR3CRtzgsPvnMM-1IG578h_Sign3vfmkmRoJ54GN0,2114
525
525
  django_spire/core/static/django_spire/css/themes/dracula/app-light.css,sha256=M5SWV3nEpaOxA3jx-n7KJ6oWjltYXgHqomzH8opDx3Y,1919
526
- django_spire/core/static/django_spire/css/themes/gruvbox/app-dark.css,sha256=0YtNSC1yh8MpFE4N1x8m2gJEFJGi-P-wYCx-hNys-ms,2112
526
+ django_spire/core/static/django_spire/css/themes/gruvbox/app-dark.css,sha256=BuMgwNrHhljXJd54w0aD-7yJWrGONy7nxRRFbW3BClA,2111
527
527
  django_spire/core/static/django_spire/css/themes/gruvbox/app-light.css,sha256=AjEoA5MPl9WoIkovDaPwn2gKdKiP9BbkzngzU0y8wN4,1918
528
- django_spire/core/static/django_spire/css/themes/material/app-dark.css,sha256=eIDHzljpL5KIUUFrO3XoSd9sV3W6CDisYf2GBI-zo1s,2113
528
+ django_spire/core/static/django_spire/css/themes/material/app-dark.css,sha256=wmc5alidEjLakzJ0JkLG1dedkEI9csUqJKdTx048-aw,2111
529
529
  django_spire/core/static/django_spire/css/themes/material/app-light.css,sha256=AR7g-TUaV6Msgl6TEG4qtVYrREnxxPX-4t8pDeI8pAE,1918
530
- django_spire/core/static/django_spire/css/themes/nord/app-dark.css,sha256=xNqL8XHou_l4Q4p1XM84oEs5KGvAS4hTrBBW8xxorJY,2113
530
+ django_spire/core/static/django_spire/css/themes/nord/app-dark.css,sha256=Ksm-bjKr8hohZaBh1f2RTrn4t6XjbcAiiao4qVpUk6I,2112
531
531
  django_spire/core/static/django_spire/css/themes/nord/app-light.css,sha256=zK3hwUg6UKfHA1n7EW4Tr2NiR7nCFqXrNDkIxFdL-N0,1918
532
- django_spire/core/static/django_spire/css/themes/oceanic-next/app-dark.css,sha256=PfM0gA2a2OWrzmf-DHFEC60Y58YfTJC8JTGtEViyiQw,2114
532
+ django_spire/core/static/django_spire/css/themes/oceanic-next/app-dark.css,sha256=VsVZCzgDFlZKnRZm6ZpdLFODj0qZKgDiQC5H4jAqo0M,2114
533
533
  django_spire/core/static/django_spire/css/themes/oceanic-next/app-light.css,sha256=E08RGaExttL70qLjAU-zRYbFkI3WyBpNBBCFuDwd2sU,1917
534
- django_spire/core/static/django_spire/css/themes/one-dark/app-dark.css,sha256=VOkL6nPBX9yBsUB4bry4UKcIdZ4U_P9oSehgz-0G8S0,2112
534
+ django_spire/core/static/django_spire/css/themes/one-dark/app-dark.css,sha256=rh30Hhs60zjkXnNbMkToUNfuRfq2cNn7HNPCgATaivY,2110
535
535
  django_spire/core/static/django_spire/css/themes/one-dark/app-light.css,sha256=_KW6K2cJJZmgkBztdiWKoZ0WqGpHJzjK11cvj6b-R5s,1918
536
- django_spire/core/static/django_spire/css/themes/palenight/app-dark.css,sha256=ob9Rbbdn9EtLg3lyvmxiIfCsEIJ72lfBJ_WTpffgflM,2114
536
+ django_spire/core/static/django_spire/css/themes/palenight/app-dark.css,sha256=0-Jn7VC4sk_0bVSbJNglSAuPB8kqs6gTB1aHT0olI8E,2114
537
537
  django_spire/core/static/django_spire/css/themes/palenight/app-light.css,sha256=llU06NyEh9PPBa4HpQpIWbBdSTtHs1qQLVuRqgTTc14,1918
538
- django_spire/core/static/django_spire/css/themes/rose-pine/app-dark.css,sha256=Tyr9L7fMVd6uS-HZ-b9f_RAy-8X4BOAPYATZmY5RamA,2113
538
+ django_spire/core/static/django_spire/css/themes/rose-pine/app-dark.css,sha256=aDkhNehNz6mhH26lNtIPHBpTrFMbuxfosMQFgit33Kc,2114
539
539
  django_spire/core/static/django_spire/css/themes/rose-pine/app-light.css,sha256=HcCEZ2LmVFUz2xIOUIvzow_1598RKtXCoF5LgviRqx8,1919
540
- django_spire/core/static/django_spire/css/themes/synthwave/app-dark.css,sha256=fEm9WwhuOLSE9egFyjtR_0PYoE7dmiTs2tV4Z7Swd1g,2113
540
+ django_spire/core/static/django_spire/css/themes/synthwave/app-dark.css,sha256=qSGLjjNqtMj7DVpxfE_-AHcIzgM0xVM_uu_CQ8WfIa0,2114
541
541
  django_spire/core/static/django_spire/css/themes/synthwave/app-light.css,sha256=2HIuWeKdR7UDttqitwAVq0r4GrShoxRX_LywUdZ8qXU,1918
542
- django_spire/core/static/django_spire/css/themes/tokyo-night/app-dark.css,sha256=MiuDgWrXxcbNjbJCCMOAmRc3vP8tRqMJtHaAPhnLjSY,2113
542
+ django_spire/core/static/django_spire/css/themes/tokyo-night/app-dark.css,sha256=8eLeCmioMxzMlIr3FGQIRXZWH4bdxxhYwJWVld92-K8,2111
543
543
  django_spire/core/static/django_spire/css/themes/tokyo-night/app-light.css,sha256=J5l4aNkG6IgvlB3BySygzT4vXpCGQZn8L-FNb6cvNrs,1917
544
544
  django_spire/core/static/django_spire/favicons/android-chrome-192x192.png,sha256=mxm1sntXHgMJsjErEIE9AK3um0vJCvSkkUAVk0WIyi8,33238
545
545
  django_spire/core/static/django_spire/favicons/android-chrome-256x256.png,sha256=cUUqhCaT_Di-oExGdS2ru_U-rKmJ-ab7lgUoZACz1Ng,47140
@@ -617,7 +617,7 @@ django_spire/core/templates/django_spire/card/card.html,sha256=nF4s17lygR6vpm2Ja
617
617
  django_spire/core/templates/django_spire/card/delete_confirmation_form_card.html,sha256=A-IrDQHKgQ1iveGJJ9EKsvs-TUW0eVY8uTcWM4dmQ_4,1097
618
618
  django_spire/core/templates/django_spire/card/delete_form_card.html,sha256=7nAZ0LuIq9l2BwNiBny_C__Q9EUXYQ_CM1aFXrafd6c,212
619
619
  django_spire/core/templates/django_spire/card/form_card.html,sha256=bctVy9CeHuf05xsuE-zEsQVOaq24Igjq6xTKgv2AO4Y,391
620
- django_spire/core/templates/django_spire/card/infinite_scroll_card.html,sha256=MpJ0R9qHwX0FX7GyT8KibWYYF0VLMMr2Ivi39-OnBOs,4713
620
+ django_spire/core/templates/django_spire/card/infinite_scroll_card.html,sha256=btCXvrfKaM0bfCR-5oj62rAfzIenoOnMH1-Op1W0OZU,4721
621
621
  django_spire/core/templates/django_spire/card/title_card.html,sha256=igzwDLWuotqggSBUinQam2eIN6gAk0p6S6BB6O-ij-M,1048
622
622
  django_spire/core/templates/django_spire/container/container.html,sha256=Dfr7K8xgEbg3CZYxMleLjjiQGyRS-GNJdPySA4OYY8U,867
623
623
  django_spire/core/templates/django_spire/container/form_container.html,sha256=FZwZs4gnIYkurV5u8v6fj2rbrm4WDX16jyUSTMniEtw,313
@@ -699,7 +699,7 @@ django_spire/file/interfaces.py,sha256=i4T3-d8f-5Dfi4-exWAofNNZui9FXbyizQ0OQsbcX
699
699
  django_spire/file/mixins.py,sha256=jSRljAO61EEVs74L0Ap74zfnE6Ful4Gsw7pe4wu7HGU,618
700
700
  django_spire/file/models.py,sha256=FZCuThGV6cjKRvXWaDfxwzZTopVvGw51eEarcLHmiJ8,1506
701
701
  django_spire/file/queryset.py,sha256=RNIVCFd-Z0sQCz2UfHfvR-fYOhoztVduf9WO-NlhiKM,289
702
- django_spire/file/tools.py,sha256=CIf9eH3CYHk-QZAgTcjYBvx3xVhBP-goFCJbkEwIEEA,1014
702
+ django_spire/file/tools.py,sha256=QHKk0YNNDxks2VtkqmM0UKf3LXcrhIlUUZuNnWCNZ74,936
703
703
  django_spire/file/urls.py,sha256=BadfH7ba7X4PDCmGhUEVqY3FFBfqaTqqOF1eNJxfR8A,364
704
704
  django_spire/file/utils.py,sha256=gI8aVCw9-a4TJs3dRx2Ld5btlW1zcP5Ut22Rqpn7Aj0,157
705
705
  django_spire/file/views.py,sha256=RwJ9zolskQA3SAq55kG4ov4YKJgbnzgpvTB3lwBLfKQ,1045
@@ -1132,8 +1132,8 @@ django_spire/theme/urls/page_urls.py,sha256=S8nkKkgbhG3XHI3uMUL-piOjXIrRkuY2UlM_
1132
1132
  django_spire/theme/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1133
1133
  django_spire/theme/views/json_views.py,sha256=W1khC2K_EMbEzAFmMxC_P76_MFnkRH4-eVdodrRfAhw,1904
1134
1134
  django_spire/theme/views/page_views.py,sha256=pHr8iekjtR99xs7w1taj35HEo133Svq1dvDD0y0VL1c,3933
1135
- django_spire-0.19.1.dist-info/licenses/LICENSE.md,sha256=tlTbOtgKoy-xAQpUk9gPeh9O4oRXCOzoWdW3jJz0wnA,1091
1136
- django_spire-0.19.1.dist-info/METADATA,sha256=U5ZUHeqx7phdgXI0WZv-aTRSdGz8LqP0-XmsGHAgZBY,4967
1137
- django_spire-0.19.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1138
- django_spire-0.19.1.dist-info/top_level.txt,sha256=xf3QV1e--ONkVpgMDQE9iqjQ1Vg4--_6C8wmO-KxPHQ,13
1139
- django_spire-0.19.1.dist-info/RECORD,,
1135
+ django_spire-0.19.3.dist-info/licenses/LICENSE.md,sha256=tlTbOtgKoy-xAQpUk9gPeh9O4oRXCOzoWdW3jJz0wnA,1091
1136
+ django_spire-0.19.3.dist-info/METADATA,sha256=HyM1bTKoNG0c4GbB1E2fp39YOCHAIUGAa80yjIT9Pwo,4967
1137
+ django_spire-0.19.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1138
+ django_spire-0.19.3.dist-info/top_level.txt,sha256=xf3QV1e--ONkVpgMDQE9iqjQ1Vg4--_6C8wmO-KxPHQ,13
1139
+ django_spire-0.19.3.dist-info/RECORD,,