@projectwallace/css-design-tokens 0.4.0 → 0.4.1

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.
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export declare class KeywordSet {
5
5
  private set;
6
- constructor(items: string[]);
6
+ constructor(items: Lowercase<string>[]);
7
7
  has(item: string): boolean;
8
8
  }
package/dist/types.d.ts CHANGED
@@ -5,7 +5,7 @@ export declare const EXTENSION_AUTHORED_AS = "com.projectwallace.css-authored-as
5
5
  export type Easing = [number, number, number, number];
6
6
  export type BaseToken = {
7
7
  $extensions?: {
8
- [EXTENSION_AUTHORED_AS]?: string;
8
+ [EXTENSION_AUTHORED_AS]: string;
9
9
  };
10
10
  };
11
11
  export type DurationToken = BaseToken & {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@projectwallace/css-design-tokens",
3
3
  "description": "Generate spec-compliant Design Tokens from CSS.",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "license": "EUPL-1.2",
6
6
  "author": "Bart Veneman <bart@projectwallace.com>",
7
7
  "repository": {