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.
- package/dist/index.es.js +11221 -9163
- package/dist/index.umd.js +20 -24
- package/dist/rayyy-vue-table-components.css +1 -1
- package/dist/src/components/form/BaseMultipleInput.vue.d.ts +549 -0
- package/dist/src/components/index.d.ts +15 -8
- package/dist/src/components/items/BaseBtn.vue.d.ts +0 -1
- package/dist/src/components/{items → layout}/FunctionHeader.vue.d.ts +12 -2
- package/dist/src/components/layout/SearchableListPanel.vue.d.ts +40 -0
- package/dist/src/index.d.ts +2 -2
- package/dist/src/router/constants.d.ts +28 -0
- package/dist/src/types/OptionDto.d.ts +7 -0
- package/dist/src/types/components.d.ts +600 -1
- package/dist/src/views/DemoPage.vue.d.ts +1 -1
- package/dist/src/views/demo/BaseBtnDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/BaseDialogDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/BaseFormDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/BaseInputDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/BaseMultipleInputDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/BaseTableDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/FilterBtnDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/FunctionHeaderDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/MainPanelDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/SearchBarDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/SearchableListPanelDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/SortTableDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/TransferDialogDemo.vue.d.ts +2 -0
- package/dist/src/views/demo/TransferItemDemo.vue.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/form/BaseMultipleInput.vue +112 -0
- package/src/components/form/BaseSelector.vue +58 -0
- package/src/components/index.ts +41 -7
- package/src/components/items/BaseBtn.vue +2 -2
- package/src/components/{BaseDialog.vue → items/BaseDialog.vue} +1 -1
- package/src/components/items/FilterBtn.vue +1 -1
- package/src/components/items/SearchBar.vue +1 -1
- package/src/components/{items → layout}/FunctionHeader.vue +12 -9
- package/src/components/layout/SearchableListPanel.vue +81 -0
- package/src/components/transfer/TransferDialog.vue +1 -1
- package/src/types/OptionDto.ts +7 -0
- package/src/types/components.d.ts +600 -1
- package/dist/src/components/{BaseForm.vue.d.ts → form/BaseForm.vue.d.ts} +0 -0
- package/dist/src/components/{items → form}/BaseInput.vue.d.ts +0 -0
- package/dist/src/components/{BaseDialog.vue.d.ts → items/BaseDialog.vue.d.ts} +0 -0
- package/dist/src/components/{items → layout}/MainPanel.vue.d.ts +0 -0
- package/src/components/{BaseForm.vue → form/BaseForm.vue} +0 -0
- package/src/components/{items → form}/BaseInput.vue +20 -20
- /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
|