accrete 0.0.107__py3-none-any.whl → 0.0.108__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.
@@ -4,7 +4,7 @@
4
4
  {% load ui %}
5
5
  {% load partials %}
6
6
 
7
- <div id="filter" x-data="filter" @applyFilter.window="console.log('Applying Filter');">
7
+ <div id="filter" x-data="filter">
8
8
 
9
9
  <div id="query-tags" x-ref="queryTags" class="mb-1">
10
10
  {{ filter.query_tags }}
@@ -14,7 +14,7 @@
14
14
  {{ filter.query_input }}
15
15
  </div>
16
16
 
17
- <div style="position: relative; z-index: 50; width: 100%" x-show="showParams" x-cloak="" x-on:click.outside="showParams = false;" x-transition.duration.150ms>
17
+ <div class="mb-6" style="width: 100%" x-show="showParams" x-cloak="" x-on:click.outside="showParams = false;" x-transition.duration.150ms>
18
18
  {{ filter.query_params }}
19
19
  </div>
20
20
 
@@ -46,10 +46,12 @@
46
46
  </head>
47
47
 
48
48
  {% block body %}
49
- <body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}' data-tenant-id="{{ tenant.id }}" hx-boost="true" hx-history="false" x-data="{ showPanel: false, openPanel() { this.showPanel = window.innerWidth >= 1216 } }">
49
+ <body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}' data-tenant-id="{{ tenant.id }}" hx-boost="true" hx-history="false"
50
+ x-data="{ showPanel: false, openPanel() { if(window.innerWidth >= 1216) {this.showPanel = true} } }"
51
+ >
50
52
  <nav id="navbar" class="navbar is-success is-fixed-top" role="navigation" aria-label="main navigation">
51
53
  <div class="navbar-brand">
52
- <div class="navbar-item is-hidden-widescreen pr-2" x-on:click="$dispatch('toggle-panel')">
54
+ <div class="navbar-item is-hidden-widescreen pr-2" x-on:click.stop="$dispatch('toggle-panel')">
53
55
  <button>
54
56
  <i class="fa fa-indent" x-show="!showPanel"></i>
55
57
  <i class="fa fa-outdent" x-show="showPanel"></i>
@@ -99,13 +101,10 @@
99
101
  </div>
100
102
  </nav>
101
103
 
102
- <div class="is-flex" style="padding-top: var(--bulma-navbar-height); height: 100svh;"
103
-
104
- x-init="openPanel();"
105
- >
106
- <div x-show="showPanel">
107
- <div id="action-panel" x-show="showPanel"
108
- @resize.debounce.100.window="openPanel()"
104
+ <div class="is-flex" style="padding-top: var(--bulma-navbar-height); height: 100svh;" x-init="showPanel = window.innerWidth >= 1216;">
105
+ <div x-show="showPanel" >
106
+ <div id="action-panel" x-show="showPanel"
107
+ @resize.debounce.100.window="openPanel()"
109
108
  @toggle-panel.window="showPanel = !showPanel"
110
109
  x-transition.duration.200ms
111
110
  >
@@ -135,7 +134,7 @@
135
134
  style="overflow: hidden; height: calc(100svh - var(--bulma-navbar-height))"
136
135
  >
137
136
 
138
- <div id="content-left-container" class="table-container is-flex is-flex-grow-1 is-flex-direction-column mb-1" x-bind:class="showContentRight ? 'is-hidden-mobile' : ''">
137
+ <div id="content-left-container" class="table-container is-flex is-flex-grow-1 is-flex-direction-column mb-0" x-bind:class="showContentRight ? 'is-hidden-mobile' : ''">
139
138
  <div id="content-left-header">
140
139
  <div class="is-flex is-justify-content-space-between is-flex-wrap-wrap">
141
140
  <div class="is-flex is-flex-wrap-wrap is-flex-grow-5 is-align-self-center py-2">
@@ -4,7 +4,7 @@
4
4
  {% load partials %}
5
5
 
6
6
  {% block content_left %}
7
- <table id="content-table" class="table can-compact is-fullwidth is-hoverable is-narrow mb-1" hx-indicator=".htmx-indicator" x-data="">
7
+ <table id="content-table" class="table can-compact is-fullwidth is-hoverable is-narrow my-0" hx-indicator=".htmx-indicator" x-data="">
8
8
  <thead style="position: sticky; top: 0; z-index: 10; background-color: var(--bulma-scheme-main)">
9
9
  <tr>
10
10
  <th>{{ object_label }}</th>
@@ -42,7 +42,7 @@
42
42
  <tfoot style="position: sticky; bottom: 0; z-index: 10; background-color: var(--bulma-scheme-main);" class="has-text-weight-bold">
43
43
  <tr id="tf-row">
44
44
  {% partialdef tf inline=True %}
45
- <td></td>
45
+ <td class="p-0"></td>
46
46
  {% for field in fields %}
47
47
  {% if field in footer %}
48
48
  <td style="text-align: {{ queryset|table_alignment:field }}">
@@ -52,7 +52,7 @@
52
52
  </span>
53
53
  </td>
54
54
  {% else %}
55
- <td></td>
55
+ <td class="p-0"></td>
56
56
  {% endif %}
57
57
  {% endfor %}
58
58
  {% endpartialdef %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: accrete
3
- Version: 0.0.107
3
+ Version: 0.0.108
4
4
  Summary: Django Shared Schema Multi Tenant
5
5
  Author-email: Benedikt Jilek <benedikt.jilek@pm.me>
6
6
  License: Copyright (c) 2023 Benedikt Jilek
@@ -303,15 +303,15 @@ accrete/contrib/ui/templates/django/forms/widgets/select.html,sha256=uSfDpOQox2m
303
303
  accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoDLVtTOOiWNprrsPriNr712yFxaHyDIo,47
304
304
  accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
305
305
  accrete/contrib/ui/templates/ui/content_right.html,sha256=XUF1tYpSKfO9FleYtJ2QmWPmwdLYxLHXdBLRa-BrFUs,221
306
- accrete/contrib/ui/templates/ui/layout.html,sha256=Cdr-iPVjSPp7m3Sxx8SgjZ7Bhq3dfmRK9v8ocuOtf04,12336
306
+ accrete/contrib/ui/templates/ui/layout.html,sha256=aAO5sDCzWLYYBCvmE-nX3D3d57G7r5sJgWu_nMrz5Rg,12370
307
307
  accrete/contrib/ui/templates/ui/list.html,sha256=mXsTQdGXJUQ4qe1_QIU2uCcy5KHSEnueJPA_cb1NY0M,2247
308
308
  accrete/contrib/ui/templates/ui/list_update.html,sha256=mLQTCgkKfVI5jrgei-Upc1u87iXL0Q63uLzXHPwMyeo,110
309
309
  accrete/contrib/ui/templates/ui/message.html,sha256=t3bZ5EE7IgQYJroCdLKFeUkZiNbgKkErVYQm6Y3IKpg,532
310
310
  accrete/contrib/ui/templates/ui/modal.html,sha256=9Gnj5qhIJrnAPgAuIUkrSWeuYyKppywvmK1483AMhxY,1870
311
311
  accrete/contrib/ui/templates/ui/oob.html,sha256=lZHIBBYclefbGkKguS1A7vrtOhODJizbSRaGAAHDvG8,267
312
- accrete/contrib/ui/templates/ui/table.html,sha256=O8aaoyrQRJIW12-8icj7n5hLp_lnMm5QeaUOi2fB4Ds,4020
312
+ accrete/contrib/ui/templates/ui/table.html,sha256=L7yBeaBX1GMbunUF4-wV3QOdbn6csKiTbDUmmaPaZaA,4044
313
313
  accrete/contrib/ui/templates/ui/table_row_update.html,sha256=_7tKQlCXxczguYQ-6rkZRwukYBswsh3J2cwT4ke_sQM,445
314
- accrete/contrib/ui/templates/ui/filter/filter.html,sha256=zthI8flb7qLTb77erA8MSJVzYgwRqR4fQ0LRWJP51BY,832
314
+ accrete/contrib/ui/templates/ui/filter/filter.html,sha256=RBYzmgQmgWKjVNrtZo9L98IW23vWLKSDQrZRb88VxrQ,758
315
315
  accrete/contrib/ui/templates/ui/filter/query_input.html,sha256=Qg_41fODXMgL534ohktb0QOxNzAEbaeBzAajJCEK7Pg,2035
316
316
  accrete/contrib/ui/templates/ui/filter/query_operator.html,sha256=h4WWLDnse6DK5Rb_0TTb0wqWxhvY_g3qjwx8_eENMuI,569
317
317
  accrete/contrib/ui/templates/ui/filter/query_params.html,sha256=wCkyZ9oSK_ivraNiL-UAY_9TflYw5EspnHHm6V6uOzk,9548
@@ -364,7 +364,7 @@ accrete/utils/forms.py,sha256=IvxbXNpSd4a-JBgsTJhs2GHe-DCRWX-xnVPRcoiCzbI,3104
364
364
  accrete/utils/log.py,sha256=BH0MBDweAjx30wGBO4F3sFhbgkSoEs7T1lLLjlYZNnA,407
365
365
  accrete/utils/models.py,sha256=2xTacvcpmDK_Bp4rAK7JdVLf8HU009LYNJ6eSpMgYZI,1014
366
366
  accrete/utils/views.py,sha256=AutijWetWGgjdO1PNc4gxCblT-i1fAfldNDFRbO9Sac,5012
367
- accrete-0.0.107.dist-info/METADATA,sha256=c05XlclvLsaT8W2tPA25Ogg55eql5dMjCXu_ryNcdNc,4953
368
- accrete-0.0.107.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
369
- accrete-0.0.107.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
370
- accrete-0.0.107.dist-info/RECORD,,
367
+ accrete-0.0.108.dist-info/METADATA,sha256=hJjxYdacNZNUnz0fkF3PjxGOStctuW_QUOgesZDQeIk,4953
368
+ accrete-0.0.108.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
369
+ accrete-0.0.108.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
370
+ accrete-0.0.108.dist-info/RECORD,,