@repobit/dex-system-design 0.18.1 → 0.19.0

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.
@@ -26,7 +26,6 @@ export class BdFooter extends LitElement {
26
26
  this.selectedCountry = 'Choose your country';
27
27
  this._isMobile = window.innerWidth <= 768;
28
28
  this._countriesContainer = null;
29
- console.log('Constructor - isMobile:', this._isMobile, 'Window width:', window.innerWidth);
30
29
  }
31
30
 
32
31
  connectedCallback() {
@@ -51,16 +50,37 @@ export class BdFooter extends LitElement {
51
50
  updated(changedProps) {
52
51
  if (changedProps.has('currentLocale')) {
53
52
  this._updateNavLinks();
53
+ this._toggleImpressumVisibility();
54
54
  }
55
55
 
56
- // Dacă s-a deschis lista de țări, fac scroll smooth către ea
57
56
  if (changedProps.has('_countriesOpen') && this._countriesOpen) {
58
- // Obține referința la containerul cu țări doar când este deschis
59
57
  this._countriesContainer = this.shadowRoot.querySelector('.footer-countries-container');
60
58
  this._scrollToCountries();
61
59
  }
62
60
  }
63
61
 
62
+ _toggleImpressumVisibility() {
63
+ const showImpressum = this.locale === 'de-de' || this.locale === 'de';
64
+ const slot = this.shadowRoot.querySelector('slot[name="secondary-nav"]');
65
+ const assignedElements = slot?.assignedElements({ flatten: true }) || [];
66
+
67
+ if (assignedElements.length > 0) {
68
+ const footerNav = assignedElements[0];
69
+ const impressumLink = footerNav.querySelector('.impressum-link');
70
+ const impressumDivider = footerNav.querySelector('bd-divider-vertical + .impressum-link')?.previousElementSibling;
71
+
72
+ if (impressumLink) {
73
+ // Ascunde/afișează link-ul Impressum
74
+ impressumLink.style.display = showImpressum ? '' : 'none';
75
+
76
+ // Ascunde/afișează și separatorul dinaintea lui
77
+ if (impressumDivider && impressumDivider.tagName === 'BD-DIVIDER-VERTICAL') {
78
+ impressumDivider.style.display = showImpressum ? '' : 'none';
79
+ }
80
+ }
81
+ }
82
+ }
83
+
64
84
  _scrollToCountries() {
65
85
  // Obține referința la container doar atunci când este necesar
66
86
  const container = this.shadowRoot.querySelector('.footer-countries-container');
@@ -217,28 +237,7 @@ export class BdFooter extends LitElement {
217
237
  }));
218
238
  }
219
239
 
220
- renderQuickLinksSection(slotName) {
221
- const assignedElements = this.shadowRoot?.querySelector(`slot[name="${slotName}"]`)?.assignedElements({ flatten: true }) || [];
222
- if (assignedElements.length === 0) return null;
223
240
 
224
- const maxCols = this.maxColumnsPerRow || 3;
225
- const rows = Math.ceil(assignedElements.length / maxCols);
226
-
227
- const groupedRows = Array.from({ length: rows }, (_, rowIndex) => {
228
- const start = rowIndex * maxCols;
229
- return assignedElements.slice(start, start + maxCols);
230
- });
231
-
232
- return html`
233
- <div class="quick-links-section" style="display: flex; flex-direction: column; gap: 1rem;">
234
- ${groupedRows.map(row => html`
235
- <div style="display: grid; grid-template-columns: repeat(${row.length}, 1fr); gap: 1rem;">
236
- ${row.map(el => html`${el}`)}
237
- </div>
238
- `)}
239
- </div>
240
- `;
241
- }
242
241
 
243
242
  get locale() {
244
243
  const val = (this.currentLocale || 'en').toLowerCase();
@@ -273,13 +272,11 @@ export class BdFooter extends LitElement {
273
272
  }
274
273
  });
275
274
  }
276
-
277
275
  render() {
278
276
  const year = new Date().getFullYear();
279
277
  const showAnpc = this.locale.startsWith('ro');
280
278
  const showImpressum = this.locale === 'de-de' || this.locale === 'de';
281
279
  const countriesList = this.getCountriesList();
282
- console.log('Render - isMobile:', this._isMobile, 'Window width:', window.innerWidth);
283
280
 
284
281
  const masterbrandUrl = this._isMobile
285
282
  ? '/assets/Bitdefender-Masterbrand_mobile.png'
@@ -290,175 +287,175 @@ export class BdFooter extends LitElement {
290
287
  : '/assets/anpc.png';
291
288
 
292
289
  const logoUrl = '/assets/BD_logo.png';
293
- const facebookIcon = '/assets/facebook_vector.png';
294
- const xIcon = '/assets/x_vector.png';
295
- const linkedinIcon = '/assets/linkedin_vector.png';
296
- const youtubeIcon = '/assets/youtube_vector.png';
297
- const instagramIcon = '/assets/instagram_vector.png';
298
- const tiktokIcon = '/assets/tiktok_vector.png';
299
- const leadingIcon = '/assets/leading.png';
300
- const closeIcon = '/assets/close_icon.png'; // Adaugă un icon pentru butonul de închidere
290
+ const facebookIcon = '/assets/facebook_vector.svg';
291
+ const xIcon = '/assets/x_vector.svg';
292
+ const linkedinIcon = '/assets/linkedin_vector.svg';
293
+ const youtubeIcon = '/assets/youtube_vector.svg';
294
+ const instagramIcon = '/assets/instagram_vector.svg';
295
+ const tiktokIcon = '/assets/tiktok_vector.svg';
296
+ const leadingIcon = '/assets/leading.svg';
297
+ const closeIcon = '/assets/close_icon.png';
301
298
 
302
299
  const chunkSize = Math.ceil(countriesList.length / 3);
303
300
  const countryChunks = [
304
301
  countriesList.slice(0, chunkSize),
305
302
  countriesList.slice(chunkSize, chunkSize * 2),
306
303
  countriesList.slice(chunkSize * 2)
307
-
308
304
  ];
309
-
305
+ // Obține elementele din slot-ul quick-links
306
+ const quickLinksSlot = this.shadowRoot?.querySelector('slot[name="quick-links"]');
307
+ const quickLinksElements = quickLinksSlot?.assignedElements({ flatten: true }) || [];
308
+
309
+ // Extrage toate componentele bd-footer-links-group din slot
310
+ const linksGroups = [];
311
+ quickLinksElements.forEach(el => {
312
+ if (el.tagName === 'BD-FOOTER-LINKS-GROUP') {
313
+ linksGroups.push(el);
314
+ } else {
315
+ // Dacă este un container, extrage copiii săi
316
+ const children = el.querySelectorAll ? el.querySelectorAll('bd-footer-links-group') : [];
317
+ children.forEach(child => linksGroups.push(child));
318
+ }
319
+ });
310
320
  return html`
311
- <div class="footer-top-bleed">
312
- <div class="container">
313
- <div class="footer-top">
314
- <div class="footer-logo">
315
- <slot name="logo">
316
- <span><img src="${logoUrl}" alt="Bitdefender Logo"></span>
317
- </slot>
318
- </div>
319
- <div class="footer-top-right">
320
- <slot name="top-right">
321
- <div slot="top-right">
322
- <span slot="logo">
323
- <img src="${masterbrandUrl}" alt="Bitdefender Masterbrand">
324
- </span>
325
- </div>
326
- </slot>
327
- </div>
321
+ <div class="footer-top-bleed">
322
+ <div class="container">
323
+ <div class="footer-top">
324
+ <div class="footer-logo">
325
+ <slot name="logo">
326
+ <span><img src="${logoUrl}" alt="Bitdefender Logo"></span>
327
+ </slot>
328
+ </div>
329
+ <div class="footer-top-right">
330
+ <slot name="top-right">
331
+ <div slot="top-right">
332
+ <span slot="logo">
333
+ <img src="${masterbrandUrl}" alt="Bitdefender Masterbrand">
334
+ </span>
335
+ </div>
336
+ </slot>
328
337
  </div>
329
338
  </div>
330
339
  </div>
340
+ </div>
331
341
 
332
- <footer class="container">
333
- <bd-footer-nav bold>
334
- <div class="footer-nav-main">
335
- <a href="/${this.locale}/consumer/">For Consumer</a>
336
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
337
- <a href="/${this.locale}/small-business/">For Small Business</a>
338
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
339
- <a href="/${this.locale}/business/">For Enterprise</a>
340
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
341
- <a href="/${this.locale}/partners/">For Partners</a>
342
- </div>
343
- </bd-footer-nav>
344
-
345
- <bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>
346
-
347
- <div class="footer-links">
348
- <div class="footer-links-left">
349
- <bd-footer-links-group slot="quick-links" title="Quick links">
350
- <a href="https://central.bitdefender.com/?adobe_mc=TS%3D1755696435%7CMCMID%3D63411747395182077784244429321314993670%7CMCORGID%3D0E920C0F53DA9E9B0A490D45%2540AdobeOrg">Bitdefender Central</a>
351
- <a href="https://gravityzone.bitdefender.com/?adobe_mc=TS%3D1755696435%7CMCMID%3D63411747395182077784244429321314993670%7CMCORGID%3D0E920C0F53DA9E9B0A490D45%2540AdobeOrg">GravityZone Cloud Control Center</a>
352
- <a href="https://www.bitdefender.com/en-us/cyberpedia/">Bitdefender Cyberpedia</a>
353
- <a href="https://pan.bitdefender.com/partners/save/?adobe_mc=TS%3D1755696435%7CMCMID%3D63411747395182077784244429321314993670%7CMCORGID%3D0E920C0F53DA9E9B0A490D45%2540AdobeOrg">Partner Advantage Network Portal</a>
354
- <a href="https://brand.bitdefender.com/point/en/bitdefenderhub/component/default/104804?adobe_mc=TS%3D1755696435%7CMCMID%3D63411747395182077784244429321314993670%7CMCORGID%3D0E920C0F53DA9E9B0A490D45%2540AdobeOrg">Brand Portal</a>
355
- </bd-footer-links-group>
356
-
357
- <bd-footer-links-group slot="quick-links">
358
- <a href="https://www.bitdefender.com/consumer/support/">Support for Home Products</a>
359
- <a href="https://www.bitdefender.com/business/support/">Support for Business Products</a>
360
- <a href="/${this.locale}/company/">Investors</a>
361
- <a href="/${this.locale}/company/job-opportunities/">Careers</a>
362
- <a href="/${this.locale}/business/infozone/">InfoZone</a>
363
- </bd-footer-links-group>
364
- </div>
365
-
366
- <div class="footer-links-right social-icons">
367
- <a href="https://www.facebook.com/bitdefender"><img src="${facebookIcon}" alt="Facebook"></a>
368
- <a href="https://twitter.com/bitdefender"><img src="${xIcon}" alt="X"></a>
369
- <a href="https://www.linkedin.com/company/bitdefender"><img src="${linkedinIcon}" alt="LinkedIn"></a>
370
- <a href="https://www.youtube.com/c/Bitdefender"><img src="${youtubeIcon}" alt="YouTube"></a>
371
- <a href="https://www.instagram.com/bitdefender/"><img src="${instagramIcon}" alt="Instagram"></a>
372
- <a href="https://www.tiktok.com/@bitdefender"><img src="${tiktokIcon}" alt="TikTok"></a>
373
- </div>
342
+ <footer class="container">
343
+ <div class="footer-nav-main-container">
344
+ <slot name="nav"></slot>
345
+ </div>
346
+ <bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>
347
+
348
+ <div class="footer-links">
349
+ <div class="footer-links-left">
350
+ <bd-grid
351
+ cols="1"
352
+ cols-sm="1"
353
+ cols-md="2"
354
+ cols-lg="2"
355
+ gap="lg"
356
+ align="start"
357
+ justify="start"
358
+ padding="none"
359
+ >
360
+ <slot name="quick-links"></slot>
361
+ </bd-grid>
374
362
  </div>
363
+
364
+ ${this._isMobile
365
+ ? html`<bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>`
366
+ : ''}
367
+
368
+ <div class="footer-links-right social-icons">
369
+ <slot name="social-links">
370
+ <a href="https://www.facebook.com/bitdefender"><img src="${facebookIcon}" alt="Facebook"></a>
371
+ <a href="https://twitter.com/bitdefender"><img src="${xIcon}" alt="X"></a>
372
+ <a href="https://www.linkedin.com/company/bitdefender"><img src="${linkedinIcon}" alt="LinkedIn"></a>
373
+ <a href="https://www.youtube.com/c/Bitdefender"><img src="${youtubeIcon}" alt="YouTube"></a>
374
+ <a href="https://www.instagram.com/bitdefender/"><img src="${instagramIcon}" alt="Instagram"></a>
375
+ <a href="https://www.tiktok.com/@bitdefender"><img src="${tiktokIcon}" alt="TikTok"></a>
376
+ </slot>
377
+ </div>
378
+ </div>
375
379
 
376
- <bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>
377
-
378
- <div class="footer-middle-line">
379
- <bd-footer-nav>
380
- <div class="footer-nav-main">
381
- <a href="legal/">Legal Information</a>
382
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
383
- <a href="site/view/legal-privacy-policy-for-bitdefender-websites/">Privacy Policy</a>
384
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
385
- <a href="sitemap/">Site Map</a>
386
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
387
- <a href="company/">Company</a>
388
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
389
- <a href="https://www.bitdefender.com/consumer/support/">Contact Us</a>
390
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
391
- <a href="#">Privacy Settings</a>
392
- ${showImpressum
393
- ? html`
394
- <bd-divider-vertical color="white" height="18px"></bd-divider-vertical>
395
- <a href="#" class="impressum-link">Impressum</a>
396
- `
397
- : ''}
398
- </div>
399
- </bd-footer-nav>
400
- <div class="footer-address">
401
- <slot name="address">
402
- <div slot="address">
403
- 111 W. Houston Street, Suite 2105, Frost Tower Building<br />
404
- San Antonio, Texas 78205
405
- </div>
406
- </slot>
407
- </div>
380
+ ${!this._isMobile
381
+ ? html`<bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>`
382
+ : ''}
383
+
384
+ <div class="footer-middle-line">
385
+ <div class="secondary-nav-container">
386
+ <slot name="secondary-nav"></slot>
387
+ ${this._isMobile
388
+ ? html`<bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>`
389
+ : ''}
390
+ </div>
391
+ <div class="footer-address">
392
+ <slot name="address">
393
+ <div>
394
+ 111 W. Houston Street, Suite 2105, Frost Tower Building<br />
395
+ San Antonio, Texas 78205
396
+ </div>
397
+ </slot>
408
398
  </div>
399
+ </div>
409
400
 
410
- <bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>
401
+ <bd-divider-horizontal width="100%" color="white" opacity="0.25"></bd-divider-horizontal>
402
+
411
403
 
412
- <div class="footer-extra">
413
- <div class="footer-copy">Copyright © 1997 - ${year} Bitdefender</div>
414
- ${showAnpc
415
- ? html`
404
+ <div class="footer-extra">
405
+ <div class="footer-copy">
406
+ <slot name="copyright">
407
+ Copyright © 1997 - ${year} Bitdefender
408
+ </slot>
409
+ </div>
410
+
411
+ ${showAnpc
412
+ ? html`
416
413
  <div class="footer-anpc">
417
414
  <slot name="anpc">
418
- <div slot="anpc">
419
- <img src="${anpcUrl}" alt="Certificat" />
420
- </div>
415
+ <img src="${anpcUrl}" alt="Certificat" />
421
416
  </slot>
422
417
  </div>
423
418
  `
424
- : null}
425
- <div class="footer-countries-toggle">
426
- <button class="country-toggle" @click="${this._toggleCountries}">
427
- <img src="${leadingIcon}" alt="Leading icon">
428
- ${this.selectedCountry}
429
- <span class="arrow">
430
- ${this._countriesOpen
431
- ? html`<img src="/assets/arrow_up.png" alt="Arrow up">`
432
- : html`<img src="/assets/arrow_down.png" alt="Arrow down">`}
433
- </span>
434
- </button>
435
- </div>
419
+ : null}
420
+
421
+ <div class="footer-countries-toggle">
422
+ <button class="country-toggle" @click="${this._toggleCountries}">
423
+ <img src="${leadingIcon}" alt="Leading icon">
424
+ ${this.selectedCountry}
425
+ <span class="arrow">
426
+ ${this._countriesOpen
427
+ ? html`<img src="/assets/arrow_up.svg" alt="Arrow up">`
428
+ : html`<img src="/assets/arrow_down.svg" alt="Arrow down">`}
429
+ </span>
430
+ </button>
436
431
  </div>
432
+ </div>
437
433
 
438
434
  ${this._countriesOpen
439
435
  ? html`
440
- <div class="footer-countries-container">
441
- <button class="close-countries-button" @click="${this._closeCountries}">
442
- <img src="${closeIcon}" alt="Close countries list">
443
- </button>
444
- ${countryChunks.map(chunk => html`
445
- <bd-footer-links-group slot="countries" title="${chunk === countryChunks[0] ? 'Choose your country' : ''}">
446
- ${chunk.map(c => html`
447
- <a href="/${c.locale.toLowerCase()}/"
448
- data-locale="${c.locale}"
449
- class="${this.selectedCountry === c.label ? 'selected' : ''}"
450
- @click="${(e) => this._handleCountryClick(e, c.label, c.locale)}">
451
- ${c.label}
452
- </a>
436
+ <div class="footer-countries-container">
437
+ <button class="close-countries-button" @click="${this._closeCountries}">
438
+ <img src="${closeIcon}" alt="Close countries list">
439
+ </button>
440
+ ${countryChunks.map(chunk => html`
441
+ <bd-footer-links-group slot="countries" title="${chunk === countryChunks[0] ? 'Choose your country' : ''}">
442
+ ${chunk.map(c => html`
443
+ <a href="/${c.locale.toLowerCase()}/"
444
+ data-locale="${c.locale}"
445
+ class="${this.selectedCountry === c.label ? 'selected' : ''}"
446
+ @click="${(e) => this._handleCountryClick(e, c.label, c.locale)}">
447
+ ${c.label}
448
+ </a>
449
+ `)}
450
+ </bd-footer-links-group>
453
451
  `)}
454
- </bd-footer-links-group>
455
- `)}
456
- </div>
457
- `
452
+ </div>
453
+ `
458
454
  : null}
459
- </footer>
460
- `;
455
+ </footer>
456
+ `;
461
457
  }
458
+
462
459
  static styles = [tokens, footerCSS];
463
460
  }
464
461
 
@@ -111,7 +111,6 @@ export const tokens = css`
111
111
  /* ================================
112
112
  CORE BORDER TOKENS
113
113
  ================================ */
114
-
115
114
  --border-width-0: 0;
116
115
  --border-width-1: 1px;
117
116
  --border-width-2: 2px;
@@ -127,9 +126,11 @@ export const tokens = css`
127
126
  --radius-2xl: 1rem; /* 16px */
128
127
  --radius-3xl: 1.5rem; /* 24px */
129
128
  --radius-full: 9999px;
129
+
130
130
  /* ================================
131
- CORE DIMENSION TOKENS
132
- ================================ */
131
+ CORE DIMENSION TOKENS
132
+ ================================ */
133
+
133
134
 
134
135
  --dimension-2px: 2px;
135
136
  --dimension-4px: 4px;
@@ -147,8 +148,8 @@ export const tokens = css`
147
148
  --dimension-64px: 64px;
148
149
 
149
150
  /* ================================
150
- CORE TRANSITION TOKENS
151
- ================================ */
151
+ CORE TRANSITION TOKENS
152
+ ================================ */
152
153
 
153
154
  --transition-duration-fast: 150ms;
154
155
  --transition-duration-normal: 200ms;
@@ -162,8 +163,8 @@ export const tokens = css`
162
163
  --transition-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
163
164
 
164
165
  /* ================================
165
- CORE SHADOW TOKENS
166
- ================================ */
166
+ CORE SHADOW TOKENS
167
+ ================================ */
167
168
 
168
169
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
169
170
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
@@ -194,8 +195,8 @@ export const tokens = css`
194
195
  --focus-outline-offset: 2px;
195
196
 
196
197
  /* ================================
197
- COMPONENT TOKENS - TYPOGRAPHY
198
- ================================ */
198
+ COMPONENT TOKENS - TYPOGRAPHY
199
+ ================================ */
199
200
 
200
201
  /* Heading Tokens */
201
202
  --typography-heading-h1-fontSize: var(--typography-fontSize-5xl);
@@ -276,7 +277,7 @@ export const tokens = css`
276
277
  --typography-label-small-letterSpacing: var(--typography-letterSpacing-wide);
277
278
  --typography-label-small-fontFamily: var(--typography-fontFamily-sans);
278
279
 
279
- --typography-label-extra-small-fontSize: var(--typography-fontSize-xxs);
280
+ --typography-label-extra-small-fontSize: var(--typography-fontSize-xxs);
280
281
 
281
282
  --typography-label-large-fontSize: var(--typography-fontSize-base);
282
283
  --typography-label-large-fontWeight: var(--typography-fontWeight-medium);
@@ -381,8 +382,8 @@ export const tokens = css`
381
382
  --typography-display-sm-fontFamily: var(--typography-fontFamily-sans);
382
383
 
383
384
  /* ================================
384
- COMPONENT TOKENS - FORM
385
- ================================ */
385
+ COMPONENT TOKENS - FORM
386
+ ================================ */
386
387
 
387
388
  /* Form Label Tokens */
388
389
  --form-label-default-fontSize: var(--typography-fontSize-sm);
@@ -472,8 +473,8 @@ export const tokens = css`
472
473
  --form-helpTextSpacing: var(--spacing-1);
473
474
 
474
475
  /* ================================
475
- COMPONENT TOKENS - BUTTON
476
- ================================ */
476
+ COMPONENT TOKENS - BUTTON
477
+ ================================ */
477
478
 
478
479
  /* Button Size Tokens */
479
480
  --button-small-height: var(--dimension-34px);
@@ -625,8 +626,8 @@ export const tokens = css`
625
626
  --button-focus-boxShadow: var(--shadow-focus-outline-blue);
626
627
 
627
628
  /* ================================
628
- COMPONENT TOKENS - ANNOTATION
629
- ================================ */
629
+ COMPONENT TOKENS - ANNOTATION
630
+ ================================ */
630
631
 
631
632
  /* Footnote Tokens */
632
633
  --footnote-reference-fontSize: 0.75em;
@@ -660,8 +661,8 @@ export const tokens = css`
660
661
  --math-subscript-marginLeft: 0.05em;
661
662
 
662
663
  /* ================================
663
- COMPONENT TOKENS - ICON
664
- ================================ */
664
+ COMPONENT TOKENS - ICON
665
+ ================================ */
665
666
 
666
667
  /* Icon Size Tokens */
667
668
  --icon-xs-size: var(--dimension-12px);
@@ -696,9 +697,9 @@ export const tokens = css`
696
697
  --icon-error-color: var(--color-red-500);
697
698
 
698
699
  /* ================================
699
- CORE SPACING TOKENS
700
- ================================ */
701
-
700
+ CORE SPACING TOKENS
701
+ ================================ */
702
+
702
703
  --spacing-0: 0;
703
704
  --spacing-1: 0.0625rem; /* 1px */
704
705
  --spacing-2: 0.125rem; /* 2px */
@@ -784,29 +785,6 @@ export const tokens = css`
784
785
  /* Caption */
785
786
  --typography-label-small-fontSize-line-height: 1.35; /* For 12px */
786
787
 
787
- /* --spacing-0: 0;
788
- --spacing-1: 1px;
789
- --spacing-2: 2px;
790
- --spacing-4: 4px;
791
- --spacing-6: 6px;
792
- --spacing-8: 8px;
793
- --spacing-10: 10px;
794
- --spacing-12: 12px;
795
- --spacing-14: 14px;
796
- --spacing-16: 16px;
797
- --spacing-18: 18px;
798
- --spacing-20: 20px;
799
- --spacing-22: 22px;
800
- --spacing-24: 24px;
801
- --spacing-32: 32px;
802
- --spacing-36: 36px;
803
- --spacing-40: 40px;
804
- --spacing-44: 44px;
805
- --spacing-52: 52px;
806
- --spacing-64: 64px;
807
- --spacing-full: 99999999999999999999;
808
- */
809
-
810
788
  /* Spacing Tokens
811
789
  -----------------------------------------------*/
812
790
  /* Base spacing tokens - Based on 4px grid */
@@ -1049,8 +1027,8 @@ export const tokens = css`
1049
1027
  --font-style-mono-normal: normal;
1050
1028
  --font-style-mono-italic: italic;
1051
1029
 
1052
- /* IBMPlexSans */
1053
- --typography-fontFamily-sans: "IBM Plex Sans", sans-serif;
1030
+ /* IBM Plex Sans */
1031
+ --typography-fontFamily-sans: 'IBM Plex Sans', sans-serif;
1054
1032
  --font-weight-sans-light: 300;
1055
1033
  --typography-body-large-fontWeight: 400;
1056
1034
  --font-weight-sans-medium: 500;
@@ -1,5 +0,0 @@
1
- .arrow-icon {
2
- width: 24px;
3
- height: 24px;
4
- fill: #000;
5
- }
File without changes