rayyy-vue-table-components 1.2.18 → 1.2.20

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 (47) hide show
  1. package/dist/index.es.js +11221 -9163
  2. package/dist/index.umd.js +20 -24
  3. package/dist/rayyy-vue-table-components.css +1 -1
  4. package/dist/src/components/form/BaseMultipleInput.vue.d.ts +549 -0
  5. package/dist/src/components/index.d.ts +15 -8
  6. package/dist/src/components/items/BaseBtn.vue.d.ts +0 -1
  7. package/dist/src/components/{items → layout}/FunctionHeader.vue.d.ts +12 -2
  8. package/dist/src/components/layout/SearchableListPanel.vue.d.ts +40 -0
  9. package/dist/src/index.d.ts +2 -2
  10. package/dist/src/router/constants.d.ts +28 -0
  11. package/dist/src/types/OptionDto.d.ts +7 -0
  12. package/dist/src/types/components.d.ts +600 -1
  13. package/dist/src/views/DemoPage.vue.d.ts +1 -1
  14. package/dist/src/views/demo/BaseBtnDemo.vue.d.ts +2 -0
  15. package/dist/src/views/demo/BaseDialogDemo.vue.d.ts +2 -0
  16. package/dist/src/views/demo/BaseFormDemo.vue.d.ts +2 -0
  17. package/dist/src/views/demo/BaseInputDemo.vue.d.ts +2 -0
  18. package/dist/src/views/demo/BaseMultipleInputDemo.vue.d.ts +2 -0
  19. package/dist/src/views/demo/BaseTableDemo.vue.d.ts +2 -0
  20. package/dist/src/views/demo/FilterBtnDemo.vue.d.ts +2 -0
  21. package/dist/src/views/demo/FunctionHeaderDemo.vue.d.ts +2 -0
  22. package/dist/src/views/demo/MainPanelDemo.vue.d.ts +2 -0
  23. package/dist/src/views/demo/SearchBarDemo.vue.d.ts +2 -0
  24. package/dist/src/views/demo/SearchableListPanelDemo.vue.d.ts +2 -0
  25. package/dist/src/views/demo/SortTableDemo.vue.d.ts +2 -0
  26. package/dist/src/views/demo/TransferDialogDemo.vue.d.ts +2 -0
  27. package/dist/src/views/demo/TransferItemDemo.vue.d.ts +2 -0
  28. package/package.json +1 -1
  29. package/src/components/form/BaseMultipleInput.vue +112 -0
  30. package/src/components/form/BaseSelector.vue +58 -0
  31. package/src/components/index.ts +41 -7
  32. package/src/components/items/BaseBtn.vue +2 -2
  33. package/src/components/{BaseDialog.vue → items/BaseDialog.vue} +1 -1
  34. package/src/components/items/FilterBtn.vue +1 -1
  35. package/src/components/items/SearchBar.vue +1 -1
  36. package/src/components/{items → layout}/FunctionHeader.vue +12 -9
  37. package/src/components/layout/SearchableListPanel.vue +81 -0
  38. package/src/components/transfer/TransferDialog.vue +1 -1
  39. package/src/types/OptionDto.ts +7 -0
  40. package/src/types/components.d.ts +600 -1
  41. package/dist/src/components/{BaseForm.vue.d.ts → form/BaseForm.vue.d.ts} +0 -0
  42. package/dist/src/components/{items → form}/BaseInput.vue.d.ts +0 -0
  43. package/dist/src/components/{BaseDialog.vue.d.ts → items/BaseDialog.vue.d.ts} +0 -0
  44. package/dist/src/components/{items → layout}/MainPanel.vue.d.ts +0 -0
  45. package/src/components/{BaseForm.vue → form/BaseForm.vue} +0 -0
  46. package/src/components/{items → form}/BaseInput.vue +20 -20
  47. /package/src/components/{items → layout}/MainPanel.vue +0 -0
@@ -1,23 +1,3 @@
1
- <template>
2
- <el-input
3
- v-model="v"
4
- :placeholder="props.placeholder"
5
- :type="props.type"
6
- :class="props.class"
7
- :show-password="props.showPassword"
8
- :disabled="props.disabled"
9
- :readonly="props.readonly"
10
- :maxlength="props.maxlength"
11
- :autocomplete="props.autocomplete"
12
- clearable
13
- @clear="handlerClear"
14
- >
15
- <template #prefix>
16
- <el-icon><Search /></el-icon>
17
- </template>
18
- </el-input>
19
- </template>
20
-
21
1
  <script lang="ts" setup>
22
2
  import { computed } from 'vue'
23
3
  import { Search } from '@element-plus/icons-vue'
@@ -48,3 +28,23 @@ const handlerClear = () => {
48
28
  emits('update:clearValue')
49
29
  }
50
30
  </script>
31
+
32
+ <template>
33
+ <el-input
34
+ v-model="v"
35
+ :placeholder="props.placeholder"
36
+ :type="props.type"
37
+ :class="props.class"
38
+ :show-password="props.showPassword"
39
+ :disabled="props.disabled"
40
+ :readonly="props.readonly"
41
+ :maxlength="props.maxlength"
42
+ :autocomplete="props.autocomplete"
43
+ clearable
44
+ @clear="handlerClear"
45
+ >
46
+ <template #prefix>
47
+ <el-icon><Search /></el-icon>
48
+ </template>
49
+ </el-input>
50
+ </template>
File without changes