@govflanders/vl-widget-global-header-types 0.0.8 → 0.0.9
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 +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ Reset the service points to the initial values defined in the widget’s configu
|
|
|
116
116
|
Set or update the profile configuration for the widget.
|
|
117
117
|
|
|
118
118
|
### setMainLinks(mainLinks: MainLink[]): Promise\<boolean\>
|
|
119
|
-
|
|
119
|
+
Sets the main navigation links that are displayed within the widget. These links will only be visible for widgets that support sessions, and they are displayed only when the user is logged in.
|
|
120
120
|
|
|
121
121
|
### addApplicationMenuLink(link: ApplicationMenuLink): Promise\<ApplicationMenuLink[]\>
|
|
122
122
|
Add a single link to the application menu.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@govflanders/vl-widget-global-header-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "TypeScript definitions for GlobalHeaderClient",
|
|
5
5
|
"main": "",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsc -p tsconfig.json",
|
|
27
27
|
"watch": "tsc -w",
|
|
28
|
-
"release": "yarn build && yarn version --patch --no-git-tag-version && git add . && git commit -m \"Release global-header-types $(node -p \"require('./package.json').version\")\" && git tag \"global-header-types-$(node -p \"require('./package.json').version\")\" && git push && git push --tags"
|
|
29
|
-
"publish": "npm_config_registry=https://registry.npmjs.org/ npm publish --access public"
|
|
28
|
+
"release": "yarn build && yarn version --patch --no-git-tag-version && git add . && git commit -m \"Release global-header-types $(node -p \"require('./package.json').version\")\" && git tag \"global-header-types-$(node -p \"require('./package.json').version\")\" && git push && git push --tags && npm_config_registry=https://registry.npmjs.org/ npm publish --access public"
|
|
30
29
|
}
|
|
31
30
|
}
|