@tmagic/editor 1.7.0-beta.0 → 1.7.0-beta.2

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/dist/style.css CHANGED
@@ -1804,7 +1804,7 @@ fieldset.m-fieldset .m-form-tip {
1804
1804
  border: 1px solid #1d1f24;
1805
1805
  }
1806
1806
  .background-position-container .presets-value-list .position-icon.active {
1807
- background-color: var(#2882e0);
1807
+ background-color: #2882e0;
1808
1808
  }
1809
1809
  .background-position-container .presets-value-list .position-icon.active::after {
1810
1810
  border: 1px solid #fff;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.7.0-beta.0",
2
+ "version": "1.7.0-beta.2",
3
3
  "name": "@tmagic/editor",
4
4
  "type": "module",
5
5
  "sideEffects": [
@@ -58,11 +58,11 @@
58
58
  "moveable": "^0.53.0",
59
59
  "serialize-javascript": "^6.0.2",
60
60
  "sortablejs": "^1.15.6",
61
- "@tmagic/design": "1.7.0-beta.0",
62
- "@tmagic/form": "1.7.0-beta.0",
63
- "@tmagic/utils": "1.7.0-beta.0",
64
- "@tmagic/stage": "1.7.0-beta.0",
65
- "@tmagic/table": "1.7.0-beta.0"
61
+ "@tmagic/design": "1.7.0-beta.2",
62
+ "@tmagic/form": "1.7.0-beta.2",
63
+ "@tmagic/stage": "1.7.0-beta.2",
64
+ "@tmagic/table": "1.7.0-beta.2",
65
+ "@tmagic/utils": "1.7.0-beta.2"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@types/events": "^3.0.3",
@@ -76,7 +76,7 @@
76
76
  "monaco-editor": "^0.48.0",
77
77
  "typescript": "^5.9.3",
78
78
  "vue": "^3.5.22",
79
- "@tmagic/core": "1.7.0-beta.0"
79
+ "@tmagic/core": "1.7.0-beta.2"
80
80
  },
81
81
  "peerDependenciesMeta": {
82
82
  "typescript": {
@@ -28,7 +28,7 @@
28
28
  height: 14px;
29
29
  border: 1px solid #1d1f24;
30
30
  &.active {
31
- background-color: var($theme-color);
31
+ background-color: $theme-color;
32
32
  &::after {
33
33
  border: 1px solid #fff;
34
34
  }
package/types/index.d.ts CHANGED
@@ -1871,8 +1871,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
1871
1871
  preventSubmitDefault?: boolean;
1872
1872
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
1873
1873
  }> & Readonly<{
1874
- onChange?: ((...args: any[]) => any) | undefined;
1875
1874
  onError?: ((...args: any[]) => any) | undefined;
1875
+ onChange?: ((...args: any[]) => any) | undefined;
1876
1876
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
1877
1877
  "onField-change"?: ((...args: any[]) => any) | undefined;
1878
1878
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -1885,9 +1885,10 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
1885
1885
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
1886
1886
  resetForm: () => void;
1887
1887
  submitForm: (native?: boolean) => Promise<any>;
1888
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
1888
1889
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
1889
- change: (...args: any[]) => void;
1890
1890
  error: (...args: any[]) => void;
1891
+ change: (...args: any[]) => void;
1891
1892
  "update:stepActive": (...args: any[]) => void;
1892
1893
  "field-change": (...args: any[]) => void;
1893
1894
  "field-input": (...args: any[]) => void;
@@ -1929,8 +1930,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
1929
1930
  preventSubmitDefault?: boolean;
1930
1931
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
1931
1932
  }> & Readonly<{
1932
- onChange?: ((...args: any[]) => any) | undefined;
1933
1933
  onError?: ((...args: any[]) => any) | undefined;
1934
+ onChange?: ((...args: any[]) => any) | undefined;
1934
1935
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
1935
1936
  "onField-change"?: ((...args: any[]) => any) | undefined;
1936
1937
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -1943,6 +1944,7 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
1943
1944
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
1944
1945
  resetForm: () => void;
1945
1946
  submitForm: (native?: boolean) => Promise<any>;
1947
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
1946
1948
  }, {}, {}, {}, {
1947
1949
  disabled: boolean;
1948
1950
  labelWidth: string;
@@ -2017,8 +2019,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2017
2019
  preventSubmitDefault?: boolean;
2018
2020
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2019
2021
  }> & Readonly<{
2020
- onChange?: ((...args: any[]) => any) | undefined;
2021
2022
  onError?: ((...args: any[]) => any) | undefined;
2023
+ onChange?: ((...args: any[]) => any) | undefined;
2022
2024
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2023
2025
  "onField-change"?: ((...args: any[]) => any) | undefined;
2024
2026
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2031,9 +2033,10 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2031
2033
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2032
2034
  resetForm: () => void;
2033
2035
  submitForm: (native?: boolean) => Promise<any>;
2036
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2034
2037
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
2035
- change: (...args: any[]) => void;
2036
2038
  error: (...args: any[]) => void;
2039
+ change: (...args: any[]) => void;
2037
2040
  "update:stepActive": (...args: any[]) => void;
2038
2041
  "field-change": (...args: any[]) => void;
2039
2042
  "field-input": (...args: any[]) => void;
@@ -2075,8 +2078,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2075
2078
  preventSubmitDefault?: boolean;
2076
2079
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2077
2080
  }> & Readonly<{
2078
- onChange?: ((...args: any[]) => any) | undefined;
2079
2081
  onError?: ((...args: any[]) => any) | undefined;
2082
+ onChange?: ((...args: any[]) => any) | undefined;
2080
2083
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2081
2084
  "onField-change"?: ((...args: any[]) => any) | undefined;
2082
2085
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2089,6 +2092,7 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2089
2092
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2090
2093
  resetForm: () => void;
2091
2094
  submitForm: (native?: boolean) => Promise<any>;
2095
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2092
2096
  }, {}, {}, {}, {
2093
2097
  disabled: boolean;
2094
2098
  labelWidth: string;
@@ -2178,8 +2182,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2178
2182
  preventSubmitDefault?: boolean;
2179
2183
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2180
2184
  }> & Readonly<{
2181
- onChange?: ((...args: any[]) => any) | undefined;
2182
2185
  onError?: ((...args: any[]) => any) | undefined;
2186
+ onChange?: ((...args: any[]) => any) | undefined;
2183
2187
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2184
2188
  "onField-change"?: ((...args: any[]) => any) | undefined;
2185
2189
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2192,9 +2196,10 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2192
2196
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2193
2197
  resetForm: () => void;
2194
2198
  submitForm: (native?: boolean) => Promise<any>;
2199
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2195
2200
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
2196
- change: (...args: any[]) => void;
2197
2201
  error: (...args: any[]) => void;
2202
+ change: (...args: any[]) => void;
2198
2203
  "update:stepActive": (...args: any[]) => void;
2199
2204
  "field-change": (...args: any[]) => void;
2200
2205
  "field-input": (...args: any[]) => void;
@@ -2236,8 +2241,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2236
2241
  preventSubmitDefault?: boolean;
2237
2242
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2238
2243
  }> & Readonly<{
2239
- onChange?: ((...args: any[]) => any) | undefined;
2240
2244
  onError?: ((...args: any[]) => any) | undefined;
2245
+ onChange?: ((...args: any[]) => any) | undefined;
2241
2246
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2242
2247
  "onField-change"?: ((...args: any[]) => any) | undefined;
2243
2248
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2250,6 +2255,7 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2250
2255
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2251
2256
  resetForm: () => void;
2252
2257
  submitForm: (native?: boolean) => Promise<any>;
2258
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2253
2259
  }, {}, {}, {}, {
2254
2260
  disabled: boolean;
2255
2261
  labelWidth: string;
@@ -2324,8 +2330,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2324
2330
  preventSubmitDefault?: boolean;
2325
2331
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2326
2332
  }> & Readonly<{
2327
- onChange?: ((...args: any[]) => any) | undefined;
2328
2333
  onError?: ((...args: any[]) => any) | undefined;
2334
+ onChange?: ((...args: any[]) => any) | undefined;
2329
2335
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2330
2336
  "onField-change"?: ((...args: any[]) => any) | undefined;
2331
2337
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2338,9 +2344,10 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2338
2344
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2339
2345
  resetForm: () => void;
2340
2346
  submitForm: (native?: boolean) => Promise<any>;
2347
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2341
2348
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
2342
- change: (...args: any[]) => void;
2343
2349
  error: (...args: any[]) => void;
2350
+ change: (...args: any[]) => void;
2344
2351
  "update:stepActive": (...args: any[]) => void;
2345
2352
  "field-change": (...args: any[]) => void;
2346
2353
  "field-input": (...args: any[]) => void;
@@ -2382,8 +2389,8 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2382
2389
  preventSubmitDefault?: boolean;
2383
2390
  extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
2384
2391
  }> & Readonly<{
2385
- onChange?: ((...args: any[]) => any) | undefined;
2386
2392
  onError?: ((...args: any[]) => any) | undefined;
2393
+ onChange?: ((...args: any[]) => any) | undefined;
2387
2394
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2388
2395
  "onField-change"?: ((...args: any[]) => any) | undefined;
2389
2396
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2396,6 +2403,7 @@ declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Servi
2396
2403
  changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
2397
2404
  resetForm: () => void;
2398
2405
  submitForm: (native?: boolean) => Promise<any>;
2406
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2399
2407
  }, {}, {}, {}, {
2400
2408
  disabled: boolean;
2401
2409
  labelWidth: string;
@@ -2805,8 +2813,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2805
2813
  preventSubmitDefault?: boolean;
2806
2814
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2807
2815
  }> & Readonly<{
2808
- onChange?: ((...args: any[]) => any) | undefined;
2809
2816
  onError?: ((...args: any[]) => any) | undefined;
2817
+ onChange?: ((...args: any[]) => any) | undefined;
2810
2818
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2811
2819
  "onField-change"?: ((...args: any[]) => any) | undefined;
2812
2820
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2819,9 +2827,10 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2819
2827
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
2820
2828
  resetForm: () => void;
2821
2829
  submitForm: (native?: boolean) => Promise<any>;
2830
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2822
2831
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
2823
- change: (...args: any[]) => void;
2824
2832
  error: (...args: any[]) => void;
2833
+ change: (...args: any[]) => void;
2825
2834
  "update:stepActive": (...args: any[]) => void;
2826
2835
  "field-change": (...args: any[]) => void;
2827
2836
  "field-input": (...args: any[]) => void;
@@ -2863,8 +2872,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2863
2872
  preventSubmitDefault?: boolean;
2864
2873
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2865
2874
  }> & Readonly<{
2866
- onChange?: ((...args: any[]) => any) | undefined;
2867
2875
  onError?: ((...args: any[]) => any) | undefined;
2876
+ onChange?: ((...args: any[]) => any) | undefined;
2868
2877
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2869
2878
  "onField-change"?: ((...args: any[]) => any) | undefined;
2870
2879
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2877,6 +2886,7 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2877
2886
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
2878
2887
  resetForm: () => void;
2879
2888
  submitForm: (native?: boolean) => Promise<any>;
2889
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2880
2890
  }, {}, {}, {}, {
2881
2891
  disabled: boolean;
2882
2892
  labelWidth: string;
@@ -2951,8 +2961,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2951
2961
  preventSubmitDefault?: boolean;
2952
2962
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2953
2963
  }> & Readonly<{
2954
- onChange?: ((...args: any[]) => any) | undefined;
2955
2964
  onError?: ((...args: any[]) => any) | undefined;
2965
+ onChange?: ((...args: any[]) => any) | undefined;
2956
2966
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2957
2967
  "onField-change"?: ((...args: any[]) => any) | undefined;
2958
2968
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -2965,9 +2975,10 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
2965
2975
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
2966
2976
  resetForm: () => void;
2967
2977
  submitForm: (native?: boolean) => Promise<any>;
2978
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
2968
2979
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
2969
- change: (...args: any[]) => void;
2970
2980
  error: (...args: any[]) => void;
2981
+ change: (...args: any[]) => void;
2971
2982
  "update:stepActive": (...args: any[]) => void;
2972
2983
  "field-change": (...args: any[]) => void;
2973
2984
  "field-input": (...args: any[]) => void;
@@ -3009,8 +3020,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3009
3020
  preventSubmitDefault?: boolean;
3010
3021
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3011
3022
  }> & Readonly<{
3012
- onChange?: ((...args: any[]) => any) | undefined;
3013
3023
  onError?: ((...args: any[]) => any) | undefined;
3024
+ onChange?: ((...args: any[]) => any) | undefined;
3014
3025
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3015
3026
  "onField-change"?: ((...args: any[]) => any) | undefined;
3016
3027
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3023,6 +3034,7 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3023
3034
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3024
3035
  resetForm: () => void;
3025
3036
  submitForm: (native?: boolean) => Promise<any>;
3037
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
3026
3038
  }, {}, {}, {}, {
3027
3039
  disabled: boolean;
3028
3040
  labelWidth: string;
@@ -3111,8 +3123,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3111
3123
  preventSubmitDefault?: boolean;
3112
3124
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3113
3125
  }> & Readonly<{
3114
- onChange?: ((...args: any[]) => any) | undefined;
3115
3126
  onError?: ((...args: any[]) => any) | undefined;
3127
+ onChange?: ((...args: any[]) => any) | undefined;
3116
3128
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3117
3129
  "onField-change"?: ((...args: any[]) => any) | undefined;
3118
3130
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3125,9 +3137,10 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3125
3137
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3126
3138
  resetForm: () => void;
3127
3139
  submitForm: (native?: boolean) => Promise<any>;
3140
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
3128
3141
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
3129
- change: (...args: any[]) => void;
3130
3142
  error: (...args: any[]) => void;
3143
+ change: (...args: any[]) => void;
3131
3144
  "update:stepActive": (...args: any[]) => void;
3132
3145
  "field-change": (...args: any[]) => void;
3133
3146
  "field-input": (...args: any[]) => void;
@@ -3169,8 +3182,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3169
3182
  preventSubmitDefault?: boolean;
3170
3183
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3171
3184
  }> & Readonly<{
3172
- onChange?: ((...args: any[]) => any) | undefined;
3173
3185
  onError?: ((...args: any[]) => any) | undefined;
3186
+ onChange?: ((...args: any[]) => any) | undefined;
3174
3187
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3175
3188
  "onField-change"?: ((...args: any[]) => any) | undefined;
3176
3189
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3183,6 +3196,7 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3183
3196
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3184
3197
  resetForm: () => void;
3185
3198
  submitForm: (native?: boolean) => Promise<any>;
3199
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
3186
3200
  }, {}, {}, {}, {
3187
3201
  disabled: boolean;
3188
3202
  labelWidth: string;
@@ -3257,8 +3271,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3257
3271
  preventSubmitDefault?: boolean;
3258
3272
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3259
3273
  }> & Readonly<{
3260
- onChange?: ((...args: any[]) => any) | undefined;
3261
3274
  onError?: ((...args: any[]) => any) | undefined;
3275
+ onChange?: ((...args: any[]) => any) | undefined;
3262
3276
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3263
3277
  "onField-change"?: ((...args: any[]) => any) | undefined;
3264
3278
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3271,9 +3285,10 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3271
3285
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3272
3286
  resetForm: () => void;
3273
3287
  submitForm: (native?: boolean) => Promise<any>;
3288
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
3274
3289
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
3275
- change: (...args: any[]) => void;
3276
3290
  error: (...args: any[]) => void;
3291
+ change: (...args: any[]) => void;
3277
3292
  "update:stepActive": (...args: any[]) => void;
3278
3293
  "field-change": (...args: any[]) => void;
3279
3294
  "field-input": (...args: any[]) => void;
@@ -3315,8 +3330,8 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3315
3330
  preventSubmitDefault?: boolean;
3316
3331
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3317
3332
  }> & Readonly<{
3318
- onChange?: ((...args: any[]) => any) | undefined;
3319
3333
  onError?: ((...args: any[]) => any) | undefined;
3334
+ onChange?: ((...args: any[]) => any) | undefined;
3320
3335
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3321
3336
  "onField-change"?: ((...args: any[]) => any) | undefined;
3322
3337
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3329,6 +3344,7 @@ declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
3329
3344
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3330
3345
  resetForm: () => void;
3331
3346
  submitForm: (native?: boolean) => Promise<any>;
3347
+ getTextByName: (name: string, config?: _tmagic_form_schema.FormConfig) => string | undefined;
3332
3348
  }, {}, {}, {}, {
3333
3349
  disabled: boolean;
3334
3350
  labelWidth: string;
@@ -3393,8 +3409,8 @@ declare const __VLS_base$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
3393
3409
  preventSubmitDefault?: boolean;
3394
3410
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3395
3411
  }> & Readonly<{
3396
- onChange?: ((...args: any[]) => any) | undefined;
3397
3412
  onError?: ((...args: any[]) => any) | undefined;
3413
+ onChange?: ((...args: any[]) => any) | undefined;
3398
3414
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3399
3415
  "onField-change"?: ((...args: any[]) => any) | undefined;
3400
3416
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3407,9 +3423,10 @@ declare const __VLS_base$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
3407
3423
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3408
3424
  resetForm: () => void;
3409
3425
  submitForm: (native?: boolean) => Promise<any>;
3426
+ getTextByName: (name: string, config?: FormConfig) => string | undefined;
3410
3427
  }, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
3411
- change: (...args: any[]) => void;
3412
3428
  error: (...args: any[]) => void;
3429
+ change: (...args: any[]) => void;
3413
3430
  "update:stepActive": (...args: any[]) => void;
3414
3431
  "field-change": (...args: any[]) => void;
3415
3432
  "field-input": (...args: any[]) => void;
@@ -3451,8 +3468,8 @@ declare const __VLS_base$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
3451
3468
  preventSubmitDefault?: boolean;
3452
3469
  extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3453
3470
  }> & Readonly<{
3454
- onChange?: ((...args: any[]) => any) | undefined;
3455
3471
  onError?: ((...args: any[]) => any) | undefined;
3472
+ onChange?: ((...args: any[]) => any) | undefined;
3456
3473
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3457
3474
  "onField-change"?: ((...args: any[]) => any) | undefined;
3458
3475
  "onField-input"?: ((...args: any[]) => any) | undefined;
@@ -3465,6 +3482,7 @@ declare const __VLS_base$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
3465
3482
  changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
3466
3483
  resetForm: () => void;
3467
3484
  submitForm: (native?: boolean) => Promise<any>;
3485
+ getTextByName: (name: string, config?: FormConfig) => string | undefined;
3468
3486
  }, {}, {}, {}, {
3469
3487
  disabled: boolean;
3470
3488
  labelWidth: string;