Browse Source

Merge branch 'release/1.1.0-alpha.9' into develop

lfabl 2 weeks ago
parent
commit
2952d4ad0f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package.json
  2. 1 1
      src/components/dialog/index.tsx

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
     "name": "ncore-ui-kit",
-    "version": "1.1.0-alpha.8",
+    "version": "1.1.0-alpha.9",
     "description": "NİBGAT® | NCore - UI Kit for React-Native Mobile Apps.",
     "main": "./lib/module/index.js",
     "types": "./lib/typescript/src/index.d.ts",

+ 1 - 1
src/components/dialog/index.tsx

@@ -199,6 +199,7 @@ const Dialog: RefForwardingComponent<IDialogRef, IDialogProps> = ({
         }
 
         return <Button
+            variant="filled"
             type="neutral"
             {...secondaryButtonProps}
             onPress={() => {
@@ -213,7 +214,6 @@ const Dialog: RefForwardingComponent<IDialogRef, IDialogProps> = ({
             spreadBehaviour={contentJustify === "centered" ? "stretch" : "free"}
             title={secondaryButtonProps?.title || localize("cancel")}
             style={secondaryButtonStyle}
-            variant="outline"
         />;
     };