@timus-networks/theme 2.3.8 → 2.4.1
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.
|
|
15
|
+
const version = "2.4.1";
|
|
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 = {
|
|
@@ -40,7 +40,7 @@ const scripts = {
|
|
|
40
40
|
build: "nuxt-module-build build",
|
|
41
41
|
"release-old": "npm run build && changelogen --release && npm run pub && git push --follow-tags",
|
|
42
42
|
version: "standard-version --release-as ${npm_config_type:-patch}",
|
|
43
|
-
release: "npm run
|
|
43
|
+
release: "npm run version && npm run build && npm run pub && git push --follow-tags origin main"
|
|
44
44
|
};
|
|
45
45
|
const repository = {
|
|
46
46
|
type: "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<template #footer>
|
|
17
17
|
<code class="flex flex-col gap-3 items-start">
|
|
18
|
-
<el-tag type="neutral"><el-button
|
|
18
|
+
<el-tag type="neutral"><el-button size="small">small</el-button></el-tag>
|
|
19
19
|
</code>
|
|
20
20
|
</template>
|
|
21
21
|
</el-card>
|
|
@@ -84,23 +84,6 @@
|
|
|
84
84
|
</div>
|
|
85
85
|
<template #footer> <html-encode :tag="snippets.nested" /> </template>
|
|
86
86
|
</el-card>
|
|
87
|
-
|
|
88
|
-
<el-card>
|
|
89
|
-
<template #header> Directive </template>
|
|
90
|
-
<div class="flex flex-col gap-4 items-start">
|
|
91
|
-
<p>
|
|
92
|
-
You can still using popover in directive way but this is <span class="font-medium">not recommended</span> anymore since this makes your application complicated, you may
|
|
93
|
-
refer to the virtual triggering for more information.
|
|
94
|
-
</p>
|
|
95
|
-
<div class="flex gap-2">
|
|
96
|
-
<el-button v-popover="popoverRef" v-click-outside="onClickOutside"> Click me </el-button>
|
|
97
|
-
<el-popover ref="popoverRef" trigger="click" title="With title" virtual-triggering persistent>
|
|
98
|
-
<span> Some content </span>
|
|
99
|
-
</el-popover>
|
|
100
|
-
</div>
|
|
101
|
-
</div>
|
|
102
|
-
<template #footer> <html-encode :tag="snippets.directive" /> </template>
|
|
103
|
-
</el-card>
|
|
104
87
|
</div>
|
|
105
88
|
</template>
|
|
106
89
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<el-breadcrumb separator="">
|
|
8
8
|
<el-breadcrumb-item v-for="(crumb, index) in list" :key="index" v-bind="index < list.length - 1 ? { to: { path: crumb.path } } : {}">
|
|
9
|
-
{{ crumb }}
|
|
9
|
+
{{ $t(crumb.label) }}
|
|
10
10
|
<!--{{ crumb }} Tüm Objeyi Görüntülemek İçin Bunu Kullan -->
|
|
11
11
|
</el-breadcrumb-item>
|
|
12
12
|
</el-breadcrumb>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timus-networks/theme",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
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": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"build": "nuxt-module-build build",
|
|
29
29
|
"release-old": "npm run build && changelogen --release && npm run pub && git push --follow-tags",
|
|
30
30
|
"version": "standard-version --release-as ${npm_config_type:-patch}",
|
|
31
|
-
"release": "npm run
|
|
31
|
+
"release": "npm run version && npm run build && npm run pub && git push --follow-tags origin main"
|
|
32
32
|
},
|
|
33
33
|
"standard-version": {
|
|
34
34
|
"tagPrefix": "theme-v",
|