ui-primitives 35.0.0 → 35.2.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 +26 -16
- package/styles/typography_android.json +704 -678
- package/styles/typography_android_alfasans.json +714 -0
- package/styles/typography_ios.json +689 -660
- package/styles/typography_ios_alfasans.json +693 -0
- package/styles/typography_web.json +488 -483
- package/styles/typography_web_alfasans.json +561 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui-primitives",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.2.0",
|
|
4
4
|
"description": "UI primitives for sharing between platforms in Design System Team projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design",
|
|
@@ -12,38 +12,48 @@
|
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/core-ds/ui-primitives.git"
|
|
14
14
|
},
|
|
15
|
-
"author": "Design System Team",
|
|
16
15
|
"license": "MIT",
|
|
16
|
+
"author": "Design System Team",
|
|
17
17
|
"scripts": {
|
|
18
|
-
"
|
|
18
|
+
"build": "tsc",
|
|
19
19
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
20
|
+
"ci": "./utils/ci.sh",
|
|
21
|
+
"commitmsg": "commitlint -e",
|
|
22
|
+
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
20
23
|
"github-release": "conventional-github-releaser -p angular",
|
|
21
|
-
"
|
|
22
|
-
"release-minor": "npm version minor -m 'chore(*): minor version[skip ci]'",
|
|
24
|
+
"pub": "./utils/publish.sh",
|
|
23
25
|
"release-major": "npm version major -m 'chore(*): major version[skip ci]'",
|
|
26
|
+
"release-minor": "npm version minor -m 'chore(*): minor version[skip ci]'",
|
|
27
|
+
"release-patch": "npm version patch -m 'chore(*): patch version[skip ci]'",
|
|
24
28
|
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha ./utils/**/*.spec.js",
|
|
25
|
-
"
|
|
29
|
+
"update-bb-mirror": "git push -f https://{userName}@git.moscow.alfaintra.net/scm/ef/ui-primitives.git",
|
|
26
30
|
"version": "git fetch --tags && npm run changelog && git add CHANGELOG.md",
|
|
27
|
-
"postversion": "npm run pub"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
+
"postversion": "npm run pub"
|
|
32
|
+
},
|
|
33
|
+
"nyc": {
|
|
34
|
+
"exclude": [
|
|
35
|
+
"**/*.spec.js"
|
|
36
|
+
]
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
39
|
+
"@actions/core": "^1.11.1",
|
|
40
|
+
"@actions/github-script": "github:actions/github-script",
|
|
33
41
|
"@commitlint/cli": "5.2.0",
|
|
34
42
|
"@commitlint/config-conventional": "5.1.3",
|
|
43
|
+
"@figma/rest-api-spec": "^0.34.0",
|
|
44
|
+
"@types/fs-extra": "^11.0.4",
|
|
45
|
+
"@types/node": "^24.9.2",
|
|
46
|
+
"change-case": "^5.4.4",
|
|
35
47
|
"conventional-changelog-cli": "1.3.5",
|
|
36
48
|
"conventional-github-releaser": "2.0.0",
|
|
37
49
|
"coveralls": "3.0.0",
|
|
50
|
+
"fs-extra": "^11.3.2",
|
|
38
51
|
"git-diff-tags": "1.0.0",
|
|
39
52
|
"mocha": "5.0.0",
|
|
40
53
|
"nyc": "11.4.1",
|
|
41
54
|
"posthtml": "0.11.2",
|
|
42
|
-
"svgo": "1.0.3"
|
|
55
|
+
"svgo": "1.0.3",
|
|
56
|
+
"typescript": "^5.9.3"
|
|
43
57
|
},
|
|
44
|
-
"
|
|
45
|
-
"exclude": [
|
|
46
|
-
"**/*.spec.js"
|
|
47
|
-
]
|
|
48
|
-
}
|
|
58
|
+
"packageManager": "npm@11.6.2"
|
|
49
59
|
}
|