Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-garaev committed Apr 3, 2024
1 parent fc26fa5 commit 7220c79
Show file tree
Hide file tree
Showing 84 changed files with 2,694 additions and 1,546 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ All brand icons are trademarks of their respective owners. The use of these trad

## A product of Htmlstream

Preline UI is built and maintained by [Htmlstream](https://htmlstream.com) team. Over the last decade at Htmlstream, our journey has involved crafting UI Components and Templates. This process has allowed us to understand and explore a range of strategies for developing versatile UI designs that can adapt to a variety of needs.
Preline UI is built and maintend by [Htmlstream](https://htmlstream.com) team. Over the last decade at Htmlstream, our journey has involved crafting UI Components and Templates. This process has allowed us to understand and explore a range of strategies for developing versatile UI designs that can adapt to a variety of needs.

Share your thoughts about Preline on [Twitter](https://twitter.com/prelineUI) or leave supportive review on [ProductHunt](https://www.producthunt.com/products/preline-ui/reviews).
11 changes: 6 additions & 5 deletions dist/accordion.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@

export interface IAccordion {
options?: {};
show(): void;
hide(): void;
}

export interface IBasePlugin<O, E> {
el: E;
options?: O;
Expand All @@ -22,6 +18,11 @@ export interface ICollectionItem<T> {
id: string | number;
element: T;
}
export interface IAccordion {
options?: {};
show(): void;
hide(): void;
}
declare class HSAccordion extends HSBasePlugin<{}> implements IAccordion {
private readonly toggle;
content: HTMLElement | null;
Expand Down
6 changes: 3 additions & 3 deletions dist/accordion.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 15 additions & 14 deletions dist/carousel.d.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@

export interface ICarouselOptions {
currentIndex: number;
loadingClasses?: string | string[];
isAutoPlay?: boolean;
speed?: number;
isInfiniteLoop?: boolean;
}
export interface ICarousel {
options?: ICarouselOptions;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
}

export interface IBasePlugin<O, E> {
el: E;
options?: O;
Expand All @@ -31,6 +18,20 @@ export interface ICollectionItem<T> {
id: string | number;
element: T;
}
export interface ICarouselOptions {
currentIndex: number;
loadingClasses?: string | string[];
isAutoPlay?: boolean;
speed?: number;
isInfiniteLoop?: boolean;
}
export interface ICarousel {
options?: ICarouselOptions;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
}
declare class HSCarousel extends HSBasePlugin<ICarouselOptions> implements ICarousel {
private readonly inner;
private readonly slides;
Expand Down
4 changes: 2 additions & 2 deletions dist/carousel.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions dist/collapse.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@

export interface ICollapse {
options?: {};
show(): void;
hide(): void;
}

export interface IBasePlugin<O, E> {
el: E;
options?: O;
Expand All @@ -22,6 +18,11 @@ export interface ICollectionItem<T> {
id: string | number;
element: T;
}
export interface ICollapse {
options?: {};
show(): void;
hide(): void;
}
declare class HSCollapse extends HSBasePlugin<{}> implements ICollapse {
private readonly contentId;
content: HTMLElement | null;
Expand Down
Loading

0 comments on commit 7220c79

Please sign in to comment.