@payfit/unity-themes 2.65.13 → 2.65.14

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.
@@ -1,3 +1,3 @@
1
1
  import { Config, Dictionary, PlatformConfig } from 'style-dictionary/types';
2
- export declare function appendAnimations(dictionary: Dictionary, config: PlatformConfig, options: Config): void;
3
- export declare function removeAnimations(dictionary: Dictionary, config: PlatformConfig, options: Config): void;
2
+ export declare function appendAnimations(_dictionary: Dictionary, config: PlatformConfig, options: Config): void;
3
+ export declare function removeAnimations(_dictionary: Dictionary, config: PlatformConfig, options: Config): void;
@@ -1,4 +1,3 @@
1
1
  import { Token } from 'style-dictionary';
2
- import { Config, PlatformConfig } from 'style-dictionary/types';
3
- export declare function filter(token: Token, options: Config): boolean;
4
- export declare const transform: (token: import('style-dictionary/types').TransformedToken, config: PlatformConfig, options: Config, vol?: import('style-dictionary/types').Volume) => string | Promise<string>;
2
+ export declare function filter(token: Token): boolean;
3
+ export declare const transform: (token: import('style-dictionary/types').TransformedToken, config: import('style-dictionary/types').PlatformConfig, options: import('style-dictionary/types').Config, vol?: import('style-dictionary/types').Volume) => string | Promise<string>;
@@ -1,4 +1,3 @@
1
1
  import { Token } from 'style-dictionary';
2
- import { Config, PlatformConfig } from 'style-dictionary/types';
3
- export declare function filter(token: Token, options: Config): boolean;
4
- export declare const transform: (token: import('style-dictionary/types').TransformedToken, config: PlatformConfig, options: Config, vol?: import('style-dictionary/types').Volume) => string | Promise<string>;
2
+ export declare function filter(token: Token): boolean;
3
+ export declare const transform: (token: import('style-dictionary/types').TransformedToken, config: import('style-dictionary/types').PlatformConfig, options: import('style-dictionary/types').Config, vol?: import('style-dictionary/types').Volume) => string | Promise<string>;
@@ -6,7 +6,7 @@ export type TokenWithCTIAttrs = TransformedToken & {
6
6
  item: string;
7
7
  };
8
8
  };
9
- export type BreakpointToken = TransformedToken & {
9
+ export type BreakpointToken = Omit<TransformedToken, '$value' | '$type'> & {
10
10
  $value: string;
11
11
  $type: 'dimension';
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payfit/unity-themes",
3
- "version": "2.65.13",
3
+ "version": "2.65.14",
4
4
  "main": "./dist/esm/index.js",
5
5
  "types": "./dist/esm/index.d.ts",
6
6
  "style": "./dist/css/unity.css",