turmag-vue-components 0.0.14 → 0.0.16

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
@@ -166,13 +166,13 @@ textAlign: string;
166
166
  weight: string;
167
167
  wrap: string;
168
168
  }>>> & Readonly<{}>, {
169
+ line: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
170
+ text: string | number | Ref<string, string>;
169
171
  wrap: "nowrap" | "balance" | "";
170
172
  tag: keyof HTMLElementTagNameMap;
171
173
  color: "default" | "hover" | "active" | "secondary";
172
174
  display: "block" | "inline" | "flex" | "";
173
- line: "lh100" | "lh110" | "lh120" | "lh130" | "lh140" | "lh150";
174
175
  size: TUiTextSize;
175
- text: string | number | Ref<string, string>;
176
176
  textAlign: "left" | "center" | "right" | "";
177
177
  weight: "fw400" | "fw500" | "fw600" | "fw700";
178
178
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -206,6 +206,14 @@ inline: {
206
206
  type: PropType<boolean>;
207
207
  default: boolean;
208
208
  };
209
+ disabled: {
210
+ type: PropType<boolean>;
211
+ default: boolean;
212
+ };
213
+ duration: {
214
+ type: PropType<number[]>;
215
+ default: () => number[];
216
+ };
209
217
  action: {
210
218
  type: PropType<"click" | "mouseenter" | "manual">;
211
219
  default: string;
@@ -222,14 +230,6 @@ delay: {
222
230
  type: PropType<number[]>;
223
231
  default: () => number[];
224
232
  };
225
- disabled: {
226
- type: PropType<boolean>;
227
- default: boolean;
228
- };
229
- duration: {
230
- type: PropType<number[]>;
231
- default: () => number[];
232
- };
233
233
  flip: {
234
234
  type: PropType<boolean>;
235
235
  default: boolean;
@@ -272,6 +272,14 @@ inline: {
272
272
  type: PropType<boolean>;
273
273
  default: boolean;
274
274
  };
275
+ disabled: {
276
+ type: PropType<boolean>;
277
+ default: boolean;
278
+ };
279
+ duration: {
280
+ type: PropType<number[]>;
281
+ default: () => number[];
282
+ };
275
283
  action: {
276
284
  type: PropType<"click" | "mouseenter" | "manual">;
277
285
  default: string;
@@ -288,14 +296,6 @@ delay: {
288
296
  type: PropType<number[]>;
289
297
  default: () => number[];
290
298
  };
291
- disabled: {
292
- type: PropType<boolean>;
293
- default: boolean;
294
- };
295
- duration: {
296
- type: PropType<number[]>;
297
- default: () => number[];
298
- };
299
299
  flip: {
300
300
  type: PropType<boolean>;
301
301
  default: boolean;
@@ -334,12 +334,12 @@ onChange?: ((value: boolean) => any) | undefined;
334
334
  onHide?: (() => any) | undefined;
335
335
  }>, {
336
336
  inline: boolean;
337
+ disabled: boolean;
338
+ duration: number[];
337
339
  action: "mouseenter" | "click" | "manual";
338
340
  appendTo: HTMLElement | Element | string;
339
341
  arrow: boolean;
340
342
  delay: number[];
341
- disabled: boolean;
342
- duration: number[];
343
343
  flip: boolean;
344
344
  hideOnClick: boolean;
345
345
  interactive: boolean;
@@ -481,6 +481,14 @@ export declare const UiFlex: __VLS_WithTemplateSlots<typeof __VLS_component, Ret
481
481
 
482
482
  export declare const UiText: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, ReturnType<typeof __VLS_template_2>>;
483
483
 
484
+ export declare const UiThemeToggler: DefineComponent<ExtractPropTypes< {
485
+ modelValue: PropType<boolean>;
486
+ isSavedDarkMode: PropType<boolean>;
487
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
488
+ modelValue: PropType<boolean>;
489
+ isSavedDarkMode: PropType<boolean>;
490
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
491
+
484
492
  export declare const UiTooltipContent: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, ReturnType<typeof __VLS_template_3>>;
485
493
 
486
494
  export declare const UiTooltipWrapper: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, ReturnType<typeof __VLS_template_4>>;
@@ -489,3 +497,15 @@ declare const VuComponentsPlugin: Plugin_2;
489
497
  export default VuComponentsPlugin;
490
498
 
491
499
  export { }
500
+
501
+
502
+ declare module '@vue/runtime-core' {
503
+ interface IGlobalComponents {
504
+ UiFlex: typeof UiFlex;
505
+ UiText: typeof UiText;
506
+ UiThemeToggler: typeof UiThemeToggler;
507
+ UiTooltipContent: typeof UiTooltipContent;
508
+ UiTooltipWrapper: typeof UiTooltipWrapper;
509
+ }
510
+ }
511
+