mountain-ui 1.0.56 → 1.0.57
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/index.d.ts
CHANGED
|
@@ -53,3 +53,24 @@ export { registerDefaultViewEntriesTypes } from './src/lib/registry/viewEntriesT
|
|
|
53
53
|
|
|
54
54
|
export { default as ViewEntriesTypeButton } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeButton.svelte';
|
|
55
55
|
export { default as ViewEntriesTypeComponent } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeComponent.svelte';
|
|
56
|
+
|
|
57
|
+
// ============================================
|
|
58
|
+
// EntryActionType Registry
|
|
59
|
+
// ============================================
|
|
60
|
+
|
|
61
|
+
export { entryActionTypeRegistry } from './src/lib/registry/entryActionTypeRegistry/registry.svelte.js';
|
|
62
|
+
export { createEntryActionType } from './src/lib/registry/entryActionTypeRegistry/createEntryActionType.js';
|
|
63
|
+
export { registerDefaultEntryActionTypes } from './src/lib/registry/entryActionTypeRegistry/registerDefaultEntryActionTypes.js';
|
|
64
|
+
|
|
65
|
+
export { default as EntryActionProperties } from './src/lib/registry/entryActionTypeRegistry/components/EntryActionProperties.svelte';
|
|
66
|
+
export { default as EntryActionTypeCard } from './src/lib/registry/entryActionTypeRegistry/components/EntryActionTypeCard.svelte';
|
|
67
|
+
|
|
68
|
+
// ============================================
|
|
69
|
+
// EntryAction Registry
|
|
70
|
+
// ============================================
|
|
71
|
+
|
|
72
|
+
export { entryActionRegistry } from './src/lib/registry/entryActionRegistry/registry.svelte.js';
|
|
73
|
+
export { createEntryAction } from './src/lib/registry/entryActionRegistry/createEntryAction.js';
|
|
74
|
+
|
|
75
|
+
export { default as EntryActionButton } from './src/lib/registry/entryActionRegistry/components/EntryActionButton.svelte';
|
|
76
|
+
export { default as EntryActionsButtons } from './src/lib/registry/entryActionRegistry/components/EntryActionsButtons.svelte';
|
package/index.js
CHANGED
|
@@ -53,3 +53,24 @@ export { registerDefaultViewEntriesTypes } from './src/lib/registry/viewEntriesT
|
|
|
53
53
|
|
|
54
54
|
export { default as ViewEntriesTypeButton } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeButton.svelte';
|
|
55
55
|
export { default as ViewEntriesTypeComponent } from './src/lib/registry/viewEntriesTypeRegistry/components/ViewEntriesTypeComponent.svelte';
|
|
56
|
+
|
|
57
|
+
// ============================================
|
|
58
|
+
// EntryActionType Registry
|
|
59
|
+
// ============================================
|
|
60
|
+
|
|
61
|
+
export { entryActionTypeRegistry } from './src/lib/registry/entryActionTypeRegistry/registry.svelte.js';
|
|
62
|
+
export { createEntryActionType } from './src/lib/registry/entryActionTypeRegistry/createEntryActionType.js';
|
|
63
|
+
export { registerDefaultEntryActionTypes } from './src/lib/registry/entryActionTypeRegistry/registerDefaultEntryActionTypes.js';
|
|
64
|
+
|
|
65
|
+
export { default as EntryActionProperties } from './src/lib/registry/entryActionTypeRegistry/components/EntryActionProperties.svelte';
|
|
66
|
+
export { default as EntryActionTypeCard } from './src/lib/registry/entryActionTypeRegistry/components/EntryActionTypeCard.svelte';
|
|
67
|
+
|
|
68
|
+
// ============================================
|
|
69
|
+
// EntryAction Registry
|
|
70
|
+
// ============================================
|
|
71
|
+
|
|
72
|
+
export { entryActionRegistry } from './src/lib/registry/entryActionRegistry/registry.svelte.js';
|
|
73
|
+
export { createEntryAction } from './src/lib/registry/entryActionRegistry/createEntryAction.js';
|
|
74
|
+
|
|
75
|
+
export { default as EntryActionButton } from './src/lib/registry/entryActionRegistry/components/EntryActionButton.svelte';
|
|
76
|
+
export { default as EntryActionsButtons } from './src/lib/registry/entryActionRegistry/components/EntryActionsButtons.svelte';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mountain-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.57",
|
|
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",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import EntryPage from '$lib/registry/entityRegistry/components/EntryPage.svelte';
|
|
4
4
|
import { entityRegistry } from '$lib/registry/entityRegistry/registry.svelte';
|
|
5
5
|
import EntryActionsButtons from '$lib/registry/entryActionRegistry/components/EntryActionsButtons.svelte';
|
|
6
|
-
import { createEntryAction } from '$lib/registry/entryActionRegistry/
|
|
6
|
+
import { createEntryAction } from '$lib/registry/entryActionRegistry/createEntryAction
|
|
7
7
|
import { entryActionRegistry } from '$lib/registry/entryActionRegistry/registry.svelte';
|
|
8
8
|
import { registerDefaultEntryActionTypes } from '$lib/registry/entryActionTypeRegistry/registerDefaultEntryActionTypes';
|
|
9
9
|
import { entryActionTypeRegistry } from '$lib/registry/entryActionTypeRegistry/registry.svelte';
|
/package/src/lib/registry/entryActionRegistry/{createEntryActionType.js → createEntryAction.js}
RENAMED
|
File without changes
|