nuclo 0.1.57 → 0.1.59

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,68 +1,68 @@
1
1
  declare global {
2
- // SVG tags
3
- export const a_svg: ExpandedSVGElementBuilder<"a">;
4
- export const animate: ExpandedSVGElementBuilder<"animate">;
5
- export const animateMotion: ExpandedSVGElementBuilder<"animateMotion">;
6
- export const animateTransform: ExpandedSVGElementBuilder<"animateTransform">;
7
- export const circle: ExpandedSVGElementBuilder<"circle">;
8
- export const clipPath: ExpandedSVGElementBuilder<"clipPath">;
9
- export const defs: ExpandedSVGElementBuilder<"defs">;
10
- export const desc: ExpandedSVGElementBuilder<"desc">;
11
- export const ellipse: ExpandedSVGElementBuilder<"ellipse">;
12
- export const feBlend: ExpandedSVGElementBuilder<"feBlend">;
13
- export const feColorMatrix: ExpandedSVGElementBuilder<"feColorMatrix">;
14
- export const feComponentTransfer: ExpandedSVGElementBuilder<"feComponentTransfer">;
15
- export const feComposite: ExpandedSVGElementBuilder<"feComposite">;
16
- export const feConvolveMatrix: ExpandedSVGElementBuilder<"feConvolveMatrix">;
17
- export const feDiffuseLighting: ExpandedSVGElementBuilder<"feDiffuseLighting">;
18
- export const feDisplacementMap: ExpandedSVGElementBuilder<"feDisplacementMap">;
19
- export const feDistantLight: ExpandedSVGElementBuilder<"feDistantLight">;
20
- export const feDropShadow: ExpandedSVGElementBuilder<"feDropShadow">;
21
- export const feFlood: ExpandedSVGElementBuilder<"feFlood">;
22
- export const feFuncA: ExpandedSVGElementBuilder<"feFuncA">;
23
- export const feFuncB: ExpandedSVGElementBuilder<"feFuncB">;
24
- export const feFuncG: ExpandedSVGElementBuilder<"feFuncG">;
25
- export const feFuncR: ExpandedSVGElementBuilder<"feFuncR">;
26
- export const feGaussianBlur: ExpandedSVGElementBuilder<"feGaussianBlur">;
27
- export const feImage: ExpandedSVGElementBuilder<"feImage">;
28
- export const feMerge: ExpandedSVGElementBuilder<"feMerge">;
29
- export const feMergeNode: ExpandedSVGElementBuilder<"feMergeNode">;
30
- export const feMorphology: ExpandedSVGElementBuilder<"feMorphology">;
31
- export const feOffset: ExpandedSVGElementBuilder<"feOffset">;
32
- export const fePointLight: ExpandedSVGElementBuilder<"fePointLight">;
33
- export const feSpecularLighting: ExpandedSVGElementBuilder<"feSpecularLighting">;
34
- export const feSpotLight: ExpandedSVGElementBuilder<"feSpotLight">;
35
- export const feTile: ExpandedSVGElementBuilder<"feTile">;
36
- export const feTurbulence: ExpandedSVGElementBuilder<"feTurbulence">;
37
- export const filter: ExpandedSVGElementBuilder<"filter">;
38
- export const foreignObject: ExpandedSVGElementBuilder<"foreignObject">;
39
- export const g: ExpandedSVGElementBuilder<"g">;
40
- export const image: ExpandedSVGElementBuilder<"image">;
41
- export const line: ExpandedSVGElementBuilder<"line">;
42
- export const linearGradient: ExpandedSVGElementBuilder<"linearGradient">;
43
- export const marker: ExpandedSVGElementBuilder<"marker">;
44
- export const mask: ExpandedSVGElementBuilder<"mask">;
45
- export const metadata: ExpandedSVGElementBuilder<"metadata">;
46
- export const mpath: ExpandedSVGElementBuilder<"mpath">;
47
- export const path: ExpandedSVGElementBuilder<"path">;
48
- export const pattern: ExpandedSVGElementBuilder<"pattern">;
49
- export const polygon: ExpandedSVGElementBuilder<"polygon">;
50
- export const polyline: ExpandedSVGElementBuilder<"polyline">;
51
- export const radialGradient: ExpandedSVGElementBuilder<"radialGradient">;
52
- export const rect: ExpandedSVGElementBuilder<"rect">;
53
- export const script_svg: ExpandedSVGElementBuilder<"script">;
54
- export const set: ExpandedSVGElementBuilder<"set">;
55
- export const stop_: ExpandedSVGElementBuilder<"stop">;
56
- export const style_svg: ExpandedSVGElementBuilder<"style">;
57
- export const svg: ExpandedSVGElementBuilder<"svg">;
58
- export const switch_svg: ExpandedSVGElementBuilder<"switch">;
59
- export const symbol: ExpandedSVGElementBuilder<"symbol">;
60
- export const text_svg: ExpandedSVGElementBuilder<"text">;
61
- export const textPath: ExpandedSVGElementBuilder<"textPath">;
62
- export const title_svg: ExpandedSVGElementBuilder<"title">;
63
- export const tspan: ExpandedSVGElementBuilder<"tspan">;
64
- export const use: ExpandedSVGElementBuilder<"use">;
65
- export const view: ExpandedSVGElementBuilder<"view">;
2
+ // SVG tags - all use Svg suffix
3
+ export const aSvg: ExpandedSVGElementBuilder<"a">;
4
+ export const animateSvg: ExpandedSVGElementBuilder<"animate">;
5
+ export const animateMotionSvg: ExpandedSVGElementBuilder<"animateMotion">;
6
+ export const animateTransformSvg: ExpandedSVGElementBuilder<"animateTransform">;
7
+ export const circleSvg: ExpandedSVGElementBuilder<"circle">;
8
+ export const clipPathSvg: ExpandedSVGElementBuilder<"clipPath">;
9
+ export const defsSvg: ExpandedSVGElementBuilder<"defs">;
10
+ export const descSvg: ExpandedSVGElementBuilder<"desc">;
11
+ export const ellipseSvg: ExpandedSVGElementBuilder<"ellipse">;
12
+ export const feBlendSvg: ExpandedSVGElementBuilder<"feBlend">;
13
+ export const feColorMatrixSvg: ExpandedSVGElementBuilder<"feColorMatrix">;
14
+ export const feComponentTransferSvg: ExpandedSVGElementBuilder<"feComponentTransfer">;
15
+ export const feCompositeSvg: ExpandedSVGElementBuilder<"feComposite">;
16
+ export const feConvolveMatrixSvg: ExpandedSVGElementBuilder<"feConvolveMatrix">;
17
+ export const feDiffuseLightingSvg: ExpandedSVGElementBuilder<"feDiffuseLighting">;
18
+ export const feDisplacementMapSvg: ExpandedSVGElementBuilder<"feDisplacementMap">;
19
+ export const feDistantLightSvg: ExpandedSVGElementBuilder<"feDistantLight">;
20
+ export const feDropShadowSvg: ExpandedSVGElementBuilder<"feDropShadow">;
21
+ export const feFloodSvg: ExpandedSVGElementBuilder<"feFlood">;
22
+ export const feFuncASvg: ExpandedSVGElementBuilder<"feFuncA">;
23
+ export const feFuncBSvg: ExpandedSVGElementBuilder<"feFuncB">;
24
+ export const feFuncGSvg: ExpandedSVGElementBuilder<"feFuncG">;
25
+ export const feFuncRSvg: ExpandedSVGElementBuilder<"feFuncR">;
26
+ export const feGaussianBlurSvg: ExpandedSVGElementBuilder<"feGaussianBlur">;
27
+ export const feImageSvg: ExpandedSVGElementBuilder<"feImage">;
28
+ export const feMergeSvg: ExpandedSVGElementBuilder<"feMerge">;
29
+ export const feMergeNodeSvg: ExpandedSVGElementBuilder<"feMergeNode">;
30
+ export const feMorphologySvg: ExpandedSVGElementBuilder<"feMorphology">;
31
+ export const feOffsetSvg: ExpandedSVGElementBuilder<"feOffset">;
32
+ export const fePointLightSvg: ExpandedSVGElementBuilder<"fePointLight">;
33
+ export const feSpecularLightingSvg: ExpandedSVGElementBuilder<"feSpecularLighting">;
34
+ export const feSpotLightSvg: ExpandedSVGElementBuilder<"feSpotLight">;
35
+ export const feTileSvg: ExpandedSVGElementBuilder<"feTile">;
36
+ export const feTurbulenceSvg: ExpandedSVGElementBuilder<"feTurbulence">;
37
+ export const filterSvg: ExpandedSVGElementBuilder<"filter">;
38
+ export const foreignObjectSvg: ExpandedSVGElementBuilder<"foreignObject">;
39
+ export const gSvg: ExpandedSVGElementBuilder<"g">;
40
+ export const imageSvg: ExpandedSVGElementBuilder<"image">;
41
+ export const lineSvg: ExpandedSVGElementBuilder<"line">;
42
+ export const linearGradientSvg: ExpandedSVGElementBuilder<"linearGradient">;
43
+ export const markerSvg: ExpandedSVGElementBuilder<"marker">;
44
+ export const maskSvg: ExpandedSVGElementBuilder<"mask">;
45
+ export const metadataSvg: ExpandedSVGElementBuilder<"metadata">;
46
+ export const mpathSvg: ExpandedSVGElementBuilder<"mpath">;
47
+ export const pathSvg: ExpandedSVGElementBuilder<"path">;
48
+ export const patternSvg: ExpandedSVGElementBuilder<"pattern">;
49
+ export const polygonSvg: ExpandedSVGElementBuilder<"polygon">;
50
+ export const polylineSvg: ExpandedSVGElementBuilder<"polyline">;
51
+ export const radialGradientSvg: ExpandedSVGElementBuilder<"radialGradient">;
52
+ export const rectSvg: ExpandedSVGElementBuilder<"rect">;
53
+ export const scriptSvg: ExpandedSVGElementBuilder<"script">;
54
+ export const setSvg: ExpandedSVGElementBuilder<"set">;
55
+ export const stopSvg: ExpandedSVGElementBuilder<"stop">;
56
+ export const styleSvg: ExpandedSVGElementBuilder<"style">;
57
+ export const svgSvg: ExpandedSVGElementBuilder<"svg">;
58
+ export const switchSvg: ExpandedSVGElementBuilder<"switch">;
59
+ export const symbolSvg: ExpandedSVGElementBuilder<"symbol">;
60
+ export const textSvg: ExpandedSVGElementBuilder<"text">;
61
+ export const textPathSvg: ExpandedSVGElementBuilder<"textPath">;
62
+ export const titleSvg: ExpandedSVGElementBuilder<"title">;
63
+ export const tspanSvg: ExpandedSVGElementBuilder<"tspan">;
64
+ export const useSvg: ExpandedSVGElementBuilder<"use">;
65
+ export const viewSvg: ExpandedSVGElementBuilder<"view">;
66
66
  }
67
67
 
68
- export {};
68
+ export {};