@elevasis/ui 2.9.0 → 2.9.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/package.json +2 -2
- package/src/provider/README.md +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"tsup": "^8.0.0",
|
|
187
187
|
"typescript": "5.9.2",
|
|
188
188
|
"vite": "^7.0.0",
|
|
189
|
-
"@repo/core": "0.2.
|
|
189
|
+
"@repo/core": "0.2.1",
|
|
190
190
|
"@repo/typescript-config": "0.0.0",
|
|
191
191
|
"@repo/eslint-config": "0.0.0"
|
|
192
192
|
},
|
package/src/provider/README.md
CHANGED
|
@@ -4,6 +4,8 @@ The provider surface composes the shared Elevasis service, feature, appearance,
|
|
|
4
4
|
|
|
5
5
|
## Exports
|
|
6
6
|
|
|
7
|
+
The following are exported from `published.ts`, which is the external consumer surface for `@elevasis/ui/provider`:
|
|
8
|
+
|
|
7
9
|
- `ElevasisCoreProvider`
|
|
8
10
|
- `ElevasisFeaturesProvider`
|
|
9
11
|
- `useElevasisFeatures`
|
|
@@ -15,17 +17,16 @@ The provider surface composes the shared Elevasis service, feature, appearance,
|
|
|
15
17
|
- `useElevasisServices`
|
|
16
18
|
- `NotificationProvider`
|
|
17
19
|
- `useNotificationAdapter`
|
|
18
|
-
- `ElevasisUIProvider`
|
|
19
20
|
- Related provider and service types
|
|
20
21
|
|
|
22
|
+
Note: `ElevasisUIProvider` (the Mantine-facing visual layer) is available internally via `@repo/ui` but is NOT exported from the published `@elevasis/ui/provider` subpath. It is only available via the internal `./provider/ui` monorepo subpath.
|
|
23
|
+
|
|
21
24
|
## Related Published Subpaths
|
|
22
25
|
|
|
23
|
-
- `./provider`
|
|
24
|
-
- `./provider/ui`
|
|
25
|
-
- `./provider/ElevasisServiceContext`
|
|
26
|
+
- `./provider` - headless providers (points to `published.ts`; no Mantine dependency)
|
|
27
|
+
- `./provider/ui` - full provider including Mantine-dependent `ElevasisUIProvider` (internal monorepo use; also published for consumers that opt in)
|
|
26
28
|
|
|
27
29
|
## Notes
|
|
28
30
|
|
|
29
|
-
- `published.ts` is the external consumer surface
|
|
30
|
-
- `ElevasisUIProvider` is
|
|
31
|
-
|
|
31
|
+
- `published.ts` is the external consumer surface for `@elevasis/ui/provider`.
|
|
32
|
+
- `ElevasisUIProvider` is Mantine-dependent and available only via `@repo/ui` internally or `@elevasis/ui/provider/ui`; it is not included in the headless `./provider` published export.
|