@timus-networks/theme 2.3.6 → 2.3.7
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 +41 -1
- package/dist/runtime/components/development/example.input.vue +3 -5
- package/dist/runtime/components/development/example.popover.vue +1 -0
- 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.6";
|
|
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 = {
|
|
@@ -176,6 +176,46 @@ const module = defineNuxtModule({
|
|
|
176
176
|
nuxt.hook("prepare:types", ({ references }) => {
|
|
177
177
|
references.push({ path: resolver.resolve(`${folderPath}/types.d.ts`) });
|
|
178
178
|
});
|
|
179
|
+
const icons = [
|
|
180
|
+
"Edit",
|
|
181
|
+
"Search",
|
|
182
|
+
"Calendar",
|
|
183
|
+
"ArrowLeft",
|
|
184
|
+
"ArrowRight",
|
|
185
|
+
"Bell",
|
|
186
|
+
"Share",
|
|
187
|
+
"Delete",
|
|
188
|
+
"Upload",
|
|
189
|
+
"Plus",
|
|
190
|
+
"Minus",
|
|
191
|
+
"Check",
|
|
192
|
+
"Close",
|
|
193
|
+
"Info",
|
|
194
|
+
"Warning",
|
|
195
|
+
"CircleCheck",
|
|
196
|
+
"CircleClose",
|
|
197
|
+
"Setting",
|
|
198
|
+
"User",
|
|
199
|
+
"Lock",
|
|
200
|
+
"Unlock",
|
|
201
|
+
"View",
|
|
202
|
+
"Hide",
|
|
203
|
+
"Message",
|
|
204
|
+
"Notification",
|
|
205
|
+
"More",
|
|
206
|
+
"Document",
|
|
207
|
+
"Folder",
|
|
208
|
+
"Refresh",
|
|
209
|
+
"Download",
|
|
210
|
+
"Picture",
|
|
211
|
+
"VideoCamera",
|
|
212
|
+
"Location",
|
|
213
|
+
"Star",
|
|
214
|
+
"ChatLineRound"
|
|
215
|
+
// Yeni ikonları buraya ekleyebilirsiniz
|
|
216
|
+
];
|
|
217
|
+
for (const icon of icons) {
|
|
218
|
+
}
|
|
179
219
|
}
|
|
180
220
|
});
|
|
181
221
|
|
|
@@ -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('');
|
|
@@ -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