@timus-networks/theme 2.3.6 → 2.3.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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/development/example.badge.vue +1 -0
- package/dist/runtime/components/development/example.input.vue +3 -5
- package/dist/runtime/components/development/example.pagination.vue +2 -2
- package/dist/runtime/components/development/example.popover.vue +3 -2
- package/dist/runtime/components/development/example.table.vue +1 -0
- package/dist/runtime/pages/theme.vue +2 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -12,7 +12,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
12
12
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
13
13
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
14
14
|
const name = "@timus-networks/theme";
|
|
15
|
-
const version = "2.3.
|
|
15
|
+
const version = "2.3.7";
|
|
16
16
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
17
17
|
const type = "module";
|
|
18
18
|
const exports = {
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
<span>Using slots</span>
|
|
105
105
|
<el-input v-model="input" style="width: 240px" placeholder="Pick a date">
|
|
106
106
|
<template #suffix>
|
|
107
|
-
<el-icon class="el-input__icon"><calendar /></el-icon>
|
|
107
|
+
<el-icon class="el-input__icon"><el-icon-calendar /></el-icon>
|
|
108
108
|
</template>
|
|
109
109
|
</el-input>
|
|
110
110
|
<el-input v-model="input" style="width: 240px" placeholder="Type something">
|
|
111
111
|
<template #prefix>
|
|
112
|
-
<el-icon class="el-input__icon"><search /></el-icon>
|
|
112
|
+
<el-icon class="el-input__icon"><el-icon-search /></el-icon>
|
|
113
113
|
</template>
|
|
114
114
|
</el-input>
|
|
115
115
|
</div>
|
|
@@ -217,11 +217,9 @@
|
|
|
217
217
|
</template>
|
|
218
218
|
|
|
219
219
|
<script lang="ts" setup>
|
|
220
|
-
|
|
220
|
+
import { Calendar as ElIconCalendar, Search as ElIconSearch } from '@element-plus/icons-vue';
|
|
221
221
|
import { ref } from 'vue';
|
|
222
222
|
|
|
223
|
-
import { ElIconCalendar, ElIconSearch } from '#components';
|
|
224
|
-
|
|
225
223
|
const sizes = ['default', 'large', 'medium', 'small', 'mini'];
|
|
226
224
|
const input = ref('');
|
|
227
225
|
const textarea = ref('');
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
size: string;
|
|
61
61
|
page_size: number;
|
|
62
62
|
disabled: boolean;
|
|
63
|
-
background:
|
|
63
|
+
background: boolean;
|
|
64
64
|
handleSizeChange: (pageSize: number) => void;
|
|
65
65
|
handleCurrentChange: (page: number) => void;
|
|
66
66
|
}
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
size: 'small',
|
|
71
71
|
page_size: 20,
|
|
72
72
|
disabled: false,
|
|
73
|
-
background:
|
|
73
|
+
background: false,
|
|
74
74
|
handleSizeChange: (pageSize: number) => {
|
|
75
75
|
console.log(pageSize);
|
|
76
76
|
},
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
</template>
|
|
25
25
|
</el-popover>
|
|
26
26
|
|
|
27
|
-
<el-popover ref="
|
|
27
|
+
<el-popover ref="popoverRef" placement="right" title="Title" :width="200" trigger="focus" content="this is content, this is content, this is content">
|
|
28
28
|
<template #reference>
|
|
29
29
|
<el-button>Focus to activate</el-button>
|
|
30
30
|
</template>
|
|
31
31
|
</el-popover>
|
|
32
32
|
|
|
33
|
-
<el-popover ref="
|
|
33
|
+
<el-popover ref="popoverRef" title="Title" :width="200" trigger="contextmenu" content="this is content, this is content, this is content">
|
|
34
34
|
<template #reference>
|
|
35
35
|
<el-button>contextmenu to activate</el-button>
|
|
36
36
|
</template>
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
</template>
|
|
106
106
|
|
|
107
107
|
<script setup lang="ts">
|
|
108
|
+
import { ClickOutside as vClickOutside } from 'element-plus';
|
|
108
109
|
import { ref, unref } from 'vue';
|
|
109
110
|
|
|
110
111
|
const buttonRef = ref();
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
});
|
|
44
44
|
|
|
45
45
|
const activeName = ref('alert');
|
|
46
|
-
const handleClick = (
|
|
47
|
-
console.log(tab, event);
|
|
46
|
+
const handleClick = (_tab: TabsPaneContext, _event: Event) => {
|
|
47
|
+
// console.log(tab, event);
|
|
48
48
|
};
|
|
49
49
|
</script>
|
|
50
50
|
|
package/package.json
CHANGED