forked from oetterer/BootstrapComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
103 lines (103 loc) · 3.17 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "BootstrapComponents",
"version": "4.0.0",
"author": [
"[https://www.semantic-mediawiki.org/wiki/User:Oetterer Tobias Oetterer]"
],
"url": "https://www.mediawiki.org/wiki/Extension:BootstrapComponents",
"descriptionmsg": "bootstrap-components-desc",
"license-name": "GPL-3.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.31.0"
},
"ConfigRegistry": {
"BootstrapComponents": "GlobalVarConfig::newInstance"
},
"AutoloadNamespaces": {
"BootstrapComponents\\": "src/"
},
"@note": "hooks are registered in BootstrapComponents\\HookRegistry",
"Hooks": [],
"config": {
"BootstrapComponentsDisableSourceLinkOnImageModal": {
"value": false,
"descriptionmsg": "bootstrap-components-config-DisableSourceLinkOnImageModal",
"public": true
},
"BootstrapComponentsEnableCarouselGalleryMode": {
"value": true,
"descriptionmsg": "bootstrap-components-config-EnableCarouselGalleryMode",
"public": true
},
"BootstrapComponentsModalReplaceImageTag": {
"value": false,
"descriptionmsg": "bootstrap-components-config-ModalReplaceImageTag",
"public": true
},
"BootstrapComponentsWhitelist": {
"value": true,
"descriptionmsg": "bootstrap-components-config-Whitelist",
"public": true
},
"BootstrapComponentsValidThemeColors": {
"value": [ "primary", "secondary", "success", "danger", "warning", "info", "light", "dark", "white" ],
"description": "Defines valid Bootstrap Theme Colors!"
}
},
"callback": "BootstrapComponents\\BootstrapComponents::init",
"MessagesDirs": {
"BootstrapComponents": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"BootstrapComponentsMagic": "BootstrapComponents.magic.php"
},
"ResourceModules": {
"ext.bootstrapComponents.alert.fix": {
"styles": "ext.bootstrapComponents.alert.fix.css"
},
"ext.bootstrapComponents.button.fix": {
"styles": "ext.bootstrapComponents.button.fix.css"
},
"ext.bootstrapComponents.card.fix": {
"styles": "ext.bootstrapComponents.card.fix.css"
},
"ext.bootstrapComponents.carousel": {
"dependencies": "ext.bootstrap.scripts",
"styles": "ext.bootstrapComponents.carousel.fix.css",
"scripts": "ext.bootstrapComponents.carousel.js"
},
"ext.bootstrapComponents.modal.fix": {
"styles": "ext.bootstrapComponents.modal.fix.css"
},
"ext.bootstrapComponents.modal.vector-fix": {
"styles": "ext.bootstrapComponents.modal.vector-fix.css"
},
"ext.bootstrapComponents.popover": {
"dependencies": "ext.bootstrap.scripts",
"scripts": "ext.bootstrapComponents.popover.js"
},
"ext.bootstrapComponents.popover.vector-fix": {
"styles": "ext.bootstrapComponents.popover.vector-fix.css"
},
"ext.bootstrapComponents.tooltip": {
"dependencies": "ext.bootstrap.scripts",
"scripts": "ext.bootstrapComponents.tooltip.js",
"styles": "ext.bootstrapComponents.tooltip.css"
},
"ext.bootstrapComponents.vector-fix": {
"styles": "ext.bootstrapComponents.vector-fix.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "BootstrapComponents/modules"
},
"TrackingCategories": [
"bootstrap-components-error-tracking-category",
"bootstrap-components-tracking-category"
],
"manifest_version": 2
}