@kigi/components 1.32.0-alpha → 1.33.0-alpha

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kigi/components",
3
- "version": "1.32.0-alpha",
3
+ "version": "1.33.0-alpha",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -4,6 +4,7 @@
4
4
  }
5
5
  .mbg-date-between {
6
6
  display: flex;
7
+ width: 100%;
7
8
  }
8
9
  .mbg-date-between-space {
9
10
  display: flex;
@@ -13,9 +14,6 @@
13
14
  }
14
15
  }
15
16
 
16
- .mbg-input-wrapper {
17
- display: block;
18
- }
19
17
 
20
18
  body {
21
19
  .datepicker-top-left, .datepicker-top-right {
@@ -22,5 +22,4 @@ export interface ConfirmAlert {
22
22
  buttons?: ButtonConfirmModal[]
23
23
  focusClose?: boolean
24
24
  showCloseButton?: boolean
25
- certificateExpiration?: boolean
26
25
  }
@@ -55,34 +55,8 @@
55
55
  </g>
56
56
  </svg>
57
57
  </div>
58
-
59
- <div class="information-wrapper"
60
- ng-if="$ctrl.certificateExpiration">
61
- <button ng-if="$ctrl.config.showCloseButton"
62
- class="close-button"
63
- ng-click="$ctrl.dismiss()">x</button>
64
- <h3>{{$ctrl.config.title}}</h3>
65
- <h5>{{$ctrl.config.message}}</h5>
66
- <p class="message-certificate">Para atualizar o certificado digital siga os passos abaixo:</p>
67
- <p class="message-bold"> Caso você não tenha o seu novo certificado, entre em contato com seu contador ou
68
- certificadora. Lembre-se sempre de adquirir o modelo A1!</p>
69
- <p class="message-certificate">Na tela inicial, clique na seta próxima ao nome da empresa,
70
- Selecione <strong>"Editar Organização"</strong>.</p>
71
- <p class="message-certificate">
72
- Seção <strong>"04. NOTA FISCAL"</strong>. Opção <strong>"ALTERAR ARQUIVO"</strong>.</p>
73
- <p class="message-certificate">
74
- Carregue o arquivo do seu novo certificado digital e digite a senha ao lado.</p>
75
- <p class="message-certificate">
76
- Clique em <strong>"SALVAR"</strong>. Pronto, certificado atualizado!</p>
77
- <p class="message-certificate">
78
- Caso ainda tenha dúvidas, fale com nossa assistente virtual no canto direito da tela.</p>
79
- </div>
80
-
81
- <div class="information-wrapper"
82
- ng-if="!$ctrl.certificateExpiration">
83
- <button ng-if="$ctrl.config.showCloseButton"
84
- class="close-button"
85
- ng-click="$ctrl.dismiss()">x</button>
58
+ <div class="information-wrapper">
59
+ <button ng-if="$ctrl.config.showCloseButton" class="close-button" ng-click="$ctrl.dismiss()">x</button>
86
60
  <h3>{{$ctrl.config.title}}</h3>
87
61
  <p ng-if="$ctrl.config.message"
88
62
  class="message">{{$ctrl.config.message}}</p>
@@ -149,4 +123,4 @@
149
123
  <label ng-click="$ctrl.notShowAgain = !$ctrl.notShowAgain">Não exibir novamente</label>
150
124
  <mbg-checkbox ng-model="$ctrl.notShowAgain"></mbg-checkbox>
151
125
  </div>
152
- </div>
126
+ </div>
@@ -49,21 +49,6 @@
49
49
  white-space: pre-line;
50
50
  }
51
51
 
52
- p.message-bold{
53
- color: var(--warn);
54
- font-size: 16px;
55
- font-weight: bold;
56
- text-align: center;
57
- margin-bottom: 10px;
58
- }
59
-
60
- p.message-certificate{
61
- text-align: center;
62
- color: var(--neutral2);
63
- margin-bottom: 12px;
64
- }
65
-
66
-
67
52
  .tip-wrapper {
68
53
  p {
69
54
  margin: 0px 0 26px 0;
@@ -9,7 +9,6 @@ class MbgCofirmAlertController {
9
9
  private disabledAll: boolean
10
10
  private idConfirm = UtilUID.generete()
11
11
  private idClose = UtilUID.generete()
12
- private certificateExpiration
13
12
 
14
13
  constructor(
15
14
  public $scope,
@@ -35,8 +34,6 @@ class MbgCofirmAlertController {
35
34
  this.config.visibleCancel =
36
35
  this.config.visibleCancel !== undefined ? this.config.visibleCancel : true
37
36
  this.inputValue = this.config && this.config.inputValue ? this.config.inputValue : ''
38
-
39
- this.certificateExpiration = this.config && this.config.certificateExpiration ? true : false
40
37
  }
41
38
 
42
39
  formatValueString(value) {