@shwfed/config 2.12.6 → 2.12.8

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.
Files changed (31) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/config/blocks/2026-06-17/com.shwfed.block.tree.single/runtime.vue +54 -50
  3. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.d.vue.ts +2 -0
  4. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.vue +38 -0
  5. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.vue.d.ts +2 -0
  6. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/runtime.vue +11 -2
  7. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/schema.d.ts +3 -0
  8. package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/schema.js +7 -0
  9. package/dist/runtime/components/form/fields/2026-05-23/com.shwfed.form.field.tree.multi/config.d.vue.ts +18 -18
  10. package/dist/runtime/components/form/fields/2026-05-23/com.shwfed.form.field.tree.multi/config.vue.d.ts +18 -18
  11. package/dist/runtime/components/form/fields/2026-05-26/com.shwfed.form.field.tree.combobox.multi/config.d.vue.ts +18 -18
  12. package/dist/runtime/components/form/fields/2026-05-26/com.shwfed.form.field.tree.combobox.multi/config.vue.d.ts +18 -18
  13. package/dist/runtime/components/form/fields/2026-05-26/com.shwfed.form.field.tree.combobox.single/config.d.vue.ts +18 -18
  14. package/dist/runtime/components/form/fields/2026-05-26/com.shwfed.form.field.tree.combobox.single/config.vue.d.ts +18 -18
  15. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.combobox.multi/config.d.vue.ts +18 -18
  16. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.combobox.multi/config.vue.d.ts +18 -18
  17. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.combobox.single/config.d.vue.ts +18 -18
  18. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.combobox.single/config.vue.d.ts +18 -18
  19. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.multi/config.d.vue.ts +18 -18
  20. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.multi/config.vue.d.ts +18 -18
  21. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.single/config.d.vue.ts +18 -18
  22. package/dist/runtime/components/form/fields/2026-05-28/com.shwfed.form.field.tree.single/config.vue.d.ts +18 -18
  23. package/dist/runtime/components/table/columns/2026-04-14/com.shwfed.table.column.number/runtime.vue +6 -73
  24. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.number-input/config.vue +44 -0
  25. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.number-input/runtime.vue +8 -2
  26. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.number-input/schema.d.ts +3 -0
  27. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.number-input/schema.js +7 -0
  28. package/dist/runtime/components/table/index.vue +180 -168
  29. package/dist/runtime/share/number-format.d.ts +7 -0
  30. package/dist/runtime/share/number-format.js +72 -0
  31. package/package.json +1 -1
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shwfed",
3
3
  "configKey": "shwfed",
4
- "version": "2.12.6",
4
+ "version": "2.12.8",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
@@ -13,6 +13,7 @@ import { getLocalizedText } from "../../../../../share/locale";
13
13
  import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput } from "../../../../ui/input-group";
14
14
  import { Field, FieldLabel } from "../../../../ui/field";
15
15
  import { Markdown } from "../../../../ui/markdown";
16
+ import { ScrollArea } from "../../../../ui/scroll-area";
16
17
  import { Skeleton } from "../../../../ui/skeleton";
17
18
  import { Tree as UiTree } from "../../../../ui/tree";
18
19
  import { interpolateMarkdown } from "../../../../table/utils/runtime";
@@ -280,60 +281,63 @@ const hasNodeActions = computed(() => block.value.nodeActions.items.length > 0);
280
281
  <Skeleton class="h-6 w-2/5" />
281
282
  </div>
282
283
 
283
- <UiTree
284
+ <ScrollArea
284
285
  v-else
285
- v-model="model"
286
- :roots="roots"
287
- :get-key="getKey"
288
- :get-children="getChildren"
289
- selection-mode="single"
290
- select-cursor="default"
291
- single-toggle
292
- :selectable="nodeSelectable"
293
- :filter-predicate="filterPredicate"
294
- :filter-query="filterQuery"
295
- :initial-expanded="initialExpanded"
296
- class="min-h-0 flex-1 overflow-auto"
286
+ class="min-h-0 flex-1"
297
287
  >
298
- <template #node="{ node }">
299
- <!-- Selection is conveyed solely by the row highlight (UiTree paints
300
- the selected row's background) — no explicit radio glyph. -->
301
- <span class="flex flex-col gap-0.5">
302
- <Markdown
303
- :source="nodeLabelText(node)"
304
- class="prose prose-sm prose-zinc text-zinc-700"
305
- />
306
- <Markdown
307
- v-if="nodeTooltipText(node)"
308
- :source="nodeTooltipText(node)"
309
- block
310
- class="prose prose-xs prose-zinc text-zinc-400"
311
- />
312
- </span>
313
- </template>
314
-
315
- <template
316
- v-if="hasNodeActions"
317
- #actions="{ node }"
288
+ <UiTree
289
+ v-model="model"
290
+ :roots="roots"
291
+ :get-key="getKey"
292
+ :get-children="getChildren"
293
+ selection-mode="single"
294
+ select-cursor="default"
295
+ single-toggle
296
+ :selectable="nodeSelectable"
297
+ :filter-predicate="filterPredicate"
298
+ :filter-query="filterQuery"
299
+ :initial-expanded="initialExpanded"
318
300
  >
319
- <!-- Hover/focus-revealed: hidden by default, fades in when the row
320
- (which carries `group`) is hovered or an action button is focused.
321
- `pointer-events-none` while hidden so the invisible buttons don't
322
- swallow row clicks. -->
323
- <span
324
- class="opacity-0 transition-opacity duration-150 group-hover:opacity-100 group-hover:pointer-events-auto focus-within:opacity-100 focus-within:pointer-events-auto pointer-events-none"
301
+ <template #node="{ node }">
302
+ <!-- Selection is conveyed solely by the row highlight (UiTree paints
303
+ the selected row's background) no explicit radio glyph. -->
304
+ <span class="flex flex-col gap-0.5">
305
+ <Markdown
306
+ :source="nodeLabelText(node)"
307
+ class="prose prose-sm prose-zinc text-zinc-700"
308
+ />
309
+ <Markdown
310
+ v-if="nodeTooltipText(node)"
311
+ :source="nodeTooltipText(node)"
312
+ block
313
+ class="prose prose-xs prose-zinc text-zinc-400"
314
+ />
315
+ </span>
316
+ </template>
317
+
318
+ <template
319
+ v-if="hasNodeActions"
320
+ #actions="{ node }"
325
321
  >
326
- <NodeActions
327
- :node="node"
328
- :config="block.nodeActions"
329
- :configure="configure"
330
- />
331
- </span>
332
- </template>
322
+ <!-- Hover/focus-revealed: hidden by default, fades in when the row
323
+ (which carries `group`) is hovered or an action button is focused.
324
+ `pointer-events-none` while hidden so the invisible buttons don't
325
+ swallow row clicks. -->
326
+ <span
327
+ class="opacity-0 transition-opacity duration-150 group-hover:opacity-100 group-hover:pointer-events-auto focus-within:opacity-100 focus-within:pointer-events-auto pointer-events-none"
328
+ >
329
+ <NodeActions
330
+ :node="node"
331
+ :config="block.nodeActions"
332
+ :configure="configure"
333
+ />
334
+ </span>
335
+ </template>
333
336
 
334
- <template #empty>
335
- <span />
336
- </template>
337
- </UiTree>
337
+ <template #empty>
338
+ <span />
339
+ </template>
340
+ </UiTree>
341
+ </ScrollArea>
338
342
  </div>
339
343
  </template>
@@ -123,6 +123,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
123
123
  readonly precision?: number | undefined;
124
124
  readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
125
125
  readonly valueAsString?: boolean | undefined;
126
+ readonly displayMode: "plain" | "uppercaseChinese" | "monoThousand";
126
127
  }) => any;
127
128
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
128
129
  "onUpdate:modelValue"?: ((value: {
@@ -245,6 +246,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
245
246
  readonly precision?: number | undefined;
246
247
  readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
247
248
  readonly valueAsString?: boolean | undefined;
249
+ readonly displayMode: "plain" | "uppercaseChinese" | "monoThousand";
248
250
  }) => any) | undefined;
249
251
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
250
252
  declare const _default: typeof __VLS_export;
@@ -87,6 +87,11 @@ const ROUNDING_MODE_OPTIONS = [
87
87
  { value: "floor", label: "\u5411\u4E0B\u53D6\u6574" },
88
88
  { value: "ceil", label: "\u5411\u4E0A\u53D6\u6574" }
89
89
  ];
90
+ const DISPLAY_MODE_OPTIONS = [
91
+ { value: "plain", label: "\u6570\u503C" },
92
+ { value: "uppercaseChinese", label: "\u4E2D\u6587\u5927\u5199" },
93
+ { value: "monoThousand", label: "\u7B49\u5BBD\u5B57\u4F53\u52A0\u5343\u5206\u4F4D" }
94
+ ];
90
95
  const pathText = computed({
91
96
  get: () => value.value.binding ?? "",
92
97
  set: (next) => {
@@ -364,6 +369,39 @@ function onValueAsStringChange(next) {
364
369
  </Field>
365
370
  </div>
366
371
 
372
+ <Field orientation="vertical">
373
+ <FieldLabel class="text-xs text-zinc-500">
374
+ <template
375
+ v-if="fieldDescription('displayMode')"
376
+ #tooltip
377
+ >
378
+ <Markdown
379
+ :source="fieldDescription('displayMode')"
380
+ block
381
+ class="prose prose-sm prose-zinc"
382
+ />
383
+ </template>
384
+ {{ fieldTitle("displayMode") }}
385
+ </FieldLabel>
386
+ <Select
387
+ :model-value="value.displayMode ?? 'plain'"
388
+ @update:model-value="(v) => value = { ...value, displayMode: v }"
389
+ >
390
+ <SelectTrigger class="w-full">
391
+ <SelectValue />
392
+ </SelectTrigger>
393
+ <SelectContent>
394
+ <SelectItem
395
+ v-for="opt in DISPLAY_MODE_OPTIONS"
396
+ :key="opt.value"
397
+ :value="opt.value"
398
+ >
399
+ {{ opt.label }}
400
+ </SelectItem>
401
+ </SelectContent>
402
+ </Select>
403
+ </Field>
404
+
367
405
  <Field orientation="vertical">
368
406
  <FieldLabel class="text-xs text-zinc-500">
369
407
  <template
@@ -123,6 +123,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
123
123
  readonly precision?: number | undefined;
124
124
  readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
125
125
  readonly valueAsString?: boolean | undefined;
126
+ readonly displayMode: "plain" | "uppercaseChinese" | "monoThousand";
126
127
  }) => any;
127
128
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
128
129
  "onUpdate:modelValue"?: ((value: {
@@ -245,6 +246,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
245
246
  readonly precision?: number | undefined;
246
247
  readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
247
248
  readonly valueAsString?: boolean | undefined;
249
+ readonly displayMode: "plain" | "uppercaseChinese" | "monoThousand";
248
250
  }) => any) | undefined;
249
251
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
250
252
  declare const _default: typeof __VLS_export;
@@ -7,6 +7,7 @@ import { cel as _rawCel } from "../../../../../utils/cel";
7
7
  import { celBindings, injectCELContext } from "../../../../../utils/cel-context";
8
8
  import { getLocalizedText } from "../../../../../share/locale";
9
9
  import { interpolateMarkdown } from "../../../../table/utils/runtime";
10
+ import { formatNumberDisplay } from "../../../../../share/number-format";
10
11
  import { Field, FieldLabel, FieldMessages } from "../../../../ui/field";
11
12
  import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupNumberField } from "../../../../ui/input-group";
12
13
  import { Markdown } from "../../../../ui/markdown";
@@ -85,6 +86,11 @@ const { draft, commit } = useFieldValue({
85
86
  return props.config.valueAsString ? String(next) : next;
86
87
  }
87
88
  });
89
+ const readonlyDisplay = computed(() => formatNumberDisplay(draft.value, {
90
+ displayMode: props.config.displayMode,
91
+ precision: props.config.precision,
92
+ roundingMode: props.config.roundingMode
93
+ }));
88
94
  function applyRounding(n, precision, mode) {
89
95
  const factor = 10 ** precision;
90
96
  switch (mode) {
@@ -155,9 +161,12 @@ async function onBlur() {
155
161
  <div
156
162
  v-if="effectiveReadonly"
157
163
  class="min-h-9 py-1.5 text-sm"
158
- :class="draft != null ? 'text-zinc-700' : 'font-mono text-zinc-300 select-none'"
164
+ :class="[
165
+ draft != null ? 'text-zinc-700' : 'font-mono text-zinc-300 select-none',
166
+ draft != null && config.displayMode === 'monoThousand' && 'font-mono'
167
+ ]"
159
168
  >
160
- {{ draft ?? "-" }}
169
+ {{ readonlyDisplay }}
161
170
  </div>
162
171
  <InputGroup
163
172
  v-else
@@ -76,6 +76,9 @@ export declare function schema(configure: (env: Environment) => void): Schema.St
76
76
  valueAsString: Schema.optional<Schema.SchemaClass<boolean, boolean, never>>;
77
77
  min: Schema.optional<Schema.Schema<string, string, never>>;
78
78
  max: Schema.optional<Schema.Schema<string, string, never>>;
79
+ displayMode: Schema.optionalWith<Schema.Literal<["plain", "uppercaseChinese", "monoThousand"]>, {
80
+ default: () => "plain";
81
+ }>;
79
82
  addon: Schema.optional<Schema.Struct<{
80
83
  groups: Schema.optionalWith<Schema.Array$<Schema.Struct<{
81
84
  id: Schema.refine<string, typeof Schema.String>;
@@ -79,6 +79,13 @@ export function schema(configure) {
79
79
  title: "\u6700\u5927\u503C",
80
80
  description: "\u5141\u8BB8\u8F93\u5165\u7684\u6700\u5927\u503C\u8868\u8FBE\u5F0F\uFF1B\u7559\u7A7A\u65F6\u4E0D\u9650\u5236\u4E0A\u9650"
81
81
  })),
82
+ displayMode: Schema.optionalWith(
83
+ Schema.Literal("plain", "uppercaseChinese", "monoThousand").annotations({
84
+ title: "\u6A21\u5F0F",
85
+ description: "\u53EA\u8BFB\u5C55\u793A\u65F6\u7684\u6A21\u5F0F\uFF1A\u6570\u503C\uFF08\u539F\u6837\uFF09\u3001\u4E2D\u6587\u5927\u5199\uFF08\u5982 4200 \u2192 `\u8086\u4EDF\u8D30\u4F70\u96F6\u62FE`\uFF09\u3001\u7B49\u5BBD\u5B57\u4F53\u52A0\u5343\u5206\u4F4D\uFF08\u5982 `4,200`\uFF09\uFF1B\u7F16\u8F91\u6001\u4E0D\u53D7\u5F71\u54CD"
86
+ }),
87
+ { default: () => "plain" }
88
+ ),
82
89
  // `Schema.optional` rebuilds the struct's union member, and because the
83
90
  // `optionalWith`-default fields make `AddonActions` a `Transformation`, the
84
91
  // inner struct's `title`/`description` don't survive onto the rebuilt
@@ -56,15 +56,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
56
56
  readonly message: string;
57
57
  }[]];
58
58
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
59
- readonly nodeTooltip?: readonly [{
60
- readonly locale: "zh";
61
- readonly message: string;
62
- }, ...{
63
- readonly locale: "en" | "ja" | "ko";
64
- readonly message: string;
65
- }[]] | undefined;
66
- readonly nodeSelectable?: string | undefined;
67
- readonly expandAll: boolean;
68
59
  readonly validations?: readonly {
69
60
  readonly message: readonly [{
70
61
  readonly locale: "zh";
@@ -76,6 +67,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
76
67
  readonly warning?: boolean | undefined;
77
68
  readonly when: string;
78
69
  }[] | undefined;
70
+ readonly nodeTooltip?: readonly [{
71
+ readonly locale: "zh";
72
+ readonly message: string;
73
+ }, ...{
74
+ readonly locale: "en" | "ja" | "ko";
75
+ readonly message: string;
76
+ }[]] | undefined;
77
+ readonly nodeSelectable?: string | undefined;
78
+ readonly expandAll: boolean;
79
79
  }) => any;
80
80
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
81
81
  "onUpdate:modelValue"?: ((value: {
@@ -131,15 +131,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
131
131
  readonly message: string;
132
132
  }[]];
133
133
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
134
- readonly nodeTooltip?: readonly [{
135
- readonly locale: "zh";
136
- readonly message: string;
137
- }, ...{
138
- readonly locale: "en" | "ja" | "ko";
139
- readonly message: string;
140
- }[]] | undefined;
141
- readonly nodeSelectable?: string | undefined;
142
- readonly expandAll: boolean;
143
134
  readonly validations?: readonly {
144
135
  readonly message: readonly [{
145
136
  readonly locale: "zh";
@@ -151,6 +142,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
151
142
  readonly warning?: boolean | undefined;
152
143
  readonly when: string;
153
144
  }[] | undefined;
145
+ readonly nodeTooltip?: readonly [{
146
+ readonly locale: "zh";
147
+ readonly message: string;
148
+ }, ...{
149
+ readonly locale: "en" | "ja" | "ko";
150
+ readonly message: string;
151
+ }[]] | undefined;
152
+ readonly nodeSelectable?: string | undefined;
153
+ readonly expandAll: boolean;
154
154
  }) => any) | undefined;
155
155
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
156
156
  declare const _default: typeof __VLS_export;
@@ -56,15 +56,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
56
56
  readonly message: string;
57
57
  }[]];
58
58
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
59
- readonly nodeTooltip?: readonly [{
60
- readonly locale: "zh";
61
- readonly message: string;
62
- }, ...{
63
- readonly locale: "en" | "ja" | "ko";
64
- readonly message: string;
65
- }[]] | undefined;
66
- readonly nodeSelectable?: string | undefined;
67
- readonly expandAll: boolean;
68
59
  readonly validations?: readonly {
69
60
  readonly message: readonly [{
70
61
  readonly locale: "zh";
@@ -76,6 +67,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
76
67
  readonly warning?: boolean | undefined;
77
68
  readonly when: string;
78
69
  }[] | undefined;
70
+ readonly nodeTooltip?: readonly [{
71
+ readonly locale: "zh";
72
+ readonly message: string;
73
+ }, ...{
74
+ readonly locale: "en" | "ja" | "ko";
75
+ readonly message: string;
76
+ }[]] | undefined;
77
+ readonly nodeSelectable?: string | undefined;
78
+ readonly expandAll: boolean;
79
79
  }) => any;
80
80
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
81
81
  "onUpdate:modelValue"?: ((value: {
@@ -131,15 +131,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
131
131
  readonly message: string;
132
132
  }[]];
133
133
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
134
- readonly nodeTooltip?: readonly [{
135
- readonly locale: "zh";
136
- readonly message: string;
137
- }, ...{
138
- readonly locale: "en" | "ja" | "ko";
139
- readonly message: string;
140
- }[]] | undefined;
141
- readonly nodeSelectable?: string | undefined;
142
- readonly expandAll: boolean;
143
134
  readonly validations?: readonly {
144
135
  readonly message: readonly [{
145
136
  readonly locale: "zh";
@@ -151,6 +142,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
151
142
  readonly warning?: boolean | undefined;
152
143
  readonly when: string;
153
144
  }[] | undefined;
145
+ readonly nodeTooltip?: readonly [{
146
+ readonly locale: "zh";
147
+ readonly message: string;
148
+ }, ...{
149
+ readonly locale: "en" | "ja" | "ko";
150
+ readonly message: string;
151
+ }[]] | undefined;
152
+ readonly nodeSelectable?: string | undefined;
153
+ readonly expandAll: boolean;
154
154
  }) => any) | undefined;
155
155
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
156
156
  declare const _default: typeof __VLS_export;
@@ -53,15 +53,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
53
53
  readonly message: string;
54
54
  }[]];
55
55
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
56
- readonly nodeTooltip?: readonly [{
57
- readonly locale: "zh";
58
- readonly message: string;
59
- }, ...{
60
- readonly locale: "en" | "ja" | "ko";
61
- readonly message: string;
62
- }[]] | undefined;
63
- readonly nodeSelectable?: string | undefined;
64
- readonly expandAll: boolean;
65
56
  readonly validations?: readonly {
66
57
  readonly message: readonly [{
67
58
  readonly locale: "zh";
@@ -73,6 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
73
64
  readonly warning?: boolean | undefined;
74
65
  readonly when: string;
75
66
  }[] | undefined;
67
+ readonly nodeTooltip?: readonly [{
68
+ readonly locale: "zh";
69
+ readonly message: string;
70
+ }, ...{
71
+ readonly locale: "en" | "ja" | "ko";
72
+ readonly message: string;
73
+ }[]] | undefined;
74
+ readonly nodeSelectable?: string | undefined;
75
+ readonly expandAll: boolean;
76
76
  }) => any;
77
77
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
78
78
  "onUpdate:modelValue"?: ((value: {
@@ -125,15 +125,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
125
125
  readonly message: string;
126
126
  }[]];
127
127
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
128
- readonly nodeTooltip?: readonly [{
129
- readonly locale: "zh";
130
- readonly message: string;
131
- }, ...{
132
- readonly locale: "en" | "ja" | "ko";
133
- readonly message: string;
134
- }[]] | undefined;
135
- readonly nodeSelectable?: string | undefined;
136
- readonly expandAll: boolean;
137
128
  readonly validations?: readonly {
138
129
  readonly message: readonly [{
139
130
  readonly locale: "zh";
@@ -145,6 +136,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
145
136
  readonly warning?: boolean | undefined;
146
137
  readonly when: string;
147
138
  }[] | undefined;
139
+ readonly nodeTooltip?: readonly [{
140
+ readonly locale: "zh";
141
+ readonly message: string;
142
+ }, ...{
143
+ readonly locale: "en" | "ja" | "ko";
144
+ readonly message: string;
145
+ }[]] | undefined;
146
+ readonly nodeSelectable?: string | undefined;
147
+ readonly expandAll: boolean;
148
148
  }) => any) | undefined;
149
149
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
150
150
  declare const _default: typeof __VLS_export;
@@ -53,15 +53,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
53
53
  readonly message: string;
54
54
  }[]];
55
55
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
56
- readonly nodeTooltip?: readonly [{
57
- readonly locale: "zh";
58
- readonly message: string;
59
- }, ...{
60
- readonly locale: "en" | "ja" | "ko";
61
- readonly message: string;
62
- }[]] | undefined;
63
- readonly nodeSelectable?: string | undefined;
64
- readonly expandAll: boolean;
65
56
  readonly validations?: readonly {
66
57
  readonly message: readonly [{
67
58
  readonly locale: "zh";
@@ -73,6 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
73
64
  readonly warning?: boolean | undefined;
74
65
  readonly when: string;
75
66
  }[] | undefined;
67
+ readonly nodeTooltip?: readonly [{
68
+ readonly locale: "zh";
69
+ readonly message: string;
70
+ }, ...{
71
+ readonly locale: "en" | "ja" | "ko";
72
+ readonly message: string;
73
+ }[]] | undefined;
74
+ readonly nodeSelectable?: string | undefined;
75
+ readonly expandAll: boolean;
76
76
  }) => any;
77
77
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
78
78
  "onUpdate:modelValue"?: ((value: {
@@ -125,15 +125,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
125
125
  readonly message: string;
126
126
  }[]];
127
127
  readonly cascade: "independent" | "cascade-down" | "cascade-both";
128
- readonly nodeTooltip?: readonly [{
129
- readonly locale: "zh";
130
- readonly message: string;
131
- }, ...{
132
- readonly locale: "en" | "ja" | "ko";
133
- readonly message: string;
134
- }[]] | undefined;
135
- readonly nodeSelectable?: string | undefined;
136
- readonly expandAll: boolean;
137
128
  readonly validations?: readonly {
138
129
  readonly message: readonly [{
139
130
  readonly locale: "zh";
@@ -145,6 +136,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
145
136
  readonly warning?: boolean | undefined;
146
137
  readonly when: string;
147
138
  }[] | undefined;
139
+ readonly nodeTooltip?: readonly [{
140
+ readonly locale: "zh";
141
+ readonly message: string;
142
+ }, ...{
143
+ readonly locale: "en" | "ja" | "ko";
144
+ readonly message: string;
145
+ }[]] | undefined;
146
+ readonly nodeSelectable?: string | undefined;
147
+ readonly expandAll: boolean;
148
148
  }) => any) | undefined;
149
149
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
150
150
  declare const _default: typeof __VLS_export;
@@ -52,15 +52,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
52
52
  readonly locale: "en" | "ja" | "ko";
53
53
  readonly message: string;
54
54
  }[]];
55
- readonly nodeTooltip?: readonly [{
56
- readonly locale: "zh";
57
- readonly message: string;
58
- }, ...{
59
- readonly locale: "en" | "ja" | "ko";
60
- readonly message: string;
61
- }[]] | undefined;
62
- readonly nodeSelectable?: string | undefined;
63
- readonly expandAll: boolean;
64
55
  readonly validations?: readonly {
65
56
  readonly message: readonly [{
66
57
  readonly locale: "zh";
@@ -72,6 +63,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
72
63
  readonly warning?: boolean | undefined;
73
64
  readonly when: string;
74
65
  }[] | undefined;
66
+ readonly nodeTooltip?: readonly [{
67
+ readonly locale: "zh";
68
+ readonly message: string;
69
+ }, ...{
70
+ readonly locale: "en" | "ja" | "ko";
71
+ readonly message: string;
72
+ }[]] | undefined;
73
+ readonly nodeSelectable?: string | undefined;
74
+ readonly expandAll: boolean;
75
75
  }) => any;
76
76
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
77
77
  "onUpdate:modelValue"?: ((value: {
@@ -123,15 +123,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
123
123
  readonly locale: "en" | "ja" | "ko";
124
124
  readonly message: string;
125
125
  }[]];
126
- readonly nodeTooltip?: readonly [{
127
- readonly locale: "zh";
128
- readonly message: string;
129
- }, ...{
130
- readonly locale: "en" | "ja" | "ko";
131
- readonly message: string;
132
- }[]] | undefined;
133
- readonly nodeSelectable?: string | undefined;
134
- readonly expandAll: boolean;
135
126
  readonly validations?: readonly {
136
127
  readonly message: readonly [{
137
128
  readonly locale: "zh";
@@ -143,6 +134,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
143
134
  readonly warning?: boolean | undefined;
144
135
  readonly when: string;
145
136
  }[] | undefined;
137
+ readonly nodeTooltip?: readonly [{
138
+ readonly locale: "zh";
139
+ readonly message: string;
140
+ }, ...{
141
+ readonly locale: "en" | "ja" | "ko";
142
+ readonly message: string;
143
+ }[]] | undefined;
144
+ readonly nodeSelectable?: string | undefined;
145
+ readonly expandAll: boolean;
146
146
  }) => any) | undefined;
147
147
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
148
148
  declare const _default: typeof __VLS_export;
@@ -52,15 +52,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
52
52
  readonly locale: "en" | "ja" | "ko";
53
53
  readonly message: string;
54
54
  }[]];
55
- readonly nodeTooltip?: readonly [{
56
- readonly locale: "zh";
57
- readonly message: string;
58
- }, ...{
59
- readonly locale: "en" | "ja" | "ko";
60
- readonly message: string;
61
- }[]] | undefined;
62
- readonly nodeSelectable?: string | undefined;
63
- readonly expandAll: boolean;
64
55
  readonly validations?: readonly {
65
56
  readonly message: readonly [{
66
57
  readonly locale: "zh";
@@ -72,6 +63,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
72
63
  readonly warning?: boolean | undefined;
73
64
  readonly when: string;
74
65
  }[] | undefined;
66
+ readonly nodeTooltip?: readonly [{
67
+ readonly locale: "zh";
68
+ readonly message: string;
69
+ }, ...{
70
+ readonly locale: "en" | "ja" | "ko";
71
+ readonly message: string;
72
+ }[]] | undefined;
73
+ readonly nodeSelectable?: string | undefined;
74
+ readonly expandAll: boolean;
75
75
  }) => any;
76
76
  }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
77
77
  "onUpdate:modelValue"?: ((value: {
@@ -123,15 +123,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
123
123
  readonly locale: "en" | "ja" | "ko";
124
124
  readonly message: string;
125
125
  }[]];
126
- readonly nodeTooltip?: readonly [{
127
- readonly locale: "zh";
128
- readonly message: string;
129
- }, ...{
130
- readonly locale: "en" | "ja" | "ko";
131
- readonly message: string;
132
- }[]] | undefined;
133
- readonly nodeSelectable?: string | undefined;
134
- readonly expandAll: boolean;
135
126
  readonly validations?: readonly {
136
127
  readonly message: readonly [{
137
128
  readonly locale: "zh";
@@ -143,6 +134,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
143
134
  readonly warning?: boolean | undefined;
144
135
  readonly when: string;
145
136
  }[] | undefined;
137
+ readonly nodeTooltip?: readonly [{
138
+ readonly locale: "zh";
139
+ readonly message: string;
140
+ }, ...{
141
+ readonly locale: "en" | "ja" | "ko";
142
+ readonly message: string;
143
+ }[]] | undefined;
144
+ readonly nodeSelectable?: string | undefined;
145
+ readonly expandAll: boolean;
146
146
  }) => any) | undefined;
147
147
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
148
148
  declare const _default: typeof __VLS_export;