@arco-iconbox/vue-smartcode 0.1.72 → 0.1.74
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/icon.js +3673 -3221
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +436 -396
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorApiPurple/index.js +33 -0
- package/esm/IconColorCascade/index.js +40 -0
- package/esm/IconColorCheckbox/index.js +48 -0
- package/esm/IconColorColorselection/index.js +54 -0
- package/esm/IconColorDate/index.js +57 -0
- package/esm/IconColorImageupload/index.js +53 -0
- package/esm/IconColorLink/index.js +38 -0
- package/esm/IconColorRating/index.js +44 -0
- package/esm/IconColorSlide/index.js +59 -0
- package/esm/IconColorTip/index.js +46 -0
- package/esm/index.js +10 -0
- package/lib/IconColorApiPurple/index.js +34 -0
- package/lib/IconColorCascade/index.js +41 -0
- package/lib/IconColorCheckbox/index.js +49 -0
- package/lib/IconColorColorselection/index.js +55 -0
- package/lib/IconColorDate/index.js +58 -0
- package/lib/IconColorImageupload/index.js +54 -0
- package/lib/IconColorLink/index.js +39 -0
- package/lib/IconColorRating/index.js +45 -0
- package/lib/IconColorSlide/index.js +60 -0
- package/lib/IconColorTip/index.js +47 -0
- package/lib/index.js +20 -0
- package/package.json +1 -1
- package/src/IconColorApiPurple/index.vue +19 -0
- package/src/IconColorCascade/index.vue +19 -0
- package/src/IconColorCheckbox/index.vue +19 -0
- package/src/IconColorColorselection/index.vue +19 -0
- package/src/IconColorDate/index.vue +19 -0
- package/src/IconColorImageupload/index.vue +19 -0
- package/src/IconColorLink/index.vue +19 -0
- package/src/IconColorRating/index.vue +19 -0
- package/src/IconColorSlide/index.vue +19 -0
- package/src/IconColorTip/index.vue +19 -0
- package/src/index.js +11 -1
package/src/index.js
CHANGED
|
@@ -340,4 +340,14 @@ export { default as IconLineCloseBold } from './IconLineCloseBold/index.vue';
|
|
|
340
340
|
export { default as IconLineOkBold } from './IconLineOkBold/index.vue';
|
|
341
341
|
export { default as IconColorDataFlow } from './IconColorDataFlow/index.vue';
|
|
342
342
|
export { default as IconColorOrg } from './IconColorOrg/index.vue';
|
|
343
|
-
export { default as IconColorApiGary } from './IconColorApiGary/index.vue';
|
|
343
|
+
export { default as IconColorApiGary } from './IconColorApiGary/index.vue';
|
|
344
|
+
export { default as IconColorApiPurple } from './IconColorApiPurple/index.vue';
|
|
345
|
+
export { default as IconColorCheckbox } from './IconColorCheckbox/index.vue';
|
|
346
|
+
export { default as IconColorRating } from './IconColorRating/index.vue';
|
|
347
|
+
export { default as IconColorCascade } from './IconColorCascade/index.vue';
|
|
348
|
+
export { default as IconColorDate } from './IconColorDate/index.vue';
|
|
349
|
+
export { default as IconColorLink } from './IconColorLink/index.vue';
|
|
350
|
+
export { default as IconColorColorselection } from './IconColorColorselection/index.vue';
|
|
351
|
+
export { default as IconColorTip } from './IconColorTip/index.vue';
|
|
352
|
+
export { default as IconColorImageupload } from './IconColorImageupload/index.vue';
|
|
353
|
+
export { default as IconColorSlide } from './IconColorSlide/index.vue';
|