inviton-powerduck 0.0.92 → 0.0.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,7 @@ import { PortalUtils } from "./utils/utils";
4
4
  import { isNullOrEmpty } from "./utils/is-null-or-empty";
5
5
  import { ButtonLayout } from "../components/button/button-layout";
6
6
  import PowerduckState from "../app/powerduck-state";
7
+ import './../components/sweetalert2/css/sweetalert2.css';
7
8
 
8
9
  export enum DialogResult {
9
10
  Confirm = 0,
@@ -77,7 +77,7 @@ export default class CountryUtils {
77
77
  if (twoLetterCode == null) {
78
78
  return null;
79
79
  } else {
80
- twoLetterCode = twoLetterCode.toUpperCase();
80
+ twoLetterCode = twoLetterCode.toLowerCase();
81
81
  }
82
82
 
83
83
  return CountryUtils.getCountryCodeArr().find(p => p.twoLetters == twoLetterCode);
@@ -1,5 +1,6 @@
1
1
  import { toNative, Prop } from "vue-facing-decorator";
2
2
  import TsxComponent, { Component } from "../../app/vuetsx";
3
+ import './../sweetalert2/css/sweetalert2.css';
3
4
 
4
5
  interface ModalAnimationErrorArgs {
5
6
  visible: boolean;
@@ -1,5 +1,6 @@
1
1
  import { toNative, Prop } from "vue-facing-decorator";
2
2
  import TsxComponent, { Component } from "../../app/vuetsx";
3
+ import './../sweetalert2/css/sweetalert2.css';
3
4
 
4
5
  interface ModalAnimationSuccessArgs {
5
6
  visible: boolean;
@@ -1,5 +1,6 @@
1
1
  import { toNative, Prop } from "vue-facing-decorator";
2
2
  import TsxComponent, { Component } from "../../app/vuetsx";
3
+ import './../sweetalert2/css/sweetalert2.css';
3
4
 
4
5
  interface ModalIconQuestionArgs {
5
6
  visible: boolean;
@@ -1,5 +1,6 @@
1
1
  import { toNative, Prop } from "vue-facing-decorator";
2
2
  import TsxComponent, { Component } from "../../app/vuetsx";
3
+ import './../sweetalert2/css/sweetalert2.css';
3
4
 
4
5
  interface ModalIconWarningArgs {
5
6
  visible: boolean;