Skip to content

Commit

Permalink
nitrozen dialog button issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush Jain authored and Aayush Jain committed Jul 28, 2020
1 parent bf29211 commit 0a44af8
Show file tree
Hide file tree
Showing 8 changed files with 102 additions and 87 deletions.
85 changes: 45 additions & 40 deletions dist/nitrozen.common.js

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

2 changes: 1 addition & 1 deletion dist/nitrozen.common.js.map

Large diffs are not rendered by default.

85 changes: 45 additions & 40 deletions dist/nitrozen.umd.js

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

2 changes: 1 addition & 1 deletion dist/nitrozen.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/nitrozen.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/nitrozen.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gofynd/nitrozen-vue",
"version": "0.0.17",
"version": "0.0.18",
"description": "Fynd Design Library for Vue",
"homepage": "https://github.com/gofynd/nitrozen-vue#readme",
"author": "Aayush Jain<aayushjain3011@gmail.com>",
Expand Down
9 changes: 7 additions & 2 deletions src/components/NDialog/NDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<nitrozen-button
v-if="positiveButtonLabel"
:theme="`${theme || 'secondary'}`"
v-flat-btn
v-flatBtn
class="nitrozen-dialog-footer-button-margin"
@click="close(positiveButtonLabel)"
>{{ positiveButtonLabel }}</nitrozen-button
Expand All @@ -47,7 +47,7 @@
<nitrozen-button
v-if="negativeButtonLabel"
:theme="`${theme || 'secondary'}`"
v-stroke-btn
v-strokeBtn
@click="close(negativeButtonLabel)"
>{{ negativeButtonLabel }}</nitrozen-button
>
Expand All @@ -62,12 +62,17 @@
import NitrozenUuid from "./../../utils/NUuid";
import NitrozenButton from "./../NBtn";
import NitrozenInline from "./../NInline";
import { flatBtn, strokeBtn } from "./../../directives/index";
export default {
name: "nitrozen-dialog",
components: {
"nitrozen-button": NitrozenButton,
"nitrozen-inline": NitrozenInline,
},
directives:{
flatBtn,
strokeBtn
},
props: {
/**
* Unique identifier
Expand Down

0 comments on commit 0a44af8

Please sign in to comment.