@peculiar/certificates-viewer 1.17.1 → 1.17.2

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.
@@ -6836,7 +6836,7 @@ var build = l10n.createCommonjsModule(function (module, exports) {
6836
6836
 
6837
6837
  (function (global, factory) {
6838
6838
  factory(exports) ;
6839
- }(l10n.commonjsGlobal, (function (exports) {
6839
+ })(l10n.commonjsGlobal, (function (exports) {
6840
6840
  class BufferSourceConverter {
6841
6841
  static isArrayBuffer(data) {
6842
6842
  return Object.prototype.toString.call(data) === '[object ArrayBuffer]';
@@ -6871,6 +6871,19 @@ var build = l10n.createCommonjsModule(function (module, exports) {
6871
6871
  return ArrayBuffer.isView(data)
6872
6872
  || (data && this.isArrayBuffer(data.buffer));
6873
6873
  }
6874
+ static isEqual(a, b) {
6875
+ const aView = BufferSourceConverter.toUint8Array(a);
6876
+ const bView = BufferSourceConverter.toUint8Array(b);
6877
+ if (aView.length !== bView.byteLength) {
6878
+ return false;
6879
+ }
6880
+ for (let i = 0; i < aView.length; i++) {
6881
+ if (aView[i] !== bView[i]) {
6882
+ return false;
6883
+ }
6884
+ }
6885
+ return true;
6886
+ }
6874
6887
  }
6875
6888
 
6876
6889
  class Utf8Converter {
@@ -7153,7 +7166,7 @@ var build = l10n.createCommonjsModule(function (module, exports) {
7153
7166
 
7154
7167
  Object.defineProperty(exports, '__esModule', { value: true });
7155
7168
 
7156
- })));
7169
+ }));
7157
7170
  });
7158
7171
 
7159
7172
  const index = l10n.unwrapExports(build);
@@ -9178,6 +9191,24 @@ exports.CertificatePolicies = CertificatePolicies_1 = __decorate([
9178
9191
  AsnType({ type: AsnTypeTypes.Sequence, itemType: PolicyInformation })
9179
9192
  ], exports.CertificatePolicies);
9180
9193
 
9194
+ let CRLNumber = class CRLNumber {
9195
+ constructor(value = 0) {
9196
+ this.value = value;
9197
+ }
9198
+ };
9199
+ __decorate([
9200
+ AsnProp({ type: AsnPropTypes.Integer })
9201
+ ], CRLNumber.prototype, "value", void 0);
9202
+ CRLNumber = __decorate([
9203
+ AsnType({ type: AsnTypeTypes.Choice })
9204
+ ], CRLNumber);
9205
+
9206
+ let BaseCRLNumber = class BaseCRLNumber extends CRLNumber {
9207
+ };
9208
+ BaseCRLNumber = __decorate([
9209
+ AsnType({ type: AsnTypeTypes.Choice })
9210
+ ], BaseCRLNumber);
9211
+
9181
9212
  var CRLDistributionPoints_1;
9182
9213
  const id_ce_cRLDistributionPoints = `${id_ce}.31`;
9183
9214
  var ReasonFlags;
@@ -9267,6 +9298,50 @@ exports.CRLDistributionPoints = CRLDistributionPoints_1 = __decorate([
9267
9298
  AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
9268
9299
  ], exports.CRLDistributionPoints);
9269
9300
 
9301
+ var FreshestCRL_1;
9302
+ let FreshestCRL = FreshestCRL_1 = class FreshestCRL extends exports.CRLDistributionPoints {
9303
+ constructor(items) {
9304
+ super(items);
9305
+ Object.setPrototypeOf(this, FreshestCRL_1.prototype);
9306
+ }
9307
+ };
9308
+ FreshestCRL = FreshestCRL_1 = __decorate([
9309
+ AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
9310
+ ], FreshestCRL);
9311
+
9312
+ class IssuingDistributionPoint {
9313
+ constructor(params = {}) {
9314
+ this.onlyContainsUserCerts = IssuingDistributionPoint.ONLY;
9315
+ this.onlyContainsCACerts = IssuingDistributionPoint.ONLY;
9316
+ this.indirectCRL = IssuingDistributionPoint.ONLY;
9317
+ this.onlyContainsAttributeCerts = IssuingDistributionPoint.ONLY;
9318
+ Object.assign(this, params);
9319
+ }
9320
+ ;
9321
+ ;
9322
+ ;
9323
+ ;
9324
+ }
9325
+ IssuingDistributionPoint.ONLY = false;
9326
+ __decorate([
9327
+ AsnProp({ type: DistributionPointName, context: 0, optional: true })
9328
+ ], IssuingDistributionPoint.prototype, "distributionPoint", void 0);
9329
+ __decorate([
9330
+ AsnProp({ type: AsnPropTypes.Boolean, context: 1, defaultValue: IssuingDistributionPoint.ONLY })
9331
+ ], IssuingDistributionPoint.prototype, "onlyContainsUserCerts", void 0);
9332
+ __decorate([
9333
+ AsnProp({ type: AsnPropTypes.Boolean, context: 2, defaultValue: IssuingDistributionPoint.ONLY })
9334
+ ], IssuingDistributionPoint.prototype, "onlyContainsCACerts", void 0);
9335
+ __decorate([
9336
+ AsnProp({ type: Reason, context: 3, optional: true })
9337
+ ], IssuingDistributionPoint.prototype, "onlySomeReasons", void 0);
9338
+ __decorate([
9339
+ AsnProp({ type: AsnPropTypes.Boolean, context: 4, defaultValue: IssuingDistributionPoint.ONLY })
9340
+ ], IssuingDistributionPoint.prototype, "indirectCRL", void 0);
9341
+ __decorate([
9342
+ AsnProp({ type: AsnPropTypes.Boolean, context: 5, defaultValue: IssuingDistributionPoint.ONLY })
9343
+ ], IssuingDistributionPoint.prototype, "onlyContainsAttributeCerts", void 0);
9344
+
9270
9345
  const id_ce_cRLReasons = `${id_ce}.21`;
9271
9346
  var CRLReasons;
9272
9347
  (function (CRLReasons) {
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-2973f90a.js');
6
- const download = require('./download-3b72f5e6.js');
6
+ const download = require('./download-78e61b1d.js');
7
7
  const l10n = require('./l10n-91045362.js');
8
8
 
9
9
  /**
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-2973f90a.js');
6
- const download = require('./download-3b72f5e6.js');
6
+ const download = require('./download-78e61b1d.js');
7
7
  const l10n = require('./l10n-91045362.js');
8
8
 
9
9
  const certificatesViewerCss = ":host{-webkit-box-sizing:border-box;box-sizing:border-box}:host *,:host *:before,:host *:after{-webkit-box-sizing:inherit;box-sizing:inherit}:host{display:block;width:100%;word-wrap:break-word;min-width:280px;overflow:auto;position:relative;background:white;background:rgba(var(--pv-color-light-rgb), 1)}table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0}table thead{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07)}table tr td{vertical-align:middle}table tbody tr:not(.expanded_summary){cursor:pointer}table tr{border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table th{padding:15px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table td{padding:8px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table .col_issuer,table .col_name,table .col_public_key{width:16%}table .col_actions,table .col_tests{width:18%}table.m_extra .col_issuer,table.m_extra .col_name,table.m_extra .col_public_key{width:12%}table.m_extra .col_actions,table.m_extra .col_tests{width:17%}table tr.expanded td:not(:last-child){border-right-color:transparent}table tr.expanded td{border-bottom-color:transparent}.expanded{border-bottom-color:transparent;background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary td{vertical-align:top;padding:10px 20px 26px}@-webkit-keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}.modal_wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;overflow:auto;text-align:center;-webkit-animation:fadeIn 200ms;animation:fadeIn 200ms;padding:30px 10px}.modal_wrapper:before{display:inline-block;vertical-align:middle;width:0;height:100%;content:\"\"}.modal_backdrop{background:rgba(42, 49, 52, 0.5);background:rgba(var(--pv-color-dark-rgb), 0.5);z-index:-1;position:fixed;top:0;right:0;bottom:0;left:0}.modal_container{position:relative;display:inline-block;vertical-align:middle;width:100%;max-width:900px;text-align:left;border-radius:3px;overflow:hidden;background-color:white;background-color:rgba(var(--pv-color-light-rgb), 1);height:100%}.modal_title{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);border-bottom-width:1px;border-bottom-style:solid;padding:20px 60px 16px 20px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:60px}.modal_content{height:calc(100% - 60px);overflow-y:auto}.modal_close{cursor:pointer;border:none;background-color:transparent;position:absolute;top:0;bottom:0;right:0;padding:0 12px;-webkit-transition:opacity 100ms;transition:opacity 100ms;outline:none}.modal_close:hover{opacity:0.6}.modal_close svg{fill:#2a3134;fill:rgba(var(--pv-color-dark-rgb), 1)}.button_table_action{margin:2px}.mobile_title{display:none}.status_wrapper{height:85px;text-align:center;pointer-events:none}.search_section{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);height:50px;padding:10px;border-width:1px 1px 0 1px;border-style:solid}.input_search{height:100%;width:100%;border-radius:3px;border-width:1px;border-style:solid;padding:0 14px;font-size:12px;outline:none;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);color:#2a3134;color:rgba(var(--pv-color-dark-rgb), 1)}.input_search::-moz-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search:-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-webkit-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.loading_container{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(42, 49, 52, 0.3);background:rgba(var(--pv-color-dark-rgb), 0.3);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.align_center{text-align:center}@media (hover: hover){table tbody tr:not(.expanded_summary):hover{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}}@media (max-width: 900px){table,tbody,tr,td{display:block}thead{display:none}tr{padding:0 15px;border-width:1px;border-style:solid}tr:not(:first-child){margin-top:-1px}tr:not(.expanded_summary) td:first-child{border:none !important}table td{padding-left:0;padding-right:0;border-width:1px 0 0 0 !important;border-color:rgba(209, 213, 217, 0.5);border-color:rgba(var(--pv-color-grey_3-rgb), 0.5)}table tr.expanded_summary td{padding:15px 0}.mobile_title{display:inline-block;width:90px;vertical-align:middle}.modal_title{padding:17px 60px 17px 15px}.content{display:inline-block;width:calc(100% - 90px);vertical-align:middle;text-align:left}.expanded_summary{border-top-color:transparent;padding-bottom:10px}.expanded_summary td:before{content:none}.status_wrapper{height:266px;display:table-cell}.search_section{height:60px;padding:15px}.align_center{text-align:inherit}}";
@@ -6834,7 +6834,7 @@ var build = createCommonjsModule(function (module, exports) {
6834
6834
 
6835
6835
  (function (global, factory) {
6836
6836
  factory(exports) ;
6837
- }(commonjsGlobal, (function (exports) {
6837
+ })(commonjsGlobal, (function (exports) {
6838
6838
  class BufferSourceConverter {
6839
6839
  static isArrayBuffer(data) {
6840
6840
  return Object.prototype.toString.call(data) === '[object ArrayBuffer]';
@@ -6869,6 +6869,19 @@ var build = createCommonjsModule(function (module, exports) {
6869
6869
  return ArrayBuffer.isView(data)
6870
6870
  || (data && this.isArrayBuffer(data.buffer));
6871
6871
  }
6872
+ static isEqual(a, b) {
6873
+ const aView = BufferSourceConverter.toUint8Array(a);
6874
+ const bView = BufferSourceConverter.toUint8Array(b);
6875
+ if (aView.length !== bView.byteLength) {
6876
+ return false;
6877
+ }
6878
+ for (let i = 0; i < aView.length; i++) {
6879
+ if (aView[i] !== bView[i]) {
6880
+ return false;
6881
+ }
6882
+ }
6883
+ return true;
6884
+ }
6872
6885
  }
6873
6886
 
6874
6887
  class Utf8Converter {
@@ -7151,7 +7164,7 @@ var build = createCommonjsModule(function (module, exports) {
7151
7164
 
7152
7165
  Object.defineProperty(exports, '__esModule', { value: true });
7153
7166
 
7154
- })));
7167
+ }));
7155
7168
  });
7156
7169
 
7157
7170
  const index = unwrapExports(build);
@@ -9176,6 +9189,24 @@ CertificatePolicies = CertificatePolicies_1 = __decorate([
9176
9189
  AsnType({ type: AsnTypeTypes.Sequence, itemType: PolicyInformation })
9177
9190
  ], CertificatePolicies);
9178
9191
 
9192
+ let CRLNumber = class CRLNumber {
9193
+ constructor(value = 0) {
9194
+ this.value = value;
9195
+ }
9196
+ };
9197
+ __decorate([
9198
+ AsnProp({ type: AsnPropTypes.Integer })
9199
+ ], CRLNumber.prototype, "value", void 0);
9200
+ CRLNumber = __decorate([
9201
+ AsnType({ type: AsnTypeTypes.Choice })
9202
+ ], CRLNumber);
9203
+
9204
+ let BaseCRLNumber = class BaseCRLNumber extends CRLNumber {
9205
+ };
9206
+ BaseCRLNumber = __decorate([
9207
+ AsnType({ type: AsnTypeTypes.Choice })
9208
+ ], BaseCRLNumber);
9209
+
9179
9210
  var CRLDistributionPoints_1;
9180
9211
  const id_ce_cRLDistributionPoints = `${id_ce}.31`;
9181
9212
  var ReasonFlags;
@@ -9265,6 +9296,50 @@ CRLDistributionPoints = CRLDistributionPoints_1 = __decorate([
9265
9296
  AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
9266
9297
  ], CRLDistributionPoints);
9267
9298
 
9299
+ var FreshestCRL_1;
9300
+ let FreshestCRL = FreshestCRL_1 = class FreshestCRL extends CRLDistributionPoints {
9301
+ constructor(items) {
9302
+ super(items);
9303
+ Object.setPrototypeOf(this, FreshestCRL_1.prototype);
9304
+ }
9305
+ };
9306
+ FreshestCRL = FreshestCRL_1 = __decorate([
9307
+ AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
9308
+ ], FreshestCRL);
9309
+
9310
+ class IssuingDistributionPoint {
9311
+ constructor(params = {}) {
9312
+ this.onlyContainsUserCerts = IssuingDistributionPoint.ONLY;
9313
+ this.onlyContainsCACerts = IssuingDistributionPoint.ONLY;
9314
+ this.indirectCRL = IssuingDistributionPoint.ONLY;
9315
+ this.onlyContainsAttributeCerts = IssuingDistributionPoint.ONLY;
9316
+ Object.assign(this, params);
9317
+ }
9318
+ ;
9319
+ ;
9320
+ ;
9321
+ ;
9322
+ }
9323
+ IssuingDistributionPoint.ONLY = false;
9324
+ __decorate([
9325
+ AsnProp({ type: DistributionPointName, context: 0, optional: true })
9326
+ ], IssuingDistributionPoint.prototype, "distributionPoint", void 0);
9327
+ __decorate([
9328
+ AsnProp({ type: AsnPropTypes.Boolean, context: 1, defaultValue: IssuingDistributionPoint.ONLY })
9329
+ ], IssuingDistributionPoint.prototype, "onlyContainsUserCerts", void 0);
9330
+ __decorate([
9331
+ AsnProp({ type: AsnPropTypes.Boolean, context: 2, defaultValue: IssuingDistributionPoint.ONLY })
9332
+ ], IssuingDistributionPoint.prototype, "onlyContainsCACerts", void 0);
9333
+ __decorate([
9334
+ AsnProp({ type: Reason, context: 3, optional: true })
9335
+ ], IssuingDistributionPoint.prototype, "onlySomeReasons", void 0);
9336
+ __decorate([
9337
+ AsnProp({ type: AsnPropTypes.Boolean, context: 4, defaultValue: IssuingDistributionPoint.ONLY })
9338
+ ], IssuingDistributionPoint.prototype, "indirectCRL", void 0);
9339
+ __decorate([
9340
+ AsnProp({ type: AsnPropTypes.Boolean, context: 5, defaultValue: IssuingDistributionPoint.ONLY })
9341
+ ], IssuingDistributionPoint.prototype, "onlyContainsAttributeCerts", void 0);
9342
+
9268
9343
  const id_ce_cRLReasons = `${id_ce}.21`;
9269
9344
  var CRLReasons;
9270
9345
  (function (CRLReasons) {
@@ -1,5 +1,5 @@
1
1
  import { h, r as registerInstance, H as Host, c as createEvent } from './index-5ef692cc.js';
2
- import { A as AsnData, a as Attribute$1, i as index, b as id_pkcs9_at_extensionRequest, c as AsnParser, E as ExtensionRequest, d as Extension, e as AsnConvert, f as id_pkcs9_at_unstructuredName, U as UnstructuredName, g as id_pkcs9_at_challengePassword, C as ChallengePassword, h as id_ValuationRanking, V as ValuationRanking, j as id_InsuranceValue, I as InsuranceValue, k as id_WebGDPR, W as WebGDPR, l as id_ActivityDescription, m as ActivityDescription, n as id_TypeRelationship, T as TypeRelationship, o as id_DomainNameTechnicalOperator, D as DomainNameTechnicalOperator, p as id_DomainNameOwner, q as DomainNameOwner, r as id_DomainNameLegalRepresentative, s as DomainNameLegalRepresentative, t as id_DomainNameBeneficiary, u as DomainNameBeneficiary, v as certificateRawToBuffer, w as AttributeCertificate, x as getCertificateThumbprint, y as hexFormat, z as base64Format, B as CertificationRequest, N as Name, F as id_ecPublicKey, G as ECParameters, H as id_rsaEncryption, R as RSAPublicKey, O as OIDs, J as Name$1, K as OtherName, L as DisplayText, M as EDIPartyName, P as UserNotice, Q as KeyUsage, S as BasicConstraints, X as ExtendedKeyUsage, Y as SubjectKeyIdentifier, Z as AuthorityKeyIdentifier, _ as CRLDistributionPoints, $ as AuthorityInfoAccessSyntax, a0 as SubjectAlternativeName, a1 as CertificatePolicies, a2 as CertificateTransparency, a3 as NameConstraints, a4 as CertificateTemplate, a5 as EnrollCertTypeChoice, a6 as CaVersion, a7 as QCStatements, a8 as NetscapeComment, a9 as NetscapeCertType, aa as LeiRole, ab as LeiChoice, ac as Timestamp, ad as ArchiveRevInfo, ae as CRLReason, af as SubjectDirectoryAttributes, ag as PrivateKeyUsagePeriod, ah as EntrustVersionInfo, ai as BiometricSyntax, aj as LogotypeExtn, ak as TNAuthorizationList, al as Download, am as isPem, an as isX509Pem, ao as isPkcs10Pem, ap as isX509AttributePem, aq as X509Certificate } from './download-64de4f51.js';
2
+ import { A as AsnData, a as Attribute$1, i as index, b as id_pkcs9_at_extensionRequest, c as AsnParser, E as ExtensionRequest, d as Extension, e as AsnConvert, f as id_pkcs9_at_unstructuredName, U as UnstructuredName, g as id_pkcs9_at_challengePassword, C as ChallengePassword, h as id_ValuationRanking, V as ValuationRanking, j as id_InsuranceValue, I as InsuranceValue, k as id_WebGDPR, W as WebGDPR, l as id_ActivityDescription, m as ActivityDescription, n as id_TypeRelationship, T as TypeRelationship, o as id_DomainNameTechnicalOperator, D as DomainNameTechnicalOperator, p as id_DomainNameOwner, q as DomainNameOwner, r as id_DomainNameLegalRepresentative, s as DomainNameLegalRepresentative, t as id_DomainNameBeneficiary, u as DomainNameBeneficiary, v as certificateRawToBuffer, w as AttributeCertificate, x as getCertificateThumbprint, y as hexFormat, z as base64Format, B as CertificationRequest, N as Name, F as id_ecPublicKey, G as ECParameters, H as id_rsaEncryption, R as RSAPublicKey, O as OIDs, J as Name$1, K as OtherName, L as DisplayText, M as EDIPartyName, P as UserNotice, Q as KeyUsage, S as BasicConstraints, X as ExtendedKeyUsage, Y as SubjectKeyIdentifier, Z as AuthorityKeyIdentifier, _ as CRLDistributionPoints, $ as AuthorityInfoAccessSyntax, a0 as SubjectAlternativeName, a1 as CertificatePolicies, a2 as CertificateTransparency, a3 as NameConstraints, a4 as CertificateTemplate, a5 as EnrollCertTypeChoice, a6 as CaVersion, a7 as QCStatements, a8 as NetscapeComment, a9 as NetscapeCertType, aa as LeiRole, ab as LeiChoice, ac as Timestamp, ad as ArchiveRevInfo, ae as CRLReason, af as SubjectDirectoryAttributes, ag as PrivateKeyUsagePeriod, ah as EntrustVersionInfo, ai as BiometricSyntax, aj as LogotypeExtn, ak as TNAuthorizationList, al as Download, am as isPem, an as isX509Pem, ao as isPkcs10Pem, ap as isX509AttributePem, aq as X509Certificate } from './download-c6153e99.js';
3
3
  import { d as dateDiff, l as l10n, a as dateShort, h as history } from './l10n-25aa4c54.js';
4
4
 
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, c as createEvent, h, H as Host } from './index-5ef692cc.js';
2
- import { aq as X509Certificate, al as Download, O as OIDs } from './download-64de4f51.js';
2
+ import { aq as X509Certificate, al as Download, O as OIDs } from './download-c6153e99.js';
3
3
  import { l as l10n } from './l10n-25aa4c54.js';
4
4
 
5
5
  const certificatesViewerCss = ":host{-webkit-box-sizing:border-box;box-sizing:border-box}:host *,:host *:before,:host *:after{-webkit-box-sizing:inherit;box-sizing:inherit}:host{display:block;width:100%;word-wrap:break-word;min-width:280px;overflow:auto;position:relative;background:white;background:rgba(var(--pv-color-light-rgb), 1)}table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0}table thead{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07)}table tr td{vertical-align:middle}table tbody tr:not(.expanded_summary){cursor:pointer}table tr{border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table th{padding:15px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table td{padding:8px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table .col_issuer,table .col_name,table .col_public_key{width:16%}table .col_actions,table .col_tests{width:18%}table.m_extra .col_issuer,table.m_extra .col_name,table.m_extra .col_public_key{width:12%}table.m_extra .col_actions,table.m_extra .col_tests{width:17%}table tr.expanded td:not(:last-child){border-right-color:transparent}table tr.expanded td{border-bottom-color:transparent}.expanded{border-bottom-color:transparent;background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary td{vertical-align:top;padding:10px 20px 26px}@-webkit-keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}.modal_wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;overflow:auto;text-align:center;-webkit-animation:fadeIn 200ms;animation:fadeIn 200ms;padding:30px 10px}.modal_wrapper:before{display:inline-block;vertical-align:middle;width:0;height:100%;content:\"\"}.modal_backdrop{background:rgba(42, 49, 52, 0.5);background:rgba(var(--pv-color-dark-rgb), 0.5);z-index:-1;position:fixed;top:0;right:0;bottom:0;left:0}.modal_container{position:relative;display:inline-block;vertical-align:middle;width:100%;max-width:900px;text-align:left;border-radius:3px;overflow:hidden;background-color:white;background-color:rgba(var(--pv-color-light-rgb), 1);height:100%}.modal_title{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);border-bottom-width:1px;border-bottom-style:solid;padding:20px 60px 16px 20px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:60px}.modal_content{height:calc(100% - 60px);overflow-y:auto}.modal_close{cursor:pointer;border:none;background-color:transparent;position:absolute;top:0;bottom:0;right:0;padding:0 12px;-webkit-transition:opacity 100ms;transition:opacity 100ms;outline:none}.modal_close:hover{opacity:0.6}.modal_close svg{fill:#2a3134;fill:rgba(var(--pv-color-dark-rgb), 1)}.button_table_action{margin:2px}.mobile_title{display:none}.status_wrapper{height:85px;text-align:center;pointer-events:none}.search_section{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);height:50px;padding:10px;border-width:1px 1px 0 1px;border-style:solid}.input_search{height:100%;width:100%;border-radius:3px;border-width:1px;border-style:solid;padding:0 14px;font-size:12px;outline:none;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);color:#2a3134;color:rgba(var(--pv-color-dark-rgb), 1)}.input_search::-moz-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search:-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-webkit-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.loading_container{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(42, 49, 52, 0.3);background:rgba(var(--pv-color-dark-rgb), 0.3);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.align_center{text-align:center}@media (hover: hover){table tbody tr:not(.expanded_summary):hover{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}}@media (max-width: 900px){table,tbody,tr,td{display:block}thead{display:none}tr{padding:0 15px;border-width:1px;border-style:solid}tr:not(:first-child){margin-top:-1px}tr:not(.expanded_summary) td:first-child{border:none !important}table td{padding-left:0;padding-right:0;border-width:1px 0 0 0 !important;border-color:rgba(209, 213, 217, 0.5);border-color:rgba(var(--pv-color-grey_3-rgb), 0.5)}table tr.expanded_summary td{padding:15px 0}.mobile_title{display:inline-block;width:90px;vertical-align:middle}.modal_title{padding:17px 60px 17px 15px}.content{display:inline-block;width:calc(100% - 90px);vertical-align:middle;text-align:left}.expanded_summary{border-top-color:transparent;padding-bottom:10px}.expanded_summary td:before{content:none}.status_wrapper{height:266px;display:table-cell}.search_section{height:60px;padding:15px}.align_center{text-align:inherit}}";
@@ -5833,7 +5833,7 @@ var build = createCommonjsModule(function (module, exports) {
5833
5833
  */
5834
5834
  (function (global, factory) {
5835
5835
  factory(exports);
5836
- }(commonjsGlobal, (function (exports) {
5836
+ })(commonjsGlobal, (function (exports) {
5837
5837
  var BufferSourceConverter = /** @class */ (function () {
5838
5838
  function BufferSourceConverter() {
5839
5839
  }
@@ -5870,6 +5870,19 @@ var build = createCommonjsModule(function (module, exports) {
5870
5870
  return ArrayBuffer.isView(data)
5871
5871
  || (data && this.isArrayBuffer(data.buffer));
5872
5872
  };
5873
+ BufferSourceConverter.isEqual = function (a, b) {
5874
+ var aView = BufferSourceConverter.toUint8Array(a);
5875
+ var bView = BufferSourceConverter.toUint8Array(b);
5876
+ if (aView.length !== bView.byteLength) {
5877
+ return false;
5878
+ }
5879
+ for (var i = 0; i < aView.length; i++) {
5880
+ if (aView[i] !== bView[i]) {
5881
+ return false;
5882
+ }
5883
+ }
5884
+ return true;
5885
+ };
5873
5886
  return BufferSourceConverter;
5874
5887
  }());
5875
5888
  var Utf8Converter = /** @class */ (function () {
@@ -6174,7 +6187,7 @@ var build = createCommonjsModule(function (module, exports) {
6174
6187
  exports.combine = combine;
6175
6188
  exports.isEqual = isEqual;
6176
6189
  Object.defineProperty(exports, '__esModule', { value: true });
6177
- })));
6190
+ }));
6178
6191
  });
6179
6192
  var index = unwrapExports(build);
6180
6193
  var BitString$1 = /** @class */ (function () {
@@ -8137,6 +8150,29 @@ var CertificatePolicies = CertificatePolicies_1 = /** @class */ (function (_supe
8137
8150
  CertificatePolicies = CertificatePolicies_1 = __decorate([
8138
8151
  AsnType({ type: AsnTypeTypes.Sequence, itemType: PolicyInformation })
8139
8152
  ], CertificatePolicies);
8153
+ var CRLNumber = /** @class */ (function () {
8154
+ function CRLNumber(value) {
8155
+ if (value === void 0) { value = 0; }
8156
+ this.value = value;
8157
+ }
8158
+ return CRLNumber;
8159
+ }());
8160
+ __decorate([
8161
+ AsnProp({ type: AsnPropTypes.Integer })
8162
+ ], CRLNumber.prototype, "value", void 0);
8163
+ CRLNumber = __decorate([
8164
+ AsnType({ type: AsnTypeTypes.Choice })
8165
+ ], CRLNumber);
8166
+ var BaseCRLNumber = /** @class */ (function (_super) {
8167
+ __extends(BaseCRLNumber, _super);
8168
+ function BaseCRLNumber() {
8169
+ return _super !== null && _super.apply(this, arguments) || this;
8170
+ }
8171
+ return BaseCRLNumber;
8172
+ }(CRLNumber));
8173
+ BaseCRLNumber = __decorate([
8174
+ AsnType({ type: AsnTypeTypes.Choice })
8175
+ ], BaseCRLNumber);
8140
8176
  var CRLDistributionPoints_1;
8141
8177
  var id_ce_cRLDistributionPoints = id_ce + ".31";
8142
8178
  var ReasonFlags;
@@ -8237,6 +8273,53 @@ var CRLDistributionPoints = CRLDistributionPoints_1 = /** @class */ (function (_
8237
8273
  CRLDistributionPoints = CRLDistributionPoints_1 = __decorate([
8238
8274
  AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
8239
8275
  ], CRLDistributionPoints);
8276
+ var FreshestCRL_1;
8277
+ var FreshestCRL = FreshestCRL_1 = /** @class */ (function (_super) {
8278
+ __extends(FreshestCRL, _super);
8279
+ function FreshestCRL(items) {
8280
+ var _this = _super.call(this, items) || this;
8281
+ Object.setPrototypeOf(_this, FreshestCRL_1.prototype);
8282
+ return _this;
8283
+ }
8284
+ return FreshestCRL;
8285
+ }(CRLDistributionPoints));
8286
+ FreshestCRL = FreshestCRL_1 = __decorate([
8287
+ AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
8288
+ ], FreshestCRL);
8289
+ var IssuingDistributionPoint = /** @class */ (function () {
8290
+ function IssuingDistributionPoint(params) {
8291
+ if (params === void 0) { params = {}; }
8292
+ this.onlyContainsUserCerts = IssuingDistributionPoint.ONLY;
8293
+ this.onlyContainsCACerts = IssuingDistributionPoint.ONLY;
8294
+ this.indirectCRL = IssuingDistributionPoint.ONLY;
8295
+ this.onlyContainsAttributeCerts = IssuingDistributionPoint.ONLY;
8296
+ Object.assign(this, params);
8297
+ }
8298
+ ;
8299
+ ;
8300
+ ;
8301
+ ;
8302
+ return IssuingDistributionPoint;
8303
+ }());
8304
+ IssuingDistributionPoint.ONLY = false;
8305
+ __decorate([
8306
+ AsnProp({ type: DistributionPointName, context: 0, optional: true })
8307
+ ], IssuingDistributionPoint.prototype, "distributionPoint", void 0);
8308
+ __decorate([
8309
+ AsnProp({ type: AsnPropTypes.Boolean, context: 1, defaultValue: IssuingDistributionPoint.ONLY })
8310
+ ], IssuingDistributionPoint.prototype, "onlyContainsUserCerts", void 0);
8311
+ __decorate([
8312
+ AsnProp({ type: AsnPropTypes.Boolean, context: 2, defaultValue: IssuingDistributionPoint.ONLY })
8313
+ ], IssuingDistributionPoint.prototype, "onlyContainsCACerts", void 0);
8314
+ __decorate([
8315
+ AsnProp({ type: Reason, context: 3, optional: true })
8316
+ ], IssuingDistributionPoint.prototype, "onlySomeReasons", void 0);
8317
+ __decorate([
8318
+ AsnProp({ type: AsnPropTypes.Boolean, context: 4, defaultValue: IssuingDistributionPoint.ONLY })
8319
+ ], IssuingDistributionPoint.prototype, "indirectCRL", void 0);
8320
+ __decorate([
8321
+ AsnProp({ type: AsnPropTypes.Boolean, context: 5, defaultValue: IssuingDistributionPoint.ONLY })
8322
+ ], IssuingDistributionPoint.prototype, "onlyContainsAttributeCerts", void 0);
8240
8323
  var id_ce_cRLReasons = id_ce + ".21";
8241
8324
  var CRLReasons;
8242
8325
  (function (CRLReasons) {
@@ -48,7 +48,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
48
48
  }
49
49
  };
50
50
  import { h, r as registerInstance, H as Host, c as createEvent } from './index-5ef692cc.js';
51
- import { A as AsnData, a as Attribute$1, i as index, b as id_pkcs9_at_extensionRequest, c as AsnParser, E as ExtensionRequest, d as Extension, e as AsnConvert, f as id_pkcs9_at_unstructuredName, U as UnstructuredName, g as id_pkcs9_at_challengePassword, C as ChallengePassword, h as id_ValuationRanking, V as ValuationRanking, j as id_InsuranceValue, I as InsuranceValue, k as id_WebGDPR, W as WebGDPR, l as id_ActivityDescription, m as ActivityDescription, n as id_TypeRelationship, T as TypeRelationship, o as id_DomainNameTechnicalOperator, D as DomainNameTechnicalOperator, p as id_DomainNameOwner, q as DomainNameOwner, r as id_DomainNameLegalRepresentative, s as DomainNameLegalRepresentative, t as id_DomainNameBeneficiary, u as DomainNameBeneficiary, v as certificateRawToBuffer, w as AttributeCertificate, x as getCertificateThumbprint, y as hexFormat, z as base64Format, B as CertificationRequest, N as Name, F as id_ecPublicKey, G as ECParameters, H as id_rsaEncryption, R as RSAPublicKey, O as OIDs, J as Name$1, K as OtherName, L as DisplayText, M as EDIPartyName, P as UserNotice, Q as KeyUsage, S as BasicConstraints, X as ExtendedKeyUsage, Y as SubjectKeyIdentifier, Z as AuthorityKeyIdentifier, _ as CRLDistributionPoints, $ as AuthorityInfoAccessSyntax, a0 as SubjectAlternativeName, a1 as CertificatePolicies, a2 as CertificateTransparency, a3 as NameConstraints, a4 as CertificateTemplate, a5 as EnrollCertTypeChoice, a6 as CaVersion, a7 as QCStatements, a8 as NetscapeComment, a9 as NetscapeCertType, aa as LeiRole, ab as LeiChoice, ac as Timestamp, ad as ArchiveRevInfo, ae as CRLReason, af as SubjectDirectoryAttributes, ag as PrivateKeyUsagePeriod, ah as EntrustVersionInfo, ai as BiometricSyntax, aj as LogotypeExtn, ak as TNAuthorizationList, al as Download, am as isPem, an as isX509Pem, ao as isPkcs10Pem, ap as isX509AttributePem, aq as X509Certificate } from './download-64de4f51.js';
51
+ import { A as AsnData, a as Attribute$1, i as index, b as id_pkcs9_at_extensionRequest, c as AsnParser, E as ExtensionRequest, d as Extension, e as AsnConvert, f as id_pkcs9_at_unstructuredName, U as UnstructuredName, g as id_pkcs9_at_challengePassword, C as ChallengePassword, h as id_ValuationRanking, V as ValuationRanking, j as id_InsuranceValue, I as InsuranceValue, k as id_WebGDPR, W as WebGDPR, l as id_ActivityDescription, m as ActivityDescription, n as id_TypeRelationship, T as TypeRelationship, o as id_DomainNameTechnicalOperator, D as DomainNameTechnicalOperator, p as id_DomainNameOwner, q as DomainNameOwner, r as id_DomainNameLegalRepresentative, s as DomainNameLegalRepresentative, t as id_DomainNameBeneficiary, u as DomainNameBeneficiary, v as certificateRawToBuffer, w as AttributeCertificate, x as getCertificateThumbprint, y as hexFormat, z as base64Format, B as CertificationRequest, N as Name, F as id_ecPublicKey, G as ECParameters, H as id_rsaEncryption, R as RSAPublicKey, O as OIDs, J as Name$1, K as OtherName, L as DisplayText, M as EDIPartyName, P as UserNotice, Q as KeyUsage, S as BasicConstraints, X as ExtendedKeyUsage, Y as SubjectKeyIdentifier, Z as AuthorityKeyIdentifier, _ as CRLDistributionPoints, $ as AuthorityInfoAccessSyntax, a0 as SubjectAlternativeName, a1 as CertificatePolicies, a2 as CertificateTransparency, a3 as NameConstraints, a4 as CertificateTemplate, a5 as EnrollCertTypeChoice, a6 as CaVersion, a7 as QCStatements, a8 as NetscapeComment, a9 as NetscapeCertType, aa as LeiRole, ab as LeiChoice, ac as Timestamp, ad as ArchiveRevInfo, ae as CRLReason, af as SubjectDirectoryAttributes, ag as PrivateKeyUsagePeriod, ah as EntrustVersionInfo, ai as BiometricSyntax, aj as LogotypeExtn, ak as TNAuthorizationList, al as Download, am as isPem, an as isX509Pem, ao as isPkcs10Pem, ap as isX509AttributePem, aq as X509Certificate } from './download-c6153e99.js';
52
52
  import { d as dateDiff, l as l10n, a as dateShort, h as history } from './l10n-25aa4c54.js';
53
53
  /**
54
54
  * @license
@@ -35,7 +35,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
35
35
  }
36
36
  };
37
37
  import { r as registerInstance, c as createEvent, h, H as Host } from './index-5ef692cc.js';
38
- import { aq as X509Certificate, al as Download, O as OIDs } from './download-64de4f51.js';
38
+ import { aq as X509Certificate, al as Download, O as OIDs } from './download-c6153e99.js';
39
39
  import { l as l10n } from './l10n-25aa4c54.js';
40
40
  var certificatesViewerCss = ":host{-webkit-box-sizing:border-box;box-sizing:border-box}:host *,:host *:before,:host *:after{-webkit-box-sizing:inherit;box-sizing:inherit}:host{display:block;width:100%;word-wrap:break-word;min-width:280px;overflow:auto;position:relative;background:white;background:rgba(var(--pv-color-light-rgb), 1)}table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0}table thead{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07)}table tr td{vertical-align:middle}table tbody tr:not(.expanded_summary){cursor:pointer}table tr{border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table th{padding:15px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table td{padding:8px 10px;border-width:1px;border-style:solid;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1)}table .col_issuer,table .col_name,table .col_public_key{width:16%}table .col_actions,table .col_tests{width:18%}table.m_extra .col_issuer,table.m_extra .col_name,table.m_extra .col_public_key{width:12%}table.m_extra .col_actions,table.m_extra .col_tests{width:17%}table tr.expanded td:not(:last-child){border-right-color:transparent}table tr.expanded td{border-bottom-color:transparent}.expanded{border-bottom-color:transparent;background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}table tr.expanded_summary td{vertical-align:top;padding:10px 20px 26px}@-webkit-keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0.001}100%{opacity:1}}.modal_wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;overflow:auto;text-align:center;-webkit-animation:fadeIn 200ms;animation:fadeIn 200ms;padding:30px 10px}.modal_wrapper:before{display:inline-block;vertical-align:middle;width:0;height:100%;content:\"\"}.modal_backdrop{background:rgba(42, 49, 52, 0.5);background:rgba(var(--pv-color-dark-rgb), 0.5);z-index:-1;position:fixed;top:0;right:0;bottom:0;left:0}.modal_container{position:relative;display:inline-block;vertical-align:middle;width:100%;max-width:900px;text-align:left;border-radius:3px;overflow:hidden;background-color:white;background-color:rgba(var(--pv-color-light-rgb), 1);height:100%}.modal_title{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);border-bottom-width:1px;border-bottom-style:solid;padding:20px 60px 16px 20px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:60px}.modal_content{height:calc(100% - 60px);overflow-y:auto}.modal_close{cursor:pointer;border:none;background-color:transparent;position:absolute;top:0;bottom:0;right:0;padding:0 12px;-webkit-transition:opacity 100ms;transition:opacity 100ms;outline:none}.modal_close:hover{opacity:0.6}.modal_close svg{fill:#2a3134;fill:rgba(var(--pv-color-dark-rgb), 1)}.button_table_action{margin:2px}.mobile_title{display:none}.status_wrapper{height:85px;text-align:center;pointer-events:none}.search_section{background-color:rgba(53, 132, 247, 0.07);background-color:rgba(var(--pv-color-primary-rgb), 0.07);border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);height:50px;padding:10px;border-width:1px 1px 0 1px;border-style:solid}.input_search{height:100%;width:100%;border-radius:3px;border-width:1px;border-style:solid;padding:0 14px;font-size:12px;outline:none;border-color:#d1d5d9;border-color:rgba(var(--pv-color-grey_3-rgb), 1);color:#2a3134;color:rgba(var(--pv-color-dark-rgb), 1)}.input_search::-moz-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search:-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-webkit-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::-ms-input-placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.input_search::placeholder{color:#d1d5d9;color:rgba(var(--pv-color-grey_3-rgb), 1)}.loading_container{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(42, 49, 52, 0.3);background:rgba(var(--pv-color-dark-rgb), 0.3);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.align_center{text-align:center}@media (hover: hover){table tbody tr:not(.expanded_summary):hover{background-color:rgba(53, 132, 247, 0.04);background-color:rgba(var(--pv-color-primary-rgb), 0.04)}}@media (max-width: 900px){table,tbody,tr,td{display:block}thead{display:none}tr{padding:0 15px;border-width:1px;border-style:solid}tr:not(:first-child){margin-top:-1px}tr:not(.expanded_summary) td:first-child{border:none !important}table td{padding-left:0;padding-right:0;border-width:1px 0 0 0 !important;border-color:rgba(209, 213, 217, 0.5);border-color:rgba(var(--pv-color-grey_3-rgb), 0.5)}table tr.expanded_summary td{padding:15px 0}.mobile_title{display:inline-block;width:90px;vertical-align:middle}.modal_title{padding:17px 60px 17px 15px}.content{display:inline-block;width:calc(100% - 90px);vertical-align:middle;text-align:left}.expanded_summary{border-top-color:transparent;padding-bottom:10px}.expanded_summary td:before{content:none}.status_wrapper{height:266px;display:table-cell}.search_section{height:60px;padding:15px}.align_center{text-align:inherit}}";
41
41
  var CertificatesViewer = /** @class */ (function () {