@govflanders/vl-widget-global-header-types 2.0.2 → 2.0.4
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 +41 -0
- package/dist/access-menu.d.ts +1 -1
- package/dist/access-menu.js +1 -0
- package/dist/alert.js +1 -0
- package/dist/bootstrap.d.ts +17 -0
- package/dist/bootstrap.js +42 -0
- package/dist/branding.js +1 -0
- package/dist/client.js +1 -0
- package/dist/config.js +4 -0
- package/dist/contact.js +12 -0
- package/dist/i18n.d.ts +1 -1
- package/dist/i18n.js +1 -0
- package/dist/idp.d.ts +4 -16
- package/dist/idp.js +1 -0
- package/dist/image.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +11 -0
- package/dist/link.js +1 -0
- package/docs/assets/hierarchy.js +1 -0
- package/docs/assets/highlight.css +8 -8
- package/docs/assets/icons.js +1 -1
- package/docs/assets/icons.svg +1 -1
- package/docs/assets/main.js +5 -5
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +1405 -1288
- package/docs/assets/typedoc-github-style.css +49 -54
- package/docs/functions/bootstrap.html +8 -0
- package/docs/hierarchy.html +1 -1
- package/docs/index.html +62 -29
- package/docs/interfaces/AlertConfig.html +5 -5
- package/docs/interfaces/Application.html +7 -7
- package/docs/interfaces/ApplicationMenuLink.html +6 -6
- package/docs/interfaces/Authorization.html +9 -9
- package/docs/interfaces/BUR.html +8 -8
- package/docs/interfaces/BaseConfig.html +2 -2
- package/docs/interfaces/BaseEntity.html +6 -6
- package/docs/interfaces/BrandingConfigColors.html +4 -4
- package/docs/interfaces/BrandingConfigHost.html +6 -6
- package/docs/interfaces/BrandingConfigUmbrella.html +5 -5
- package/docs/interfaces/Channel.html +13 -13
- package/docs/interfaces/ContactOption.html +21 -21
- package/docs/interfaces/ContactOptionRef.html +6 -6
- package/docs/interfaces/EA.html +7 -7
- package/docs/interfaces/EnrichedServicePoints.html +8 -8
- package/docs/interfaces/GID.html +7 -7
- package/docs/interfaces/GlobalHeaderClient.html +43 -70
- package/docs/interfaces/I18n.html +2 -2
- package/docs/interfaces/IDPData.html +6 -6
- package/docs/interfaces/Image.html +6 -6
- package/docs/interfaces/LB.html +6 -10
- package/docs/interfaces/Link.html +4 -4
- package/docs/interfaces/LinkWithTarget.html +5 -5
- package/docs/interfaces/MainLink.html +7 -7
- package/docs/interfaces/OV.html +6 -6
- package/docs/interfaces/ProfileConfig.html +13 -13
- package/docs/interfaces/RecursiveRecord.html +1 -1
- package/docs/interfaces/ResolveOptions.html +2 -2
- package/docs/interfaces/ServicePoints.html +9 -9
- package/docs/interfaces/Session.html +5 -5
- package/docs/interfaces/Translations.html +2 -2
- package/docs/interfaces/User.html +5 -5
- package/docs/interfaces/VER.html +6 -8
- package/docs/modules.html +1 -48
- package/docs/types/AlertModifier.html +1 -1
- package/docs/types/BrandingConfigLevel.html +2 -2
- package/docs/types/CapacityCode.html +2 -2
- package/docs/types/ChannelIcon.html +2 -2
- package/docs/types/ChannelType.html +2 -2
- package/docs/types/CobrowseChannel.html +2 -2
- package/docs/types/ContactOptionSocialPlatform.html +2 -2
- package/docs/types/ContactServiceEndpoints.html +2 -8
- package/docs/types/EnrichedServicePoint.html +1 -1
- package/docs/types/Entity.html +2 -2
- package/docs/types/Language.html +1 -1
- package/docs/types/ServicePoint.html +2 -2
- package/docs/types/Translatable.html +3 -3
- package/docs/variables/languages.html +9 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@govflanders/vl-widget-global-header-types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "TypeScript definitions for GlobalHeaderClient",
|
|
6
|
-
"main": "",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"@govflanders/vl-widget-shared": "^1.0.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"typedoc": "^0.
|
|
36
|
-
"typedoc-github-theme": "^0.
|
|
35
|
+
"typedoc": "^0.27.2",
|
|
36
|
+
"typedoc-github-theme": "^0.2.0",
|
|
37
|
+
"typescript": "^5.7.2"
|
|
37
38
|
}
|
|
38
39
|
}
|