turmag-vue-components 0.0.25 → 0.0.27
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 +8 -6
- package/dist/turmag-vue-components.es.js +345 -344
- package/dist/turmag-vue-components.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
12
12
|
alignContent?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "normal" | "space-between" | "space-around" | "space-evenly";
|
|
13
13
|
alignItems?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
|
|
14
14
|
alignSelf?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "auto";
|
|
15
|
-
bg?:
|
|
15
|
+
bg?: TUiFlexBg;
|
|
16
16
|
borderColor?: "" | "default" | "secondary" | "accent" | "muted";
|
|
17
17
|
colGap?: TUiFlexGap;
|
|
18
18
|
direction?: "" | "col" | "reverse" | "col-reverse";
|
|
@@ -58,7 +58,7 @@ wrap: string;
|
|
|
58
58
|
alignContent?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "normal" | "space-between" | "space-around" | "space-evenly";
|
|
59
59
|
alignItems?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
|
|
60
60
|
alignSelf?: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "auto";
|
|
61
|
-
bg?:
|
|
61
|
+
bg?: TUiFlexBg;
|
|
62
62
|
borderColor?: "" | "default" | "secondary" | "accent" | "muted";
|
|
63
63
|
colGap?: TUiFlexGap;
|
|
64
64
|
direction?: "" | "col" | "reverse" | "col-reverse";
|
|
@@ -105,7 +105,7 @@ wrap: "" | "nowrap" | "wrap" | "wrap-reverse";
|
|
|
105
105
|
alignContent: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "normal" | "space-between" | "space-around" | "space-evenly";
|
|
106
106
|
alignItems: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
|
|
107
107
|
alignSelf: "" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "auto";
|
|
108
|
-
bg:
|
|
108
|
+
bg: TUiFlexBg;
|
|
109
109
|
borderColor: "" | "default" | "secondary" | "accent" | "muted";
|
|
110
110
|
colGap: TUiFlexGap;
|
|
111
111
|
direction: "" | "col" | "reverse" | "col-reverse";
|
|
@@ -126,7 +126,7 @@ width: "" | "wfull";
|
|
|
126
126
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
127
127
|
|
|
128
128
|
declare const __VLS_component_2: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<{
|
|
129
|
-
color?: "default" | "hover" | "active" | "secondary";
|
|
129
|
+
color?: "default" | "hover" | "active" | "secondary" | "accent";
|
|
130
130
|
display?: "block" | "inline" | "flex" | "";
|
|
131
131
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
132
132
|
size?: TUiTextSize;
|
|
@@ -146,7 +146,7 @@ textAlign: string;
|
|
|
146
146
|
weight: string;
|
|
147
147
|
wrap: string;
|
|
148
148
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<{
|
|
149
|
-
color?: "default" | "hover" | "active" | "secondary";
|
|
149
|
+
color?: "default" | "hover" | "active" | "secondary" | "accent";
|
|
150
150
|
display?: "block" | "inline" | "flex" | "";
|
|
151
151
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
152
152
|
size?: TUiTextSize;
|
|
@@ -170,7 +170,7 @@ line: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
|
170
170
|
text: string | number | Ref<string, string>;
|
|
171
171
|
wrap: "nowrap" | "balance" | "";
|
|
172
172
|
tag: keyof HTMLElementTagNameMap;
|
|
173
|
-
color: "default" | "hover" | "active" | "secondary";
|
|
173
|
+
color: "default" | "hover" | "active" | "secondary" | "accent";
|
|
174
174
|
display: "block" | "inline" | "flex" | "";
|
|
175
175
|
size: TUiTextSize;
|
|
176
176
|
textAlign: "left" | "center" | "right" | "";
|
|
@@ -533,6 +533,8 @@ declare const TOOLTIP_POSITIONS: readonly ["top", "top-start", "top-end", "botto
|
|
|
533
533
|
|
|
534
534
|
declare type TTooltipPosition = typeof TOOLTIP_POSITIONS[number];
|
|
535
535
|
|
|
536
|
+
export declare type TUiFlexBg = '' | 'default' | 'secondary' | 'accent' | 'surface' | 'muted' | 'quiet';
|
|
537
|
+
|
|
536
538
|
export declare type TUiFlexGap = '' | 'g2' | 'g4' | 'g6' | 'g8' | 'g10' | 'g12' | 'g16' | 'g20' | 'g24' | 'g28' | 'g32' | 'g36' | 'g40' | 'g48' | 'g56' | 'g60' | 'g64' | 'g80' | 'g120';
|
|
537
539
|
|
|
538
540
|
export declare type TUiFlexPadding = '' | 'p2' | 'p4' | 'p6' | 'p8' | 'p10' | 'p12' | 'p14' | 'p16' | 'p18' | 'p20' | 'p24' | 'p28' | 'p32' | 'p36' | 'p40' | 'p42' | 'p64' | 'p80' | 'p120';
|