@neovici/cosmoz-rating 1.0.0 → 1.1.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.
@@ -1,4 +1,4 @@
1
- import { CosmozRatingElement } from '../../types/cosmoz-rating.types';
1
+ import { CosmozRatingElement } from '../types';
2
2
  declare const useRating: (host: CosmozRatingElement) => {
3
3
  rating: number | null;
4
4
  disabled: boolean;
@@ -1,4 +1,4 @@
1
- import { CosmozRatingElement } from '../types/cosmoz-rating.types';
1
+ import { CosmozRatingElement } from './types';
2
2
  declare const CosmozRating: import("@pionjs/pion/lib/component").ComponentConstructor<CosmozRatingElement>;
3
3
  export { CosmozRating };
4
4
  export default CosmozRating;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cosmoz-rating",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "A simple rating web component",
5
5
  "keywords": [
6
6
  "web-components",
@@ -1,13 +0,0 @@
1
- export interface RatingEvent extends CustomEvent {
2
- detail: {
3
- rating: number;
4
- };
5
- }
6
-
7
- export interface CosmozRatingProps {
8
- rating?: number | null;
9
- disabled?: boolean;
10
- maxRating?: number;
11
- }
12
-
13
- export interface CosmozRatingElement extends HTMLElement, CosmozRatingProps {}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes