@sabrenski/spire-ui-vue 0.3.37 → 0.3.38

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.
@@ -1,11 +1,21 @@
1
1
  import { IconAdapter, IconData } from '../types';
2
+ /**
3
+ * Hugeicons native icon format - array of [elementType, attributes] tuples
4
+ * Example: [["path", { d: "M4 5L20 5", stroke: "currentColor", ... }], ...]
5
+ */
6
+ type HugeiconsNativeIcon = Array<[string, Record<string, unknown>]>;
2
7
  /**
3
8
  * Check if a value is an IconData object
4
9
  */
5
10
  export declare function isIconData(value: unknown): value is IconData;
11
+ /**
12
+ * Check if value is a Hugeicons native icon (array of element tuples)
13
+ * Hugeicons format: [[elementType, attributes], [elementType, attributes], ...]
14
+ */
15
+ export declare function isHugeiconsNativeIcon(value: unknown): value is HugeiconsNativeIcon;
6
16
  /**
7
17
  * Default SVG renderer adapter
8
- * Renders IconData as inline SVG and passes through Vue components
18
+ * Renders IconData as inline SVG, Hugeicons arrays as SVG, and passes through Vue components
9
19
  */
10
20
  export declare const svgRenderer: IconAdapter;
11
21
  export default svgRenderer;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("./index-CXZ-sMdZ.cjs"),e={install:o=>{o.component("HugeiconsIcon",n.HugeiconsIcon)}};exports.HugeiconsIcon=n.HugeiconsIcon;exports.HugeiconsPlugin=e;exports.default=e;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("./index-CyoopUz8.cjs"),e={install:o=>{o.component("HugeiconsIcon",n.HugeiconsIcon)}};exports.HugeiconsIcon=n.HugeiconsIcon;exports.HugeiconsPlugin=e;exports.default=e;
@@ -1,4 +1,4 @@
1
- import { H as n } from "./index-BcU2tbho.js";
1
+ import { H as n } from "./index-XJUUYXw8.js";
2
2
  const s = {
3
3
  install: (o) => {
4
4
  o.component("HugeiconsIcon", n);