@wikicasa-dev/svg-icons 0.2.4 → 0.2.5

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.
@@ -1,6 +1,6 @@
1
1
  import { h as A } from "vue";
2
2
  import { s as g } from "./svgImagefactory-DHbjrCiy.js";
3
- const E = (B, { attrs: Q }) => g({
3
+ const C = (B) => g({
4
4
  props: B,
5
5
  svgNodeAttrs: {
6
6
  xmlns: "http://www.w3.org/2000/svg",
@@ -400,5 +400,5 @@ const E = (B, { attrs: Q }) => g({
400
400
  ]
401
401
  });
402
402
  export {
403
- E as WikiNerdDownloadAppImg
403
+ C as WikiNerdDownloadAppImg
404
404
  };
@@ -1,6 +1,6 @@
1
1
  import { h as a } from "vue";
2
2
  import { s as r } from "./svgImagefactory-DHbjrCiy.js";
3
- const c = (t, { attrs: f }) => r({
3
+ const i = (t) => r({
4
4
  props: t,
5
5
  svgNodeAttrs: {
6
6
  xmlns: "http://www.w3.org/2000/svg",
@@ -2112,5 +2112,5 @@ const c = (t, { attrs: f }) => r({
2112
2112
  ]
2113
2113
  });
2114
2114
  export {
2115
- c as WikiNerdValutaMobileImg
2115
+ i as WikiNerdValutaMobileImg
2116
2116
  };
@@ -0,0 +1,9 @@
1
+ interface DefaultSvgPropsValues {
2
+ width: number;
3
+ height: number;
4
+ strokeColor: string;
5
+ fillColor: string;
6
+ color: string;
7
+ }
8
+ export declare const getDefaultSvgPropsValues: () => Readonly<DefaultSvgPropsValues>;
9
+ export {};
@@ -0,0 +1,8 @@
1
+ import { VNode } from 'vue';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const svgIconFactory: (svgData: {
5
+ props: Partial<SvgProps>;
6
+ svgNodeAttrs: Record<string, any>;
7
+ childrenNodes: VNode[] | VNode;
8
+ }) => VNode;
@@ -0,0 +1,8 @@
1
+ import { VNode } from 'vue';
2
+ import { SvgImageProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const svgImagefactory: (svgData: {
5
+ props: SvgImageProps;
6
+ svgNodeAttrs: Record<string, any>;
7
+ childrenNodes: VNode[] | VNode;
8
+ }) => VNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",