diff --git a/.github/workflows/analyze-dependents.yml b/.github/workflows/analyze-dependents.yml index e1f5d88bc5..793802254f 100644 --- a/.github/workflows/analyze-dependents.yml +++ b/.github/workflows/analyze-dependents.yml @@ -263,6 +263,7 @@ jobs: id: cpr uses: peter-evans/create-pull-request@v7 with: + token: ${{ secrets.requirements_bot_github_token }} commit-message: "docs: update dependent-usage.json" title: "docs: update dependent-usage.json" body: "Contains automated changes to the dependent-usage.json file, which provides the data for Paragon Usage Insights." @@ -273,10 +274,10 @@ jobs: uses: hmarr/auto-approve-action@v4 with: pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} - github-token: ${{ secrets.requirements_bot_github_token }} + github-token: ${{ secrets.GITHUB_TOKEN }} - name: Auto-merge pull request for dependent project usages uses: pascalgn/automerge-action@v0.16.4 env: - GITHUB_TOKEN: ${{ secrets.requirements_bot_github_token }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: squash MERGE_RETRY_SLEEP: 240000 diff --git a/package-lock.json b/package-lock.json index b4161d8188..0c5afc03c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14815,7 +14815,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001687", + "version": "1.0.30001696", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001696.tgz", + "integrity": "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==", "funding": [ { "type": "opencollective", @@ -14829,8 +14831,7 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ], - "license": "CC-BY-4.0" + ] }, "node_modules/capital-case": { "version": "1.0.4", diff --git a/www/src/pages/foundations/elevation.tsx b/www/src/pages/foundations/elevation.tsx index a9170576a6..0340b96652 100644 --- a/www/src/pages/foundations/elevation.tsx +++ b/www/src/pages/foundations/elevation.tsx @@ -395,14 +395,14 @@ export default function ElevationPage({ pageContext }) {
Variables are available with following pattern:
- {'$box-shadow-{direction}-{level}'}
+ {'var(--pgn-elevation-box-shadow-{direction}-{level})'}
For example:
- $box-shadow-right-2
+ var(--pgn-elevation-box-shadow-right-2)
- $box-shadow-up-3
+ var(--pgn-elevation-box-shadow-up-3)
{row.values.identifier}
;
}
+
+function PropertyCell({ row }) {
+ return {row.values.property}
;
+}
+
+function ValueCell({ row }) {
+ return {row.values.value}
;
+}
+
function MinWidthCell({ row }) {
if (row.values.identifier === 'xs') {
return (
@@ -45,6 +68,7 @@ function MinWidthCell({ row }) {
}
return {row.values.minWidth ? `${row.values.minWidth}px` : '-'}
;
}
+
function MaxWidthCell({ row }) {
return {row.values.maxWidth ? `${row.values.maxWidth}px` : '-'}
;
}
@@ -83,7 +107,8 @@ function Responsive({ pageContext }) {
>
To access or change the breakpoints in the scss use $grid-breakpoints
variable.
+ Media breakpoints in CSS are defined using the following variables. +
++ The structure of a breakpoint variable is: +
++ Explanation of the variable components: +
{'{width_type}'}
specifies the width type, either min for a minimum width
+ (inclusive) or max for a maximum width (inclusive).
+ {'{class_infix}'}
refers to the breakpoint name, such as sm
, md
,
+ or lg
.
+
+ Example for applying styles when the screen width is narrower than the md
breakpoint:
+
+ For applying styles when the screen width is wider than the md
breakpoint:
+