-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
joomla.asset.json
110 lines (110 loc) · 2.94 KB
/
joomla.asset.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
104
105
106
107
108
109
110
{
"$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json",
"name": "cassiopeia",
"version": "4.0.0",
"description": "This file contains details of the assets used by Cassiopeia, the default Joomla 4 site template.",
"license": "GPL-2.0-or-later",
"assets": [
{
"name": "template.cassiopeia.ltr",
"description": "The css file to be used when the site is left to right (LTR).",
"type": "style",
"uri": "template.min.css",
"dependencies": [
"fontawesome"
]
},
{
"name": "template.cassiopeia.rtl",
"description": "The css file to be used when the site is right to left (RTL).",
"type": "style",
"uri": "template-rtl.min.css",
"dependencies": [
"fontawesome"
]
},
{
"name": "template.offline",
"description": "The css file to be used when the site is offline and offline.php is being used.",
"type": "style",
"uri": "offline.css"
},
{
"name": "template.active.language",
"description": "An asset to allow language specific css, eg 'language/[lang-CODE]/[lang-CODE].css', to use it as a dependency to the active template",
"type": "style",
"uri": "",
"class": "LangActiveAssetItem",
"dependencies": [
"template.active"
]
},
{
"name": "template.user",
"description": "A file where a user can add their own css.",
"type": "style",
"uri": "user.css",
"weight": 500,
"dependencies": [
"template.active",
"template.active.language"
]
},
{
"name": "template.cassiopeia",
"description": "The file containing the javascript for this template.",
"type": "script",
"uri": "template.js",
"attributes" : {
"type": "module"
},
"dependencies": [
"core"
]
},
{
"name": "template.active",
"description": "A dummy asset to allow extensions to use it as a dependency to the active template.",
"type": "script",
"uri": "",
"dependencies": [
"template.cassiopeia"
]
},
{
"name": "template.user",
"description": "The name of a file where a user can add their own javascript",
"type": "script",
"uri": "user.js",
"dependencies": [
"template.active"
]
},
{
"name": "template.cassiopeia.ltr",
"type": "preset",
"dependencies": [
"template.cassiopeia.ltr#style",
"template.cassiopeia#script"
]
},
{
"name": "template.cassiopeia.rtl",
"type": "preset",
"dependencies": [
"template.cassiopeia.rtl#style",
"template.cassiopeia#script"
]
},
{
"name": "searchtools",
"type": "style",
"uri": "system/searchtools/searchtools.min.css"
},
{
"name": "fontawesome",
"type": "style",
"uri": "system/joomla-fontawesome.min.css"
}
]
}