@genesislcap/foundation-header 14.160.0 → 14.161.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 +19 -0
- package/dist/custom-elements.json +21 -21
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -244,6 +244,25 @@ To set the content of the flyout menu, add the content in the html within an ele
|
|
|
244
244
|
</foundation-header>
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
+
## Installation
|
|
248
|
+
|
|
249
|
+
To enable this module in your application, follow the steps below.
|
|
250
|
+
|
|
251
|
+
1. Add `@genesislcap/foundation-header` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
252
|
+
|
|
253
|
+
```json
|
|
254
|
+
{
|
|
255
|
+
...
|
|
256
|
+
"dependencies": {
|
|
257
|
+
...
|
|
258
|
+
"@genesislcap/foundation-header": "latest"
|
|
259
|
+
...
|
|
260
|
+
},
|
|
261
|
+
...
|
|
262
|
+
}
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
## [API Docs](./docs/api/index.md)
|
|
247
266
|
|
|
248
267
|
## License
|
|
249
268
|
|
|
@@ -31,27 +31,6 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
{
|
|
35
|
-
"kind": "javascript-module",
|
|
36
|
-
"path": "src/config/index.ts",
|
|
37
|
-
"declarations": [],
|
|
38
|
-
"exports": [
|
|
39
|
-
{
|
|
40
|
-
"kind": "js",
|
|
41
|
-
"name": "*",
|
|
42
|
-
"declaration": {
|
|
43
|
-
"name": "*",
|
|
44
|
-
"package": "./targetId"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
]
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"kind": "javascript-module",
|
|
51
|
-
"path": "src/config/targetId.ts",
|
|
52
|
-
"declarations": [],
|
|
53
|
-
"exports": []
|
|
54
|
-
},
|
|
55
34
|
{
|
|
56
35
|
"kind": "javascript-module",
|
|
57
36
|
"path": "src/components/components.ts",
|
|
@@ -100,6 +79,27 @@
|
|
|
100
79
|
}
|
|
101
80
|
]
|
|
102
81
|
},
|
|
82
|
+
{
|
|
83
|
+
"kind": "javascript-module",
|
|
84
|
+
"path": "src/config/index.ts",
|
|
85
|
+
"declarations": [],
|
|
86
|
+
"exports": [
|
|
87
|
+
{
|
|
88
|
+
"kind": "js",
|
|
89
|
+
"name": "*",
|
|
90
|
+
"declaration": {
|
|
91
|
+
"name": "*",
|
|
92
|
+
"package": "./targetId"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"kind": "javascript-module",
|
|
99
|
+
"path": "src/config/targetId.ts",
|
|
100
|
+
"declarations": [],
|
|
101
|
+
"exports": []
|
|
102
|
+
},
|
|
103
103
|
{
|
|
104
104
|
"kind": "javascript-module",
|
|
105
105
|
"path": "src/main/index.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-header",
|
|
3
3
|
"description": "Genesis Foundation Header",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.161.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -68,24 +68,24 @@
|
|
|
68
68
|
"test:debug": "genx test --debug"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@genesislcap/foundation-testing": "14.
|
|
72
|
-
"@genesislcap/genx": "14.
|
|
73
|
-
"@genesislcap/rollup-builder": "14.
|
|
74
|
-
"@genesislcap/ts-builder": "14.
|
|
75
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
76
|
-
"@genesislcap/vite-builder": "14.
|
|
77
|
-
"@genesislcap/webpack-builder": "14.
|
|
71
|
+
"@genesislcap/foundation-testing": "14.161.0",
|
|
72
|
+
"@genesislcap/genx": "14.161.0",
|
|
73
|
+
"@genesislcap/rollup-builder": "14.161.0",
|
|
74
|
+
"@genesislcap/ts-builder": "14.161.0",
|
|
75
|
+
"@genesislcap/uvu-playwright-builder": "14.161.0",
|
|
76
|
+
"@genesislcap/vite-builder": "14.161.0",
|
|
77
|
+
"@genesislcap/webpack-builder": "14.161.0",
|
|
78
78
|
"rimraf": "^3.0.2"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@genesislcap/foundation-comms": "14.
|
|
82
|
-
"@genesislcap/foundation-events": "14.
|
|
83
|
-
"@genesislcap/foundation-i18n": "14.
|
|
84
|
-
"@genesislcap/foundation-logger": "14.
|
|
85
|
-
"@genesislcap/foundation-shell": "14.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.
|
|
88
|
-
"@genesislcap/foundation-zero": "14.
|
|
81
|
+
"@genesislcap/foundation-comms": "14.161.0",
|
|
82
|
+
"@genesislcap/foundation-events": "14.161.0",
|
|
83
|
+
"@genesislcap/foundation-i18n": "14.161.0",
|
|
84
|
+
"@genesislcap/foundation-logger": "14.161.0",
|
|
85
|
+
"@genesislcap/foundation-shell": "14.161.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.161.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.161.0",
|
|
88
|
+
"@genesislcap/foundation-zero": "14.161.0",
|
|
89
89
|
"@microsoft/fast-colors": "^5.3.1",
|
|
90
90
|
"@microsoft/fast-components": "^2.30.6",
|
|
91
91
|
"@microsoft/fast-element": "^1.12.0",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"access": "public"
|
|
102
102
|
},
|
|
103
103
|
"customElements": "dist/custom-elements.json",
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
|
|
105
105
|
}
|