plugin-ui-for-kzt 0.0.14 → 0.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plugin-ui-for-kzt",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "plugin-ui for kazaktelekom",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -293,7 +293,7 @@ defineSlots<{
293
293
  }
294
294
 
295
295
  &__header {
296
- height: 22px;
296
+ height: 40px;
297
297
  padding: var(--spacing-s) var(--spacing-2l);
298
298
  border-radius: var(--corner-radius-s);
299
299
  }
@@ -320,7 +320,7 @@ defineSlots<{
320
320
  }
321
321
 
322
322
  &__header {
323
- height: 22px;
323
+ height: 48px;
324
324
  padding: var(--spacing-m) var(--spacing-2l);
325
325
  }
326
326
 
@@ -346,7 +346,7 @@ defineSlots<{
346
346
  }
347
347
 
348
348
  &__header {
349
- height: 30px;
349
+ height: 56px;
350
350
  padding: var(--spacing-m) var(--spacing-l);
351
351
  }
352
352
 
@@ -10,7 +10,6 @@
10
10
  <div class="modal-container-header-title">
11
11
  <component :is="getTypeModal.img"/>
12
12
  <div>{{ options.title }}</div>
13
- <div>{{ getTypeModal.nameClass }}</div>
14
13
  </div>
15
14
  <div
16
15
  class="modal-container-header-show-more"
@@ -1,9 +1,15 @@
1
1
  const requireIcons = require.context(
2
- "@/assets/icons",
3
- false,
4
- /\.svg$/
5
- );
6
-
7
- requireIcons.keys().forEach((fileName) => {
8
- requireIcons(fileName);
9
- });
2
+ '@/assets/icons',
3
+ false,
4
+ /\.svg$/
5
+ );
6
+
7
+ const iconNames = requireIcons.keys().map((fileName: string) => {
8
+ return fileName.replace(/^\.\//, '').replace(/\.svg$/, '');
9
+ });
10
+
11
+ requireIcons.keys().forEach((fileName: string) => {
12
+ requireIcons(fileName);
13
+ });
14
+
15
+ export default iconNames;