@opentinyvue/vue-icon 3.27.4 → 3.28.1

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.d.ts CHANGED
@@ -533,6 +533,7 @@ import IconYes from './src/yes';
533
533
  import IconZipType from './src/zip-type';
534
534
  import IconZoomIn from './src/zoom-in';
535
535
  import IconZoomOut from './src/zoom-out';
536
+ import IconSubScript from './src/sub-script';
536
537
  export { IconEditorEraser, IconEditorEraser as iconEditorEraser };
537
538
  export { IconAcceptance, IconAcceptance as iconAcceptance };
538
539
  export { IconActivation, IconActivation as iconActivation };
@@ -1068,6 +1069,7 @@ export { IconYes, IconYes as iconYes };
1068
1069
  export { IconZipType, IconZipType as iconZipType };
1069
1070
  export { IconZoomIn, IconZoomIn as iconZoomIn };
1070
1071
  export { IconZoomOut, IconZoomOut as iconZoomOut };
1072
+ export { IconSubScript, IconSubScript as iconSubScript };
1071
1073
  declare const _default: {
1072
1074
  IconEditorEraser: () => import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
1073
1075
  shape: {
@@ -21934,5 +21936,44 @@ declare const _default: {
21934
21936
  firstColor: string;
21935
21937
  secondColor: string;
21936
21938
  }, {}>>;
21939
+ IconSubScript: () => import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
21940
+ shape: {
21941
+ type: StringConstructor;
21942
+ default: string;
21943
+ };
21944
+ firstColor: {
21945
+ type: StringConstructor;
21946
+ default: string;
21947
+ };
21948
+ secondColor: {
21949
+ type: StringConstructor;
21950
+ default: string;
21951
+ };
21952
+ underlay: {
21953
+ type: ObjectConstructor;
21954
+ };
21955
+ }, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
21956
+ [key: string]: any;
21957
+ }>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
21958
+ shape: {
21959
+ type: StringConstructor;
21960
+ default: string;
21961
+ };
21962
+ firstColor: {
21963
+ type: StringConstructor;
21964
+ default: string;
21965
+ };
21966
+ secondColor: {
21967
+ type: StringConstructor;
21968
+ default: string;
21969
+ };
21970
+ underlay: {
21971
+ type: ObjectConstructor;
21972
+ };
21973
+ }>>, {
21974
+ shape: string;
21975
+ firstColor: string;
21976
+ secondColor: string;
21977
+ }, {}>>;
21937
21978
  };
21938
21979
  export default _default;
package/index.js CHANGED
@@ -1068,6 +1068,8 @@ import IconZoomIn from "./lib/zoom-in";
1068
1068
  import { default as default1068, default as default1069 } from "./lib/zoom-in";
1069
1069
  import IconZoomOut from "./lib/zoom-out";
1070
1070
  import { default as default1070, default as default1071 } from "./lib/zoom-out";
1071
+ import IconSubScript from "./lib/sub-script";
1072
+ import { default as default1072, default as default1073 } from "./lib/sub-script";
1071
1073
  var index = {
1072
1074
  IconEditorEraser,
1073
1075
  IconAcceptance,
@@ -1603,7 +1605,8 @@ var index = {
1603
1605
  IconYes,
1604
1606
  IconZipType,
1605
1607
  IconZoomIn,
1606
- IconZoomOut
1608
+ IconZoomOut,
1609
+ IconSubScript
1607
1610
  };
1608
1611
  export {
1609
1612
  default4 as IconAcceptance,
@@ -2068,6 +2071,7 @@ export {
2068
2071
  default924 as IconStretch,
2069
2072
  default920 as IconStretchCrosswise,
2070
2073
  default922 as IconStretchUpright,
2074
+ default1072 as IconSubScript,
2071
2075
  default926 as IconSubscript,
2072
2076
  default928 as IconSubstituteMaterial,
2073
2077
  default930 as IconSuccess,
@@ -2604,6 +2608,7 @@ export {
2604
2608
  default925 as iconStretch,
2605
2609
  default921 as iconStretchCrosswise,
2606
2610
  default923 as iconStretchUpright,
2611
+ default1073 as iconSubScript,
2607
2612
  default927 as iconSubscript,
2608
2613
  default929 as iconSubstituteMaterial,
2609
2614
  default931 as iconSuccess,
@@ -0,0 +1,38 @@
1
+ import { svg } from '@opentinyvue/vue-common';
2
+ import { openBlock, createElementBlock, createElementVNode } from 'vue';
3
+
4
+ var _hoisted_1 = {
5
+ viewBox: "0 0 16 16",
6
+ xmlns: "http://www.w3.org/2000/svg"
7
+ };
8
+ var _hoisted_2 = /* @__PURE__ */ createElementVNode(
9
+ "g",
10
+ {
11
+ "fill-rule": "nonzero"
12
+ },
13
+ [/* @__PURE__ */ createElementVNode("path", {
14
+ d: "M0 0h14a2 2 0 0 1 2 2v14L0 0Z"
15
+ }), /* @__PURE__ */ createElementVNode("path", {
16
+ d: "M13.21 2.605a.75.75 0 1 1 1.08 1.04l-3.429 3.563-.027.027a1 1 0 0 1-1.414-.027L7.71 5.431a.75.75 0 1 1 1.08-1.04l1.35 1.402 3.07-3.188Z",
17
+ fill: "#FFF"
18
+ })],
19
+ -1
20
+ /* HOISTED */
21
+ );
22
+ var _hoisted_3 = [_hoisted_2];
23
+ function render(_ctx, _cache) {
24
+ return openBlock(), createElementBlock("svg", _hoisted_1, [].concat(_hoisted_3));
25
+ }
26
+ var Subscript = {
27
+ render
28
+ };
29
+
30
+ var subScript = function subScript2() {
31
+ return svg({
32
+ name: "IconSubscript",
33
+ component: Subscript,
34
+ filledComponent: Subscript
35
+ })();
36
+ };
37
+
38
+ export { subScript as default };
package/lib/subscript.js CHANGED
@@ -1,5 +1,6 @@
1
- import { svg } from "@opentinyvue/vue-common";
2
- import { createElementBlock, openBlock, createElementVNode } from "vue";
1
+ import { svg } from '@opentinyvue/vue-common';
2
+ import { openBlock, createElementBlock, createElementVNode } from 'vue';
3
+
3
4
  var _hoisted_1 = {
4
5
  viewBox: "0 0 16 16",
5
6
  xmlns: "http://www.w3.org/2000/svg"
@@ -25,6 +26,7 @@ function render(_ctx, _cache) {
25
26
  var Subscript = {
26
27
  render
27
28
  };
29
+
28
30
  var subscript = function subscript2() {
29
31
  return svg({
30
32
  name: "IconSubscript",
@@ -32,6 +34,5 @@ var subscript = function subscript2() {
32
34
  filledComponent: Subscript
33
35
  })();
34
36
  };
35
- export {
36
- subscript as default
37
- };
37
+
38
+ export { subscript as default };
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.1",
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,40 @@
1
+ declare const _default: () => import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
2
+ shape: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ firstColor: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ secondColor: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ underlay: {
15
+ type: ObjectConstructor;
16
+ };
17
+ }, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
18
+ [key: string]: any;
19
+ }>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
20
+ shape: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ firstColor: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ secondColor: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ underlay: {
33
+ type: ObjectConstructor;
34
+ };
35
+ }>>, {
36
+ shape: string;
37
+ firstColor: string;
38
+ secondColor: string;
39
+ }, {}>>;
40
+ export default _default;