@operato/font 8.0.0 → 9.0.0-beta.10
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/CHANGELOG.md +202 -22
- package/dist/src/font-creation-card.d.ts +1 -1
- package/dist/src/font-creation-card.js +38 -12
- package/dist/src/font-creation-card.js.map +1 -1
- package/dist/src/font-selector.d.ts +1 -1
- package/dist/src/font-selector.js +55 -12
- package/dist/src/font-selector.js.map +1 -1
- package/dist/src/ox-file-selector.js +38 -7
- package/dist/src/ox-file-selector.js.map +1 -1
- package/dist/src/ox-font-selector.d.ts +1 -1
- package/dist/src/ox-font-selector.js +30 -4
- package/dist/src/ox-font-selector.js.map +1 -1
- package/dist/src/ox-property-editor-font-selector.d.ts +1 -1
- package/dist/src/ox-property-editor-font-selector.js +1 -1
- package/dist/src/ox-property-editor-font-selector.js.map +1 -1
- package/dist/src/redux-font-actions.js +1 -1
- package/dist/src/redux-font-actions.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -19
package/package.json
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
"name": "@operato/font",
|
|
3
3
|
"description": "User interface to select font and create font.",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "9.0.0-beta.10",
|
|
6
|
+
"type": "module",
|
|
6
7
|
"main": "dist/src/index.js",
|
|
7
8
|
"module": "dist/src/index.js",
|
|
8
9
|
"exports": {
|
|
@@ -50,30 +51,30 @@
|
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
52
53
|
"@material/web": "^2.0.0",
|
|
53
|
-
"@operato/attachment": "^
|
|
54
|
-
"@operato/headroom": "^
|
|
55
|
-
"@operato/i18n": "^
|
|
56
|
-
"@operato/input": "^
|
|
57
|
-
"@operato/layout": "^
|
|
58
|
-
"@operato/property-editor": "^
|
|
59
|
-
"@operato/pull-to-refresh": "^
|
|
60
|
-
"@operato/shell": "^
|
|
61
|
-
"@operato/utils": "^
|
|
54
|
+
"@operato/attachment": "^9.0.0-beta.10",
|
|
55
|
+
"@operato/headroom": "^9.0.0-beta.10",
|
|
56
|
+
"@operato/i18n": "^9.0.0-beta.10",
|
|
57
|
+
"@operato/input": "^9.0.0-beta.10",
|
|
58
|
+
"@operato/layout": "^9.0.0-beta.10",
|
|
59
|
+
"@operato/property-editor": "^9.0.0-beta.10",
|
|
60
|
+
"@operato/pull-to-refresh": "^9.0.0-beta.10",
|
|
61
|
+
"@operato/shell": "^9.0.0-beta.10",
|
|
62
|
+
"@operato/utils": "^9.0.0-beta.10",
|
|
62
63
|
"webfontloader": "^1.6.28"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
|
-
"@custom-elements-manifest/analyzer": "^0.
|
|
66
|
+
"@custom-elements-manifest/analyzer": "^0.10.0",
|
|
66
67
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
67
68
|
"@open-wc/eslint-config": "^12.0.3",
|
|
68
|
-
"@open-wc/testing": "^
|
|
69
|
+
"@open-wc/testing": "^4.0.0",
|
|
69
70
|
"@types/webfontloader": "^1.6.34",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
71
|
-
"@typescript-eslint/parser": "^
|
|
72
|
-
"@web/dev-server": "^0.
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
73
|
+
"@web/dev-server": "^0.4.0",
|
|
73
74
|
"@web/dev-server-storybook": "^2.0.1",
|
|
74
|
-
"@web/test-runner": "^0.
|
|
75
|
-
"concurrently": "^
|
|
76
|
-
"eslint": "^
|
|
75
|
+
"@web/test-runner": "^0.19.0",
|
|
76
|
+
"concurrently": "^9.0.0",
|
|
77
|
+
"eslint": "^9.0.0",
|
|
77
78
|
"eslint-config-prettier": "^9.1.0",
|
|
78
79
|
"husky": "^9.0.11",
|
|
79
80
|
"json5": "^2.2.0",
|
|
@@ -95,5 +96,5 @@
|
|
|
95
96
|
"prettier --write"
|
|
96
97
|
]
|
|
97
98
|
},
|
|
98
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "5f56d67c7097c8362e658c78262e6bbec66029cf"
|
|
99
100
|
}
|