@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.3.5",
4
+ "version": "2.3.6",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
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.5";
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
- // import { Calendar as ElIconCalendar, Search as ElIconSearch } from '@element-plus/icons-vue';
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('');
@@ -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();
@@ -33,6 +33,7 @@
33
33
  </template>
34
34
  <script lang="ts" setup>
35
35
  import { ElTable } from 'element-plus';
36
+ import { ref } from 'vue';
36
37
 
37
38
  interface User {
38
39
  date: string;
@@ -43,8 +43,8 @@
43
43
  });
44
44
 
45
45
  const activeName = ref('alert');
46
- const handleClick = (tab: TabsPaneContext, event: Event) => {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.3.6",
3
+ "version": "2.3.7",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {