@almadar/std 14.56.0 → 15.0.1
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/behaviors/registry/factory-signatures.json +359 -32391
- package/behaviors/registry/variations/chrome/std-app-layout-bottomnav.orb +24 -1
- package/behaviors/registry/variations/chrome/std-app-layout-minimal.orb +24 -1
- package/behaviors/registry/variations/chrome/std-app-layout-topnav.orb +23 -0
- package/dist/behaviors/behaviors-embeddings.json +47767 -47767
- package/dist/behaviors/registry/factory-signatures.json +359 -32391
- package/dist/behaviors/registry/variations/chrome/std-app-layout-bottomnav.orb +24 -1
- package/dist/behaviors/registry/variations/chrome/std-app-layout-minimal.orb +24 -1
- package/dist/behaviors/registry/variations/chrome/std-app-layout-topnav.orb +23 -0
- package/dist/behaviors-embeddings.json +47767 -47767
- package/dist/registry/factory-signatures.json +359 -32391
- package/dist/registry/variations/chrome/std-app-layout-bottomnav.orb +24 -1
- package/dist/registry/variations/chrome/std-app-layout-minimal.orb +24 -1
- package/dist/registry/variations/chrome/std-app-layout-topnav.orb +23 -0
- package/package.json +2 -2
|
@@ -28,7 +28,30 @@
|
|
|
28
28
|
"name": "BottomnavLayout",
|
|
29
29
|
"linkedEntity": "BottomnavLayoutState",
|
|
30
30
|
"config": {
|
|
31
|
-
"layoutMode": "bottomnav"
|
|
31
|
+
"layoutMode": "bottomnav",
|
|
32
|
+
"appName": "Bottomnav Demo",
|
|
33
|
+
"navItems": [
|
|
34
|
+
{
|
|
35
|
+
"href": "/",
|
|
36
|
+
"label": "Home",
|
|
37
|
+
"icon": "home"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"icon": "users",
|
|
41
|
+
"label": "Contacts",
|
|
42
|
+
"href": "/contacts"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"href": "/tasks",
|
|
46
|
+
"icon": "check-square",
|
|
47
|
+
"label": "Tasks"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"label": "Settings",
|
|
51
|
+
"icon": "settings",
|
|
52
|
+
"href": "/settings"
|
|
53
|
+
}
|
|
54
|
+
]
|
|
32
55
|
}
|
|
33
56
|
}
|
|
34
57
|
],
|
|
@@ -28,7 +28,30 @@
|
|
|
28
28
|
"name": "MinimalLayout",
|
|
29
29
|
"linkedEntity": "MinimalLayoutState",
|
|
30
30
|
"config": {
|
|
31
|
-
"
|
|
31
|
+
"navItems": [
|
|
32
|
+
{
|
|
33
|
+
"label": "Home",
|
|
34
|
+
"icon": "home",
|
|
35
|
+
"href": "/"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"href": "/contacts",
|
|
39
|
+
"icon": "users",
|
|
40
|
+
"label": "Contacts"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"href": "/tasks",
|
|
44
|
+
"label": "Tasks",
|
|
45
|
+
"icon": "check-square"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"href": "/settings",
|
|
49
|
+
"icon": "settings",
|
|
50
|
+
"label": "Settings"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"layoutMode": "minimal",
|
|
54
|
+
"appName": "Minimal Demo"
|
|
32
55
|
}
|
|
33
56
|
}
|
|
34
57
|
],
|
|
@@ -28,6 +28,29 @@
|
|
|
28
28
|
"name": "TopnavLayout",
|
|
29
29
|
"linkedEntity": "TopnavLayoutState",
|
|
30
30
|
"config": {
|
|
31
|
+
"appName": "Topnav Demo",
|
|
32
|
+
"navItems": [
|
|
33
|
+
{
|
|
34
|
+
"icon": "home",
|
|
35
|
+
"href": "/",
|
|
36
|
+
"label": "Home"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"label": "Contacts",
|
|
40
|
+
"href": "/contacts",
|
|
41
|
+
"icon": "users"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"label": "Tasks",
|
|
45
|
+
"href": "/tasks",
|
|
46
|
+
"icon": "check-square"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"label": "Settings",
|
|
50
|
+
"icon": "settings",
|
|
51
|
+
"href": "/settings"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
31
54
|
"layoutMode": "topnav"
|
|
32
55
|
}
|
|
33
56
|
}
|