@entur/chip
Advanced tools
Comparing version 0.3.39 to 0.3.40
@@ -6,2 +6,11 @@ # Change Log | ||
## [0.3.40](https://bitbucket.org/enturas/design-system/compare/@entur/chip@0.3.39...@entur/chip@0.3.40) (2020-12-04) | ||
### Bug Fixes | ||
- **actionchip:** improve typings ([3999811](https://bitbucket.org/enturas/design-system/commits/399981153891f5131bd7af1e28bb5fc7f8fdf874)) | ||
- **choicechip:** improve typings ([17b93c1](https://bitbucket.org/enturas/design-system/commits/17b93c197b05c277cec1b9bc28b0106b7e244be0)) | ||
- **filterchip:** improve typings ([c9ad609](https://bitbucket.org/enturas/design-system/commits/c9ad6099243911b427885382dc0f5c1001cdee1d)) | ||
- **tagchip:** improve typings ([33b4310](https://bitbucket.org/enturas/design-system/commits/33b431078ac73cde364a40dd27a44c4497f58d89)) | ||
## [0.3.39](https://bitbucket.org/enturas/design-system/compare/@entur/chip@0.3.38...@entur/chip@0.3.39) (2020-11-26) | ||
@@ -8,0 +17,0 @@ |
@@ -9,4 +9,8 @@ import React from 'react'; | ||
className?: string; | ||
[key: string]: any; | ||
}; | ||
export declare const ActionChip: React.ForwardRefExoticComponent<Pick<ActionChipProps, React.ReactText> & React.RefAttributes<HTMLButtonElement>>; | ||
} & React.ButtonHTMLAttributes<HTMLButtonElement>; | ||
export declare const ActionChip: React.ForwardRefExoticComponent<{ | ||
/** Teksten som vises i ActionChip */ | ||
children: React.ReactNode; | ||
/** Ekstra klassenavn */ | ||
className?: string | undefined; | ||
} & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>; |
@@ -15,4 +15,14 @@ import React from 'react'; | ||
value: string; | ||
[key: string]: any; | ||
}; | ||
export declare const ChoiceChip: React.ForwardRefExoticComponent<Pick<ChoiceChipProps, React.ReactText> & React.RefAttributes<HTMLInputElement>>; | ||
} & React.InputHTMLAttributes<HTMLInputElement>; | ||
export declare const ChoiceChip: React.ForwardRefExoticComponent<{ | ||
/** Ekstra klassenavn */ | ||
className?: string | undefined; | ||
/** Om Choicechip er deaktivert eller ikke | ||
* @default false | ||
*/ | ||
disabled?: boolean | undefined; | ||
/** Label til ChoiceChip */ | ||
children?: React.ReactNode; | ||
/** Verdien til ChoiceChip */ | ||
value: string; | ||
} & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>; |
@@ -11,4 +11,10 @@ import React from 'react'; | ||
value: string; | ||
[key: string]: any; | ||
}; | ||
export declare const FilterChip: React.ForwardRefExoticComponent<Pick<FilterChipProps, React.ReactText> & React.RefAttributes<HTMLInputElement>>; | ||
} & React.InputHTMLAttributes<HTMLInputElement>; | ||
export declare const FilterChip: React.ForwardRefExoticComponent<{ | ||
/** Ekstra klassenavn */ | ||
className?: string | undefined; | ||
/** Label til FilterChip */ | ||
children?: React.ReactNode; | ||
/** Verdien til FilterChip */ | ||
value: string; | ||
} & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>; |
@@ -11,4 +11,3 @@ import React from 'react'; | ||
onClose: () => void; | ||
[key: string]: any; | ||
}; | ||
export declare const TagChip: React.ForwardRefExoticComponent<Pick<TagChipProps, React.ReactText> & React.RefAttributes<HTMLButtonElement>>; | ||
export declare const TagChip: React.ForwardRefExoticComponent<TagChipProps & React.RefAttributes<HTMLButtonElement>>; |
{ | ||
"name": "@entur/chip", | ||
"version": "0.3.39", | ||
"version": "0.3.40", | ||
"license": "EUPL-1.2", | ||
@@ -30,8 +30,8 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@entur/form": "^4.0.7", | ||
"@entur/tokens": "^2.0.0", | ||
"@entur/utils": "^0.3.0", | ||
"@entur/form": "^4.0.8", | ||
"@entur/tokens": "^2.0.1", | ||
"@entur/utils": "^0.4.0", | ||
"classnames": "^2.2.6" | ||
}, | ||
"gitHead": "b70703a20d29ead5e5b79a18fd16fc9b84813599" | ||
"gitHead": "2016f005f88a8a1ebd8b31801d266dcbc367d5bc" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90710
651
- Removed@entur/utils@0.3.0(transitive)
Updated@entur/form@^4.0.8
Updated@entur/tokens@^2.0.1
Updated@entur/utils@^0.4.0