mam 1.11.794 → 1.11.796
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/bin/mam +2 -0
- package/node.d.ts +23 -5
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.esm.js +6614 -0
- package/node.esm.js.map +1 -0
- package/node.js +38 -14
- package/node.js.map +1 -1
- package/node.locale=en.json +1 -0
- package/node.mjs +38 -14
- package/node.mjs.map +1 -0
- package/node.test.js +321 -297
- package/node.test.js.map +1 -1
- package/node.view.tree +35 -0
- package/package.json +5 -2
- package/web.d.ts +15 -1
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +32 -0
- package/web.esm.js.map +1 -0
- package/web.js +3 -0
- package/web.js.map +1 -1
- package/web.mjs +3 -0
- package/web.mjs.map +1 -0
- package/.nojekyll +0 -0
- /package/{README.md → readme.md} +0 -0
package/node.view.tree
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
$mol_view_tree_test_attributes_super $mol_view
|
|
2
|
+
some *
|
|
3
|
+
a 0
|
|
4
|
+
b 2
|
|
5
|
+
|
|
6
|
+
$mol_view_tree_test_attributes $mol_view_tree_test_attributes_super
|
|
7
|
+
some *
|
|
8
|
+
^
|
|
9
|
+
a 1
|
|
10
|
+
|
|
11
|
+
$mol_view_tree_test_binding $mol_view
|
|
12
|
+
value?val <=> task_title_new?val \123
|
|
13
|
+
enabled <= head_complete_enabled false
|
|
14
|
+
|
|
15
|
+
$mol_view_tree_test_binding_right $mol_view
|
|
16
|
+
Test $mol_view_tree_test_binding_right_test
|
|
17
|
+
width?v => outer_width?v
|
|
18
|
+
|
|
19
|
+
$mol_view_tree_test_binding_right_test $mol_view
|
|
20
|
+
width?val 0
|
|
21
|
+
|
|
22
|
+
$mol_view_tree_test_simple $mol_view
|
|
23
|
+
some 1
|
|
24
|
+
bool true
|
|
25
|
+
str \test
|
|
26
|
+
arr /
|
|
27
|
+
arr_string /string
|
|
28
|
+
|
|
29
|
+
$mol_view_tree_test_attributes_subcomponent $mol_view
|
|
30
|
+
- Comment
|
|
31
|
+
Page!index $mol_view_tree_test_attributes_subcomponent_page
|
|
32
|
+
Sub <= page!index null
|
|
33
|
+
|
|
34
|
+
$mol_view_tree_test_attributes_subcomponent_page $mol_view
|
|
35
|
+
Sub null
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mam",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.796",
|
|
4
4
|
"exports": {
|
|
5
5
|
"node": {
|
|
6
6
|
"import": "./node.mjs",
|
|
@@ -74,13 +74,14 @@
|
|
|
74
74
|
"$mol_file_base",
|
|
75
75
|
"$mol_file",
|
|
76
76
|
"$node",
|
|
77
|
+
"$node_internal_check",
|
|
78
|
+
"$node_internal",
|
|
77
79
|
"$mol_exec",
|
|
78
80
|
"$mol_run",
|
|
79
81
|
"$mol_error_mix",
|
|
80
82
|
"$mol_env",
|
|
81
83
|
"$mol_wire_sync",
|
|
82
84
|
"$mol_action",
|
|
83
|
-
"$node_modules",
|
|
84
85
|
"$mol_const",
|
|
85
86
|
"$mol_wire_probe",
|
|
86
87
|
"$mol_lock",
|
|
@@ -119,6 +120,7 @@
|
|
|
119
120
|
"$mol_dom",
|
|
120
121
|
"$mol_storage",
|
|
121
122
|
"$mol_mem_persist",
|
|
123
|
+
"$mol_guard_defined",
|
|
122
124
|
"$mol_guard",
|
|
123
125
|
"$mol_view_tree2_to_js_test",
|
|
124
126
|
"$mol_view_tree2_to_dts",
|
|
@@ -159,6 +161,7 @@
|
|
|
159
161
|
"@types/jsdom": "*",
|
|
160
162
|
"@types/ws": "*",
|
|
161
163
|
"jsdom": "27.0.0",
|
|
164
|
+
"internal": "*",
|
|
162
165
|
"sourcemap-codec": "*",
|
|
163
166
|
"typescript": "*",
|
|
164
167
|
"express": "*",
|
package/web.d.ts
CHANGED
|
@@ -6,7 +6,21 @@ declare class $ extends _$_ {
|
|
|
6
6
|
declare namespace $ {
|
|
7
7
|
export type $ = typeof $$;
|
|
8
8
|
export class $$ extends $ {
|
|
9
|
-
|
|
9
|
+
}
|
|
10
|
+
namespace $$ {
|
|
11
|
+
type $$ = $;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare let _$_: {
|
|
17
|
+
new (): {};
|
|
18
|
+
} & typeof globalThis;
|
|
19
|
+
declare class $ extends _$_ {
|
|
20
|
+
}
|
|
21
|
+
declare namespace $ {
|
|
22
|
+
export type $ = typeof $$;
|
|
23
|
+
export class $$ extends $ {
|
|
10
24
|
}
|
|
11
25
|
namespace $$ {
|
|
12
26
|
type $$ = $;
|
package/web.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../mam.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":[null]}
|
|
1
|
+
{"version":3,"sources":["../../../mam.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":[null]}
|
package/web.deps.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":["mam.ts","LICENSE","README.md","mam.jam.js","tsfmt.json","package.json","tsconfig.json","lang.lang.tree","meta.lang.tree","sandbox.config.json","mol/CNAME","mol/LICENSE","mol/readme.md","mol/mol.meta.tree","mol/CONTRIBUTING.md","mol/CODE_OF_CONDUCT.md","mol/build/bin","mol/build/package.json","mol/build/build.meta.tree"],"mods":{},"deps_in":{"mol":{"mol/build":-999},"":{"mol":-999}},"deps_out":{"mol/build":{"mol":-999},"mol":{"":-999}},"sloc":{"ts":
|
|
1
|
+
{"files":["mam.ts","LICENSE","mam.d.ts","README.md","yarn.lock","mam.jam.js","tsfmt.json","package.json","tsconfig.json","harp.lang.tree","lang.lang.tree","meta.lang.tree","mewgram.harp.tree","package.lang.tree","sandbox.config.json","mol/CNAME","mol/LICENSE","mol/readme.md","mol/mol.meta.tree","mol/CONTRIBUTING.md","mol/CODE_OF_CONDUCT.md","mol/build/bin","mol/build/package.json","mol/build/build.meta.tree"],"mods":{},"deps_in":{"mol":{"mol/build":-999},"":{"mol":-999}},"deps_out":{"mol/build":{"mol":-999},"mol":{"":-999}},"sloc":{"ts":27,"LICENSE":113,"md":465,"lock":1236,"js":9,"json":102,"tree":118,"CNAME":1,"bin":2},"deps":{"mol/build":{"..":-999},"mol":{"..":-999},"":{}}}
|
package/web.esm.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
function require( path ){ return $node[ path ] };
|
|
3
|
+
"use strict"
|
|
4
|
+
|
|
5
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
6
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
7
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
8
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if ((d = decorators[i])) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
9
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
var $ = ( typeof module === 'object' ) ? ( module['export'+'s'] = globalThis ) : globalThis
|
|
13
|
+
$.$$ = $
|
|
14
|
+
|
|
15
|
+
;
|
|
16
|
+
|
|
17
|
+
var $node = $node || {}
|
|
18
|
+
void function( module ) { var exports = module.exports = this; function require( id ) { return $node[ id.replace( /^.\// , "../" ) ] };
|
|
19
|
+
;
|
|
20
|
+
"use strict";
|
|
21
|
+
Error.stackTraceLimit = 50;
|
|
22
|
+
var $;
|
|
23
|
+
(function ($) {
|
|
24
|
+
})($ || ($ = {}));
|
|
25
|
+
module.exports = $;
|
|
26
|
+
//mam.ts
|
|
27
|
+
;
|
|
28
|
+
|
|
29
|
+
$node[ "../mam.ts" ] = $node[ "../mam.ts" ] = module.exports }.call( {} , {} )
|
|
30
|
+
;
|
|
31
|
+
export default $
|
|
32
|
+
//# sourceMappingURL=web.esm.js.map
|
package/web.esm.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../mam.jam.js","-","../../../mam.ts"],"names":[],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACZA;AACA;AACA;AACA;;ACHA,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;AAK3B,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;AAMX,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED,MAAM,CAAC,OAAO,GAAG,CAAC,CAAA;;;ADblB;AACA;AACA;AAFA","file":"web.esm.js","sourcesContent":[null,null,"Error.stackTraceLimit = 50;\n\ndeclare let _$_: { new(): {} } & typeof globalThis\ndeclare class $ extends _$_ {}\n\nnamespace $ {\n\texport type $ = typeof $$\n\texport declare class $$ extends $ {}\n\tnamespace $$ {\n\t\texport type $$ = $\n\t}\n}\n\nmodule.exports = $\n"]}
|
package/web.js
CHANGED
package/web.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["-","../../../mam.ts"],"names":[],"mappings":";;;AAAA;AACA;AACA;AACA;;ACHA,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;AAK3B,IAAU,CAAC,CAQV;AARD,WAAU,CAAC;AAQX,CAAC,EARS,CAAC,KAAD,CAAC,QAQV;AAED,MAAM,CAAC,OAAO,GAAG,CAAC,CAAA;;;ADflB;AACA;AACA
|
|
1
|
+
{"version":3,"sources":["-","../../../mam.ts"],"names":[],"mappings":";;;AAAA;AACA;AACA;AACA;;ACHA,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;AAK3B,IAAU,CAAC,CAQV;AARD,WAAU,CAAC;AAQX,CAAC,EARS,CAAC,KAAD,CAAC,QAQV;AAED,MAAM,CAAC,OAAO,GAAG,CAAC,CAAA;;;ADflB;AACA;AACA;;;;;;;;;;;;;;;;","sourcesContent":[null,"Error.stackTraceLimit = 50;\n\ndeclare let _$_: { new(): {} } & typeof globalThis\ndeclare class $ extends _$_ {}\n\nnamespace $ {\n\texport type $ = typeof $$\n\texport declare class $$ extends $ {\n\t\tstatic $: $\n\t}\n\tnamespace $$ {\n\t\texport type $$ = $\n\t}\n}\n\nmodule.exports = $\n"]}
|
package/web.mjs
CHANGED
package/web.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["-","../../../mam.ts","../../../mam.jam.js"],"names":[],"mappings":";;AAAA;AACA;AACA;AACA;;ACHA,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;AAK3B,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;AAMX,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED,MAAM,CAAC,OAAO,GAAG,CAAC,CAAA;;;ADblB;AACA;AACA;AEFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AFZA","file":"web.mjs","sourcesContent":[null,"Error.stackTraceLimit = 50;\n\ndeclare let _$_: { new(): {} } & typeof globalThis\ndeclare class $ extends _$_ {}\n\nnamespace $ {\n\texport type $ = typeof $$\n\texport declare class $$ extends $ {}\n\tnamespace $$ {\n\t\texport type $$ = $\n\t}\n}\n\nmodule.exports = $\n",null]}
|
package/.nojekyll
DELETED
|
File without changes
|
/package/{README.md → readme.md}
RENAMED
|
File without changes
|