@mythpe/quasar-ui-qui 0.5.9 → 0.5.11
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/MBtn/MBtn.d.ts +33 -30
- package/dist/components/MBtn/index.d.ts +4 -0
- package/dist/components/grid/MColumn/MColumn.d.ts +23 -11
- package/dist/components/grid/MColumn/index.d.ts +4 -0
- package/dist/components/grid/MContainer/MContainer.d.ts +21 -30
- package/dist/components/grid/MContainer/index.d.ts +4 -0
- package/dist/components/grid/{MGrid.d.ts → MGrid/MGrid.d.ts} +1 -1
- package/dist/components/grid/MGrid/index.d.ts +4 -0
- package/dist/components/grid/MRow/index.d.ts +4 -0
- package/dist/components/grid/index.d.ts +4 -0
- package/dist/components/index.d.ts +10 -23
- package/dist/composables/useMyth.d.ts +19 -20
- package/dist/config/config.d.ts +18 -18
- package/dist/config/grid.d.ts +2 -2
- package/dist/index.common.cjs +1 -1
- package/dist/index.d.ts +29 -3
- package/dist/index.js +1 -2
- package/dist/index.umd.js +1 -1
- package/dist/types/config.d.ts +2 -0
- package/dist/types/index.d.ts +3 -5
- package/dist/types/utils.d.ts +5 -0
- package/dist/utils/helpers.d.ts +1 -1
- package/dist/utils/index.d.ts +1 -5
- package/package.json +3 -2
- package/dist/vue-plugin.d.ts +0 -16
|
@@ -1,32 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { QBtnProps } from 'quasar';
|
|
2
|
+
import { ComponentPublicInstance, VNode } from 'vue';
|
|
3
|
+
import { SpinnerType } from '../../types';
|
|
4
|
+
export interface MBtnProps extends Omit<QBtnProps, 'label'> {
|
|
5
|
+
/**
|
|
6
|
+
* The text that will be shown on the button
|
|
7
|
+
*/
|
|
8
|
+
label?: string | number | undefined | null;
|
|
9
|
+
/**
|
|
10
|
+
* Removes the default button styles
|
|
11
|
+
*/
|
|
8
12
|
noStyle?: boolean;
|
|
13
|
+
nativeLabel?: boolean | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* Type of loading indicator
|
|
16
|
+
*/
|
|
17
|
+
spinner?: SpinnerType;
|
|
18
|
+
}
|
|
19
|
+
export interface MBtnSlots {
|
|
20
|
+
/**
|
|
21
|
+
* Use for custom content, instead of relying on 'icon' and 'label' props
|
|
22
|
+
*/
|
|
23
|
+
default: () => VNode[];
|
|
24
|
+
/**
|
|
25
|
+
* Override the default QSpinner when in 'loading' state
|
|
26
|
+
*/
|
|
27
|
+
loading: () => VNode[];
|
|
28
|
+
}
|
|
29
|
+
export interface MBtn extends ComponentPublicInstance<MBtnProps> {
|
|
30
|
+
/**
|
|
31
|
+
* Emulate click on MBtn
|
|
32
|
+
* @param evt JS event object
|
|
33
|
+
*/
|
|
34
|
+
click: (evt?: Event) => void;
|
|
9
35
|
}
|
|
10
|
-
declare var __VLS_9: {}, __VLS_18: {};
|
|
11
|
-
type __VLS_Slots = {} & {
|
|
12
|
-
loading?: (props: typeof __VLS_9) => any;
|
|
13
|
-
} & {
|
|
14
|
-
default?: (props: typeof __VLS_18) => any;
|
|
15
|
-
};
|
|
16
|
-
declare const __VLS_base: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption<Props>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
-
declare const _default: typeof __VLS_export;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_TypePropsToOption<T> = {
|
|
21
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
-
type: PropType<Required<T>[K]>;
|
|
23
|
-
} : {
|
|
24
|
-
type: PropType<T[K]>;
|
|
25
|
-
required: true;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
29
|
-
new (): {
|
|
30
|
-
$slots: S;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
@@ -1,11 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
|
|
1
|
+
import { MColumnProps } from './MColumn';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
|
|
3
|
+
declare var __VLS_8: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_8) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption<MColumnProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<MColumnProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_TypePropsToOption<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: PropType<Required<T>[K]>;
|
|
14
|
+
} : {
|
|
15
|
+
type: PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -1,32 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
* Matches the design system global theme sizes.
|
|
7
|
-
* @default 'md'
|
|
8
|
-
*/
|
|
9
|
-
size?: MGridProps['size'];
|
|
10
|
-
/**
|
|
11
|
-
* Determines the Quasar gutter implementation behavior.
|
|
12
|
-
* - 'col': Uses 'q-col-gutter' (adds negative margins, ideal for layout grids).
|
|
13
|
-
* - 'gutter': Uses 'q-gutter' (adds standard margins between direct children).
|
|
14
|
-
* @default 'gutter'
|
|
15
|
-
*/
|
|
16
|
-
type?: MGridProps['type'];
|
|
17
|
-
/**
|
|
18
|
-
* Reduces the inner padding or vertical spacing of the container for a more compact layout.
|
|
19
|
-
* @default false
|
|
20
|
-
*/
|
|
21
|
-
dense?: boolean | undefined;
|
|
22
|
-
/**
|
|
23
|
-
* If true, the container spans the full width of the viewport, removing maximum width constraints.
|
|
24
|
-
* @default false
|
|
25
|
-
*/
|
|
26
|
-
fluid?: boolean | undefined;
|
|
1
|
+
import { MContainerProps } from './MContainer';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_1) => any;
|
|
27
6
|
};
|
|
28
|
-
|
|
29
|
-
|
|
7
|
+
declare const __VLS_base: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption<MContainerProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<MContainerProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_TypePropsToOption<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: PropType<Required<T>[K]>;
|
|
14
|
+
} : {
|
|
15
|
+
type: PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
30
23
|
};
|
|
31
|
-
export interface MContainer extends ComponentPublicInstance<MContainerProps> {
|
|
32
|
-
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentPublicInstance, VNode } from 'vue';
|
|
2
|
-
import { GridGutterSize, GridGutterType, GridType } from '
|
|
2
|
+
import { GridGutterSize, GridGutterType, GridType } from '../../../types';
|
|
3
3
|
export interface MGridProps {
|
|
4
4
|
gridType: GridType;
|
|
5
5
|
size?: GridGutterSize;
|
|
@@ -1,31 +1,18 @@
|
|
|
1
|
-
import { default as MBtn
|
|
2
|
-
import { default as MContainer
|
|
3
|
-
import { default as MGrid
|
|
4
|
-
import { default as MColumn
|
|
5
|
-
import { default as MRow
|
|
1
|
+
import { default as MBtn } from './MBtn/MBtn';
|
|
2
|
+
import { default as MContainer } from './grid/MContainer/MContainer';
|
|
3
|
+
import { default as MGrid } from './grid/MGrid/MGrid';
|
|
4
|
+
import { default as MColumn } from './grid/MColumn/MColumn';
|
|
5
|
+
import { default as MRow } from './grid/MRow/MRow';
|
|
6
6
|
import { GlobalComponentConstructor } from 'quasar';
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export * from './grid
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './MBtn/MBtn';
|
|
7
|
+
import { MContainerProps, MContainerSlots, MGridProps, MGridSlots, MColumnProps, MColumnSlots, MRowProps, MRowSlots } from './grid';
|
|
8
|
+
import { MBtnProps, MBtnSlots } from './MBtn';
|
|
9
|
+
export * from './grid';
|
|
10
|
+
export * from './MBtn';
|
|
12
11
|
export { MBtn, MContainer, MGrid, MColumn, MRow };
|
|
13
12
|
export interface MythGlobalComponents {
|
|
13
|
+
MColumn: GlobalComponentConstructor<MColumnProps, MColumnSlots>;
|
|
14
14
|
MContainer: GlobalComponentConstructor<MContainerProps, MContainerSlots>;
|
|
15
15
|
MGrid: GlobalComponentConstructor<MGridProps, MGridSlots>;
|
|
16
|
-
MColumn: GlobalComponentConstructor<MColumnProps, MColumnSlots>;
|
|
17
16
|
MRow: GlobalComponentConstructor<MRowProps, MRowSlots>;
|
|
18
17
|
MBtn: GlobalComponentConstructor<MBtnProps, MBtnSlots>;
|
|
19
18
|
}
|
|
20
|
-
declare module 'vue' {
|
|
21
|
-
interface GlobalComponents extends MythGlobalComponents {
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
declare module '@vue/runtime-dom' {
|
|
25
|
-
interface GlobalComponents extends MythGlobalComponents {
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
declare module '@vue/runtime-core' {
|
|
29
|
-
interface GlobalComponents extends MythGlobalComponents {
|
|
30
|
-
}
|
|
31
|
-
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { GridGutterType, SpinnerType, LoadingOptions, ThemeInput, ComponentConfig } from '
|
|
1
|
+
import { GridGutterType, SpinnerType, LoadingOptions, ClassValueNoArray, ThemeInput, ComponentConfig } from '..';
|
|
2
2
|
import { NamedColor, QBtnProps } from 'quasar';
|
|
3
3
|
import { Globals } from 'csstype';
|
|
4
4
|
import { Ref, ComputedRef } from 'vue';
|
|
5
|
-
import { ClassValueNoArray } from '..';
|
|
6
5
|
export declare function useMyth(): {
|
|
7
6
|
config: {
|
|
8
7
|
readonly version: string;
|
|
@@ -23,10 +22,10 @@ export declare function useMyth(): {
|
|
|
23
22
|
readonly padding?: string | undefined | undefined;
|
|
24
23
|
readonly color?: NamedColor | undefined;
|
|
25
24
|
readonly textColor?: NamedColor | undefined;
|
|
25
|
+
readonly noCaps?: boolean | undefined | undefined;
|
|
26
26
|
readonly dense?: boolean | undefined | undefined;
|
|
27
27
|
readonly ripple?: boolean | any | undefined;
|
|
28
28
|
readonly round?: boolean | undefined | undefined;
|
|
29
|
-
readonly noCaps?: boolean | undefined | undefined;
|
|
30
29
|
};
|
|
31
30
|
readonly input: {
|
|
32
31
|
readonly rounded?: boolean | undefined | undefined;
|
|
@@ -3366,44 +3365,44 @@ export declare function useMyth(): {
|
|
|
3366
3365
|
readonly disable?: boolean | undefined | undefined;
|
|
3367
3366
|
readonly percentage?: number | undefined | undefined;
|
|
3368
3367
|
readonly darkPercentage?: boolean | undefined | undefined;
|
|
3369
|
-
readonly noStyle?: boolean | undefined;
|
|
3370
|
-
readonly nativeLabel?: boolean | undefined | undefined;
|
|
3371
3368
|
readonly spinner?: SpinnerType | undefined;
|
|
3369
|
+
readonly nativeLabel?: boolean | undefined | undefined;
|
|
3370
|
+
readonly noStyle?: boolean | undefined;
|
|
3372
3371
|
} | undefined;
|
|
3373
3372
|
readonly input?: {
|
|
3373
|
+
readonly label?: string | number | undefined | null | undefined;
|
|
3374
3374
|
readonly size?: string | undefined | undefined;
|
|
3375
|
-
readonly outline?: boolean | undefined | undefined;
|
|
3376
|
-
readonly flat?: boolean | undefined | undefined;
|
|
3377
|
-
readonly unelevated?: boolean | undefined | undefined;
|
|
3378
|
-
readonly push?: boolean | undefined | undefined;
|
|
3379
|
-
readonly glossy?: boolean | undefined | undefined;
|
|
3380
|
-
readonly padding?: string | undefined | undefined;
|
|
3381
|
-
readonly textColor?: NamedColor | undefined;
|
|
3382
|
-
readonly ripple?: boolean | any | undefined;
|
|
3383
|
-
readonly round?: boolean | undefined | undefined;
|
|
3384
|
-
readonly noCaps?: boolean | undefined | undefined;
|
|
3385
3375
|
readonly type?: string | undefined | undefined;
|
|
3386
3376
|
readonly to?: string | any | undefined;
|
|
3387
3377
|
readonly replace?: boolean | undefined | undefined;
|
|
3388
3378
|
readonly href?: string | undefined | undefined;
|
|
3389
3379
|
readonly target?: string | undefined | undefined;
|
|
3390
|
-
readonly label?: string | number | undefined | null | undefined;
|
|
3391
3380
|
readonly icon?: string | undefined | undefined;
|
|
3392
3381
|
readonly iconRight?: string | undefined | undefined;
|
|
3382
|
+
readonly outline?: boolean | undefined | undefined;
|
|
3383
|
+
readonly flat?: boolean | undefined | undefined;
|
|
3384
|
+
readonly unelevated?: boolean | undefined | undefined;
|
|
3385
|
+
readonly push?: boolean | undefined | undefined;
|
|
3386
|
+
readonly glossy?: boolean | undefined | undefined;
|
|
3393
3387
|
readonly fab?: boolean | undefined | undefined;
|
|
3394
3388
|
readonly fabMini?: boolean | undefined | undefined;
|
|
3389
|
+
readonly padding?: string | undefined | undefined;
|
|
3390
|
+
readonly textColor?: NamedColor | undefined;
|
|
3391
|
+
readonly noCaps?: boolean | undefined | undefined;
|
|
3395
3392
|
readonly noWrap?: boolean | undefined | undefined;
|
|
3393
|
+
readonly ripple?: boolean | any | undefined;
|
|
3396
3394
|
readonly tabindex?: number | string | undefined | undefined;
|
|
3397
3395
|
readonly align?: "left" | "right" | "center" | "around" | "between" | "evenly" | undefined | undefined;
|
|
3398
3396
|
readonly stack?: boolean | undefined | undefined;
|
|
3399
3397
|
readonly stretch?: boolean | undefined | undefined;
|
|
3400
3398
|
readonly loading?: boolean | null | undefined | undefined;
|
|
3401
3399
|
readonly disable?: boolean | undefined | undefined;
|
|
3400
|
+
readonly round?: boolean | undefined | undefined;
|
|
3402
3401
|
readonly percentage?: number | undefined | undefined;
|
|
3403
3402
|
readonly darkPercentage?: boolean | undefined | undefined;
|
|
3404
|
-
readonly noStyle?: boolean | undefined;
|
|
3405
|
-
readonly nativeLabel?: boolean | undefined | undefined;
|
|
3406
3403
|
readonly spinner?: SpinnerType | undefined;
|
|
3404
|
+
readonly nativeLabel?: boolean | undefined | undefined;
|
|
3405
|
+
readonly noStyle?: boolean | undefined;
|
|
3407
3406
|
} | undefined;
|
|
3408
3407
|
};
|
|
3409
3408
|
readonly loadingOptions?: {
|
|
@@ -3433,10 +3432,10 @@ export declare function useMyth(): {
|
|
|
3433
3432
|
padding?: string | undefined | undefined;
|
|
3434
3433
|
color?: NamedColor | undefined;
|
|
3435
3434
|
textColor?: NamedColor | undefined;
|
|
3435
|
+
noCaps?: boolean | undefined | undefined;
|
|
3436
3436
|
dense?: boolean | undefined | undefined;
|
|
3437
3437
|
ripple?: boolean | any | undefined;
|
|
3438
3438
|
round?: boolean | undefined | undefined;
|
|
3439
|
-
noCaps?: boolean | undefined | undefined;
|
|
3440
3439
|
};
|
|
3441
3440
|
input: {
|
|
3442
3441
|
rounded?: boolean | undefined | undefined;
|
|
@@ -6756,7 +6755,7 @@ export declare function useMyth(): {
|
|
|
6756
6755
|
} | null | undefined)[] | null | undefined;
|
|
6757
6756
|
};
|
|
6758
6757
|
};
|
|
6759
|
-
btnStyle: ComputedRef<Partial<Pick< QBtnProps, "size" | "outline" | "flat" | "unelevated" | "rounded" | "push" | "square" | "glossy" | "padding" | "color" | "textColor" | "
|
|
6758
|
+
btnStyle: ComputedRef<Partial<Pick< QBtnProps, "size" | "outline" | "flat" | "unelevated" | "rounded" | "push" | "square" | "glossy" | "padding" | "color" | "textColor" | "noCaps" | "dense" | "ripple" | "round">>>;
|
|
6760
6759
|
inputStyle: ComputedRef<ThemeInput>;
|
|
6761
6760
|
componentProps: ComputedRef<ComponentConfig>;
|
|
6762
6761
|
__: (key: any, ...rest: any[]) => string;
|
package/dist/config/config.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InjectionKey } from 'vue';
|
|
2
|
-
import { MythConfig
|
|
2
|
+
import { MythConfig } from '../types';
|
|
3
|
+
import { GridGutterType, ClassValueNoArray, SpinnerType } from '..';
|
|
3
4
|
import { NamedColor } from 'quasar';
|
|
4
|
-
import { ClassValueNoArray } from '..';
|
|
5
5
|
import { Globals } from 'csstype';
|
|
6
6
|
export declare const mythConfig: {
|
|
7
7
|
readonly version: string;
|
|
@@ -22,10 +22,10 @@ export declare const mythConfig: {
|
|
|
22
22
|
padding?: string | undefined | undefined;
|
|
23
23
|
color?: NamedColor | undefined;
|
|
24
24
|
textColor?: NamedColor | undefined;
|
|
25
|
+
noCaps?: boolean | undefined | undefined;
|
|
25
26
|
dense?: boolean | undefined | undefined;
|
|
26
27
|
ripple?: boolean | any | undefined;
|
|
27
28
|
round?: boolean | undefined | undefined;
|
|
28
|
-
noCaps?: boolean | undefined | undefined;
|
|
29
29
|
};
|
|
30
30
|
input: {
|
|
31
31
|
rounded?: boolean | undefined | undefined;
|
|
@@ -3361,44 +3361,44 @@ export declare const mythConfig: {
|
|
|
3361
3361
|
disable?: boolean | undefined | undefined;
|
|
3362
3362
|
percentage?: number | undefined | undefined;
|
|
3363
3363
|
darkPercentage?: boolean | undefined | undefined;
|
|
3364
|
-
noStyle?: boolean | undefined;
|
|
3365
|
-
nativeLabel?: boolean | undefined | undefined;
|
|
3366
3364
|
spinner?: SpinnerType | undefined;
|
|
3365
|
+
nativeLabel?: boolean | undefined | undefined;
|
|
3366
|
+
noStyle?: boolean | undefined;
|
|
3367
3367
|
} | undefined;
|
|
3368
3368
|
input?: {
|
|
3369
|
+
label?: string | number | undefined | null | undefined;
|
|
3369
3370
|
size?: string | undefined | undefined;
|
|
3370
|
-
outline?: boolean | undefined | undefined;
|
|
3371
|
-
flat?: boolean | undefined | undefined;
|
|
3372
|
-
unelevated?: boolean | undefined | undefined;
|
|
3373
|
-
push?: boolean | undefined | undefined;
|
|
3374
|
-
glossy?: boolean | undefined | undefined;
|
|
3375
|
-
padding?: string | undefined | undefined;
|
|
3376
|
-
textColor?: NamedColor | undefined;
|
|
3377
|
-
ripple?: boolean | any | undefined;
|
|
3378
|
-
round?: boolean | undefined | undefined;
|
|
3379
|
-
noCaps?: boolean | undefined | undefined;
|
|
3380
3371
|
type?: string | undefined | undefined;
|
|
3381
3372
|
to?: string | any | undefined;
|
|
3382
3373
|
replace?: boolean | undefined | undefined;
|
|
3383
3374
|
href?: string | undefined | undefined;
|
|
3384
3375
|
target?: string | undefined | undefined;
|
|
3385
|
-
label?: string | number | undefined | null | undefined;
|
|
3386
3376
|
icon?: string | undefined | undefined;
|
|
3387
3377
|
iconRight?: string | undefined | undefined;
|
|
3378
|
+
outline?: boolean | undefined | undefined;
|
|
3379
|
+
flat?: boolean | undefined | undefined;
|
|
3380
|
+
unelevated?: boolean | undefined | undefined;
|
|
3381
|
+
push?: boolean | undefined | undefined;
|
|
3382
|
+
glossy?: boolean | undefined | undefined;
|
|
3388
3383
|
fab?: boolean | undefined | undefined;
|
|
3389
3384
|
fabMini?: boolean | undefined | undefined;
|
|
3385
|
+
padding?: string | undefined | undefined;
|
|
3386
|
+
textColor?: NamedColor | undefined;
|
|
3387
|
+
noCaps?: boolean | undefined | undefined;
|
|
3390
3388
|
noWrap?: boolean | undefined | undefined;
|
|
3389
|
+
ripple?: boolean | any | undefined;
|
|
3391
3390
|
tabindex?: number | string | undefined | undefined;
|
|
3392
3391
|
align?: "left" | "right" | "center" | "around" | "between" | "evenly" | undefined | undefined;
|
|
3393
3392
|
stack?: boolean | undefined | undefined;
|
|
3394
3393
|
stretch?: boolean | undefined | undefined;
|
|
3395
3394
|
loading?: boolean | null | undefined | undefined;
|
|
3396
3395
|
disable?: boolean | undefined | undefined;
|
|
3396
|
+
round?: boolean | undefined | undefined;
|
|
3397
3397
|
percentage?: number | undefined | undefined;
|
|
3398
3398
|
darkPercentage?: boolean | undefined | undefined;
|
|
3399
|
-
noStyle?: boolean | undefined;
|
|
3400
|
-
nativeLabel?: boolean | undefined | undefined;
|
|
3401
3399
|
spinner?: SpinnerType | undefined;
|
|
3400
|
+
nativeLabel?: boolean | undefined | undefined;
|
|
3401
|
+
noStyle?: boolean | undefined;
|
|
3402
3402
|
} | undefined;
|
|
3403
3403
|
};
|
|
3404
3404
|
loadingOptions?: {
|
package/dist/config/grid.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionKey } from 'vue';
|
|
2
|
-
import { MContainerProps } from '../components
|
|
3
|
-
import { GridGutterSize, GridGutterType } from '../types
|
|
2
|
+
import { MContainerProps } from '../components';
|
|
3
|
+
import { GridGutterSize, GridGutterType } from '../types';
|
|
4
4
|
export declare const MContainerInjectionKey: InjectionKey<MContainerProps>;
|
|
5
5
|
export declare const DEFAULT_GRID_SIZE: GridGutterSize;
|
|
6
6
|
export declare const DEFAULT_GRID_TYPE: GridGutterType;
|