@wlnt-ui/icons-vue 1.0.3 → 1.0.4-beta.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.
@@ -1 +1,11 @@
1
+ import { DefineComponent } from 'vue';
2
+ type MenuItem = {
3
+ name: string;
4
+ iconName: string;
5
+ icon?: DefineComponent;
6
+ };
7
+ export declare const MenuIcons: {
8
+ areality: MenuItem[];
9
+ linear: MenuItem[];
10
+ };
1
11
  export * from './components';
@@ -0,0 +1,11 @@
1
+ export declare const menuJson: {
2
+ areality: {
3
+ name: string;
4
+ iconName: string;
5
+ }[];
6
+ linear: {
7
+ name: string;
8
+ iconName: string;
9
+ }[];
10
+ };
11
+ export declare const arealityMenu: never[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wlnt-ui/icons-vue",
3
- "version": "1.0.3",
3
+ "version": "1.0.4-beta.1",
4
4
  "description": "Vue components of Wlnt Ui Icons collection.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -71,8 +71,8 @@
71
71
  "unplugin-vue": "^4.3.5",
72
72
  "vue": "^3.3.4",
73
73
  "vue-tsc": "^1.6.5",
74
- "@wlnt/build-utils": "0.0.1",
75
- "@wlnt-ui/icons-svg": "0.0.1"
74
+ "@wlnt-ui/icons-svg": "0.0.1",
75
+ "@wlnt/build-utils": "0.0.1"
76
76
  },
77
77
  "scripts": {
78
78
  "build": "gulp --require @esbuild-kit/cjs-loader -f gulpfile.ts",