@diplodoc/client 5.7.7 → 5.7.9
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/CODEOWNERS +1 -1
- package/.github/workflows/coverage.yml +11 -13
- package/.github/workflows/package-lock.yml +7 -8
- package/.github/workflows/release.yml +26 -20
- package/.github/workflows/security.yml +3 -12
- package/.github/workflows/tests.yml +3 -12
- package/.github/workflows/update-deps.yml +57 -48
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/build/client/manifest.json +6 -6
- package/build/client/{vendor-da21b7bb600238a3.css → vendor-08162c203ed2ee3b.css} +4 -4
- package/build/client/vendor-08162c203ed2ee3b.css.map +1 -0
- package/build/client/{vendor-fefbbd2336b585a3.js → vendor-d233676225962abc.js} +4 -4
- package/build/client/vendor-d233676225962abc.js.map +1 -0
- package/build/client/{vendor-1d6206fadf034682.rtl.css → vendor-ebaff9a7e7aedcd9.rtl.css} +3 -3
- package/build/server/vendor.js +51 -10
- package/build/server/vendor.js.map +1 -1
- package/package.json +4 -4
- package/.github/workflows/deps.yml +0 -52
- package/build/client/vendor-da21b7bb600238a3.css.map +0 -1
- package/build/client/vendor-fefbbd2336b585a3.js.map +0 -1
package/.github/CODEOWNERS
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* @diplodoc-platform/team
|
|
1
|
+
* @diplodoc-platform/team @diplodoc-bot
|
|
@@ -29,19 +29,10 @@ jobs:
|
|
|
29
29
|
with:
|
|
30
30
|
fetch-depth: 0
|
|
31
31
|
|
|
32
|
-
- name: Setup Node.js
|
|
33
|
-
uses:
|
|
32
|
+
- name: Setup Node.js and install dependencies
|
|
33
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
34
34
|
with:
|
|
35
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
36
|
-
cache: 'npm'
|
|
37
|
-
|
|
38
|
-
- name: Install latest npm (>= 11.5.1)
|
|
39
|
-
run: |
|
|
40
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
41
|
-
shell: bash
|
|
42
|
-
|
|
43
|
-
- name: Install dependencies
|
|
44
|
-
run: npm ci
|
|
35
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
45
36
|
|
|
46
37
|
- name: Run tests with coverage
|
|
47
38
|
id: coverage-run
|
|
@@ -62,8 +53,15 @@ jobs:
|
|
|
62
53
|
path: coverage/
|
|
63
54
|
retention-days: 7
|
|
64
55
|
|
|
56
|
+
# Secrets aren't exposed to workflows triggered by pull_request from a fork,
|
|
57
|
+
# so SONAR_TOKEN is empty and SonarCloud responds with "Project not found".
|
|
58
|
+
# Skip the scan in that case — coverage artifact is still uploaded above.
|
|
65
59
|
- name: SonarCloud Scan
|
|
66
|
-
if:
|
|
60
|
+
if: |
|
|
61
|
+
success() &&
|
|
62
|
+
steps.coverage-run.outputs.ran == 'true' &&
|
|
63
|
+
(github.event_name != 'pull_request' ||
|
|
64
|
+
github.event.pull_request.head.repo.full_name == github.repository)
|
|
67
65
|
uses: SonarSource/sonarqube-scan-action@v7.0.0
|
|
68
66
|
env:
|
|
69
67
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -16,6 +16,10 @@ jobs:
|
|
|
16
16
|
update-package-lock:
|
|
17
17
|
name: Update package-lock.json
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
|
+
# Skip for PRs from forks: the bot token isn't available in fork context
|
|
20
|
+
# (actions/checkout fails with "Input required: token"), and we couldn't
|
|
21
|
+
# push back into the fork's branch anyway.
|
|
22
|
+
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
19
23
|
steps:
|
|
20
24
|
- name: Checkout code
|
|
21
25
|
uses: actions/checkout@v4
|
|
@@ -25,16 +29,11 @@ jobs:
|
|
|
25
29
|
token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
|
|
26
30
|
|
|
27
31
|
- name: Setup Node.js
|
|
28
|
-
uses:
|
|
32
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
29
33
|
with:
|
|
30
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
34
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
31
35
|
registry-url: 'https://registry.npmjs.org'
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
- name: Install latest npm (>= 11.5.1)
|
|
35
|
-
run: |
|
|
36
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
37
|
-
shell: bash
|
|
36
|
+
run-install: 'false'
|
|
38
37
|
|
|
39
38
|
- name: Regenerate package-lock.json
|
|
40
39
|
run: npm install --no-workspaces --package-lock-only --ignore-scripts
|
|
@@ -59,19 +59,16 @@ jobs:
|
|
|
59
59
|
fetch-depth: 0
|
|
60
60
|
|
|
61
61
|
- name: Setup Node.js
|
|
62
|
-
uses:
|
|
62
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
63
63
|
with:
|
|
64
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
64
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
65
65
|
registry-url: 'https://registry.npmjs.org'
|
|
66
|
+
cache: ''
|
|
67
|
+
run-install: 'false'
|
|
66
68
|
|
|
67
69
|
- uses: codex-team/action-nodejs-package-info@v1
|
|
68
70
|
id: package
|
|
69
71
|
|
|
70
|
-
- name: Install latest npm (>= 11.5.1)
|
|
71
|
-
run: |
|
|
72
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
73
|
-
shell: bash
|
|
74
|
-
|
|
75
72
|
- name: Install dependencies
|
|
76
73
|
if: inputs.release_type != 'deprecate'
|
|
77
74
|
run: npm ci
|
|
@@ -125,14 +122,21 @@ jobs:
|
|
|
125
122
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
126
123
|
|
|
127
124
|
# === DEPRECATE STEPS ===
|
|
125
|
+
# workflow_dispatch inputs are user-controlled. Do not interpolate them
|
|
126
|
+
# directly into a shell script (${{ inputs.* }} in run:) — pass them
|
|
127
|
+
# through env: and reference as "$VAR" so quotes / $(...) / ;-chains in
|
|
128
|
+
# input values cannot escape into the shell.
|
|
128
129
|
- name: Validate deprecate inputs
|
|
129
130
|
if: github.event_name == 'workflow_dispatch' && inputs.release_type == 'deprecate'
|
|
131
|
+
env:
|
|
132
|
+
INPUT_DEPRECATE_VERSION: ${{ inputs.deprecate_version }}
|
|
133
|
+
INPUT_DEPRECATE_MESSAGE: ${{ inputs.deprecate_message }}
|
|
130
134
|
run: |
|
|
131
|
-
if [[ -z "$
|
|
135
|
+
if [[ -z "$INPUT_DEPRECATE_VERSION" ]]; then
|
|
132
136
|
echo "::error::deprecate_version is required for deprecate action"
|
|
133
137
|
exit 1
|
|
134
138
|
fi
|
|
135
|
-
if [[ -z "$
|
|
139
|
+
if [[ -z "$INPUT_DEPRECATE_MESSAGE" ]]; then
|
|
136
140
|
echo "::error::deprecate_message is required for deprecate action"
|
|
137
141
|
exit 1
|
|
138
142
|
fi
|
|
@@ -141,23 +145,25 @@ jobs:
|
|
|
141
145
|
if: github.event_name == 'workflow_dispatch' && inputs.release_type == 'deprecate'
|
|
142
146
|
env:
|
|
143
147
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
148
|
+
# See note above the "Validate deprecate inputs" step.
|
|
149
|
+
PACKAGE_NAME: ${{ steps.package.outputs.name }}
|
|
150
|
+
INPUT_DEPRECATE_VERSION: ${{ inputs.deprecate_version }}
|
|
151
|
+
INPUT_DEPRECATE_MESSAGE: ${{ inputs.deprecate_message }}
|
|
152
|
+
INPUT_DEPRECATE_NEW_LATEST: ${{ inputs.deprecate_new_latest }}
|
|
144
153
|
run: |
|
|
145
154
|
set -e
|
|
146
155
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
VERSION="${{ inputs.deprecate_version }}"
|
|
150
|
-
MESSAGE="${{ inputs.deprecate_message }}"
|
|
151
|
-
TARGET="$PACKAGE@$VERSION"
|
|
156
|
+
LATEST="$(npm view "$PACKAGE_NAME@latest" version 2>/dev/null || echo '')"
|
|
157
|
+
TARGET="$PACKAGE_NAME@$INPUT_DEPRECATE_VERSION"
|
|
152
158
|
|
|
153
|
-
if [[ "$LATEST" == "$
|
|
154
|
-
if [[ -z "$
|
|
159
|
+
if [[ "$LATEST" == "$INPUT_DEPRECATE_VERSION" ]]; then
|
|
160
|
+
if [[ -z "$INPUT_DEPRECATE_NEW_LATEST" ]]; then
|
|
155
161
|
echo "::error::deprecate_new_latest is required when deprecating the current latest version ($LATEST)"
|
|
156
162
|
exit 1
|
|
157
163
|
fi
|
|
158
|
-
echo "::notice::Setting new latest tag to $
|
|
159
|
-
npm dist-tag add "$
|
|
164
|
+
echo "::notice::Setting new latest tag to $PACKAGE_NAME@$INPUT_DEPRECATE_NEW_LATEST"
|
|
165
|
+
npm dist-tag add "$PACKAGE_NAME@$INPUT_DEPRECATE_NEW_LATEST" latest
|
|
160
166
|
fi
|
|
161
167
|
|
|
162
|
-
echo "::notice::Deprecating $TARGET. Reason: $
|
|
163
|
-
npm deprecate "$TARGET" "$
|
|
168
|
+
echo "::notice::Deprecating $TARGET. Reason: $INPUT_DEPRECATE_MESSAGE"
|
|
169
|
+
npm deprecate "$TARGET" "$INPUT_DEPRECATE_MESSAGE"
|
|
@@ -22,19 +22,10 @@ jobs:
|
|
|
22
22
|
- name: Checkout code
|
|
23
23
|
uses: actions/checkout@v4
|
|
24
24
|
|
|
25
|
-
- name: Setup Node.js
|
|
26
|
-
uses:
|
|
25
|
+
- name: Setup Node.js and install dependencies
|
|
26
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
27
27
|
with:
|
|
28
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
29
|
-
cache: 'npm'
|
|
30
|
-
|
|
31
|
-
- name: Install latest npm (>= 11.5.1)
|
|
32
|
-
run: |
|
|
33
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
34
|
-
shell: bash
|
|
35
|
-
|
|
36
|
-
- name: Install dependencies
|
|
37
|
-
run: npm ci
|
|
28
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
38
29
|
|
|
39
30
|
- name: Run npm audit
|
|
40
31
|
id: audit
|
|
@@ -30,19 +30,10 @@ jobs:
|
|
|
30
30
|
with:
|
|
31
31
|
fetch-depth: 0
|
|
32
32
|
|
|
33
|
-
- name: Setup Node.js
|
|
34
|
-
uses:
|
|
33
|
+
- name: Setup Node.js and install dependencies
|
|
34
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
35
35
|
with:
|
|
36
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
37
|
-
cache: 'npm'
|
|
38
|
-
|
|
39
|
-
- name: Install latest npm (>= 11.5.1)
|
|
40
|
-
run: |
|
|
41
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
42
|
-
shell: bash
|
|
43
|
-
|
|
44
|
-
- name: Install dependencies
|
|
45
|
-
run: npm ci
|
|
36
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
46
37
|
|
|
47
38
|
- name: Run type check
|
|
48
39
|
run: npm run typecheck
|
|
@@ -38,6 +38,7 @@ on:
|
|
|
38
38
|
- '@diplodoc/search-extension'
|
|
39
39
|
- '@diplodoc/tabs-extension'
|
|
40
40
|
|
|
41
|
+
|
|
41
42
|
update_as_dev:
|
|
42
43
|
description: 'Update as devDependency (only for single package selection)'
|
|
43
44
|
required: false
|
|
@@ -67,58 +68,56 @@ jobs:
|
|
|
67
68
|
fetch-depth: 0
|
|
68
69
|
token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
|
|
69
70
|
|
|
70
|
-
- name: Setup Node.js
|
|
71
|
-
uses:
|
|
71
|
+
- name: Setup Node.js and install dependencies
|
|
72
|
+
uses: diplodoc-platform/setup-node-action@v1
|
|
72
73
|
with:
|
|
73
|
-
node-version: ${{ vars.NODE_VERSION }}
|
|
74
|
+
node-version: ${{ vars.NODE_VERSION || '24' }}
|
|
74
75
|
registry-url: 'https://registry.npmjs.org'
|
|
75
|
-
cache: 'npm'
|
|
76
|
-
|
|
77
|
-
- name: Install latest npm (>= 11.5.1)
|
|
78
|
-
run: |
|
|
79
|
-
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
|
|
80
|
-
shell: bash
|
|
81
|
-
|
|
82
|
-
- name: Install dependencies
|
|
83
|
-
run: npm ci
|
|
84
76
|
|
|
85
77
|
- name: Update packages
|
|
78
|
+
# workflow_dispatch inputs are user-controlled. Never interpolate them
|
|
79
|
+
# directly into a shell script (${{ inputs.* }} in run:) — pass them
|
|
80
|
+
# through env: and reference as "$VAR" so quotes / $(...) / ;-chains
|
|
81
|
+
# in input values cannot escape into the shell.
|
|
82
|
+
env:
|
|
83
|
+
INPUT_PACKAGES: ${{ inputs.packages }}
|
|
84
|
+
INPUT_PACKAGE: ${{ inputs.package }}
|
|
85
|
+
INPUT_VERSION: ${{ inputs.version }}
|
|
86
|
+
INPUT_UPDATE_AS_DEV: ${{ inputs.update_as_dev }}
|
|
86
87
|
run: |
|
|
87
88
|
set -e
|
|
88
89
|
|
|
89
90
|
# Determine which packages to update
|
|
90
|
-
if [[ -n "$
|
|
91
|
+
if [[ -n "$INPUT_PACKAGES" ]]; then
|
|
91
92
|
# Use multi-selection field with dev: prefix support
|
|
92
|
-
PACKAGES_INPUT="${{ inputs.packages }}"
|
|
93
|
-
|
|
94
93
|
# Parse comma-separated packages
|
|
95
|
-
IFS=',' read -ra PACKAGES <<< "$
|
|
96
|
-
|
|
94
|
+
IFS=',' read -ra PACKAGES <<< "$INPUT_PACKAGES"
|
|
95
|
+
|
|
97
96
|
for PACKAGE_ENTRY in "${PACKAGES[@]}"; do
|
|
98
97
|
# Trim whitespace
|
|
99
98
|
PACKAGE_ENTRY=$(echo "$PACKAGE_ENTRY" | xargs)
|
|
100
|
-
|
|
99
|
+
|
|
101
100
|
# Check for dev: prefix
|
|
102
101
|
if [[ "$PACKAGE_ENTRY" == dev:* ]]; then
|
|
103
102
|
PACKAGE="${PACKAGE_ENTRY#dev:}"
|
|
104
|
-
echo "::info::Updating $PACKAGE to $
|
|
105
|
-
npm install --no-workspaces --save-dev "$PACKAGE@$
|
|
103
|
+
echo "::info::Updating $PACKAGE to $INPUT_VERSION as devDependency"
|
|
104
|
+
npm install --no-workspaces --save-dev "$PACKAGE@$INPUT_VERSION"
|
|
106
105
|
else
|
|
107
106
|
PACKAGE="$PACKAGE_ENTRY"
|
|
108
|
-
echo "::info::Updating $PACKAGE to $
|
|
109
|
-
npm install --no-workspaces "$PACKAGE@$
|
|
107
|
+
echo "::info::Updating $PACKAGE to $INPUT_VERSION"
|
|
108
|
+
npm install --no-workspaces "$PACKAGE@$INPUT_VERSION"
|
|
110
109
|
fi
|
|
111
110
|
done
|
|
112
|
-
elif [[ -n "$
|
|
111
|
+
elif [[ -n "$INPUT_PACKAGE" ]]; then
|
|
113
112
|
# Use single selection field
|
|
114
|
-
PACKAGE="$
|
|
115
|
-
|
|
116
|
-
if [[ "$
|
|
117
|
-
echo "::info::Updating $PACKAGE to $
|
|
118
|
-
npm install --no-workspaces --save-dev "$PACKAGE@$
|
|
113
|
+
PACKAGE="$INPUT_PACKAGE"
|
|
114
|
+
|
|
115
|
+
if [[ "$INPUT_UPDATE_AS_DEV" == "true" ]]; then
|
|
116
|
+
echo "::info::Updating $PACKAGE to $INPUT_VERSION as devDependency"
|
|
117
|
+
npm install --no-workspaces --save-dev "$PACKAGE@$INPUT_VERSION"
|
|
119
118
|
else
|
|
120
|
-
echo "::info::Updating $PACKAGE to $
|
|
121
|
-
npm install --no-workspaces "$PACKAGE@$
|
|
119
|
+
echo "::info::Updating $PACKAGE to $INPUT_VERSION"
|
|
120
|
+
npm install --no-workspaces "$PACKAGE@$INPUT_VERSION"
|
|
122
121
|
fi
|
|
123
122
|
else
|
|
124
123
|
echo "::error::Either package or packages must be specified"
|
|
@@ -131,6 +130,12 @@ jobs:
|
|
|
131
130
|
- name: Create and publish PR
|
|
132
131
|
env:
|
|
133
132
|
GH_TOKEN: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
|
|
133
|
+
# See "Update packages" step above — inputs go through env, never
|
|
134
|
+
# via ${{ inputs.* }} into the shell body.
|
|
135
|
+
INPUT_PACKAGES: ${{ inputs.packages }}
|
|
136
|
+
INPUT_PACKAGE: ${{ inputs.package }}
|
|
137
|
+
INPUT_VERSION: ${{ inputs.version }}
|
|
138
|
+
INPUT_UPDATE_AS_DEV: ${{ inputs.update_as_dev }}
|
|
134
139
|
run: |
|
|
135
140
|
set -e
|
|
136
141
|
|
|
@@ -141,19 +146,18 @@ jobs:
|
|
|
141
146
|
fi
|
|
142
147
|
|
|
143
148
|
# Determine which packages to update
|
|
144
|
-
|
|
149
|
+
FIRST_PACKAGE=""
|
|
150
|
+
if [[ -n "$INPUT_PACKAGES" ]]; then
|
|
145
151
|
# Use multi-selection field with dev: prefix support
|
|
146
|
-
PACKAGES_INPUT="${{ inputs.packages }}"
|
|
147
|
-
|
|
148
152
|
# Parse comma-separated packages
|
|
149
|
-
IFS=',' read -ra PACKAGES <<< "$
|
|
150
|
-
|
|
153
|
+
IFS=',' read -ra PACKAGES <<< "$INPUT_PACKAGES"
|
|
154
|
+
|
|
151
155
|
# Get actual installed versions for all packages
|
|
152
156
|
VERSIONS=""
|
|
153
157
|
for PACKAGE_ENTRY in "${PACKAGES[@]}"; do
|
|
154
158
|
# Trim whitespace
|
|
155
159
|
PACKAGE_ENTRY=$(echo "$PACKAGE_ENTRY" | xargs)
|
|
156
|
-
|
|
160
|
+
|
|
157
161
|
# Check for dev: prefix
|
|
158
162
|
if [[ "$PACKAGE_ENTRY" == dev:* ]]; then
|
|
159
163
|
PACKAGE="${PACKAGE_ENTRY#dev:}"
|
|
@@ -162,23 +166,25 @@ jobs:
|
|
|
162
166
|
PACKAGE="$PACKAGE_ENTRY"
|
|
163
167
|
DEV_PREFIX=""
|
|
164
168
|
fi
|
|
165
|
-
|
|
169
|
+
|
|
166
170
|
VERSION=$(npm explore --no-workspaces "$PACKAGE" "node -pe 'require(\"./package.json\").version'" --shell sh)
|
|
167
171
|
if [[ -n "$VERSIONS" ]]; then
|
|
168
172
|
VERSIONS="$VERSIONS, "
|
|
169
173
|
fi
|
|
170
174
|
VERSIONS="$VERSIONS$DEV_PREFIX$PACKAGE@$VERSION"
|
|
171
175
|
done
|
|
172
|
-
|
|
176
|
+
FIRST_PACKAGE=$(echo "$INPUT_PACKAGES" | cut -d',' -f1 | xargs)
|
|
177
|
+
elif [[ -n "$INPUT_PACKAGE" ]]; then
|
|
173
178
|
# Use single selection field
|
|
174
|
-
PACKAGE="$
|
|
179
|
+
PACKAGE="$INPUT_PACKAGE"
|
|
175
180
|
VERSION=$(npm explore --no-workspaces "$PACKAGE" "node -pe 'require(\"./package.json\").version'" --shell sh)
|
|
176
|
-
|
|
177
|
-
if [[ "$
|
|
181
|
+
|
|
182
|
+
if [[ "$INPUT_UPDATE_AS_DEV" == "true" ]]; then
|
|
178
183
|
VERSIONS="dev:$PACKAGE@$VERSION"
|
|
179
184
|
else
|
|
180
185
|
VERSIONS="$PACKAGE@$VERSION"
|
|
181
186
|
fi
|
|
187
|
+
FIRST_PACKAGE="$PACKAGE"
|
|
182
188
|
else
|
|
183
189
|
echo "::error::Either package or packages must be specified"
|
|
184
190
|
exit 1
|
|
@@ -188,16 +194,19 @@ jobs:
|
|
|
188
194
|
git config --global user.email "95919151+yc-ui-bot@users.noreply.github.com"
|
|
189
195
|
git config --global user.name "yc-ui-bot"
|
|
190
196
|
|
|
191
|
-
# Create branch name
|
|
192
|
-
#
|
|
193
|
-
|
|
197
|
+
# Create branch name — sanitize FIRST_PACKAGE so a hostile npm name
|
|
198
|
+
# (e.g. one containing `/`, spaces, or `;`) cannot escape into the
|
|
199
|
+
# branch ref or surrounding git commands.
|
|
194
200
|
FIRST_PACKAGE=$(echo "$FIRST_PACKAGE" | sed 's/^dev://; s/@//g')
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
201
|
+
SAFE_FIRST_PACKAGE=$(echo "$FIRST_PACKAGE" | tr -c 'A-Za-z0-9._-' '_')
|
|
202
|
+
SAFE_VERSION=$(echo "$INPUT_VERSION" | tr -c 'A-Za-z0-9._-' '_')
|
|
203
|
+
BRANCH_NAME="ci/update-deps/${SAFE_FIRST_PACKAGE}-${SAFE_VERSION}"
|
|
204
|
+
|
|
205
|
+
git push -f origin ":$BRANCH_NAME" || true
|
|
206
|
+
git checkout -b "$BRANCH_NAME"
|
|
198
207
|
git add package.json package-lock.json
|
|
199
208
|
git commit -m "fix(deps): Update $VERSIONS" --no-verify
|
|
200
|
-
git push -u origin $BRANCH_NAME
|
|
209
|
+
git push -u origin "$BRANCH_NAME"
|
|
201
210
|
|
|
202
211
|
# Create PR
|
|
203
212
|
gh pr create --title "fix(deps): Update $VERSIONS" --body "Automated dependency update" --base master
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.7.9](https://github.com/diplodoc-platform/client/compare/v5.7.8...v5.7.9) (2026-06-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** Update dev:@diplodoc/components@5.10.2 ([#357](https://github.com/diplodoc-platform/client/issues/357)) ([7f2ebb0](https://github.com/diplodoc-platform/client/commit/7f2ebb045c1ae20be27768f8bc9a833e7f1e0a97))
|
|
9
|
+
|
|
10
|
+
## [5.7.8](https://github.com/diplodoc-platform/client/compare/v5.7.7...v5.7.8) (2026-06-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** Update dev:@diplodoc/mermaid-extension@2.1.2 ([338f29e](https://github.com/diplodoc-platform/client/commit/338f29ed1d76c6cd8af507baabe1dd4ff521c81e))
|
|
16
|
+
|
|
3
17
|
## [5.7.7](https://github.com/diplodoc-platform/client/compare/v5.7.6...v5.7.7) (2026-06-01)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"976-40cbc1d2518eb8ea.js"
|
|
5
5
|
],
|
|
6
6
|
"js": [
|
|
7
|
-
"vendor-
|
|
7
|
+
"vendor-d233676225962abc.js",
|
|
8
8
|
"search-286bba91cb85430c.js",
|
|
9
9
|
"react-869ecca253e3f1ec.js"
|
|
10
10
|
],
|
|
11
11
|
"css": [
|
|
12
|
-
"vendor-
|
|
12
|
+
"vendor-08162c203ed2ee3b.css",
|
|
13
13
|
"search-0580ed74afc78bb6.css",
|
|
14
|
-
"vendor-
|
|
14
|
+
"vendor-ebaff9a7e7aedcd9.rtl.css",
|
|
15
15
|
"app-61bec9b6ec295f5c.rtl.css",
|
|
16
16
|
"search-a556879086a8816e.rtl.css"
|
|
17
17
|
]
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
],
|
|
23
23
|
"js": [
|
|
24
24
|
"app-c3e8973ab1d89cc8.js",
|
|
25
|
-
"vendor-
|
|
25
|
+
"vendor-d233676225962abc.js",
|
|
26
26
|
"react-869ecca253e3f1ec.js"
|
|
27
27
|
],
|
|
28
28
|
"css": [
|
|
29
|
-
"vendor-
|
|
29
|
+
"vendor-08162c203ed2ee3b.css",
|
|
30
30
|
"app-b63bbc0bca8257d4.css",
|
|
31
|
-
"vendor-
|
|
31
|
+
"vendor-ebaff9a7e7aedcd9.rtl.css",
|
|
32
32
|
"app-61bec9b6ec295f5c.rtl.css",
|
|
33
33
|
"search-a556879086a8816e.rtl.css"
|
|
34
34
|
]
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
.g-text-input{--_--text-color: var(--g-color-text-primary);--_--label-color: inherit;--_--placeholder-color: var(--g-color-text-hint);--_--background-color: transparent;--_--border-width: 1px;--_--focus-outline-color: var(--g-text-input-focus-outline-color);display:inline-block;width:100%;position:relative}.g-text-input__content{box-sizing:border-box;overflow:hidden;display:flex;width:100%;background-color:var(--g-text-input-background-color, var(--_--background-color));border-width:var(--g-text-input-border-width, var(--_--border-width));border-style:solid;border-color:var(--g-text-input-border-color, var(--_--border-color));color:var(--g-text-input-text-color, var(--_--text-color))}.g-text-input__content:hover{border-color:var(--g-text-input-border-color-hover, var(--_--border-color-hover))}.g-text-input__content:focus-within{border-color:var(--g-text-input-border-color-active, var(--_--border-color-active));outline:2px solid var(--g-text-input-focus-outline-color, var(--_--focus-outline-color));outline-offset:-1px}.g-text-input__control{box-sizing:border-box;display:inline-block;flex-grow:1;vertical-align:top;position:relative;margin:0;padding:0;width:100%;font-weight:var(--g-text-body-font-weight);font-family:var(--g-text-body-font-family);color:inherit;background-color:transparent;border:none;height:var(--g-text-input-height)}.g-text-input__control::-moz-placeholder{color:var(--g-text-input-placeholder-color, var(--_--placeholder-color));overflow:hidden;white-space:nowrap}.g-text-input__control::placeholder{color:var(--g-text-input-placeholder-color, var(--_--placeholder-color));overflow:hidden;white-space:nowrap}.g-text-input__control:focus{outline:none}.g-text-input__control[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.g-text-input__control[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.g-text-input__control[type=search]::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.g-text-input__label{position:absolute;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:1;color:var(--g-text-input-label-color, var(--_--label-color))}.g-text-input__clear{flex-shrink:0;margin:auto 0}.g-text-input__clear_size_s,.g-text-input__clear_size_m{margin-inline-end:1px}.g-text-input__clear_size_l,.g-text-input__clear_size_xl{margin-inline-end:2px}.g-text-input__error-icon{box-sizing:content-box;color:var(--g-color-text-danger);padding-block:var(--_--error-icon-padding-block);padding-inline:var(--_--error-icon-padding-inline-start) var(--_--error-icon-padding-inline-end)}.g-text-input__additional-content{display:flex;align-items:center}.g-text-input_size_s .g-text-input__control{--_--input-control-border-width: var( --g-text-input-border-width, var(--g-text-area-border-width, 1px) );font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);height:calc(24px - 1px*2);height:calc(24px - var(--_--input-control-border-width)*2);padding:3px 8px}.g-text-input_size_s .g-text-input__label{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);padding-block:3px;padding-inline:8px 4px;font-weight:var(--g-text-accent-font-weight)}.g-text-input_size_s.g-text-input_has-start-content .g-text-input__label{padding-inline-start:2px}.g-text-input_size_s .g-text-input__additional-content{height:22px}.g-text-input_size_s .g-text-input__additional-content_placement_start{padding-inline-start:1px}.g-text-input_size_s .g-text-input__additional-content_placement_end{padding-inline-end:1px}.g-text-input_size_s{--_--error-icon-padding-block: 5px;--_--error-icon-padding-inline-start: 0;--_--error-icon-padding-inline-end: 5px;--_--border-radius: var(--g-border-radius-s)}.g-text-input_size_m .g-text-input__control{--_--input-control-border-width: var( --g-text-input-border-width, var(--g-text-area-border-width, 1px) );font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);height:calc(28px - 1px*2);height:calc(28px - var(--_--input-control-border-width)*2);padding:5px 8px}.g-text-input_size_m .g-text-input__label{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);padding-block:5px;padding-inline:8px 4px;font-weight:var(--g-text-accent-font-weight)}.g-text-input_size_m.g-text-input_has-start-content .g-text-input__label{padding-inline-start:2px}.g-text-input_size_m .g-text-input__additional-content{height:26px}.g-text-input_size_m .g-text-input__additional-content_placement_start{padding-inline-start:1px}.g-text-input_size_m .g-text-input__additional-content_placement_end{padding-inline-end:1px}.g-text-input_size_m{--_--error-icon-padding-block: 5px;--_--error-icon-padding-inline-start: 0;--_--error-icon-padding-inline-end: 5px;--_--border-radius: var(--g-border-radius-m)}.g-text-input_size_l .g-text-input__control{--_--input-control-border-width: var( --g-text-input-border-width, var(--g-text-area-border-width, 1px) );font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);height:calc(36px - 1px*2);height:calc(36px - var(--_--input-control-border-width)*2);padding:9px 12px}.g-text-input_size_l .g-text-input__label{font-family:var(--g-text-body-font-family);font-weight:var(--g-text-body-font-weight);font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height);padding-block:9px;padding-inline:12px 4px;font-weight:var(--g-text-accent-font-weight)}.g-text-input_size_l.g-text-input_has-start-content .g-text-input__label{padding-inline-start:3px}.g-text-input_size_l .g-text-input__additional-content{height:34px}.g-text-input_size_l .g-text-input__additional-content_placement_start{padding-inline-start:3px}.g-text-input_size_l .g-text-input__additional-content_placement_end{padding-inline-end:3px}.g-text-input_size_l{--_--error-icon-padding-block: 9px;--_--error-icon-padding-inline-start: 0;--_--error-icon-padding-inline-end: 9px;--_--border-radius: var(--g-border-radius-l)}.g-text-input_size_xl .g-text-input__control{--_--input-control-border-width: var( --g-text-input-border-width, var(--g-text-area-border-width, 1px) );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);height:calc(44px - 1px*2);height:calc(44px - var(--_--input-control-border-width)*2);padding:11px 12px}.g-text-input_size_xl .g-text-input__label{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-block:11px;padding-inline:12px 4px;font-weight:var(--g-text-accent-font-weight)}.g-text-input_size_xl.g-text-input_has-start-content .g-text-input__label{padding-inline-start:3px}.g-text-input_size_xl .g-text-input__additional-content{height:42px}.g-text-input_size_xl .g-text-input__additional-content_placement_start{padding-inline-start:3px}.g-text-input_size_xl .g-text-input__additional-content_placement_end{padding-inline-end:3px}.g-text-input_size_xl{--_--error-icon-padding-block: 13px;--_--error-icon-padding-inline-start: 0;--_--error-icon-padding-inline-end: 13px;--_--border-radius: var(--g-border-radius-xl)}.g-text-input_view_normal{--_--border-color: var(--g-color-line-generic);--_--border-color-hover: var(--g-color-line-generic-hover);--_--border-color-active: var(--g-color-line-generic-active)}.g-text-input_view_clear{--_--border-color: transparent;--_--border-color-hover: transparent;--_--border-color-active: transparent;--_--border-radius: 0}.g-text-input_view_clear .g-text-input__content{border-inline:0}.g-text-input_view_clear .g-text-input__control{padding-inline:0}.g-text-input_pin_round-round .g-text-input__content{border-radius:var(--g-text-input-border-radius, var(--_--border-radius))}.g-text-input_pin_brick-brick .g-text-input__content{border-radius:0}.g-text-input_pin_clear-clear .g-text-input__content{border-radius:0;border-inline:0}.g-text-input_pin_circle-circle .g-text-input__content{border-radius:100px}.g-text-input_pin_round-brick .g-text-input__content{border-start-start-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-start-end-radius:0;border-end-start-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-end-end-radius:0}.g-text-input_pin_brick-round .g-text-input__content{border-start-start-radius:0;border-start-end-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-end-start-radius:0;border-end-end-radius:var(--g-text-input-border-radius, var(--_--border-radius))}.g-text-input_pin_round-clear .g-text-input__content{border-start-start-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-start-end-radius:0;border-end-start-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-end-end-radius:0;border-inline-end:0}.g-text-input_pin_clear-round .g-text-input__content{border-start-start-radius:0;border-start-end-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-end-start-radius:0;border-end-end-radius:var(--g-text-input-border-radius, var(--_--border-radius));border-inline-start:0}.g-text-input_pin_brick-clear .g-text-input__content{border-radius:0;border-inline-end:0}.g-text-input_pin_clear-brick .g-text-input__content{border-radius:0;border-inline-start:0}.g-text-input_pin_circle-brick .g-text-input__content{border-start-start-radius:100px;border-start-end-radius:0;border-end-start-radius:100px;border-end-end-radius:0}.g-text-input_pin_brick-circle .g-text-input__content{border-start-start-radius:0;border-start-end-radius:100px;border-end-start-radius:0;border-end-end-radius:100px}.g-text-input_pin_circle-clear .g-text-input__content{border-start-start-radius:100px;border-start-end-radius:0;border-end-start-radius:100px;border-end-end-radius:0;border-inline-end:0}.g-text-input_pin_clear-circle .g-text-input__content{border-start-start-radius:0;border-start-end-radius:100px;border-end-start-radius:0;border-end-end-radius:100px;border-inline-start:0}.g-text-input_disabled{--_--text-color: var(--g-color-text-hint);--_--background-color: var(--g-color-base-generic-accent-disabled);--_--border-color: transparent;--_--border-color-hover: transparent;--_--border-color-active: transparent}.g-text-input_has-scrollbar .g-text-input__clear{inset-inline-end:var(--g-scrollbar-width)}.g-text-input_has-start-content .g-text-input__control{padding-inline-start:2px}.g-text-input_has-end-content{--_--error-icon-padding-inline-start: 0;--_--error-icon-padding-inline-end: 0}.g-text-input_has-end-content .g-text-input__control{padding-inline-end:2px}.g-text-input_state_error.g-text-input_view_normal .g-text-input__content,.g-text-input_state_error.g-text-input_view_normal .g-text-input__content:hover,.g-text-input_state_error.g-text-input_view_normal .g-text-input__content:focus-within{border-color:var(--g-color-line-danger)}.g-text-input_state_error.g-text-input_view_normal .g-text-input__content:focus-within{--_--focus-outline-color: var(--g-color-line-danger)}.g-text-input_state_error.g-text-input_view_clear .g-text-input__content,.g-text-input_state_error.g-text-input_view_clear .g-text-input__content:hover,.g-text-input_state_error.g-text-input_view_clear .g-text-input__content:focus-within{border-block-end:1px solid var(--g-color-line-danger)}.g-text-input_state_error.g-text-input_view_clear .g-text-input__content:focus-within{--_--focus-outline-color: var(--g-color-line-danger)}
|
|
21
21
|
@keyframes g-pulse{50%{opacity:0.15}}.g-loader{display:inline-flex;align-items:center}.g-loader__left,.g-loader__center,.g-loader__right{background:var(--g-color-base-brand);animation:g-pulse ease 800ms infinite}.g-loader__left{animation-delay:200ms}.g-loader__center{animation-delay:400ms}.g-loader__right{animation-delay:600ms}.g-loader_size_s .g-loader__left{height:13.3333333333px;width:5px}.g-loader_size_s .g-loader__center{width:5px;height:20px;margin-inline-start:5px}.g-loader_size_s .g-loader__right{height:13.3333333333px;width:5px;margin-inline-start:5px}.g-loader_size_m .g-loader__left{height:18.6666666667px;width:7px}.g-loader_size_m .g-loader__center{width:7px;height:28px;margin-inline-start:7px}.g-loader_size_m .g-loader__right{height:18.6666666667px;width:7px;margin-inline-start:7px}.g-loader_size_l .g-loader__left{height:24px;width:9px}.g-loader_size_l .g-loader__center{width:9px;height:36px;margin-inline-start:9px}.g-loader_size_l .g-loader__right{height:24px;width:9px;margin-inline-start:9px}
|
|
22
22
|
.g-list{--_--item-padding: var(--g-list-item-padding, 0);outline:none;display:flex;flex-direction:column;flex:1 1 auto;width:100%}.g-list__filter{padding:var(--_--item-padding);margin-block-end:8px;flex:0 0 auto}.g-list__items{flex:1 1 auto}.g-list__item,.g-list__empty-placeholder{box-sizing:border-box;display:flex;align-items:center;padding:var(--_--item-padding);-webkit-user-select:none;-moz-user-select:none;user-select:none;overflow:hidden}.g-list__item_active{background:var(--g-color-base-simple-hover)}.g-list__item_selected{background:var(--g-color-base-selection)}.g-list__item_active.g-list__item_selected{background:var(--g-color-base-selection-hover)}.g-list__item_sort-handle-align_right{flex-direction:row-reverse}.g-list__item_sort-handle-align_right .g-list__item-sort-icon{margin-inline:10px 0}.g-list__item_sortable[data-rbd-drag-handle-context-id]:active{cursor:grabbing}.g-list__item_dragging{background:var(--g-color-base-simple-hover-solid);z-index:100001}.g-list__empty-placeholder{box-sizing:border-box;color:var(--g-color-text-hint);min-height:36px;padding-block:8px}.g-list__item-content{flex:1 1 auto;display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;height:100%}.g-list__item-sort-icon{display:flex;align-items:center;width:12px;margin-inline-end:4px;flex:0 0 auto;color:var(--g-color-text-hint)}.g-list__loading-indicator{display:flex;width:100%;align-items:center;justify-content:center}
|
|
23
|
-
.dc-subscribe__container_view_wide{display:flex;align-items:center;flex-direction:column;width:100%}.dc-subscribe__container-row{display:flex;justify-content:center;width:100%;padding:28px;border:1px solid var(--g-color-line-generic);border-radius:8px}.dc-subscribe__container-row_view_wide{display:flex;align-items:center}.dc-subscribe__success-popup{padding:16px;width:320px}@media screen and (max-width: 375px){.dc-subscribe__success-popup_view_wide{right:0 !important;left:0 !important;margin:auto}}.dc-subscribe__variants-popup{padding:16px;width:320px}@media screen and (max-width: 375px){.dc-subscribe__variants-popup_view_wide{right:0 !important;left:0 !important;margin:auto}}.dc-subscribe__popup-title{font-size:var(--g-text-body2-font-size);line-height:var(--g-text-body2-line-height);padding-bottom:8px}.dc-subscribe__popup-text{font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-subscribe__variants-actions{display:flex;justify-content:flex-end}.dc-subscribe__variants-action{margin-left:10px}.dc-subscribe__variant__list-item{padding:6px 12px}.dc-subscribe__textarea{padding:8px 0}.dc-subscribe__title_view_wide{font-size:var(--g-text-body2-font-size);line-height:var(--g-text-body2-line-height);margin-right:16px;font-weight:400}.dc-subscribe__controls{display:flex}.dc-subscribe__controls_view_wide{display:flex}.dc-subscribe__control:last-of-type{font-size:13px;line-height:18px;display:flex;align-items:center}.dc-subscribe__control_view_wide{margin-right:12px}.dc-subscribe__control_view_wide:last-of-type{margin-right:0}.dc-subscribe__control_view_regular{margin-right:4px}.dc-subscribe__control_view_regular:last-of-type{margin-right:0}
|
|
23
|
+
.dc-subscribe__container_view_wide{display:flex;align-items:center;flex-direction:column;width:100%}.dc-subscribe__container-row{display:flex;justify-content:center;width:100%;padding:28px;border:1px solid var(--g-color-line-generic);border-radius:8px}.dc-subscribe__container-row_view_wide{display:flex;align-items:center}.dc-subscribe__success-popup{padding:16px;width:320px}@media screen and (max-width: 375px){.dc-subscribe__success-popup_view_wide{right:0 !important;left:0 !important;margin:auto}}.dc-subscribe__variants-popup{padding:16px;width:320px}@media screen and (max-width: 375px){.dc-subscribe__variants-popup_view_wide{right:0 !important;left:0 !important;margin:auto}}.dc-subscribe__popup-title{font-size:var(--g-text-body2-font-size);line-height:var(--g-text-body2-line-height);padding-bottom:8px}.dc-subscribe__popup-text{font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-subscribe__variants-actions{display:flex;justify-content:flex-end}.dc-subscribe__variants-action{margin-left:10px}.dc-subscribe__variant__list-item{padding:6px 12px}.dc-subscribe__textarea{padding:8px 0}.dc-subscribe__consent{display:flex;align-items:flex-start;gap:8px;margin-top:12px}.dc-subscribe__consent-content{font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-subscribe__title_view_wide{font-size:var(--g-text-body2-font-size);line-height:var(--g-text-body2-line-height);margin-right:16px;font-weight:400}.dc-subscribe__controls{display:flex}.dc-subscribe__controls_view_wide{display:flex}.dc-subscribe__control:last-of-type{font-size:13px;line-height:18px;display:flex;align-items:center}.dc-subscribe__control_view_wide{margin-right:12px}.dc-subscribe__control_view_wide:last-of-type{margin-right:0}.dc-subscribe__control_view_regular{margin-right:4px}.dc-subscribe__control_view_regular:last-of-type{margin-right:0}
|
|
24
24
|
.g-switch{position:relative}.g-switch__control{opacity:0;cursor:pointer}.g-switch__indicator{display:inline-block;position:relative}.g-switch__indicator::before{content:"";position:absolute;inset:0;background-color:var(--g-color-base-generic-medium);transition:background .1s linear}.g-switch__indicator::after{content:" ";visibility:hidden}.g-switch__slider{position:absolute;content:"";border-radius:50%;background-color:var(--g-color-base-background);transition:transform .15s ease-out}.g-switch__outline{position:absolute;inset-block-start:0;inset-inline-start:0;width:100%;height:100%;background:none;pointer-events:none}.g-switch__control:focus-visible+.g-switch__outline{outline:2px solid var(--g-color-line-focus)}.g-switch_loading .g-switch__slider::after{content:"";position:absolute;box-sizing:border-box;border-radius:50%;inset-inline-start:2px;inset-block-start:2px;border-color:var(--g-color-base-generic-accent);border-style:solid;border-block-start-color:transparent;animation:g-spin 1s linear infinite}@media(prefers-reduced-motion: reduce){.g-switch_loading .g-switch__slider::after{animation:none}}.g-switch_size_s .g-switch__indicator,.g-switch_size_s .g-switch__indicator::before,.g-switch_size_s .g-switch__outline{width:28px;height:16px;border-radius:10px}.g-switch_size_s .g-switch__slider{inset-block-start:2px;inset-inline-start:2px;width:12px;height:12px}.g-switch_size_s .g-switch__slider::after{width:8px;height:8px;border-width:2px}.g-switch_size_m .g-switch__indicator,.g-switch_size_m .g-switch__indicator::before,.g-switch_size_m .g-switch__outline{width:36px;height:20px;border-radius:10px}.g-switch_size_m .g-switch__slider{inset-block-start:2px;inset-inline-start:2px;width:16px;height:16px}.g-switch_size_m .g-switch__slider::after{width:12px;height:12px;border-width:2px}.g-switch_size_m .g-switch__text{margin-block-start:3px}.g-switch_size_l .g-switch__indicator,.g-switch_size_l .g-switch__indicator::before,.g-switch_size_l .g-switch__outline{width:42px;height:24px;border-radius:12px}.g-switch_size_l .g-switch__slider{inset-block-start:3px;inset-inline-start:3px;width:18px;height:18px}.g-switch_size_l .g-switch__slider::after{width:14px;height:14px;border-width:2px}.g-switch_size_l .g-switch__text{margin-block-start:4px}.g-switch:hover .g-switch__indicator::before{background-color:var(--g-color-base-generic-medium-hover)}.g-switch_checked .g-switch__slider{--_--translate-x: calc(100% * var(--g-flow-direction));transform:translateX(var(--_--translate-x))}.g-switch_checked.g-switch_loading .g-switch__slider::after{border-color:var(--g-color-base-brand);border-block-start-color:transparent}.g-switch_checked .g-switch__indicator::before,.g-switch_checked:hover .g-switch__indicator::before{background-color:var(--g-color-base-brand)}.g-switch_disabled .g-switch__indicator::before{background-color:var(--g-color-base-generic-accent-disabled)}.g-switch_disabled.g-switch_checked .g-switch__indicator::before{background-color:var(--g-color-base-brand);opacity:.5}.g-switch_disabled .g-switch__slider::after{opacity:.5}@keyframes g-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
|
|
25
25
|
.dc-settings-control__text-size-control{display:flex;align-items:center}.dc-settings-control__text-size-button_s{font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-settings-control__text-size-button_m{font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-settings-control__text-size-button_l{font-size:var(--g-text-body-3-font-size);line-height:var(--g-text-body-3-line-height)}.dc-settings-control__text-size-button-icon_active{color:var(--g-color-base-brand)}.dc-settings-control__popup{width:230px;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-settings-control__popup-tooltip-content{padding:0}.dc-settings-control__list{padding:4px 0;width:230px}.dc-settings-control__list .g-list__item_active{background:transparent}.dc-settings-control__list-icon{margin-right:8px}.dc-settings-control__list-item{display:flex;padding:12px;width:100%}.dc-settings-control__list-item-description{color:var(--g-color-text-secondary)}.dc-settings-control__list-item-control{display:flex;align-items:center;margin-left:auto}[dir=rtl] .dc-settings-control__list-item-control{margin:0 auto 0 0}[dir=rtl] .dc-settings-control__list-item-control>label{transform:rotate(180deg)}@media(max-width: 769px){.dc-settings-control__popup{width:100vw}.dc-settings-control__popup-tooltip{position:fixed;top:var(--header-height) !important;right:0px !important;bottom:auto !important;left:0px !important;transform:translate3d(0, 0, 0) !important}.dc-settings-control__popup-tooltip-content{max-width:100%}.dc-settings-control__list{width:100%}}
|
|
26
26
|
.dc-lang-control{display:flex;align-items:center;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.dc-lang-control__popup{width:100px;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}div .dc-lang-control__popup-tooltip{padding:0}.dc-lang-control__list{padding:4px 0}.dc-lang-control__list-item{--g-focus-border-radius: 4px;display:flex;gap:8px;align-items:center;width:100%;height:100%;border-radius:4px;border-radius:var(--g-focus-border-radius);border:0;padding:0 12px;color:inherit;cursor:pointer;background-color:inherit;font-family:inherit}.dc-lang-control__list-item:focus{outline:2px solid var(--g-color-line-focus);outline-offset:-2px}.dc-lang-control__list-item:focus:not(:focus-visible){outline:0}.dc-lang-control__list-item_tld{flex-direction:column;align-items:flex-start;justify-content:center;gap:4px}.dc-lang-control__list-item_tld>span{color:var(--g-color-text-hint)}.dc-lang-control__list-item_disabled{color:var(--g-color-text-secondary);cursor:default;opacity:.7}
|
|
@@ -166,7 +166,7 @@ a.pc-image-card_border_shadow,.pc-image-card_border_shadow{box-shadow:0px 4px 24
|
|
|
166
166
|
.dc-share-button{vertical-align:middle;margin:0 0 5px 12px}.dc-share-button:hover::before{background-color:transparent}
|
|
167
167
|
.dc-doc-leading-page{display:flex;max-width:1440px;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-leading-page_regular-page-width{max-width:1280px}.dc-doc-leading-page__main{margin-bottom:40px;padding:0 40px}.dc-doc-leading-page__body{font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-leading-page__body_text-size_s{--g-text-body-1-font-size: 11px;--g-text-body-1-line-height: 16px;--g-text-body-2-font-size: 13px;--g-text-body-2-line-height: 18px;--g-text-body-3-font-size: 15px;--g-text-body-3-line-height: 22px;--g-text-body-short-font-size: 11px;--g-text-caption-1-font-size: 7px;--g-text-caption-2-font-size: 9px;--g-text-header-1-font-size: 18px;--g-text-header-2-font-size: 22px;--g-text-subheader-1-font-size: 11px;--g-text-subheader-2-font-size: 13px;--g-text-subheader-3-font-size: 15px;--g-text-display-1-font-size: 26px;--g-text-display-2-font-size: 30px;--g-text-display-3-font-size: 38px;--g-text-display-4-font-size: 46px;--g-text-code-1-font-size: 10px;--g-text-code-2-font-size: 12px;--g-text-code-3-font-size: 14px;--g-text-code-inline-1-font-size: 10px;--g-text-code-inline-2-font-size: 12px;--g-text-code-inline-3-font-size: 14px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-leading-page__body_text-size_l{--g-text-body-1-font-size: 15px;--g-text-body-1-line-height: 20px;--g-text-body-2-font-size: 17px;--g-text-body-2-line-height: 22px;--g-text-body-3-font-size: 19px;--g-text-body-3-line-height: 26px;--g-text-body-short-font-size: 15px;--g-text-caption-1-font-size: 11px;--g-text-caption-2-font-size: 13px;--g-text-header-1-font-size: 22px;--g-text-header-2-font-size: 26px;--g-text-subheader-1-font-size: 15px;--g-text-subheader-2-font-size: 17px;--g-text-subheader-3-font-size: 19px;--g-text-display-1-font-size: 30px;--g-text-display-2-font-size: 34px;--g-text-display-3-font-size: 42px;--g-text-display-4-font-size: 50px;--g-text-code-1-font-size: 14px;--g-text-code-2-font-size: 16px;--g-text-code-3-font-size: 18px;--g-text-code-inline-1-font-size: 14px;--g-text-code-inline-2-font-size: 16px;--g-text-code-inline-3-font-size: 18px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-leading-page__title{margin:40px 0 20px;font-size:var(--g-text-display-2-font-size);line-height:var(--g-text-display-2-line-height)}@media(max-width: 768px){.dc-doc-leading-page__title{margin-top:20px}}.dc-doc-leading-page__description a{color:var(--g-color-text-link);-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;border-radius:var(--g-focus-border-radius);outline:none}.utilityfocus .dc-doc-leading-page__description a:focus{outline:2px solid #ffdb4d}.dc-doc-leading-page__description a:focus{box-shadow:0 0 0 2px var(--g-color-line-focus);outline:0}.dc-doc-leading-page__description a:focus:not(:focus-visible){box-shadow:none}.dc-doc-leading-page__description a:hover,.dc-doc-leading-page__description a:active{color:var(--g-color-text-link-hover)}.dc-doc-leading-page__description a:not([href]){color:inherit}.dc-doc-leading-page__links{margin:0;padding:0;list-style:none;display:flex;justify-content:space-between;flex-flow:column wrap}.dc-doc-leading-page__links_root{flex-direction:row;margin-top:70px;margin-bottom:-20px}.dc-doc-leading-page__links-left{padding-right:10px}.dc-doc-leading-page__links-item_root{display:flex;min-width:280px;max-width:400px;width:calc(50% - 20px);padding-top:15px;padding-bottom:15px;margin-bottom:20px;border-top:1px solid var(--g-color-line-generic)}.dc-doc-leading-page__links-title_root{font-weight:500;font-size:var(--g-text-header-1-font-size);line-height:var(--g-text-header-1-line-height);margin-bottom:10px;font-weight:500}.dc-doc-leading-page__links-link{color:var(--g-color-text-link);-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;border-radius:var(--g-focus-border-radius);outline:none}.utilityfocus .dc-doc-leading-page__links-link:focus{outline:2px solid #ffdb4d}.dc-doc-leading-page__links-link:focus{box-shadow:0 0 0 2px var(--g-color-line-focus);outline:0}.dc-doc-leading-page__links-link:focus:not(:focus-visible){box-shadow:none}.dc-doc-leading-page__links-link:hover,.dc-doc-leading-page__links-link:active{color:var(--g-color-text-link-hover)}@media(max-width: 768px){.dc-doc-leading-page__main{margin-left:0;margin-bottom:40px;padding:0 20px}.dc-doc-leading-page__links-item{width:100%}}
|
|
168
168
|
.dc-bookmark-button{vertical-align:middle;margin:0 0 5px 12px}.dc-bookmark-button:hover::before{background-color:transparent}.dc-bookmark-button_active .dc-bookmark-button__icon{color:var(--g-color-base-brand)}
|
|
169
|
-
.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:" /
|
|
169
|
+
.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}
|
|
170
170
|
.dc-contributor-avatars__one_contributor{display:flex;margin:0 1.5px}.dc-contributor-avatars__one_contributor a,.dc-contributor-avatars__one_contributor a:hover,.dc-contributor-avatars__one_contributor a:visited,.dc-contributor-avatars__one_contributor a:active{color:inherit;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;display:flex}.dc-contributor-avatars__one_contributor a{cursor:pointer}.dc-contributor-avatars__one_contributor a:hover,.dc-contributor-avatars__one_contributor a:active{color:var(--g-color-text-link-hover)}.dc-contributor-avatars__one_contributor>*{font-size:13px;font-weight:400;margin-right:5px;align-self:center}.dc-contributor-avatars__avatar{border-radius:50%;box-shadow:0 0 0 1.5px var(--g-color-line-generic-accent);border:0;color:inherit;cursor:inherit;background-color:inherit;padding:0;align-items:initial;font-family:inherit}.dc-contributor-avatars__avatar_size_small{height:23px;width:23px}.dc-contributor-avatars__avatar_size_big{height:33px;width:33px}.dc-contributor-avatars__avatar_default{text-align:center;display:flex;flex-direction:column;justify-content:center;font-size:12px;font-weight:500}.dc-contributor-avatars__avatar:focus{outline:2px solid var(--g-color-line-focus);outline-offset:1px}.dc-contributor-avatars__avatar:focus:not(:focus-visible){outline:0}.dc-contributor-avatars__displayed_avatars{display:flex}.dc-contributor-avatars__displayed_avatars a,.dc-contributor-avatars__displayed_avatars a:hover,.dc-contributor-avatars__displayed_avatars a:visited,.dc-contributor-avatars__displayed_avatars a:active{color:inherit;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;display:flex}.dc-contributor-avatars__displayed_avatars a{cursor:pointer}.dc-contributor-avatars__displayed_avatars>*{margin-left:1.5px;margin-right:3.5px}.dc-contributor-avatars__displayed_avatars a{border-radius:50%}.dc-contributor-avatars__hidden_avatars{font-size:12px;font-weight:500;color:var(--g-color-text-secondary);border-radius:50%;text-align:center;cursor:pointer}.dc-contributor-avatars__hidden_avatars>*{background:var(--g-color-base-misc-light);flex-direction:column;text-align:center;display:flex;justify-content:center;margin:0 1.5px;box-shadow:0 0 0 1.5px var(--g-color-line-generic-accent)}.dc-contributor-avatars__details{display:flex}.dc-contributor-avatars__details>div:last-child{font-size:13px;font-weight:400;margin:auto 12px}.dc-contributor-avatars__details_name{color:var(--g-color-text-primary);line-height:18px}.dc-contributor-avatars__popup{box-shadow:0px 3px 24px rgba(0, 0, 0, 0.2);padding:12px}.dc-contributor-avatars__popup>*:not(:last-child){margin-bottom:12px}.dc-contributor-avatars__popup a,.dc-contributor-avatars__popup a:hover,.dc-contributor-avatars__popup a:visited,.dc-contributor-avatars__popup a:active{color:inherit;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;display:flex}.dc-contributor-avatars__popup a{cursor:pointer}
|
|
171
171
|
.dc-contributors{display:flex}.dc-contributors__title{font-size:13px;font-weight:400;margin-right:5px;align-self:center}
|
|
172
172
|
.dc-sidebar{position:fixed;top:0px;top:var(--dc-header-height, 0px);z-index:119;height:calc(100% - 0px + 1px);height:calc(100% - var(--dc-header-height, 0px) + 1px);width:100vw;background-color:#fff;background-color:var(--g-color-base-background, #fff)}.dc-sidebar__bar{position:absolute;top:0;display:flex;flex-direction:column;width:100%;height:100%}.dc-sidebar__transition-enter{transform:translateX(100%)}.dc-sidebar__transition-enter-active{transform:translateX(0);transition:transform .4s}.dc-sidebar__transition-enter-done .dc-sidebar-navigation__navigation{border-right:none}.dc-sidebar__transition-exit{transform:translateX(0)}.dc-sidebar__transition-exit-active{transition:transform .4s;transform:translateX(100%)}@media(min-width: 769px){.dc-sidebar{display:none}}@media(max-width: 769px){.dc-sidebar__no-scroll{overflow-y:hidden}}
|
|
@@ -182,7 +182,7 @@ a.pc-image-card_border_shadow,.pc-image-card_border_shadow{box-shadow:0px 4px 24
|
|
|
182
182
|
.dc-search-bar{width:100%;height:100%;border-radius:5px;box-sizing:border-box;box-shadow:0px 3px 10px var(--g-color-base-generic-accent);padding:11px;display:flex;align-items:center;justify-content:space-between;font-size:var(--g-text-body-short-font-size);line-height:var(--g-text-body-short-line-height)}.dc-search-bar__search-query-label{color:var(--g-color-text-secondary);white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@media(max-width: 770px){.dc-search-bar__search-query-label{display:none}}.dc-search-bar__search-query{max-width:400px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@media(max-width: 770px){.dc-search-bar__search-query{display:none}}.dc-search-bar__left{width:90%;display:flex;align-items:center}.dc-search-bar__navigation{display:flex;align-items:center;margin-right:11px}.dc-search-bar__next-arrow{transform:rotate(-180deg)}.dc-search-bar__counter{margin:0 4px}.dc-search-highlighted{background:var(--dc-text-highlight)}.dc-search-highlighted_selected{background:var(--dc-text-highlight-selected)}
|
|
183
183
|
.dc-nav-toc-panel{display:flex;justify-content:center;width:100%;background:var(--g-color-base-background);font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-nav-toc-panel_fixed{position:fixed;bottom:0;z-index:1000;left:0;border-top:1px solid var(--g-color-line-generic)}.dc-nav-toc-panel_fixed .dc-nav-toc-panel__control-hint{display:none}.dc-nav-toc-panel_fixed .dc-nav-toc-panel__content{padding:0 40px}.dc-nav-toc-panel__content{display:flex;justify-content:space-between;flex:1;max-width:1440px}.dc-nav-toc-panel__control{display:flex;flex-direction:column;gap:4px;width:48%}.dc-nav-toc-panel__control_left,.dc-nav-toc-panel__control_left .dc-nav-toc-panel__control-text{align-items:flex-start}.dc-nav-toc-panel__control_right,.dc-nav-toc-panel__control_right .dc-nav-toc-panel__control-text{align-items:flex-end}.dc-nav-toc-panel__control_left .dc-nav-toc-panel__control-name{text-align:left}.dc-nav-toc-panel__control_right .dc-nav-toc-panel__control-name{text-align:right}.dc-nav-toc-panel__control_left .dc-nav-toc-panel__control-hint{padding-left:40px}.dc-nav-toc-panel__control_right .dc-nav-toc-panel__control-hint{padding-right:40px}.dc-nav-toc-panel__control svg{min-width:24px}[dir=rtl] .dc-nav-toc-panel__control_left svg,[dir=rtl] .dc-nav-toc-panel__control_right svg{transform:rotate(180deg)}.dc-nav-toc-panel__control-hint{color:var(--g-color-text-hint)}.dc-nav-toc-panel__control-text{display:flex;align-items:center;flex-direction:column}.dc-nav-toc-panel__control-name{word-break:break-word}.dc-nav-toc-panel__control .dc-nav-toc-panel__link{align-items:center}.dc-nav-toc-panel__link{display:flex;align-items:center;gap:16px;color:var(--g-color-text-primary);font-weight:500;border-radius:var(--g-focus-border-radius)}.dc-nav-toc-panel__link:focus{outline:2px solid var(--g-color-line-focus);outline-offset:0}.dc-nav-toc-panel__link:focus:not(:focus-visible){outline:0}
|
|
184
184
|
.dc-updated-at-date{display:flex;font-size:13px;font-weight:400}.dc-updated-at-date__wrapper{align-self:center}
|
|
185
|
-
.dc-doc-page{position:relative;width:1440px;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-page__aside{position:fixed;top:40px;top:calc(0px + 40px);top:calc(var(--dc-header-height, 0px) + var(--dc-subheader-height, 40px));padding-top:24px;width:176px;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}@media(max-width: 768px){.dc-doc-page__aside{z-index:117;position:sticky;display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;width:100%;padding:0}}@media screen and (min-width: 1280px){.dc-doc-page__aside{width:200px}}.dc-doc-page__main{padding:20px 36px 24px;overflow:hidden;display:flex;flex-direction:column;min-height:calc(100vh - 0px - var(--dc-subnavigation-height));min-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height))}.dc-doc-page__loader-wrapper{background:var(--g-color-base-background);padding-top:calc((100vh - 0px)/2);padding-top:calc((100vh - var(--dc-header-height, 0px))/2);display:flex;justify-content:center;position:absolute;width:100%;top:0;z-index:101;height:100%}.dc-doc-page__controls{display:flex;top:0;align-items:center;height:40px;z-index:102;position:absolute;right:7px}[dir=rtl] .dc-doc-page__controls{left:7px;right:auto}.dc-doc-page__controls>.dc-controls{position:fixed;top:6px;top:calc(6px + 0px);top:calc(6px + var(--dc-header-height, 0px))}@media(max-width: 768px){.dc-doc-page__controls>.dc-controls{position:static}}@media(max-width: 768px){.dc-doc-page__controls{display:none}}@media(min-width: 769px){.dc-doc-page__controls_vertical{top:6px;top:calc(6px + 0px);top:calc(6px + var(--dc-header-height, 0px));justify-content:center;height:auto;width:36px;position:absolute;right:0}}.dc-doc-page__body_text-size_s.yfm{--dc-code-font-size: 12px;--dc-code-line-height: 18px;--dc-code-short-font-size: 12px;--dc-code-short-line-height: 14px;--dc-code-short-padding: 1px 2px}.dc-doc-page__body_text-size_s.yfm,.dc-doc-page__body_text-size_s.yfm .g-root{--g-text-body-1-font-size: 11px;--g-text-body-1-line-height: 16px;--g-text-body-2-font-size: 13px;--g-text-body-2-line-height: 18px;--g-text-body-3-font-size: 15px;--g-text-body-3-line-height: 22px;--g-text-body-short-font-size: 11px;--g-text-caption-1-font-size: 7px;--g-text-caption-2-font-size: 9px;--g-text-header-1-font-size: 18px;--g-text-header-2-font-size: 22px;--g-text-subheader-1-font-size: 11px;--g-text-subheader-2-font-size: 13px;--g-text-subheader-3-font-size: 15px;--g-text-display-1-font-size: 26px;--g-text-display-2-font-size: 30px;--g-text-display-3-font-size: 38px;--g-text-display-4-font-size: 46px;--g-text-code-1-font-size: 10px;--g-text-code-2-font-size: 12px;--g-text-code-3-font-size: 14px;--g-text-code-inline-1-font-size: 10px;--g-text-code-inline-2-font-size: 12px;--g-text-code-inline-3-font-size: 14px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__body_text-size_m.yfm{--dc-code-font-size: 14px;--dc-code-line-height: 20px;--dc-code-short-font-size: 14px;--dc-code-short-line-height: 16px;--dc-code-short-padding: 1px 4px;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-page__body_text-size_l.yfm{--dc-code-font-size: 16px;--dc-code-line-height: 24px;--dc-code-short-font-size: 16px;--dc-code-short-line-height: 20px;--dc-code-short-padding: 1px 6px}.dc-doc-page__body_text-size_l.yfm,.dc-doc-page__body_text-size_l.yfm .g-root{--g-text-body-1-font-size: 15px;--g-text-body-1-line-height: 20px;--g-text-body-2-font-size: 17px;--g-text-body-2-line-height: 22px;--g-text-body-3-font-size: 19px;--g-text-body-3-line-height: 26px;--g-text-body-short-font-size: 15px;--g-text-caption-1-font-size: 11px;--g-text-caption-2-font-size: 13px;--g-text-header-1-font-size: 22px;--g-text-header-2-font-size: 26px;--g-text-subheader-1-font-size: 15px;--g-text-subheader-2-font-size: 17px;--g-text-subheader-3-font-size: 19px;--g-text-display-1-font-size: 30px;--g-text-display-2-font-size: 34px;--g-text-display-3-font-size: 42px;--g-text-display-4-font-size: 50px;--g-text-code-1-font-size: 14px;--g-text-code-2-font-size: 16px;--g-text-code-3-font-size: 18px;--g-text-code-inline-1-font-size: 14px;--g-text-code-inline-2-font-size: 16px;--g-text-code-inline-3-font-size: 18px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__breadcrumbs{display:flex;align-items:center;height:40px;padding:0 36px}.dc-doc-page__feedback{margin-top:20px}.dc-doc-page__edit-button{position:absolute;right:0}.dc-doc-page__title{margin-top:20px;text-wrap:balance;font-size:var(--g-text-display-2-font-size);line-height:var(--g-text-display-2-line-height)}@media(min-width: 769px){.dc-doc-page__title{margin-top:0px;margin-bottom:12px;text-wrap:inherit}}.dc-doc-page__share-button:hover::before{background-color:transparent}.dc-doc-page__content{flex:1;margin-bottom:20px}.dc-doc-page__content-mini-toc{display:none;margin-bottom:20px}.dc-doc-page__search-bar{background:var(--g-color-base-background);width:100%;height:40px;box-sizing:border-box;position:sticky;top:6px;top:calc(0px + 6px);top:calc(var(--dc-header-height, 0px) + 6px);z-index:101;padding:0 36px}@media(max-width: 768px){.dc-doc-page__search-bar{padding:0 10px}}.dc-doc-page__search-bar+.dc-doc-page__breadcrumbs{margin-top:12px}.dc-doc-page_full-screen{--dc-header-height: 0px}.dc-doc-page_full-screen .dc-doc-page__breadcrumbs{padding:0 24px}.dc-doc-page_full-screen .dc-doc-page__main,.dc-doc-page_full-screen .dc-nav-toc-panel__content{padding-left:64px;padding-right:64px}.dc-doc-page_regular-page-width{width:1280px}.dc-doc-page.dc-doc-page_single-page .dc-doc-page__header-container{position:relative;padding-right:200px}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width{max-width:736px}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__main{padding-left:0;padding-right:0}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__breadcrumbs{padding:0}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-nav-toc-panel__content{max-width:736px;padding:0}@media(max-width: 768px){.dc-doc-page__main{padding:0 20px}body:has(.dc-subnavigation_hidden) .dc-doc-page__main{margin-top:0;min-height:calc(100vh - 0px);min-height:calc(100vh - var(--dc-header-height, 0px))}.dc-doc-page__breadcrumbs{display:none;padding:0 20px}.dc-doc-page__content-mini-toc{display:none}.dc-doc-page__toc-nav-panel{padding-bottom:50px}.dc-doc-page__controls{padding-left:12px;position:static}}.dc-doc-page__page-contributors{display:flex;margin-bottom:24px;flex-wrap:wrap}.dc-doc-page__page-contributors>div{margin-right:20px;margin-bottom:8px;line-height:24px}.dc-doc-page__page-contributors>div:last-child{margin-right:0}@media screen and (max-width: 1440px){.dc-doc-page:not(.dc-doc-page_regular-page-width){width:100%}}@media screen and (max-width: 1136px){.dc-doc-page_regular-page-width{width:100%}}@media screen and (min-width: 1024px){.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__controls_vertical{right:-36px}[dir=rtl] .dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__controls_vertical{left:-36px;right:auto}}@media screen and (max-width: 1280px){.dc-doc-page_full-screen .dc-doc-page__main,.dc-doc-page_full-screen .dc-nav-toc-panel__content{padding-left:40px !important;padding-right:40px !important}.dc-doc-page_full-screen .dc-doc-page__breadcrumbs{padding-left:24px !important;padding-right:24px !important}.dc-doc-page_regular-page-width{width:100%}}
|
|
185
|
+
.dc-doc-page{position:relative;width:1440px;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-page__aside{position:fixed;top:40px;top:calc(0px + 40px);top:calc(var(--dc-header-height, 0px) + var(--dc-subheader-height, 40px));padding-top:24px;width:176px;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}@media(max-width: 768px){.dc-doc-page__aside{z-index:117;position:sticky;display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;width:100%;padding:0}}@media screen and (min-width: 1280px){.dc-doc-page__aside{width:200px}}.dc-doc-page__main{padding:20px 36px 24px;overflow:hidden;display:flex;flex-direction:column;min-height:calc(100vh - 0px - var(--dc-subnavigation-height));min-height:calc(100vh - var(--dc-header-height, 0px) - var(--dc-subnavigation-height))}.dc-doc-page__loader-wrapper{background:var(--g-color-base-background);padding-top:calc((100vh - 0px)/2);padding-top:calc((100vh - var(--dc-header-height, 0px))/2);display:flex;justify-content:center;position:absolute;width:100%;top:0;z-index:101;height:100%}.dc-doc-page__controls{display:flex;top:0;align-items:center;height:40px;z-index:102;position:absolute;right:7px}[dir=rtl] .dc-doc-page__controls{left:7px;right:auto}.dc-doc-page__controls>.dc-controls{position:fixed;top:6px;top:calc(6px + 0px);top:calc(6px + var(--dc-header-height, 0px))}@media(max-width: 768px){.dc-doc-page__controls>.dc-controls{position:static}}@media(max-width: 768px){.dc-doc-page__controls{display:none}}@media(min-width: 769px){.dc-doc-page__controls_vertical{top:6px;top:calc(6px + 0px);top:calc(6px + var(--dc-header-height, 0px));justify-content:center;height:auto;width:36px;position:absolute;right:0}}.dc-doc-page__body_text-size_s.yfm{--dc-code-font-size: 12px;--dc-code-line-height: 18px;--dc-code-short-font-size: 12px;--dc-code-short-line-height: 14px;--dc-code-short-padding: 1px 2px}.dc-doc-page__body_text-size_s.yfm,.dc-doc-page__body_text-size_s.yfm .g-root{--g-text-body-1-font-size: 11px;--g-text-body-1-line-height: 16px;--g-text-body-2-font-size: 13px;--g-text-body-2-line-height: 18px;--g-text-body-3-font-size: 15px;--g-text-body-3-line-height: 22px;--g-text-body-short-font-size: 11px;--g-text-caption-1-font-size: 7px;--g-text-caption-2-font-size: 9px;--g-text-header-1-font-size: 18px;--g-text-header-2-font-size: 22px;--g-text-subheader-1-font-size: 11px;--g-text-subheader-2-font-size: 13px;--g-text-subheader-3-font-size: 15px;--g-text-display-1-font-size: 26px;--g-text-display-2-font-size: 30px;--g-text-display-3-font-size: 38px;--g-text-display-4-font-size: 46px;--g-text-code-1-font-size: 10px;--g-text-code-2-font-size: 12px;--g-text-code-3-font-size: 14px;--g-text-code-inline-1-font-size: 10px;--g-text-code-inline-2-font-size: 12px;--g-text-code-inline-3-font-size: 14px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__body_text-size_m.yfm{--dc-code-font-size: 14px;--dc-code-line-height: 20px;--dc-code-short-font-size: 14px;--dc-code-short-line-height: 16px;--dc-code-short-padding: 1px 4px;font-size:var(--g-text-body-2-font-size);line-height:var(--g-text-body-2-line-height)}.dc-doc-page__body_text-size_l.yfm{--dc-code-font-size: 16px;--dc-code-line-height: 24px;--dc-code-short-font-size: 16px;--dc-code-short-line-height: 20px;--dc-code-short-padding: 1px 6px}.dc-doc-page__body_text-size_l.yfm,.dc-doc-page__body_text-size_l.yfm .g-root{--g-text-body-1-font-size: 15px;--g-text-body-1-line-height: 20px;--g-text-body-2-font-size: 17px;--g-text-body-2-line-height: 22px;--g-text-body-3-font-size: 19px;--g-text-body-3-line-height: 26px;--g-text-body-short-font-size: 15px;--g-text-caption-1-font-size: 11px;--g-text-caption-2-font-size: 13px;--g-text-header-1-font-size: 22px;--g-text-header-2-font-size: 26px;--g-text-subheader-1-font-size: 15px;--g-text-subheader-2-font-size: 17px;--g-text-subheader-3-font-size: 19px;--g-text-display-1-font-size: 30px;--g-text-display-2-font-size: 34px;--g-text-display-3-font-size: 42px;--g-text-display-4-font-size: 50px;--g-text-code-1-font-size: 14px;--g-text-code-2-font-size: 16px;--g-text-code-3-font-size: 18px;--g-text-code-inline-1-font-size: 14px;--g-text-code-inline-2-font-size: 16px;--g-text-code-inline-3-font-size: 18px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__body_text-size_s,.dc-doc-page__body_text-size_s .g-root{--g-text-body-1-font-size: 11px;--g-text-body-1-line-height: 16px;--g-text-body-2-font-size: 13px;--g-text-body-2-line-height: 18px;--g-text-body-3-font-size: 15px;--g-text-body-3-line-height: 22px;--g-text-body-short-font-size: 11px;--g-text-caption-1-font-size: 7px;--g-text-caption-2-font-size: 9px;--g-text-header-1-font-size: 18px;--g-text-header-2-font-size: 22px;--g-text-subheader-1-font-size: 11px;--g-text-subheader-2-font-size: 13px;--g-text-subheader-3-font-size: 15px;--g-text-display-1-font-size: 26px;--g-text-display-2-font-size: 30px;--g-text-display-3-font-size: 38px;--g-text-display-4-font-size: 46px;--g-text-code-1-font-size: 10px;--g-text-code-2-font-size: 12px;--g-text-code-3-font-size: 14px;--g-text-code-inline-1-font-size: 10px;--g-text-code-inline-2-font-size: 12px;--g-text-code-inline-3-font-size: 14px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__body_text-size_l,.dc-doc-page__body_text-size_l .g-root{--g-text-body-1-font-size: 15px;--g-text-body-1-line-height: 20px;--g-text-body-2-font-size: 17px;--g-text-body-2-line-height: 22px;--g-text-body-3-font-size: 19px;--g-text-body-3-line-height: 26px;--g-text-body-short-font-size: 15px;--g-text-caption-1-font-size: 11px;--g-text-caption-2-font-size: 13px;--g-text-header-1-font-size: 22px;--g-text-header-2-font-size: 26px;--g-text-subheader-1-font-size: 15px;--g-text-subheader-2-font-size: 17px;--g-text-subheader-3-font-size: 19px;--g-text-display-1-font-size: 30px;--g-text-display-2-font-size: 34px;--g-text-display-3-font-size: 42px;--g-text-display-4-font-size: 50px;--g-text-code-1-font-size: 14px;--g-text-code-2-font-size: 16px;--g-text-code-3-font-size: 18px;--g-text-code-inline-1-font-size: 14px;--g-text-code-inline-2-font-size: 16px;--g-text-code-inline-3-font-size: 18px;--yfm-font-size: var(--g-text-body-2-font-size);--yfm-font-line-height: var(--g-text-body-2-line-height);--yfm-font-size-h2: var(--g-text-header-2-font-size);--yfm-font-size-h3: var(--g-text-header-1-font-size);--yfm-font-size-h4: var(--g-text-subheader-3-font-size);--yfm-font-size-h5: var(--g-text-subheader-2-font-size);--yfm-font-size-h6: var(--g-text-subheader-1-font-size)}.dc-doc-page__breadcrumbs{display:flex;align-items:center;height:40px;padding:0 36px}.dc-doc-page__feedback{margin-top:20px}.dc-doc-page__edit-button{position:absolute;right:0}.dc-doc-page__title{margin-top:20px;text-wrap:balance;font-size:var(--g-text-display-2-font-size);line-height:var(--g-text-display-2-line-height)}@media(min-width: 769px){.dc-doc-page__title{margin-top:0px;margin-bottom:12px;text-wrap:inherit}}.dc-doc-page__share-button:hover::before{background-color:transparent}.dc-doc-page__content{flex:1;margin-bottom:20px}.dc-doc-page__content-mini-toc{display:none;margin-bottom:20px}.dc-doc-page__search-bar{background:var(--g-color-base-background);width:100%;height:40px;box-sizing:border-box;position:sticky;top:6px;top:calc(0px + 6px);top:calc(var(--dc-header-height, 0px) + 6px);z-index:101;padding:0 36px}@media(max-width: 768px){.dc-doc-page__search-bar{padding:0 10px}}.dc-doc-page__search-bar+.dc-doc-page__breadcrumbs{margin-top:12px}.dc-doc-page_full-screen{--dc-header-height: 0px}.dc-doc-page_full-screen .dc-doc-page__breadcrumbs{padding:0 24px}.dc-doc-page_full-screen .dc-doc-page__main,.dc-doc-page_full-screen .dc-nav-toc-panel__content{padding-left:64px;padding-right:64px}.dc-doc-page_regular-page-width{width:1280px}.dc-doc-page.dc-doc-page_single-page .dc-doc-page__header-container{position:relative;padding-right:200px}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width{max-width:736px}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__main{padding-left:0;padding-right:0}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__breadcrumbs{padding:0}.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-nav-toc-panel__content{max-width:736px;padding:0}@media(max-width: 768px){.dc-doc-page__main{padding:0 20px}body:has(.dc-subnavigation_hidden) .dc-doc-page__main{margin-top:0;min-height:calc(100vh - 0px);min-height:calc(100vh - var(--dc-header-height, 0px))}.dc-doc-page__breadcrumbs{display:none;padding:0 20px}.dc-doc-page__content-mini-toc{display:none}.dc-doc-page__toc-nav-panel{padding-bottom:50px}.dc-doc-page__controls{padding-left:12px;position:static}}.dc-doc-page__page-contributors{display:flex;margin-bottom:24px;flex-wrap:wrap}.dc-doc-page__page-contributors>div{margin-right:20px;margin-bottom:8px;line-height:24px}.dc-doc-page__page-contributors>div:last-child{margin-right:0}@media screen and (max-width: 1440px){.dc-doc-page:not(.dc-doc-page_regular-page-width){width:100%}}@media screen and (max-width: 1136px){.dc-doc-page_regular-page-width{width:100%}}@media screen and (min-width: 1024px){.dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__controls_vertical{right:-36px}[dir=rtl] .dc-doc-page.dc-doc-page_full-screen.dc-doc-page_regular-page-width .dc-doc-page__controls_vertical{left:-36px;right:auto}}@media screen and (max-width: 1280px){.dc-doc-page_full-screen .dc-doc-page__main,.dc-doc-page_full-screen .dc-nav-toc-panel__content{padding-left:40px !important;padding-right:40px !important}.dc-doc-page_full-screen .dc-doc-page__breadcrumbs{padding-left:24px !important;padding-right:24px !important}.dc-doc-page_regular-page-width{width:100%}}
|
|
186
186
|
.Paginator{margin:0;padding:0;list-style:none;display:flex;align-items:center}.Paginator__item{display:inline-flex;align-items:center;justify-content:center;min-width:28px;min-height:28px;margin:4px;color:var(--g-color-text-primary);font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.Paginator__item_type_prev{margin:4px 6px 4px 0}[dir=rtl] .Paginator__item_type_prev{transform:rotate(180deg)}.Paginator__item_type_dots{min-width:0;color:var(--g-color-text-secondary)}.Paginator__item_type_page{cursor:pointer;border-radius:14px}.Paginator__item_type_page:hover{background:var(--g-color-base-simple-hover)}.Paginator__item_type_page.Paginator__item_active{color:var(--g-color-text-light-primary);background:var(--g-color-base-brand);cursor:default}.Paginator__item_type_next{margin:4px 0 4px 6px}[dir=rtl] .Paginator__item_type_next{transform:rotate(180deg)}
|
|
187
187
|
.SearchItem__link{cursor:pointer;color:inherit}.SearchItem__link:hover,.SearchItem__link:active{color:var(--g-color-text-link-hover)}.SearchItem__marks-wrapper{display:none;justify-content:flex-end;align-items:center}.SearchItem__marks{height:16px;margin-top:10px}.SearchItem__mark{margin-right:20px}.SearchItem__mark:last-child{margin-right:0}.SearchItem__item-wrapper:hover .SearchItem__marks-wrapper{display:flex}.SearchItem__item-wrapper{margin-bottom:20px;font-size:var(--g-text-body-1-font-size);line-height:var(--g-text-body-1-line-height)}.SearchItem__item{display:block;overflow:hidden;-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;text-overflow:ellipsis;border-radius:var(--g-focus-border-radius)}.SearchItem__item:focus{outline:2px solid var(--g-color-line-focus);outline-offset:0}.SearchItem__item:focus:not(:focus-visible){outline:0}.SearchItem__item-title,.SearchItem__item-description{display:block;overflow:hidden;text-overflow:ellipsis}.SearchItem__item-title{margin-bottom:4px}.SearchItem__item-title,.SearchItem__item-title .SearchItem__item-search-token{color:var(--g-color-text-primary);font-size:var(--g-text-subheader-3-font-size);line-height:var(--g-text-subheader-3-line-height);color:var(--g-color-text-link);-webkit-text-decoration:none;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;border-radius:var(--g-focus-border-radius);outline:none}.utilityfocus .SearchItem__item-title:focus,.utilityfocus .SearchItem__item-title .SearchItem__item-search-token:focus{outline:2px solid #ffdb4d}.SearchItem__item-title:focus,.SearchItem__item-title .SearchItem__item-search-token:focus{box-shadow:0 0 0 2px var(--g-color-line-focus);outline:0}.SearchItem__item-title:focus:not(:focus-visible),.SearchItem__item-title .SearchItem__item-search-token:focus:not(:focus-visible){box-shadow:none}.SearchItem__item-title:hover,.SearchItem__item-title:active,.SearchItem__item-title .SearchItem__item-search-token:hover,.SearchItem__item-title .SearchItem__item-search-token:active{color:var(--g-color-text-link-hover)}.SearchItem__item-title:hover .SearchItem__item-search-token{color:var(--g-color-text-link-hover)}.SearchItem__item-description{display:inline-block;color:var(--g-color-text-secondary)}.SearchItem__item-description em{font-weight:bolder}.SearchItem__item-description::after{content:"...";display:inline}.SearchItem__item-description .SearchItem__item-search-token{color:var(--g-color-text-primary)}
|
|
188
188
|
.dc-search-page{margin-top:26px;display:flex;justify-content:center}.dc-search-page__layout{max-width:736px;width:100%}.dc-search-page__search-field-wrapper{display:flex;align-items:center}.dc-search-page__search-button{margin-left:10px}.dc-search-page__search-field,.dc-search-page__search-item{margin-bottom:36px}.dc-search-page__subtitle{margin-bottom:18px}.dc-search-page__paginator{padding:10px 0;border-top:1px solid var(--g-color-line-generic)}@media(max-width: 769px){.dc-search-page{margin-top:16px}.dc-search-page__layout{padding:0 12px}.dc-search-page__search-field{margin-bottom:24px}.dc-search-page__search-item{margin-bottom:40px}}
|
|
@@ -210,4 +210,4 @@ a.pc-image-card_border_shadow,.pc-image-card_border_shadow{box-shadow:0px 4px 24
|
|
|
210
210
|
.g-row{display:flex;flex-flow:row wrap;flex-shrink:0}.g-row_s_0{margin-block-start:calc(-1*var(--g-spacing-0));margin-inline-start:calc(-1*var(--g-spacing-0))}.g-row_s_0>.g-col{padding-block-start:var(--g-spacing-0);padding-inline-start:var(--g-spacing-0)}.g-row_sr_0{margin-block-start:calc(-1*var(--g-spacing-0)) !important}.g-row_sr_0>.g-col{padding-block-start:var(--g-spacing-0) !important}.g-row_s_half{margin-block-start:calc(-1*var(--g-spacing-half));margin-inline-start:calc(-1*var(--g-spacing-half))}.g-row_s_half>.g-col{padding-block-start:var(--g-spacing-half);padding-inline-start:var(--g-spacing-half)}.g-row_sr_half{margin-block-start:calc(-1*var(--g-spacing-half)) !important}.g-row_sr_half>.g-col{padding-block-start:var(--g-spacing-half) !important}.g-row_s_1{margin-block-start:calc(-1*var(--g-spacing-1));margin-inline-start:calc(-1*var(--g-spacing-1))}.g-row_s_1>.g-col{padding-block-start:var(--g-spacing-1);padding-inline-start:var(--g-spacing-1)}.g-row_sr_1{margin-block-start:calc(-1*var(--g-spacing-1)) !important}.g-row_sr_1>.g-col{padding-block-start:var(--g-spacing-1) !important}.g-row_s_2{margin-block-start:calc(-1*var(--g-spacing-2));margin-inline-start:calc(-1*var(--g-spacing-2))}.g-row_s_2>.g-col{padding-block-start:var(--g-spacing-2);padding-inline-start:var(--g-spacing-2)}.g-row_sr_2{margin-block-start:calc(-1*var(--g-spacing-2)) !important}.g-row_sr_2>.g-col{padding-block-start:var(--g-spacing-2) !important}.g-row_s_3{margin-block-start:calc(-1*var(--g-spacing-3));margin-inline-start:calc(-1*var(--g-spacing-3))}.g-row_s_3>.g-col{padding-block-start:var(--g-spacing-3);padding-inline-start:var(--g-spacing-3)}.g-row_sr_3{margin-block-start:calc(-1*var(--g-spacing-3)) !important}.g-row_sr_3>.g-col{padding-block-start:var(--g-spacing-3) !important}.g-row_s_4{margin-block-start:calc(-1*var(--g-spacing-4));margin-inline-start:calc(-1*var(--g-spacing-4))}.g-row_s_4>.g-col{padding-block-start:var(--g-spacing-4);padding-inline-start:var(--g-spacing-4)}.g-row_sr_4{margin-block-start:calc(-1*var(--g-spacing-4)) !important}.g-row_sr_4>.g-col{padding-block-start:var(--g-spacing-4) !important}.g-row_s_5{margin-block-start:calc(-1*var(--g-spacing-5));margin-inline-start:calc(-1*var(--g-spacing-5))}.g-row_s_5>.g-col{padding-block-start:var(--g-spacing-5);padding-inline-start:var(--g-spacing-5)}.g-row_sr_5{margin-block-start:calc(-1*var(--g-spacing-5)) !important}.g-row_sr_5>.g-col{padding-block-start:var(--g-spacing-5) !important}.g-row_s_6{margin-block-start:calc(-1*var(--g-spacing-6));margin-inline-start:calc(-1*var(--g-spacing-6))}.g-row_s_6>.g-col{padding-block-start:var(--g-spacing-6);padding-inline-start:var(--g-spacing-6)}.g-row_sr_6{margin-block-start:calc(-1*var(--g-spacing-6)) !important}.g-row_sr_6>.g-col{padding-block-start:var(--g-spacing-6) !important}.g-row_s_7{margin-block-start:calc(-1*var(--g-spacing-7));margin-inline-start:calc(-1*var(--g-spacing-7))}.g-row_s_7>.g-col{padding-block-start:var(--g-spacing-7);padding-inline-start:var(--g-spacing-7)}.g-row_sr_7{margin-block-start:calc(-1*var(--g-spacing-7)) !important}.g-row_sr_7>.g-col{padding-block-start:var(--g-spacing-7) !important}.g-row_s_8{margin-block-start:calc(-1*var(--g-spacing-8));margin-inline-start:calc(-1*var(--g-spacing-8))}.g-row_s_8>.g-col{padding-block-start:var(--g-spacing-8);padding-inline-start:var(--g-spacing-8)}.g-row_sr_8{margin-block-start:calc(-1*var(--g-spacing-8)) !important}.g-row_sr_8>.g-col{padding-block-start:var(--g-spacing-8) !important}.g-row_s_9{margin-block-start:calc(-1*var(--g-spacing-9));margin-inline-start:calc(-1*var(--g-spacing-9))}.g-row_s_9>.g-col{padding-block-start:var(--g-spacing-9);padding-inline-start:var(--g-spacing-9)}.g-row_sr_9{margin-block-start:calc(-1*var(--g-spacing-9)) !important}.g-row_sr_9>.g-col{padding-block-start:var(--g-spacing-9) !important}.g-row_s_10{margin-block-start:calc(-1*var(--g-spacing-10));margin-inline-start:calc(-1*var(--g-spacing-10))}.g-row_s_10>.g-col{padding-block-start:var(--g-spacing-10);padding-inline-start:var(--g-spacing-10)}.g-row_sr_10{margin-block-start:calc(-1*var(--g-spacing-10)) !important}.g-row_sr_10>.g-col{padding-block-start:var(--g-spacing-10) !important}
|
|
211
211
|
.g-col{flex:1 0 0;width:100%}.g-col_size_1{box-sizing:border-box;flex:0 0 auto;width:8.33333333%}.g-col_size_2{box-sizing:border-box;flex:0 0 auto;width:16.66666667%}.g-col_size_3{box-sizing:border-box;flex:0 0 auto;width:25%}.g-col_size_4{box-sizing:border-box;flex:0 0 auto;width:33.33333333%}.g-col_size_5{box-sizing:border-box;flex:0 0 auto;width:41.66666667%}.g-col_size_6{box-sizing:border-box;flex:0 0 auto;width:50%}.g-col_size_7{box-sizing:border-box;flex:0 0 auto;width:58.33333333%}.g-col_size_8{box-sizing:border-box;flex:0 0 auto;width:66.66666667%}.g-col_size_9{box-sizing:border-box;flex:0 0 auto;width:75%}.g-col_size_10{box-sizing:border-box;flex:0 0 auto;width:83.33333333%}.g-col_size_11{box-sizing:border-box;flex:0 0 auto;width:91.66666667%}.g-col_size_12{box-sizing:border-box;flex:0 0 auto;width:100%}
|
|
212
212
|
|
|
213
|
-
/*# sourceMappingURL=vendor-
|
|
213
|
+
/*# sourceMappingURL=vendor-08162c203ed2ee3b.css.map*/
|