Просмотр исходного кода

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

lfabl 2 недель назад
Родитель
Сommit
2952d4ad0f
2 измененных файлов с 2 добавлено и 2 удалено
  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",
     "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.",
     "description": "NİBGAT® | NCore - UI Kit for React-Native Mobile Apps.",
     "main": "./lib/module/index.js",
     "main": "./lib/module/index.js",
     "types": "./lib/typescript/src/index.d.ts",
     "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
         return <Button
+            variant="filled"
             type="neutral"
             type="neutral"
             {...secondaryButtonProps}
             {...secondaryButtonProps}
             onPress={() => {
             onPress={() => {
@@ -213,7 +214,6 @@ const Dialog: RefForwardingComponent<IDialogRef, IDialogProps> = ({
             spreadBehaviour={contentJustify === "centered" ? "stretch" : "free"}
             spreadBehaviour={contentJustify === "centered" ? "stretch" : "free"}
             title={secondaryButtonProps?.title || localize("cancel")}
             title={secondaryButtonProps?.title || localize("cancel")}
             style={secondaryButtonStyle}
             style={secondaryButtonStyle}
-            variant="outline"
         />;
         />;
     };
     };