verstak 0.23.110 → 0.23.111
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.
|
@@ -87,7 +87,7 @@ export declare function Ruby<M = unknown, R = void>(builder?: BlockBuilder<HTMLE
|
|
|
87
87
|
export declare function S<M = unknown, R = void>(builder?: BlockBuilder<HTMLElement, M, void, R>, base?: BlockBuilder<HTMLElement, M, void, R>): Block<HTMLElement, M, void, R>;
|
|
88
88
|
export declare function Samp<M = unknown, R = void>(builder?: BlockBuilder<HTMLElement, M, void, R>, base?: BlockBuilder<HTMLElement, M, void, R>): Block<HTMLElement, M, void, R>;
|
|
89
89
|
export declare function Script<M = unknown, R = void>(builder?: BlockBuilder<HTMLScriptElement, M, void, R>, base?: BlockBuilder<HTMLScriptElement, M, void, R>): Block<HTMLScriptElement, M, void, R>;
|
|
90
|
-
export declare function
|
|
90
|
+
export declare function Sctn<M = unknown, R = void>(builder?: BlockBuilder<HTMLElement, M, void, R>, base?: BlockBuilder<HTMLElement, M, void, R>): Block<HTMLElement, M, void, R>;
|
|
91
91
|
export declare function Select<M = unknown, R = void>(builder?: BlockBuilder<HTMLSelectElement, M, void, R>, base?: BlockBuilder<HTMLSelectElement, M, void, R>): Block<HTMLSelectElement, M, void, R>;
|
|
92
92
|
export declare function Small<M = unknown, R = void>(builder?: BlockBuilder<HTMLElement, M, void, R>, base?: BlockBuilder<HTMLElement, M, void, R>): Block<HTMLElement, M, void, R>;
|
|
93
93
|
export declare function Source<M = unknown, R = void>(builder?: BlockBuilder<HTMLSourceElement, M, void, R>, base?: BlockBuilder<HTMLSourceElement, M, void, R>): Block<HTMLSourceElement, M, void, R>;
|
|
@@ -91,7 +91,7 @@ export function Ruby(builder, base) { return Verstak.claim(HtmlTags.ruby, builde
|
|
|
91
91
|
export function S(builder, base) { return Verstak.claim(HtmlTags.s, builder, base); }
|
|
92
92
|
export function Samp(builder, base) { return Verstak.claim(HtmlTags.samp, builder, base); }
|
|
93
93
|
export function Script(builder, base) { return Verstak.claim(HtmlTags.script, builder, base); }
|
|
94
|
-
export function
|
|
94
|
+
export function Sctn(builder, base) { return Verstak.claim(HtmlTags.section, builder, base); }
|
|
95
95
|
export function Select(builder, base) { return Verstak.claim(HtmlTags.select, builder, base); }
|
|
96
96
|
export function Small(builder, base) { return Verstak.claim(HtmlTags.small, builder, base); }
|
|
97
97
|
export function Source(builder, base) { return Verstak.claim(HtmlTags.source, builder, base); }
|