sf-i-events 1.0.921 → 1.0.922
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/package.json +1 -1
- package/sf-i-events.js +2 -2
- package/src/sf-i-events.ts +2 -2
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -5733,7 +5733,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
5733
5733
|
}
|
|
5734
5734
|
html += '<div class="w-100p scroll-x ' + (i != this.selectedRegisterIndex ? 'hide' : '') + ' register-body-' + i + '">';
|
|
5735
5735
|
html += '<div class="d-flex flex-col align-stretch left-sticky">';
|
|
5736
|
-
html += '<div class="d-flex justify-between align-end">';
|
|
5736
|
+
html += '<div class="d-flex justify-between align-end" part="register-search-container">';
|
|
5737
5737
|
html += '<div class="title-item-date">';
|
|
5738
5738
|
html += '<label part="input-label">Search In Statute</label><br />';
|
|
5739
5739
|
html += '<div class="d-flex align-end">';
|
|
@@ -5745,7 +5745,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
5745
5745
|
html += '<button id="button-download-statute-' + index + '-' + i + '" part="button" class="button-download-statute d-flex justify-center align-center ml-10"><span class="material-symbols-outlined">download</span> <span>Export</span></button>';
|
|
5746
5746
|
html += '</div>';
|
|
5747
5747
|
html += '</div>';
|
|
5748
|
-
html += '<div id="filter-string" part="filter-string">Test String</div>';
|
|
5748
|
+
html += '<div id="filter-string" part="filter-string" class="d-flex align-center">Test String</div>';
|
|
5749
5749
|
html += '</div>';
|
|
5750
5750
|
html += '<table>';
|
|
5751
5751
|
let tableBodyHtml = '';
|
package/src/sf-i-events.ts
CHANGED
|
@@ -8292,7 +8292,7 @@ export class SfIEvents extends LitElement {
|
|
|
8292
8292
|
html += '<div class="w-100p scroll-x ' + (i != this.selectedRegisterIndex ? 'hide' : '') + ' register-body-' + i + '">';
|
|
8293
8293
|
|
|
8294
8294
|
html += '<div class="d-flex flex-col align-stretch left-sticky">';
|
|
8295
|
-
html += '<div class="d-flex justify-between align-end">'
|
|
8295
|
+
html += '<div class="d-flex justify-between align-end" part="register-search-container">'
|
|
8296
8296
|
html += '<div class="title-item-date">';
|
|
8297
8297
|
html += '<label part="input-label">Search In Statute</label><br />'
|
|
8298
8298
|
html += '<div class="d-flex align-end">'
|
|
@@ -8304,7 +8304,7 @@ export class SfIEvents extends LitElement {
|
|
|
8304
8304
|
html += '<button id="button-download-statute-' + index + '-' + i + '" part="button" class="button-download-statute d-flex justify-center align-center ml-10"><span class="material-symbols-outlined">download</span> <span>Export</span></button>';
|
|
8305
8305
|
html += '</div>';
|
|
8306
8306
|
html += '</div>';
|
|
8307
|
-
html += '<div id="filter-string" part="filter-string">Test String</div>'
|
|
8307
|
+
html += '<div id="filter-string" part="filter-string" class="d-flex align-center">Test String</div>'
|
|
8308
8308
|
html += '</div>';
|
|
8309
8309
|
html += '<table>';
|
|
8310
8310
|
let tableBodyHtml = ''
|