@uni-design-system/uni-angular 4.0.0 → 5.1.0

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 CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@uni-design-system/uni-angular",
3
- "version": "4.0.0",
3
+ "version": "5.1.0",
4
+ "license": "MIT",
4
5
  "repository": {
5
6
  "type": "git",
6
7
  "url": "https://github.com/uni-design-system/uni",
@@ -12,16 +13,16 @@
12
13
  "directory": "dist"
13
14
  },
14
15
  "private": false,
16
+ "schematics": "./schematics/collection.json",
17
+ "ng-add": {
18
+ "save": "dependencies"
19
+ },
15
20
  "peerDependencies": {
16
21
  "@angular/common": "^21.2.0",
17
22
  "@angular/core": "^21.2.0",
18
23
  "@angular/forms": "^21.2.0",
19
24
  "@emotion/css": "^11.0.0",
20
- "@uni-design-system/uni-core": "4.0.0"
21
- },
22
- "dependencies": {
23
- "@floating-ui/dom": "^1.7.6",
24
- "tslib": "^2.3.0"
25
+ "@uni-design-system/uni-core": "^5.1.0"
25
26
  },
26
27
  "module": "fesm2022/uni-design-system-uni-angular.mjs",
27
28
  "typings": "types/uni-design-system-uni-angular.d.ts",
@@ -35,5 +36,8 @@
35
36
  }
36
37
  },
37
38
  "sideEffects": false,
38
- "type": "module"
39
+ "type": "module",
40
+ "dependencies": {
41
+ "tslib": "^2.3.0"
42
+ }
39
43
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "schematics": {
3
+ "ng-add": {
4
+ "description": "Add the Uni Design System: install peer dependencies, generate a static brand theme file, register UNI_THEMES, load typefaces, and scaffold a themed smoke test.",
5
+ "factory": "./ng-add/index#ngAdd",
6
+ "schema": "./ng-add/schema.json"
7
+ }
8
+ }
9
+ }