turmag-vue-components 0.0.7 → 0.0.9

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 CHANGED
@@ -129,7 +129,8 @@ 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?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs36";
132
+ size?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs28" | "fs32" | "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;
@@ -147,7 +149,8 @@ wrap: string;
147
149
  color?: "default" | "hover" | "active" | "secondary";
148
150
  display?: "block" | "inline" | "flex" | "";
149
151
  line?: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
150
- size?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs36";
152
+ size?: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs28" | "fs32" | "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,16 +160,18 @@ 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";
169
- size: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs36";
174
+ size: "fs12" | "fs14" | "fs16" | "fs18" | "fs20" | "fs24" | "fs28" | "fs32" | "fs36";
170
175
  text: string | number | Ref<string, string>;
171
176
  textAlign: "left" | "center" | "right" | "";
172
177
  weight: "fw400" | "fw500" | "fw600" | "fw700";