3b76070394
✅ Database Setup: - Created PostgreSQL kartselldb with kartsell user - SSH port forward established (localhost:5432 → 178.104.200.7:5432) ✅ DbMigrator Fixes: - Fixed migration path discovery (AppContext.BaseDirectory fallback) - Added empty variable dictionary to suppress DbUp preprocessing - Fixed PostgreSQL dollar quoting conflict ($policy$ → $$) ✅ Migration Results: - All 21 migrations executed successfully - Schema versions journal created and tracked - 21 scripts processed in order, no rollback needed Status: FRESH DATABASE DEPLOYMENT SUCCESSFUL - kartselldb fully initialized with v16 schema - Ready for application startup Next: Deploy application and run integration tests Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
const __VLS_props = withDefaults(defineProps(), { ariaLabel: '탭' });
|
|
const emit = defineEmits();
|
|
const __VLS_defaults = { ariaLabel: '탭' };
|
|
const __VLS_ctx = {
|
|
...{},
|
|
...{},
|
|
...{},
|
|
...{},
|
|
...{},
|
|
};
|
|
let __VLS_components;
|
|
let __VLS_intrinsics;
|
|
let __VLS_directives;
|
|
__VLS_asFunctionalElement1(__VLS_intrinsics.div, __VLS_intrinsics.div)({});
|
|
__VLS_asFunctionalElement1(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
...{ class: "ks-tabs" },
|
|
role: "tablist",
|
|
'aria-label': (__VLS_ctx.ariaLabel),
|
|
});
|
|
/** @type {__VLS_StyleScopedClasses['ks-tabs']} */ ;
|
|
for (const [item] of __VLS_vFor((__VLS_ctx.items))) {
|
|
__VLS_asFunctionalElement1(__VLS_intrinsics.button, __VLS_intrinsics.button)({
|
|
...{ onClick: (...[$event]) => {
|
|
return (__VLS_ctx.emit('update:modelValue', item.id));
|
|
// @ts-ignore
|
|
[ariaLabel, items, emit,];
|
|
} },
|
|
key: (item.id),
|
|
type: "button",
|
|
role: "tab",
|
|
'aria-selected': (__VLS_ctx.modelValue === item.id),
|
|
disabled: (item.disabled),
|
|
});
|
|
(item.label);
|
|
if (item.badge) {
|
|
__VLS_asFunctionalElement1(__VLS_intrinsics.small, __VLS_intrinsics.small)({});
|
|
(item.badge);
|
|
}
|
|
// @ts-ignore
|
|
[modelValue,];
|
|
}
|
|
__VLS_asFunctionalElement1(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
role: "tabpanel",
|
|
});
|
|
var __VLS_0 = {
|
|
activeId: (__VLS_ctx.modelValue),
|
|
};
|
|
// @ts-ignore
|
|
var __VLS_1 = __VLS_0;
|
|
// @ts-ignore
|
|
[modelValue,];
|
|
const __VLS_base = (await import('vue')).defineComponent({
|
|
__typeEmits: {},
|
|
__typeProps: {},
|
|
props: {},
|
|
});
|
|
const __VLS_export = {};
|
|
export default {};
|