@timus-networks/theme 2.3.7 → 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
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 = {
|
|
@@ -176,46 +176,6 @@ 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
|
-
}
|
|
219
179
|
}
|
|
220
180
|
});
|
|
221
181
|
|
|
@@ -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>
|
package/package.json
CHANGED