@vtj/icons 0.0.3-alpha.4 → 0.4.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.
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
+ export declare const UnFixed: DefineComponent<{
3
+ colors: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8
+ colors: {
9
+ type: PropType<string[]>;
10
+ default: () => never[];
11
+ };
12
+ }>>, {
13
+ colors: string[];
14
+ }, {}>;
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
+ export declare const UnLock: DefineComponent<{
3
+ colors: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8
+ colors: {
9
+ type: PropType<string[]>;
10
+ default: () => never[];
11
+ };
12
+ }>>, {
13
+ colors: string[];
14
+ }, {}>;
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
+ export declare const UserLogin: DefineComponent<{
3
+ colors: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8
+ colors: {
9
+ type: PropType<string[]>;
10
+ default: () => never[];
11
+ };
12
+ }>>, {
13
+ colors: string[];
14
+ }, {}>;
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
+ export declare const Visible: DefineComponent<{
3
+ colors: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8
+ colors: {
9
+ type: PropType<string[]>;
10
+ default: () => never[];
11
+ };
12
+ }>>, {
13
+ colors: string[];
14
+ }, {}>;
@@ -0,0 +1,17 @@
1
+ export * from './Close';
2
+ export * from './ExitFullscreen';
3
+ export * from './Fixed';
4
+ export * from './Fullscreen';
5
+ export * from './Invisible';
6
+ export * from './LineHeight';
7
+ export * from './Lock';
8
+ export * from './Maximize';
9
+ export * from './Minimize';
10
+ export * from './Popup';
11
+ export * from './QrCodeLogin';
12
+ export * from './Rows';
13
+ export * from './Skin';
14
+ export * from './UnFixed';
15
+ export * from './UnLock';
16
+ export * from './UserLogin';
17
+ export * from './Visible';
package/types/index.d.ts CHANGED
@@ -1,8 +1,11 @@
1
+ import { App } from 'vue';
2
+ export * from './components';
1
3
  export interface Icon {
2
4
  label: string;
3
5
  value: string;
4
6
  unicode: string;
5
7
  }
6
8
  declare const icons: Icon[];
7
- export default icons;
8
- export { icons };
9
+ declare const components: Record<string, any>;
10
+ declare const install: (app: App) => void;
11
+ export { icons, components, install };
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
+ export declare const __name__: DefineComponent<{
3
+ colors: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8
+ colors: {
9
+ type: PropType<string[]>;
10
+ default: () => never[];
11
+ };
12
+ }>>, {
13
+ colors: string[];
14
+ }, {}>;