@validol4ik/uikit 0.2.5 → 0.2.6
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/dist/components/AppIcon/types.d.ts +2 -2
- package/dist/components/buttons/AppButton/index.vue.d.ts +1 -1
- package/dist/components/buttons/AppButton/types.d.ts +3 -3
- package/dist/components/buttons/CopyButton/index.vue.d.ts +1 -1
- package/dist/components/constants.d.ts +6 -6
- package/dist/components/index.d.ts +1 -1
- package/dist/components/types.d.ts +0 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NamedColor } from 'quasar';
|
|
2
2
|
import { icons_o, icons } from './iconsList';
|
|
3
3
|
export interface AppIconProps {
|
|
4
4
|
name: string;
|
|
5
5
|
size?: string;
|
|
6
|
-
color?:
|
|
6
|
+
color?: NamedColor;
|
|
7
7
|
}
|
|
8
8
|
export type AppIconNames = (typeof icons)[number] | (typeof icons_o)[number];
|
|
@@ -13,7 +13,7 @@ declare const __VLS_component: import('vue').DefineComponent<AppButtonProps, {},
|
|
|
13
13
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
15
|
size: import('../../types').Size;
|
|
16
|
-
color: import('
|
|
16
|
+
color: import('quasar').NamedColor;
|
|
17
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
19
|
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { QBtnProps } from 'quasar';
|
|
2
|
-
import {
|
|
1
|
+
import { QBtnProps, NamedColor } from 'quasar';
|
|
2
|
+
import { Size } from '../../types';
|
|
3
3
|
import { AppIconNames } from '../../AppIcon/types';
|
|
4
4
|
export interface AppButtonProps {
|
|
5
5
|
size?: Size;
|
|
6
6
|
transparent?: boolean;
|
|
7
7
|
flat?: boolean;
|
|
8
8
|
rounded?: boolean;
|
|
9
|
-
color?:
|
|
9
|
+
color?: NamedColor;
|
|
10
10
|
iconLeft?: AppIconNames;
|
|
11
11
|
iconRight?: AppIconNames;
|
|
12
12
|
iconMiddle?: AppIconNames;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as CopyButtonProps } from './types';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<CopyButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CopyButtonProps> & Readonly<{}>, {
|
|
3
3
|
transparent: boolean;
|
|
4
|
-
color: import('
|
|
4
|
+
color: import('quasar').NamedColor;
|
|
5
5
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
6
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NamedColor } from 'quasar';
|
|
2
2
|
export declare const COLORS: {
|
|
3
|
-
PRIMARY:
|
|
4
|
-
INFO:
|
|
5
|
-
ACCENT:
|
|
6
|
-
NEGATIVE:
|
|
7
|
-
POSITIVE:
|
|
3
|
+
PRIMARY: NamedColor;
|
|
4
|
+
INFO: NamedColor;
|
|
5
|
+
ACCENT: NamedColor;
|
|
6
|
+
NEGATIVE: NamedColor;
|
|
7
|
+
POSITIVE: NamedColor;
|
|
8
8
|
};
|
|
@@ -2,6 +2,6 @@ import { default as AppButton } from './buttons/AppButton/index.vue';
|
|
|
2
2
|
import { default as AppIcon } from './AppIcon/index.vue';
|
|
3
3
|
declare const AppButtonCopy: import('vue').DefineComponent<import('./buttons/CopyButton/types').default, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./buttons/CopyButton/types').default> & Readonly<{}>, {
|
|
4
4
|
transparent: boolean;
|
|
5
|
-
color: import('
|
|
5
|
+
color: import('quasar').NamedColor;
|
|
6
6
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
7
|
export { AppButton, AppIcon, AppButtonCopy };
|