@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spectrum-component-api-schemas",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -17,7 +17,7 @@
17
17
  "label": {
18
18
  "type": "string"
19
19
  },
20
- "valueLable": {
20
+ "valueLabel": {
21
21
  "type": "string"
22
22
  },
23
23
  "width": {
@@ -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 < 50,
69
- `getSchemaFile took ${duration.toFixed(2)}ms, expected < 100ms`,
68
+ duration < 75,
69
+ `getSchemaFile took ${duration.toFixed(2)}ms, expected < 75ms`,
70
70
  );
71
71
  t.truthy(schema);
72
72
  });