@edgedev/create-edge-app 1.1.12 → 1.1.13
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 +1 -1
- package/pages/app/account/[page].vue +5 -66
package/package.json
CHANGED
|
@@ -56,89 +56,28 @@ const page = computed(() => {
|
|
|
56
56
|
<template>
|
|
57
57
|
<div
|
|
58
58
|
v-if="edgeGlobal.edgeState.organizationDocPath"
|
|
59
|
-
class="w-full max-w-7xl mx-auto bg-white rounded-[9.96px] shadow-md px-6"
|
|
60
59
|
>
|
|
61
60
|
<edge-organization-settings
|
|
62
61
|
v-if="page === 'organization-settings'"
|
|
63
62
|
:subscribe-options="subscribeOptions"
|
|
64
63
|
:form-schema="orgSchema"
|
|
65
64
|
:org-fields="orgFields"
|
|
66
|
-
|
|
67
|
-
>
|
|
68
|
-
<template #header>
|
|
69
|
-
<Teleport to="#page-header">
|
|
70
|
-
<edge-shad-breadcrumbs
|
|
71
|
-
:items="[
|
|
72
|
-
{ text: 'Settings', to: '/app/dashboard/my-profile' },
|
|
73
|
-
{ text: 'Organization', to: '' },
|
|
74
|
-
]"
|
|
75
|
-
/>
|
|
76
|
-
</Teleport>
|
|
77
|
-
</template>
|
|
78
|
-
</edge-organization-settings>
|
|
65
|
+
/>
|
|
79
66
|
<edge-my-account
|
|
80
67
|
v-if="page === 'my-account'"
|
|
81
|
-
|
|
82
|
-
>
|
|
83
|
-
<template #header>
|
|
84
|
-
<Teleport to="#page-header">
|
|
85
|
-
<edge-shad-breadcrumbs
|
|
86
|
-
:items="[
|
|
87
|
-
{ text: 'Settings', to: '/app/dashboard/my-profile' },
|
|
88
|
-
{ text: 'My Account', to: '' },
|
|
89
|
-
]"
|
|
90
|
-
/>
|
|
91
|
-
</Teleport>
|
|
92
|
-
</template>
|
|
93
|
-
</edge-my-account>
|
|
68
|
+
/>
|
|
94
69
|
<edge-my-profile
|
|
95
70
|
v-if="page === 'my-profile'"
|
|
96
71
|
:form-schema="metaSchema"
|
|
97
72
|
:meta-fields="metaFields"
|
|
98
|
-
|
|
99
|
-
>
|
|
100
|
-
<template #header>
|
|
101
|
-
<Teleport to="#page-header">
|
|
102
|
-
<edge-shad-breadcrumbs
|
|
103
|
-
:items="[
|
|
104
|
-
{ text: 'Settings', to: '/app/dashboard/my-profile' },
|
|
105
|
-
{ text: 'My Profile', to: '' },
|
|
106
|
-
]"
|
|
107
|
-
/>
|
|
108
|
-
</Teleport>
|
|
109
|
-
</template>
|
|
110
|
-
</edge-my-profile>
|
|
73
|
+
/>
|
|
111
74
|
<edge-organization-members
|
|
112
75
|
v-if="page === 'organization-members'"
|
|
113
|
-
|
|
114
|
-
>
|
|
115
|
-
<template #header>
|
|
116
|
-
<Teleport to="#page-header">
|
|
117
|
-
<edge-shad-breadcrumbs
|
|
118
|
-
:items="[
|
|
119
|
-
{ text: 'Settings', to: '/app/dashboard/my-profile' },
|
|
120
|
-
{ text: 'Users', to: '' },
|
|
121
|
-
]"
|
|
122
|
-
/>
|
|
123
|
-
</Teleport>
|
|
124
|
-
</template>
|
|
125
|
-
</edge-organization-members>
|
|
76
|
+
/>
|
|
126
77
|
<edge-my-organizations
|
|
127
78
|
v-if="page === 'my-organizations'"
|
|
128
79
|
:registration-code="config.public.registrationCode"
|
|
129
|
-
|
|
130
|
-
>
|
|
131
|
-
<template #header>
|
|
132
|
-
<Teleport to="#page-header">
|
|
133
|
-
<edge-shad-breadcrumbs
|
|
134
|
-
:items="[
|
|
135
|
-
{ text: 'Settings', to: '/app/dashboard/my-profile' },
|
|
136
|
-
{ text: 'My Organizations', to: '' },
|
|
137
|
-
]"
|
|
138
|
-
/>
|
|
139
|
-
</Teleport>
|
|
140
|
-
</template>
|
|
141
|
-
</edge-my-organizations>
|
|
80
|
+
/>
|
|
142
81
|
<edge-billing
|
|
143
82
|
v-if="page === 'subscription'"
|
|
144
83
|
/>
|