qy-ui-for-ls 0.4.74 → 0.4.75

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.
@@ -95,8 +95,8 @@ declare const QyTablePlus: ({
95
95
  type: PropType<boolean>;
96
96
  default: boolean;
97
97
  };
98
- selectionFixedRight: {
99
- type: PropType<boolean>;
98
+ selectionFixed: {
99
+ type: PropType<boolean | "right" | "left">;
100
100
  default: boolean;
101
101
  };
102
102
  radioRowClick: {
@@ -1042,7 +1042,7 @@ declare const QyTablePlus: ({
1042
1042
  treeOptions: TreeProps;
1043
1043
  isOldApi: boolean;
1044
1044
  hideSelection: boolean;
1045
- selectionFixedRight: boolean;
1045
+ selectionFixed: boolean | "left" | "right";
1046
1046
  radioRowClick: boolean;
1047
1047
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1048
1048
  P: {};
@@ -1138,8 +1138,8 @@ declare const QyTablePlus: ({
1138
1138
  type: PropType<boolean>;
1139
1139
  default: boolean;
1140
1140
  };
1141
- selectionFixedRight: {
1142
- type: PropType<boolean>;
1141
+ selectionFixed: {
1142
+ type: PropType<boolean | "right" | "left">;
1143
1143
  default: boolean;
1144
1144
  };
1145
1145
  radioRowClick: {
@@ -2075,7 +2075,7 @@ declare const QyTablePlus: ({
2075
2075
  treeOptions: TreeProps;
2076
2076
  isOldApi: boolean;
2077
2077
  hideSelection: boolean;
2078
- selectionFixedRight: boolean;
2078
+ selectionFixed: boolean | "left" | "right";
2079
2079
  radioRowClick: boolean;
2080
2080
  }>;
2081
2081
  __isFragment?: never;
@@ -2168,8 +2168,8 @@ declare const QyTablePlus: ({
2168
2168
  type: PropType<boolean>;
2169
2169
  default: boolean;
2170
2170
  };
2171
- selectionFixedRight: {
2172
- type: PropType<boolean>;
2171
+ selectionFixed: {
2172
+ type: PropType<boolean | "right" | "left">;
2173
2173
  default: boolean;
2174
2174
  };
2175
2175
  radioRowClick: {
@@ -3115,7 +3115,7 @@ declare const QyTablePlus: ({
3115
3115
  treeOptions: TreeProps;
3116
3116
  isOldApi: boolean;
3117
3117
  hideSelection: boolean;
3118
- selectionFixedRight: boolean;
3118
+ selectionFixed: boolean | "left" | "right";
3119
3119
  radioRowClick: boolean;
3120
3120
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3121
3121
  $slots: Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
@@ -30,7 +30,7 @@ export interface ProTableProps {
30
30
  treeOptions?: TreeProps;
31
31
  isOldApi?: boolean;
32
32
  hideSelection?: boolean;
33
- selectionFixedRight?: boolean;
33
+ selectionFixed?: boolean | 'left' | 'right';
34
34
  radioRowClick?: boolean;
35
35
  }
36
36
  declare function __VLS_template(): Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
@@ -69,7 +69,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
69
69
  beforeReset: () => void;
70
70
  isOldApi: boolean;
71
71
  hideSelection: boolean;
72
- selectionFixedRight: boolean;
72
+ selectionFixed: boolean;
73
73
  radioRowClick: boolean;
74
74
  }>>, {
75
75
  element: Ref< CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
@@ -1006,7 +1006,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
1006
1006
  beforeReset: () => void;
1007
1007
  isOldApi: boolean;
1008
1008
  hideSelection: boolean;
1009
- selectionFixedRight: boolean;
1009
+ selectionFixed: boolean;
1010
1010
  radioRowClick: boolean;
1011
1011
  }>>> & Readonly<{
1012
1012
  onSearch?: (() => any) | undefined;
@@ -1036,7 +1036,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
1036
1036
  treeOptions: TreeProps;
1037
1037
  isOldApi: boolean;
1038
1038
  hideSelection: boolean;
1039
- selectionFixedRight: boolean;
1039
+ selectionFixed: boolean | "left" | "right";
1040
1040
  radioRowClick: boolean;
1041
1041
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1042
1042
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;