@adplenty-tech/adplenty-components-library 1.5.1 → 1.5.3
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/build/index.css +1 -1
- package/build/index.js +1 -1
- package/build/libBarChart/libBarChart.css +1 -1
- package/package.json +3 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
.lib-bar-chart{width:100%;height:100%}.lib-bar-chart .nvd3 rect{
|
|
1
|
+
.lib-bar-chart{width:100%;height:100%}.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar) .nv-bar rect,.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar) rect.nv-bar,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups .nv-bar rect,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups rect.nv-bar{fill-opacity:1;stroke-width:0;-webkit-transition:all .2s ease;transition:all .2s ease;-webkit-transition-delay:.15s;transition-delay:.15s}.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar):has(.nv-bar rect:hover,rect.nv-bar:hover) .nv-bar rect,.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar):has(.nv-bar rect:hover,rect.nv-bar:hover) rect.nv-bar,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups:has(.nv-bar rect:hover,rect.nv-bar:hover) .nv-bar rect,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups:has(.nv-bar rect:hover,rect.nv-bar:hover) rect.nv-bar{fill-opacity:.3}.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar):has(.nv-bar rect:hover,rect.nv-bar:hover) g:has(.nv-bar rect:hover,rect.nv-bar:hover) .nv-bar rect,.lib-bar-chart .nvd3 .nv-groups:has(.nv-group:not(:nth-child(1))>.nv-bar):has(.nv-bar rect:hover,rect.nv-bar:hover) g:has(.nv-bar rect:hover,rect.nv-bar:hover) rect.nv-bar,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups:has(.nv-bar rect:hover,rect.nv-bar:hover) g:has(.nv-bar rect:hover,rect.nv-bar:hover) .nv-bar rect,.lib-bar-chart .stacked-bar-chart .nvd3 .nv-groups:has(.nv-bar rect:hover,rect.nv-bar:hover) g:has(.nv-bar rect:hover,rect.nv-bar:hover) rect.nv-bar{fill-opacity:1}.lib-bar-chart .nvd3 .nv-groups:has(.nv-bar:hover) .nv-bar:not(:hover) rect,.lib-bar-chart .nvd3 .nv-groups:has(.nv-bar:hover) rect.nv-bar:not(:hover){fill-opacity:.3}.lib-bar-chart .nvd3 .nv-groups .nv-bar rect,.lib-bar-chart .nvd3 .nv-groups rect.nv-bar{fill-opacity:1;stroke-width:0;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transition-delay:.2s;transition-delay:.2s}.lib-bar-chart .nvd3 .nv-x.nv-axis line{display:none}.lib-bar-chart .nvd3 .nv-x.nv-axis .nv-x{display:none}.lib-bar-chart .nvd3 .nv-x.nv-axis .domain{display:none}.lib-bar-chart .nvd3 .nv-x.nv-axis .tick text{fill:var(--text-primary);text-align:center;font-family:Inter;font-size:12px;font-style:normal;font-weight:800;line-height:16px;max-width:75px;overflow:hidden;letter-spacing:.4px}.lib-bar-chart .nvd3 .nv-y.nv-axis .domain{display:none}.lib-bar-chart .nvd3 .nv-y.nv-axis .tick text,.lib-bar-chart .nvd3 .nv-y.nv-axis text{fill:var(--text-light-gray);text-align:right;font-family:Inter;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:.2px}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adplenty-tech/adplenty-components-library",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"author": "Jacques Sirot <jacques@advative.io>",
|
|
5
5
|
"description": "A library of components used across adPlenty products.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"local": "cross-env NODE_ENV=local ./node_modules/.bin/gulp dev",
|
|
20
20
|
"build": "cross-env NODE_ENV=production ./node_modules/.bin/gulp prod",
|
|
21
|
-
"pub": "npm run build && git add . && npm version patch --force && npm publish --access public"
|
|
21
|
+
"pub": "npm run build && git add . && npm version patch --force && npm publish --access public",
|
|
22
|
+
"pub:beta": "npm run build && git add . && npm version patch --force && npm publish --access public --tag beta"
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"@fullcalendar/core": "^6.1.9",
|