@timus-networks/theme 1.0.144 → 1.0.145
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/components-js/ThemeTag.vue +4 -4
- package/module.js +3 -3
- package/output/main.css +1 -1
- package/package.json +5 -5
- package/plugins/html-to-string.js +5 -2
- package/plugins/js-components-installer.js +1 -0
- package/plugins/theme-provider.js +44 -40
- package/plugins/ts-components-installer.js +1 -0
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</div>
|
|
17
17
|
<div class="my-4 p-4 border-l-4 border-blue-600 bg-blue-100">
|
|
18
18
|
<p class="text-xs">
|
|
19
|
-
<code><el-
|
|
19
|
+
<code><el-tag type="gray" size="medium">content</el-tag></code>
|
|
20
20
|
</p>
|
|
21
21
|
</div>
|
|
22
22
|
</section>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
<div class="my-4 p-4 border-l-4 border-blue-600 bg-blue-100">
|
|
35
35
|
<p class="text-xs">
|
|
36
|
-
<code><el-
|
|
36
|
+
<code><el-tag>content</el-tag></code>
|
|
37
37
|
</p>
|
|
38
38
|
</div>
|
|
39
39
|
</section>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
</div>
|
|
51
51
|
<div class="my-4 p-4 border-l-4 border-blue-600 bg-blue-100">
|
|
52
52
|
<p class="text-xs">
|
|
53
|
-
<code><el-
|
|
53
|
+
<code><el-tag size="medium">content</el-tag></code>
|
|
54
54
|
</p>
|
|
55
55
|
</div>
|
|
56
56
|
</section>
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
</div>
|
|
76
76
|
<div class="my-4 p-4 border-l-4 border-blue-600 bg-blue-100">
|
|
77
77
|
<p class="text-xs">
|
|
78
|
-
<code><el-
|
|
78
|
+
<code><el-tag>content</el-tag></code>
|
|
79
79
|
</p>
|
|
80
80
|
</div>
|
|
81
81
|
</section>
|
package/module.js
CHANGED
|
@@ -33,7 +33,7 @@ export default function (moduleOptions) {
|
|
|
33
33
|
{ source: 'logo', target: 'assets/logo' },
|
|
34
34
|
];
|
|
35
35
|
|
|
36
|
-
// Kopyalama işlemlerini Promise.all ile
|
|
36
|
+
// Kopyalama işlemlerini Promise.all ile sarmalıyorum
|
|
37
37
|
await Promise.all(directories.map(async (directory) => {
|
|
38
38
|
const sourceDir = resolve(__dirname, `./${directory.source}/`);
|
|
39
39
|
const destDir = resolve(this.options.srcDir, `./${directory.target}/`);
|
|
@@ -41,7 +41,7 @@ export default function (moduleOptions) {
|
|
|
41
41
|
await copyDirectory(sourceDir, destDir);
|
|
42
42
|
}));
|
|
43
43
|
|
|
44
|
-
// Tüm kopyalama işlemleri tamamlandığında CSS dosyalarını
|
|
44
|
+
// Tüm kopyalama işlemleri tamamlandığında CSS dosyalarını ekleyorum
|
|
45
45
|
this.options.css.push(
|
|
46
46
|
'@/static/fonts/poppins/100.css',
|
|
47
47
|
'@/static/fonts/poppins/200.css',
|
|
@@ -75,7 +75,7 @@ export default function (moduleOptions) {
|
|
|
75
75
|
LoadPlugins.bind(this)(options, this.options);
|
|
76
76
|
LoadComponent.bind(this)(options);
|
|
77
77
|
|
|
78
|
-
// Componenti global olarak
|
|
78
|
+
// Componenti global olarak ekleyeliyorum
|
|
79
79
|
// this.addTemplate({
|
|
80
80
|
// src: path.resolve(__dirname, 'components/TableCreate.vue'),
|
|
81
81
|
// fileName: 'components/TableCreate.vue'
|