Skip to content

Commit

Permalink
Merge branch 'develop' into dependabot/npm_and_yarn/docs/braces-3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanton committed Jul 17, 2024
2 parents 27957bd + cac921b commit 358eba4
Show file tree
Hide file tree
Showing 49 changed files with 11,355 additions and 28,780 deletions.
1 change: 1 addition & 0 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
cache: 'npm'
- run: npm config set '//npm.fontawesome.com/:_authToken' "${{ secrets.FONTAWESOME_TOKEN }}"
- run: npm install
Expand Down
4 changes: 3 additions & 1 deletion app/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
$template = $twig->loadTemplate($_SERVER['PATH_INFO'] . '/index.html.twig');
}

// define('theme', 'projector');
// Show deprecations
// $deprecations = new \Twig\Util\DeprecationCollector($twig);
// print_r($deprecations->collectDir($templateDir));

print $template->render(array());
1 change: 1 addition & 0 deletions docs/docs/forms/date.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ You can configure this helper using the common helper options, the following opt
| ------ | ---- | ----------- |
| data-pulsar-datepicker-trigger | bool | If `true` (default), initialises the Pulsar Date Picker and adds the trigger button |
| data-pulsar-datepicker-trigger-label | string | The hidden accessible label for the date picker trigger button. `Show calendar` (default) |
| readonly | bool | Adds `readonly` attribute and uses a dashed outline to indicate lack of interaction |
| format | string | <p>Specify the date format to use, can be:</p><ul><li>`default` dd/mm/yyyy</li><li>`US` mm/dd/yyyy</li><li>`reverse` yyyy/mm/dd</li></ul> |

## Date format
Expand Down
10 changes: 9 additions & 1 deletion docs/docs/forms/password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,12 @@ Generates a password input field.

## Helper options

You can configure this helper using the common helper options.
You can configure this helper using the common helper options. The following options are specific to this helper.

| Option | Type | Description |
| ------ | ---- | ----------- |
| append | string | Text or markup to include after the input element |
| append_type | string | Use only when appending a button. button is the only valid value |
| prepend | string | Text or markup to include before the input element |
| prepend_type | string | Use only when prepending a button. button is the only valid value |
| readonly | bool | Adds `readonly` attribute and uses a dashed outline to indicate lack of interaction |
3 changes: 2 additions & 1 deletion docs/docs/forms/text.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ You can configure this helper using the common helper options. The following opt
| append | string | Text or markup to include after the input element |
| append_type | string | Use only when appending a button. button is the only valid value |
| prepend | string | Text or markup to include before the input element |
| prepend_type | string | Use only when prepending a button. button is the only valid value |
| prepend_type | string | Use only when prepending a button. button is the only valid value |
| readonly | bool | Adds `readonly` attribute and uses a dashed outline to indicate lack of interaction |
1 change: 1 addition & 0 deletions docs/docs/forms/textarea.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ You can configure this helper using the common helper options. The following opt

| Option | Type | Description |
| ------ | ---- | ----------- |
| readonly | bool | Adds `readonly` attribute and uses a dashed outline to indicate lack of interaction |
| rows | integer | The number of horizontal rows of text used to control the height of the input (default 2) |

## Rows
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/forms/time.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,5 @@ You can configure this helper using the common helper options. The following opt
| data-maxTime | string | The time that should appear last in the dropdown list. Can be used to limit the range of time options |
| data-minTime | string | The time that should appear first in the dropdown list |
| data-orientation | string | <p>By default the timepicker will be aligned to the bottom left of the input element, or aligned to the top left if there isn’t enough room below the input. Values can be:</p><ul><li>`l` (left (default))</li><li>`r` (right)</li><li>`t` (top)</li><li>`b` (bottom)</li></ul>Combine letters to move to corners, e.g. tr for top-right
| data-timeFormat | string | How times should be displayed in the list and input element. Uses PHP’s date() formatting syntax. Characters can be escaped with a preceeding double shash (e.g. `H\\hi`) (Default: `g:ia`) |
| data-timeFormat | string | How times should be displayed in the list and input element. Uses PHP’s date() formatting syntax. Characters can be escaped with a preceeding double shash (e.g. `H\\hi`) (Default: `g:ia`) |
| readonly | bool | Adds `readonly` attribute and uses a dashed outline to indicate lack of interaction |
Loading

0 comments on commit 358eba4

Please sign in to comment.