adata-ui 2.0.17 → 2.0.19

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.
@@ -23,11 +23,11 @@ const linkByIndex = [
23
23
  PAGES.pk.main,
24
24
  PAGES.pk.employees,
25
25
  PAGES.pk.connections,
26
+ PAGES.pk.offshore,
26
27
  PAGES.pk.foreign,
27
28
  PAGES.pk.unload,
28
- PAGES.pk.offshore,
29
- PAGES.pk.sanctions,
30
29
  PAGES.pk.compare,
30
+ PAGES.pk.sanctions,
31
31
  buildLocalizedUrl(locale, config.myLayer.landingUrl, '/all-services'),
32
32
  ]
33
33
  </script>
@@ -49,12 +49,16 @@ function onSend() {
49
49
  <div class="rounded-[20px] bg-blue-700 dark:bg-[#1B98E2] p-4 dark:bg-blue-500 lg:p-8">
50
50
  <div class="flex w-full flex-col gap-4 lg:flex-row lg:justify-between">
51
51
  <div class="flex flex-col gap-4 text-white dark:text-gray-900 lg:max-w-[50%] lg:gap-6">
52
- <p class="md:text-[32px] text-[24px] font-bold">
53
- {{ title || t('forms.request_demo.title') }}
54
- </p>
55
- <p class="text-base whitespace-pre-line">
56
- {{ description || t('forms.request_demo.info') }}
57
- </p>
52
+ <slot name="title">
53
+ <p class="md:text-[32px] text-[24px] font-bold">
54
+ {{ title || t('forms.request_demo.title') }}
55
+ </p>
56
+ </slot>
57
+ <slot name="description">
58
+ <p class="text-base whitespace-pre-line">
59
+ {{ description || t('forms.request_demo.info') }}
60
+ </p>
61
+ </slot>
58
62
  </div>
59
63
  <div class="rounded-[20px] bg-white p-6 dark:bg-gray-900 lg:w-[456px]">
60
64
  <div class="flex flex-col gap-4">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.17",
4
+ "version": "2.0.19",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",