@arco-iconbox/vue-te 0.0.13 → 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.
Files changed (96) hide show
  1. package/dist/icon.js +5148 -4207
  2. package/dist/icon.js.map +1 -1
  3. package/dist/icon.min.js +772 -680
  4. package/dist/icon.min.js.map +1 -1
  5. package/esm/IconCheckbox/index.js +53 -0
  6. package/esm/IconDimensions/index.js +42 -0
  7. package/esm/IconDownload/index.js +5 -1
  8. package/esm/IconFileTypeMiniapp/index.js +61 -0
  9. package/esm/IconFileTypeRar/index.js +27 -10
  10. package/esm/IconFileTypeZip/index.js +27 -10
  11. package/esm/IconFolderFill/index.js +17 -6
  12. package/esm/IconHourglass/index.js +32 -0
  13. package/esm/{IconClickhouse → IconLayoutLabelDown}/index.js +7 -3
  14. package/esm/IconLayoutLabelLeft/index.js +36 -0
  15. package/esm/IconLayoutLabelRight/index.js +36 -0
  16. package/esm/IconLayoutLabelUp/index.js +36 -0
  17. package/esm/IconPromotionOff/index.js +38 -0
  18. package/esm/IconRowHeight/index.js +56 -0
  19. package/esm/IconRowHeightExtrahigh/index.js +40 -0
  20. package/esm/IconRowHeightHigh/index.js +48 -0
  21. package/esm/IconRowHeightMedium/index.js +56 -0
  22. package/esm/IconSearchFill/index.js +36 -0
  23. package/esm/IconStarFill/index.js +32 -0
  24. package/esm/IconSuggestDrag/index.js +38 -0
  25. package/esm/IconTextAlignCenter/index.js +36 -0
  26. package/esm/IconTextAlignJustified/index.js +36 -0
  27. package/esm/IconTextAlignLeft/index.js +36 -0
  28. package/esm/IconTextAlignRight/index.js +36 -0
  29. package/esm/IconTextBold/index.js +36 -0
  30. package/esm/IconTextTilt/index.js +34 -0
  31. package/esm/IconTidb/index.js +40 -0
  32. package/esm/IconUncheckbox/index.js +36 -0
  33. package/esm/IconUpload/index.js +5 -1
  34. package/esm/index.js +24 -1
  35. package/lib/IconCheckbox/index.js +54 -0
  36. package/lib/IconDimensions/index.js +43 -0
  37. package/lib/IconDownload/index.js +5 -1
  38. package/lib/IconFileTypeMiniapp/index.js +62 -0
  39. package/lib/IconFileTypeRar/index.js +27 -10
  40. package/lib/IconFileTypeZip/index.js +27 -10
  41. package/lib/IconFolderFill/index.js +17 -6
  42. package/lib/IconHourglass/index.js +33 -0
  43. package/lib/{IconClickhouse → IconLayoutLabelDown}/index.js +7 -3
  44. package/lib/IconLayoutLabelLeft/index.js +37 -0
  45. package/lib/IconLayoutLabelRight/index.js +37 -0
  46. package/lib/IconLayoutLabelUp/index.js +37 -0
  47. package/lib/IconPromotionOff/index.js +39 -0
  48. package/lib/IconRowHeight/index.js +57 -0
  49. package/lib/IconRowHeightExtrahigh/index.js +41 -0
  50. package/lib/IconRowHeightHigh/index.js +49 -0
  51. package/lib/IconRowHeightMedium/index.js +57 -0
  52. package/lib/IconSearchFill/index.js +37 -0
  53. package/lib/IconStarFill/index.js +33 -0
  54. package/lib/IconSuggestDrag/index.js +39 -0
  55. package/lib/IconTextAlignCenter/index.js +37 -0
  56. package/lib/IconTextAlignJustified/index.js +37 -0
  57. package/lib/IconTextAlignLeft/index.js +37 -0
  58. package/lib/IconTextAlignRight/index.js +37 -0
  59. package/lib/IconTextBold/index.js +37 -0
  60. package/lib/IconTextTilt/index.js +35 -0
  61. package/lib/IconTidb/index.js +41 -0
  62. package/lib/IconUncheckbox/index.js +37 -0
  63. package/lib/IconUpload/index.js +5 -1
  64. package/lib/index.js +356 -310
  65. package/package.json +1 -1
  66. package/src/IconCheckbox/index.vue +19 -0
  67. package/src/IconDimensions/index.vue +19 -0
  68. package/src/IconDownload/index.vue +1 -1
  69. package/src/IconFileTypeMiniapp/index.vue +19 -0
  70. package/src/IconFileTypeRar/index.vue +1 -1
  71. package/src/IconFileTypeZip/index.vue +1 -1
  72. package/src/IconFolderFill/index.vue +1 -1
  73. package/src/IconHourglass/index.vue +19 -0
  74. package/src/IconLayoutLabelDown/index.vue +19 -0
  75. package/src/IconLayoutLabelLeft/index.vue +19 -0
  76. package/src/IconLayoutLabelRight/index.vue +19 -0
  77. package/src/IconLayoutLabelUp/index.vue +19 -0
  78. package/src/IconPromotionOff/index.vue +19 -0
  79. package/src/IconRowHeight/index.vue +19 -0
  80. package/src/IconRowHeightExtrahigh/index.vue +19 -0
  81. package/src/IconRowHeightHigh/index.vue +19 -0
  82. package/src/IconRowHeightMedium/index.vue +19 -0
  83. package/src/IconSearchFill/index.vue +19 -0
  84. package/src/IconStarFill/index.vue +19 -0
  85. package/src/IconSuggestDrag/index.vue +19 -0
  86. package/src/IconTextAlignCenter/index.vue +19 -0
  87. package/src/IconTextAlignJustified/index.vue +19 -0
  88. package/src/IconTextAlignLeft/index.vue +19 -0
  89. package/src/IconTextAlignRight/index.vue +19 -0
  90. package/src/IconTextBold/index.vue +19 -0
  91. package/src/IconTextTilt/index.vue +19 -0
  92. package/src/IconTidb/index.vue +19 -0
  93. package/src/IconUncheckbox/index.vue +19 -0
  94. package/src/IconUpload/index.vue +1 -1
  95. package/src/index.js +25 -2
  96. package/src/IconClickhouse/index.vue +0 -19
package/src/index.js CHANGED
@@ -278,7 +278,6 @@ export { default as IconConnectedInside } from './IconConnectedInside/index.vue'
278
278
  export { default as IconConnectedOut } from './IconConnectedOut/index.vue';
279
279
  export { default as IconConnectCutup } from './IconConnectCutup/index.vue';
280
280
  export { default as IconCubeThree } from './IconCubeThree/index.vue';
281
- export { default as IconClickhouse } from './IconClickhouse/index.vue';
282
281
  export { default as IconMySQL } from './IconMySQL/index.vue';
283
282
  export { default as IconYuanqu } from './IconYuanqu/index.vue';
284
283
  export { default as IconHospitalFill } from './IconHospitalFill/index.vue';
@@ -432,4 +431,28 @@ export { default as IconShuzi } from './IconShuzi/index.vue';
432
431
  export { default as IconBumen } from './IconBumen/index.vue';
433
432
  export { default as IconTupian } from './IconTupian/index.vue';
434
433
  export { default as IconFujian } from './IconFujian/index.vue';
435
- export { default as IconShuoming } from './IconShuoming/index.vue';
434
+ export { default as IconShuoming } from './IconShuoming/index.vue';
435
+ export { default as IconTidb } from './IconTidb/index.vue';
436
+ export { default as IconUncheckbox } from './IconUncheckbox/index.vue';
437
+ export { default as IconCheckbox } from './IconCheckbox/index.vue';
438
+ export { default as IconSuggestDrag } from './IconSuggestDrag/index.vue';
439
+ export { default as IconHourglass } from './IconHourglass/index.vue';
440
+ export { default as IconSearchFill } from './IconSearchFill/index.vue';
441
+ export { default as IconTextBold } from './IconTextBold/index.vue';
442
+ export { default as IconTextAlignCenter } from './IconTextAlignCenter/index.vue';
443
+ export { default as IconTextAlignRight } from './IconTextAlignRight/index.vue';
444
+ export { default as IconTextAlignLeft } from './IconTextAlignLeft/index.vue';
445
+ export { default as IconTextAlignJustified } from './IconTextAlignJustified/index.vue';
446
+ export { default as IconDimensions } from './IconDimensions/index.vue';
447
+ export { default as IconLayoutLabelRight } from './IconLayoutLabelRight/index.vue';
448
+ export { default as IconTextTilt } from './IconTextTilt/index.vue';
449
+ export { default as IconLayoutLabelLeft } from './IconLayoutLabelLeft/index.vue';
450
+ export { default as IconLayoutLabelDown } from './IconLayoutLabelDown/index.vue';
451
+ export { default as IconLayoutLabelUp } from './IconLayoutLabelUp/index.vue';
452
+ export { default as IconRowHeightExtrahigh } from './IconRowHeightExtrahigh/index.vue';
453
+ export { default as IconRowHeight } from './IconRowHeight/index.vue';
454
+ export { default as IconRowHeightHigh } from './IconRowHeightHigh/index.vue';
455
+ export { default as IconRowHeightMedium } from './IconRowHeightMedium/index.vue';
456
+ export { default as IconPromotionOff } from './IconPromotionOff/index.vue';
457
+ export { default as IconFileTypeMiniapp } from './IconFileTypeMiniapp/index.vue';
458
+ export { default as IconStarFill } from './IconStarFill/index.vue';
@@ -1,19 +0,0 @@
1
- <template>
2
- <svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-clickhouse`]" width="1em" height="1em" v-bind="$attrs"><path d="M13.1027 9.1795L14 9.59791L8.35285 14.6983C8.16294 14.8698 7.87418 14.8702 7.68374 14.6993L2 9.59791L2.89734 9.1795L8.01876 13.8205L13.1027 9.1795ZM6.89755 5.10868V10.8531H6.03773V5.10868H6.89755ZM8.43022 5.10868V10.8531H7.5704V5.10868H8.43022ZM9.92569 5.10868V10.8531H9.06587V5.10868H9.92569ZM11.4959 8.38055V10.0924H10.6361V8.38055H11.4959ZM5.40208 6.09791V10.0924H4.54226V6.09791H5.40208ZM11.4959 6.09791V7.80973H10.6361V6.09791H11.4959ZM7.68504 1.29744C7.87508 1.12806 8.16204 1.1285 8.35156 1.29847L14 6.36423L13.1027 6.8205L8.01876 2.1795L2.89734 6.8205L2 6.36455L7.68504 1.29744Z"/></svg>
3
- </template>
4
- <script>
5
-
6
- export default {
7
- name: 'IconClickhouse',
8
- props: {
9
- prefix: {
10
- type: String,
11
- default: 'teicon-',
12
- },
13
- useCurrentColor: {
14
- type: Boolean,
15
- default: true,
16
- },
17
- },
18
- };
19
- </script>