|
1 | 1 | import {CssLikeObject} from './common';
|
2 | 2 | import {RulePatch} from './addon/rule';
|
| 3 | +import {DrulePatch} from './addon/drule'; |
| 4 | +import {UnitsPatch} from './addon/units'; |
3 | 5 |
|
4 | 6 | /*
|
5 | 7 | interface NanoRenderer extends Partial<IUnits> {
|
6 |
| - client: boolean; |
7 |
| - raw: string; |
8 |
| - pfx: string; |
9 |
| - putRaw: (rawCss: string) => void; |
10 |
| - put: (selector: string, css: ICssLikeObject, atrule?: string) => void; |
11 |
| - rule?: (css: ICssLikeObject, block?: string) => string; |
12 |
| - drule?: (css: ICssLikeObject, block?: string) => TDynamicCss; |
13 | 8 | sheet?: (cssMap: {[s: string]: ICssLikeObject}, block?: string) => {[s: string]: string};
|
14 | 9 | dsheet?: (cssMap: {[s: string]: ICssLikeObject}, block?: string) => {[s: string]: TDynamicCss};
|
15 | 10 | jsx?: (
|
@@ -50,7 +45,7 @@ interface NanoRenderer extends Partial<IUnits> {
|
50 | 45 | }
|
51 | 46 | */
|
52 | 47 |
|
53 |
| -export interface NanoRenderer extends Partial<RulePatch> { |
| 48 | +export interface NanoRenderer extends Partial<RulePatch>, Partial<UnitsPatch>, Partial<DrulePatch> { |
54 | 49 | /**
|
55 | 50 | * Equals to `true` if in browser environment.
|
56 | 51 | */
|
@@ -103,15 +98,53 @@ export interface NanoRenderer extends Partial<RulePatch> {
|
103 | 98 | put: (selector: string, css: CssLikeObject, atrule?: string) => void;
|
104 | 99 | }
|
105 | 100 |
|
106 |
| -interface INanoOptions { |
| 101 | +interface Options { |
| 102 | + /** |
| 103 | + * Prefix added to all class names and animation names. |
| 104 | + */ |
107 | 105 | pfx?: string;
|
| 106 | + |
| 107 | + /** |
| 108 | + * Hyperscript function of your virtual DOM library. Needed only if you use |
| 109 | + * addons (like `jsx`, `style`, `styled`, `component`) that create components. |
| 110 | + * |
| 111 | + * ```js |
| 112 | + * const nano = create({ |
| 113 | + * h: React.createElement, |
| 114 | + * }); |
| 115 | + * ``` |
| 116 | + */ |
108 | 117 | h?: (...args) => any;
|
| 118 | + |
| 119 | + /** |
| 120 | + * Stylesheet `<sheet>` to be used to inject CSS. If not provided, one will |
| 121 | + * be automatically created. You can also provide an external stylesheet |
| 122 | + * `<link>`, but then you need to set proper attributes on it: `rel="stylesheet" type="text/css"`. |
| 123 | + * |
| 124 | + * ```js |
| 125 | + * const nano = create({ |
| 126 | + * sh: typeof window === 'object' ? document.getElementById('nano-css') : undefined, |
| 127 | + * }); |
| 128 | + * ``` |
| 129 | + */ |
109 | 130 | sh?: CSSStyleSheet;
|
| 131 | + |
| 132 | + /** |
| 133 | + * Whether to be chatty in DEV mode. |
| 134 | + */ |
110 | 135 | verbose?: boolean;
|
| 136 | + |
| 137 | + /** |
| 138 | + * Defaults to `Object.assign`. |
| 139 | + */ |
111 | 140 | assign?: (...objects: object[]) => object;
|
| 141 | + |
| 142 | + /** |
| 143 | + * Defaults to `JSON.stringify`. |
| 144 | + */ |
112 | 145 | stringify?: (obj: object) => string;
|
113 | 146 | }
|
114 | 147 |
|
115 |
| -type CreateNano = (options?: INanoOptions) => NanoRenderer; |
| 148 | +type CreateNano = (options?: Options) => NanoRenderer; |
116 | 149 |
|
117 | 150 | export const create: CreateNano;
|
0 commit comments