@base-framework/base 3.7.81 → 3.7.82
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/README.md +21 -0
- package/dist/base.js +1 -1
- package/dist/chunks/chunk-4PON5V2J.js +2 -0
- package/dist/chunks/chunk-DZCEWMDW.js +2 -0
- package/dist/chunks/chunk-EJIWXHRN.js +2 -0
- package/dist/chunks/chunk-EZ5NGKIX.js +2 -0
- package/dist/chunks/chunk-GRNW37TV.js +2 -0
- package/dist/chunks/chunk-M6RVE2QG.js +2 -0
- package/dist/chunks/chunk-MBW4R52W.js +2 -0
- package/dist/chunks/chunk-QBEU5CYI.js +2 -0
- package/dist/chunks/chunk-QPFMAZXH.js +2 -0
- package/dist/chunks/chunk-SN4TNKC2.js +2 -0
- package/dist/chunks/chunk-UEAKRA7Z.js +2 -0
- package/dist/chunks/chunk-UQGSGBNZ.js +2 -0
- package/dist/chunks/chunk-WZCKX2VG.js +2 -0
- package/dist/chunks/chunk-ZUZXAZXR.js +2 -0
- package/dist/modules/ajax.js +2 -0
- package/dist/modules/component.js +2 -0
- package/dist/modules/data.js +2 -0
- package/dist/modules/date.js +2 -0
- package/dist/modules/html.js +2 -0
- package/dist/modules/router.js +2 -0
- package/dist/modules/state.js +2 -0
- package/dist/types/entries/ajax.d.ts +1 -0
- package/dist/types/entries/component.d.ts +8 -0
- package/dist/types/entries/data.d.ts +1 -0
- package/dist/types/entries/date.d.ts +1 -0
- package/dist/types/entries/html.d.ts +1 -0
- package/dist/types/entries/router.d.ts +1 -0
- package/dist/types/entries/state.d.ts +2 -0
- package/package.json +37 -2
- package/dist/base.js.map +0 -7
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { Atom } from "../modules/atom/atom.js";
|
|
2
|
+
export { Component } from "../modules/component/component.js";
|
|
3
|
+
export { Jot } from "../modules/component/jot.js";
|
|
4
|
+
export { Pod } from "../modules/component/pod.js";
|
|
5
|
+
export { Unit } from "../modules/component/unit.js";
|
|
6
|
+
export { Import } from "../modules/import/import.js";
|
|
7
|
+
export { Builder } from "../modules/layout/builder.js";
|
|
8
|
+
export { Directives } from "../modules/layout/directives/directives.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Data, Model, SimpleData } from "../modules/data/data.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DateTime } from "../modules/date/date-time.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Html } from "../modules/html/html.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NavLink, Router, router } from "../modules/router/router.js";
|
package/package.json
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@base-framework/base",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.82",
|
|
4
4
|
"description": "This is a javascript framework.",
|
|
5
5
|
"main": "./dist/base.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"**/default-directives.js",
|
|
9
|
+
"./dist/base.js",
|
|
10
|
+
"./dist/modules/*.js",
|
|
11
|
+
"./dist/chunks/*.js"
|
|
12
|
+
],
|
|
7
13
|
"scripts": {
|
|
8
14
|
"build": "node ./esbuild.js && tsc",
|
|
9
15
|
"prepublishOnly": "node ./esbuild.js"
|
|
@@ -32,7 +38,8 @@
|
|
|
32
38
|
"package.json",
|
|
33
39
|
"readme.md",
|
|
34
40
|
"dist",
|
|
35
|
-
"copilot.md"
|
|
41
|
+
"copilot.md",
|
|
42
|
+
"!dist/**/*.map"
|
|
36
43
|
],
|
|
37
44
|
"exports": {
|
|
38
45
|
"./package.json": "./package.json",
|
|
@@ -40,6 +47,34 @@
|
|
|
40
47
|
"types": "./dist/types/base.d.ts",
|
|
41
48
|
"import": "./dist/base.js",
|
|
42
49
|
"require": "./dist/base.js"
|
|
50
|
+
},
|
|
51
|
+
"./component": {
|
|
52
|
+
"types": "./dist/types/entries/component.d.ts",
|
|
53
|
+
"import": "./dist/modules/component.js"
|
|
54
|
+
},
|
|
55
|
+
"./data": {
|
|
56
|
+
"types": "./dist/types/entries/data.d.ts",
|
|
57
|
+
"import": "./dist/modules/data.js"
|
|
58
|
+
},
|
|
59
|
+
"./router": {
|
|
60
|
+
"types": "./dist/types/entries/router.d.ts",
|
|
61
|
+
"import": "./dist/modules/router.js"
|
|
62
|
+
},
|
|
63
|
+
"./state": {
|
|
64
|
+
"types": "./dist/types/entries/state.d.ts",
|
|
65
|
+
"import": "./dist/modules/state.js"
|
|
66
|
+
},
|
|
67
|
+
"./ajax": {
|
|
68
|
+
"types": "./dist/types/entries/ajax.d.ts",
|
|
69
|
+
"import": "./dist/modules/ajax.js"
|
|
70
|
+
},
|
|
71
|
+
"./html": {
|
|
72
|
+
"types": "./dist/types/entries/html.d.ts",
|
|
73
|
+
"import": "./dist/modules/html.js"
|
|
74
|
+
},
|
|
75
|
+
"./date": {
|
|
76
|
+
"types": "./dist/types/entries/date.d.ts",
|
|
77
|
+
"import": "./dist/modules/date.js"
|
|
43
78
|
}
|
|
44
79
|
},
|
|
45
80
|
"homepage": "https://github.com/chrisdurfee/base#readme"
|