@dyrected/vue 2.5.52 → 2.5.55
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/components/DyrectedIcon.vue.d.ts +17 -0
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +32721 -83
- package/package.json +5 -3
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/**
|
|
3
|
+
* The value of an `icon` field — a Lucide icon name such as
|
|
4
|
+
* `"ChartNoAxesCombined"` or `"BellRing"`. See https://lucide.dev/icons.
|
|
5
|
+
* Typed as `string` rather than the 1700+ icon-name union to avoid a TS
|
|
6
|
+
* "union too complex" (TS2590) blow-up in the generated declarations.
|
|
7
|
+
*/
|
|
8
|
+
name?: string | null;
|
|
9
|
+
/**
|
|
10
|
+
* Icon name to render when `name` is missing or not a known icon.
|
|
11
|
+
* Renders nothing when omitted and `name` cannot be resolved.
|
|
12
|
+
*/
|
|
13
|
+
fallback?: string;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|