mountain-ui 1.0.82 → 1.0.84

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.
Files changed (3) hide show
  1. package/index.d.ts +56 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,4 +1,43 @@
1
1
  export { init as initMountainUi } from "hamzus-ui";
2
+
3
+ // ============================================
4
+ // User State
5
+ // ============================================
6
+
7
+ export { userState, createUserState, loadSession, logout } from './src/lib/components/User/user.js';
8
+ export { default as UserDropdown } from './src/lib/components/User/UserDropdown.svelte';
9
+
10
+ // ============================================
11
+ // Project Registry
12
+ // ============================================
13
+
14
+ export { projectRegistry } from './src/lib/registry/projectRegistry/registry.svelte.js';
15
+ export { createProject } from './src/lib/registry/projectRegistry/createProject.js';
16
+ export { registerProjects } from './src/lib/registry/projectRegistry/registerProjects.js';
17
+
18
+ // Project Registry component
19
+ export { default as ProjectButton } from './src/lib/registry/projectRegistry/components/ProjectButton.svelte';
20
+ export { default as ProjectCard } from './src/lib/registry/projectRegistry/components/ProjectCard.svelte';
21
+ export { default as ProjectDropdown } from './src/lib/registry/projectRegistry/components/ProjectDropdown.svelte';
22
+ export { default as TargetProjectSubscriptionCard } from './src/lib/registry/projectRegistry/components/TargetProjectSubscriptionCard.svelte';
23
+
24
+ // ============================================
25
+ // Navigation Registry
26
+ // ============================================
27
+
28
+ export { navigationRegistry } from './src/lib/registry/navigationRegistry/registry.svelte.js';
29
+ export { createNavigation } from './src/lib/registry/navigationRegistry/createNavigation.js';
30
+ export { registerNavigation } from './src/lib/registry/navigationRegistry/registerNavigation.js';
31
+
32
+ // Project Registry component
33
+ export { default as Navbar } from './src/lib/registry/navigationRegistry/components/Navbar.svelte';
34
+ export { default as NavbarBtn } from './src/lib/registry/navigationRegistry/components/NavbarBtn.svelte';
35
+ export { default as NavbarGroup } from './src/lib/registry/navigationRegistry/components/NavbarGroup.svelte';
36
+ export { default as NavigationGroupRow } from './src/lib/registry/navigationRegistry/components/NavigationGroupRow.svelte';
37
+ export { default as NavigationRow } from './src/lib/registry/navigationRegistry/components/NavigationRow.svelte';
38
+ export { default as NewNavbarGroupDialog } from './src/lib/registry/navigationRegistry/components/NewNavbarGroupDialog.svelte';
39
+
40
+
2
41
  // ============================================
3
42
  // Field Type Registry
4
43
  // ============================================
@@ -28,6 +67,7 @@ export { default as EntityButton } from './src/lib/registry/entityRegistry/compo
28
67
  export { default as EntityCard } from './src/lib/registry/entityRegistry/components/EntityCard.svelte';
29
68
  export { default as EntityForm } from './src/lib/registry/entityRegistry/components/EntityForm.svelte';
30
69
  export { default as EntityPage } from './src/lib/registry/entityRegistry/components/EntityPage.svelte';
70
+ export { default as EntityFieldContainer } from './src/lib/registry/entityRegistry/components/EntityFieldContainer.svelte';
31
71
  export { default as EntryForm } from './src/lib/registry/entityRegistry/components/EntryForm.svelte';
32
72
  export { default as EntryPage } from './src/lib/registry/entityRegistry/components/EntryPage.svelte';
33
73
  export { default as FieldButton } from './src/lib/registry/entityRegistry/components/FieldButton.svelte';
@@ -44,7 +84,7 @@ export { default as LinkIcon } from './src/lib/registry/entityRegistry/component
44
84
 
45
85
 
46
86
  // ============================================
47
- // View Registry
87
+ // View Type Registry
48
88
  // ============================================
49
89
 
50
90
  export { viewEntriesTypeRegistry } from './src/lib/registry/viewEntriesTypeRegistry/registry.svelte.js';
@@ -53,6 +93,21 @@ export { registerDefaultViewEntriesTypes } from './src/lib/registry/viewEntriesT
53
93
 
54
94
  export { default as ViewEntriesTypeButton } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeButton.svelte';
55
95
  export { default as ViewEntriesTypeComponent } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeComponent.svelte';
96
+ export { default as ViewEntriesTypeIcon } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeIcon.svelte';
97
+ export { default as ViewEntriesTypeDropdown } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeDropdown.svelte';
98
+
99
+ // ============================================
100
+ // View Profil Registry
101
+ // ============================================
102
+
103
+ export { viewEntriesProfilRegistry } from './src/lib/registry/viewEntriesProfilRegistry/registry.svelte.js';
104
+ export { createViewEntriesProfil } from './src/lib/registry/viewEntriesProfilRegistry/createViewEntriesProfil.js';
105
+ export { registerDefaultViewEntriesProfils } from './src/lib/registry/viewEntriesProfilRegistry/registerDefaultViewEntriesProfils.js';
106
+
107
+ export { default as CreateViewEntriesProfilDialog } from './src/lib/registry/viewEntriesProfilRegistry/components/CreateViewEntriesProfilDialog.svelte';
108
+ export { default as ViewEntriesProfilButton } from './src/lib/registry/viewEntriesProfilRegistry/components/ViewEntriesProfilButton.svelte';
109
+ export { default as ViewEntriesProfilComponent } from './src/lib/registry/viewEntriesProfilRegistry/components/ViewEntriesProfilComponent.svelte';
110
+ export { default as ViewEntriesProfilDropdown } from './src/lib/registry/viewEntriesProfilRegistry/components/ViewEntriesProfilDropdown.svelte';
56
111
 
57
112
  // ============================================
58
113
  // EntryActionType Registry
package/index.js CHANGED
@@ -102,7 +102,7 @@ export { default as ViewEntriesTypeDropdown } from './src/lib/registry/viewEntri
102
102
 
103
103
  export { viewEntriesProfilRegistry } from './src/lib/registry/viewEntriesProfilRegistry/registry.svelte.js';
104
104
  export { createViewEntriesProfil } from './src/lib/registry/viewEntriesProfilRegistry/createViewEntriesProfil.js';
105
- export { registerDefaultViewEntriesProfils } from './src/lib/registry/viewEntriesProfilRegistry/registerDefaultViewEntriesTypes.js';
105
+ export { registerDefaultViewProfil } from './src/lib/registry/viewEntriesProfilRegistry/registerDefaultViewEntriesProfils.js';
106
106
 
107
107
  export { default as CreateViewEntriesProfilDialog } from './src/lib/registry/viewEntriesProfilRegistry/components/CreateViewEntriesProfilDialog.svelte';
108
108
  export { default as ViewEntriesProfilButton } from './src/lib/registry/viewEntriesProfilRegistry/components/ViewEntriesProfilButton.svelte';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mountain-ui",
3
3
  "private": false,
4
- "version": "1.0.82",
4
+ "version": "1.0.84",
5
5
  "description": "A comprehensive UI component library for ERP systems with field types, entities, and registry management built with Svelte",
6
6
  "type": "module",
7
7
  "module": "index.js",