@mythpe/quasar-ui-qui 0.5.8 → 0.5.10

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,4 +1,4 @@
1
- import { MBtnProps } from './MBtn';
1
+ import { MBtnProps } from '../..';
2
2
  import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
3
3
  interface Props {
4
4
  label?: MBtnProps['label'];
@@ -1,23 +1,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
+ import { ComponentPublicInstance, VNode } from 'vue';
2
+ import { MGridProps } from '../MGrid';
3
+ export interface MColumnProps {
4
+ size?: MGridProps['size'];
5
+ type?: MGridProps['type'];
6
+ }
7
+ export interface MColumnSlots {
8
+ default?: () => VNode[];
9
+ }
10
+ export interface MColumn extends ComponentPublicInstance<MColumnProps> {
11
+ }
@@ -1,23 +1,32 @@
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;
1
+ import { ComponentPublicInstance, VNode } from 'vue';
2
+ import { MGridProps } from '../MGrid';
3
+ export type MContainerProps = {
4
+ /**
5
+ * Defines the spacing size (gutter) between rows and columns.
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;
6
27
  };
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
- };
28
+ export type MContainerSlots = {
29
+ default?: () => VNode[];
23
30
  };
31
+ export interface MContainer extends ComponentPublicInstance<MContainerProps> {
32
+ }
@@ -1,23 +1,12 @@
1
- import { MGridProps } from './MGrid';
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;
6
- };
7
- declare const __VLS_base: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption<MGridProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<MGridProps>>> & 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
+ import { ComponentPublicInstance, VNode } from 'vue';
2
+ import { GridGutterSize, GridGutterType, GridType } from '../../types/config';
3
+ export interface MGridProps {
4
+ gridType: GridType;
5
+ size?: GridGutterSize;
6
+ type?: GridGutterType;
7
+ }
8
+ export interface MGridSlots {
9
+ default?: () => VNode[];
10
+ }
11
+ export interface MGrid extends ComponentPublicInstance<MGridProps> {
12
+ }
@@ -1,11 +1,23 @@
1
- import { ComponentPublicInstance, VNode } from 'vue';
2
- import { MGridProps } from '../MGrid';
3
- export interface MRowProps {
4
- size?: MGridProps['size'];
5
- type?: MGridProps['type'];
6
- }
7
- export interface MRowSlots {
8
- default?: () => VNode[];
9
- }
10
- export interface MRow extends ComponentPublicInstance<MRowProps> {
11
- }
1
+ import { MRowProps } from './MRow';
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<MRowProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<MRowProps>>> & 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,8 +1,7 @@
1
- import { GridGutterType, SpinnerType, LoadingOptions, ThemeInput, ComponentConfig } from '../types/config';
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" | "dense" | "ripple" | "round" | "noCaps">>>;
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;
@@ -1,7 +1,7 @@
1
1
  import { InjectionKey } from 'vue';
2
- import { MythConfig, GridGutterType, SpinnerType } from '../types/config';
2
+ import { MythConfig } from '../types/config';
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?: {