turmag-vue-components 0.0.7 → 0.0.8
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 -0
- package/dist/turmag-vue-components.es.js +325 -321
- package/dist/turmag-vue-components.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ color?: "default" | "hover" | "active" | "secondary";
|
|
|
130
130
|
display?: "block" | "inline" | "flex" | "";
|
|
131
131
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
132
132
|
size?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs36";
|
|
133
|
+
tag?: keyof HTMLElementTagNameMap;
|
|
133
134
|
text?: string | number | Ref<string, string>;
|
|
134
135
|
textAlign?: "left" | "center" | "right" | "";
|
|
135
136
|
weight?: "fw400" | "fw500" | "fw600" | "fw700";
|
|
@@ -139,6 +140,7 @@ color: string;
|
|
|
139
140
|
display: string;
|
|
140
141
|
line: string;
|
|
141
142
|
size: string;
|
|
143
|
+
tag: string;
|
|
142
144
|
text: string;
|
|
143
145
|
textAlign: string;
|
|
144
146
|
weight: string;
|
|
@@ -148,6 +150,7 @@ color?: "default" | "hover" | "active" | "secondary";
|
|
|
148
150
|
display?: "block" | "inline" | "flex" | "";
|
|
149
151
|
line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|
|
150
152
|
size?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs36";
|
|
153
|
+
tag?: keyof HTMLElementTagNameMap;
|
|
151
154
|
text?: string | number | Ref<string, string>;
|
|
152
155
|
textAlign?: "left" | "center" | "right" | "";
|
|
153
156
|
weight?: "fw400" | "fw500" | "fw600" | "fw700";
|
|
@@ -157,12 +160,14 @@ color: string;
|
|
|
157
160
|
display: string;
|
|
158
161
|
line: string;
|
|
159
162
|
size: string;
|
|
163
|
+
tag: string;
|
|
160
164
|
text: string;
|
|
161
165
|
textAlign: string;
|
|
162
166
|
weight: string;
|
|
163
167
|
wrap: string;
|
|
164
168
|
}>>> & Readonly<{}>, {
|
|
165
169
|
wrap: "nowrap" | "balance" | "";
|
|
170
|
+
tag: keyof HTMLElementTagNameMap;
|
|
166
171
|
color: "default" | "hover" | "active" | "secondary";
|
|
167
172
|
display: "block" | "inline" | "flex" | "";
|
|
168
173
|
line: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
|