@genesislcap/web-core 14.157.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/README.md +67 -0
- package/dist/cjs/FAST/fast-colors.js +7 -0
- package/dist/cjs/FAST/fast-components.js +4 -0
- package/dist/cjs/FAST/fast-element.js +30 -0
- package/dist/cjs/FAST/fast-foundation.js +64 -0
- package/dist/cjs/FAST/fast-router.js +11 -0
- package/dist/cjs/FAST/fast-web-utilities.js +11 -0
- package/dist/cjs/FAST/index.js +9 -0
- package/dist/cjs/directives/index.js +5 -0
- package/dist/cjs/directives/sync.js +101 -0
- package/dist/cjs/directives/when-else.js +18 -0
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/patterns/define.js +41 -0
- package/dist/cjs/patterns/index.js +5 -0
- package/dist/cjs/patterns/tag-for.js +24 -0
- package/dist/dts/FAST/fast-colors.d.ts +2 -0
- package/dist/dts/FAST/fast-colors.d.ts.map +1 -0
- package/dist/dts/FAST/fast-components.d.ts +2 -0
- package/dist/dts/FAST/fast-components.d.ts.map +1 -0
- package/dist/dts/FAST/fast-element.d.ts +2 -0
- package/dist/dts/FAST/fast-element.d.ts.map +1 -0
- package/dist/dts/FAST/fast-foundation.d.ts +2 -0
- package/dist/dts/FAST/fast-foundation.d.ts.map +1 -0
- package/dist/dts/FAST/fast-router.d.ts +2 -0
- package/dist/dts/FAST/fast-router.d.ts.map +1 -0
- package/dist/dts/FAST/fast-web-utilities.d.ts +2 -0
- package/dist/dts/FAST/fast-web-utilities.d.ts.map +1 -0
- package/dist/dts/FAST/index.d.ts +7 -0
- package/dist/dts/FAST/index.d.ts.map +1 -0
- package/dist/dts/directives/index.d.ts +3 -0
- package/dist/dts/directives/index.d.ts.map +1 -0
- package/dist/dts/directives/sync.d.ts +22 -0
- package/dist/dts/directives/sync.d.ts.map +1 -0
- package/dist/dts/directives/when-else.d.ts +13 -0
- package/dist/dts/directives/when-else.d.ts.map +1 -0
- package/dist/dts/index.d.ts +4 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/patterns/define.d.ts +39 -0
- package/dist/dts/patterns/define.d.ts.map +1 -0
- package/dist/dts/patterns/index.d.ts +3 -0
- package/dist/dts/patterns/index.d.ts.map +1 -0
- package/dist/dts/patterns/tag-for.d.ts +21 -0
- package/dist/dts/patterns/tag-for.d.ts.map +1 -0
- package/dist/dts/tsdoc-metadata.json +11 -0
- package/dist/esm/FAST/fast-colors.js +1 -0
- package/dist/esm/FAST/fast-components.js +1 -0
- package/dist/esm/FAST/fast-element.js +1 -0
- package/dist/esm/FAST/fast-foundation.js +1 -0
- package/dist/esm/FAST/fast-router.js +1 -0
- package/dist/esm/FAST/fast-web-utilities.js +1 -0
- package/dist/esm/FAST/index.js +6 -0
- package/dist/esm/directives/index.js +2 -0
- package/dist/esm/directives/sync.js +97 -0
- package/dist/esm/directives/when-else.js +14 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/patterns/define.js +37 -0
- package/dist/esm/patterns/index.js +2 -0
- package/dist/esm/patterns/tag-for.js +20 -0
- package/dist/web-core.api.json +863 -0
- package/dist/web-core.d.ts +526 -0
- package/docs/.gitattributes +2 -0
- package/docs/api/index.md +12 -0
- package/docs/api/web-core.conversiontype.md +13 -0
- package/docs/api/web-core.defaulteventmap.md +13 -0
- package/docs/api/web-core.definefactory.md +41 -0
- package/docs/api/web-core.definefunction.md +15 -0
- package/docs/api/web-core.definitionoverrider.md +15 -0
- package/docs/api/web-core.eventname.md +13 -0
- package/docs/api/web-core.md +32 -0
- package/docs/api/web-core.sync.md +27 -0
- package/docs/api/web-core.tagfor.md +29 -0
- package/docs/api/web-core.templateelementdependency.md +16 -0
- package/docs/api/web-core.templateelements.md +20 -0
- package/docs/api/web-core.whenelse.md +26 -0
- package/docs/api-report.md +473 -0
- package/license.txt +46 -0
- package/package.json +39 -0
- package/tsconfig.cjs.json +10 -0
- package/tsdoc.json +20 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@genesislcap/web-core",
|
|
3
|
+
"description": "Genesis Foundation Web Core",
|
|
4
|
+
"version": "14.157.0",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"license": "SEE LICENSE IN license.txt",
|
|
7
|
+
"main": "dist/esm/index.js",
|
|
8
|
+
"types": "dist/dts/index.d.ts",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"api:extract": "api-extractor run",
|
|
11
|
+
"api:document": "api-documenter markdown -i dist -o docs/api",
|
|
12
|
+
"build": "npm run clean && tsc -b ./tsconfig.json && tsc -b ./tsconfig.cjs.json && npm run api:extract && npm run api:document",
|
|
13
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
14
|
+
"dev": "tsc -b ./tsconfig.json -w"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@microsoft/api-documenter": "^7.19.13",
|
|
18
|
+
"@microsoft/api-extractor": "7.34.9",
|
|
19
|
+
"rimraf": "^5.0.0"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@microsoft/fast-colors": "^5.3.1",
|
|
23
|
+
"@microsoft/fast-components": "^2.30.6",
|
|
24
|
+
"@microsoft/fast-element": "^1.12.0",
|
|
25
|
+
"@microsoft/fast-foundation": "^2.49.4",
|
|
26
|
+
"@microsoft/fast-router": "^0.4.8",
|
|
27
|
+
"@microsoft/fast-web-utilities": "^5.4.1",
|
|
28
|
+
"tslib": "^2.3.1"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/genesislcap/foundation-ui.git",
|
|
33
|
+
"directory": "packages/foundation/web-core"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"gitHead": "2b6d927af089f81821c0246501c07d5e1d856caa"
|
|
39
|
+
}
|
package/tsdoc.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
|
3
|
+
"extends": ["../../../tsdoc.json"],
|
|
4
|
+
"tagDefinitions": [
|
|
5
|
+
{
|
|
6
|
+
"tagName": "@csspart",
|
|
7
|
+
"syntaxKind": "block",
|
|
8
|
+
"allowMultiple": true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"tagName": "@slot",
|
|
12
|
+
"syntaxKind": "block",
|
|
13
|
+
"allowMultiple": true
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"supportForTags": {
|
|
17
|
+
"@csspart": true,
|
|
18
|
+
"@slot": true
|
|
19
|
+
}
|
|
20
|
+
}
|