@meshmakers/shared-ui 3.3.34 → 3.3.380
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 +41 -13
- package/fesm2022/meshmakers-shared-ui.mjs +4590 -1557
- package/fesm2022/meshmakers-shared-ui.mjs.map +1 -1
- package/package.json +20 -5
- package/types/meshmakers-shared-ui.d.ts +1644 -0
- package/index.d.ts +0 -474
package/README.md
CHANGED
|
@@ -1,24 +1,52 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @meshmakers/shared-ui
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Angular UI component library for Octo Mesh Platform applications.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Includes list views, confirmation dialogs, cron builder, tree view, entity select input, file upload, and more.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
> Note: Don't forget to add `--project shared-ui` or else it will be added to the default project in your `angular.json` file.
|
|
7
|
+
Part of the [@meshmakers](https://www.npmjs.com/org/meshmakers) package ecosystem.
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
**Note:** This library requires a [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui) license.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @meshmakers/shared-ui
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Key Components
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
| Component | Selector | Description |
|
|
20
|
+
|-----------|----------|-------------|
|
|
21
|
+
| `ListViewComponent` | `mm-list-view` | Configurable list/grid view with search, pagination |
|
|
22
|
+
| `ConfirmationWindowComponent` | - | Confirmation dialog via `ConfirmationService` |
|
|
23
|
+
| `CronBuilderComponent` | `mm-cron-builder` | Visual cron expression editor |
|
|
24
|
+
| `TreeComponent` | `mm-tree` | Hierarchical tree view |
|
|
25
|
+
| `EntitySelectInputComponent` | `mm-entity-select-input` | Entity autocomplete input |
|
|
26
|
+
| `BaseFormComponent` | `mm-base-form` | Form wrapper with save/cancel |
|
|
27
|
+
| `CopyableTextComponent` | `mm-copyable-text` | Text with copy-to-clipboard |
|
|
13
28
|
|
|
14
|
-
##
|
|
29
|
+
## Key Services
|
|
30
|
+
|
|
31
|
+
| Service | Description |
|
|
32
|
+
|---------|-------------|
|
|
33
|
+
| `ConfirmationService` | Show confirmation dialogs |
|
|
34
|
+
| `FileUploadService` | File upload dialog |
|
|
35
|
+
| `InputService` | Text input dialog |
|
|
36
|
+
| `NotificationDisplayService` | Toast notifications |
|
|
37
|
+
|
|
38
|
+
## Build
|
|
15
39
|
|
|
16
|
-
|
|
40
|
+
```bash
|
|
41
|
+
npm run build:shared-ui
|
|
42
|
+
```
|
|
17
43
|
|
|
18
|
-
##
|
|
44
|
+
## Test
|
|
19
45
|
|
|
20
|
-
|
|
46
|
+
```bash
|
|
47
|
+
npm test -- --project=@meshmakers/shared-ui --watch=false
|
|
48
|
+
```
|
|
21
49
|
|
|
22
|
-
##
|
|
50
|
+
## Documentation
|
|
23
51
|
|
|
24
|
-
|
|
52
|
+
See [Octo Mesh Platform documentation](https://docs.meshmakers.cloud).
|