File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- import { DEFAULT_HEADLINE , DEFAULT_TEXT } from ".. /defaults.ts" ;
2
- import { CustomTypeDefinitions , TypeDefinition } from ".. /types.ts" ;
3
- import { createRemClamp } from ".. /utils/createRemClamp.ts" ;
4
- import { typedKeys } from ".. /utils/typedKeys.ts" ;
1
+ import { DEFAULT_HEADLINE , DEFAULT_TEXT } from "./defaults.ts" ;
2
+ import { CustomTypeDefinitions , TypeDefinition } from "./types.ts" ;
3
+ import { createRemClamp } from "./utils/createRemClamp.ts" ;
4
+ import { typedKeys } from "./utils/typedKeys.ts" ;
5
5
6
6
type AddUtilities = {
7
7
( utilities : Record < string , any > , options ?: any ) : void ;
@@ -16,7 +16,7 @@ type AddUtilities = {
16
16
*/
17
17
export function buenTypeTailwind (
18
18
{ addUtilities } : { addUtilities : AddUtilities } ,
19
- options ?: CustomTypeDefinitions ,
19
+ options ?: CustomTypeDefinitions
20
20
) : void {
21
21
const generateStyles = ( definition : TypeDefinition ) => {
22
22
let styles : TypeDefinition = {
@@ -47,7 +47,7 @@ export function buenTypeTailwind(
47
47
definition . clamp [ 0 ] ,
48
48
definition . clamp [ 1 ] ,
49
49
customMinScreenSize ,
50
- customMaxScreenSize ,
50
+ customMaxScreenSize
51
51
) ;
52
52
}
53
53
Original file line number Diff line number Diff line change 57
57
*
58
58
* @module
59
59
*/
60
- export { buenTypeTailwind } from "./tailwind-plugin/ buenTypeTailwind.ts" ;
60
+ export { buenTypeTailwind } from "./buenTypeTailwind.ts" ;
61
61
62
62
/**
63
63
* A module that provides a function to create a `rem`-based `clamp` function.
You can’t perform that action at this time.
0 commit comments