@sis-cc/dotstatsuite-visions 6.6.4 → 6.7.0
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/es/AuthDialog/index.js +3 -2
- package/es/CollapsibleTree/Collapse.js +97 -0
- package/es/CollapsibleTree/CollapsibleTree.js +171 -0
- package/es/CollapsibleTree/index.js +44 -0
- package/es/DataEdit/Input.js +1 -1
- package/es/TableHtml5/TableHtml5.js +16 -3
- package/es/TableHtml5/cell.js +8 -2
- package/es/TableHtml5/section.js +7 -1
- package/es/TableHtml5/sectionHeader.js +6 -2
- package/es/TableHtml5/sideIcon.js +44 -0
- package/es/TableHtml5/subHeader.js +5 -1
- package/es/index.js +1 -0
- package/es/theme.js +13 -0
- package/lib/AuthDialog/index.js +6 -5
- package/lib/CollapsibleTree/Collapse.js +126 -0
- package/lib/CollapsibleTree/CollapsibleTree.js +216 -0
- package/lib/CollapsibleTree/index.js +16 -0
- package/lib/DataEdit/Input.js +1 -1
- package/lib/TableHtml5/TableHtml5.js +16 -3
- package/lib/TableHtml5/cell.js +11 -2
- package/lib/TableHtml5/section.js +10 -1
- package/lib/TableHtml5/sectionHeader.js +9 -2
- package/lib/TableHtml5/sideIcon.js +68 -0
- package/lib/TableHtml5/subHeader.js +8 -1
- package/lib/index.js +10 -1
- package/lib/theme.js +13 -0
- package/package.json +2 -2
package/lib/theme.js
CHANGED
|
@@ -218,6 +218,19 @@ var sisccTheme = exports.sisccTheme = function sisccTheme(_ref) {
|
|
|
218
218
|
fontFamily: "'Roboto Slab', serif"
|
|
219
219
|
}
|
|
220
220
|
},
|
|
221
|
+
collapsibleTree: {
|
|
222
|
+
title: {
|
|
223
|
+
fontSize: 17,
|
|
224
|
+
fontFamily: "'PT Sans Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif",
|
|
225
|
+
color: outerPalette.textLight || innerPalette.textLight
|
|
226
|
+
},
|
|
227
|
+
buttonSublevel: {
|
|
228
|
+
color: outerPalette.textLight || innerPalette.textLight,
|
|
229
|
+
fontSize: 14,
|
|
230
|
+
fontWeight: 700,
|
|
231
|
+
fontFamily: "'PT Sans Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
221
234
|
dataEdit: {
|
|
222
235
|
root: {
|
|
223
236
|
fontWeight: 400,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sis-cc/dotstatsuite-visions",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.7.0",
|
|
4
4
|
"description": "Library of visual components",
|
|
5
5
|
"author": "OECD",
|
|
6
6
|
"homepage": "https://visions-qa.siscc.org/#o",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"glamorous": "^5.0.0",
|
|
40
40
|
"numeral": "^2.0.6",
|
|
41
41
|
"prop-types": "^15.7.2",
|
|
42
|
-
"ramda": "^0.
|
|
42
|
+
"ramda": "^0.27.0",
|
|
43
43
|
"react": "^16.13.0",
|
|
44
44
|
"react-beautiful-dnd": "^13.0.0",
|
|
45
45
|
"react-dom": "^16.8.6",
|