cnhis-design-vue 3.1.41-beta.32 → 3.1.41-beta.33

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 (37) hide show
  1. package/es/components/fabric-chart/src/hooks/useBirthProcess.js +1 -1
  2. package/es/components/form-config/index.d.ts +27 -27
  3. package/es/components/form-config/src/FormConfig.vue.d.ts +27 -27
  4. package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +11 -11
  5. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +14 -14
  6. package/es/components/form-render/index.d.ts +11 -11
  7. package/es/components/form-render/src/FormRender.vue.d.ts +11 -11
  8. package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +11 -11
  9. package/es/components/form-render/src/FormRenderWrapper.vue.js +1 -1
  10. package/es/components/form-render/src/components/renderer/radio&checkbox.d.ts +2 -2
  11. package/es/components/form-render/src/components/renderer/radio_checkbox.js +1 -1
  12. package/es/components/form-render/src/components/renderer/select.js +1 -1
  13. package/es/components/form-render/src/hooks/useFieldListAdaptor.d.ts +1 -1
  14. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
  15. package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +4 -2
  16. package/es/components/form-render/src/hooks/useFormRenderOptions.js +1 -1
  17. package/es/components/index.css +1 -1
  18. package/es/components/info-header/index.d.ts +421 -141
  19. package/es/components/info-header/src/InfoHeader.vue.d.ts +422 -141
  20. package/es/components/info-header/src/InfoHeader.vue.js +1 -1
  21. package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +320 -0
  22. package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.js +1 -0
  23. package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +447 -0
  24. package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.js +1 -0
  25. package/es/components/info-header/src/components/infoDescription/HiddenContent.vue.d.ts +2 -2
  26. package/es/components/info-header/src/components/infoDescription/InfoEllipsis.vue.d.ts +1 -1
  27. package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +412 -139
  28. package/es/components/info-header/src/components/infoDescription/index.vue.js +1 -1
  29. package/es/components/info-header/src/constants/index.d.ts +4 -0
  30. package/es/components/info-header/src/constants/index.js +1 -0
  31. package/es/components/info-header/src/hooks/useThemeOverrides.d.ts +4 -0
  32. package/es/components/info-header/src/hooks/useThemeOverrides.js +1 -0
  33. package/es/components/info-header/src/types/index.d.ts +12 -3
  34. package/es/components/info-header/style/index.css +1 -1
  35. package/es/components/shortcut-setter/index.d.ts +12 -12
  36. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +12 -12
  37. package/package.json +2 -2
@@ -0,0 +1,4 @@
1
+ import { InjectionKey, Ref } from 'vue';
2
+ import { FormRenderExpose } from '../../../../../es/components/form-render';
3
+ export declare const InjectionInfoHeaderFormRef: InjectionKey<Ref<undefined | FormRenderExpose>>;
4
+ export declare const InjectionInfoHeaderEmit: InjectionKey<(eventName: string, ...payload: any[]) => void>;
@@ -0,0 +1 @@
1
+ const o=Symbol("InjectionInfoHeaderFormRef"),e=Symbol("InjectionInfoHeaderEmit");export{e as InjectionInfoHeaderEmit,o as InjectionInfoHeaderFormRef};
@@ -0,0 +1,4 @@
1
+ import { GlobalThemeOverrides } from 'naive-ui';
2
+ export declare function useThemeOverrides(): {
3
+ themeOverrides: GlobalThemeOverrides;
4
+ };
@@ -0,0 +1 @@
1
+ function d(){const d={border:"0",borderHover:"0",borderFocus:"0",boxShadowFocus:"0",borderError:"0",borderHoverError:"0",borderFocusError:"0",boxShadowFocusError:"0",boxShadowFocusWarning:"0",borderActive:"0",boxShadowActive:"0",boxShadowActiveError:"0",boxShadowActiveWarning:"0",paddingMedium:"0",paddingLarge:"0",paddingSmall:"0",paddingTiny:"0",paddingMultiple:"0",paddingSingle:"0"};return{themeOverrides:{common:{fontSizeTiny:"14px"},Input:{...d},InternalSelection:{...d},Form:{blankHeightSmall:"16px",blankHeightLarge:"16px",blankHeightMedium:"16px"},Descriptions:{tdPaddingSmall:"0",tdPaddingLarge:"0",tdPaddingMedium:"0",tdPaddingBorderedMedium:"0",tdPaddingBorderedLarge:"0",tdPaddingBorderedSmall:"0"}}}}export{d as useThemeOverrides};
@@ -1,9 +1,14 @@
1
- import { FieldItem } from '../../../../../es/components/form-render';
1
+ import { Component } from 'vue';
2
+ import { FieldItem, FormRenderExpose } from '../../../../../es/components/form-render';
2
3
  export declare namespace InfoHeaderTypes {
3
4
  type InfoItem = Partial<{
4
- slot: string | (() => any);
5
+ slot: string | ((payload: {
6
+ width: unknown;
7
+ item: InfoItem;
8
+ }) => any) | Component;
5
9
  tip: string;
6
- formField: FieldItem;
10
+ formField: Partial<FieldItem>;
11
+ edit: boolean;
7
12
  [K: string]: any;
8
13
  }>;
9
14
  type PatientTag = Partial<{
@@ -27,3 +32,7 @@ export declare namespace InfoHeaderTypes {
27
32
  tagList: PatientTag[];
28
33
  }>;
29
34
  }
35
+ export declare type InfoHeaderExpose = {
36
+ update(): void;
37
+ $formRender: FormRenderExpose | undefined;
38
+ };
@@ -1 +1 @@
1
- .c-info-header{align-items:center;background:#fff;box-shadow:0 2px 4px 0 hsla(0,0%,69%,.46);display:flex;gap:18px;justify-content:space-between;padding:8px 16px}@font-face{font-family:iconfont;src:url(iconfont.ttf) format("truetype")}.c-info-header .iconfont{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:iconfont!important;font-size:16px;font-style:normal}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia:before{content:"\c1003"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantoushang:before{content:"\c1004"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaoshezhi:before{content:"\c1005"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaobianji:before{content:"\c1006"}.c-info-header .info-header--icon-guanbi-yanjing:before{content:"\c1001"}.c-info-header .info-header--icon-faxian-yanjing:before{content:"\c1002"}.c-info-header__divider{align-self:stretch;background:#d5d5d566;width:1px}.c-info-header__patient{align-items:center;display:flex;flex-wrap:nowrap;gap:12px;margin-right:34px}.c-info-header__patientHeader{align-items:center;display:flex;gap:6px}.c-info-header__patientHeader--name{font-size:20px;font-weight:700;margin-right:6px}.c-info-header__patientHeader .n-tag{border-radius:2px;height:20px}.c-info-header__patientHeader .n-tag .n-tag__content{font-size:12px}.c-info-header__info{display:flex;flex:1;flex-wrap:wrap;font-size:14px;justify-content:flex-start;width:100%}.c-info-header__infoWrapper{box-sizing:border-box;height:calc((var(--row-height)*var(--row-num) + 16)*1px);margin:-8px 0;max-height:calc((var(--row-height)*var(--row-num) + 16)*1px)}.c-info-header__info td{text-align:left}.c-info-header__info .n-descriptions-table-content{height:calc(var(--row-height)*1px);max-width:calc(var(--column-width)*1px);padding-bottom:0!important;vertical-align:middle!important}.c-info-header__info .n-descriptions-table-content__label{display:inline-block}.c-info-header__setting{align-self:flex-start;display:flex;gap:8px}.c-info-header__settingIcon{align-items:center;cursor:pointer;display:inline-flex}.c-info-header__setting .iconfont{color:#000;display:inline-block;font-size:20px;transition:all .2s ease-in-out}.c-info-header.is-compact [compact-hidden]{display:none!important}.c-info-header.is-compact .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia{transform:rotate(0deg)}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia{transform:rotate(180deg)}.c-info-header__hidden{align-items:center;display:inline-flex;font-size:14px;gap:8px;vertical-align:middle}.c-info-header__hidden--icon{color:inherit!important;cursor:pointer;font-size:14px;text-decoration:none!important}
1
+ .c-info-header{align-items:center;background:#fff;box-shadow:0 2px 4px 0 hsla(0,0%,69%,.46);display:flex;gap:18px;justify-content:space-between;padding:8px 16px}@font-face{font-family:iconfont;src:url(iconfont.ttf) format("truetype")}.c-info-header .iconfont{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:iconfont!important;font-size:16px;font-style:normal}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia:before{content:"\c1003"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantoushang:before{content:"\c1004"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaoshezhi:before{content:"\c1005"}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaobianji:before{content:"\c1006"}.c-info-header .info-header--icon-guanbi-yanjing:before{content:"\c1001"}.c-info-header .info-header--icon-faxian-yanjing:before{content:"\c1002"}.c-info-header__divider{align-self:stretch;background:#d5d5d566;width:1px}.c-info-header__patient{align-items:center;display:flex;flex-wrap:nowrap;gap:12px;margin-right:34px}.c-info-header__patientHeader{align-items:center;display:flex;gap:6px}.c-info-header__patientHeader--name{font-size:20px;font-weight:700;margin-right:6px}.c-info-header__patientHeader .n-tag{border-radius:2px;height:20px}.c-info-header__patientHeader .n-tag .n-tag__content{font-size:12px}.c-info-header__info{display:flex;flex:1;flex-wrap:wrap;font-size:14px;justify-content:flex-start;width:100%}.c-info-header__infoWrapper{box-sizing:border-box;height:calc((var(--row-height)*var(--row-num) + 16)*1px);margin:-8px 0;max-height:calc((var(--row-height)*var(--row-num) + 16)*1px)}.c-info-header__info td{text-align:left}.c-info-header__info .n-descriptions-table-content{height:calc(var(--row-height)*1px);max-width:calc(var(--column-width)*1px);vertical-align:middle!important}.c-info-header__info .n-descriptions-table-content__label{display:inline-block}.c-info-header__setting{align-self:flex-start;display:flex;gap:8px}.c-info-header__settingIcon{align-items:center;cursor:pointer;display:inline-flex}.c-info-header__setting .iconfont{color:#000;display:inline-block;font-size:20px;transition:all .2s ease-in-out}.c-info-header.is-compact [compact-hidden]{display:none!important}.c-info-header.is-compact .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia{transform:rotate(0deg)}.c-info-header .info-header--icon-a-menzhenyishengzhanxitongtubiaojiantouxia{transform:rotate(180deg)}.c-info-header__hidden{align-items:center;display:inline-flex;font-size:14px;gap:8px;vertical-align:middle}.c-info-header__hidden--icon{color:inherit!important;cursor:pointer;font-size:14px;text-decoration:none!important}.c-info-header .n-form-item-blank>.n-input .n-input-wrapper{border-bottom:1px solid var(--n-text-color)}
@@ -38,7 +38,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
38
38
  fieldList: import("vue").Ref<{
39
39
  [x: string]: any;
40
40
  val_key: string;
41
- html_type: "LINEBAR" | "SELECT" | "DATE" | ({} & string) | "COMBINATION" | "INPUT" | "LINE_BREAKS" | "INPUT_NUMBER" | "REMOTE_SEARCH" | "LEVEL_SEARCH_CASCADER" | "SEARCH_CASCADER" | "RADIO" | "CHECKBOX" | "SWITCH" | "SLIDER" | "COMPLEX" | "SEARCH" | "PHONE_TYPE" | "IDCARD_TYPE" | "SEARCH_MORE" | "DIGITAL" | "CHECKBOX_BLOCK" | "RADIO_BLOCK" | "DATE-INPUT" | "DATETIME-INPUT" | "SWITCH_COMPONENT" | "SLIDER_COMPONENT" | "LEVEL_SEARCH_CASCADE" | "SEARCH_CASCADE";
41
+ html_type: "LINEBAR" | ({} & string) | "SELECT" | "DATE" | "COMBINATION" | "INPUT" | "LINE_BREAKS" | "INPUT_NUMBER" | "REMOTE_SEARCH" | "LEVEL_SEARCH_CASCADER" | "SEARCH_CASCADER" | "RADIO" | "CHECKBOX" | "SWITCH" | "SLIDER" | "COMPLEX" | "SEARCH" | "PHONE_TYPE" | "IDCARD_TYPE" | "SEARCH_MORE" | "DIGITAL" | "CHECKBOX_BLOCK" | "RADIO_BLOCK" | "DATE-INPUT" | "DATETIME-INPUT" | "SWITCH_COMPONENT" | "SLIDER_COMPONENT" | "LEVEL_SEARCH_CASCADE" | "SEARCH_CASCADE";
42
42
  annotation?: boolean | undefined;
43
43
  val_key_unit?: string | undefined;
44
44
  is_edit?: import("..").FormCommonState | undefined;
@@ -1984,7 +1984,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
1984
1984
  onScroll?: ((...args: any[]) => any) | undefined;
1985
1985
  onAnnotationChange?: ((...args: any[]) => any) | undefined;
1986
1986
  }>>;
1987
- emit: (event: "scroll" | "formChange" | "annotationChange", ...args: any[]) => void;
1987
+ emit: (event: "formChange" | "scroll" | "annotationChange", ...args: any[]) => void;
1988
1988
  nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
1989
1989
  formRenderRef: import("vue").Ref<HTMLElement | undefined>;
1990
1990
  formHeight: import("vue").ComputedRef<string>;
@@ -2154,28 +2154,24 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
2154
2154
  title: string;
2155
2155
  form: import("@formily/core").Form<any>;
2156
2156
  content: any;
2157
- hidden: boolean;
2158
- active: boolean;
2159
- dataSource: import("@formily/core").FieldDataSource;
2160
- description: string;
2161
- display: import("@formily/core").FieldDisplayTypes;
2162
- mounted: boolean;
2163
- readonly destroyed: boolean;
2164
- unmounted: boolean;
2165
2157
  componentProps: Record<string, any>;
2166
2158
  decoratorProps: Record<string, any>;
2159
+ display: import("@formily/core").FieldDisplayTypes;
2160
+ description: string;
2167
2161
  readOnly: boolean;
2168
2162
  editable: boolean;
2163
+ hidden: boolean;
2169
2164
  component: import("@formily/core").FieldComponent<any, any>;
2170
2165
  decorator: import("@formily/core").FieldDecorator<any, any>;
2171
- readPretty: boolean;
2172
2166
  validating: boolean;
2173
2167
  submitting: boolean;
2168
+ active: boolean;
2174
2169
  visited: boolean;
2175
2170
  selfModified: boolean;
2176
2171
  modified: boolean;
2177
2172
  inputValue: string;
2178
2173
  inputValues: any[];
2174
+ dataSource: import("@formily/core").FieldDataSource;
2179
2175
  feedbacks: import("@formily/core").IFieldFeedback[];
2180
2176
  caches: import("@formily/core").IFieldCaches;
2181
2177
  selfErrors: import("@formily/core").FeedbackMessage;
@@ -2206,11 +2202,15 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
2206
2202
  queryFeedbacks: (search?: import("@formily/core").ISearchFeedback | undefined) => import("@formily/core").IFieldFeedback[];
2207
2203
  modify: () => void;
2208
2204
  initialized: boolean;
2205
+ mounted: boolean;
2206
+ unmounted: boolean;
2209
2207
  decoratorType: any;
2210
2208
  componentType: any;
2211
2209
  designable: boolean;
2212
2210
  locate: (address: import("@formily/path").Pattern) => void;
2213
2211
  readonly parent: import("@formily/core").GeneralField;
2212
+ readPretty: boolean;
2213
+ readonly destroyed: boolean;
2214
2214
  setTitle: (title?: string | undefined) => void;
2215
2215
  setDescription: (description?: string | undefined) => void;
2216
2216
  setDisplay: (type?: import("@formily/core").FieldDisplayTypes | undefined) => void;
@@ -2294,7 +2294,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
2294
2294
  readonly displayDirective: "if" | "show" | "show:lazy";
2295
2295
  }>;
2296
2296
  NTabs: any;
2297
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("scroll" | "formChange" | "annotationChange")[], "scroll" | "formChange" | "annotationChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2297
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("formChange" | "scroll" | "annotationChange")[], "scroll" | "formChange" | "annotationChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2298
2298
  fieldList: {
2299
2299
  type: import("vue").PropType<import("..").FieldItem[]>;
2300
2300
  };
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
40
40
  fieldList: import("vue").Ref<{
41
41
  [x: string]: any;
42
42
  val_key: string;
43
- html_type: "LINEBAR" | "SELECT" | "DATE" | ({} & string) | "COMBINATION" | "INPUT" | "LINE_BREAKS" | "INPUT_NUMBER" | "REMOTE_SEARCH" | "LEVEL_SEARCH_CASCADER" | "SEARCH_CASCADER" | "RADIO" | "CHECKBOX" | "SWITCH" | "SLIDER" | "COMPLEX" | "SEARCH" | "PHONE_TYPE" | "IDCARD_TYPE" | "SEARCH_MORE" | "DIGITAL" | "CHECKBOX_BLOCK" | "RADIO_BLOCK" | "DATE-INPUT" | "DATETIME-INPUT" | "SWITCH_COMPONENT" | "SLIDER_COMPONENT" | "LEVEL_SEARCH_CASCADE" | "SEARCH_CASCADE";
43
+ html_type: "LINEBAR" | ({} & string) | "SELECT" | "DATE" | "COMBINATION" | "INPUT" | "LINE_BREAKS" | "INPUT_NUMBER" | "REMOTE_SEARCH" | "LEVEL_SEARCH_CASCADER" | "SEARCH_CASCADER" | "RADIO" | "CHECKBOX" | "SWITCH" | "SLIDER" | "COMPLEX" | "SEARCH" | "PHONE_TYPE" | "IDCARD_TYPE" | "SEARCH_MORE" | "DIGITAL" | "CHECKBOX_BLOCK" | "RADIO_BLOCK" | "DATE-INPUT" | "DATETIME-INPUT" | "SWITCH_COMPONENT" | "SLIDER_COMPONENT" | "LEVEL_SEARCH_CASCADE" | "SEARCH_CASCADE";
44
44
  annotation?: boolean | undefined;
45
45
  val_key_unit?: string | undefined;
46
46
  is_edit?: import("../../../../es/components/form-render").FormCommonState | undefined;
@@ -1986,7 +1986,7 @@ declare const _default: import("vue").DefineComponent<{
1986
1986
  onScroll?: ((...args: any[]) => any) | undefined;
1987
1987
  onAnnotationChange?: ((...args: any[]) => any) | undefined;
1988
1988
  }>>;
1989
- emit: (event: "scroll" | "formChange" | "annotationChange", ...args: any[]) => void;
1989
+ emit: (event: "formChange" | "scroll" | "annotationChange", ...args: any[]) => void;
1990
1990
  nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
1991
1991
  formRenderRef: import("vue").Ref<HTMLElement | undefined>;
1992
1992
  formHeight: import("vue").ComputedRef<string>;
@@ -2156,28 +2156,24 @@ declare const _default: import("vue").DefineComponent<{
2156
2156
  title: string;
2157
2157
  form: import("../../../../es/components/form-render").Form<any>;
2158
2158
  content: any;
2159
- hidden: boolean;
2160
- active: boolean;
2161
- dataSource: import("../../../../es/components/form-render").FieldDataSource;
2162
- description: string;
2163
- display: import("../../../../es/components/form-render").FieldDisplayTypes;
2164
- mounted: boolean;
2165
- readonly destroyed: boolean;
2166
- unmounted: boolean;
2167
2159
  componentProps: Record<string, any>;
2168
2160
  decoratorProps: Record<string, any>;
2161
+ display: import("../../../../es/components/form-render").FieldDisplayTypes;
2162
+ description: string;
2169
2163
  readOnly: boolean;
2170
2164
  editable: boolean;
2165
+ hidden: boolean;
2171
2166
  component: import("../../../../es/components/form-render").FieldComponent<any, any>;
2172
2167
  decorator: import("../../../../es/components/form-render").FieldDecorator<any, any>;
2173
- readPretty: boolean;
2174
2168
  validating: boolean;
2175
2169
  submitting: boolean;
2170
+ active: boolean;
2176
2171
  visited: boolean;
2177
2172
  selfModified: boolean;
2178
2173
  modified: boolean;
2179
2174
  inputValue: string;
2180
2175
  inputValues: any[];
2176
+ dataSource: import("../../../../es/components/form-render").FieldDataSource;
2181
2177
  feedbacks: import("../../../../es/components/form-render").IFieldFeedback[];
2182
2178
  caches: import("../../../../es/components/form-render").IFieldCaches;
2183
2179
  selfErrors: import("../../../../es/components/form-render").FeedbackMessage;
@@ -2208,11 +2204,15 @@ declare const _default: import("vue").DefineComponent<{
2208
2204
  queryFeedbacks: (search?: import("../../../../es/components/form-render").ISearchFeedback | undefined) => import("../../../../es/components/form-render").IFieldFeedback[];
2209
2205
  modify: () => void;
2210
2206
  initialized: boolean;
2207
+ mounted: boolean;
2208
+ unmounted: boolean;
2211
2209
  decoratorType: any;
2212
2210
  componentType: any;
2213
2211
  designable: boolean;
2214
2212
  locate: (address: import("@formily/path").Pattern) => void;
2215
2213
  readonly parent: import("../../../../es/components/form-render").GeneralField;
2214
+ readPretty: boolean;
2215
+ readonly destroyed: boolean;
2216
2216
  setTitle: (title?: string | undefined) => void;
2217
2217
  setDescription: (description?: string | undefined) => void;
2218
2218
  setDisplay: (type?: import("../../../../es/components/form-render").FieldDisplayTypes | undefined) => void;
@@ -2296,7 +2296,7 @@ declare const _default: import("vue").DefineComponent<{
2296
2296
  readonly displayDirective: "if" | "show" | "show:lazy";
2297
2297
  }>;
2298
2298
  NTabs: any;
2299
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("scroll" | "formChange" | "annotationChange")[], "scroll" | "formChange" | "annotationChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2299
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("formChange" | "scroll" | "annotationChange")[], "scroll" | "formChange" | "annotationChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2300
2300
  fieldList: {
2301
2301
  type: import("vue").PropType<FieldItem[]>;
2302
2302
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.1.41-beta.32",
3
+ "version": "3.1.41-beta.33",
4
4
  "license": "ISC",
5
5
  "module": "./es/components/index.js",
6
6
  "main": "./es/components/index.js",
@@ -61,5 +61,5 @@
61
61
  "iOS 7",
62
62
  "last 3 iOS versions"
63
63
  ],
64
- "gitHead": "e0048054e14aea26d625bc81055304943d04c84b"
64
+ "gitHead": "74e9ab84e0e8adb0e847f750639a15118e5a2c1a"
65
65
  }