turmag-vue-components 0.0.12 → 0.0.13
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 +5 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ declare const __VLS_component_2: DefineComponent<ExtractPropTypes<__VLS_WithDefa
|
|
|
129
129
|
color?: "default" | "hover" | "active" | "secondary";
|
|
130
130
|
display?: "block" | "inline" | "flex" | "";
|
|
131
131
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
132
|
-
size?:
|
|
132
|
+
size?: TUiTextSize;
|
|
133
133
|
tag?: keyof HTMLElementTagNameMap;
|
|
134
134
|
text?: string | number | Ref<string, string>;
|
|
135
135
|
textAlign?: "left" | "center" | "right" | "";
|
|
@@ -149,7 +149,7 @@ wrap: string;
|
|
|
149
149
|
color?: "default" | "hover" | "active" | "secondary";
|
|
150
150
|
display?: "block" | "inline" | "flex" | "";
|
|
151
151
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
152
|
-
size?:
|
|
152
|
+
size?: TUiTextSize;
|
|
153
153
|
tag?: keyof HTMLElementTagNameMap;
|
|
154
154
|
text?: string | number | Ref<string, string>;
|
|
155
155
|
textAlign?: "left" | "center" | "right" | "";
|
|
@@ -171,7 +171,7 @@ tag: keyof HTMLElementTagNameMap;
|
|
|
171
171
|
color: "default" | "hover" | "active" | "secondary";
|
|
172
172
|
display: "block" | "inline" | "flex" | "";
|
|
173
173
|
line: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
174
|
-
size:
|
|
174
|
+
size: TUiTextSize;
|
|
175
175
|
text: string | number | Ref<string, string>;
|
|
176
176
|
textAlign: "left" | "center" | "right" | "";
|
|
177
177
|
weight: "fw400" | "fw500" | "fw600" | "fw700";
|
|
@@ -475,6 +475,8 @@ declare type TRadius = '' | 'r0' | 'r2' | 'r4' | 'r6' | 'r8' | 'r12' | 'r14' | '
|
|
|
475
475
|
|
|
476
476
|
declare type TTooltipPosition = typeof TOOLTIP_POSITIONS[number];
|
|
477
477
|
|
|
478
|
+
export declare type TUiTextSize = 'fs12' | 'fs14' | 'fs16' | 'fs18' | 'fs20' | 'fs24' | 'fs28' | 'fs32' | 'fs36' | 'fs40' | 'fs42' | 'fs48' | 'fs64';
|
|
479
|
+
|
|
478
480
|
export declare const UiFlex: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
479
481
|
|
|
480
482
|
export declare const UiText: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, ReturnType<typeof __VLS_template_2>>;
|