@opentinyvue/vue-icon 3.27.4 → 3.28.0

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/index.js CHANGED
@@ -1,3 +1,12 @@
1
+ function _extends() {
2
+ return _extends = Object.assign ? Object.assign.bind() : function(n) {
3
+ for (var e = 1; e < arguments.length; e++) {
4
+ var t = arguments[e];
5
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
6
+ }
7
+ return n;
8
+ }, _extends.apply(null, arguments);
9
+ }
1
10
  import IconEditorEraser from "./lib/editor-eraser";
2
11
  import { default as default2, default as default3 } from "./lib/editor-eraser";
3
12
  import IconAcceptance from "./lib/acceptance";
@@ -1068,6 +1077,13 @@ import IconZoomIn from "./lib/zoom-in";
1068
1077
  import { default as default1068, default as default1069 } from "./lib/zoom-in";
1069
1078
  import IconZoomOut from "./lib/zoom-out";
1070
1079
  import { default as default1070, default as default1071 } from "./lib/zoom-out";
1080
+ var IconSubScript = function IconSubScript2() {
1081
+ return _extends({}, IconSubscript(), {
1082
+ name: "IconSubScript",
1083
+ deprecatedBy: "IconSubscript"
1084
+ });
1085
+ };
1086
+ var iconSubScript = IconSubScript;
1071
1087
  var index = {
1072
1088
  IconEditorEraser,
1073
1089
  IconAcceptance,
@@ -1603,7 +1619,8 @@ var index = {
1603
1619
  IconYes,
1604
1620
  IconZipType,
1605
1621
  IconZoomIn,
1606
- IconZoomOut
1622
+ IconZoomOut,
1623
+ IconSubScript
1607
1624
  };
1608
1625
  export {
1609
1626
  default4 as IconAcceptance,
@@ -2068,6 +2085,7 @@ export {
2068
2085
  default924 as IconStretch,
2069
2086
  default920 as IconStretchCrosswise,
2070
2087
  default922 as IconStretchUpright,
2088
+ IconSubScript,
2071
2089
  default926 as IconSubscript,
2072
2090
  default928 as IconSubstituteMaterial,
2073
2091
  default930 as IconSuccess,
@@ -2604,6 +2622,7 @@ export {
2604
2622
  default925 as iconStretch,
2605
2623
  default921 as iconStretchCrosswise,
2606
2624
  default923 as iconStretchUpright,
2625
+ iconSubScript,
2607
2626
  default927 as iconSubscript,
2608
2627
  default929 as iconSubstituteMaterial,
2609
2628
  default931 as iconSuccess,
@@ -0,0 +1,5 @@
1
+ import IconSubscript from "./lib/subscript";
2
+ import { default as default2 } from "./lib/subscript";
3
+ export {
4
+ default2 as default
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-icon",
3
- "version": "3.27.4",
3
+ "version": "3.28.0",
4
4
  "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
5
5
  "homepage": "https://opentiny.design/tiny-vue",
6
6
  "main": "./index.js",
@@ -27,8 +27,8 @@
27
27
  "sideEffects": false,
28
28
  "type": "module",
29
29
  "dependencies": {
30
- "@opentinyvue/vue-common": "~3.27.0",
31
- "@opentinyvue/vue-theme": "~3.27.0"
30
+ "@opentinyvue/vue-common": "~3.28.0",
31
+ "@opentinyvue/vue-theme": "~3.28.0"
32
32
  },
33
33
  "module": "./index.js",
34
34
  "types": "index.d.ts",
@@ -0,0 +1,2 @@
1
+ import IconSubScript from './subscript';
2
+ export default IconSubScript;