tiny-essentials 1.21.9 → 1.22.0
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/.vscode/extensions.json +30 -0
- package/.vscode/settings.json +53 -0
- package/LICENSE +160 -669
- package/dist/v1/TinyBasicsEs.min.js +1 -1
- package/dist/v1/TinyDragger.min.js +1 -1
- package/dist/v1/TinyElementObserver.min.js +1 -0
- package/dist/v1/TinyEssentials.min.js +1 -1
- package/dist/v1/TinyHtml.min.js +1 -1
- package/dist/v1/TinySmartScroller.min.js +1 -1
- package/dist/v1/TinyUploadClicker.min.js +1 -1
- package/dist/v1/basics/array.cjs +12 -0
- package/dist/v1/basics/array.d.mts +9 -0
- package/dist/v1/basics/array.mjs +10 -0
- package/dist/v1/basics/index.cjs +2 -0
- package/dist/v1/basics/index.d.mts +3 -1
- package/dist/v1/basics/index.mjs +3 -3
- package/dist/v1/basics/text.cjs +44 -9
- package/dist/v1/basics/text.d.mts +14 -2
- package/dist/v1/basics/text.mjs +38 -9
- package/dist/v1/build/TinyElementObserver.cjs +7 -0
- package/dist/v1/build/TinyElementObserver.d.mts +3 -0
- package/dist/v1/build/TinyElementObserver.mjs +2 -0
- package/dist/v1/index.cjs +4 -0
- package/dist/v1/index.d.mts +4 -1
- package/dist/v1/index.mjs +4 -3
- package/dist/v1/libs/TinyElementObserver.cjs +292 -0
- package/dist/v1/libs/TinyElementObserver.d.mts +154 -0
- package/dist/v1/libs/TinyElementObserver.mjs +266 -0
- package/dist/v1/libs/TinyGamepad.d.mts +1 -1
- package/dist/v1/libs/TinyHtml.cjs +1489 -173
- package/dist/v1/libs/TinyHtml.d.mts +543 -42
- package/dist/v1/libs/TinyHtml.mjs +1200 -61
- package/dist/v1/libs/TinyInventory.d.mts +1 -1
- package/dist/v1/libs/UltraRandomMsgGen.d.mts +7 -7
- package/docs/v1/README.md +9 -0
- package/docs/v1/Regex-Helpers.md +72 -0
- package/docs/v1/basics/array.md +20 -0
- package/docs/v1/basics/text.md +38 -7
- package/docs/v1/libs/TinyElementObserver.md +107 -0
- package/docs/v1/libs/TinyHtml.md +803 -8
- package/package.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"aaron-bond.better-comments",
|
|
4
|
+
"naumovs.color-highlight",
|
|
5
|
+
"formulahendry.code-runner",
|
|
6
|
+
"hookyqr.jsdoctagcomplete",
|
|
7
|
+
"dbaeumer.vscode-eslint",
|
|
8
|
+
"ecmel.vscode-html-css",
|
|
9
|
+
"xabikos.javascriptsnippets",
|
|
10
|
+
"lllllllqw.jsdoc",
|
|
11
|
+
"crystal-spider.jsdoc-generator",
|
|
12
|
+
"mrmlnc.vscode-json5",
|
|
13
|
+
"bierner.markdown-preview-github-styles",
|
|
14
|
+
"leizongmin.node-module-intellisense",
|
|
15
|
+
"christian-kohler.npm-intellisense",
|
|
16
|
+
"ibm.output-colorizer",
|
|
17
|
+
"esbenp.prettier-vscode",
|
|
18
|
+
"jccr.sandbox",
|
|
19
|
+
"sasa.vscode-sass-format",
|
|
20
|
+
"jasonnutter.search-node-modules",
|
|
21
|
+
"cymonk.sql-formatter",
|
|
22
|
+
"qwtel.sqlite-viewer",
|
|
23
|
+
"yy0931.vscode-sqlite3-editor",
|
|
24
|
+
"simonsiefke.svg-preview",
|
|
25
|
+
"gruntfuggly.todo-tree",
|
|
26
|
+
"vue.volar",
|
|
27
|
+
"fabianlauer.vs-code-xml-format",
|
|
28
|
+
"dotjoshjohnson.xml"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"todo-tree.general.tags": [
|
|
3
|
+
"TITLE",
|
|
4
|
+
"TODO",
|
|
5
|
+
"FIXME",
|
|
6
|
+
"SECTION",
|
|
7
|
+
"CATEGORY",
|
|
8
|
+
"MODULE",
|
|
9
|
+
"NOTE"
|
|
10
|
+
],
|
|
11
|
+
"todo-tree.highlights.customHighlight": {
|
|
12
|
+
"TODO": {
|
|
13
|
+
"icon": "check",
|
|
14
|
+
"type": "line",
|
|
15
|
+
"foreground": "#FFFF00"
|
|
16
|
+
},
|
|
17
|
+
"FIXME": {
|
|
18
|
+
"icon": "alert",
|
|
19
|
+
"type": "line",
|
|
20
|
+
"foreground": "#FF0000"
|
|
21
|
+
},
|
|
22
|
+
"TITLE": {
|
|
23
|
+
"icon": "note",
|
|
24
|
+
"type": "tag",
|
|
25
|
+
"foreground": "#b8f119"
|
|
26
|
+
},
|
|
27
|
+
"SECTION": {
|
|
28
|
+
"icon": "file-directory",
|
|
29
|
+
"type": "tag",
|
|
30
|
+
"foreground": "#00FFFF"
|
|
31
|
+
},
|
|
32
|
+
"CATEGORY": {
|
|
33
|
+
"icon": "file-symlink-directory",
|
|
34
|
+
"type": "tag",
|
|
35
|
+
"foreground": "#FFA500"
|
|
36
|
+
},
|
|
37
|
+
"MODULE": {
|
|
38
|
+
"icon": "package",
|
|
39
|
+
"type": "tag",
|
|
40
|
+
"foreground": "#EE82EE"
|
|
41
|
+
},
|
|
42
|
+
"NOTE": {
|
|
43
|
+
"icon": "note",
|
|
44
|
+
"type": "line",
|
|
45
|
+
"foreground": "#90EE90"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"todo-tree.filtering.excludeGlobs": [
|
|
49
|
+
"**/node_modules/**",
|
|
50
|
+
"**/dist/**",
|
|
51
|
+
"**/.git/**"
|
|
52
|
+
]
|
|
53
|
+
}
|