@newlogic-digital/ui 3.5.0 → 3.7.5

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.
Files changed (138) hide show
  1. package/README.md +11 -1
  2. package/package.json +29 -22
  3. package/src/data/main.json +23 -8
  4. package/src/emails/styles/main/+.css +3 -0
  5. package/src/emails/styles/main/Base/+.css +2 -0
  6. package/src/emails/styles/main/Base/config.css +22 -0
  7. package/src/emails/styles/main/Components/+.css +1 -0
  8. package/src/emails/styles/main/Components/Card.css +12 -0
  9. package/src/emails/styles/main/Ui/+.css +3 -0
  10. package/src/emails/styles/main/Ui/Btn.css +78 -0
  11. package/src/emails/styles/main/Ui/Heading.css +8 -0
  12. package/src/emails/styles/main/Ui/Text.css +12 -0
  13. package/src/emails/styles/main.css +92 -0
  14. package/src/emails/templates.test/Layout.latte +16 -4
  15. package/src/emails/templates.test/Sections/Footer.latte +22 -0
  16. package/src/emails/templates.test/Sections/Header.latte +37 -0
  17. package/src/emails/templates.test/Sections/Text.latte +24 -0
  18. package/src/icons.svg +28 -28
  19. package/src/scripts/Components/+.js +2 -1
  20. package/src/scripts/Components/Drawer.js +60 -0
  21. package/src/scripts/Components/Popover.js +65 -0
  22. package/src/scripts/Layout/+.js +0 -1
  23. package/src/scripts/Layout/Header.js +14 -26
  24. package/src/scripts/Libraries/+.js +3 -5
  25. package/src/scripts/Libraries/CookieConsent.js +65 -52
  26. package/src/scripts/Libraries/Dialog.js +19 -38
  27. package/src/scripts/Libraries/Form.js +6 -19
  28. package/src/scripts/Libraries/Naja.js +22 -18
  29. package/src/scripts/Libraries/ReCaptcha.js +9 -26
  30. package/src/scripts/Libraries/Reveal.js +32 -0
  31. package/src/scripts/Libraries/Ripple.js +3 -3
  32. package/src/scripts/Libraries/Stimulus.js +50 -5
  33. package/src/scripts/Libraries/Swup.js +44 -59
  34. package/src/scripts/Libraries/Toaster.js +55 -0
  35. package/src/scripts/Ui/Check.js +3 -3
  36. package/src/scripts/Ui/Control.js +42 -34
  37. package/src/scripts/Ui/ControlSelect.js +6 -5
  38. package/src/scripts/Ui/Text.js +6 -6
  39. package/src/scripts/Utils/+.js +3 -3
  40. package/src/scripts/Utils/cdn.js +0 -1
  41. package/src/scripts/Utils/initAfter.js +11 -0
  42. package/src/scripts/Utils/naja.js +41 -0
  43. package/src/scripts/Utils/utilities.js +8 -0
  44. package/src/scripts/main.js +2 -1
  45. package/src/styles/Components/+.css +3 -2
  46. package/src/styles/Components/Dialog/+.css +2 -0
  47. package/src/styles/Components/Dialog/Content.css +2 -0
  48. package/src/styles/Components/Dialog/CookieConsent.css +17 -0
  49. package/src/styles/Components/Dialog/Default.css +2 -26
  50. package/src/styles/Components/Drawer.css +18 -0
  51. package/src/styles/Components/Field.css +1 -1
  52. package/src/styles/Components/Popover.css +1 -0
  53. package/src/styles/Components/Toaster.css +2 -0
  54. package/src/styles/Layout/Header.css +7 -39
  55. package/src/styles/Layout/Main.css +9 -6
  56. package/src/styles/Layout/Nav.css +6 -30
  57. package/src/styles/Libraries/+.css +0 -5
  58. package/src/styles/Ui/+.css +0 -1
  59. package/src/styles/Ui/Badge.css +1 -0
  60. package/src/styles/Ui/Btn.css +6 -5
  61. package/src/styles/Ui/Check.css +1 -1
  62. package/src/styles/Ui/Control.css +14 -4
  63. package/src/styles/Ui/ControlSelect.css +10 -19
  64. package/src/styles/Ui/Group.css +1 -1
  65. package/src/styles/Ui/Heading.css +1 -0
  66. package/src/styles/Ui/Image.css +1 -1
  67. package/src/styles/Ui/Info.css +1 -1
  68. package/src/styles/Ui/Label.css +1 -1
  69. package/src/styles/Ui/Link.css +7 -1
  70. package/src/styles/Ui/Notice.css +9 -1
  71. package/src/styles/Ui/Progress.css +1 -1
  72. package/src/styles/Ui/Switch.css +1 -1
  73. package/src/styles/Ui/Text.css +1 -8
  74. package/src/styles/Ui/Title.css +1 -4
  75. package/src/styles/Utils/+.css +1 -3
  76. package/src/styles/Utils/config.css +14 -3
  77. package/src/styles/Utils/default.css +11 -4
  78. package/src/styles/Utils/theme/+.css +1 -1
  79. package/src/styles/Utils/theme/main.css +27 -13
  80. package/src/styles/Utils/utilities.css +42 -0
  81. package/src/styles/main.css +1 -4
  82. package/src/templates/Components/Dialog/Basic.latte +24 -0
  83. package/src/templates/Components/Dialog/CookieConsent.latte +27 -0
  84. package/src/templates/Components/Form/CookieConsent.latte +47 -0
  85. package/src/templates/Layout/Header.latte +31 -33
  86. package/src/templates/Layout/Main.latte +39 -28
  87. package/src/templates/Sections/CookieConsent.latte +69 -0
  88. package/src/templates/Sections/Site.latte +80 -8
  89. package/src/templates/Sections/Text.latte +64 -0
  90. package/src/templates/Sections/Ui/Docs/@intro.html +5 -5
  91. package/src/templates/Sections/Ui/Docs/@nav.html +50 -60
  92. package/src/templates/Sections/Ui/Docs/@styles.html +1 -1
  93. package/src/templates/Sections/Ui/Docs/Default.latte +86 -166
  94. package/src/templates/Sections/Ui/Icons.html +1 -1
  95. package/src/templates/Sections/Ui/Intro.html +33 -79
  96. package/src/templates/Ui/ControlDate.latte +1 -1
  97. package/src/templates/Ui/ControlTime.latte +1 -1
  98. package/src/views/dialog/basic.json.latte +1 -1
  99. package/src/views/email/email.latte +2 -2
  100. package/src/views/email/email.test.latte +2 -2
  101. package/src/views/gdpr.json +6 -4
  102. package/src/views/popover/info.json.latte +15 -0
  103. package/vite.config.js +17 -10
  104. package/src/emails/styles/email.css +0 -77
  105. package/src/emails/templates.test/Content.latte +0 -24
  106. package/src/emails/templates.test/Header.latte +0 -14
  107. package/src/scripts/Components/CookieConsent.js +0 -78
  108. package/src/scripts/Layout/Main.js +0 -50
  109. package/src/scripts/Libraries/Drawer.js +0 -42
  110. package/src/scripts/Libraries/Script.js +0 -18
  111. package/src/scripts/Libraries/Slider.js +0 -160
  112. package/src/scripts/Libraries/Tippy.js +0 -117
  113. package/src/scripts/Utils/Functions/+.js +0 -7
  114. package/src/scripts/Utils/Functions/importScript.js +0 -17
  115. package/src/scripts/Utils/Functions/importStyle.js +0 -18
  116. package/src/scripts/Utils/Functions/inputStep.js +0 -9
  117. package/src/scripts/Utils/Functions/inputValidity.js +0 -57
  118. package/src/scripts/Utils/Functions/loadStimulus.js +0 -42
  119. package/src/scripts/Utils/Functions/replaceScript.js +0 -4
  120. package/src/scripts/Utils/Functions/replaceTag.js +0 -8
  121. package/src/scripts/Utils/global.js +0 -15
  122. package/src/styles/Components/CookieConsent.css +0 -68
  123. package/src/styles/Components/Dropdown/+.css +0 -1
  124. package/src/styles/Components/Dropdown/Default.css +0 -8
  125. package/src/styles/Libraries/Dialog.css +0 -1
  126. package/src/styles/Libraries/Drawer.css +0 -64
  127. package/src/styles/Libraries/Hint.css +0 -186
  128. package/src/styles/Libraries/Ripple.css +0 -1
  129. package/src/styles/Libraries/Tippy.css +0 -73
  130. package/src/styles/Ui/Dot.css +0 -22
  131. package/src/styles/Utils/icons.css +0 -5
  132. package/src/styles/Utils/tailwind.css +0 -50
  133. package/src/templates/Components/CookieConsent.latte +0 -28
  134. package/src/templates/Components/Dialogs/Basic.latte +0 -22
  135. package/src/templates/Components/Items/.gitkeep +0 -0
  136. package/src/templates/Sections/Gdpr.latte +0 -127
  137. package/src/views/dropdown/tippy.json.latte +0 -19
  138. /package/src/{styles/Utils/print.css → emails/styles/main/Base/font.css} +0 -0
@@ -1,186 +0,0 @@
1
- [class*="lib-hint-"] {
2
- --color-accent: var(--color-body);
3
- --color-current: var(--color-body-fg);
4
- --lib-hint-font-size: 0.75rem;
5
- --lib-hint-font-weight: var(--font-normal);
6
-
7
- position: relative;
8
-
9
- &::before, &::after {
10
- position: absolute;
11
- visibility: hidden;
12
- opacity: 0;
13
- z-index: var(--z-10);
14
- pointer-events: none;
15
- transition: var(--transition-duration) ease;
16
- transition-delay: 0ms;
17
- will-change: transform;
18
- backface-visibility: hidden;
19
- }
20
-
21
- &::before {
22
- content: "";
23
- position: absolute;
24
- background-color: transparent;
25
- border: 0.375rem solid transparent;
26
- z-index: var(--z-20);
27
- }
28
-
29
- &::after {
30
- border-radius: var(--rounded);
31
- background-color: var(--color-accent);
32
- color: var(--color-current);
33
- padding: 0.75rem;
34
- font-size: var(--lib-hint-font-size);
35
- font-family: inherit;
36
- line-height: 0.875rem;
37
- white-space: nowrap;
38
- box-shadow:
39
- 0 0.15rem 1.5rem 0 rgb(var(--color-main-rgb) / 10%),
40
- 0 0 1rem 0 rgb(var(--color-main-rgb) / 10%);
41
- font-weight: var(--lib-hint-font-weight);
42
- text-align: center;
43
- }
44
-
45
- &.lib-hint-top {
46
- &::before, &::after {
47
- bottom: 100%;
48
- left: 50%;
49
- }
50
-
51
- &::before {
52
- left: calc(50% - 0.375rem);
53
- margin-bottom: -0.6875rem;
54
- }
55
-
56
- &::after {
57
- transform: translateX(-50%);
58
- }
59
-
60
- &:is(:hover, :focus-visible) {
61
- &::before {
62
- transform: translateY(-0.5rem);
63
- }
64
-
65
- &::after {
66
- transform: translateX(-50%) translateY(-0.5rem);
67
- }
68
- }
69
- }
70
-
71
- &.lib-hint-bottom {
72
- &::before, &::after {
73
- top: 100%;
74
- left: 50%;
75
- }
76
-
77
- &::before {
78
- left: calc(50% - 0.375rem);
79
- margin-top: -0.6875rem;
80
- }
81
-
82
- &::after {
83
- transform: translateX(-50%);
84
- }
85
-
86
- &:is(:hover, :focus-visible) {
87
- &::before {
88
- transform: translateY(0.5rem);
89
- }
90
-
91
- &::after {
92
- transform: translateX(-50%) translateY(0.5rem);
93
- }
94
- }
95
- }
96
-
97
- &.lib-hint-right {
98
- &::before, &::after {
99
- left: 100%;
100
- bottom: 50%;
101
- }
102
-
103
- &::before {
104
- margin-left: -0.6875rem;
105
- margin-bottom: -0.375rem;
106
- }
107
-
108
- &::after {
109
- margin-bottom: -1.1875rem;
110
- }
111
-
112
- &:is(:hover, :focus-visible) {
113
- &::before, &::after {
114
- transform: translateX(0.5rem);
115
- }
116
- }
117
- }
118
-
119
- &.lib-hint-left {
120
- &::before, &::after {
121
- right: 100%;
122
- bottom: 50%;
123
- }
124
-
125
- &::before {
126
- margin-right: -0.6875rem;
127
- margin-bottom: -0.375rem;
128
- }
129
-
130
- &::after {
131
- margin-bottom: -1.1875rem;
132
- }
133
-
134
- &:is(:hover, :focus-visible) {
135
- &::before, &::after {
136
- transform: translateX(-0.5rem);
137
- }
138
- }
139
- }
140
-
141
- &[aria-label]::after {
142
- content: attr(aria-label);
143
- }
144
-
145
- &[class*="lib-hint-top"]::before {
146
- border-top-color: var(--color-accent);
147
- }
148
-
149
- &[class*="lib-hint-bottom"]::before {
150
- border-bottom-color: var(--color-accent);
151
- }
152
-
153
- &[class*="lib-hint-left"]::before {
154
- border-left-color: var(--color-accent);
155
- }
156
-
157
- &[class*="lib-hint-right"]::before {
158
- border-right-color: var(--color-accent);
159
- }
160
-
161
- &:is(.lib-hint-sm, .lib-hint-md, .lib-hint-lg)::after {
162
- white-space: normal;
163
- line-height: 1.5;
164
- word-wrap: break-word;
165
- }
166
-
167
- &.lib-hint-sm::after {
168
- width: 5rem;
169
- }
170
-
171
- &.lib-hint-md::after {
172
- width: 10rem;
173
- }
174
-
175
- &.lib-hint-lg::after {
176
- width: 15rem;
177
- }
178
-
179
- &:is(:hover, :focus-visible) {
180
- &::before, &::after {
181
- visibility: visible;
182
- opacity: 1;
183
- transition-delay: 100ms;
184
- }
185
- }
186
- }
@@ -1 +0,0 @@
1
- @import "winduum/src/libraries/ripple.css";
@@ -1,73 +0,0 @@
1
- .tippy-content {
2
- padding: 0;
3
- }
4
-
5
- .tippy-box {
6
- background-color: transparent;
7
- color: inherit;
8
- box-shadow: none;
9
- font-size: inherit;
10
- line-height: inherit;
11
-
12
- &[data-placement="bottom-end"] {
13
- &[data-animation="scale"] {
14
- transform-origin: top right;
15
- }
16
- }
17
-
18
- &[data-placement="bottom-start"] {
19
- &[data-animation="scale"] {
20
- transform-origin: top left;
21
- }
22
- }
23
- }
24
-
25
- .tippy-svg-arrow {
26
- fill: var(--color-body);
27
- }
28
-
29
- [data-tippy-root] {
30
- &.is-full {
31
- @media not all and (--media-md) {
32
- inset: 0 !important;
33
- width: 100% !important;
34
- height: 100% !important;
35
- position: fixed !important;
36
- transform: none !important;
37
- visibility: visible !important;
38
- pointer-events: none;
39
- max-width: 100%;
40
- background-color: color-mix(in srgb, var(--color-dark) 50%, transparent);
41
- transition: var(--transition-opacity);
42
- opacity: 0;
43
-
44
- &:has(.tippy-content[data-state="visible"]) {
45
- opacity: 1;
46
- }
47
-
48
- & .tippy-content {
49
- pointer-events: auto;
50
- }
51
-
52
- & .tippy-box {
53
- position: absolute;
54
- bottom: 0;
55
- left: 0;
56
- right: 0;
57
- transition-timing-function: ease;
58
- transition-duration: 300ms;
59
-
60
- &[data-state="hidden"] {
61
- transform: translateY(100%);
62
- opacity: 0;
63
- }
64
- }
65
-
66
- .c-dropdown {
67
- max-width: 100%;
68
- border-bottom-right-radius: 0;
69
- border-bottom-left-radius: 0;
70
- }
71
- }
72
- }
73
- }
@@ -1,22 +0,0 @@
1
- .ui-dot {
2
- --ui-dot-sq: 0.375rem;
3
- --ui-dot-bg-opacity: 0.2;
4
-
5
- width: var(--ui-dot-sq);
6
- height: var(--ui-dot-sq);
7
- border-radius: var(--rounded-full);
8
- background-color: rgb(var(--color-accent-rgb) / var(--ui-dot-bg-opacity));
9
- transition: var(--transition-background), width var(--transition-duration), height var(--transition-duration);
10
- position: relative;
11
-
12
- &::before {
13
- content: "";
14
- position: absolute;
15
- inset: -0.25rem;
16
- }
17
-
18
- &.active {
19
- --ui-dot-bg-opacity: 1;
20
- --ui-dot-sq: 0.5625rem;
21
- }
22
- }
@@ -1,5 +0,0 @@
1
- @import "winduum/src/base/icons.css";
2
-
3
- :root {
4
- --icon-x-mark: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" /></svg>') no-repeat 50% 50% / contain;
5
- }
@@ -1,50 +0,0 @@
1
- @import "winduum/src/base/tailwind/utilities.css";
2
- @import "winduum/src/base/tailwind/gutters.css";
3
-
4
- @layer utilities {
5
- .slider {
6
- overflow-x: auto;
7
- overflow-y: hidden;
8
- -webkit-overflow-scrolling: touch;
9
- user-select: none;
10
- scrollbar-width: none !important;
11
- -ms-overflow-style: none;
12
- display: flex;
13
-
14
- &:not(.is-fade, .is-grabbing) {
15
- scroll-behavior: smooth;
16
- scroll-snap-type: x mandatory;
17
- }
18
-
19
- &::-webkit-scrollbar {
20
- display: none;
21
- }
22
-
23
- & > * {
24
- flex: 0 0 auto;
25
- scroll-snap-align: start;
26
- }
27
-
28
- &.is-grabbing {
29
- &, & * {
30
- cursor: grabbing;
31
- }
32
-
33
- & a {
34
- pointer-events: none;
35
- }
36
- }
37
- }
38
-
39
- .slider-edge-x {
40
- margin-left: calc(var(--container-padding-calc) * -1);
41
- margin-right: calc(var(--container-padding-calc) * -1);
42
- padding-left: var(--container-padding-calc);
43
- scroll-padding-left: var(--container-padding-calc);
44
- scroll-padding-right: var(--container-padding-calc);
45
-
46
- & > *:last-child {
47
- margin-right: var(--container-padding-calc);
48
- }
49
- }
50
- }
@@ -1,28 +0,0 @@
1
- {var $center = true}
2
-
3
- <div class="c-cookieconsent {if $center}is-center{/if}" data-controller="c-cookieconsent">
4
- <div class="c">
5
- <div class="c_head mt-2">
6
- {if true}
7
- <div class="ui-image w-40 mb-6">
8
- <img src="{placeholder(160, 46)}">
9
- </div>
10
- {/if}
11
- <div class="ui-heading lg md:my-8">Nastavení soukromí a&nbsp;cookies&nbsp;🍪</div>
12
- </div>
13
- <div class="c_body">
14
- <div class="ui-text xs md:sm">
15
- <p>Webové stránky používají k poskytování služeb, personalizaci reklam a analýze návštěvnosti soubory&nbsp;cookies.</p>
16
- <p>Následující volbou souhlasíte s našimi <a href="/gdpr">zásady&nbsp;ochrany osobních údajů a cookies</a>. Svá&nbsp;nastavení můžete kdykoli změnit.</p>
17
- </div>
18
- </div>
19
- <div class="c_foot {if $center}flex-col gap-y-2{else}gap-x-4{/if}">
20
- <div class="col w-full">
21
- <button class="ui-btn lg w-full" data-action="click->c-cookieconsent#approve">Ano, souhlasím</button>
22
- </div>
23
- <div class="col w-full {if !$center}pr-6{/if}">
24
- <button class="ui-btn ghosted lg accent-main w-full" data-action="click->c-cookieconsent#decline"><span>Nesouhlasím</span></button>
25
- </div>
26
- </div>
27
- </div>
28
- </div>
@@ -1,22 +0,0 @@
1
- <form class="c-dialog c-dialog-basic sm scrollable">
2
- <div class="c_dialog_head flex justify-between">
3
- <h2 class="ui-heading">Info</h2>
4
- <button class="ui-btn square ghosted accent-main" type="button" data-action="click->lib-dialog#close">
5
- <svg>
6
- <use href="#icon-x"></use>
7
- </svg>
8
- </button>
9
- </div>
10
- <div class="c_dialog_body py-4">
11
- <div class="ui-text">
12
- {foreach range(1, 44) as $i}
13
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eget efficitur metus. In bibendum nisi et dui sagittis efficitur.</p>
14
- {/foreach}
15
- </div>
16
- </div>
17
- <div class="c_dialog_foot">
18
- <div class="col max-md:w-full">
19
- <button class="ui-btn" type="button" data-action="click->lib-dialog#close">Continue</button>
20
- </div>
21
- </div>
22
- </form>
File without changes
@@ -1,127 +0,0 @@
1
- <div class="s-text py-14">
2
- <div class="container">
3
- <div class="d:col-10 ml-auto mr-auto">
4
- <div class="wrp_s_head mb-8">
5
- <h2 class="ui-heading">Zásady používání cookies</h2>
6
- </div>
7
- <div class="wrp_s_body">
8
- <div class="ui-text"><h4 style="text-align: left;">Pravidla používání cookies na našich webových
9
- stránkách</h4>
10
- <p style="text-align: left;">Tyto webové stránky používají k poskytování služeb, personalizaci
11
- reklam a analýze návštěvnosti soubory cookies. Pokud nepovolíte využití reklamních cookies, web
12
- bude používat pouze cookies nezbytné k tomu, abyste se mohli pohybovat po webu a používat jeho
13
- funkce. Zásady ukládání cookies na váš počítač si můžete kdykoliv vypnout nebo upravit na konci
14
- této stránky.</p>
15
- <p></p>
16
- <p></p><h4 style="text-align: left;">Cookies nutné pro funkčnost stránek</h4>
17
- <p style="text-align: left;">Tyto cookies jsou nezbytné k tomu, abyste se mohli pohybovat po webu a
18
- používat jeho funkce. Jsou aktivovány v okamžiku, kdy uživatel vstoupí na stránku. Některé části
19
- webových stránek nemusí správně fungovat, pokud tyto soubory cookie nejsou uloženy.</p>
20
- <p></p>
21
- <table style="border-collapse: collapse; width: 100%; height: 96px;" border="1">
22
- <tbody>
23
- <tr style="height: 24px;">
24
- <td style="width: 46.4115%; height: 24px;">Cookie</td>
25
- <td style="width: 46.4115%; height: 24px;">PHPSSID</td>
26
- </tr>
27
- <tr style="height: 24px;">
28
- <td style="width: 46.4115%; height: 24px;">Autor</td>
29
- <td style="width: 46.4115%; height: 24px;"><a
30
- href="http://www.newlogic.cz">www.newlogic.cz</a></td>
31
- </tr>
32
- <tr style="height: 24px;">
33
- <td style="width: 46.4115%; height: 24px;">Účel</td>
34
- <td style="width: 46.4115%; height: 24px;">Tyto soubory cookies mohou být použity pro
35
- sledování aktuální relace uživatele. Součástí těchto údajů je i IP adresa uživatele,
36
- která je použita jako jedna z komponent pro hash generovaný frameworkem. Vlastník
37
- stránek IP adresu samostatně neukládá a z hashe ji nelze zpětně rekonstruovat.
38
- </td>
39
- </tr>
40
- <tr style="height: 24px;">
41
- <td style="width: 46.4115%; height: 24px;">Platnost</td>
42
- <td style="width: 46.4115%; height: 24px;">1 den</td>
43
- </tr>
44
- </tbody>
45
- </table>
46
- <p></p>
47
- <p></p><h4 style="text-align: left;">Cookies užívané k měření návštěvnosti stránek</h4>
48
- <p style="text-align: left;">Tyto cookies slouží k měření počtu návštěv stránek. Jedná se o nástroje
49
- služby Google Analytics.</p>
50
- <p></p>
51
- <table style="border-collapse: collapse; width: 100%;" border="1">
52
- <tbody>
53
- <tr>
54
- <td style="width: 46.4689%;">Cookie</td>
55
- <td style="width: 46.4689%;">utma, utmb, utmc, utmt, utmz</td>
56
- </tr>
57
- <tr>
58
- <td style="width: 46.4689%;">Autor</td>
59
- <td style="width: 46.4689%;"><a
60
- href="https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage">Google
61
- Analytics</a></td>
62
- </tr>
63
- <tr>
64
- <td style="width: 46.4689%;">Účel</td>
65
- <td style="width: 46.4689%;">Google Analytics měřící kódy</td>
66
- </tr>
67
- <tr>
68
- <td style="width: 46.4689%;">Platnost</td>
69
- <td style="width: 46.4689%;">Do ukončení uživatelské relace.</td>
70
- </tr>
71
- </tbody>
72
- </table>
73
- <p></p>
74
- <p></p>
75
- <p></p>
76
- </div>
77
- <form class="c-form-cookieconsent flex flex-col gap-8" data-controller="c-form-cookieconsent" data-action="submit->c-form-cookieconsent#update:prevent" autocomplete="off">
78
- <div class="c_form_head">
79
- <div class="ui-text">
80
- <h4 style="text-align: left;">Nastavení cookies</h4>
81
- <p style="text-align: left;">
82
- Následujícím nastavením můžete upravit jaké soubory cookie
83
- se budou používat na této stránce.
84
- </p>
85
- </div>
86
- </div>
87
- <div class="c_form_body">
88
- <div class="ui-text mb-4">
89
- <h5>Nutné cookies</h5>
90
- <p>
91
- Tyto soubory cookies jsou nezbytně nutné pro váš pohyb po webové stránce a využívání všech funkcí, např. nastavení preferencí soukromí, přihlašování nebo vyplňování formulářů. Bez těchto cookies by nebylo možné řádně poskytovat služby požadované při používání naší stránky. Nezbytně nutné cookies nevyžadují souhlas uživatele dle příslušných právních předpisů. Můžete si také nakonfigurovat webový prohlížeč a nezbytně nutné soubory cookies zablokovat, ovšem následně se může stát, že nebudete moci používat všechny funkce stránky tak, jak byste chtěli.
92
- </p>
93
- </div>
94
- <label class="ui-switch">
95
- <input type="checkbox" value="decline" checked disabled>
96
- </label>
97
- </div>
98
- <div class="c_form_body">
99
- <div class="ui-text mb-4">
100
- <h5>Statistické soubory cookies</h5>
101
- <p>
102
- Tyto soubory cookie nám umožňují počítat návštěvy a zdroje návštěvnosti, abychom mohli měřit a zlepšovat výkon našich stránek. Pomáhají nám zjistit, které stránky jsou nejoblíbenější a které nejméně, a vidět, jak se návštěvníci na webu pohybují, což nám pomáhá optimalizovat váš zážitek. Všechny informace, které tyto soubory cookie shromažďují, jsou agregované, a proto anonymní. Pokud tyto soubory cookie nepovolíte, nebudeme moci používat vaše údaje tímto způsobem.
103
- </p>
104
- </div>
105
- <label class="ui-switch">
106
- <input type="checkbox" value="performance">
107
- </label>
108
- </div>
109
- <div class="c_form_body">
110
- <div class="ui-text mb-4">
111
- <h5>Reklamní soubory cookies</h5>
112
- <p>
113
- Tyto soubory cookies (zvané také cílené nebo reklamní cookies) se používají k zobrazování reklam na stránkách třetích stran, které by více odpovídaly vaší osobě a vašim zájmům. Používají se také k omezení počtu shlédnutí reklam a měření účinností reklamních kampaní.
114
- </p>
115
- </div>
116
- <label class="ui-switch">
117
- <input type="checkbox" value="marketing">
118
- </label>
119
- </div>
120
- <div class="c_form_foot">
121
- <button class="ui-btn"><span>Uložit předvolby</span></button>
122
- </div>
123
- </form>
124
- </div>
125
- </div>
126
- </div>
127
- </div>
@@ -1,19 +0,0 @@
1
- {capture $content}
2
- <div class="c-dropdown">
3
- <ul class="wrp_c_list flex-col row-y gy-4">
4
- <li class="col">
5
- <button class="ui-link">
6
- <span>{ edit }</span>
7
- </button>
8
- </li>
9
- <li class="col">
10
- <button class="ui-link">
11
- <span>{ delete }</span>
12
- </button>
13
- </li>
14
- </ul>
15
- </div>
16
- {/capture}
17
-
18
- {$content|json('content')|noescape}
19
-