ode-csslib-panda-cg77 3.1.2 → 3.1.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/dist/editor-resources/font3/LICENSE.txt +0 -0
- package/dist/editor-resources/font3/README.txt +0 -0
- package/dist/editor-resources/font3/config.json +0 -0
- package/dist/editor-resources/font3/css/animation.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-codes.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-embedded.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-ie7-codes.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-ie7.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor.css +0 -0
- package/dist/editor-resources/font3/demo.html +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.eot +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.svg +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.ttf +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.woff +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.woff2 +0 -0
- package/dist/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.svg +1 -0
- package/dist/fonts/generic-icons/generic-icons.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/skins/circus/theme.css +2 -2
- package/dist/skins/circus/theme.css.map +1 -1
- package/dist/skins/default/theme.css +2 -2
- package/dist/skins/default/theme.css.map +1 -1
- package/dist/skins/desert/theme.css +2 -2
- package/dist/skins/desert/theme.css.map +1 -1
- package/dist/skins/neutre/theme.css +2 -2
- package/dist/skins/neutre/theme.css.map +1 -1
- package/dist/skins/ocean/theme.css +2 -2
- package/dist/skins/ocean/theme.css.map +1 -1
- package/dist/skins/panda-food/theme.css +2 -2
- package/dist/skins/panda-food/theme.css.map +1 -1
- package/dist/skins/sparkly/theme.css +2 -2
- package/dist/skins/sparkly/theme.css.map +1 -1
- package/dist/version.txt +2 -2
- package/package.json +29 -27
package/dist/version.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
entcore-css-lib=4.1.
|
|
2
|
-
ode-csslib-panda-cg77=3.1.
|
|
1
|
+
entcore-css-lib=4.1.1 30/08/2023 14:04:57
|
|
2
|
+
ode-csslib-panda-cg77=3.1.4 04/09/2023 09:40:28
|
package/package.json
CHANGED
|
@@ -1,7 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-csslib-panda-cg77",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "Panda theme by Open Digital Education",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git@code.web-education.net:one/panda.git"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"Panda",
|
|
11
|
+
"ODE",
|
|
12
|
+
"theme"
|
|
13
|
+
],
|
|
14
|
+
"author": "Open Digital Education",
|
|
15
|
+
"license": "NONE",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"entcore-css-lib": "npm:ode-csslib@master"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"concurrently": "5.3.0",
|
|
21
|
+
"copyfiles": "2.4.1",
|
|
22
|
+
"cpr": "3.0.1",
|
|
23
|
+
"entcore-generic-icons": "github:opendigitaleducation/generic-icons#master",
|
|
24
|
+
"prettier": "2.6.0",
|
|
25
|
+
"rimraf": "3.0.2",
|
|
26
|
+
"sass": "1.66.1"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
5
31
|
"scripts": {
|
|
6
32
|
"override:i18n": "OVERRIDE_SRC=${OVERRIDE_SRC} OVERRIDE_DIST=${OVERRIDE_DIST} node ode-override-plugin.js",
|
|
7
33
|
"sass:watch": "sass --source-map -w scss/index.scss docs/index.css",
|
|
@@ -22,29 +48,5 @@
|
|
|
22
48
|
"release:prepare": "npm run release:clean && npm run release:dependencies && cpr template/ ${DIST_DIR}/template/ -o && cpr portal.html ${DIST_DIR}/ -o && cpr assets/ ${DIST_DIR}/ -o",
|
|
23
49
|
"release:build": "npm run release:prepare && SKIN=default npm run sass:build:release",
|
|
24
50
|
"watch": "sass --watch --style compressed --load-path=node_modules/ --no-source-map scss/index.scss ../ode-dev-server/assets/themes/cg771d/skins/default/theme.css"
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "git@code.web-education.net:one/panda.git"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"Panda",
|
|
32
|
-
"ODE",
|
|
33
|
-
"theme"
|
|
34
|
-
],
|
|
35
|
-
"author": "Open Digital Education",
|
|
36
|
-
"license": "NONE",
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"entcore-css-lib": "npm:ode-csslib@master"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"concurrently": "^5.0.2",
|
|
42
|
-
"copyfiles": "^2.2.0",
|
|
43
|
-
"cpr": "^3.0.1",
|
|
44
|
-
"prettier": "2.6.0",
|
|
45
|
-
"rimraf": "^3.0.2",
|
|
46
|
-
"sass": "^1.49.9",
|
|
47
|
-
"entcore-generic-icons": "git+https://github.com/opendigitaleducation/generic-icons.git#master"
|
|
48
|
-
},
|
|
49
|
-
"files": ["dist"]
|
|
50
|
-
}
|
|
51
|
+
}
|
|
52
|
+
}
|