slicejs-web-framework 1.0.13 → 1.0.16
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/package.json +2 -2
- package/src/Components/AppComponents/DocumentationPage/DocumentationPage.js +3 -3
- package/src/Components/AppComponents/LandingPage/LandingPage.js +1 -1
- package/src/Components/AppComponents/Playground/Playground.js +1 -1
- package/src/Components/AppComponents/TheSliceTeam/TheSliceTeam.js +1 -1
- package/src/routes.js +2 -2
package/package.json
CHANGED
|
@@ -78,7 +78,7 @@ export default class DocumentationPage extends HTMLElement {
|
|
|
78
78
|
componentsLibrary: {
|
|
79
79
|
title: 'Components Library',
|
|
80
80
|
items: [
|
|
81
|
-
|
|
81
|
+
/* {
|
|
82
82
|
title: 'Services',
|
|
83
83
|
items: [
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@ export default class DocumentationPage extends HTMLElement {
|
|
|
86
86
|
path: '/Documentation/SliceComponents/FetchManager'
|
|
87
87
|
}
|
|
88
88
|
]
|
|
89
|
-
}
|
|
89
|
+
},*/
|
|
90
90
|
{
|
|
91
91
|
title: 'Visual',
|
|
92
92
|
path: '/Documentation/Visual',
|
|
@@ -109,7 +109,7 @@ export default class DocumentationPage extends HTMLElement {
|
|
|
109
109
|
const navBar = await slice.build('Navbar', {
|
|
110
110
|
position: 'fixed',
|
|
111
111
|
logo: {
|
|
112
|
-
src: '
|
|
112
|
+
src: '/images/Slice.js-logo.png',
|
|
113
113
|
path: '/',
|
|
114
114
|
},
|
|
115
115
|
items: [
|
package/src/routes.js
CHANGED