turmag-vue-components 0.0.20 → 0.0.22
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/index.d.ts +53 -2
- package/dist/turmag-vue-components.es.js +127 -127
- package/dist/turmag-vue-components.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -177,14 +177,14 @@ textAlign: "left" | "center" | "right" | "";
|
|
|
177
177
|
weight: "fw400" | "fw500" | "fw600" | "fw700";
|
|
178
178
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
179
179
|
|
|
180
|
-
declare const __VLS_component_3: DefineComponent<ExtractPropTypes<
|
|
180
|
+
declare const __VLS_component_3: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<IProps_2>, {
|
|
181
181
|
justifyContent: string;
|
|
182
182
|
padding: string;
|
|
183
183
|
paddingBlock: string;
|
|
184
184
|
paddingInline: string;
|
|
185
185
|
radius: string;
|
|
186
186
|
width: string;
|
|
187
|
-
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
187
|
+
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<IProps_2>, {
|
|
188
188
|
justifyContent: string;
|
|
189
189
|
padding: string;
|
|
190
190
|
paddingBlock: string;
|
|
@@ -356,6 +356,8 @@ declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
|
|
356
356
|
|
|
357
357
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
358
358
|
|
|
359
|
+
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
360
|
+
|
|
359
361
|
declare type __VLS_Prettify<T> = {
|
|
360
362
|
[K in keyof T]: T[K];
|
|
361
363
|
} & {};
|
|
@@ -368,6 +370,10 @@ declare type __VLS_Prettify_3<T> = {
|
|
|
368
370
|
[K in keyof T]: T[K];
|
|
369
371
|
} & {};
|
|
370
372
|
|
|
373
|
+
declare type __VLS_Prettify_4<T> = {
|
|
374
|
+
[K in keyof T]: T[K];
|
|
375
|
+
} & {};
|
|
376
|
+
|
|
371
377
|
declare function __VLS_template(): {
|
|
372
378
|
default?(_: {}): any;
|
|
373
379
|
};
|
|
@@ -412,6 +418,15 @@ declare type __VLS_TypePropsToRuntimeProps_3<T> = {
|
|
|
412
418
|
};
|
|
413
419
|
};
|
|
414
420
|
|
|
421
|
+
declare type __VLS_TypePropsToRuntimeProps_4<T> = {
|
|
422
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
423
|
+
type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
|
|
424
|
+
} : {
|
|
425
|
+
type: PropType<T[K]>;
|
|
426
|
+
required: true;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
|
|
415
430
|
declare type __VLS_WithDefaults<P, D> = {
|
|
416
431
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
417
432
|
default: D[K];
|
|
@@ -430,6 +445,12 @@ declare type __VLS_WithDefaults_3<P, D> = {
|
|
|
430
445
|
}> : P[K];
|
|
431
446
|
};
|
|
432
447
|
|
|
448
|
+
declare type __VLS_WithDefaults_4<P, D> = {
|
|
449
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_4<P[K] & {
|
|
450
|
+
default: D[K];
|
|
451
|
+
}> : P[K];
|
|
452
|
+
};
|
|
453
|
+
|
|
433
454
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
434
455
|
new (): {
|
|
435
456
|
$slots: S;
|
|
@@ -457,6 +478,15 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
|
457
478
|
export declare const install: (app: App) => void;
|
|
458
479
|
|
|
459
480
|
declare interface IProps {
|
|
481
|
+
color?: string;
|
|
482
|
+
height?: string | number;
|
|
483
|
+
iconName: string;
|
|
484
|
+
viewBoxHeight?: string | number;
|
|
485
|
+
viewBoxWidth?: string | number;
|
|
486
|
+
width?: string | number;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
declare interface IProps_2 {
|
|
460
490
|
justifyContent?: '' | 'flex-start' | 'flex-end' | 'center' | 'stretch' | 'normal' | 'space-between' | 'space-around' | 'space-evenly';
|
|
461
491
|
padding?: '' | 'p2' | 'p4' | 'p6' | 'p8' | 'p10' | 'p12' | 'p14' | 'p16' | 'p18' | 'p20' | 'p24' | 'p28' | 'p32' | 'p36' | 'p40' | 'p42' | 'p64' | 'p80' | 'p120';
|
|
462
492
|
paddingBlock?: '' | 'p2' | 'p4' | 'p6' | 'p8' | 'p10' | 'p12' | 'p14' | 'p16' | 'p18' | 'p20' | 'p24' | 'p28' | 'p32' | 'p36' | 'p40' | 'p42' | 'p64' | 'p80' | 'p120';
|
|
@@ -479,6 +509,26 @@ export declare type TUiTextSize = 'fs12' | 'fs14' | 'fs16' | 'fs18' | 'fs20' | '
|
|
|
479
509
|
|
|
480
510
|
export declare const UiFlex: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
481
511
|
|
|
512
|
+
export declare const UiIcon: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
|
|
513
|
+
color: string;
|
|
514
|
+
height: number;
|
|
515
|
+
viewBoxHeight: number;
|
|
516
|
+
viewBoxWidth: number;
|
|
517
|
+
width: number;
|
|
518
|
+
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
|
|
519
|
+
color: string;
|
|
520
|
+
height: number;
|
|
521
|
+
viewBoxHeight: number;
|
|
522
|
+
viewBoxWidth: number;
|
|
523
|
+
width: number;
|
|
524
|
+
}>>> & Readonly<{}>, {
|
|
525
|
+
height: string | number;
|
|
526
|
+
width: string | number;
|
|
527
|
+
color: string;
|
|
528
|
+
viewBoxHeight: string | number;
|
|
529
|
+
viewBoxWidth: string | number;
|
|
530
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
531
|
+
|
|
482
532
|
export declare const UiText: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, ReturnType<typeof __VLS_template_2>>;
|
|
483
533
|
|
|
484
534
|
export declare const UiThemeToggler: DefineComponent<ExtractPropTypes< {
|
|
@@ -502,6 +552,7 @@ export { }
|
|
|
502
552
|
declare module '@vue/runtime-core' {
|
|
503
553
|
interface IGlobalComponents {
|
|
504
554
|
UiFlex: typeof UiFlex;
|
|
555
|
+
UiIcon: typeof UiIcon;
|
|
505
556
|
UiText: typeof UiText;
|
|
506
557
|
UiThemeToggler: typeof UiThemeToggler;
|
|
507
558
|
UiTooltipContent: typeof UiTooltipContent;
|