diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fff16c..aa2f745 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,10 @@ updates: directory: "/" schedule: interval: monthly + + # Group all dependabot version update PRs into one + groups: + github-actions: + applies-to: version-updates + patterns: + - "*" diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 3c29350..e9d2fe6 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -3,10 +3,9 @@ name: Node.js CI on: - push: - branches: [ "main" ] pull_request: - branches: [ "main" ] + push: + branches-ignore: "dependabot/**" jobs: build: @@ -18,14 +17,14 @@ jobs: node-version: [18.x, 20.x] steps: - - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - name: Install xmllint - run: sudo apt-get install -y libxml2-utils - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm test + - name: Checkout + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Install xmllint + run: sudo apt-get install -y libxml2-utils + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm test diff --git a/entries/dialog.xml b/entries/dialog.xml index 1feb364..d1fec48 100644 --- a/entries/dialog.xml +++ b/entries/dialog.xml @@ -196,6 +196,12 @@ Specifies the title of the dialog. If the value is null, the title attribute on the dialog source element will be used. + + + Specifies the heading level that wraps the title of the dialog. For a value between 1 to 6, h1 to h6 is returned. Any other value, including the default 0, uses a span instead. + + + The width of the dialog, in pixels. diff --git a/package-lock.json b/package-lock.json index 70c95ed..7e62095 100644 --- a/package-lock.json +++ b/package-lock.json @@ -934,11 +934,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": {
null
title
Specifies the heading level that wraps the title of the dialog. For a value between 1 to 6, h1 to h6 is returned. Any other value, including the default 0, uses a span instead.
1
6
h1
h6
0
span