Skip to content

Commit

Permalink
Update package version and demo
Browse files Browse the repository at this point in the history
  • Loading branch information
farengeyt451 committed Feb 5, 2024
1 parent d8fe721 commit 6c034d8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tippy-wrapper",
"version": "6.2.2",
"version": "6.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<h2 class="header__title">ngx-tippy-wrapper</h2>
<tui-badge
status="custom"
value="v6.2.2"
value="v6.3.0"
class="header__badge"
></tui-badge>
</div>
Expand Down
19 changes: 17 additions & 2 deletions projects/ngx-tippy-demo/src/app/pages/props/snippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export class PropsComponent {

const PROPS_DEFAULT = `import { NGX_TIPPY_CONFIG } from 'ngx-tippy-wrapper';
// Component providers
@Component({
...
providers: [
{
provide: NGX_TIPPY_CONFIG,
Expand All @@ -44,8 +46,21 @@ const PROPS_DEFAULT = `import { NGX_TIPPY_CONFIG } from 'ngx-tippy-wrapper';
}
]
})
export class DemoComponent {
}`;
// Module providers
@NgModule({
...
providers: [
{
provide: NGX_TIPPY_CONFIG,
useValue: {
...
},
}
]
})
`;

export const SNIPPETS = {
props_template: {
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-tippy-wrapper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-tippy-wrapper",
"version": "6.2.2",
"version": "6.3.0",
"description": "Angular wrapper for tippy.js",
"keywords": [
"angular tooltip",
Expand Down

0 comments on commit 6c034d8

Please sign in to comment.