@dicebear/micah 4.10.0 → 5.0.0-alpha.10
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/README.md +6 -5
- package/dist/index.d.ts +35 -16
- package/dist/index.d.ts.map +1 -0
- package/dist/index.es.js +591 -690
- package/dist/index.es.js.map +1 -0
- package/dist/index.js +595 -697
- package/dist/index.js.map +1 -0
- package/package.json +14 -9
- package/dist/colors/base.d.ts +0 -2
- package/dist/colors/earring.d.ts +0 -2
- package/dist/colors/eyeShadow.d.ts +0 -2
- package/dist/colors/eyebrow.d.ts +0 -2
- package/dist/colors/facialHair.d.ts +0 -2
- package/dist/colors/glasses.d.ts +0 -2
- package/dist/colors/hair.d.ts +0 -2
- package/dist/colors/index.d.ts +0 -9
- package/dist/colors/mouth.d.ts +0 -2
- package/dist/colors/shirt.d.ts +0 -2
- package/dist/components/base.d.ts +0 -2
- package/dist/components/earrings.d.ts +0 -2
- package/dist/components/ears.d.ts +0 -2
- package/dist/components/eyebrows.d.ts +0 -2
- package/dist/components/eyes.d.ts +0 -2
- package/dist/components/facialHair.d.ts +0 -2
- package/dist/components/glasses.d.ts +0 -2
- package/dist/components/hair.d.ts +0 -2
- package/dist/components/index.d.ts +0 -11
- package/dist/components/mouth.d.ts +0 -2
- package/dist/components/nose.d.ts +0 -2
- package/dist/components/shirt.d.ts +0 -2
- package/dist/core.d.ts +0 -3
- package/dist/hooks/onPostCreate.d.ts +0 -11
- package/dist/hooks/onPreCreate.d.ts +0 -8
- package/dist/index.umd.js +0 -11
- package/dist/options.d.ts +0 -60
- package/dist/schema.d.ts +0 -2
- package/dist/static-types.d.ts +0 -16
- package/dist/utils/pickColor.d.ts +0 -3
- package/dist/utils/pickComponent.d.ts +0 -3
package/dist/static-types.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare type ColorGroup = Record<string, ColorGroupItem>;
|
|
2
|
-
export declare type ColorGroupCollection = Record<string, ColorGroup>;
|
|
3
|
-
export declare type ColorGroupItem = string;
|
|
4
|
-
export declare type ColorPickCollection = Record<string, ColorPick>;
|
|
5
|
-
export declare type ColorPick = {
|
|
6
|
-
name: string;
|
|
7
|
-
value: ColorGroupItem;
|
|
8
|
-
};
|
|
9
|
-
export declare type ComponentGroup = Record<string, ComponentGroupItem>;
|
|
10
|
-
export declare type ComponentGroupCollection = Record<string, ComponentGroup>;
|
|
11
|
-
export declare type ComponentGroupItem = (components: ComponentPickCollection, colors: ColorPickCollection) => string;
|
|
12
|
-
export declare type ComponentPickCollection = Record<string, ComponentPick>;
|
|
13
|
-
export declare type ComponentPick = {
|
|
14
|
-
name: string;
|
|
15
|
-
value: ComponentGroupItem;
|
|
16
|
-
} | undefined;
|