cozy-bar 8.14.1 → 8.15.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/README.md +2 -0
- package/dist/cozy-bar.min.js +4 -4
- package/dist/cozy-bar.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Apps/AppItem.jsx +13 -6
- package/src/components/Apps/AppNavButtons.jsx +20 -1
- package/src/components/Apps/AppsContent.jsx +25 -11
- package/src/components/Apps/ButtonCozyHome.jsx +27 -6
- package/src/components/Apps/IconCozyHome.jsx +13 -3
- package/src/components/Apps/index.jsx +20 -2
- package/src/components/Bar.jsx +34 -4
- package/src/components/Drawer.jsx +20 -2
- package/src/index.jsx +18 -15
- package/transpiled/components/Apps/AppItem.js +9 -5
- package/transpiled/components/Apps/AppNavButtons.js +21 -1
- package/transpiled/components/Apps/AppsContent.js +15 -9
- package/transpiled/components/Apps/ButtonCozyHome.js +24 -10
- package/transpiled/components/Apps/IconCozyHome.js +12 -1
- package/transpiled/components/Apps/index.js +16 -3
- package/transpiled/components/Bar.js +26 -6
- package/transpiled/components/Drawer.js +17 -2
- package/transpiled/index.js +19 -16
package/README.md
CHANGED
|
@@ -41,6 +41,8 @@ window.cozy.bar.init({
|
|
|
41
41
|
- `lang` is extracted from the `lang` attribute of the `<html>` tag. Defaults to 'en'
|
|
42
42
|
- `iconPath` uses the favicon 32px. Defaults to a blank GIF
|
|
43
43
|
|
|
44
|
+
To make the icon of Cozy(`icon-cozy-home.svg`) compatible with an inverted theme, please set the parameter `isInvertedTheme` to `true`
|
|
45
|
+
|
|
44
46
|
## Help link
|
|
45
47
|
|
|
46
48
|
Help link is defined in your Cozy's [configuration file](https://github.com/cozy/cozy-stack/blob/master/docs/config.md#main-configuration-file), in the `context` section. See the `cozy.example.yaml` file [provided by the stack](https://github.com/cozy/cozy-stack/blob/master/cozy.example.yaml#L80).
|