@headless-adminapp/fluent 1.4.41 → 1.4.42
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/README.md +39 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @headless-adminapp/fluent
|
|
2
|
+
|
|
3
|
+
Fluent UI implementation layer for Headless AdminApp.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This package provides a Fluent UI-based component set and styling layer that composes the core and app packages into a ready-to-use interface implementation.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
pnpm add @headless-adminapp/fluent
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Peer dependencies:
|
|
16
|
+
|
|
17
|
+
- @fluentui/react-components
|
|
18
|
+
- @fluentui/react-calendar-compat
|
|
19
|
+
- @fluentui/react-datepicker-compat
|
|
20
|
+
- @fluentui/react-timepicker-compat
|
|
21
|
+
- @tanstack/react-query
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
Use this package when you want a Fluent UI experience. See the docs and examples for recommended setup:
|
|
26
|
+
|
|
27
|
+
- https://headless-adminapp.github.io/
|
|
28
|
+
- https://github.com/kishanmundha/headless-adminapp-examples
|
|
29
|
+
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
pnpm --filter @headless-adminapp/fluent build
|
|
34
|
+
pnpm --filter @headless-adminapp/fluent ts-check
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
See the repository LICENSE file.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@headless-adminapp/fluent",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.42",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/lodash": "4.17.20"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "ab95b45e2c1098d0524b19ba32cce202be8e7439"
|
|
58
58
|
}
|