@diplodoc/client 4.1.1 → 4.1.4
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/.github/workflows/deps.yml +4 -0
- package/.github/workflows/package-lock.yaml +4 -0
- package/.github/workflows/prerelease.yaml +8 -2
- package/.github/workflows/quality.yaml +4 -0
- package/.github/workflows/release.yaml +5 -2
- package/.github/workflows/tests.yaml +4 -0
- package/CHANGELOG.md +22 -0
- package/build/client/manifest.json +6 -6
- package/build/client/{vendor-420d6db839bc33e1.css → vendor-593a6546600e304d.css} +3 -3
- package/build/client/{vendor-420d6db839bc33e1.css.map → vendor-593a6546600e304d.css.map} +1 -1
- package/build/client/{vendor-87f8771458dc0578.rtl.css → vendor-c200a1eb52ab9cb5.rtl.css} +2 -2
- package/build/client/{vendor-72b6cbbe97b90df8.js → vendor-cc74e4dafed769a9.js} +2 -2
- package/build/client/vendor-cc74e4dafed769a9.js.map +1 -0
- package/build/server/vendor.js +2 -2
- package/build/server/vendor.js.map +1 -1
- package/package.json +7 -3
- package/build/client/vendor-72b6cbbe97b90df8.js.map +0 -1
|
@@ -24,6 +24,10 @@ jobs:
|
|
|
24
24
|
node-version: 22
|
|
25
25
|
registry-url: 'https://registry.npmjs.org'
|
|
26
26
|
cache: 'npm'
|
|
27
|
+
- name: Install latest npm (>= 11.5.1)
|
|
28
|
+
run: |
|
|
29
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
30
|
+
shell: bash
|
|
27
31
|
- run: npm ci
|
|
28
32
|
- name: Update package
|
|
29
33
|
run: npm i ${{ inputs.package }}@${{ inputs.version }}
|
|
@@ -23,6 +23,10 @@ jobs:
|
|
|
23
23
|
node-version: 22
|
|
24
24
|
registry-url: 'https://registry.npmjs.org'
|
|
25
25
|
cache: 'npm'
|
|
26
|
+
- name: Install latest npm (>= 11.5.1)
|
|
27
|
+
run: |
|
|
28
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
29
|
+
shell: bash
|
|
26
30
|
- name: Install packages for project
|
|
27
31
|
run: npm i --package-lock-only
|
|
28
32
|
- name: Create and publish commit
|
|
@@ -2,6 +2,10 @@ on: workflow_dispatch
|
|
|
2
2
|
|
|
3
3
|
name: prerelease
|
|
4
4
|
|
|
5
|
+
permissions:
|
|
6
|
+
contents: read
|
|
7
|
+
id-token: write
|
|
8
|
+
|
|
5
9
|
jobs:
|
|
6
10
|
prerelease:
|
|
7
11
|
runs-on: ubuntu-latest
|
|
@@ -14,8 +18,10 @@ jobs:
|
|
|
14
18
|
node-version: 22
|
|
15
19
|
registry-url: 'https://registry.npmjs.org'
|
|
16
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
17
25
|
- run: npm ci
|
|
18
26
|
- run: npm version --no-git-tag-version 0.0.0-rc-$(git branch --show-current)-$(date "+%Y%m%d%H%M")
|
|
19
27
|
- run: npm publish --tag $(git branch --show-current)
|
|
20
|
-
env:
|
|
21
|
-
NODE_AUTH_TOKEN: ${{secrets.ROBOT_DATAUI_NPM_TOKEN}}
|
|
@@ -18,6 +18,10 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
21
25
|
- run: npm ci
|
|
22
26
|
- run: npm run lint
|
|
23
27
|
- run: npm run typecheck
|
|
@@ -7,6 +7,7 @@ name: release
|
|
|
7
7
|
permissions:
|
|
8
8
|
contents: write
|
|
9
9
|
pull-requests: write
|
|
10
|
+
id-token: write
|
|
10
11
|
|
|
11
12
|
jobs:
|
|
12
13
|
release:
|
|
@@ -17,6 +18,10 @@ jobs:
|
|
|
17
18
|
with:
|
|
18
19
|
node-version: 22
|
|
19
20
|
registry-url: 'https://registry.npmjs.org'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
20
25
|
- run: npm ci
|
|
21
26
|
shell: bash
|
|
22
27
|
- uses: codex-team/action-nodejs-package-info@v1
|
|
@@ -30,7 +35,5 @@ jobs:
|
|
|
30
35
|
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"deps","section":"Dependency update","hidden":false}]'
|
|
31
36
|
bump-minor-pre-major: true
|
|
32
37
|
- run: npm publish
|
|
33
|
-
env:
|
|
34
|
-
NODE_AUTH_TOKEN: ${{secrets.ROBOT_DATAUI_NPM_TOKEN}}
|
|
35
38
|
if: ${{ steps.release.outputs.release_created }}
|
|
36
39
|
shell: bash
|
|
@@ -18,5 +18,9 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
21
25
|
- run: npm ci
|
|
22
26
|
- run: npm run test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.1.4](https://github.com/diplodoc-platform/client/compare/v4.1.3...v4.1.4) (2025-11-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fixed npm version ([#224](https://github.com/diplodoc-platform/client/issues/224)) ([4a0abce](https://github.com/diplodoc-platform/client/commit/4a0abcee8d7255289897ccdf4eabb589059e9b63))
|
|
9
|
+
|
|
10
|
+
## [4.1.3](https://github.com/diplodoc-platform/client/compare/v4.1.2...v4.1.3) (2025-11-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* fixed npm version ([#221](https://github.com/diplodoc-platform/client/issues/221)) ([5a0eb62](https://github.com/diplodoc-platform/client/commit/5a0eb62594bb8256466842d29fb4f3c84991a5a2))
|
|
16
|
+
|
|
17
|
+
## [4.1.2](https://github.com/diplodoc-platform/client/compare/v4.1.1...v4.1.2) (2025-11-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependency update
|
|
21
|
+
|
|
22
|
+
* Update @diplodoc/components to 4.38.3 ([#214](https://github.com/diplodoc-platform/client/issues/214)) ([6007f23](https://github.com/diplodoc-platform/client/commit/6007f2306541e125658b274c3ce381926885e6a7))
|
|
23
|
+
* Update @diplodoc/components to 4.38.4 ([#216](https://github.com/diplodoc-platform/client/issues/216)) ([4d1ff99](https://github.com/diplodoc-platform/client/commit/4d1ff99a296b02677c1358072ab04106f9f080d6))
|
|
24
|
+
|
|
3
25
|
## [4.1.1](https://github.com/diplodoc-platform/client/compare/v4.1.0...v4.1.1) (2025-10-27)
|
|
4
26
|
|
|
5
27
|
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
],
|
|
7
7
|
"js": [
|
|
8
8
|
"search-7dc3bfe50645287d.js",
|
|
9
|
-
"vendor-
|
|
9
|
+
"vendor-cc74e4dafed769a9.js",
|
|
10
10
|
"react-23c48c44d4a3ad02.js"
|
|
11
11
|
],
|
|
12
12
|
"css": [
|
|
13
|
-
"vendor-
|
|
13
|
+
"vendor-593a6546600e304d.css",
|
|
14
14
|
"search-502016d774f6550e.css",
|
|
15
|
-
"vendor-
|
|
15
|
+
"vendor-c200a1eb52ab9cb5.rtl.css",
|
|
16
16
|
"app-61b09144a220a432.rtl.css",
|
|
17
17
|
"search-115293e3ef2137cb.rtl.css"
|
|
18
18
|
]
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"444-eff261d7ea9f84b4.js"
|
|
24
24
|
],
|
|
25
25
|
"js": [
|
|
26
|
-
"vendor-
|
|
26
|
+
"vendor-cc74e4dafed769a9.js",
|
|
27
27
|
"react-23c48c44d4a3ad02.js",
|
|
28
28
|
"app-ba6364e2395fcb2b.js"
|
|
29
29
|
],
|
|
30
30
|
"css": [
|
|
31
|
-
"vendor-
|
|
31
|
+
"vendor-593a6546600e304d.css",
|
|
32
32
|
"app-78e49b3fc9a05a8f.css",
|
|
33
|
-
"vendor-
|
|
33
|
+
"vendor-c200a1eb52ab9cb5.rtl.css",
|
|
34
34
|
"app-61b09144a220a432.rtl.css",
|
|
35
35
|
"search-115293e3ef2137cb.rtl.css"
|
|
36
36
|
]
|
|
@@ -138,7 +138,7 @@ a.pc-image-card_border_shadow,.pc-image-card_border_shadow{box-shadow:0px 4px 24
|
|
|
138
138
|
.pc-navigation-item{cursor:pointer;outline:none;color:inherit;-webkit-text-decoration:none;text-decoration:none}.pc-navigation-item:last-child{margin-bottom:0}.utilityfocus .pc-navigation-item:focus{outline:2px solid #ffdb4d}.pc-navigation-item__content:not(.pc-navigation-item__content_type_button):hover,.pc-navigation-item__content:not(.pc-navigation-item__content_type_button):active{color:var(--g-color-text-link)}.pc-navigation-item_menu-layout_desktop{height:var(--header-height);line-height:var(--header-height);margin-bottom:0}.pc-navigation-item_menu-layout_mobile{margin-bottom:24px}.pc-navigation-item_menu-layout_dropdown{margin-bottom:0}.pc-navigation-item_menu-layout_dropdown .pc-navigation-item__content_type_link{padding:8px 12px}
|
|
139
139
|
.dc-sidebar-navigation__button{margin-right:14px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.dc-sidebar-navigation__navigation{font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height);display:flex;flex-direction:column;flex:1 0 0;height:100%;overflow-y:auto}.dc-sidebar-navigation__list{margin:0;padding:0;list-style:none}.dc-sidebar-navigation__section:not(:last-child){border-bottom:1px solid var(--g-color-line-generic)}.dc-sidebar-navigation__item{padding:24px 0}.dc-sidebar-navigation__console-button{margin-top:12px}
|
|
140
140
|
.dc-share-button{vertical-align:middle;margin:0 0 5px 12px}.dc-share-button:hover::before{background-color:transparent}
|
|
141
|
-
.dc-mini-toc__title{font-weight:500;color:var(--g-color-text-primary);margin-bottom:12px;margin-top:0;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-mini-toc__sections{margin:0;padding:0;list-style:none;position:relative;max-height:calc(100vh - 0px - 52px - 56px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 56px);overflow-x:hidden;overflow-y:auto;overflow-x:hidden;overflow-y:auto;overflow:hidden auto}.dc-mini-toc__section{display:block}.dc-mini-toc__section>.dc-mini-toc__section-link{border-left-color:var(--g-color-line-generic)}.dc-mini-toc__section>.dc-mini-toc__section-link:focus{outline:2px solid var(--g-color-line-focus);outline-offset:-2px}.dc-mini-toc__section>.dc-mini-toc__section-link:focus:not(:focus-visible){outline:0}.dc-mini-toc__section-link{display:flex;align-items:center;padding:6px 6px 6px 12px;min-height:28px;color:var(--g-color-text-secondary);border-left:2px solid transparent;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none}.dc-mini-toc__section-link:hover{color:var(--g-color-text-complementary)}.dc-mini-toc__section_child .dc-mini-toc__section-link{padding-left:25px}.dc-mini-toc__section_active>.dc-mini-toc__section-link{color:var(--g-color-text-primary);border-left-color:var(--g-color-text-primary)}.dc-mini-toc__bottom{display:none}@media(max-width: 768px){.dc-mini-toc{padding:16px 8px 16px 20px}body:has(.dc-mini-toc_overflowed:hover){overflow-y:hidden}.dc-mini-toc__title{margin-bottom:12px}.dc-mini-toc:has(.dc-mini-toc_overflowed) .dc-mini-toc__bottom{display:block;height:36px}.dc-mini-toc:has(.dc-mini-toc_overflowed) .dc-mini-toc__sections{max-height:calc(100vh - 0px - 52px - 64px - 36px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 64px - 36px)}.dc-mini-toc__section-link{padding:8px 12px 8px 28px}.dc-mini-toc__section_child .dc-mini-toc__section-link{padding-left:44px}.dc-mini-toc__sections{font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height);max-height:calc(100vh - 0px - 52px - 64px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 64px)}}
|
|
141
|
+
.dc-mini-toc__title{font-weight:500;color:var(--g-color-text-primary);margin-bottom:12px;margin-top:0;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-mini-toc__sections{margin:0;padding:0;list-style:none;position:relative;box-sizing:border-box;max-height:calc(100vh - 0px - 52px - 56px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 56px);overflow-x:hidden;overflow-y:auto;overflow-x:hidden;overflow-y:auto;overflow:hidden auto}.dc-mini-toc__section{display:block}.dc-mini-toc__section>.dc-mini-toc__section-link{border-left-color:var(--g-color-line-generic)}.dc-mini-toc__section>.dc-mini-toc__section-link:focus{outline:2px solid var(--g-color-line-focus);outline-offset:-2px}.dc-mini-toc__section>.dc-mini-toc__section-link:focus:not(:focus-visible){outline:0}.dc-mini-toc__section-link{display:flex;align-items:center;padding:6px 6px 6px 12px;min-height:28px;color:var(--g-color-text-secondary);border-left:2px solid transparent;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none}.dc-mini-toc__section-link:hover{color:var(--g-color-text-complementary)}.dc-mini-toc__section_child .dc-mini-toc__section-link{padding-left:25px}.dc-mini-toc__section_active>.dc-mini-toc__section-link{color:var(--g-color-text-primary);border-left-color:var(--g-color-text-primary)}.dc-mini-toc__bottom{display:none}@media(max-width: 768px){.dc-mini-toc{padding:16px 8px 16px 20px}body:has(.dc-mini-toc_overflowed:hover){overflow-y:hidden}.dc-mini-toc__title{margin-bottom:12px}.dc-mini-toc:has(.dc-mini-toc_overflowed) .dc-mini-toc__bottom{display:block;height:36px}.dc-mini-toc:has(.dc-mini-toc_overflowed) .dc-mini-toc__sections{max-height:calc(100vh - 0px - 52px - 64px - 36px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 64px - 36px)}.dc-mini-toc__section-link{padding:8px 12px 8px 28px}.dc-mini-toc__section_child .dc-mini-toc__section-link{padding-left:44px}.dc-mini-toc__sections{font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height);max-height:calc(100vh - 0px - 52px - 64px);max-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height, 52px) - 64px)}}
|
|
142
142
|
.dc-breadcrumbs{width:100%;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-breadcrumbs__items{margin:0;padding:0;list-style:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--g-color-text-secondary)}.dc-breadcrumbs__item{display:inline}.dc-breadcrumbs__item::after{content:" / ";margin:0 5px;color:var(--g-color-text-hint)}.dc-breadcrumbs__item:last-child::after{display:none}.dc-breadcrumbs__item:last-child{color:var(--g-color-text-primary)}.dc-breadcrumbs__text{white-space:nowrap}.dc-breadcrumbs__text_link{outline:none;color:var(--g-color-text-link);-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;cursor:pointer}
|
|
143
143
|
.dc-doc-page-title{position:relative;display:flex;align-items:flex-end}.dc-doc-page-title__label{position:absolute;left:0;top:-11px}
|
|
144
144
|
.dc-mark{display:inline-block;font-weight:bold;line-height:1}.dc-mark_color_blue{color:#67b0f8}.dc-mark_color_green{color:#56bd67}.dc-mark_size_s{font-size:10px;letter-spacing:.25px}.dc-mark_size_m{font-size:12px;letter-spacing:.3px}
|
|
@@ -192,6 +192,6 @@ a.pc-image-card_border_shadow,.pc-image-card_border_shadow{box-shadow:0px 4px 24
|
|
|
192
192
|
.g-disclosure_size_m .g-disclosure__trigger{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.g-disclosure_size_l .g-disclosure__trigger{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.g-disclosure_size_xl .g-disclosure__trigger{font-family:var(--g-text-subheader-font-family);font-weight:var(--g-text-subheader-font-weight);font-size:var(--g-text-subheader-3-font-size);line-height:var(--g-text-subheader-3-line-height)}.g-disclosure__trigger{padding:0;font-family:var(--g-text-body-font-family);font-size:inherit;font-weight:var(--g-text-body-font-weight);color:inherit;background:none;border:none;outline:none;cursor:pointer;display:flex;flex-flow:row nowrap;gap:8px;flex-shrink:0;align-items:center;font-size:inherit;line-height:inherit;font-weight:inherit;border-radius:var(--g-focus-border-radius)}.g-disclosure__trigger:focus-visible{outline:2px solid var(--g-color-line-focus)}.g-disclosure__trigger_arrow_end{flex-direction:row-reverse}.g-disclosure__trigger_disabled{color:var(--g-color-text-secondary);cursor:auto}.g-disclosure__content{display:none}.g-disclosure__content_visible{display:block}.g-disclosure__content.g-disclosure_exit_active{display:block;animation-name:g-disclosure-collapsed;animation-duration:.1s;opacity:0}.g-disclosure__content.g-disclosure_enter_active{animation-name:g-disclosure-expanded;animation-duration:.2s}@keyframes g-disclosure-expanded{0%{opacity:.4}100%{opacity:1}}@keyframes g-disclosure-collapsed{0%{opacity:1}100%{opacity:0}}
|
|
193
193
|
.gc-consent-popup{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height);padding:32px;border-radius:14px;max-width:656px}.gc-consent-popup__header{display:flex;justify-content:space-between}.gc-consent-popup__title{font-weight:var(--g-text-header-font-weight)}.gc-consent-popup__body{margin:24px 0 48px;line-height:24px}.gc-consent-popup__body_step_manage{margin-block-end:32px}.gc-consent-popup__text+.gc-consent-popup__text{margin-block-start:16px}.gc-consent-popup__buttons{display:flex;justify-content:flex-end}.gc-consent-popup__button+.gc-consent-popup__button{margin-inline-start:16px}.gc-consent-popup__close-button{--g-button-focus-outline-color: var(--g-color-line-focus);position:relative;inset-block-start:1px}.gc-consent-popup__arrow-button{--g-button-focus-outline-color: var(--g-color-line-focus);position:relative;inset-block-start:-2px}.gc-consent-popup__cookie-list{margin-block-start:24px}.gc-consent-popup__modal-content_mobile .gc-consent-popup{max-width:none;max-width:initial}.gc-consent-popup__modal-content_mobile .gc-consent-popup__body{margin:8px 0 16px;line-height:20px}.gc-consent-popup__modal-content_mobile .gc-consent-popup__buttons{justify-content:flex-start}.gc-consent-popup__modal-content_mobile .gc-consent-popup__button+.gc-consent-popup__button{margin-inline-start:12px}.gc-consent-popup__modal-content_mobile .gc-consent-popup__arrow-button{margin-inline-end:16px}.gc-consent-popup__modal-content_mobile.gc-consent-popup__modal-content_step_manage{position:fixed;inset:0;margin:0;overflow-y:scroll;border-radius:0}.gc-consent-popup__modal-content_mobile.gc-consent-popup__modal-content_step_manage .gc-consent-popup{padding:32px 24px}.gc-consent-popup__modal-content_mobile.gc-consent-popup__modal-content_step_manage .gc-consent-popup__body{margin:32px 0}.gc-consent-popup__modal-content_mobile.gc-consent-popup__modal-content_step_manage .gc-consent-popup__text+.gc-consent-popup__text{margin-block-start:8px}
|
|
194
194
|
.gc-simple-consent{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height);position:fixed;inset-block-end:24px;inset-inline-start:0;max-width:1312px;padding:24px 32px;margin:0 40px;box-shadow:0px 8px 32px 0px rgba(0, 0, 0, 0.1);background-color:var(--g-color-base-float);border-radius:var(--g-border-radius-xl)}.gc-simple-consent__container{display:flex;justify-content:center;align-items:center}.gc-simple-consent__buttons{display:flex}.gc-simple-consent__button{margin-inline-start:16px}@media(max-width: 769px){.gc-simple-consent__buttons{margin-block-start:24px;width:100%}.gc-simple-consent__container{flex-direction:column}.gc-simple-consent__button{flex:1 1 0}.gc-simple-consent__button:first-child{margin-inline-start:0}}
|
|
195
|
-
.dc-widgets{position:fixed;right:0;bottom:0;width:-moz-fit-content;width:fit-content;z-index:
|
|
195
|
+
.dc-widgets{position:fixed;right:0;bottom:0;width:-moz-fit-content;width:fit-content;z-index:150;pointer-events:none;overflow:hidden}.dc-widgets>div:nth-child(1){bottom:0px}.dc-widgets>div:nth-child(2){bottom:60px}.dc-widgets>div:nth-child(3){bottom:120px}.dc-widgets>div:nth-child(4){bottom:180px}.dc-widgets>div:nth-child(5){bottom:240px}.dc-widgets>div:nth-child(5)+*{display:none}
|
|
196
196
|
|
|
197
|
-
/*# sourceMappingURL=vendor-
|
|
197
|
+
/*# sourceMappingURL=vendor-593a6546600e304d.css.map*/
|