@adobe/spectrum-component-api-schemas 1.0.1 → 1.0.2
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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @adobe/spectrum-component-api-schemas
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#545](https://github.com/adobe/spectrum-tokens/pull/545) [`ebc79f6`](https://github.com/adobe/spectrum-tokens/commit/ebc79f6f91bce28a64cddfc2cc5548ddcf30389d) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed a typo where meter had `valueLable` instead of `valueLabel`.
|
|
8
|
+
|
|
3
9
|
## 1.0.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
package/test/performance.test.js
CHANGED
|
@@ -65,8 +65,8 @@ test("getSchemaFile should complete within reasonable time", async (t) => {
|
|
|
65
65
|
|
|
66
66
|
// Should complete within 50ms
|
|
67
67
|
t.true(
|
|
68
|
-
duration <
|
|
69
|
-
`getSchemaFile took ${duration.toFixed(2)}ms, expected <
|
|
68
|
+
duration < 75,
|
|
69
|
+
`getSchemaFile took ${duration.toFixed(2)}ms, expected < 75ms`,
|
|
70
70
|
);
|
|
71
71
|
t.truthy(schema);
|
|
72
72
|
});
|