From c6e24b0eeca9781c78154a9db1f4e0a9ad4779d8 Mon Sep 17 00:00:00 2001 From: MI6-255 <90764648+MI6-255@users.noreply.github.com> Date: Mon, 12 Aug 2024 14:33:29 +0000 Subject: [PATCH] docs(root): added amending a commit guidance added amending a commit guidance to help contributors when they need to update their commits 1330 --- CONTRIBUTING.md | 38 ++ src/icds-pages-data.json | 846 +++++++++++++++++++-------------------- 2 files changed, 461 insertions(+), 423 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 154eaaa68..fe1e601d2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,6 +18,7 @@ Welcome and thank you for contributing to the [Intelligence Community Design Sys - [Accessibility](#accessibility) - [Style guide](#style-guide) - [Git commit](#git-commit) + - [Amending a commit](#amending-a-commit) - [Styling](#styling) - [Testing](#testing) @@ -153,6 +154,43 @@ Follow these steps when making a commit: 8. Provide a link to the issue by entering the reference e.g. `#123`. 9. When the editor opens up, check your commit message and press `Ctrl`+`x` to confirm. +### Amending a commit + +If you need to make changes to a commit (for example, after receiving comments on a PR), follow these steps: + +1. **If you're amending the most recent commit:** + - Stage your changes using `git add` and include the files you want to update. + - Run `git commit --amend --no-edit` to amend the most recent commit without changing the commit message. + - The Commitizen prompt will still appear as if you are making a new commit. Exit the prompt (usually by pressing Ctrl+C). + - Push the changes to the remote repository using: `git push --force`. + +2. **If you're amending an older commit:** + - Use `git rebase` to modify an older commit. For example, to modify commit `a1312407`, run: + ```sh + git rebase --interactive a1312407 + ``` + + - In the default editor, change `pick` to `edit` for the line mentioning `a1312407`. + + - Save the file and exit. Git will interpret and automatically execute the commands in the file, placing you in the state just after creating commit `a1312407`. + + - Amend the commit by making your changes and then running: + ```sh + git commit --all --amend --no-edit + ``` + + - The Commitizen prompt will still appear as if you are making a new commit. Exit the prompt (usually by pressing Ctrl+C). + + - Continue the rebase process by running: + ```sh + git rebase --continue + ``` + + - Push the changes to the remote repository using: + ```sh + git push --force + ``` + ### Styling - Avoid using inline css. diff --git a/src/icds-pages-data.json b/src/icds-pages-data.json index 6d13928a5..dea078bbd 100644 --- a/src/icds-pages-data.json +++ b/src/icds-pages-data.json @@ -26,8 +26,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/alt-text.mdx", "meta": { "relativePath": "accessibility/coding/alt-text.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1743, "formattedSize": "1.7 KB" } @@ -43,8 +43,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/aria.mdx", "meta": { "relativePath": "accessibility/coding/aria.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 3652, "formattedSize": "3.6 KB" } @@ -60,8 +60,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/css.mdx", "meta": { "relativePath": "accessibility/coding/css.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1389, "formattedSize": "1.4 KB" } @@ -77,8 +77,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/index.mdx", "meta": { "relativePath": "accessibility/coding/doctype.mdx", - "createdAt": "2024-04-24T06:58:26.703Z", - "lastModified": "2024-04-24T06:58:26.703Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1342, "formattedSize": "1.3 KB" } @@ -94,8 +94,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/document-structure.mdx", "meta": { "relativePath": "accessibility/coding/document-structure.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1833, "formattedSize": "1.8 KB" } @@ -111,8 +111,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/headings.mdx", "meta": { "relativePath": "accessibility/coding/headings.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1295, "formattedSize": "1.3 KB" } @@ -128,8 +128,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/index.mdx", "meta": { "relativePath": "accessibility/coding/index.mdx", - "createdAt": "2023-11-20T09:44:07.930Z", - "lastModified": "2023-11-20T09:44:07.930Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 5238, "formattedSize": "5.1 KB" } @@ -145,8 +145,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/semantic-html.mdx", "meta": { "relativePath": "accessibility/coding/semantic-html.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1918, "formattedSize": "1.9 KB" } @@ -162,8 +162,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/semantic-layout.mdx", "meta": { "relativePath": "accessibility/coding/semantic-layout.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1366, "formattedSize": "1.3 KB" } @@ -179,8 +179,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/tables.mdx", "meta": { "relativePath": "accessibility/coding/tables.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 2533, "formattedSize": "2.5 KB" } @@ -196,8 +196,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/coding/title.mdx", "meta": { "relativePath": "accessibility/coding/title.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1265, "formattedSize": "1.2 KB" } @@ -213,8 +213,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/definition.mdx", "meta": { "relativePath": "accessibility/definition.mdx", - "createdAt": "2024-06-25T13:07:39.008Z", - "lastModified": "2024-06-25T13:07:39.008Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 3197, "formattedSize": "3.1 KB" } @@ -230,8 +230,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/discussing.mdx", "meta": { "relativePath": "accessibility/discussing.mdx", - "createdAt": "2023-02-01T12:56:27.107Z", - "lastModified": "2023-02-01T12:56:27.107Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 2005, "formattedSize": "2.0 KB" } @@ -247,8 +247,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/accessibility-statements-guidance.mdx", "meta": { "relativePath": "accessibility/documenting/accessibility-statements-guidance.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 10683, "formattedSize": "10.4 KB" } @@ -264,8 +264,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/accessibility-statements.mdx", "meta": { "relativePath": "accessibility/documenting/accessibility-statements.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 2192, "formattedSize": "2.1 KB" } @@ -281,8 +281,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/conformance-reports.mdx", "meta": { "relativePath": "accessibility/documenting/conformance-report.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 4056, "formattedSize": "4.0 KB" } @@ -298,8 +298,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/index.mdx", "meta": { "relativePath": "accessibility/documenting/index.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1910, "formattedSize": "1.9 KB" } @@ -315,8 +315,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/documenting/when-to-create-and-update.mdx", "meta": { "relativePath": "accessibility/documenting/when-to-create-and-update.mdx", - "createdAt": "2022-11-23T07:59:05.261Z", - "lastModified": "2022-11-23T07:59:05.261Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 1691, "formattedSize": "1.7 KB" } @@ -332,8 +332,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/index.mdx", "meta": { "relativePath": "accessibility/index.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.137Z", "size": 2213, "formattedSize": "2.2 KB" } @@ -349,8 +349,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/introduction.mdx", "meta": { "relativePath": "accessibility/introduction.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 2280, "formattedSize": "2.2 KB" } @@ -366,8 +366,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/auditory.mdx", "meta": { "relativePath": "accessibility/needs/auditory.mdx", - "createdAt": "2023-11-20T09:44:07.934Z", - "lastModified": "2023-11-20T09:44:07.934Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3701, "formattedSize": "3.6 KB" } @@ -383,8 +383,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/index.mdx", "meta": { "relativePath": "accessibility/needs/index.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3431, "formattedSize": "3.4 KB" } @@ -400,8 +400,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/invisible.mdx", "meta": { "relativePath": "accessibility/needs/invisible.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 5222, "formattedSize": "5.1 KB" } @@ -417,8 +417,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/motor.mdx", "meta": { "relativePath": "accessibility/needs/motor.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4150, "formattedSize": "4.1 KB" } @@ -434,8 +434,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/neurodiversity.mdx", "meta": { "relativePath": "accessibility/needs/neurodiversity.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 9827, "formattedSize": "9.6 KB" } @@ -451,8 +451,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/needs/visual.mdx", "meta": { "relativePath": "accessibility/needs/visual.mdx", - "createdAt": "2024-07-02T11:02:39.116Z", - "lastModified": "2024-07-02T11:02:39.116Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4461, "formattedSize": "4.4 KB" } @@ -469,8 +469,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/requirement/index.mdx", "meta": { "relativePath": "accessibility/requirement/index.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3658, "formattedSize": "3.6 KB" } @@ -487,8 +487,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/requirement/meeting-the-policy.mdx", "meta": { "relativePath": "accessibility/requirement/meeting-the-policy.mdx", - "createdAt": "2024-06-25T13:07:39.012Z", - "lastModified": "2024-06-25T13:07:39.012Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4124, "formattedSize": "4.0 KB" } @@ -504,8 +504,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/requirement/subtitles-transcripts-captions.mdx", "meta": { "relativePath": "accessibility/requirement/subtitles-transcripts-captions.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4590, "formattedSize": "4.5 KB" } @@ -521,8 +521,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/requirement/wcag.mdx", "meta": { "relativePath": "accessibility/requirement/wcag.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3859, "formattedSize": "3.8 KB" } @@ -538,8 +538,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/testing/assistive-tech-testing.mdx", "meta": { "relativePath": "accessibility/testing/assistive-tech-testing.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 8622, "formattedSize": "8.4 KB" } @@ -555,8 +555,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/testing/automated-testing-limitation.mdx", "meta": { "relativePath": "accessibility/testing/automated-testing-limitation.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3718, "formattedSize": "3.6 KB" } @@ -572,8 +572,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/testing/automated-testing.mdx", "meta": { "relativePath": "accessibility/testing/automated-testing.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 7087, "formattedSize": "6.9 KB" } @@ -589,8 +589,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/testing/index.mdx", "meta": { "relativePath": "accessibility/testing/index.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3100, "formattedSize": "3.0 KB" } @@ -606,8 +606,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/accessibility/testing/manual-testing.mdx", "meta": { "relativePath": "accessibility/testing/manual-testing.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4498, "formattedSize": "4.4 KB" } @@ -623,8 +623,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/community/contribute-criteria.mdx?at=develop", "meta": { "relativePath": "community/contribute-criteria.mdx", - "createdAt": "2024-04-18T13:58:49.253Z", - "lastModified": "2024-04-18T13:58:49.253Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 2845, "formattedSize": "2.8 KB" } @@ -640,8 +640,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/community/contribute.mdx?at=develop", "meta": { "relativePath": "community/contribute.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3993, "formattedSize": "3.9 KB" } @@ -657,8 +657,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/community/glossary-of-terms.mdx?at=develop", "meta": { "relativePath": "community/glossary-of-terms.mdx", - "createdAt": "2024-04-02T06:51:20.700Z", - "lastModified": "2024-04-02T06:51:20.700Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 11629, "formattedSize": "11.4 KB" } @@ -673,8 +673,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/community/index.mdx", "meta": { "relativePath": "community/index.mdx", - "createdAt": "2024-05-09T13:51:14.282Z", - "lastModified": "2024-05-09T13:51:14.282Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 904, "formattedSize": "904 Bytes" } @@ -690,8 +690,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/community/roadmap.mdx", "meta": { "relativePath": "community/roadmap.mdx", - "createdAt": "2024-05-09T13:51:14.282Z", - "lastModified": "2024-05-09T13:51:14.282Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 1951, "formattedSize": "1.9 KB" } @@ -721,8 +721,8 @@ ], "meta": { "relativePath": "components/accordion/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 3260, "formattedSize": "3.2 KB" } @@ -752,8 +752,8 @@ ], "meta": { "relativePath": "components/accordion/code.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 12314, "formattedSize": "12.0 KB" } @@ -784,8 +784,8 @@ ], "meta": { "relativePath": "components/accordion/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 9845, "formattedSize": "9.6 KB" } @@ -815,8 +815,8 @@ ], "meta": { "relativePath": "components/alerts/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 2230, "formattedSize": "2.2 KB" } @@ -846,8 +846,8 @@ ], "meta": { "relativePath": "components/alerts/code.mdx", - "createdAt": "2024-06-25T13:07:39.016Z", - "lastModified": "2024-06-25T13:07:39.016Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 9736, "formattedSize": "9.5 KB" } @@ -878,8 +878,8 @@ ], "meta": { "relativePath": "components/alerts/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.141Z", "size": 4625, "formattedSize": "4.5 KB" } @@ -909,8 +909,8 @@ ], "meta": { "relativePath": "components/back-to-top/accessibility.mdx", - "createdAt": "2024-07-02T11:02:39.116Z", - "lastModified": "2024-07-02T11:02:39.116Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 3061, "formattedSize": "3.0 KB" } @@ -940,8 +940,8 @@ ], "meta": { "relativePath": "components/back-to-top/code.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 1619, "formattedSize": "1.6 KB" } @@ -972,8 +972,8 @@ ], "meta": { "relativePath": "components/back-to-top/guidance.mdx", - "createdAt": "2024-07-02T11:02:39.120Z", - "lastModified": "2024-07-02T11:02:39.120Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 5405, "formattedSize": "5.3 KB" } @@ -1003,8 +1003,8 @@ ], "meta": { "relativePath": "components/badge/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.253Z", - "lastModified": "2024-04-18T13:58:49.253Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 2448, "formattedSize": "2.4 KB" } @@ -1034,8 +1034,8 @@ ], "meta": { "relativePath": "components/badge/code.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 22485, "formattedSize": "22.0 KB" } @@ -1066,8 +1066,8 @@ ], "meta": { "relativePath": "components/badge/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.145Z", "size": 12679, "formattedSize": "12.4 KB" } @@ -1097,8 +1097,8 @@ ], "meta": { "relativePath": "components/breadcrumbs/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.157Z", "size": 2389, "formattedSize": "2.3 KB" } @@ -1128,8 +1128,8 @@ ], "meta": { "relativePath": "components/breadcrumbs/code.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.157Z", "size": 11522, "formattedSize": "11.3 KB" } @@ -1160,8 +1160,8 @@ ], "meta": { "relativePath": "components/breadcrumbs/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.157Z", "size": 5532, "formattedSize": "5.4 KB" } @@ -1191,8 +1191,8 @@ ], "meta": { "relativePath": "components/buttons/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.169Z", "size": 1688, "formattedSize": "1.6 KB" } @@ -1222,8 +1222,8 @@ ], "meta": { "relativePath": "components/buttons/code.mdx", - "createdAt": "2024-06-25T13:07:39.020Z", - "lastModified": "2024-06-25T13:07:39.020Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.169Z", "size": 24880, "formattedSize": "24.3 KB" } @@ -1254,18 +1254,18 @@ ], "meta": { "relativePath": "components/buttons/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.024Z", - "lastModified": "2024-06-25T13:07:39.024Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.169Z", "size": 15266, "formattedSize": "14.9 KB" } }, { "id": "components__card-horizontal__codex", - "contents": "\nimport { IcCardHorizontal } from \"@ukic/canary-react\";\nimport { IcTypography } from \"@ukic/react\";\nimport { useRef } from \"react\";\nimport { mdiImage, mdiCakeVariantOutline } from \"@mdi/js\";\n\n## Component demo\n\nexport const snippetsDefault = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n## Horizontal card details\n\n\n\n## Variants\n\n### Heading only\n\nexport const snippetsHeadingOnly = [\n {\n technology: \"Web component\",\n snippets: {\n short: ``,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: ``,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n\n\n### With icon\n\nexport const snippetsWithIcon = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n\n\n### With message \n\nexport const snippetsWithMessage = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n\n\n### With image \n\nexport const snippetsWithImage = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Small\n\nexport const snippetsSmall = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Large\n\nexport const snippetsLarge = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Extra large\n\nexport const snippetsXL = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Clickable\n\nexport const snippetsClickable = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Clickable link\n\nexport const snippetsClickableHref = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Wrapped by link\n\nexport const snippetsWrapped = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Disabled\n\nexport const snippetsDisabled = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Slotted heading and message\n\nexport const snippetsSlottedHeading = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n Americano order\n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n Americano order\n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n Americano order\n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n", + "contents": "\nimport { IcCardHorizontal } from \"@ukic/canary-react\";\nimport { IcTypography } from \"@ukic/react\";\n\n## Component demo\n\nexport const snippetsDefault = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n## Horizontal card details\n\n\n\n## Variants\n\n### Heading only\n\nexport const snippetsHeadingOnly = [\n {\n technology: \"Web component\",\n snippets: {\n short: ``,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: ``,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n\n\n### With icon\n\nexport const snippetsWithIcon = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n\n\n### With message\n\nexport const snippetsWithMessage = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n\n\n### With image\n\nexport const snippetsWithImage = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Small\n\nexport const snippetsSmall = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Large\n\nexport const snippetsLarge = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Extra large\n\nexport const snippetsXL = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Clickable\n\nexport const snippetsClickable = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Clickable link\n\nexport const snippetsClickableHref = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Wrapped by link\n\nexport const snippetsWrapped = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n e.preventDefault()}\n style={{ textDecoration: \"none\", color: \"var(--ic-architechtural-black)\" }}\n aria-label=\"Americano order card\"\n >\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Disabled\n\nexport const snippetsDisabled = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n### Slotted heading and message\n\nexport const snippetsSlottedHeading = [\n {\n technology: \"Web component\",\n snippets: {\n short: `\n Americano order\n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: `{shortCode}`,\n },\n },\n {\n technology: \"React\",\n snippets: {\n short: `\n Americano order\n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n`,\n long: [\n {\n language: \"Typescript\",\n snippet: `{shortCode}`,\n },\n {\n language: \"Javascript\",\n snippet: `{shortCode}`,\n },\n ],\n },\n },\n];\n\n\n \n \n Americano order\n \n \n Extras: Double espresso shot and oat milk.\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n", "path": "/components/horizontal-card/code", "navPriority": 7, - "date": "2024-07-26", + "date": "2024-07-29", "title": "Card Horizontal", "status": "CANARY", "subTitle": "Horizontal cards are containers used to display structured information or link to new information.", @@ -1281,15 +1281,15 @@ ], "meta": { "relativePath": "components/card-horizontal/code.mdx", - "createdAt": "2024-07-29T10:14:32.412Z", - "lastModified": "2024-07-29T10:14:32.412Z", - "size": 53487, - "formattedSize": "52.2 KB" + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.173Z", + "size": 54139, + "formattedSize": "52.9 KB" } }, { "id": "components__card-horizontal__guidancex", - "contents": "\nimport { IcAlert, IcLink } from \"@ukic/react\";\nimport { IcCardHorizontal } from \"@ukic/canary-react\";\n\n\n\n## Canary components\n\nCanary components are unstable components that are released for testing purposes.\n\nWe value any feedback from users willing to try them in their applications.\n\nThese components should not be used in production apps without understanding the risk that changes may occur in order to fix bugs or improve functionality.\n\nFor more information on canary components, read our approach to [releases and versions](/get-started/releases-versions).\n\n

\n Additional details on the props and events for this component can be found in\n the ICDS{\" \"}\n \n Canary Web Components\n {\" \"}\n and{\" \"}\n \n Canary React\n {\" \"}\n storybooks.\n

\n\n## Component demo\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n", + "contents": "\nimport { IcAlert, IcLink } from \"@ukic/react\";\nimport { IcCardHorizontal } from \"@ukic/canary-react\";\n\n\n\n## Canary components\n\nCanary components are unstable components that are released for testing purposes.\n\nWe value any feedback from users willing to try them in their applications.\n\nThese components should not be used in production apps without understanding the risk that changes may occur in order to fix bugs or improve functionality.\n\nFor more information on canary components, read our approach to [releases and versions](/get-started/releases-versions).\n\n

\n Additional details on the props and events for this component can be found in\n the ICDS{\" \"}\n \n Canary Web Components\n {\" \"}\n and{\" \"}\n \n Canary React\n {\" \"}\n storybooks.\n

\n\n## Component demo\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n", "path": "/components/horizontal-card", "navPriority": 7, "date": "2024-07-26", @@ -1308,9 +1308,9 @@ ], "meta": { "relativePath": "components/card-horizontal/guidance.mdx", - "createdAt": "2024-07-29T10:03:27.154Z", - "lastModified": "2024-07-29T10:03:27.154Z", - "size": 3073, + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.173Z", + "size": 3074, "formattedSize": "3.0 KB" } }, @@ -1339,8 +1339,8 @@ ], "meta": { "relativePath": "components/cards/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.173Z", "size": 3439, "formattedSize": "3.4 KB" } @@ -1370,8 +1370,8 @@ ], "meta": { "relativePath": "components/cards/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.173Z", "size": 56785, "formattedSize": "55.5 KB" } @@ -1402,8 +1402,8 @@ ], "meta": { "relativePath": "components/cards/guidance.mdx", - "createdAt": "2024-07-26T10:59:30.328Z", - "lastModified": "2024-07-26T10:59:30.328Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.173Z", "size": 10600, "formattedSize": "10.4 KB" } @@ -1433,8 +1433,8 @@ ], "meta": { "relativePath": "components/checkboxes/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.177Z", "size": 2745, "formattedSize": "2.7 KB" } @@ -1464,8 +1464,8 @@ ], "meta": { "relativePath": "components/checkboxes/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.177Z", "size": 18091, "formattedSize": "17.7 KB" } @@ -1496,8 +1496,8 @@ ], "meta": { "relativePath": "components/checkboxes/guidance.mdx", - "createdAt": "2024-07-26T09:34:14.031Z", - "lastModified": "2024-07-26T09:34:14.031Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.177Z", "size": 8556, "formattedSize": "8.4 KB" } @@ -1527,8 +1527,8 @@ ], "meta": { "relativePath": "components/chips/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.181Z", "size": 2777, "formattedSize": "2.7 KB" } @@ -1558,8 +1558,8 @@ ], "meta": { "relativePath": "components/chips/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.181Z", "size": 10153, "formattedSize": "9.9 KB" } @@ -1590,8 +1590,8 @@ ], "meta": { "relativePath": "components/chips/guidance.mdx", - "createdAt": "2024-07-26T09:34:18.122Z", - "lastModified": "2024-07-26T09:34:18.122Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.181Z", "size": 6633, "formattedSize": "6.5 KB" } @@ -1621,8 +1621,8 @@ ], "meta": { "relativePath": "components/classification-banner/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 1188, "formattedSize": "1.2 KB" } @@ -1652,8 +1652,8 @@ ], "meta": { "relativePath": "components/classification-banner/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 3208, "formattedSize": "3.1 KB" } @@ -1684,8 +1684,8 @@ ], "meta": { "relativePath": "components/classification-banner/guidance.mdx", - "createdAt": "2024-07-26T09:34:22.238Z", - "lastModified": "2024-07-26T09:34:22.238Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 2020, "formattedSize": "2.0 KB" } @@ -1715,8 +1715,8 @@ ], "meta": { "relativePath": "components/data-entity/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 2202, "formattedSize": "2.2 KB" } @@ -1746,8 +1746,8 @@ ], "meta": { "relativePath": "components/data-entity/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 17951, "formattedSize": "17.5 KB" } @@ -1778,8 +1778,8 @@ ], "meta": { "relativePath": "components/data-entity/guidance.mdx", - "createdAt": "2024-07-26T09:34:26.878Z", - "lastModified": "2024-07-26T09:34:26.878Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.185Z", "size": 4762, "formattedSize": "4.7 KB" } @@ -1804,8 +1804,8 @@ ], "meta": { "relativePath": "components/data-table/code.mdx", - "createdAt": "2024-06-25T13:07:39.028Z", - "lastModified": "2024-06-25T13:07:39.028Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 72101, "formattedSize": "70.4 KB" } @@ -1831,8 +1831,8 @@ ], "meta": { "relativePath": "components/data-table/guidance.mdx", - "createdAt": "2024-07-26T09:34:32.237Z", - "lastModified": "2024-07-26T09:34:32.237Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 1723, "formattedSize": "1.7 KB" } @@ -1861,8 +1861,8 @@ ], "meta": { "relativePath": "components/date-input/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 3605, "formattedSize": "3.5 KB" } @@ -1891,8 +1891,8 @@ ], "meta": { "relativePath": "components/date-input/code.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 17301, "formattedSize": "16.9 KB" } @@ -1922,8 +1922,8 @@ ], "meta": { "relativePath": "components/date-input/guidance.mdx", - "createdAt": "2024-07-26T09:34:36.957Z", - "lastModified": "2024-07-26T09:34:36.957Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 8275, "formattedSize": "8.1 KB" } @@ -1952,8 +1952,8 @@ ], "meta": { "relativePath": "components/date-picker/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 3243, "formattedSize": "3.2 KB" } @@ -1982,8 +1982,8 @@ ], "meta": { "relativePath": "components/date-picker/code.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 30548, "formattedSize": "29.8 KB" } @@ -2013,8 +2013,8 @@ ], "meta": { "relativePath": "components/date-picker/guidance.mdx", - "createdAt": "2024-07-26T09:34:40.381Z", - "lastModified": "2024-07-26T09:34:40.381Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.189Z", "size": 5222, "formattedSize": "5.1 KB" } @@ -2044,8 +2044,8 @@ ], "meta": { "relativePath": "components/dialog/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 4110, "formattedSize": "4.0 KB" } @@ -2075,8 +2075,8 @@ ], "meta": { "relativePath": "components/dialog/code.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 46750, "formattedSize": "45.7 KB" } @@ -2107,8 +2107,8 @@ ], "meta": { "relativePath": "components/dialog/guidance.mdx", - "createdAt": "2024-07-26T09:37:01.679Z", - "lastModified": "2024-07-26T09:37:01.679Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 8608, "formattedSize": "8.4 KB" } @@ -2138,8 +2138,8 @@ ], "meta": { "relativePath": "components/empty-state/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 1536, "formattedSize": "1.5 KB" } @@ -2169,8 +2169,8 @@ ], "meta": { "relativePath": "components/empty-state/code.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 21654, "formattedSize": "21.1 KB" } @@ -2201,8 +2201,8 @@ ], "meta": { "relativePath": "components/empty-state/guidance.mdx", - "createdAt": "2024-07-26T09:37:04.987Z", - "lastModified": "2024-07-26T09:37:04.987Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.193Z", "size": 10935, "formattedSize": "10.7 KB" } @@ -2232,8 +2232,8 @@ ], "meta": { "relativePath": "components/footer/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.205Z", "size": 2011, "formattedSize": "2.0 KB" } @@ -2263,8 +2263,8 @@ ], "meta": { "relativePath": "components/footer/code.mdx", - "createdAt": "2024-06-25T13:07:39.032Z", - "lastModified": "2024-06-25T13:07:39.032Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.205Z", "size": 19260, "formattedSize": "18.8 KB" } @@ -2295,8 +2295,8 @@ ], "meta": { "relativePath": "components/footer/guidance.mdx", - "createdAt": "2024-07-26T09:37:08.977Z", - "lastModified": "2024-07-26T09:37:08.977Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.205Z", "size": 7787, "formattedSize": "7.6 KB" } @@ -2326,8 +2326,8 @@ ], "meta": { "relativePath": "components/hero/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.044Z", - "lastModified": "2024-06-25T13:07:39.044Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.213Z", "size": 2014, "formattedSize": "2.0 KB" } @@ -2357,8 +2357,8 @@ ], "meta": { "relativePath": "components/hero/code.mdx", - "createdAt": "2024-06-25T13:07:39.044Z", - "lastModified": "2024-06-25T13:07:39.044Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.213Z", "size": 17442, "formattedSize": "17.0 KB" } @@ -2389,8 +2389,8 @@ ], "meta": { "relativePath": "components/hero/guidance.mdx", - "createdAt": "2024-07-26T09:37:12.872Z", - "lastModified": "2024-07-26T09:37:12.872Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.213Z", "size": 8373, "formattedSize": "8.2 KB" } @@ -2405,8 +2405,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/components/index.mdx", "meta": { "relativePath": "components/index.mdx", - "createdAt": "2024-06-25T13:07:39.044Z", - "lastModified": "2024-06-25T13:07:39.044Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.221Z", "size": 597, "formattedSize": "597 Bytes" } @@ -2436,8 +2436,8 @@ ], "meta": { "relativePath": "components/links/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.044Z", - "lastModified": "2024-06-25T13:07:39.044Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.221Z", "size": 1851, "formattedSize": "1.8 KB" } @@ -2467,8 +2467,8 @@ ], "meta": { "relativePath": "components/links/code.mdx", - "createdAt": "2024-06-25T13:07:39.044Z", - "lastModified": "2024-06-25T13:07:39.044Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.221Z", "size": 6798, "formattedSize": "6.6 KB" } @@ -2499,8 +2499,8 @@ ], "meta": { "relativePath": "components/links/guidance.mdx", - "createdAt": "2024-07-26T09:37:16.891Z", - "lastModified": "2024-07-26T09:37:16.891Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.221Z", "size": 7204, "formattedSize": "7.0 KB" } @@ -2530,8 +2530,8 @@ ], "meta": { "relativePath": "components/loading-indicators/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.048Z", - "lastModified": "2024-06-25T13:07:39.048Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 2469, "formattedSize": "2.4 KB" } @@ -2561,8 +2561,8 @@ ], "meta": { "relativePath": "components/loading-indicators/code.mdx", - "createdAt": "2024-06-25T13:07:39.048Z", - "lastModified": "2024-06-25T13:07:39.048Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 7783, "formattedSize": "7.6 KB" } @@ -2593,8 +2593,8 @@ ], "meta": { "relativePath": "components/loading-indicators/guidance.mdx", - "createdAt": "2024-07-26T09:37:20.970Z", - "lastModified": "2024-07-26T09:37:20.970Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 6944, "formattedSize": "6.8 KB" } @@ -2619,8 +2619,8 @@ ], "meta": { "relativePath": "components/multi-select/code.mdx", - "createdAt": "2024-06-25T13:07:39.048Z", - "lastModified": "2024-06-25T13:07:39.048Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 44849, "formattedSize": "43.8 KB" } @@ -2646,8 +2646,8 @@ ], "meta": { "relativePath": "components/multi-select/guidance.mdx", - "createdAt": "2024-07-26T09:37:27.329Z", - "lastModified": "2024-07-26T09:37:27.329Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 1950, "formattedSize": "1.9 KB" } @@ -2677,8 +2677,8 @@ ], "meta": { "relativePath": "components/page-header/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 2399, "formattedSize": "2.3 KB" } @@ -2708,8 +2708,8 @@ ], "meta": { "relativePath": "components/page-header/code.mdx", - "createdAt": "2024-06-25T13:07:39.048Z", - "lastModified": "2024-06-25T13:07:39.048Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 19079, "formattedSize": "18.6 KB" } @@ -2740,8 +2740,8 @@ ], "meta": { "relativePath": "components/page-header/guidance.mdx", - "createdAt": "2024-07-26T09:37:32.752Z", - "lastModified": "2024-07-26T09:37:32.752Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.225Z", "size": 9062, "formattedSize": "8.8 KB" } @@ -2771,8 +2771,8 @@ ], "meta": { "relativePath": "components/pagination/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.229Z", "size": 3216, "formattedSize": "3.1 KB" } @@ -2802,15 +2802,15 @@ ], "meta": { "relativePath": "components/pagination/code.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.229Z", "size": 7202, "formattedSize": "7.0 KB" } }, { "id": "components__pagination__guidancex", - "contents": "\nimport { IcPagination, IcAlert } from \"@ukic/react\";\nimport paginationFig1 from \"./images/fig-1-use-pagination-to-split-content-across-pages.png\";\nimport paginationFig2 from \"./images/fig-2-complex-simple-carousel-pagination.png\";\nimport paginationFig3 from \"./images/fig-3-data-table-with-pagination-bar.png\";\nimport paginationFig4 from \"./images/fig-4-dont-use-carousel-pagination-for-large-numbers-of-pages.png\";\nimport paginationFig5 from \"./images/fig-5-use-colour-variants.png\";\nimport paginationFig6 from \"./images/fig-6-place-pagination-at-bottom.png\";\nimport paginationFig7 from \"./images/fig-7-place-pagination-at-top-and-bottom.png\";\nimport paginationFig8 from \"./images/fig-8-overlaid-carousel-pagination.png\";\nimport paginationFig9 from \"./images/fig-9-setting-adjacent-and-boundary-items.png\";\nimport paginationFig10 from \"./images/fig-10-pagination-bars-with-different-elements.png\";\n\n## Introduction\n\nPagination enables large amounts of content to be split across multiple pages so that it is more manageable and doesn’t require overly long page lengths.\n\n\n \n\n\n## Component variants\n\n\n\nThere are three types of pagination that can be used to control pages of content:\n\n- Complex pagination: Contains buttons for navigating to next, previous, first and last pages as well as individual page buttons for adjacent and boundary pages.\n- Simple pagination: Contains only buttons for navigating to next, previous, first and last pages. Displays the current page as a label.\n- Carousel pagination: Uses a dot button to indicate each page and shows all pages at the same time.\n\nUse the pagination components within a pagination bar to provide other navigation controls including:\n\n- Items per page selector: Switch the number of content items visible per page.\n- Item count: Display the range of currently visible items as well as the total number of items.\n- Go to page shortcut: Allow quick access to any page number by typing the page number and hitting ‘go’.\n\n## When to use\n\nUse pagination when you have a large, known amount of content that can be split across pages. Order the content so the most relevant appears on the first page. Pagination works best for lists of content such as search results and data items.\n\nTry to create an understandable order to the content split across pages. This way it is easier to understand what content might appear on a later page.\n\nFor example, if content is ordered alphabetically, then it becomes obvious that entries beginning with a ‘Z’ would appear on the last few pages.\n\n\n\nUse pagination for content when there are other elements on the page that can be scrolled to. This means all elements on the page can easily be navigated to without scrolling through a large amount of content.\n\nPagination provides full control over the content; it allows navigation to any page of content quickly and gives an indication of the total amount of content available.\n\nUse complex pagination to allow people to easily navigate between pages without having to move sequentially through content. This allows people to quickly skip around between pages to search for specific content.\n\nUse simple pagination to navigate sequentially between pages using the ‘next’ and ‘previous’ buttons.\n\nUse carousel pagination for small numbers of pages where all pages can be shown as carousel items in the pagination component.\n\n\n \n\n\nUse a pagination bar to provide more navigation functionality through particularly complex data sets. For example, use pagination bars with data tables to navigate large data sets easily.\n\n\n\n## When not to use\n\nAvoid using pagination to split up linear content such as articles or blogs. Scrolling down the page makes it easier to consume this content.\n\nAvoid using pagination when the size of the content is unknown or if it frequently changes. This causes the number of pages to change frequently and means it is hard to create a ‘last page’ option.\n\nUse an infinite scrolling pattern when navigating content should be explorative, or when there is a near infinite amount of content. For example, newsfeeds and comments threads can be near endless and infinite scrolling allows exploration by simply continuing to scroll.\n\nAvoid using simple pagination when it is important to be able to move between specific pages; complex pagination is better for this as it shows more adjacent pages, allowing one click navigation.\n\nDon’t use carousel pagination for large numbers of pages. Carousel pagination shows a dot button for every page at the same time.\n\n\n\n## Interaction behaviour\n\nPagination components fire an event when a new page is selected. Use this to trigger the switch of pages in the app.\n\nIn a pagination bar, when the number of items per page is changed, then the pagination component and the item count updates to show the new number of pages. Make sure to update the pagination component if anything else on the page changes the number of pages. For example, setting a filter may reduce the number of pages required to display the filtered results.\n\n## Colour\n\nUse the default, dark and light appearance pagination components when placing them on different coloured backgrounds to ensure the correct contrast ratios are met.\n\n\n\n## Layout and placement\n\nPlace the pagination component so that it is obvious what it controls. Match the width of a pagination bar to the width of the page.\n\nTry to place pagination at the bottom of the page it controls, as this encourages the user to read through the page before moving to the next. However, placing pagination at the top of the page is still a valid option.\n\n\n\nFor large page containers that require scrolling, use two pagination components at the top and bottom of the page container to provide easy access to navigation when at either the top or bottom of the page.\n\n\n\nPlace carousel pagination on or around the carousel content. This can be overlaid, but take care to make sure that contrast requirements are met.\n\n\n\n## Content\n\nWhen using complex pagination, specify the number of adjacent pages to display next to the current page. Also specify the number of boundary pages to display at the start and end of the page range.\n\n\n\nSelect which elements within a pagination bar you want to display. Each element in the pagination bar can be toggled on or off except for the pagination component itself, which can be switched to use complex, simple or carousel pagination.\n\n\n\nBy default, pages are referred to as pages in the pagination component. Override the pagination label to change this. For example, change the term pages to ‘sheets’ if it makes more sense for a data table implementation.\n", + "contents": "\nimport { IcPagination } from \"@ukic/react\";\nimport paginationFig1 from \"./images/fig-1-use-pagination-to-split-content-across-pages.png\";\nimport paginationFig2 from \"./images/fig-2-complex-simple-pagination.png\";\nimport paginationFig3 from \"./images/fig-3-data-table-with-pagination-bar.png\";\nimport paginationFig4 from \"./images/fig-4-use-colour-variants.png\";\nimport paginationFig5 from \"./images/fig-5-place-pagination-at-bottom.png\";\nimport paginationFig6 from \"./images/fig-6-place-pagination-at-top-and-bottom.png\";\nimport paginationFig7 from \"./images/fig-7-setting-adjacent-and-boundary-items.png\";\nimport paginationFig8 from \"./images/fig-8-pagination-bars-with-different-elements.png\";\n\n## Introduction\n\nPagination enables large amounts of content to be split across multiple pages so that it is more manageable and doesn’t require overly long page lengths.\n\n\n \n\n\n## Component variants\n\nThere are two types of pagination that can be used to control pages of content:\n\n- Complex pagination: Contains buttons for navigating to next, previous, first and last pages as well as individual page buttons for adjacent and boundary pages.\n- Simple pagination: Contains only buttons for navigating to next, previous, first and last pages. Displays the current page as a label.\n\nUse the pagination components within a pagination bar to provide other navigation controls including:\n\n- Items per page selector: Switch the number of content items visible per page.\n- Item count: Display the range of currently visible items as well as the total number of items.\n- Go to page shortcut: Allow quick access to any page number by typing the page number and hitting ‘go’.\n\n## When to use\n\nUse pagination when you have a large, known amount of content that can be split across pages. Order the content so the most relevant appears on the first page. Pagination works best for lists of content such as search results and data items.\n\nTry to create an understandable order to the content split across pages. This way it is easier to understand what content might appear on a later page.\n\nFor example, if content is ordered alphabetically, then it becomes obvious that entries beginning with a ‘Z’ would appear on the last few pages.\n\n\n\nUse pagination for content when there are other elements on the page that can be scrolled to. This means all elements on the page can easily be navigated to without scrolling through a large amount of content.\n\nPagination provides full control over the content; it allows navigation to any page of content quickly and gives an indication of the total amount of content available.\n\nUse complex pagination to allow people to easily navigate between pages without having to move sequentially through content. This allows people to quickly skip around between pages to search for specific content.\n\nUse simple pagination to navigate sequentially between pages using the ‘next’ and ‘previous’ buttons.\n\n\n \n\n\nUse a pagination bar to provide more navigation functionality through particularly complex data sets. For example, use pagination bars with data tables to navigate large data sets easily.\n\n\n\n## When not to use\n\nAvoid using pagination to split up linear content such as articles or blogs. Scrolling down the page makes it easier to consume this content.\n\nAvoid using pagination when the size of the content is unknown or if it frequently changes. This causes the number of pages to change frequently and means it is hard to create a ‘last page’ option.\n\nUse an infinite scrolling pattern when navigating content should be explorative, or when there is a near infinite amount of content. For example, newsfeeds and comments threads can be near endless and infinite scrolling allows exploration by simply continuing to scroll.\n\nAvoid using simple pagination when it is important to be able to move between specific pages; complex pagination is better for this as it shows more adjacent pages, allowing one click navigation.\n\n## Interaction behaviour\n\nPagination components fire an event when a new page is selected. Use this to trigger the switch of pages in the app.\n\nIn a pagination bar, when the number of items per page is changed, then the pagination component and the item count updates to show the new number of pages. Make sure to update the pagination component if anything else on the page changes the number of pages. For example, setting a filter may reduce the number of pages required to display the filtered results.\n\n## Colour\n\nUse the default, dark and light appearance pagination components when placing them on different coloured backgrounds to ensure the correct contrast ratios are met.\n\n\n\n## Layout and placement\n\nPlace the pagination component so that it is obvious what it controls. Match the width of a pagination bar to the width of the page.\n\nTry to place pagination at the bottom of the page it controls, as this encourages the user to read through the page before moving to the next. However, placing pagination at the top of the page is still a valid option.\n\n\n\nFor large page containers that require scrolling, use two pagination components at the top and bottom of the page container to provide easy access to navigation when at either the top or bottom of the page.\n\n\n\n## Content\n\nWhen using complex pagination, specify the number of adjacent pages to display next to the current page. Also specify the number of boundary pages to display at the start and end of the page range.\n\n\n\nSelect which elements within a pagination bar you want to display. Each element in the pagination bar can be toggled on or off except for the pagination component itself, which can be switched to use complex or simple pagination.\n\n\n\nBy default, pages are referred to as pages in the pagination component. Override the pagination label to change this. For example, change the term pages to ‘sheets’ if it makes more sense for a data table implementation.\n", "path": "/components/pagination", "navPriority": 24, "date": "2023-05-05", @@ -2834,10 +2834,10 @@ ], "meta": { "relativePath": "components/pagination/guidance.mdx", - "createdAt": "2024-07-26T09:37:37.771Z", - "lastModified": "2024-07-26T09:37:37.771Z", - "size": 11148, - "formattedSize": "10.9 KB" + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.229Z", + "size": 9583, + "formattedSize": "9.4 KB" } }, { @@ -2865,8 +2865,8 @@ ], "meta": { "relativePath": "components/popover-menu/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.233Z", "size": 3359, "formattedSize": "3.3 KB" } @@ -2896,8 +2896,8 @@ ], "meta": { "relativePath": "components/popover-menu/code.mdx", - "createdAt": "2024-07-12T11:14:47.443Z", - "lastModified": "2024-07-12T11:14:47.443Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.233Z", "size": 14638, "formattedSize": "14.3 KB" } @@ -2928,8 +2928,8 @@ ], "meta": { "relativePath": "components/popover-menu/guidance.mdx", - "createdAt": "2024-07-26T09:37:42.454Z", - "lastModified": "2024-07-26T09:37:42.454Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.233Z", "size": 11283, "formattedSize": "11.0 KB" } @@ -2959,8 +2959,8 @@ ], "meta": { "relativePath": "components/radio/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.241Z", "size": 3539, "formattedSize": "3.5 KB" } @@ -2990,8 +2990,8 @@ ], "meta": { "relativePath": "components/radio/code.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.241Z", "size": 11070, "formattedSize": "10.8 KB" } @@ -3022,8 +3022,8 @@ ], "meta": { "relativePath": "components/radio/guidance.mdx", - "createdAt": "2024-07-26T09:37:46.329Z", - "lastModified": "2024-07-26T09:37:46.329Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.241Z", "size": 8267, "formattedSize": "8.1 KB" } @@ -3053,8 +3053,8 @@ ], "meta": { "relativePath": "components/search-bar/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 3997, "formattedSize": "3.9 KB" } @@ -3084,8 +3084,8 @@ ], "meta": { "relativePath": "components/search-bar/code.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 23254, "formattedSize": "22.7 KB" } @@ -3116,8 +3116,8 @@ ], "meta": { "relativePath": "components/search-bar/guidance.mdx", - "createdAt": "2024-07-26T09:39:47.606Z", - "lastModified": "2024-07-26T09:39:47.606Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 5835, "formattedSize": "5.7 KB" } @@ -3147,8 +3147,8 @@ ], "meta": { "relativePath": "components/section-container/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 1920, "formattedSize": "1.9 KB" } @@ -3178,8 +3178,8 @@ ], "meta": { "relativePath": "components/section-container/code.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 9524, "formattedSize": "9.3 KB" } @@ -3210,8 +3210,8 @@ ], "meta": { "relativePath": "components/section-container/guidance.mdx", - "createdAt": "2024-07-26T09:39:51.600Z", - "lastModified": "2024-07-26T09:39:51.600Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.245Z", "size": 5587, "formattedSize": "5.5 KB" } @@ -3241,8 +3241,8 @@ ], "meta": { "relativePath": "components/select/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 2736, "formattedSize": "2.7 KB" } @@ -3272,8 +3272,8 @@ ], "meta": { "relativePath": "components/select/code.mdx", - "createdAt": "2024-07-24T08:10:25.605Z", - "lastModified": "2024-07-24T08:10:25.605Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 49470, "formattedSize": "48.3 KB" } @@ -3304,8 +3304,8 @@ ], "meta": { "relativePath": "components/select/guidance.mdx", - "createdAt": "2024-07-26T09:40:00.764Z", - "lastModified": "2024-07-26T09:40:00.764Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 7563, "formattedSize": "7.4 KB" } @@ -3335,8 +3335,8 @@ ], "meta": { "relativePath": "components/side-nav/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.257Z", - "lastModified": "2024-04-18T13:58:49.257Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 2967, "formattedSize": "2.9 KB" } @@ -3366,8 +3366,8 @@ ], "meta": { "relativePath": "components/side-nav/code.mdx", - "createdAt": "2024-06-25T13:07:39.052Z", - "lastModified": "2024-06-25T13:07:39.052Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 68691, "formattedSize": "67.1 KB" } @@ -3398,8 +3398,8 @@ ], "meta": { "relativePath": "components/side-nav/guidance.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.249Z", "size": 12180, "formattedSize": "11.9 KB" } @@ -3429,8 +3429,8 @@ ], "meta": { "relativePath": "components/skeleton/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.261Z", - "lastModified": "2024-04-18T13:58:49.261Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 2797, "formattedSize": "2.7 KB" } @@ -3460,8 +3460,8 @@ ], "meta": { "relativePath": "components/skeleton/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 12649, "formattedSize": "12.4 KB" } @@ -3492,8 +3492,8 @@ ], "meta": { "relativePath": "components/skeleton/guidance.mdx", - "createdAt": "2024-07-26T09:40:04.014Z", - "lastModified": "2024-07-26T09:40:04.014Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 4677, "formattedSize": "4.6 KB" } @@ -3523,8 +3523,8 @@ ], "meta": { "relativePath": "components/status-tags/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.261Z", - "lastModified": "2024-04-18T13:58:49.261Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 1948, "formattedSize": "1.9 KB" } @@ -3554,8 +3554,8 @@ ], "meta": { "relativePath": "components/status-tags/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 6867, "formattedSize": "6.7 KB" } @@ -3586,8 +3586,8 @@ ], "meta": { "relativePath": "components/status-tags/guidance.mdx", - "createdAt": "2024-07-26T09:40:07.395Z", - "lastModified": "2024-07-26T09:40:07.395Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.253Z", "size": 6864, "formattedSize": "6.7 KB" } @@ -3617,8 +3617,8 @@ ], "meta": { "relativePath": "components/stepper/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 1730, "formattedSize": "1.7 KB" } @@ -3648,8 +3648,8 @@ ], "meta": { "relativePath": "components/stepper/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 8348, "formattedSize": "8.2 KB" } @@ -3680,8 +3680,8 @@ ], "meta": { "relativePath": "components/stepper/guidance.mdx", - "createdAt": "2024-07-26T09:40:11.512Z", - "lastModified": "2024-07-26T09:40:11.512Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 7479, "formattedSize": "7.3 KB" } @@ -3711,8 +3711,8 @@ ], "meta": { "relativePath": "components/switch/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 3160, "formattedSize": "3.1 KB" } @@ -3742,8 +3742,8 @@ ], "meta": { "relativePath": "components/switch/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 5870, "formattedSize": "5.7 KB" } @@ -3774,8 +3774,8 @@ ], "meta": { "relativePath": "components/switch/guidance.mdx", - "createdAt": "2024-07-26T09:40:14.766Z", - "lastModified": "2024-07-26T09:40:14.766Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.257Z", "size": 6218, "formattedSize": "6.1 KB" } @@ -3805,8 +3805,8 @@ ], "meta": { "relativePath": "components/tabs/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.261Z", - "lastModified": "2024-04-18T13:58:49.261Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.261Z", "size": 3352, "formattedSize": "3.3 KB" } @@ -3836,8 +3836,8 @@ ], "meta": { "relativePath": "components/tabs/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.261Z", "size": 16816, "formattedSize": "16.4 KB" } @@ -3868,8 +3868,8 @@ ], "meta": { "relativePath": "components/tabs/guidance.mdx", - "createdAt": "2024-07-26T09:40:18.563Z", - "lastModified": "2024-07-26T09:40:18.563Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.261Z", "size": 7075, "formattedSize": "6.9 KB" } @@ -3899,8 +3899,8 @@ ], "meta": { "relativePath": "components/text-field/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.261Z", - "lastModified": "2024-04-18T13:58:49.261Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 2300, "formattedSize": "2.2 KB" } @@ -3930,8 +3930,8 @@ ], "meta": { "relativePath": "components/text-field/code.mdx", - "createdAt": "2024-06-25T13:07:39.056Z", - "lastModified": "2024-06-25T13:07:39.056Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 16709, "formattedSize": "16.3 KB" } @@ -3962,8 +3962,8 @@ ], "meta": { "relativePath": "components/text-field/guidance.mdx", - "createdAt": "2024-07-26T09:40:22.563Z", - "lastModified": "2024-07-26T09:40:22.563Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 6757, "formattedSize": "6.6 KB" } @@ -3993,8 +3993,8 @@ ], "meta": { "relativePath": "components/toasts/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.060Z", - "lastModified": "2024-06-25T13:07:39.060Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 3405, "formattedSize": "3.3 KB" } @@ -4024,8 +4024,8 @@ ], "meta": { "relativePath": "components/toasts/code.mdx", - "createdAt": "2024-06-25T13:07:39.060Z", - "lastModified": "2024-06-25T13:07:39.060Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 28682, "formattedSize": "28.0 KB" } @@ -4056,8 +4056,8 @@ ], "meta": { "relativePath": "components/toasts/guidance.mdx", - "createdAt": "2024-07-26T09:40:25.779Z", - "lastModified": "2024-07-26T09:40:25.779Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.265Z", "size": 7221, "formattedSize": "7.1 KB" } @@ -4087,8 +4087,8 @@ ], "meta": { "relativePath": "components/toggle-buttons/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.060Z", - "lastModified": "2024-06-25T13:07:39.060Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 3720, "formattedSize": "3.6 KB" } @@ -4118,8 +4118,8 @@ ], "meta": { "relativePath": "components/toggle-buttons/code.mdx", - "createdAt": "2024-06-25T13:07:39.060Z", - "lastModified": "2024-06-25T13:07:39.060Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 30156, "formattedSize": "29.4 KB" } @@ -4150,8 +4150,8 @@ ], "meta": { "relativePath": "components/toggle-buttons/guidance.mdx", - "createdAt": "2024-07-26T09:40:29.067Z", - "lastModified": "2024-07-26T09:40:29.067Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 11032, "formattedSize": "10.8 KB" } @@ -4181,8 +4181,8 @@ ], "meta": { "relativePath": "components/tooltips/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 2061, "formattedSize": "2.0 KB" } @@ -4212,8 +4212,8 @@ ], "meta": { "relativePath": "components/tooltips/code.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 12153, "formattedSize": "11.9 KB" } @@ -4244,8 +4244,8 @@ ], "meta": { "relativePath": "components/tooltips/guidance.mdx", - "createdAt": "2024-07-26T09:40:32.854Z", - "lastModified": "2024-07-26T09:40:32.854Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 5539, "formattedSize": "5.4 KB" } @@ -4275,8 +4275,8 @@ ], "meta": { "relativePath": "components/top-nav/accessibility.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 3004, "formattedSize": "2.9 KB" } @@ -4306,8 +4306,8 @@ ], "meta": { "relativePath": "components/top-nav/code.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 41136, "formattedSize": "40.2 KB" } @@ -4338,8 +4338,8 @@ ], "meta": { "relativePath": "components/top-nav/guidance.mdx", - "createdAt": "2024-07-26T09:40:37.630Z", - "lastModified": "2024-07-26T09:40:37.630Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.273Z", "size": 11240, "formattedSize": "11.0 KB" } @@ -4370,8 +4370,8 @@ ], "meta": { "relativePath": "components/typography/accessibility.mdx", - "createdAt": "2024-04-18T13:58:49.261Z", - "lastModified": "2024-04-18T13:58:49.261Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1497, "formattedSize": "1.5 KB" } @@ -4402,8 +4402,8 @@ ], "meta": { "relativePath": "components/typography/code.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 10522, "formattedSize": "10.3 KB" } @@ -4435,8 +4435,8 @@ ], "meta": { "relativePath": "components/typography/guidance.mdx", - "createdAt": "2024-07-26T09:40:41.286Z", - "lastModified": "2024-07-26T09:40:41.286Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2180, "formattedSize": "2.1 KB" } @@ -4451,8 +4451,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/a-design-system.mdx", "meta": { "relativePath": "get-started/a-design-system.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2801, "formattedSize": "2.7 KB" } @@ -4468,8 +4468,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/angular.mdx", "meta": { "relativePath": "get-started/angular.mdx", - "createdAt": "2024-04-24T06:58:26.707Z", - "lastModified": "2024-04-24T06:58:26.707Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2886, "formattedSize": "2.8 KB" } @@ -4485,8 +4485,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/custom-theme.mdx", "meta": { "relativePath": "get-started/custom-theme.mdx", - "createdAt": "2024-02-07T07:43:50.463Z", - "lastModified": "2024-02-07T07:43:50.463Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1247, "formattedSize": "1.2 KB" } @@ -4503,8 +4503,8 @@ "hidden": false, "meta": { "relativePath": "get-started/design-principles.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1681, "formattedSize": "1.6 KB" } @@ -4520,8 +4520,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/figma.mdx", "meta": { "relativePath": "get-started/figma.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 3411, "formattedSize": "3.3 KB" } @@ -4537,8 +4537,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/gatsby.mdx", "meta": { "relativePath": "get-started/gatsby.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2622, "formattedSize": "2.6 KB" } @@ -4554,8 +4554,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/index.mdx", "meta": { "relativePath": "get-started/index.mdx", - "createdAt": "2022-11-23T07:59:05.453Z", - "lastModified": "2022-11-23T07:59:05.453Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1645, "formattedSize": "1.6 KB" } @@ -4571,8 +4571,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/install-components.mdx", "meta": { "relativePath": "get-started/install-components.mdx", - "createdAt": "2024-06-25T13:07:39.064Z", - "lastModified": "2024-06-25T13:07:39.064Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2145, "formattedSize": "2.1 KB" } @@ -4588,8 +4588,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/nextJS.mdx", "meta": { "relativePath": "get-started/nextjs.mdx", - "createdAt": "2024-07-24T08:10:40.547Z", - "lastModified": "2024-07-24T08:10:40.547Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1557, "formattedSize": "1.5 KB" } @@ -4605,8 +4605,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/react.mdx", "meta": { "relativePath": "get-started/react.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 3042, "formattedSize": "3.0 KB" } @@ -4621,8 +4621,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/releases-versioning.mdx", "meta": { "relativePath": "get-started/releases-versioning.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 5437, "formattedSize": "5.3 KB" } @@ -4638,8 +4638,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/svelte.mdx", "meta": { "relativePath": "get-started/svelte.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 1919, "formattedSize": "1.9 KB" } @@ -4655,8 +4655,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/test-components.mdx", "meta": { "relativePath": "get-started/test-components.mdx", - "createdAt": "2024-06-25T13:07:39.148Z", - "lastModified": "2024-06-25T13:07:39.148Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2267, "formattedSize": "2.2 KB" } @@ -4672,8 +4672,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/testing-with-cypress.mdx", "meta": { "relativePath": "get-started/testing-with-cypress.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 5399, "formattedSize": "5.3 KB" } @@ -4689,8 +4689,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/testing-with-jest.mdx", "meta": { "relativePath": "get-started/testing-with-jest.mdx", - "createdAt": "2023-12-18T14:50:56.403Z", - "lastModified": "2023-12-18T14:50:56.403Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 4829, "formattedSize": "4.7 KB" } @@ -4706,8 +4706,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/testing-with-react-testing-library.mdx", "meta": { "relativePath": "get-started/testing-with-react-testing-library.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 8271, "formattedSize": "8.1 KB" } @@ -4723,8 +4723,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/vue.mdx", "meta": { "relativePath": "get-started/vue.mdx", - "createdAt": "2024-04-24T06:58:26.707Z", - "lastModified": "2024-04-24T06:58:26.707Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.277Z", "size": 2743, "formattedSize": "2.7 KB" } @@ -4740,8 +4740,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/get-started/web-components.mdx", "meta": { "relativePath": "get-started/web-components.mdx", - "createdAt": "2024-04-24T06:58:26.707Z", - "lastModified": "2024-04-24T06:58:26.707Z", + "createdAt": "2024-08-12T14:24:36.777Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 3509, "formattedSize": "3.4 KB" } @@ -4755,8 +4755,8 @@ "subTitle": "Accessibility Statement for the Intelligence Community Design System.", "meta": { "relativePath": "icds/accessibility-statement.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 5555, "formattedSize": "5.4 KB" } @@ -4770,8 +4770,8 @@ "subTitle": "Cookies Policy for the Intelligence Community Design System.", "meta": { "relativePath": "icds/cookies-policy.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 5488, "formattedSize": "5.4 KB" } @@ -4786,8 +4786,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/icds/index.mdx", "meta": { "relativePath": "icds/index.mdx", - "createdAt": "2023-11-20T09:44:08.562Z", - "lastModified": "2023-11-20T09:44:08.562Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 653, "formattedSize": "653 Bytes" } @@ -4801,8 +4801,8 @@ "subTitle": "Privacy Policy for the Intelligence Community Design System.", "meta": { "relativePath": "icds/privacy-policy.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 3753, "formattedSize": "3.7 KB" } @@ -4818,8 +4818,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/deprecated-patterns/app-errors.mdx", "meta": { "relativePath": "patterns/app-errors.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 3932, "formattedSize": "3.8 KB" } @@ -4835,8 +4835,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/deprecated-pattern/form-layout.mdx", "meta": { "relativePath": "patterns/form-layout.mdx", - "createdAt": "2024-06-25T13:07:39.068Z", - "lastModified": "2024-06-25T13:07:39.068Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 3197, "formattedSize": "3.1 KB" } @@ -4852,8 +4852,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/deprecated-patterns/form-validation.mdx", "meta": { "relativePath": "patterns/form-validation.mdx", - "createdAt": "2024-04-18T13:58:49.265Z", - "lastModified": "2024-04-18T13:58:49.265Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 2283, "formattedSize": "2.2 KB" } @@ -4869,8 +4869,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/index.mdx", "meta": { "relativePath": "patterns/index.mdx", - "createdAt": "2024-04-18T13:58:49.265Z", - "lastModified": "2024-04-18T13:58:49.265Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 955, "formattedSize": "955 Bytes" } @@ -4886,8 +4886,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/navigation-patterns.mdx", "meta": { "relativePath": "patterns/navigation-patterns.mdx", - "createdAt": "2024-04-18T13:58:49.265Z", - "lastModified": "2024-04-18T13:58:49.265Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 931, "formattedSize": "931 Bytes" } @@ -4903,8 +4903,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/navigation-patterns/side-navigation-layout.mdx", "meta": { "relativePath": "patterns/side-navigation-layout.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 83778, "formattedSize": "81.8 KB" } @@ -4920,8 +4920,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/deprecated-patterns/success.mdx", "meta": { "relativePath": "patterns/success.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 2984, "formattedSize": "2.9 KB" } @@ -4937,8 +4937,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/patterns/navigation-patterns/top-navigation-layout.mdx", "meta": { "relativePath": "patterns/top-navigation-layout.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 71978, "formattedSize": "70.3 KB" } @@ -4953,8 +4953,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/colour.mdx", "meta": { "relativePath": "styles/colour.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.281Z", "size": 4352, "formattedSize": "4.3 KB" } @@ -4969,8 +4969,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/content-style.mdx", "meta": { "relativePath": "styles/content-style.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.285Z", "size": 2018, "formattedSize": "2.0 KB" } @@ -4985,8 +4985,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/elevation.mdx", "meta": { "relativePath": "styles/elevation.mdx", - "createdAt": "2023-11-20T09:44:08.570Z", - "lastModified": "2023-11-20T09:44:08.570Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.285Z", "size": 7068, "formattedSize": "6.9 KB" } @@ -5001,8 +5001,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/focus-indicator.mdx", "meta": { "relativePath": "styles/focus-indicator.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.285Z", "size": 3026, "formattedSize": "3.0 KB" } @@ -5018,8 +5018,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/grammar.mdx", "meta": { "relativePath": "styles/grammar.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.285Z", "size": 3335, "formattedSize": "3.3 KB" } @@ -5034,8 +5034,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/icons.mdx", "meta": { "relativePath": "styles/icons.mdx", - "createdAt": "2023-11-20T09:44:08.570Z", - "lastModified": "2023-11-20T09:44:08.570Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.285Z", "size": 1720, "formattedSize": "1.7 KB" } @@ -5051,8 +5051,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/inclusive-language.mdx", "meta": { "relativePath": "styles/inclusive-language.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 5769, "formattedSize": "5.6 KB" } @@ -5068,8 +5068,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/index.mdx", "meta": { "relativePath": "styles/index.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 927, "formattedSize": "927 Bytes" } @@ -5085,8 +5085,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/layout-spacing.mdx", "meta": { "relativePath": "styles/layout-spacing.mdx", - "createdAt": "2024-06-25T13:07:39.072Z", - "lastModified": "2024-06-25T13:07:39.072Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 10020, "formattedSize": "9.8 KB" } @@ -5102,8 +5102,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/links.mdx", "meta": { "relativePath": "styles/links.mdx", - "createdAt": "2024-04-24T06:58:26.707Z", - "lastModified": "2024-04-24T06:58:26.707Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 1260, "formattedSize": "1.2 KB" } @@ -5118,8 +5118,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/motion.mdx", "meta": { "relativePath": "styles/motion.mdx", - "createdAt": "2024-06-25T13:07:39.076Z", - "lastModified": "2024-06-25T13:07:39.076Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 5939, "formattedSize": "5.8 KB" } @@ -5135,8 +5135,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/numbers-dates-time.mdx", "meta": { "relativePath": "styles/numbers-dates-time.mdx", - "createdAt": "2024-06-25T13:07:39.076Z", - "lastModified": "2024-06-25T13:07:39.076Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 2592, "formattedSize": "2.5 KB" } @@ -5152,8 +5152,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/principles.mdx", "meta": { "relativePath": "styles/principles.mdx", - "createdAt": "2024-04-24T06:58:26.707Z", - "lastModified": "2024-04-24T06:58:26.707Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 1456, "formattedSize": "1.4 KB" } @@ -5169,8 +5169,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/templates.mdx", "meta": { "relativePath": "styles/templates.mdx", - "createdAt": "2024-06-25T13:07:39.076Z", - "lastModified": "2024-06-25T13:07:39.076Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 4079, "formattedSize": "4.0 KB" } @@ -5185,8 +5185,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/typography.mdx", "meta": { "relativePath": "styles/typography.mdx", - "createdAt": "2024-06-25T13:07:39.076Z", - "lastModified": "2024-06-25T13:07:39.076Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 1851, "formattedSize": "1.8 KB" } @@ -5202,8 +5202,8 @@ "contribute": "https://github.com/mi6/ic-design-system/tree/main/src/content/structured/styles/voice-and-tone.mdx", "meta": { "relativePath": "styles/voice-and-tone.mdx", - "createdAt": "2024-06-25T13:07:39.076Z", - "lastModified": "2024-06-25T13:07:39.076Z", + "createdAt": "2024-08-12T14:24:36.781Z", + "lastModified": "2024-08-12T14:24:36.297Z", "size": 3749, "formattedSize": "3.7 KB" }