@dinert/element-plus 1.0.7 → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  import type { Plugin } from 'vue';
2
2
  type SFCWithInstall<T> = T & Plugin;
3
- export declare const Form: SFCWithInstall<import("vue").DefineComponent<{
3
+ export declare const DinertForm: SFCWithInstall<import("vue").DefineComponent<{
4
4
  form: {
5
5
  type: import("vue").PropType<import("./types").RewriteFormProps<any>>;
6
6
  default: () => {};
@@ -313,4 +313,4 @@ export declare const Form: SFCWithInstall<import("vue").DefineComponent<{
313
313
  form: import("./types").RewriteFormProps<any>;
314
314
  search: boolean;
315
315
  }, {}>>;
316
- export default Form;
316
+ export default DinertForm;
@@ -3,7 +3,7 @@ import { SelectProps } from 'element-plus/es/components/select-v2/src/defaults';
3
3
  type RewriteColProps = Partial<ColProps>;
4
4
  type RewriteRowProps = Partial<RowProps>;
5
5
  type TypeName = 'input' | 'select' | 'textarea' | 'input-autocomplete' | 'input-number' | 'switch' | 'datetime' | 'date' | 'week' | 'month' | 'year' | 'datetimerange' | 'daterange' | 'monthrange' | 'custom' | 'radio' | 'tree-select' | 'radio-button' | 'rate' | 'checkbox' | 'cascader';
6
- export interface RewriteFormItemProps<T = any[]> extends Partial<InputProps & InputNumberProps & Omit<typeof SelectProps, 'options' | 'props'> & Omit<typeof ElTreeSelect, 'options' | 'data'> & AutocompleteProps & SwitchProps & DatePickerProps & RateProps & CheckboxGroupProps> {
6
+ export interface RewriteFormItemProps<T = any[]> extends Partial<InputProps & InputNumberProps & Omit<typeof SelectProps, 'options' | 'props' | 'valueKey'> & Omit<typeof ElTreeSelect, 'options' | 'data'> & AutocompleteProps & SwitchProps & DatePickerProps & RateProps & CheckboxGroupProps> {
7
7
  data?: T | Partial<CheckboxProps[] & SelectOptionProxy[]>;
8
8
  options?: T | Partial<CheckboxProps[] & SelectOptionProxy[]>;
9
9
  props?: Partial<CascaderProps>;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="lodash" />
2
2
  import type { Plugin } from 'vue';
3
3
  type SFCWithInstall<T> = T & Plugin;
4
- export declare const Table: SFCWithInstall<import("vue").DefineComponent<{
4
+ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
5
5
  table: {
6
6
  type: import("vue").PropType<import("./types").RewriteTableProps<any>>;
7
7
  };
@@ -25318,4 +25318,4 @@ export declare const Table: SFCWithInstall<import("vue").DefineComponent<{
25318
25318
  header: boolean;
25319
25319
  tableSlot: boolean;
25320
25320
  }, {}>>;
25321
- export default Table;
25321
+ export default DinertTable;
@@ -1,6 +1,6 @@
1
1
  import type { Plugin } from 'vue';
2
2
  type SFCWithInstall<T> = T & Plugin;
3
- export declare const Tooltip: SFCWithInstall<import("vue").DefineComponent<{
3
+ export declare const DinertTooltip: SFCWithInstall<import("vue").DefineComponent<{
4
4
  options: {
5
5
  type: ObjectConstructor;
6
6
  default: () => {};
@@ -57,4 +57,4 @@ export declare const Tooltip: SFCWithInstall<import("vue").DefineComponent<{
57
57
  } | undefined;
58
58
  } | undefined;
59
59
  }, {}>>;
60
- export default Tooltip;
60
+ export default DinertTooltip;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dinert/element-plus",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "基于vue3封装的element-plus包",
5
5
  "scripts": {
6
6
  "dev": "vite",