taraskevizer 10.2.7 → 10.2.8
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/bin.js +1 -1
- package/dist/html-tag-interactions.d.ts +1 -1
- package/dist/html-tag-interactions.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7,7 +7,7 @@ process.argv.splice(0, 2);
|
|
|
7
7
|
const firstArg = process.argv[0];
|
|
8
8
|
if (firstArg) {
|
|
9
9
|
if (firstArg === '-v' || firstArg === '--version') {
|
|
10
|
-
printWithPrefix("10.2.
|
|
10
|
+
printWithPrefix("10.2.8");
|
|
11
11
|
process.exit(0);
|
|
12
12
|
}
|
|
13
13
|
if (firstArg === '-h' || firstArg === '--help') {
|
|
@@ -3,7 +3,7 @@ type ChangeableElement = HTMLElement & {
|
|
|
3
3
|
seqNum: number;
|
|
4
4
|
};
|
|
5
5
|
type NodeList<T extends Node> = T[] | NodeListOf<T>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const createInteractiveTags: ({ variable, letterH, }: Omit<Record<keyof Wrappers, string>, "fix">) => {
|
|
7
7
|
update: (root: Element) => void;
|
|
8
8
|
tryAlternate: (el: Element | ChangeableElement) => void;
|
|
9
9
|
};
|
|
@@ -2,7 +2,7 @@ import { gobj } from './dict/index.js';
|
|
|
2
2
|
const applyG = (el) => {
|
|
3
3
|
el.textContent = gobj[el.textContent];
|
|
4
4
|
};
|
|
5
|
-
export const
|
|
5
|
+
export const createInteractiveTags = ({ variable, letterH, }) => {
|
|
6
6
|
const changeList = [];
|
|
7
7
|
return {
|
|
8
8
|
update: (root) => {
|
package/dist/index.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export * as pipelines from './pipelines';
|
|
|
5
5
|
export * as lib from './lib';
|
|
6
6
|
export * as wrappers from './wrappers';
|
|
7
7
|
export * as interactiveTags from './html-tag-interactions';
|
|
8
|
-
export {
|
|
8
|
+
export { createInteractiveTags } from './html-tag-interactions';
|
package/dist/index.js
CHANGED
|
@@ -5,4 +5,4 @@ export * as pipelines from './pipelines.js';
|
|
|
5
5
|
export * as lib from './lib/index.js';
|
|
6
6
|
export * as wrappers from './wrappers.js';
|
|
7
7
|
export * as interactiveTags from './html-tag-interactions.js';
|
|
8
|
-
export {
|
|
8
|
+
export { createInteractiveTags } from './html-tag-interactions.js';
|