@jobber/design 0.109.0 → 0.111.0
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/dist/assets/icon.map.d.ts +1706 -224
- package/dist/icon.map.js +2325 -825
- package/dist/iconStyles/icons.types.d.ts +11 -0
- package/dist/index.cjs +2347 -908
- package/dist/index.d.ts +11 -11
- package/dist/index.mjs +2346 -909
- package/dist/scripts/iconMap.types.d.ts +11 -0
- package/package.json +2 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { iconSizes } from "./iconSizes";
|
|
2
|
+
import { iconColors } from "./iconColors";
|
|
3
|
+
import iconMap from "../assets/icon.map";
|
|
4
|
+
import type { GeneratedIconEntry } from "../scripts/iconMap.types";
|
|
5
|
+
export type { IconPath } from "../scripts/iconMap.types";
|
|
6
|
+
export type IconColorNames = keyof typeof iconColors.tokens;
|
|
7
|
+
export interface IconEntry extends GeneratedIconEntry {
|
|
8
|
+
readonly defaultColor?: IconColorNames;
|
|
9
|
+
}
|
|
10
|
+
export type IconNames = Extract<keyof typeof iconMap.icons, string>;
|
|
11
|
+
export type IconSizes = keyof typeof iconSizes.tokens;
|