@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.
@@ -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>&lt;el-input placeholder="Please input" v-model="input" type="gray" size="medium"&gt;&lt;/el-input&gt;</code>
19
+ <code>&lt;el-tag type="gray" size="medium"&gt;content&lt;/el-tag&gt;</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>&lt;el-input placeholder="Please input" v-model="input"&gt;&lt;/el-input&gt;</code>
36
+ <code>&lt;el-tag&gt;content&lt;/el-tag&gt;</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>&lt;el-input placeholder="Please input" v-model="input size="medium"&gt;&lt;/el-input&gt;</code>
53
+ <code>&lt;el-tag size="medium"&gt;content&lt;/el-tag&gt;</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>&lt;el-input placeholder="Please input" v-model="input"&gt;&lt;/el-input&gt;</code>
78
+ <code>&lt;el-tag&gt;content&lt;/el-tag&gt;</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 sarmalayın
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ı ekleyin
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 ekleyin
78
+ // Componenti global olarak ekleyeliyorum
79
79
  // this.addTemplate({
80
80
  // src: path.resolve(__dirname, 'components/TableCreate.vue'),
81
81
  // fileName: 'components/TableCreate.vue'