@vtj/icons 0.0.3-alpha.3 → 0.0.3
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/cdn/index.js +1 -1
- package/cdn/style.css +1 -1
- package/lib/index.js +416 -5
- package/lib/style.css +1 -1
- package/package.json +10 -5
- package/types/components/Close.d.ts +14 -0
- package/types/components/ExitFullscreen.d.ts +14 -0
- package/types/components/Fixed.d.ts +14 -0
- package/types/components/Fullscreen.d.ts +14 -0
- package/types/components/Invisible.d.ts +14 -0
- package/types/components/LineHeight.d.ts +14 -0
- package/types/components/Lock.d.ts +14 -0
- package/types/components/Maximize.d.ts +14 -0
- package/types/components/Minimize.d.ts +14 -0
- package/types/components/Popup.d.ts +14 -0
- package/types/components/QrCodeLogin.d.ts +14 -0
- package/types/components/Rows.d.ts +14 -0
- package/types/components/Skin.d.ts +14 -0
- package/types/components/UnFixed.d.ts +14 -0
- package/types/components/UnLock.d.ts +14 -0
- package/types/components/UserLogin.d.ts +14 -0
- package/types/components/Visible.d.ts +14 -0
- package/types/components/index.d.ts +17 -0
- package/types/index.d.ts +5 -2
- package/types/template.d.ts +14 -0
|
@@ -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
|
-
|
|
8
|
-
|
|
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
|
+
}, {}>;
|