More and more code removal and clean up

This commit is contained in:
Scott Idem
2026-03-24 10:42:40 -04:00
parent 0bc71391fc
commit 8e61bd0ba1
37 changed files with 144 additions and 496 deletions

View File

@@ -155,7 +155,7 @@
</script>
<div
class="ae_field_editor_v3 group relative {class_li}"
class="ae_field_editor group relative {class_li}"
class:block={display_block}
class:inline-block={!display_block}
>
@@ -312,7 +312,7 @@
<style>
/* Add any specialized transitions if needed */
.ae_field_editor_v3 :global(.btn-icon-sm) {
.ae_field_editor :global(.btn-icon-sm) {
width: 24px;
height: 24px;
}

View File

@@ -160,7 +160,7 @@
try {
// Attempt 1: Context-specific fetch
let ds_results = await api.get_data_store_v3({
let ds_results = await api.get_data_store({
api_cfg,
code: ds_code,
for_type: for_type,
@@ -176,7 +176,7 @@
if (!ds_results || is_error || status_code === 404 || status_code === 403 || status_code === 401) {
if (log_lvl) console.log(`ae_e_data_store [${ds_code}]: Not found in context (Status ${status_code}). Trying global fallback.`);
ds_results = await api.get_data_store_v3({
ds_results = await api.get_data_store({
api_cfg,
code: ds_code,
no_account_id: true,