diff --git a/CHANGELOG.md b/CHANGELOG.md index 45cfd74d99..fb39efb5ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 6.19.0 (December 19, 2024) + +### Components + +#### Added + +- Added: Tooltip Vue component now supports `wrapper`property. + ## 6.18.0 (December 18, 2024) ### Components diff --git a/lib/chi-custom-elements/docs.json b/lib/chi-custom-elements/docs.json index b9ff812fcc..9972bfe337 100644 --- a/lib/chi-custom-elements/docs.json +++ b/lib/chi-custom-elements/docs.json @@ -1,5 +1,5 @@ { - "timestamp": "2024-12-16T11:07:21", + "timestamp": "2024-12-19T09:41:53", "compiler": { "name": "@stencil/core", "version": "4.22.3", @@ -729,9 +729,15 @@ "styles": [], "slots": [], "parts": [], - "dependents": [], + "dependents": [ + "chi-tags" + ], "dependencies": [], - "dependencyGraph": {} + "dependencyGraph": { + "chi-tags": [ + "chi-badge" + ] + } }, { "filePath": "src/components/brand/brand.tsx", @@ -1116,7 +1122,8 @@ "chi-copy-text", "chi-dropdown", "chi-label", - "chi-popover" + "chi-popover", + "chi-tags" ], "dependencies": [ "chi-icon" @@ -1145,6 +1152,9 @@ ], "chi-popover": [ "chi-button" + ], + "chi-tags": [ + "chi-button" ] } }, @@ -9754,6 +9764,106 @@ ] } }, + { + "filePath": "src/components/tags/tags.tsx", + "encapsulation": "none", + "tag": "chi-tags", + "docs": "", + "docsTags": [], + "usage": {}, + "props": [ + { + "name": "placeholder", + "type": "string", + "complexType": { + "original": "string", + "resolved": "string", + "references": {} + }, + "mutable": false, + "attr": "placeholder", + "reflectToAttr": false, + "docs": "To define placeholder of Text input", + "docsTags": [], + "default": "''", + "values": [ + { + "type": "string" + } + ], + "optional": false, + "required": false + }, + { + "name": "tags", + "type": "Tag[]", + "complexType": { + "original": "Tag[]", + "resolved": "Tag[]", + "references": { + "Tag": { + "location": "import", + "path": "../../constants/types", + "id": "src/constants/types.ts::Tag" + } + } + }, + "mutable": false, + "reflectToAttr": false, + "docs": "To add tags", + "docsTags": [], + "default": "[]", + "values": [ + { + "type": "Tag[]" + } + ], + "optional": false, + "required": false + } + ], + "methods": [], + "events": [ + { + "event": "chiChange", + "detail": "Tag[]", + "bubbles": true, + "complexType": { + "original": "Tag[]", + "resolved": "Tag[]", + "references": { + "Tag": { + "location": "import", + "path": "../../constants/types", + "id": "src/constants/types.ts::Tag" + } + } + }, + "cancelable": true, + "composed": true, + "docs": "Triggered when the user selects or deselects an option", + "docsTags": [] + } + ], + "listeners": [], + "styles": [], + "slots": [], + "parts": [], + "dependents": [], + "dependencies": [ + "chi-badge", + "chi-button" + ], + "dependencyGraph": { + "chi-tags": [ + "chi-badge", + "chi-button" + ], + "chi-button": [ + "chi-icon" + ] + } + }, { "filePath": "src/components/text-input/text-input.tsx", "encapsulation": "scoped", @@ -11856,6 +11966,11 @@ "docstring": "", "path": "src/constants/size.ts" }, + "src/constants/types.ts::Tag": { + "declaration": "export interface Tag {\n name: string;\n}", + "docstring": "", + "path": "src/constants/types.ts" + }, "src/constants/constants.ts::TextInputTypes": { "declaration": "\"number\" | \"time\" | \"text\" | \"datetime\" | \"date\" | \"datetime-local\" | \"email\" | \"month\" | \"password\" | \"search\" | \"tel\" | \"url\" | \"week\"", "docstring": "", diff --git a/package.json b/package.json index 77a48c915f..bbec5cda0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@centurylink/chi", - "version": "6.18.0", + "version": "6.19.0", "description": "Chi is Lumen's design system for building consistent digital products and experiences.", "license": "MIT", "main": "bin/chi.js", diff --git a/src/boilerplates/stencil/chi-stencil-boilerplate/src/index.html b/src/boilerplates/stencil/chi-stencil-boilerplate/src/index.html index 1ad2599c7f..77bd992d4d 100644 --- a/src/boilerplates/stencil/chi-stencil-boilerplate/src/index.html +++ b/src/boilerplates/stencil/chi-stencil-boilerplate/src/index.html @@ -14,24 +14,24 @@ - + - + diff --git a/src/documentation/constants/configs.ts b/src/documentation/constants/configs.ts index 72162b2ca0..e596917ca0 100644 --- a/src/documentation/constants/configs.ts +++ b/src/documentation/constants/configs.ts @@ -1,2 +1,2 @@ export const DEFAULT_THEME = 'lumen'; -export const CHI_VERSION = '6.18.0'; +export const CHI_VERSION = '6.19.0'; diff --git a/src/documentation/constants/constants.ts b/src/documentation/constants/constants.ts index fde375ea92..1daa380a62 100644 --- a/src/documentation/constants/constants.ts +++ b/src/documentation/constants/constants.ts @@ -394,6 +394,7 @@ export const NAVIGATION_FOUNDATIONS = [ ]; export const CHI_VISIBLE_VERSION = [ + '6.19.0', '6.18.0', '6.17.0', '6.16.0', diff --git a/src/website/assets/scripts/globalConfigs.js b/src/website/assets/scripts/globalConfigs.js index 5dbb1610b0..1dcd2a46d7 100644 --- a/src/website/assets/scripts/globalConfigs.js +++ b/src/website/assets/scripts/globalConfigs.js @@ -1 +1 @@ -window.chiCurrentVersion="6.18.0"; \ No newline at end of file +window.chiCurrentVersion="6.19.0"; \ No newline at end of file diff --git a/src/website/layouts/default.pug b/src/website/layouts/default.pug index 3671853241..abfea2075d 100644 --- a/src/website/layouts/default.pug +++ b/src/website/layouts/default.pug @@ -35,7 +35,7 @@ html.chi(lang="en") const pageURL = window.location.href; if (pageURL.includes('latest')) { - const redirectionURL = pageURL.split('latest').join('6.18.0'); + const redirectionURL = pageURL.split('latest').join('6.19.0'); window.location.href = redirectionURL; } diff --git a/src/website/layouts/partials/header.pug b/src/website/layouts/partials/header.pug index 2b295bab7d..5f06a250c6 100644 --- a/src/website/layouts/partials/header.pug +++ b/src/website/layouts/partials/header.pug @@ -250,9 +250,10 @@ header.chi-header.docs-header.-z--20 #docsearch.-chi-search .chi-header__end .chi-dropdown - button.chi-button.-flat.-px--1.chi-dropdown__trigger.-animate(data-position='bottom-end', id='version-dropdown', aria-label="Toggle Chi version") v6.18.0 + button.chi-button.-flat.-px--1.chi-dropdown__trigger.-animate(data-position='bottom-end', id='version-dropdown', aria-label="Toggle Chi version") v6.19.0 .chi-dropdown__menu(style='width:10rem;')#versionDropdown - a.chi-dropdown__menu-item.-active(href='https://lib.lumen.com/chi/6.18.0') v6.18.0 + a.chi-dropdown__menu-item.-active(href='https://lib.lumen.com/chi/6.19.0') v6.19.0 + a.chi-dropdown__menu-item(href='https://lib.lumen.com/chi/6.18.0') v6.18.0 a.chi-dropdown__menu-item(href='https://lib.lumen.com/chi/6.17.0') v6.17.0 a.chi-dropdown__menu-item(href='https://lib.lumen.com/chi/6.16.0') v6.16.0 a.chi-dropdown__menu-item(href='https://lib.lumen.com/chi/6.15.0') v6.15.0 diff --git a/src/website/layouts/partials/sriDoc.pug b/src/website/layouts/partials/sriDoc.pug index 253ee3386a..b92cfbd650 100644 --- a/src/website/layouts/partials/sriDoc.pug +++ b/src/website/layouts/partials/sriDoc.pug @@ -15,7 +15,7 @@ if name === 'css-lumen' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/chi.css + | https://lib.lumen.com/chi/6.19.0/chi.css span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -48,7 +48,7 @@ if name === 'css-centurylink' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/chi-centurylink.css + | https://lib.lumen.com/chi/6.19.0/chi-centurylink.css span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -81,7 +81,7 @@ if name === 'css-portal' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/chi-portal.css + | https://lib.lumen.com/chi/6.19.0/chi-portal.css span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -108,7 +108,7 @@ if name === 'js' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/js/chi.js + | https://lib.lumen.com/chi/6.19.0/js/chi.js span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -153,7 +153,7 @@ if name === 'favicon-lumen' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/assets/themes/lumen/images/favicon.svg + | https://lib.lumen.com/chi/6.19.0/assets/themes/lumen/images/favicon.svg span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -182,7 +182,7 @@ if name === 'favicon-lumen' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/assets/themes/lumen/images/favicon.ico + | https://lib.lumen.com/chi/6.19.0/assets/themes/lumen/images/favicon.ico span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -221,7 +221,7 @@ if name === 'favicon-centurylink' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/assets/themes/centurylink/images/favicon.svg + | https://lib.lumen.com/chi/6.19.0/assets/themes/centurylink/images/favicon.svg span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -250,7 +250,7 @@ if name === 'favicon-centurylink' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/assets/themes/centurylink/images/favicon.ico + | https://lib.lumen.com/chi/6.19.0/assets/themes/centurylink/images/favicon.ico span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -283,7 +283,7 @@ if name === 'web-components' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/js/ce/ux-chi-ce/ux-chi-ce.esm.js + | https://lib.lumen.com/chi/6.19.0/js/ce/ux-chi-ce/ux-chi-ce.esm.js span.token.punctuation " span.token.attr-name integrity span.token.attr-value @@ -317,7 +317,7 @@ if name === 'web-components' span.token.attr-value span.token.punctuation.attr-equals = span.token.punctuation " - | https://lib.lumen.com/chi/6.18.0/js/ce/ux-chi-ce/ux-chi-ce.js + | https://lib.lumen.com/chi/6.19.0/js/ce/ux-chi-ce/ux-chi-ce.js span.token.punctuation " span.token.attr-name integrity span.token.attr-value diff --git a/src/website/layouts/partials/titlebar.pug b/src/website/layouts/partials/titlebar.pug index c0414e62e0..94d8ab4235 100644 --- a/src/website/layouts/partials/titlebar.pug +++ b/src/website/layouts/partials/titlebar.pug @@ -15,7 +15,7 @@ if introduction h2.docs-titlebar__description=introductionSubtitle .docs-titlebar__buttons a.chi-button.-primary.-lg.-uppercase.-px--4.-mb--2.-mb-sm--0(href='../getting-started/installation') Install Chi - a.chi-button.-dark.-outline.-lg.-uppercase.-px--4.-ml-sm--2.-mb--2.-mb-sm--0(href='../getting-started/whats-new') See What's New In v6.18.0 + a.chi-button.-dark.-outline.-lg.-uppercase.-px--4.-ml-sm--2.-mb--2.-mb-sm--0(href='../getting-started/whats-new') See What's New In v6.19.0 else .chi-grid__container h1.docs-titlebar__title=title diff --git a/src/website/views/components/button/_accessibility.pug b/src/website/views/components/button/_accessibility.pug index dad2f90d5e..f0ec06ed0b 100644 --- a/src/website/views/components/button/_accessibility.pug +++ b/src/website/views/components/button/_accessibility.pug @@ -16,7 +16,7 @@ table.chi-table td Enter,Space td Activates the button p.-text - | For comprehensive details on keyboard support for buttons, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for buttons, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -85,7 +85,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/date-picker/_accessibility.pug b/src/website/views/components/date-picker/_accessibility.pug index d214080aec..12b42094df 100644 --- a/src/website/views/components/date-picker/_accessibility.pug +++ b/src/website/views/components/date-picker/_accessibility.pug @@ -33,7 +33,7 @@ table.chi-table p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -81,7 +81,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/checkbox/_accessibility.pug b/src/website/views/components/forms/checkbox/_accessibility.pug index 22f7d9d8d2..108aaa2818 100644 --- a/src/website/views/components/forms/checkbox/_accessibility.pug +++ b/src/website/views/components/forms/checkbox/_accessibility.pug @@ -16,7 +16,7 @@ table.chi-table td Space td Toggles checkbox between checked and unchecked states p.-text - | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -84,7 +84,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/number-input/_accessibility.pug b/src/website/views/components/forms/number-input/_accessibility.pug index 13e5c5e81a..76b7852cd7 100644 --- a/src/website/views/components/forms/number-input/_accessibility.pug +++ b/src/website/views/components/forms/number-input/_accessibility.pug @@ -23,7 +23,7 @@ table.chi-table td Submits the entered value. p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -74,7 +74,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/radio-button/_accessibility.pug b/src/website/views/components/forms/radio-button/_accessibility.pug index 3866f4d476..741b95d6e1 100644 --- a/src/website/views/components/forms/radio-button/_accessibility.pug +++ b/src/website/views/components/forms/radio-button/_accessibility.pug @@ -16,7 +16,7 @@ table.chi-table td Space td Toggles the selection state of the radio button between checked and unchecked p.-text - | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -81,7 +81,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/select/_accessibility.pug b/src/website/views/components/forms/select/_accessibility.pug index 202ee8798a..d3ea03d6bc 100644 --- a/src/website/views/components/forms/select/_accessibility.pug +++ b/src/website/views/components/forms/select/_accessibility.pug @@ -27,7 +27,7 @@ table.chi-table p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -92,7 +92,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/text-input/_accessibility.pug b/src/website/views/components/forms/text-input/_accessibility.pug index 11bc02f9fa..681bf1b54d 100644 --- a/src/website/views/components/forms/text-input/_accessibility.pug +++ b/src/website/views/components/forms/text-input/_accessibility.pug @@ -17,7 +17,7 @@ table.chi-table td Activates the button p.-text - | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -69,7 +69,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/textarea/_accessibility.pug b/src/website/views/components/forms/textarea/_accessibility.pug index 1a691d01fe..0765c20d87 100644 --- a/src/website/views/components/forms/textarea/_accessibility.pug +++ b/src/website/views/components/forms/textarea/_accessibility.pug @@ -17,7 +17,7 @@ table.chi-table td Activates the button p.-text - | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for input fields, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -69,7 +69,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/forms/toggle-switch/_accessibility.pug b/src/website/views/components/forms/toggle-switch/_accessibility.pug index dfbeb44dce..e3ee15f5bc 100644 --- a/src/website/views/components/forms/toggle-switch/_accessibility.pug +++ b/src/website/views/components/forms/toggle-switch/_accessibility.pug @@ -13,7 +13,7 @@ table.chi-table td Space,Enter td Changes state of the switch to checked or not checked. p.-text - | For comprehensive details on keyboard support for toggle switch, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for toggle switch, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -75,7 +75,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/link/_accessibility.pug b/src/website/views/components/link/_accessibility.pug index 893a0b26d4..92b0b4b5b7 100644 --- a/src/website/views/components/link/_accessibility.pug +++ b/src/website/views/components/link/_accessibility.pug @@ -16,7 +16,7 @@ table.chi-table td Enter td Activates the link p.-text - | For comprehensive details on keyboard support for buttons, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support for buttons, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -97,7 +97,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/phone-input/_accessibility.pug b/src/website/views/components/phone-input/_accessibility.pug index 0df1beff9a..60cb88e18d 100644 --- a/src/website/views/components/phone-input/_accessibility.pug +++ b/src/website/views/components/phone-input/_accessibility.pug @@ -17,7 +17,7 @@ table.chi-table td Submits the entered value. p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -68,7 +68,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/picker-group/_accessibility.pug b/src/website/views/components/picker-group/_accessibility.pug index 90fbd193e4..096413dcaf 100644 --- a/src/website/views/components/picker-group/_accessibility.pug +++ b/src/website/views/components/picker-group/_accessibility.pug @@ -18,7 +18,7 @@ table.chi-table p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -64,7 +64,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/picker/_accessibility.pug b/src/website/views/components/picker/_accessibility.pug index 3c83d4a0c6..c44c632ad4 100644 --- a/src/website/views/components/picker/_accessibility.pug +++ b/src/website/views/components/picker/_accessibility.pug @@ -18,7 +18,7 @@ table.chi-table p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -69,7 +69,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/components/time-picker/_accessibility.pug b/src/website/views/components/time-picker/_accessibility.pug index 7977af3bcd..d553276ab8 100644 --- a/src/website/views/components/time-picker/_accessibility.pug +++ b/src/website/views/components/time-picker/_accessibility.pug @@ -24,7 +24,7 @@ table.chi-table p.-text - | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. + | For comprehensive details on keyboard support, refer to our Keyboard Control Guide. p.-text | Visit WebAIM for keyboard techniques. @@ -69,7 +69,7 @@ ul.-text h3 Other recommendations p.-text - | Explore additional accessibility tips in the general Accessibility Guide. + | Explore additional accessibility tips in the general Accessibility Guide. h3 WCAG 2.2 Guidelines ul.-text diff --git a/src/website/views/getting-started/installation.pug b/src/website/views/getting-started/installation.pug index 1455d2c835..3985f7b54b 100644 --- a/src/website/views/getting-started/installation.pug +++ b/src/website/views/getting-started/installation.pug @@ -269,7 +269,7 @@ ul#chi-vue-tabs.chi-tabs.-border - + const exampleVueComponent = Vue.createApp({ diff --git a/src/website/views/getting-started/whats-new.pug b/src/website/views/getting-started/whats-new.pug index 6e2b0115ba..25571412e6 100644 --- a/src/website/views/getting-started/whats-new.pug +++ b/src/website/views/getting-started/whats-new.pug @@ -3,6 +3,16 @@ title: What's new order: 5 --- +.changelog__version.-py--1 + h2.-text--h2.-text--bold.-mb--1 Chi v6.19.0 + .-text--grey.-text--md December 19, 2024 + .-pt--1 + h3.-text--h3.-text--bold Components + h4.-text--h4.-text--bold Added + ul.-text.-pl--2 + li Added: Tooltip Vue component now supports wrapper property. +.chi-divider.-my--4 + .changelog__version.-py--1 h2.-text--h2.-text--bold.-mb--1 Chi v6.18.0 .-text--grey.-text--md December 18, 2024 diff --git a/sri.json b/sri.json index 5fd24afc95..8f4228b8e3 100644 --- a/sri.json +++ b/sri.json @@ -1 +1 @@ -{"dist/chi.css":"sha256-dTZULQ5pWZi5LGK6y6Qyl+S8pjnl7aaXl9Y8FVFHrvU=","dist/chi-centurylink.css":"sha256-/PkBojMNcSeomO9GGqWa/c4ZkIP1WStkej8Qe70/gZM=","dist/chi-portal.css":"sha256-6SYQp1ACG6mBpzJHDS1EdpNzkYSsxYRCPNFPGrMsL64=","dist/chi-brightspeed.css":"sha256-DPRz2UZ3I01vUegxw0IW4tv/mbIqDGa0HV+WF4A/aio=","dist/chi-colt.css":"sha256-SxvLGp6ExA9eQL8FmvXr6uYRAfo1TNqWbtV4sQ84VPM=","dist/chi-lumenrebrand24.css":"sha256-vl8YYUQAWjUc2hWSZ6UQz3VKSKIF06DPaH266JET5J0=","dist/chi-portalrebrand24.css":"sha256-6SYQp1ACG6mBpzJHDS1EdpNzkYSsxYRCPNFPGrMsL64=","dist/js/chi.js":"sha256-EVoPuMqk72qbdw1lZZ1eA8cNZoxY8BkI0l2XJlj/BTg=","dist/assets/themes/lumen/images/favicon.svg":"sha256-s8cfYbPxhcrLj+FL/OxALhZoDmlCwvX2/K3I0hq1PAs=","dist/assets/themes/lumen/images/favicon.ico":"sha256-EkKmbH+i/VIQAtUl7NF4bPVaaJZCeBc5xWx8LTcMJp0=","dist/assets/themes/centurylink/images/favicon.svg":"sha256-5RkYwEB1kGRtp6mggDQTuEY/wsmVdIG+AYurQhglosI=","dist/assets/themes/centurylink/images/favicon.ico":"sha256-CT3YteLQVYlkdxGsjd628GvTzCD9ViZWmJ3zheSnl3w=","dist/assets/themes/brightspeed/images/favicon.svg":"sha256-Tow8P9bccUnR/KKuuDzR4lajh5RdslRk8w3AdQAJeXA=","dist/assets/themes/brightspeed/images/favicon.ico":"sha256-EuXQy8CJJQ2WkSbZWd7RG3FdvyWyCuR4c6kp34KjXR0=","dist/assets/themes/colt/images/favicon.svg":"sha256-sigGNEeyEtgqhz99ctL2fxj6TlptlNjDkDpOcakIz0Y=","dist/assets/themes/colt/images/favicon.ico":"sha256-01eRZwbyuQHUlu+olKBDR6JW2BpEIQgJvyvtgnJ8aoc=","dist/assets/themes/colt/images/background-hero.png":"sha256-z3ObQ7Ovb1KKHLyl1nO5adiyxC++90EZQ6QYVmGs6FA=","dist/assets/themes/colt/images/background-login.png":"sha256-MZx40tUnQEqxT7M7GiCGsosBUR6utO2stfoS5cjlnDs=","dist/js/ce/ux-chi-ce/ux-chi-ce.esm.js":"sha256-rM3yGECOZIrkOnGWjeEqYgfbfvOLG90Zh+wp/ZNXnxA=","dist/js/ce/ux-chi-ce/ux-chi-ce.js":"sha256-QzitHeGqgZULDF3QDfw9mH8IVsnWQhvicWjpQAYxvpY="} \ No newline at end of file +{"dist/chi.css":"sha256-IFDQyZ7l8U3JeFogpjFKPklAwmgA0aeTmUYkX9AhfQo=","dist/chi-centurylink.css":"sha256-o9STb98mT2BZBGgbLH7NmTNM4gQTjwcqEzE5yH7TnZs=","dist/chi-portal.css":"sha256-cZ6NI28ebKUfXLbQ5TlmHhKA53W+Uu/VWYRu86TkzC8=","dist/chi-brightspeed.css":"sha256-y9m0POHOOXpDdkG/w59TZ7qQPLtTffIkHSt28OaD2Y4=","dist/chi-colt.css":"sha256-wjwGo4HpGyqzqtTFfo/7gAM0oHTd9p7bcLAC5imifLw=","dist/chi-lumenrebrand24.css":"sha256-vl8YYUQAWjUc2hWSZ6UQz3VKSKIF06DPaH266JET5J0=","dist/chi-portalrebrand24.css":"sha256-6SYQp1ACG6mBpzJHDS1EdpNzkYSsxYRCPNFPGrMsL64=","dist/js/chi.js":"sha256-EVoPuMqk72qbdw1lZZ1eA8cNZoxY8BkI0l2XJlj/BTg=","dist/assets/themes/lumen/images/favicon.svg":"sha256-s8cfYbPxhcrLj+FL/OxALhZoDmlCwvX2/K3I0hq1PAs=","dist/assets/themes/lumen/images/favicon.ico":"sha256-EkKmbH+i/VIQAtUl7NF4bPVaaJZCeBc5xWx8LTcMJp0=","dist/assets/themes/centurylink/images/favicon.svg":"sha256-5RkYwEB1kGRtp6mggDQTuEY/wsmVdIG+AYurQhglosI=","dist/assets/themes/centurylink/images/favicon.ico":"sha256-CT3YteLQVYlkdxGsjd628GvTzCD9ViZWmJ3zheSnl3w=","dist/assets/themes/brightspeed/images/favicon.svg":"sha256-Tow8P9bccUnR/KKuuDzR4lajh5RdslRk8w3AdQAJeXA=","dist/assets/themes/brightspeed/images/favicon.ico":"sha256-EuXQy8CJJQ2WkSbZWd7RG3FdvyWyCuR4c6kp34KjXR0=","dist/assets/themes/colt/images/favicon.svg":"sha256-sigGNEeyEtgqhz99ctL2fxj6TlptlNjDkDpOcakIz0Y=","dist/assets/themes/colt/images/favicon.ico":"sha256-01eRZwbyuQHUlu+olKBDR6JW2BpEIQgJvyvtgnJ8aoc=","dist/assets/themes/colt/images/background-hero.png":"sha256-z3ObQ7Ovb1KKHLyl1nO5adiyxC++90EZQ6QYVmGs6FA=","dist/assets/themes/colt/images/background-login.png":"sha256-MZx40tUnQEqxT7M7GiCGsosBUR6utO2stfoS5cjlnDs=","dist/js/ce/ux-chi-ce/ux-chi-ce.esm.js":"sha256-F+vPr07k0LSXg6cKgBHOgc5iDW3EmxAAv5RfdIOuobs=","dist/js/ce/ux-chi-ce/ux-chi-ce.js":"sha256-QzitHeGqgZULDF3QDfw9mH8IVsnWQhvicWjpQAYxvpY="} \ No newline at end of file