@g1cloud/entity-modeler-next 5.0.0-beta.45 → 5.0.0-beta.46
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.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { LangCode } from '../core/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue: LangCode;
|
|
4
|
+
/** 입력 가능 언어셋(호스트 주입 controller.languages). */
|
|
5
|
+
languages: LangCode[];
|
|
6
|
+
/** 호스트 콘텐츠 언어(controller.userLanguage) — 초기값이자 추종 대상. */
|
|
7
|
+
defaultLang: LangCode;
|
|
8
|
+
/** 그룹 라벨로 쓸 컬럼명 요소의 id. */
|
|
9
|
+
labelledBy: string;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: "ko" | "en" | "ja" | "zh") => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: "ko" | "en" | "ja" | "zh") => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -12,6 +12,13 @@ type __VLS_Props = {
|
|
|
12
12
|
placeholder?: string;
|
|
13
13
|
/** textarea 높이(multiline일 때만). */
|
|
14
14
|
height?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 제어 모드(opt-in) — 활성 언어를 외부가 소유한다. 와이드 표처럼 한 컬럼에 이 필드가 N개 뜨는 곳에서
|
|
17
|
+
* 셀마다 탭바를 그리면 행이 두 줄이 되므로(실측 행 높이 36→61px), 선택 UI를 컬럼 헤더로 올리고
|
|
18
|
+
* 셀은 활성 언어 값만 그린다. 값이 오면 **탭바를 렌더하지 않는다** — 선택 UI 소유자가 둘이면
|
|
19
|
+
* role·키 계약이 중복된다. 미전달 시 현행(셀 자체 탭바) 동작이라 인스펙터 호출부는 무영향.
|
|
20
|
+
*/
|
|
21
|
+
activeLang?: LangCode;
|
|
15
22
|
};
|
|
16
23
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
24
|
"update:modelValue": (value: Partial<Record<"ko" | "en" | "ja" | "zh", string>>) => any;
|