diff --git a/.npmignore b/.npmignore index 3a07e09..4e82434 100644 --- a/.npmignore +++ b/.npmignore @@ -172,4 +172,5 @@ CODEOWNERS create-release.js mdnsDgram.ts mcastServer.ts -mcastServer.test.ts \ No newline at end of file +mcastServer.test.ts +tsconfig.production.json diff --git a/CHANGELOG.md b/CHANGELOG.md index e8f8e9d..6321611 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,29 @@ If you like this project and find it useful, please consider giving it a star on You can also sponsor Tamer here https://buymeacoffee.com/6sjde6vkzl for his invaluable contribution to this project. +## [1.0.11] - 2024-12-04 + +### Added + +- [Jest]: Jest coverage 100% on shellyProperty +- [Jest]: Jest coverage 100% on shellyComponent +- [shelly]: Verified support for shelly2pmg3 (Shelly 2PM Gen 3) mode cover with firmware 1.4.99-2pmg3prod0-ge3db05c. +- [shelly]: The cache file is saved for all sleepy devices when they wake up. +- [Jest]: Jest test on shelly2pmg3 mode cover (mock and real) + +### Changed + +- [package]: Requires matterbridge 1.6.5. +- [package]: Updated dependencies. +- [platform]: The ShellyPlatform class has grown too much: moved the shellySwitchCommandHandler, shellyLightCommandHandler, shellyCoverCommandHandler and shellyUpdateHandler methods to separate files. +- [platform]: Refactor Matter Thermostat component for WallDisplay +- [platform]: Refactor Matter Thermostat component for BLU Trv +- [levelControl]: Fix max level to 254. + + + Buy me a coffee + + ## [1.0.10] - 2024-11-21 ### Added @@ -19,7 +42,7 @@ You can also sponsor Tamer here https://buymeacoffee.com/6sjde6vkzl for his inva - [ShellyCommandHandler]: Refactor shellyCommandHandlers. - [BTHome]: Update scanBTHomeComponents to the new BLU firmware 1.0.20 (model identification changes from v1.0.18). -- [log]: Show username and password with **** in logs. +- [log]: Show username and password with \*\*\*\* in logs. - [package]: Updated dependencies. @@ -100,7 +123,6 @@ You can also sponsor Tamer here https://buymeacoffee.com/6sjde6vkzl for his inva - [shelly]: Added ColorTemp to Shelly Duo and Shelly Bulb in white mode. - [cockpit]: Added cockpit dashboard 1.0 - Buy me a coffee diff --git a/README.md b/README.md index 309a43e..b02f379 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Features: - If the device has a firmware update available, a message is displayed. - If the device's CoIoT protocol is not correctly configured, a message is displayed. - If the device cover/roller component is not calibrated, a message is displayed. -- If a device changes its ip address on the network, a message is displayed and the new address is stored. You just need to restart Matterbridge. +- If a device changes its ip address on the network, a message is displayed and the new address is stored. - A 10-minute timer checks if the device has reported within that time frame, and fetch un update. If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-shelly and sponsoring it. diff --git a/create-release.js b/create-release.js deleted file mode 100644 index acfc1b8..0000000 --- a/create-release.js +++ /dev/null @@ -1,81 +0,0 @@ -/* eslint-disable no-console */ - -/* -Add the following scripts to package.json file: - "prepublishOnly": "npm run lint && npm run test && npm run cleanBuild", - "npmPublish": "npm publish", - "gitPublish": "npm run lint && npm run test && npm run cleanBuild && node create-release.js", - "preversion": "npm run lint && npm run test && npm run cleanBuild", - "postversion": "git push && git push --tags && node create-release.js", - "version:patch": "npm version patch", - "version:minor": "npm version minor", - "version:major": "npm version major", -*/ - -import { execSync } from 'child_process'; -import { readFileSync, writeFileSync, unlinkSync } from 'fs'; -import path from 'path'; -import readline from 'readline'; - -// Get the latest tag -let tag = execSync('git describe --tags --abbrev=0').toString().trim(); -if (tag.startsWith('v')) { - tag = tag.substring(1); -} - -// Read the changelog file -const changelogPath = path.join(process.cwd(), 'CHANGELOG.md'); -const changelog = readFileSync(changelogPath, 'utf8'); - -// Extract the relevant section from the changelog -const changelogSection = extractChangelogSection(changelog, tag); - -const title = `Release ${tag}`; -const notes = `Release notes for version ${tag}\n\n## [${tag}] ${changelogSection}`; - -// Log the release details -console.log(`Creating release ${tag} with the following details:\nTitle:\n${title}\nNotes:\n${notes}`); - -// Write the release notes to a temporary file -const notesFilePath = path.join(process.cwd(), 'release-notes.md'); -writeFileSync(notesFilePath, notes); - -// Wait for user input before proceeding -await pressAnyKey(); - -// Create the release using the temporary file -execSync(`gh release create ${tag} -t "${title}" -F "${notesFilePath}"`, { stdio: 'inherit' }); - -// Clean up the temporary file -unlinkSync(notesFilePath); - -/** - * Extracts the relevant section from the changelog for the given tag. - * Assumes that each version section in the changelog starts with a heading like "## [tag]". - * @param {string} changelog - The content of the changelog file. - * @param {string} tag - The tag for which to extract the changelog section. - * @returns {string} - The extracted changelog section. - */ -function extractChangelogSection(changelog, tag) { - const regex = new RegExp(`## \\[${tag}\\](.*?)(## \\[|$)`, 's'); - const match = changelog.match(regex); - return match ? match[1].trim() : 'No changelog entry found for this version.'; -} - -/** - * Waits for the user to press any key. - * @returns {Promise} - */ -function pressAnyKey() { - return new Promise((resolve) => { - const rl = readline.createInterface({ - input: process.stdin, - output: process.stdout, - }); - - rl.question('Press any key to continue...', () => { - rl.close(); - resolve(); - }); - }); -} diff --git a/matterbridge-shelly.schema.json b/matterbridge-shelly.schema.json index 70259ba..69f1b60 100644 --- a/matterbridge-shelly.schema.json +++ b/matterbridge-shelly.schema.json @@ -24,11 +24,7 @@ "exposeSwitch": { "description": "Choose how to expose the shelly switches: as a switch (don't use it for Alexa), light or outlet", "type": "string", - "enum": [ - "switch", - "light", - "outlet" - ], + "enum": ["switch", "light", "outlet"], "default": "outlet" }, "switchList": { @@ -55,12 +51,7 @@ "exposeInput": { "description": "Choose how to expose the shelly inputs: disabled, contact, momentary or latching switch (you may need to pair again the controller when changed)", "type": "string", - "enum": [ - "disabled", - "contact", - "momentary", - "latching" - ], + "enum": ["disabled", "contact", "momentary", "latching"], "default": "disabled" }, "inputContactList": { @@ -87,10 +78,7 @@ "exposeInputEvent": { "description": "Choose weather to expose the shelly input events: momentary or disabled (you may need to pair again the controller when changed)", "type": "string", - "enum": [ - "momentary", - "disabled" - ], + "enum": ["momentary", "disabled"], "default": "disabled" }, "inputEventList": { @@ -103,10 +91,7 @@ "exposePowerMeter": { "description": "Choose how to expose the shelly power meters: disabled, matter13 (will use Matter 1.3 electricalSensor)", "type": "string", - "enum": [ - "disabled", - "matter13" - ], + "enum": ["disabled", "matter13"], "default": "disabled" }, "blackList": { @@ -202,4 +187,4 @@ "default": false } } -} \ No newline at end of file +} diff --git a/package-lock.json b/package-lock.json index c7fa798..7e582af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "matterbridge-shelly", - "version": "1.0.10", + "version": "1.0.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "matterbridge-shelly", - "version": "1.0.10", + "version": "1.0.11", "license": "Apache-2.0", "dependencies": { "coap": "1.4.0", @@ -18,24 +18,24 @@ "ws": "8.18.0" }, "devDependencies": { - "@eslint/js": "9.15.0", + "@eslint/js": "9.16.0", "@types/eslint__js": "8.42.3", "@types/jest": "29.5.14", "@types/multicast-dns": "7.2.4", - "@types/node": "22.9.1", + "@types/node": "22.10.1", "@types/ws": "8.5.13", - "eslint": "9.15.0", + "eslint": "9.16.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-jest": "28.9.0", "eslint-plugin-prettier": "5.2.1", "jest": "29.7.0", - "prettier": "3.3.3", + "prettier": "3.4.2", "ts-jest": "29.2.5", - "typescript": "5.6.3", - "typescript-eslint": "8.15.0" + "typescript": "5.7.2", + "typescript-eslint": "8.17.0" }, "engines": { - "node": ">=18.0.0" + "node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0" }, "funding": { "type": "buymeacoffee", @@ -72,9 +72,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", - "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", "dev": true, "license": "MIT", "engines": { @@ -123,14 +123,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", - "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.2", - "@babel/types": "^7.26.0", + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -263,13 +263,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", - "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.26.0" + "@babel/types": "^7.26.3" }, "bin": { "parser": "bin/babel-parser.js" @@ -533,17 +533,17 @@ } }, "node_modules/@babel/traverse": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", - "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.3.tgz", + "integrity": "sha512-yTmc8J+Sj8yLzwr4PD5Xb/WF3bOYu2C2OoSZPzbuqRm4n98XirsbzaX+GloeO376UnSYIYJ4NCanwV5/ugZkwA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/generator": "^7.25.9", - "@babel/parser": "^7.25.9", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", "@babel/template": "^7.25.9", - "@babel/types": "^7.25.9", + "@babel/types": "^7.26.3", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -562,9 +562,9 @@ } }, "node_modules/@babel/types": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", - "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", "dev": true, "license": "MIT", "dependencies": { @@ -625,13 +625,13 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", - "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", + "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.4", + "@eslint/object-schema": "^2.1.5", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -640,11 +640,14 @@ } }, "node_modules/@eslint/core": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", - "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz", + "integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==", "dev": true, "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } @@ -674,9 +677,9 @@ } }, "node_modules/@eslint/js": { - "version": "9.15.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.15.0.tgz", - "integrity": "sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==", + "version": "9.16.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.16.0.tgz", + "integrity": "sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==", "dev": true, "license": "MIT", "engines": { @@ -684,9 +687,9 @@ } }, "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", + "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", "dev": true, "license": "Apache-2.0", "engines": { @@ -694,9 +697,9 @@ } }, "node_modules/@eslint/plugin-kit": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", - "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz", + "integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -1468,12 +1471,12 @@ } }, "node_modules/@types/node": { - "version": "22.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.1.tgz", - "integrity": "sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==", + "version": "22.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", + "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", "license": "MIT", "dependencies": { - "undici-types": "~6.19.8" + "undici-types": "~6.20.0" } }, "node_modules/@types/readable-stream": { @@ -1521,17 +1524,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.15.0.tgz", - "integrity": "sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.17.0.tgz", + "integrity": "sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.15.0", - "@typescript-eslint/type-utils": "8.15.0", - "@typescript-eslint/utils": "8.15.0", - "@typescript-eslint/visitor-keys": "8.15.0", + "@typescript-eslint/scope-manager": "8.17.0", + "@typescript-eslint/type-utils": "8.17.0", + "@typescript-eslint/utils": "8.17.0", + "@typescript-eslint/visitor-keys": "8.17.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -1555,16 +1558,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.15.0.tgz", - "integrity": "sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.17.0.tgz", + "integrity": "sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "8.15.0", - "@typescript-eslint/types": "8.15.0", - "@typescript-eslint/typescript-estree": "8.15.0", - "@typescript-eslint/visitor-keys": "8.15.0", + "@typescript-eslint/scope-manager": "8.17.0", + "@typescript-eslint/types": "8.17.0", + "@typescript-eslint/typescript-estree": "8.17.0", + "@typescript-eslint/visitor-keys": "8.17.0", "debug": "^4.3.4" }, "engines": { @@ -1584,14 +1587,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.15.0.tgz", - "integrity": "sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.17.0.tgz", + "integrity": "sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.15.0", - "@typescript-eslint/visitor-keys": "8.15.0" + "@typescript-eslint/types": "8.17.0", + "@typescript-eslint/visitor-keys": "8.17.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -1602,14 +1605,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.15.0.tgz", - "integrity": "sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.17.0.tgz", + "integrity": "sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.15.0", - "@typescript-eslint/utils": "8.15.0", + "@typescript-eslint/typescript-estree": "8.17.0", + "@typescript-eslint/utils": "8.17.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -1630,9 +1633,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.15.0.tgz", - "integrity": "sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.17.0.tgz", + "integrity": "sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==", "dev": true, "license": "MIT", "engines": { @@ -1644,14 +1647,14 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.15.0.tgz", - "integrity": "sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.17.0.tgz", + "integrity": "sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "8.15.0", - "@typescript-eslint/visitor-keys": "8.15.0", + "@typescript-eslint/types": "8.17.0", + "@typescript-eslint/visitor-keys": "8.17.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", @@ -1699,16 +1702,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.15.0.tgz", - "integrity": "sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.17.0.tgz", + "integrity": "sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.15.0", - "@typescript-eslint/types": "8.15.0", - "@typescript-eslint/typescript-estree": "8.15.0" + "@typescript-eslint/scope-manager": "8.17.0", + "@typescript-eslint/types": "8.17.0", + "@typescript-eslint/typescript-estree": "8.17.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -1727,13 +1730,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.15.0.tgz", - "integrity": "sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.17.0.tgz", + "integrity": "sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.15.0", + "@typescript-eslint/types": "8.17.0", "eslint-visitor-keys": "^4.2.0" }, "engines": { @@ -2163,9 +2166,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001683", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001683.tgz", - "integrity": "sha512-iqmNnThZ0n70mNwvxpEC2nBJ037ZHZUoBI5Gorh1Mw6IlEAZujEoU1tXA628iZfzm7R9FvFzxbfdgml82a3k8Q==", + "version": "1.0.30001686", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001686.tgz", + "integrity": "sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==", "dev": true, "funding": [ { @@ -2478,9 +2481,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.63", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.63.tgz", - "integrity": "sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==", + "version": "1.5.68", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz", + "integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==", "dev": true, "license": "ISC" }, @@ -2538,9 +2541,9 @@ } }, "node_modules/eslint": { - "version": "9.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.15.0.tgz", - "integrity": "sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==", + "version": "9.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.16.0.tgz", + "integrity": "sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==", "dev": true, "license": "MIT", "dependencies": { @@ -2549,7 +2552,7 @@ "@eslint/config-array": "^0.19.0", "@eslint/core": "^0.9.0", "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.15.0", + "@eslint/js": "9.16.0", "@eslint/plugin-kit": "^0.2.3", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", @@ -4751,9 +4754,9 @@ } }, "node_modules/prettier": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", + "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", "dev": true, "license": "MIT", "bin": { @@ -4963,9 +4966,9 @@ } }, "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, "license": "MIT", "engines": { @@ -5313,9 +5316,9 @@ } }, "node_modules/ts-api-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.0.tgz", - "integrity": "sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", + "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", "dev": true, "license": "MIT", "engines": { @@ -5418,9 +5421,9 @@ } }, "node_modules/typescript": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", - "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", "dev": true, "license": "Apache-2.0", "bin": { @@ -5432,15 +5435,15 @@ } }, "node_modules/typescript-eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.15.0.tgz", - "integrity": "sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.17.0.tgz", + "integrity": "sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/eslint-plugin": "8.15.0", - "@typescript-eslint/parser": "8.15.0", - "@typescript-eslint/utils": "8.15.0" + "@typescript-eslint/eslint-plugin": "8.17.0", + "@typescript-eslint/parser": "8.17.0", + "@typescript-eslint/utils": "8.17.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -5459,9 +5462,9 @@ } }, "node_modules/undici-types": { - "version": "6.19.8", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", - "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", "license": "MIT" }, "node_modules/update-browserslist-db": { diff --git a/package.json b/package.json index add87de..b80173f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matterbridge-shelly", - "version": "1.0.10", + "version": "1.0.11", "description": "Matterbridge shelly plugin", "author": "https://github.com/Luligu", "license": "Apache-2.0", @@ -43,10 +43,11 @@ "ewelink" ], "engines": { - "node": ">=18.0.0" + "node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0" }, "scripts": { "build": "tsc", + "buildProduction": "npm run clean && tsc --project tsconfig.production.json", "watch": "tsc --watch", "start": "matterbridge", "start:bridge": "matterbridge -bridge", @@ -56,7 +57,7 @@ "test:watch": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --watch", "test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage", "test:index": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js index.test.ts --detectOpenHandles --coverage", - "test:platform": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js platform.test.ts --coverage", + "test:platform": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js platform.test.ts --detectOpenHandles --coverage", "test:auth": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/auth.test.ts --coverage", "test:mdns": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/mdnsScanner.test.ts --verbose --coverage", "test:coap": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/coapServer.test.ts --coverage", @@ -67,6 +68,7 @@ "test:shellyProperty": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyProperty.test.ts --coverage", "test:shellyComponent": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyComponent.test.ts --coverage", "test:shellyDevice": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.test.ts --runInBand --detectOpenHandles --verbose --coverage", + "test:shellyDevice:all": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.test.ts src/shellyDevice.mock.test.ts --runInBand --detectOpenHandles --verbose --coverage", "test:mock": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.mock.test.ts --runInBand --detectOpenHandles --verbose --coverage", "test:real": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.real.test.ts --runInBand --detectOpenHandles --verbose --coverage", "test:real1": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.realgen1.test.ts --runInBand --detectOpenHandles --verbose --coverage", @@ -84,7 +86,9 @@ "checkDependencies": "npx npm-check-updates", "updateDependencies": "npx npm-check-updates -u && npm install && npm link matterbridge && npm run build", "prepublishOnly": "npm pkg delete devDependencies && npm pkg delete scripts && npm install --omit=dev && npm shrinkwrap", - "npmPack": "npm run cleanBuild && copy package.json package.log && npm pkg delete devDependencies && npm pkg delete scripts && npm install --omit=dev && npm shrinkwrap && npm pack && copy package.log package.json && npm run deepCleanBuild", + "npmPack": "copy package.json package.log && npm run buildProduction && npm pkg delete devDependencies && npm pkg delete scripts && npx rimraf ./node_modules && npm install --omit=dev && npm shrinkwrap && npm pack && copy package.log package.json && npm run deepCleanBuild && npm run deepCleanBuild", + "npmPublishTagDev": "copy package.json package.log && npm run buildProduction && npm pkg delete devDependencies && npm pkg delete scripts && npx rimraf ./node_modules && npm install --omit=dev && npm shrinkwrap && npm publish --tag dev && copy package.log package.json && npm run deepCleanBuild", + "npmPublishTagLatest": "copy package.json package.log && npm run buildProduction && npm pkg delete devDependencies && npm pkg delete scripts && npx rimraf ./node_modules && npm install --omit=dev && npm shrinkwrap && npm publish --tag latest && copy package.log package.json && npm run deepCleanBuild", "matterbridge:add": "matterbridge -add .\\", "matterbridge:remove": "matterbridge -remove .\\", "matterbridge:enable": "matterbridge -enable .\\", @@ -108,20 +112,20 @@ "ws": "8.18.0" }, "devDependencies": { - "@eslint/js": "9.15.0", + "@eslint/js": "9.16.0", "@types/eslint__js": "8.42.3", "@types/jest": "29.5.14", "@types/multicast-dns": "7.2.4", - "@types/node": "22.9.1", + "@types/node": "22.10.1", "@types/ws": "8.5.13", - "eslint": "9.15.0", + "eslint": "9.16.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-jest": "28.9.0", "eslint-plugin-prettier": "5.2.1", "jest": "29.7.0", - "prettier": "3.3.3", + "prettier": "3.4.2", "ts-jest": "29.2.5", - "typescript": "5.6.3", - "typescript-eslint": "8.15.0" + "typescript": "5.7.2", + "typescript-eslint": "8.17.0" } } \ No newline at end of file diff --git a/rock-s0/INSTALL.md b/rock-s0/INSTALL.md index 1e30939..d6802bf 100644 --- a/rock-s0/INSTALL.md +++ b/rock-s0/INSTALL.md @@ -7,23 +7,26 @@ image: rock-s0_debian_bookworm_cli_b6.img ``` rkdeveloptool ld ``` -DevNo=1 Vid=0x2207,Pid=0x330e,LocationID=202 Maskrom + +DevNo=1 Vid=0x2207,Pid=0x330e,LocationID=202 Maskrom ``` sudo rkdeveloptool db rk3308_loader_ddr589MHz_uart0_m0_v2.06.136sd.bin ``` + Downloading bootloader succeeded. ``` sudo rkdeveloptool wl 0 rock-s0_debian_bookworm_cli_b6.img ``` + Write LBA from file (100%) ``` sudo rkdeveloptool rd ``` -Reset Device OK. +Reset Device OK. # Update system with rsetup @@ -123,6 +126,7 @@ sudo apt upgrade ``` # Install cockpit-files + ssh matterbridge@matterbridge sudo mkdir -p /usr/share/cockpit/cockpit-files scp -r "C:\Users\lligu\GitHub\matterbridge-shelly\rock-s0\cockpit-files" matterbridge@matterbridge:/usr/share/cockpit @@ -134,7 +138,6 @@ Create the directory "\usr\share\cockpit\matterbridge" copy all the files from cockpit directory to "\usr\share\cockpit\matterbridge" - # Install matterbridge cockpit plugin with the Debian package ``` @@ -236,4 +239,3 @@ sudo journalctl -u matterbridge.service -n 1000 -f --output cat ``` sudo journalctl --no-pager -u matterbridge.service --since "2024-10-31 08:00:00" --until "2024-10-31 12:00:00 --output cat" ``` - diff --git a/rock-s0/cockpit-files/index.css b/rock-s0/cockpit-files/index.css index 2a48854..a4922ad 100644 --- a/rock-s0/cockpit-files/index.css +++ b/rock-s0/cockpit-files/index.css @@ -174,8 +174,8 @@ --pf-v5-global--BoxShadow--xl-bottom: 0 1rem 1rem -0.5rem rgba(3, 3, 3, 0.2); --pf-v5-global--BoxShadow--xl-left: -1rem 0 1rem -0.5rem rgba(3, 3, 3, 0.2); --pf-v5-global--BoxShadow--inset: inset 0 0 0.625rem 0 rgba(3, 3, 3, 0.25); - --pf-v5-global--font-path: "patternfly-fonts-fake-path"; - --pf-v5-global--fonticon-path: "patternfly-icons-fake-path"; + --pf-v5-global--font-path: 'patternfly-fonts-fake-path'; + --pf-v5-global--fonticon-path: 'patternfly-icons-fake-path'; --pf-v5-global--spacer--xs: 0.25rem; --pf-v5-global--spacer--sm: 0.5rem; --pf-v5-global--spacer--md: 1rem; @@ -234,47 +234,12 @@ --pf-v5-global--icon--FontSize--md: 1rem; --pf-v5-global--icon--FontSize--lg: 1.5rem; --pf-v5-global--icon--FontSize--xl: 3.375rem; - --pf-v5-global--FontFamily--text: - "RedHatText", - helvetica, - arial, - sans-serif; - --pf-v5-global--FontFamily--heading: - "RedHatDisplay", - helvetica, - arial, - sans-serif; - --pf-v5-global--FontFamily--monospace: - "RedHatMono", - "Liberation Mono", - consolas, - "SFMono-Regular", - menlo, - monaco, - "Courier New", - monospace; - --pf-v5-global--FontFamily--text--vf: - "RedHatTextVF", - "RedHatText", - helvetica, - arial, - sans-serif; - --pf-v5-global--FontFamily--heading--vf: - "RedHatDisplayVF", - "RedHatDisplay", - helvetica, - arial, - sans-serif; - --pf-v5-global--FontFamily--monospace--vf: - "RedHatMonoVF", - "RedHatMono", - "Liberation Mono", - consolas, - "SFMono-Regular", - menlo, - monaco, - "Courier New", - monospace; + --pf-v5-global--FontFamily--text: 'RedHatText', helvetica, arial, sans-serif; + --pf-v5-global--FontFamily--heading: 'RedHatDisplay', helvetica, arial, sans-serif; + --pf-v5-global--FontFamily--monospace: 'RedHatMono', 'Liberation Mono', consolas, 'SFMono-Regular', menlo, monaco, 'Courier New', monospace; + --pf-v5-global--FontFamily--text--vf: 'RedHatTextVF', 'RedHatText', helvetica, arial, sans-serif; + --pf-v5-global--FontFamily--heading--vf: 'RedHatDisplayVF', 'RedHatDisplay', helvetica, arial, sans-serif; + --pf-v5-global--FontFamily--monospace--vf: 'RedHatMonoVF', 'RedHatMono', 'Liberation Mono', consolas, 'SFMono-Regular', menlo, monaco, 'Courier New', monospace; --pf-v5-global--FontSize--4xl: 2.25rem; --pf-v5-global--FontSize--3xl: 1.75rem; --pf-v5-global--FontSize--2xl: 1.5rem; @@ -297,7 +262,7 @@ --pf-v5-global--target-size--MinHeight: 44px; --pf-v5-global--inverse--multiplier: 1; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) { --pf-v5-global--inverse--multiplier: -1; } :where(.pf-v5-theme-dark) { @@ -421,7 +386,7 @@ --pf-v5-global--inverse--multiplier: 1; direction: ltr; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-m-mirror-inline-rtl { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-m-mirror-inline-rtl { scale: -1 1; } :where(html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6) { @@ -525,8 +490,8 @@ } } @font-face { - font-family: "pf-v5-pficon"; - src: url(../base1/fonts/patternfly.woff) format("woff"); + font-family: 'pf-v5-pficon'; + src: url(../base1/fonts/patternfly.woff) format('woff'); } .pf-v5-pficon-zone:before, .pf-v5-pficon-warning-triangle:before, @@ -664,7 +629,7 @@ .pf-v5-pficon-applications:before, .pf-v5-pficon-ansible-tower:before, .pf-v5-pficon-add-circle-o:before { - font-family: "pf-v5-pficon"; + font-family: 'pf-v5-pficon'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; @@ -674,412 +639,412 @@ text-transform: none; } .pf-v5-pficon-add-circle-o:before { - content: "\e61b"; + content: '\e61b'; } .pf-v5-pficon-ansible-tower:before { - content: "\e950"; + content: '\e950'; } .pf-v5-pficon-applications:before { - content: "\e936"; + content: '\e936'; } .pf-v5-pficon-arrow:before { - content: "\e929"; + content: '\e929'; } .pf-v5-pficon-asleep:before { - content: "\e92e"; + content: '\e92e'; } .pf-v5-pficon-attention-bell:before { - content: "\e951"; + content: '\e951'; } .pf-v5-pficon-automation:before { - content: "\e937"; + content: '\e937'; } .pf-v5-pficon-bell:before { - content: "\e952"; + content: '\e952'; } .pf-v5-pficon-blueprint:before { - content: "\e915"; + content: '\e915'; } .pf-v5-pficon-build:before { - content: "\e902"; + content: '\e902'; } .pf-v5-pficon-builder-image:before { - content: "\e800"; + content: '\e800'; } .pf-v5-pficon-bundle:before { - content: "\e918"; + content: '\e918'; } .pf-v5-pficon-catalog:before { - content: "\e953"; + content: '\e953'; } .pf-v5-pficon-chat:before { - content: "\e954"; + content: '\e954'; } .pf-v5-pficon-close:before { - content: "\e60b"; + content: '\e60b'; } .pf-v5-pficon-cloud-security:before { - content: "\e903"; + content: '\e903'; } .pf-v5-pficon-cloud-tenant:before { - content: "\e904"; + content: '\e904'; } .pf-v5-pficon-cluster:before { - content: "\e620"; + content: '\e620'; } .pf-v5-pficon-connected:before { - content: "\e938"; + content: '\e938'; } .pf-v5-pficon-container-node:before { - content: "\e621"; + content: '\e621'; } .pf-v5-pficon-cpu:before { - content: "\e927"; + content: '\e927'; } .pf-v5-pficon-critical-risk:before { - content: "\e976"; + content: '\e976'; } .pf-v5-pficon-data-processor:before { - content: "\e97b"; + content: '\e97b'; } .pf-v5-pficon-data-sink:before { - content: "\e978"; + content: '\e978'; } .pf-v5-pficon-data-source:before { - content: "\e979"; + content: '\e979'; } .pf-v5-pficon-degraded:before { - content: "\e91b"; + content: '\e91b'; } .pf-v5-pficon-disconnected:before { - content: "\e955"; + content: '\e955'; } .pf-v5-pficon-domain:before { - content: "\e919"; + content: '\e919'; } .pf-v5-pficon-edit:before { - content: "\e60a"; + content: '\e60a'; } .pf-v5-pficon-enhancement:before { - content: "\e93a"; + content: '\e93a'; } .pf-v5-pficon-enterprise:before { - content: "\e906"; + content: '\e906'; } .pf-v5-pficon-equalizer:before { - content: "\e956"; + content: '\e956'; } .pf-v5-pficon-error-circle-o:before { - content: "\e926"; + content: '\e926'; } .pf-v5-pficon-export:before { - content: "\e616"; + content: '\e616'; } .pf-v5-pficon-filter:before { - content: "\e943"; + content: '\e943'; } .pf-v5-pficon-flavor:before { - content: "\e957"; + content: '\e957'; } .pf-v5-pficon-folder-close:before { - content: "\e607"; + content: '\e607'; } .pf-v5-pficon-folder-open:before { - content: "\e606"; + content: '\e606'; } .pf-v5-pficon-globe-route:before { - content: "\e958"; + content: '\e958'; } .pf-v5-pficon-help:before { - content: "\e605"; + content: '\e605'; } .pf-v5-pficon-history:before { - content: "\e617"; + content: '\e617'; } .pf-v5-pficon-home:before { - content: "\e618"; + content: '\e618'; } .pf-v5-pficon-import:before { - content: "\e615"; + content: '\e615'; } .pf-v5-pficon-in-progress:before { - content: "\e933"; + content: '\e933'; } .pf-v5-pficon-info:before { - content: "\e92b"; + content: '\e92b'; } .pf-v5-pficon-infrastructure:before { - content: "\e93d"; + content: '\e93d'; } .pf-v5-pficon-integration:before { - content: "\e948"; + content: '\e948'; } .pf-v5-pficon-key:before { - content: "\e924"; + content: '\e924'; } .pf-v5-pficon-locked:before { - content: "\e923"; + content: '\e923'; } .pf-v5-pficon-maintenance:before { - content: "\e932"; + content: '\e932'; } .pf-v5-pficon-memory:before { - content: "\e908"; + content: '\e908'; } .pf-v5-pficon-messages:before { - content: "\e603"; + content: '\e603'; } .pf-v5-pficon-middleware:before { - content: "\e917"; + content: '\e917'; } .pf-v5-pficon-migration:before { - content: "\e931"; + content: '\e931'; } .pf-v5-pficon-module:before { - content: "\e959"; + content: '\e959'; } .pf-v5-pficon-monitoring:before { - content: "\e95a"; + content: '\e95a'; } .pf-v5-pficon-multicluster:before { - content: "\e97c"; + content: '\e97c'; } .pf-v5-pficon-namespaces:before { - content: "\e95b"; + content: '\e95b'; } .pf-v5-pficon-network:before { - content: "\e909"; + content: '\e909'; } .pf-v5-pficon-new-process:before { - content: "\e95c"; + content: '\e95c'; } .pf-v5-pficon-not-started:before { - content: "\e95d"; + content: '\e95d'; } .pf-v5-pficon-off:before { - content: "\e92d"; + content: '\e92d'; } .pf-v5-pficon-ok:before { - content: "\e602"; + content: '\e602'; } .pf-v5-pficon-on-running:before { - content: "\e925"; + content: '\e925'; } .pf-v5-pficon-on:before { - content: "\e92c"; + content: '\e92c'; } .pf-v5-pficon-open-drawer-right:before { - content: "\e977"; + content: '\e977'; } .pf-v5-pficon-openshift:before { - content: "\e95e"; + content: '\e95e'; } .pf-v5-pficon-openstack:before { - content: "\e95f"; + content: '\e95f'; } .pf-v5-pficon-optimize:before { - content: "\e93e"; + content: '\e93e'; } .pf-v5-pficon-orders:before { - content: "\e93f"; + content: '\e93f'; } .pf-v5-pficon-os-image:before { - content: "\e960"; + content: '\e960'; } .pf-v5-pficon-package:before { - content: "\e961"; + content: '\e961'; } .pf-v5-pficon-panel-close:before { - content: "\e962"; + content: '\e962'; } .pf-v5-pficon-panel-open:before { - content: "\e963"; + content: '\e963'; } .pf-v5-pficon-paused:before { - content: "\e92f"; + content: '\e92f'; } .pf-v5-pficon-pending:before { - content: "\e964"; + content: '\e964'; } .pf-v5-pficon-pficon-dragdrop:before { - content: "\e965"; + content: '\e965'; } .pf-v5-pficon-pficon-history:before { - content: "\e966"; + content: '\e966'; } .pf-v5-pficon-pficon-network-range:before { - content: "\e967"; + content: '\e967'; } .pf-v5-pficon-pficon-satellite:before { - content: "\e968"; + content: '\e968'; } .pf-v5-pficon-pficon-sort-common-asc:before { - content: "\e94e"; + content: '\e94e'; } .pf-v5-pficon-pficon-sort-common-desc:before { - content: "\e94f"; + content: '\e94f'; } .pf-v5-pficon-pficon-template:before { - content: "\e94c"; + content: '\e94c'; } .pf-v5-pficon-pficon-vcenter:before { - content: "\e969"; + content: '\e969'; } .pf-v5-pficon-plugged:before { - content: "\e96a"; + content: '\e96a'; } .pf-v5-pficon-port:before { - content: "\e96b"; + content: '\e96b'; } .pf-v5-pficon-print:before { - content: "\e612"; + content: '\e612'; } .pf-v5-pficon-private:before { - content: "\e914"; + content: '\e914'; } .pf-v5-pficon-process-automation:before { - content: "\e949"; + content: '\e949'; } .pf-v5-pficon-project:before { - content: "\e96c"; + content: '\e96c'; } .pf-v5-pficon-rebalance:before { - content: "\e91c"; + content: '\e91c'; } .pf-v5-pficon-rebooting:before { - content: "\e96d"; + content: '\e96d'; } .pf-v5-pficon-regions:before { - content: "\e90a"; + content: '\e90a'; } .pf-v5-pficon-registry:before { - content: "\e623"; + content: '\e623'; } .pf-v5-pficon-remove2:before { - content: "\e96e"; + content: '\e96e'; } .pf-v5-pficon-replicator:before { - content: "\e624"; + content: '\e624'; } .pf-v5-pficon-repository:before { - content: "\e90b"; + content: '\e90b'; } .pf-v5-pficon-resource-pool:before { - content: "\e90c"; + content: '\e90c'; } .pf-v5-pficon-resources-almost-empty:before { - content: "\e91d"; + content: '\e91d'; } .pf-v5-pficon-resources-almost-full:before { - content: "\e912"; + content: '\e912'; } .pf-v5-pficon-resources-empty:before { - content: "\e96f"; + content: '\e96f'; } .pf-v5-pficon-resources-full:before { - content: "\e913"; + content: '\e913'; } .pf-v5-pficon-running:before { - content: "\e970"; + content: '\e970'; } .pf-v5-pficon-save:before { - content: "\e601"; + content: '\e601'; } .pf-v5-pficon-screen:before { - content: "\e971"; + content: '\e971'; } .pf-v5-pficon-security:before { - content: "\e946"; + content: '\e946'; } .pf-v5-pficon-server-group:before { - content: "\e91a"; + content: '\e91a'; } .pf-v5-pficon-server:before { - content: "\e90d"; + content: '\e90d'; } .pf-v5-pficon-service-catalog:before { - content: "\e972"; + content: '\e972'; } .pf-v5-pficon-service:before { - content: "\e61e"; + content: '\e61e'; } .pf-v5-pficon-services:before { - content: "\e947"; + content: '\e947'; } .pf-v5-pficon-severity-critical:before { - content: "\e97e"; + content: '\e97e'; } .pf-v5-pficon-severity-important:before { - content: "\e97f"; + content: '\e97f'; } .pf-v5-pficon-severity-minor:before { - content: "\e980"; + content: '\e980'; } .pf-v5-pficon-severity-moderate:before { - content: "\e981"; + content: '\e981'; } .pf-v5-pficon-severity-none:before { - content: "\e982"; + content: '\e982'; } .pf-v5-pficon-severity-undefined:before { - content: "\e983"; + content: '\e983'; } .pf-v5-pficon-spinner:before { - content: "\e973"; + content: '\e973'; } .pf-v5-pficon-spinner2:before { - content: "\e613"; + content: '\e613'; } .pf-v5-pficon-storage-domain:before { - content: "\e90e"; + content: '\e90e'; } .pf-v5-pficon-task:before { - content: "\e974"; + content: '\e974'; } .pf-v5-pficon-tenant:before { - content: "\e916"; + content: '\e916'; } .pf-v5-pficon-thumb-tack:before { - content: "\e920"; + content: '\e920'; } .pf-v5-pficon-topology:before { - content: "\e608"; + content: '\e608'; } .pf-v5-pficon-treeview:before { - content: "\e97d"; + content: '\e97d'; } .pf-v5-pficon-trend-down:before { - content: "\e900"; + content: '\e900'; } .pf-v5-pficon-trend-up:before { - content: "\e901"; + content: '\e901'; } .pf-v5-pficon-unknown:before { - content: "\e935"; + content: '\e935'; } .pf-v5-pficon-unlocked:before { - content: "\e922"; + content: '\e922'; } .pf-v5-pficon-unplugged:before { - content: "\e942"; + content: '\e942'; } .pf-v5-pficon-user:before { - content: "\e91e"; + content: '\e91e'; } .pf-v5-pficon-users:before { - content: "\e91f"; + content: '\e91f'; } .pf-v5-pficon-virtual-machine:before { - content: "\e90f"; + content: '\e90f'; } .pf-v5-pficon-volume:before { - content: "\e910"; + content: '\e910'; } .pf-v5-pficon-warning-triangle:before { - content: "\e975"; + content: '\e975'; } .pf-v5-pficon-zone:before { - content: "\e911"; + content: '\e911'; } .pf-v5-svg { width: 1em; @@ -1087,141 +1052,141 @@ vertical-align: -0.125em; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-Bold.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-Bold.woff2) format('woff2'); font-style: normal; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-BoldItalic.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-BoldItalic.woff2) format('woff2'); font-style: italic; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-Black.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-Black.woff2) format('woff2'); font-style: normal; font-weight: 900; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-BlackItalic.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-BlackItalic.woff2) format('woff2'); font-style: italic; font-weight: 900; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-Italic.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-Italic.woff2) format('woff2'); font-style: italic; font-weight: 300; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-Medium.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-Medium.woff2) format('woff2'); font-style: normal; font-weight: 400; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-MediumItalic.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-MediumItalic.woff2) format('woff2'); font-style: italic; font-weight: 400; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatDisplay"; - src: url(../../static/fonts/RedHatDisplay-Regular.woff2) format("woff2"); + font-family: 'RedHatDisplay'; + src: url(../../static/fonts/RedHatDisplay-Regular.woff2) format('woff2'); font-style: normal; font-weight: 300; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-Bold.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-Bold.woff2) format('woff2'); font-style: normal; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-BoldItalic.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-BoldItalic.woff2) format('woff2'); font-style: italic; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-Italic.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-Italic.woff2) format('woff2'); font-style: italic; font-weight: 400; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-Medium.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-Medium.woff2) format('woff2'); font-style: normal; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-MediumItalic.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-MediumItalic.woff2) format('woff2'); font-style: italic; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatText"; - src: url(../../static/fonts/RedHatText-Regular.woff2) format("woff2"); + font-family: 'RedHatText'; + src: url(../../static/fonts/RedHatText-Regular.woff2) format('woff2'); font-style: normal; font-weight: 400; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-Bold.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-Bold.woff2) format('woff2'); font-style: normal; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-BoldItalic.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-BoldItalic.woff2) format('woff2'); font-style: italic; font-weight: 700; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-Italic.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-Italic.woff2) format('woff2'); font-style: italic; font-weight: 400; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-Medium.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-Medium.woff2) format('woff2'); font-style: normal; font-weight: 500; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-MediumItalic.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-MediumItalic.woff2) format('woff2'); font-style: italic; font-weight: 500; text-rendering: optimizelegibility; } @font-face { - font-family: "RedHatMono"; - src: url(../../static/fonts/RedHatMono-Regular.woff2) format("woff2"); + font-family: 'RedHatMono'; + src: url(../../static/fonts/RedHatMono-Regular.woff2) format('woff2'); font-style: normal; font-weight: 400; text-rendering: optimizelegibility; @@ -1243,7 +1208,7 @@ --pf-v5-c-alert--BoxShadow: var(--pf-v5-global--BoxShadow--lg); --pf-v5-c-alert--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); --pf-v5-c-alert--GridTemplateColumns: max-content 1fr max-content; - --pf-v5-c-alert--GridTemplateAreas: "icon title action" ". description description" ". actiongroup actiongroup"; + --pf-v5-c-alert--GridTemplateAreas: 'icon title action' '. description description' '. actiongroup actiongroup'; --pf-v5-c-alert--BorderTopWidth: var(--pf-v5-global--BorderWidth--md); --pf-v5-c-alert--BorderTopColor: var(--pf-v5-global--BorderColor--100); --pf-v5-c-alert--PaddingTop: var(--pf-v5-global--spacer--md); @@ -1301,7 +1266,7 @@ --pf-v5-c-alert--m-inline--m-plain--PaddingBottom: 0; --pf-v5-c-alert--m-inline--m-plain--PaddingLeft: 0; --pf-v5-c-alert--m-expandable--GridTemplateColumns: auto max-content 1fr max-content; - --pf-v5-c-alert--m-expandable--GridTemplateAreas: "toggle icon title action" ". . description description" ". . actiongroup actiongroup"; + --pf-v5-c-alert--m-expandable--GridTemplateAreas: 'toggle icon title action' '. . description description' '. . actiongroup actiongroup'; --pf-v5-c-alert--m-expandable__description--action-group--PaddingTop: var(--pf-v5-c-alert__action-group--PaddingTop-base); --pf-v5-c-alert--m-expanded__toggle-icon--Rotate: 90deg; --pf-v5-c-alert--m-expanded__description--action-group--PaddingTop: var(--pf-v5-c-alert__description--action-group--PaddingTop-base); @@ -1380,7 +1345,7 @@ transition: var(--pf-v5-c-alert__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-alert__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-alert__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-alert__toggle-icon { scale: -1 1; } .pf-v5-c-alert__icon { @@ -1446,7 +1411,7 @@ } /* node_modules/@patternfly/react-styles/css/components/Popper/Popper.css */ -.pf-v5-c-popover[data-popper-reference-hidden=true] { +.pf-v5-c-popover[data-popper-reference-hidden='true'] { visibility: hidden; pointer-events: none; } @@ -1752,7 +1717,7 @@ inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; border: var(--pf-v5-c-button--after--BorderWidth) solid; border-color: var(--pf-v5-c-button--after--BorderColor); border-radius: var(--pf-v5-c-button--after--BorderRadius); @@ -1961,7 +1926,8 @@ --pf-v5-c-button--BorderRadius: var(--pf-v5-c-button--m-control--BorderRadius); --pf-v5-c-button--disabled--BackgroundColor: var(--pf-v5-c-button--m-control--disabled--BackgroundColor); --pf-v5-c-button--after--BorderWidth: var(--pf-v5-c-button--m-control--after--BorderWidth); - --pf-v5-c-button--after--BorderColor: var(--pf-v5-c-button--m-control--after--BorderTopColor) var(--pf-v5-c-button--m-control--after--BorderRightColor) var(--pf-v5-c-button--m-control--after--BorderBottomColor) var(--pf-v5-c-button--m-control--after--BorderLeftColor); + --pf-v5-c-button--after--BorderColor: var(--pf-v5-c-button--m-control--after--BorderTopColor) var(--pf-v5-c-button--m-control--after--BorderRightColor) + var(--pf-v5-c-button--m-control--after--BorderBottomColor) var(--pf-v5-c-button--m-control--after--BorderLeftColor); color: var(--pf-v5-c-button--m-control--Color); background-color: var(--pf-v5-c-button--m-control--BackgroundColor); } @@ -2393,11 +2359,15 @@ svg.pf-v5-c-spinner.pf-m-xl { --pf-v5-c-card--m-selectable-raised--m-selected-raised--BoxShadow: var(--pf-v5-global--BoxShadow--lg); --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base: -0.5rem; --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY: var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base); - --pf-v5-c-card--m-flat--m-selectable-raised--m-selected-raised--TranslateY: calc(var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base) + var(--pf-v5-c-card--m-flat--BorderWidth)); - --pf-v5-c-card--m-rounded--m-selectable-raised--m-selected-raised--TranslateY: calc(var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base) + var(--pf-v5-c-card--m-rounded--BorderRadius)); + --pf-v5-c-card--m-flat--m-selectable-raised--m-selected-raised--TranslateY: calc( + var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base) + var(--pf-v5-c-card--m-flat--BorderWidth) + ); + --pf-v5-c-card--m-rounded--m-selectable-raised--m-selected-raised--TranslateY: calc( + var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base) + var(--pf-v5-c-card--m-rounded--BorderRadius) + ); --pf-v5-c-card--m-selectable-raised--m-selected-raised--ZIndex: var(--pf-v5-global--ZIndex--xs); - --pf-v5-c-card--m-selectable-raised--m-selected-raised--Transition: transform .25s linear, box-shadow .25s linear; - --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--Transition: transform .25s linear; + --pf-v5-c-card--m-selectable-raised--m-selected-raised--Transition: transform 0.25s linear, box-shadow 0.25s linear; + --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--Transition: transform 0.25s linear; --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--TranslateY: calc(var(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY) * -1); --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--ScaleY: 2; --pf-v5-c-card--m-non-selectable-raised--BackgroundColor: var(--pf-v5-global--BackgroundColor--light-200); @@ -2489,7 +2459,7 @@ svg.pf-v5-c-spinner.pf-m-xl { inset-inline-start: var(--pf-v5-c-card--m-selectable-raised--before--Left); inset-inline-end: var(--pf-v5-c-card--m-selectable-raised--before--Right); height: var(--pf-v5-c-card--m-selectable-raised--before--Height); - content: ""; + content: ''; background-color: var(--pf-v5-c-card--m-selectable-raised--before--BackgroundColor); transition: var(--pf-v5-c-card--m-selectable-raised--before--Transition); transform: translateY(var(--pf-v5-c-card--m-selectable-raised--before--TranslateY)) scaleY(var(--pf-v5-c-card--m-selectable-raised--before--ScaleY)); @@ -2609,7 +2579,7 @@ svg.pf-v5-c-spinner.pf-m-xl { display: inline-block; transition: var(--pf-v5-c-card__header-toggle-icon--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-card__header-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-card__header-toggle-icon { scale: -1 1; } .pf-v5-c-card__title-text { @@ -2650,7 +2620,7 @@ svg.pf-v5-c-spinner.pf-m-xl { position: absolute; inset: 0; z-index: -1; - content: ""; + content: ''; background-color: var(--pf-v5-c-card--BackgroundColor, transparent); border: var(--pf-v5-c-card--m-selectable--BorderWidth) solid var(--pf-v5-c-card--BorderColor, transparent); box-shadow: var(--pf-v5-c-card--BoxShadow, none); @@ -2718,7 +2688,7 @@ svg.pf-v5-c-spinner.pf-m-xl { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: var(--pf-v5-c-card__input--focus--BorderWidth) solid var(--pf-v5-c-card__input--focus--BorderColor); } :where(.pf-v5-theme-dark) .pf-v5-c-card, @@ -2742,7 +2712,7 @@ svg.pf-v5-c-spinner.pf-m-xl { --pf-v5-c-radio__label--FontWeight: var(--pf-v5-global--FontWeight--normal); --pf-v5-c-radio__label--FontSize: var(--pf-v5-global--FontSize--md); --pf-v5-c-radio__label--LineHeight: var(--pf-v5-global--LineHeight--md); - --pf-v5-c-radio__input--TranslateY: calc((var(--pf-v5-c-radio__label--LineHeight) * var(--pf-v5-c-radio__label--FontSize) / 2 ) - 50%); + --pf-v5-c-radio__input--TranslateY: calc((var(--pf-v5-c-radio__label--LineHeight) * var(--pf-v5-c-radio__label--FontSize) / 2) - 50%); --pf-v5-c-radio__input--TranslateY--moz: var(--pf-v5-c-radio__input--TranslateY); --pf-v5-c-radio__input--first-child--MarginLeft: 0.0625rem; --pf-v5-c-radio__input--last-child--MarginRight: 0.0625rem; @@ -2810,7 +2780,7 @@ label.pf-v5-c-radio, --pf-v5-c-check__label--FontWeight: var(--pf-v5-global--FontWeight--normal); --pf-v5-c-check__label--FontSize: var(--pf-v5-global--FontSize--md); --pf-v5-c-check__label--LineHeight: var(--pf-v5-global--LineHeight--md); - --pf-v5-c-check__input--TranslateY: calc((var(--pf-v5-c-check__label--LineHeight) * var(--pf-v5-c-check__label--FontSize) / 2 ) - 50%); + --pf-v5-c-check__input--TranslateY: calc((var(--pf-v5-c-check__label--LineHeight) * var(--pf-v5-c-check__label--FontSize) / 2) - 50%); --pf-v5-c-check__input--TranslateY--moz: var(--pf-v5-c-check__input--TranslateY); --pf-v5-c-check__description--FontSize: var(--pf-v5-global--FontSize--sm); --pf-v5-c-check__description--Color: var(--pf-v5-global--Color--200); @@ -2882,7 +2852,7 @@ label.pf-v5-c-check, --pf-v5-global--icon--Color--light: var(--pf-v5-global--icon--Color--light--dark); --pf-v5-global--icon--Color--dark: var(--pf-v5-global--icon--Color--dark--dark); } -.pf-v5-c-page__main-section[class*=pf-m-dark-], +.pf-v5-c-page__main-section[class*='pf-m-dark-'], .pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector, .pf-v5-c-page__sidebar, .pf-v5-c-page__header { @@ -2896,7 +2866,7 @@ label.pf-v5-c-check, --pf-v5-global--icon--Color--light: var(--pf-v5-global--icon--Color--light--light); --pf-v5-global--icon--Color--dark: var(--pf-v5-global--icon--Color--dark--light); } -.pf-v5-c-page__main-section[class*=pf-m-dark-] .pf-v5-c-button, +.pf-v5-c-page__main-section[class*='pf-m-dark-'] .pf-v5-c-button, .pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector .pf-v5-c-button, .pf-v5-c-page__sidebar .pf-v5-c-button, .pf-v5-c-page__header .pf-v5-c-button { @@ -3122,7 +3092,7 @@ label.pf-v5-c-check, } .pf-v5-c-page { display: grid; - grid-template-areas: "header" "main"; + grid-template-areas: 'header' 'main'; grid-template-rows: max-content 1fr; grid-template-columns: 1fr; height: 100vh; @@ -3132,7 +3102,7 @@ label.pf-v5-c-check, } @media (min-width: 876px) { .pf-v5-c-page { - grid-template-areas: "header header" "nav main"; + grid-template-areas: 'header header' 'nav main'; grid-template-columns: max-content 1fr; } } @@ -3243,7 +3213,7 @@ label.pf-v5-c-check, inset: 0; width: var(--pf-v5-c-page__header-tools--c-button--m-selected--before--Width); height: var(--pf-v5-c-page__header-tools--c-button--m-selected--before--Height); - content: ""; + content: ''; } .pf-v5-c-page__header-tools-item.pf-m-selected .pf-v5-c-button .pf-v5-c-notification-badge.pf-m-unread { --pf-v5-c-notification-badge--after--BackgroundColor: var(--pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-unread--after--BackgroundColor); @@ -3276,7 +3246,7 @@ label.pf-v5-c-check, transition: var(--pf-v5-c-page__sidebar--Transition); transform: translateX(var(--pf-v5-c-page__sidebar--TranslateX)) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-page__sidebar { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-page__sidebar { transform: translateX(calc(var(--pf-v5-c-page__sidebar--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ)); } .pf-v5-c-page__sidebar.pf-m-expanded { @@ -3716,7 +3686,7 @@ label.pf-v5-c-check, .pf-v5-c-page__main-section.pf-m-light-100 { --pf-v5-c-page__main-section--BackgroundColor: var(--pf-v5-c-page__main-section--m-light-100--BackgroundColor); } -.pf-v5-c-page__main-section[class*=pf-m-dark-] { +.pf-v5-c-page__main-section[class*='pf-m-dark-'] { color: var(--pf-v5-global--Color--100); } .pf-v5-c-page__main-section.pf-m-dark-100 { @@ -3897,7 +3867,7 @@ label.pf-v5-c-check, flex: 1 0 auto; } :where(.pf-v5-theme-dark) .pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector .pf-v5-c-button, -:where(.pf-v5-theme-dark) .pf-v5-c-page__main-section[class*=pf-m-dark-] .pf-v5-c-button, +:where(.pf-v5-theme-dark) .pf-v5-c-page__main-section[class*='pf-m-dark-'] .pf-v5-c-button, :where(.pf-v5-theme-dark) .pf-v5-c-page__header .pf-v5-c-button { --pf-v5-c-button--m-primary--BackgroundColor: var(--pf-v5-global--primary-color--300); } @@ -3936,7 +3906,7 @@ label.pf-v5-c-check, --pf-v5-c-page__main-section--BackgroundColor: var(--pf-v5-global--BackgroundColor--300); } :where(.pf-v5-theme-dark) .pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector, -:where(.pf-v5-theme-dark) .pf-v5-c-page__main-section[class*=pf-m-dark-], +:where(.pf-v5-theme-dark) .pf-v5-c-page__main-section[class*='pf-m-dark-'], :where(.pf-v5-theme-dark) .pf-v5-c-page__header { color: var(--pf-v5-global--Color--100); } @@ -3955,11 +3925,7 @@ label.pf-v5-c-check, --pf-v5-c-drawer__panel--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); --pf-v5-c-drawer__panel--m-light-200--BackgroundColor: var(--pf-v5-global--BackgroundColor--200); --pf-v5-c-drawer__panel--TransitionDuration: var(--pf-v5-global--TransitionDuration); - --pf-v5-c-drawer__panel--TransitionProperty: - margin, - transform, - box-shadow, - flex-basis; + --pf-v5-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis; --pf-v5-c-drawer__panel--FlexBasis: 100%; --pf-v5-c-drawer__panel--md--FlexBasis--min: 1.5rem; --pf-v5-c-drawer__panel--md--FlexBasis: 50%; @@ -4076,10 +4042,10 @@ label.pf-v5-c-check, --pf-v5-c-drawer__panel--MinHeight: var(--pf-v5-c-drawer--m-panel-bottom__panel--xl--MinHeight); } } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer { --pf-v5-c-drawer--m-expanded__panel--BoxShadow: var(--pf-v5-global--BoxShadow--lg-right); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer { --pf-v5-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-v5-global--BoxShadow--lg-left); } .pf-v5-c-drawer.pf-m-inline > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable), @@ -4091,7 +4057,7 @@ label.pf-v5-c-check, margin-inline-end: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(-100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__content { @@ -4103,7 +4069,7 @@ label.pf-v5-c-check, .pf-v5-c-drawer.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(-100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-expanded.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4179,7 +4145,7 @@ label.pf-v5-c-check, inset-inline-start: 0; width: var(--pf-v5-c-drawer__panel--after--Width); height: 100%; - content: ""; + content: ''; background-color: var(--pf-v5-c-drawer__panel--after--BackgroundColor); } .pf-v5-c-drawer__panel.pf-m-no-background { @@ -4190,7 +4156,10 @@ label.pf-v5-c-check, } @media screen and (min-width: 428px) { .pf-v5-c-drawer__panel { - --pf-v5-c-drawer__panel--FlexBasis: max( var(--pf-v5-c-drawer__panel--md--FlexBasis--min), min(var(--pf-v5-c-drawer__panel--md--FlexBasis), var(--pf-v5-c-drawer__panel--md--FlexBasis--max)) ); + --pf-v5-c-drawer__panel--FlexBasis: max( + var(--pf-v5-c-drawer__panel--md--FlexBasis--min), + min(var(--pf-v5-c-drawer__panel--md--FlexBasis), var(--pf-v5-c-drawer__panel--md--FlexBasis--max)) + ); } } @media screen and (min-width: 876px) { @@ -4290,7 +4259,7 @@ label.pf-v5-c-check, inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: solid var(--pf-v5-c-drawer__splitter--after--BorderColor); border-block-start-width: var(--pf-v5-c-drawer__splitter--after--BorderTopWidth); border-block-end-width: var(--pf-v5-c-drawer__splitter--after--BorderBottomWidth); @@ -4303,14 +4272,14 @@ label.pf-v5-c-check, inset-inline-start: var(--pf-v5-c-drawer__splitter-handle--Left); transform: translate(-50%, -50%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer__splitter-handle { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer__splitter-handle { transform: translate(calc(-50% * var(--pf-v5-global--inverse--multiplier)), -50%); } .pf-v5-c-drawer__splitter-handle::after { display: block; width: var(--pf-v5-c-drawer__splitter-handle--after--Width); height: var(--pf-v5-c-drawer__splitter-handle--after--Height); - content: ""; + content: ''; border-color: var(--pf-v5-c-drawer__splitter-handle--after--BorderColor); border-style: solid; border-block-start-width: var(--pf-v5-c-drawer__splitter-handle--after--BorderTopWidth); @@ -4512,7 +4481,7 @@ label.pf-v5-c-check, margin-inline-start: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4527,7 +4496,7 @@ label.pf-v5-c-check, margin-inline-end: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(-100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline.pf-m-panel-left.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4579,7 +4548,7 @@ label.pf-v5-c-check, margin-inline-start: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-lg > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-lg > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-lg.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4594,7 +4563,7 @@ label.pf-v5-c-check, margin-inline-end: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(-100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-lg.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-lg.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-lg.pf-m-panel-left.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4646,7 +4615,7 @@ label.pf-v5-c-check, margin-inline-start: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-xl > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-xl > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-xl.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4661,7 +4630,7 @@ label.pf-v5-c-check, margin-inline-end: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(-100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-xl.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-xl.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-xl.pf-m-panel-left.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4713,7 +4682,7 @@ label.pf-v5-c-check, margin-inline-start: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-2xl > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-2xl > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-2xl.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4728,7 +4697,7 @@ label.pf-v5-c-check, margin-inline-end: calc(var(--pf-v5-c-drawer__panel--FlexBasis) * -1); transform: translateX(-100%); } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left.pf-m-expanded > .pf-v5-c-drawer__main > .pf-v5-c-drawer__panel { @@ -4944,7 +4913,7 @@ label.pf-v5-c-check, line-height: 1; color: var(--pf-v5-c-breadcrumb__item-divider--Color); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-breadcrumb__item-divider { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-breadcrumb__item-divider { scale: -1 1; } .pf-v5-c-breadcrumb__link { @@ -5080,7 +5049,7 @@ button.pf-v5-c-breadcrumb__link { justify-self: center; width: var(--pf-v5-c-divider--after--Width); height: var(--pf-v5-c-divider--after--Height); - content: ""; + content: ''; background-color: var(--pf-v5-c-divider--after--BackgroundColor); } .pf-v5-c-divider.pf-m-vertical { @@ -5574,7 +5543,8 @@ button.pf-v5-c-breadcrumb__link { --pf-v5-c-menu--m-drilldown--c-menu--Transition: transform var(--pf-v5-c-menu--m-drilldown--c-menu--TransitionDuration--transform); --pf-v5-c-menu--m-drilldown__content--TransitionDuration--height: var(--pf-v5-global--TransitionDuration); --pf-v5-c-menu--m-drilldown__content--TransitionDuration--transform: var(--pf-v5-global--TransitionDuration); - --pf-v5-c-menu--m-drilldown__content--Transition: transform var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--transform), height var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--height); + --pf-v5-c-menu--m-drilldown__content--Transition: transform var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--transform), + height var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--height); --pf-v5-c-menu--m-drilldown__list--TransitionDuration--transform: var(--pf-v5-global--TransitionDuration); --pf-v5-c-menu--m-drilldown__list--Transition: transform var(--pf-v5-c-menu--m-drilldown__list--TransitionDuration--transform); --pf-v5-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-v5-global--ZIndex--xs); @@ -5665,7 +5635,7 @@ button.pf-v5-c-breadcrumb__link { .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list { transform: translateX(-100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__content > .pf-v5-c-menu__list, +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__content > .pf-v5-c-menu__list, .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } @@ -5680,7 +5650,7 @@ button.pf-v5-c-breadcrumb__link { .pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in { transform: translateX(-100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-menu.pf-m-drilldown .pf-v5-c-menu__list { @@ -5760,7 +5730,7 @@ button.pf-v5-c-breadcrumb__link { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-menu--m-nav__item--before--BorderBottomWidth) solid var(--pf-v5-c-menu--m-nav__item--before--BorderBottomColor); } .pf-v5-c-menu.pf-m-nav .pf-v5-c-menu__item:hover::after, @@ -5769,7 +5739,7 @@ button.pf-v5-c-breadcrumb__link { inset-block-start: var(--pf-v5-c-menu--m-nav__item--hover--after--Top); inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border-inline-start: var(--pf-v5-c-menu--m-nav__item--hover--after--BorderLeftWidth) solid var(--pf-v5-c-menu--m-nav__item--hover--after--BorderLeftColor); } .pf-v5-c-menu.pf-m-nav .pf-v5-c-menu { @@ -5981,7 +5951,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab padding-inline-end: var(--pf-v5-c-menu__item-toggle-icon--PaddingRight); color: var(--pf-v5-c-menu__item-toggle-icon, inherit); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu__item-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-menu__item-toggle-icon { scale: -1 1; } .pf-v5-c-menu__item-text + .pf-v5-c-menu__item-toggle-icon { @@ -6039,7 +6009,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; border-block-start: var(--pf-v5-c-menu__footer--after--BorderTopWidth) solid var(--pf-v5-c-menu__footer--after--BorderTopColor); } :where(.pf-v5-theme-dark) .pf-v5-c-menu { @@ -6132,8 +6102,12 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--active--before--BorderWidth: var(--pf-v5-global--BorderWidth--md); --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth--base: var(--pf-v5-global--BorderWidth--sm); --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor--base: var(--pf-v5-global--primary-color--100); - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor--base); - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth--base); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor: var( + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor--base + ); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var( + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth--base + ); --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--hover--BorderWidth: var(--pf-v5-global--BorderWidth--md); --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--focus--BorderWidth: var(--pf-v5-global--BorderWidth--md); --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--active--BorderWidth: var(--pf-v5-global--BorderWidth--md); @@ -6234,7 +6208,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } .pf-v5-c-dropdown.pf-m-expanded { --pf-v5-c-dropdown__toggle--m-split-button--m-primary--child--BackgroundColor: var(--pf-v5-c-dropdown__toggle--m-split-button--m-primary--child--m-expanded--BackgroundColor); - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var(--pf-v5-c-dropdown--m-expanded__toggle--m-secondary--m-split-button--child--before--BorderWidth); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var( + --pf-v5-c-dropdown--m-expanded__toggle--m-secondary--m-split-button--child--before--BorderWidth + ); } .pf-v5-c-dropdown__toggle { position: relative; @@ -6261,7 +6237,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: var(--pf-v5-c-dropdown__toggle--before--BorderWidth) solid; border-block-start-color: var(--pf-v5-c-dropdown__toggle--before--BorderTopColor); border-block-end-color: var(--pf-v5-c-dropdown__toggle--before--BorderBottomColor); @@ -6320,7 +6296,8 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-dropdown__toggle--m-split-button--m-action__toggle-button--MarginRight: 0; } .pf-v5-c-dropdown__toggle.pf-m-split-button.pf-m-action.pf-m-primary > :not(:first-child) { - border-inline-start: var(--pf-v5-c-dropdown__toggle--m-split-button--m-primary--m-action--child--BorderLeftWidth) solid var(--pf-v5-c-dropdown__toggle--m-split-button--m-primary--m-action--child--BorderLeftColor); + border-inline-start: var(--pf-v5-c-dropdown__toggle--m-split-button--m-primary--m-action--child--BorderLeftWidth) solid + var(--pf-v5-c-dropdown__toggle--m-split-button--m-primary--m-action--child--BorderLeftColor); } .pf-v5-c-dropdown__toggle.pf-m-split-button.pf-m-action.pf-m-primary.pf-m-disabled, .pf-v5-c-dropdown__toggle.pf-m-split-button.pf-m-action.pf-m-primary[disabled] { @@ -6486,16 +6463,23 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-dropdown__toggle--m-secondary--active--before--BorderWidth: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--active--before--BorderWidth); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *::before { - border: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth) solid var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor); + border: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth) solid + var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:hover { - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--hover--BorderWidth); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var( + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--hover--BorderWidth + ); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:focus { - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--focus--BorderWidth); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var( + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--focus--BorderWidth + ); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:active { - --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--active--BorderWidth); + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth: var( + --pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--active--BorderWidth + ); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:first-child::before { border-start-start-radius: var(--pf-v5-c-dropdown__toggle--m-split-button--child--BorderRadius); @@ -6506,7 +6490,8 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab border-end-end-radius: var(--pf-v5-c-dropdown__toggle--m-split-button--child--BorderRadius); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:not(:first-child)::before { - border-inline-start: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth--base) solid var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor--base); + border-inline-start: var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderWidth--base) solid + var(--pf-v5-c-dropdown__toggle--m-secondary--m-split-button--child--before--BorderColor--base); } .pf-v5-c-dropdown__toggle.pf-m-secondary.pf-m-split-button:not(.pf-m-disabled) > *:not(:last-child)::before { border-inline-end: 0; @@ -6908,7 +6893,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-menu-toggle::before { border-style: solid; @@ -7087,8 +7072,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-inline-start: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--after--Left); inset-inline-end: 0; pointer-events: none; - content: ""; - border-block-end: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomWidth) solid var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomColor); + content: ''; + border-block-end: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomWidth) solid + var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomColor); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action:where(:not(.pf-m-primary, .pf-m-secondary, .pf-m-disabled)) > *:hover { --pf-v5-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomWidth: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--hover--after--BorderBottomWidth); @@ -7111,17 +7097,25 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab background-color: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-primary > :where(:not(.pf-m-disabled):not([disabled])):hover { - --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--hover--BackgroundColor); + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var( + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--hover--BackgroundColor + ); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-primary > :where(:not(.pf-m-disabled):not([disabled])):focus { - --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--focus--BackgroundColor); + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var( + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--focus--BackgroundColor + ); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-primary > :where(:not(.pf-m-disabled):not([disabled])):active, .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-primary > :where(:not(.pf-m-disabled):not([disabled])).pf-m-active { - --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--active--BackgroundColor); + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var( + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--active--BackgroundColor + ); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-primary.pf-m-expanded { - --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--m-expanded--child--BackgroundColor); + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor: var( + --pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--m-expanded--child--BackgroundColor + ); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action.pf-m-secondary { --pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftColor: var(--pf-v5-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor); @@ -7142,7 +7136,8 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action > :not(:first-child) { --pf-v5-c-menu-toggle--m-split-button--m-action--child--after--Left: calc(var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftWidth) * -1); - border-inline-start: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftWidth) solid var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftColor); + border-inline-start: var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftWidth) solid + var(--pf-v5-c-menu-toggle--m-split-button--m-action--child--BorderLeftColor); } .pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action:not(.pf-m-expanded) { --pf-v5-c-menu-toggle--after--BorderBottomColor: transparent; @@ -7319,10 +7314,15 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-form-control--m-error--after--BorderBottomColor: var(--pf-v5-global--danger-color--100); --pf-v5-c-form-control--m-error--PaddingRight: var(--pf-v5-global--spacer--xl); --pf-v5-c-form-control--m-error--icon--width: var(--pf-v5-c-form-control--FontSize); - --pf-v5-c-form-control--m-icon--PaddingRight: calc(var(--pf-v5-c-form-control--inset--base) + var(--pf-v5-c-form-control--m-icon--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer)); + --pf-v5-c-form-control--m-icon--PaddingRight: calc( + var(--pf-v5-c-form-control--inset--base) + var(--pf-v5-c-form-control--m-icon--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer) + ); --pf-v5-c-form-control--m-icon--icon--width: var(--pf-v5-c-form-control--FontSize); --pf-v5-c-form-control--m-icon--icon--spacer: var(--pf-v5-global--spacer--sm); - --pf-v5-c-form-control--m-icon--icon--PaddingRight: calc(var(--pf-v5-c-form-control--inset--base) + var(--pf-v5-c-form-control--m-error--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer) + var(--pf-v5-c-form-control--m-icon--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer)); + --pf-v5-c-form-control--m-icon--icon--PaddingRight: calc( + var(--pf-v5-c-form-control--inset--base) + var(--pf-v5-c-form-control--m-error--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer) + + var(--pf-v5-c-form-control--m-icon--icon--width) + var(--pf-v5-c-form-control--m-icon--icon--spacer) + ); --pf-v5-c-form-control__select--PaddingRight: var(--pf-v5-global--spacer--lg); --pf-v5-c-form-control__select--PaddingLeft: var(--pf-v5-global--spacer--sm); --pf-v5-c-form-control__select--m-success--m-status--PaddingRight: var(--pf-v5-global--spacer--3xl); @@ -7361,7 +7361,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-form-control::before { border-style: var(--pf-v5-c-form-control--before--BorderStyle, solid); @@ -7375,7 +7375,8 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab border-inline-end-width: var(--pf-v5-c-form-control--before--BorderRightWidth); } .pf-v5-c-form-control::after { - border-block-end: var(--pf-v5-c-form-control--after--BorderBottomWidth) var(--pf-v5-c-form-control--after--BorderStyle, solid) var(--pf-v5-c-form-control--after--BorderBottomColor); + border-block-end: var(--pf-v5-c-form-control--after--BorderBottomWidth) var(--pf-v5-c-form-control--after--BorderStyle, solid) + var(--pf-v5-c-form-control--after--BorderBottomColor); } .pf-v5-c-form-control > :is(input, select, textarea) { grid-row: 1/2; @@ -7540,7 +7541,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-form-control--m-disabled--BackgroundColor: var(--pf-v5-global--disabled-color--200); --pf-v5-c-form-control--m-readonly--BackgroundColor: var(--pf-v5-global--disabled-color--200); --pf-v5-c-form-control--m-readonly--hover--after--BorderBottomColor: var(--pf-v5-global--BorderColor--400); - --pf-v5-c-form-control--m-readonly--focus--after--BorderBottomColor:var(--pf-v5-global--BorderColor--400); + --pf-v5-c-form-control--m-readonly--focus--after--BorderBottomColor: var(--pf-v5-global--BorderColor--400); --pf-v5-c-form-control--m-disabled__toggle-icon--Color: var(--pf-v5-global--disabled-color--300); color: var(--pf-v5-global--Color--100); } @@ -7861,12 +7862,21 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media screen and (min-width: 876px) { .pf-v5-l-flex > * { - order: var(--pf-v5-l-flex--item--Order-on-xl, var(--pf-v5-l-flex--item--Order-on-lg, var(--pf-v5-l-flex--item--Order-on-md, var(--pf-v5-l-flex--item--Order-on-sm, var(--pf-v5-l-flex--item--Order))))); + order: var( + --pf-v5-l-flex--item--Order-on-xl, + var(--pf-v5-l-flex--item--Order-on-lg, var(--pf-v5-l-flex--item--Order-on-md, var(--pf-v5-l-flex--item--Order-on-sm, var(--pf-v5-l-flex--item--Order)))) + ); } } @media screen and (min-width: 1100px) { .pf-v5-l-flex > * { - order: var(--pf-v5-l-flex--item--Order-on-2xl, var(--pf-v5-l-flex--item--Order-on-xl, var(--pf-v5-l-flex--item--Order-on-lg, var(--pf-v5-l-flex--item--Order-on-md, var(--pf-v5-l-flex--item--Order-on-sm, var(--pf-v5-l-flex--item--Order)))))); + order: var( + --pf-v5-l-flex--item--Order-on-2xl, + var( + --pf-v5-l-flex--item--Order-on-xl, + var(--pf-v5-l-flex--item--Order-on-lg, var(--pf-v5-l-flex--item--Order-on-md, var(--pf-v5-l-flex--item--Order-on-sm, var(--pf-v5-l-flex--item--Order)))) + ) + ); } } .pf-v5-l-flex > *:last-child { @@ -9577,7 +9587,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-gap-on-sm, .pf-m-gap-none-on-sm, .pf-m-gap-xs-on-sm, .pf-m-gap-sm-on-sm, .pf-m-gap-md-on-sm, .pf-m-gap-lg-on-sm, .pf-m-gap-xl-on-sm, .pf-m-gap-2xl-on-sm, .pf-m-gap-3xl-on-sm, .pf-m-gap-4xl-on-sm) > * { + .pf-v5-l-flex:is( + .pf-m-gap-on-sm, + .pf-m-gap-none-on-sm, + .pf-m-gap-xs-on-sm, + .pf-m-gap-sm-on-sm, + .pf-m-gap-md-on-sm, + .pf-m-gap-lg-on-sm, + .pf-m-gap-xl-on-sm, + .pf-m-gap-2xl-on-sm, + .pf-m-gap-3xl-on-sm, + .pf-m-gap-4xl-on-sm + ) + > * { --pf-v5-l-flex--spacer--row: 0; --pf-v5-l-flex--spacer--column: 0; } @@ -9623,7 +9645,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-gap-on-md, .pf-m-gap-none-on-md, .pf-m-gap-xs-on-md, .pf-m-gap-sm-on-md, .pf-m-gap-md-on-md, .pf-m-gap-lg-on-md, .pf-m-gap-xl-on-md, .pf-m-gap-2xl-on-md, .pf-m-gap-3xl-on-md, .pf-m-gap-4xl-on-md) > * { + .pf-v5-l-flex:is( + .pf-m-gap-on-md, + .pf-m-gap-none-on-md, + .pf-m-gap-xs-on-md, + .pf-m-gap-sm-on-md, + .pf-m-gap-md-on-md, + .pf-m-gap-lg-on-md, + .pf-m-gap-xl-on-md, + .pf-m-gap-2xl-on-md, + .pf-m-gap-3xl-on-md, + .pf-m-gap-4xl-on-md + ) + > * { --pf-v5-l-flex--spacer--row: 0; --pf-v5-l-flex--spacer--column: 0; } @@ -9669,7 +9703,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-gap-on-lg, .pf-m-gap-none-on-lg, .pf-m-gap-xs-on-lg, .pf-m-gap-sm-on-lg, .pf-m-gap-md-on-lg, .pf-m-gap-lg-on-lg, .pf-m-gap-xl-on-lg, .pf-m-gap-2xl-on-lg, .pf-m-gap-3xl-on-lg, .pf-m-gap-4xl-on-lg) > * { + .pf-v5-l-flex:is( + .pf-m-gap-on-lg, + .pf-m-gap-none-on-lg, + .pf-m-gap-xs-on-lg, + .pf-m-gap-sm-on-lg, + .pf-m-gap-md-on-lg, + .pf-m-gap-lg-on-lg, + .pf-m-gap-xl-on-lg, + .pf-m-gap-2xl-on-lg, + .pf-m-gap-3xl-on-lg, + .pf-m-gap-4xl-on-lg + ) + > * { --pf-v5-l-flex--spacer--row: 0; --pf-v5-l-flex--spacer--column: 0; } @@ -9715,7 +9761,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-gap-on-xl, .pf-m-gap-none-on-xl, .pf-m-gap-xs-on-xl, .pf-m-gap-sm-on-xl, .pf-m-gap-md-on-xl, .pf-m-gap-lg-on-xl, .pf-m-gap-xl-on-xl, .pf-m-gap-2xl-on-xl, .pf-m-gap-3xl-on-xl, .pf-m-gap-4xl-on-xl) > * { + .pf-v5-l-flex:is( + .pf-m-gap-on-xl, + .pf-m-gap-none-on-xl, + .pf-m-gap-xs-on-xl, + .pf-m-gap-sm-on-xl, + .pf-m-gap-md-on-xl, + .pf-m-gap-lg-on-xl, + .pf-m-gap-xl-on-xl, + .pf-m-gap-2xl-on-xl, + .pf-m-gap-3xl-on-xl, + .pf-m-gap-4xl-on-xl + ) + > * { --pf-v5-l-flex--spacer--row: 0; --pf-v5-l-flex--spacer--column: 0; } @@ -9761,7 +9819,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-gap-on-2xl, .pf-m-gap-none-on-2xl, .pf-m-gap-xs-on-2xl, .pf-m-gap-sm-on-2xl, .pf-m-gap-md-on-2xl, .pf-m-gap-lg-on-2xl, .pf-m-gap-xl-on-2xl, .pf-m-gap-2xl-on-2xl, .pf-m-gap-3xl-on-2xl, .pf-m-gap-4xl-on-2xl) > * { + .pf-v5-l-flex:is( + .pf-m-gap-on-2xl, + .pf-m-gap-none-on-2xl, + .pf-m-gap-xs-on-2xl, + .pf-m-gap-sm-on-2xl, + .pf-m-gap-md-on-2xl, + .pf-m-gap-lg-on-2xl, + .pf-m-gap-xl-on-2xl, + .pf-m-gap-2xl-on-2xl, + .pf-m-gap-3xl-on-2xl, + .pf-m-gap-4xl-on-2xl + ) + > * { --pf-v5-l-flex--spacer--row: 0; --pf-v5-l-flex--spacer--column: 0; } @@ -9796,7 +9866,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } -.pf-v5-l-flex:is(.pf-m-row-gap, .pf-m-row-gap-none, .pf-m-row-gap-xs, .pf-m-row-gap-sm, .pf-m-row-gap-md, .pf-m-row-gap-lg, .pf-m-row-gap-xl, .pf-m-row-gap-2xl, .pf-m-row-gap-3xl, .pf-m-row-gap-4xl) > * { +.pf-v5-l-flex:is( + .pf-m-row-gap, + .pf-m-row-gap-none, + .pf-m-row-gap-xs, + .pf-m-row-gap-sm, + .pf-m-row-gap-md, + .pf-m-row-gap-lg, + .pf-m-row-gap-xl, + .pf-m-row-gap-2xl, + .pf-m-row-gap-3xl, + .pf-m-row-gap-4xl + ) + > * { --pf-v5-l-flex--spacer--row: 0; } @media (min-width: 576px) { @@ -9830,7 +9912,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl-on-sm { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-row-gap-on-sm, .pf-m-row-gap-none-on-sm, .pf-m-row-gap-xs-on-sm, .pf-m-row-gap-sm-on-sm, .pf-m-row-gap-md-on-sm, .pf-m-row-gap-lg-on-sm, .pf-m-row-gap-xl-on-sm, .pf-m-row-gap-2xl-on-sm, .pf-m-row-gap-3xl-on-sm, .pf-m-row-gap-4xl-on-sm) > * { + .pf-v5-l-flex:is( + .pf-m-row-gap-on-sm, + .pf-m-row-gap-none-on-sm, + .pf-m-row-gap-xs-on-sm, + .pf-m-row-gap-sm-on-sm, + .pf-m-row-gap-md-on-sm, + .pf-m-row-gap-lg-on-sm, + .pf-m-row-gap-xl-on-sm, + .pf-m-row-gap-2xl-on-sm, + .pf-m-row-gap-3xl-on-sm, + .pf-m-row-gap-4xl-on-sm + ) + > * { --pf-v5-l-flex--spacer--row: 0; } } @@ -9865,7 +9959,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl-on-md { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-row-gap-on-md, .pf-m-row-gap-none-on-md, .pf-m-row-gap-xs-on-md, .pf-m-row-gap-sm-on-md, .pf-m-row-gap-md-on-md, .pf-m-row-gap-lg-on-md, .pf-m-row-gap-xl-on-md, .pf-m-row-gap-2xl-on-md, .pf-m-row-gap-3xl-on-md, .pf-m-row-gap-4xl-on-md) > * { + .pf-v5-l-flex:is( + .pf-m-row-gap-on-md, + .pf-m-row-gap-none-on-md, + .pf-m-row-gap-xs-on-md, + .pf-m-row-gap-sm-on-md, + .pf-m-row-gap-md-on-md, + .pf-m-row-gap-lg-on-md, + .pf-m-row-gap-xl-on-md, + .pf-m-row-gap-2xl-on-md, + .pf-m-row-gap-3xl-on-md, + .pf-m-row-gap-4xl-on-md + ) + > * { --pf-v5-l-flex--spacer--row: 0; } } @@ -9900,7 +10006,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl-on-lg { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-row-gap-on-lg, .pf-m-row-gap-none-on-lg, .pf-m-row-gap-xs-on-lg, .pf-m-row-gap-sm-on-lg, .pf-m-row-gap-md-on-lg, .pf-m-row-gap-lg-on-lg, .pf-m-row-gap-xl-on-lg, .pf-m-row-gap-2xl-on-lg, .pf-m-row-gap-3xl-on-lg, .pf-m-row-gap-4xl-on-lg) > * { + .pf-v5-l-flex:is( + .pf-m-row-gap-on-lg, + .pf-m-row-gap-none-on-lg, + .pf-m-row-gap-xs-on-lg, + .pf-m-row-gap-sm-on-lg, + .pf-m-row-gap-md-on-lg, + .pf-m-row-gap-lg-on-lg, + .pf-m-row-gap-xl-on-lg, + .pf-m-row-gap-2xl-on-lg, + .pf-m-row-gap-3xl-on-lg, + .pf-m-row-gap-4xl-on-lg + ) + > * { --pf-v5-l-flex--spacer--row: 0; } } @@ -9935,7 +10053,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl-on-xl { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-row-gap-on-xl, .pf-m-row-gap-none-on-xl, .pf-m-row-gap-xs-on-xl, .pf-m-row-gap-sm-on-xl, .pf-m-row-gap-md-on-xl, .pf-m-row-gap-lg-on-xl, .pf-m-row-gap-xl-on-xl, .pf-m-row-gap-2xl-on-xl, .pf-m-row-gap-3xl-on-xl, .pf-m-row-gap-4xl-on-xl) > * { + .pf-v5-l-flex:is( + .pf-m-row-gap-on-xl, + .pf-m-row-gap-none-on-xl, + .pf-m-row-gap-xs-on-xl, + .pf-m-row-gap-sm-on-xl, + .pf-m-row-gap-md-on-xl, + .pf-m-row-gap-lg-on-xl, + .pf-m-row-gap-xl-on-xl, + .pf-m-row-gap-2xl-on-xl, + .pf-m-row-gap-3xl-on-xl, + .pf-m-row-gap-4xl-on-xl + ) + > * { --pf-v5-l-flex--spacer--row: 0; } } @@ -9970,7 +10100,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-row-gap-4xl-on-2xl { --pf-v5-l-flex--RowGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-row-gap-on-2xl, .pf-m-row-gap-none-on-2xl, .pf-m-row-gap-xs-on-2xl, .pf-m-row-gap-sm-on-2xl, .pf-m-row-gap-md-on-2xl, .pf-m-row-gap-lg-on-2xl, .pf-m-row-gap-xl-on-2xl, .pf-m-row-gap-2xl-on-2xl, .pf-m-row-gap-3xl-on-2xl, .pf-m-row-gap-4xl-on-2xl) > * { + .pf-v5-l-flex:is( + .pf-m-row-gap-on-2xl, + .pf-m-row-gap-none-on-2xl, + .pf-m-row-gap-xs-on-2xl, + .pf-m-row-gap-sm-on-2xl, + .pf-m-row-gap-md-on-2xl, + .pf-m-row-gap-lg-on-2xl, + .pf-m-row-gap-xl-on-2xl, + .pf-m-row-gap-2xl-on-2xl, + .pf-m-row-gap-3xl-on-2xl, + .pf-m-row-gap-4xl-on-2xl + ) + > * { --pf-v5-l-flex--spacer--row: 0; } } @@ -10004,7 +10146,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } -.pf-v5-l-flex:is(.pf-m-column-gap, .pf-m-column-gap-none, .pf-m-column-gap-xs, .pf-m-column-gap-sm, .pf-m-column-gap-md, .pf-m-column-gap-lg, .pf-m-column-gap-xl, .pf-m-column-gap-2xl, .pf-m-column-gap-3xl, .pf-m-column-gap-4xl) > * { +.pf-v5-l-flex:is( + .pf-m-column-gap, + .pf-m-column-gap-none, + .pf-m-column-gap-xs, + .pf-m-column-gap-sm, + .pf-m-column-gap-md, + .pf-m-column-gap-lg, + .pf-m-column-gap-xl, + .pf-m-column-gap-2xl, + .pf-m-column-gap-3xl, + .pf-m-column-gap-4xl + ) + > * { --pf-v5-l-flex--spacer--column: 0; } @media (min-width: 576px) { @@ -10038,7 +10192,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl-on-sm { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-column-gap-on-sm, .pf-m-column-gap-none-on-sm, .pf-m-column-gap-xs-on-sm, .pf-m-column-gap-sm-on-sm, .pf-m-column-gap-md-on-sm, .pf-m-column-gap-lg-on-sm, .pf-m-column-gap-xl-on-sm, .pf-m-column-gap-2xl-on-sm, .pf-m-column-gap-3xl-on-sm, .pf-m-column-gap-4xl-on-sm) > * { + .pf-v5-l-flex:is( + .pf-m-column-gap-on-sm, + .pf-m-column-gap-none-on-sm, + .pf-m-column-gap-xs-on-sm, + .pf-m-column-gap-sm-on-sm, + .pf-m-column-gap-md-on-sm, + .pf-m-column-gap-lg-on-sm, + .pf-m-column-gap-xl-on-sm, + .pf-m-column-gap-2xl-on-sm, + .pf-m-column-gap-3xl-on-sm, + .pf-m-column-gap-4xl-on-sm + ) + > * { --pf-v5-l-flex--spacer--column: 0; } } @@ -10073,7 +10239,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl-on-md { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-column-gap-on-md, .pf-m-column-gap-none-on-md, .pf-m-column-gap-xs-on-md, .pf-m-column-gap-sm-on-md, .pf-m-column-gap-md-on-md, .pf-m-column-gap-lg-on-md, .pf-m-column-gap-xl-on-md, .pf-m-column-gap-2xl-on-md, .pf-m-column-gap-3xl-on-md, .pf-m-column-gap-4xl-on-md) > * { + .pf-v5-l-flex:is( + .pf-m-column-gap-on-md, + .pf-m-column-gap-none-on-md, + .pf-m-column-gap-xs-on-md, + .pf-m-column-gap-sm-on-md, + .pf-m-column-gap-md-on-md, + .pf-m-column-gap-lg-on-md, + .pf-m-column-gap-xl-on-md, + .pf-m-column-gap-2xl-on-md, + .pf-m-column-gap-3xl-on-md, + .pf-m-column-gap-4xl-on-md + ) + > * { --pf-v5-l-flex--spacer--column: 0; } } @@ -10108,7 +10286,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl-on-lg { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-column-gap-on-lg, .pf-m-column-gap-none-on-lg, .pf-m-column-gap-xs-on-lg, .pf-m-column-gap-sm-on-lg, .pf-m-column-gap-md-on-lg, .pf-m-column-gap-lg-on-lg, .pf-m-column-gap-xl-on-lg, .pf-m-column-gap-2xl-on-lg, .pf-m-column-gap-3xl-on-lg, .pf-m-column-gap-4xl-on-lg) > * { + .pf-v5-l-flex:is( + .pf-m-column-gap-on-lg, + .pf-m-column-gap-none-on-lg, + .pf-m-column-gap-xs-on-lg, + .pf-m-column-gap-sm-on-lg, + .pf-m-column-gap-md-on-lg, + .pf-m-column-gap-lg-on-lg, + .pf-m-column-gap-xl-on-lg, + .pf-m-column-gap-2xl-on-lg, + .pf-m-column-gap-3xl-on-lg, + .pf-m-column-gap-4xl-on-lg + ) + > * { --pf-v5-l-flex--spacer--column: 0; } } @@ -10143,7 +10333,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl-on-xl { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-column-gap-on-xl, .pf-m-column-gap-none-on-xl, .pf-m-column-gap-xs-on-xl, .pf-m-column-gap-sm-on-xl, .pf-m-column-gap-md-on-xl, .pf-m-column-gap-lg-on-xl, .pf-m-column-gap-xl-on-xl, .pf-m-column-gap-2xl-on-xl, .pf-m-column-gap-3xl-on-xl, .pf-m-column-gap-4xl-on-xl) > * { + .pf-v5-l-flex:is( + .pf-m-column-gap-on-xl, + .pf-m-column-gap-none-on-xl, + .pf-m-column-gap-xs-on-xl, + .pf-m-column-gap-sm-on-xl, + .pf-m-column-gap-md-on-xl, + .pf-m-column-gap-lg-on-xl, + .pf-m-column-gap-xl-on-xl, + .pf-m-column-gap-2xl-on-xl, + .pf-m-column-gap-3xl-on-xl, + .pf-m-column-gap-4xl-on-xl + ) + > * { --pf-v5-l-flex--spacer--column: 0; } } @@ -10178,7 +10380,19 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-l-flex.pf-m-column-gap-4xl-on-2xl { --pf-v5-l-flex--ColumnGap: var(--pf-v5-global--spacer--4xl); } - .pf-v5-l-flex:is(.pf-m-column-gap-on-2xl, .pf-m-column-gap-none-on-2xl, .pf-m-column-gap-xs-on-2xl, .pf-m-column-gap-sm-on-2xl, .pf-m-column-gap-md-on-2xl, .pf-m-column-gap-lg-on-2xl, .pf-m-column-gap-xl-on-2xl, .pf-m-column-gap-2xl-on-2xl, .pf-m-column-gap-3xl-on-2xl, .pf-m-column-gap-4xl-on-2xl) > * { + .pf-v5-l-flex:is( + .pf-m-column-gap-on-2xl, + .pf-m-column-gap-none-on-2xl, + .pf-m-column-gap-xs-on-2xl, + .pf-m-column-gap-sm-on-2xl, + .pf-m-column-gap-md-on-2xl, + .pf-m-column-gap-lg-on-2xl, + .pf-m-column-gap-xl-on-2xl, + .pf-m-column-gap-2xl-on-2xl, + .pf-m-column-gap-3xl-on-2xl, + .pf-m-column-gap-4xl-on-2xl + ) + > * { --pf-v5-l-flex--spacer--column: 0; } } @@ -10259,7 +10473,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__thead--cell--FontWeight: var(--pf-v5-global--FontWeight--bold); --pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-v5-global--spacer--lg); --pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-v5-global--spacer--lg); - --pf-v5-c-table__tr--BoxShadow--top--base: 0 -0.1875rem 0.25rem -0.125rem rgba(3,3,3,.08); + --pf-v5-c-table__tr--BoxShadow--top--base: 0 -0.1875rem 0.25rem -0.125rem rgba(3, 3, 3, 0.08); --pf-v5-c-table--cell--Padding--base: var(--pf-v5-global--spacer--md); --pf-v5-c-table--cell--FontSize: var(--pf-v5-global--FontSize--md); --pf-v5-c-table--cell--FontWeight: var(--pf-v5-global--FontWeight--normal); @@ -10291,7 +10505,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__toggle--c-button--MarginTop: calc(0.375rem * -1); --pf-v5-c-table__toggle--c-button--MarginBottom: calc(0.375rem * -1); --pf-v5-c-table__toggle--c-button__toggle-icon--Rotate: 270deg; - --pf-v5-c-table__toggle--c-button__toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-table__toggle--c-button__toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: 360deg; --pf-v5-c-table__button--BackgroundColor: transparent; --pf-v5-c-table__button--Color: var(--pf-v5-global--Color--100); @@ -10320,7 +10534,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__draggable--c-button--MarginRight: calc(var(--pf-v5-global--spacer--md) * -1); --pf-v5-c-table__draggable--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1); --pf-v5-c-table__draggable--c-button--MarginLeft: calc(var(--pf-v5-global--spacer--md) * -1); - --pf-v5-c-table__tr--m-ghost-row--Opacity: .4; + --pf-v5-c-table__tr--m-ghost-row--Opacity: 0.4; --pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); --pf-v5-c-table__action--PaddingTop: 0; --pf-v5-c-table__action--PaddingRight: 0; @@ -10341,7 +10555,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__expandable-row--after--BorderLeftWidth: 0; --pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-v5-global--active-color--100); --pf-v5-c-table__icon-inline--MarginRight: var(--pf-v5-global--spacer--sm); - --pf-v5-c-table__sort--MinWidth: calc(6ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft) + var(--pf-v5-c-table__sort-indicator--MarginLeft)); + --pf-v5-c-table__sort--MinWidth: calc( + 6ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft) + var(--pf-v5-c-table__sort-indicator--MarginLeft) + ); --pf-v5-c-table__sort__button--PaddingTop: var(--pf-v5-global--spacer--form-element); --pf-v5-c-table__sort__button--PaddingRight: var(--pf-v5-global--spacer--sm); --pf-v5-c-table__sort__button--PaddingBottom: var(--pf-v5-global--spacer--form-element); @@ -10489,7 +10705,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-v5-c-table.pf-m-sticky-header > .pf-m-nested-column-header { @@ -10577,7 +10793,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *.pf-m-border-right::before { border-inline-end: var(--pf-v5-c-table--cell--m-border-right--before--BorderRightWidth) solid var(--pf-v5-c-table--cell--m-border-right--before--BorderRightColor); @@ -10632,7 +10848,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: var(--pf-v5-c-table__expandable-row--after--Top); inset-block-end: var(--pf-v5-c-table__expandable-row--after--Bottom); inset-inline-start: 0; - content: ""; + content: ''; background-color: transparent; border-inline-start: var(--pf-v5-c-table__expandable-row--after--BorderLeftWidth) solid var(--pf-v5-c-table__expandable-row--after--BorderColor); } @@ -10655,7 +10871,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab min-width: var(--pf-v5-c-table__th--m-help--MinWidth); } .pf-v5-c-table > thead, -.pf-v5-c-table :where([class*=pf-v5-c-table]).pf-m-truncate, +.pf-v5-c-table :where([class*='pf-v5-c-table']).pf-m-truncate, :where(.pf-v5-c-table) > :is(thead, tbody).pf-m-truncate { --pf-v5-c-table--cell--MinWidth: var(--pf-v5-c-table--m-truncate--cell--MinWidth); --pf-v5-c-table--cell--MaxWidth: var(--pf-v5-c-table--m-truncate--cell--MaxWidth); @@ -10663,7 +10879,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table--cell--TextOverflow: ellipsis; --pf-v5-c-table--cell--WhiteSpace: nowrap; } -.pf-v5-c-table :where([class*=pf-v5-c-table]).pf-m-wrap, +.pf-v5-c-table :where([class*='pf-v5-c-table']).pf-m-wrap, :where(.pf-v5-c-table) > :is(thead, tbody).pf-m-wrap { --pf-v5-c-table--cell--MinWidth: 0; --pf-v5-c-table--cell--MaxWidth: none; @@ -10671,7 +10887,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table--cell--TextOverflow: clip; --pf-v5-c-table--cell--WhiteSpace: normal; } -.pf-v5-c-table :where([class*=pf-v5-c-table]).pf-m-nowrap, +.pf-v5-c-table :where([class*='pf-v5-c-table']).pf-m-nowrap, :where(.pf-v5-c-table) > :is(thead, tbody).pf-m-nowrap { --pf-v5-c-table--cell--MinWidth: 0; --pf-v5-c-table--cell--MaxWidth: none; @@ -10679,8 +10895,8 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table--cell--TextOverflow: clip; --pf-v5-c-table--cell--WhiteSpace: nowrap; } -.pf-v5-c-table :where([class*=pf-v5-c-table]) .pf-v5-c-table__icon, -.pf-v5-c-table :where([class*=pf-v5-c-table]).pf-m-fit-content, +.pf-v5-c-table :where([class*='pf-v5-c-table']) .pf-v5-c-table__icon, +.pf-v5-c-table :where([class*='pf-v5-c-table']).pf-m-fit-content, :where(.pf-v5-c-table) > :is(thead, tbody) .pf-v5-c-table__icon, :where(.pf-v5-c-table) > :is(thead, tbody).pf-m-fit-content { --pf-v5-c-table--cell--MinWidth: fit-content; @@ -10690,7 +10906,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table--cell--TextOverflow: clip; --pf-v5-c-table--cell--WhiteSpace: nowrap; } -.pf-v5-c-table :where([class*=pf-v5-c-table]).pf-m-break-word, +.pf-v5-c-table :where([class*='pf-v5-c-table']).pf-m-break-word, :where(.pf-v5-c-table) > :is(thead, tbody).pf-m-break-word { --pf-v5-c-table--cell--WordBreak: break-word; --pf-v5-c-table--cell--WhiteSpace: normal; @@ -10841,7 +11057,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-inline-start: 0; inset-inline-end: 0; cursor: pointer; - content: ""; + content: ''; } .pf-v5-c-table__button:hover { color: var(--pf-v5-c-table__button--hover--Color); @@ -10935,7 +11151,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab transition: var(--pf-v5-c-table__toggle--c-button__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-table__toggle--c-button__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-table__toggle .pf-v5-c-table__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-table__toggle .pf-v5-c-table__toggle-icon { scale: -1 1; } .pf-v5-c-table__toggle svg { @@ -11021,7 +11237,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button::after { position: absolute; inset-inline-end: 0; - content: ""; + content: ''; border-style: solid; border-width: 0; } @@ -11512,10 +11728,11 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab border: 0; } .pf-v5-c-select__toggle::before { - --pf-v5-c-select__toggle--before--BorderWidth-base: var(--pf-v5-c-select__toggle--before--BorderTopWidth) var(--pf-v5-c-select__toggle--before--BorderRightWidth) var(--pf-v5-c-select__toggle--before--BorderBottomWidth) var(--pf-v5-c-select__toggle--before--BorderLeftWidth); + --pf-v5-c-select__toggle--before--BorderWidth-base: var(--pf-v5-c-select__toggle--before--BorderTopWidth) var(--pf-v5-c-select__toggle--before--BorderRightWidth) + var(--pf-v5-c-select__toggle--before--BorderBottomWidth) var(--pf-v5-c-select__toggle--before--BorderLeftWidth); position: absolute; inset: 0; - content: ""; + content: ''; border-style: solid; border-width: var(--pf-v5-c-select__toggle--before--BorderWidth, var(--pf-v5-c-select__toggle--before--BorderWidth-base)); border-block-start-color: var(--pf-v5-c-select__toggle--before--BorderTopColor); @@ -11867,10 +12084,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-form--m-horizontal__group-label--md--GridColumnGap: var(--pf-v5-global--spacer--md); --pf-v5-c-form--m-horizontal__group-control--md--GridColumnWidth: 1fr; --pf-v5-c-form--m-limit-width--MaxWidth: 55rem; - --pf-v5-c-form--m-horizontal__group-label--md--PaddingTop: calc((((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md)) + (2 * var(--pf-v5-global--BorderWidth--sm))) - var(--pf-v5-global--FontSize--md)) / 2) + var(--pf-v5-global--FontSize--md)) - ((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) + var(--pf-v5-global--BorderWidth--sm)); + --pf-v5-c-form--m-horizontal__group-label--md--PaddingTop: calc( + ( + ((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md)) + (2 * var(--pf-v5-global--BorderWidth--sm))) - var(--pf-v5-global--FontSize--md)) / 2) + + var(--pf-v5-global--FontSize--md) + ) - + ((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) + + var(--pf-v5-global--BorderWidth--sm) + ); --pf-v5-c-form__group-label--PaddingBottom: var(--pf-v5-global--spacer--sm); --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--PaddingTop: 0; - --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--TranslateY: calc(((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) - ((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--md)) / 2) + var(--pf-v5-global--FontSize--md))); + --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--TranslateY: calc( + ((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) - + ((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--md)) / 2) + var(--pf-v5-global--FontSize--md)) + ); --pf-v5-c-form__label--FontSize: var(--pf-v5-global--FontSize--sm); --pf-v5-c-form__label--LineHeight: var(--pf-v5-global--LineHeight--sm); --pf-v5-c-form__label--m-disabled--Color: var(--pf-v5-global--disabled-color--100); @@ -11929,7 +12156,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-form__field-group--BorderBottomWidth: var(--pf-v5-c-form__field-group--border-width-base); --pf-v5-c-form__field-group--BorderBottomColor: var(--pf-v5-global--BorderColor--100); --pf-v5-c-form__field-group--field-group--MarginTop: calc(var(--pf-v5-c-form--GridGap) * -1); - --pf-v5-c-form__field-group--GridTemplateColumns--toggle: calc(var(--pf-v5-global--spacer--md) * 2 + var(--pf-v5-c-form__field-group-toggle-icon--MinWidth) + var(--pf-v5-global--spacer--xs)); + --pf-v5-c-form__field-group--GridTemplateColumns--toggle: calc( + var(--pf-v5-global--spacer--md) * 2 + var(--pf-v5-c-form__field-group-toggle-icon--MinWidth) + var(--pf-v5-global--spacer--xs) + ); --pf-v5-c-form__field-group-toggle--PaddingTop: var(--pf-v5-global--spacer--md); --pf-v5-c-form__field-group-toggle--PaddingRight: var(--pf-v5-global--spacer--xs); --pf-v5-c-form__field-group__field-group__field-group-toggle--PaddingTop: var(--pf-v5-global--spacer--lg); @@ -12361,7 +12590,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab transition: var(--pf-v5-c-form__field-group-toggle-icon--Transition); transform: rotate(var(--pf-v5-c-form__field-group-toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-form__field-group-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-form__field-group-toggle-icon { scale: -1 1; } .pf-v5-c-form__field-group-header { @@ -12471,7 +12700,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: var(--pf-v5-c-chip--before--BorderWidth) solid var(--pf-v5-c-chip--before--BorderColor); border-radius: var(--pf-v5-c-chip--before--BorderRadius); } @@ -12882,7 +13111,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } /* node_modules/@patternfly/react-styles/css/components/Table/table-grid.css */ -.pf-v5-c-table[class*=pf-m-grid] { +.pf-v5-c-table[class*='pf-m-grid'] { --pf-v5-c-table--responsive--BorderColor: var(--pf-v5-global--BorderColor--300); --pf-v5-c-table__tbody--responsive--border-width--base: var(--pf-v5-global--spacer--sm); --pf-v5-c-table__tbody--after--border-width--base: var(--pf-v5-global--BorderWidth--lg); @@ -12939,18 +13168,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table--m-grid__action--MarginTop: 0.375rem; --pf-v5-c-table__action--responsive--MarginLeft: var(--pf-v5-global--spacer--xl); --pf-v5-c-table--m-grid__favorite--action--MarginLeft: var(--pf-v5-global--spacer--2xl); - --pf-v5-c-table--m-grid__check--favorite--action--MarginLeft: calc(var(--pf-v5-c-table--m-grid__check--favorite--MarginLeft) + var(--pf-v5-c-table--m-grid__favorite--action--MarginLeft)); - --pf-v5-c-table__toggle__icon--Transition: .2s ease-in 0s; + --pf-v5-c-table--m-grid__check--favorite--action--MarginLeft: calc( + var(--pf-v5-c-table--m-grid__check--favorite--MarginLeft) + var(--pf-v5-c-table--m-grid__favorite--action--MarginLeft) + ); + --pf-v5-c-table__toggle__icon--Transition: 0.2s ease-in 0s; --pf-v5-c-table__toggle--m-expanded__icon--Rotate: 180deg; } @media screen and (max-width: 876px) { - .pf-v5-c-table[class*=pf-m-grid] { + .pf-v5-c-table[class*='pf-m-grid'] { --pf-v5-c-table__tr--responsive--PaddingRight: var(--pf-v5-c-table__tr--responsive--xl--PaddingRight); --pf-v5-c-table__tr--responsive--PaddingLeft: var(--pf-v5-c-table__tr--responsive--xl--PaddingLeft); } } @media screen and (max-width: 876px) { - .pf-v5-c-table[class*=pf-m-grid] { + .pf-v5-c-table[class*='pf-m-grid'] { --pf-v5-c-table__expandable-row-content--responsive--PaddingRight: var(--pf-v5-c-table__expandable-row-content--responsive--xl--PaddingRight); --pf-v5-c-table__expandable-row-content--responsive--PaddingLeft: var(--pf-v5-c-table__expandable-row-content--responsive--xl--PaddingLeft); } @@ -13098,7 +13329,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: 0; inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border: 0; border-inline-start: var(--pf-v5-c-table__tbody--after--BorderLeftWidth) solid var(--pf-v5-c-table__tbody--after--BorderColor); } @@ -13157,7 +13388,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: relative; } .pf-m-grid.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-hoverable > tr:where(.pf-v5-c-table__tr)::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13174,7 +13405,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tbody--after__tr--BorderLeftColor: var(--pf-v5-c-table__tbody--m-selected--after__tr--BorderLeftColor); } .pf-m-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13255,17 +13486,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-button.pf-m-expanded > .pf-m-grid.pf-v5-c-table .pf-v5-c-table__toggle-icon { transform: rotate(var(--pf-v5-c-table__toggle--m-expanded__icon--Rotate)); } -.pf-m-grid.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { +.pf-m-grid.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { --pf-v5-c-table--cell--Overflow: auto; } -.pf-m-grid.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { +.pf-m-grid.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { width: auto; white-space: normal; } -.pf-m-grid.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { +.pf-m-grid.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { --pf-v5-c-table--cell--MaxWidth: 100%; } -.pf-m-grid.pf-v5-c-table [class*=pf-m-width] { +.pf-m-grid.pf-v5-c-table [class*='pf-m-width'] { --pf-v5-c-table--cell--Width: auto; } @media screen and (max-width: 428px) { @@ -13412,7 +13646,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: 0; inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border: 0; border-inline-start: var(--pf-v5-c-table__tbody--after--BorderLeftWidth) solid var(--pf-v5-c-table__tbody--after--BorderColor); } @@ -13471,7 +13705,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: relative; } .pf-m-grid-md.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-hoverable > tr:where(.pf-v5-c-table__tr)::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13488,7 +13722,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tbody--after__tr--BorderLeftColor: var(--pf-v5-c-table__tbody--m-selected--after__tr--BorderLeftColor); } .pf-m-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13571,17 +13805,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-button.pf-m-expanded > .pf-m-grid-md.pf-v5-c-table .pf-v5-c-table__toggle-icon { transform: rotate(var(--pf-v5-c-table__toggle--m-expanded__icon--Rotate)); } - .pf-m-grid-md.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { + .pf-m-grid-md.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { --pf-v5-c-table--cell--Overflow: auto; } - .pf-m-grid-md.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { + .pf-m-grid-md.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { width: auto; white-space: normal; } - .pf-m-grid-md.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { + .pf-m-grid-md.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { --pf-v5-c-table--cell--MaxWidth: 100%; } - .pf-m-grid-md.pf-v5-c-table [class*=pf-m-width] { + .pf-m-grid-md.pf-v5-c-table [class*='pf-m-width'] { --pf-v5-c-table--cell--Width: auto; } } @@ -13729,7 +13966,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: 0; inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border: 0; border-inline-start: var(--pf-v5-c-table__tbody--after--BorderLeftWidth) solid var(--pf-v5-c-table__tbody--after--BorderColor); } @@ -13788,7 +14025,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: relative; } .pf-m-grid-lg.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-hoverable > tr:where(.pf-v5-c-table__tr)::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13805,7 +14042,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tbody--after__tr--BorderLeftColor: var(--pf-v5-c-table__tbody--m-selected--after__tr--BorderLeftColor); } .pf-m-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -13888,17 +14125,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-button.pf-m-expanded > .pf-m-grid-lg.pf-v5-c-table .pf-v5-c-table__toggle-icon { transform: rotate(var(--pf-v5-c-table__toggle--m-expanded__icon--Rotate)); } - .pf-m-grid-lg.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { + .pf-m-grid-lg.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { --pf-v5-c-table--cell--Overflow: auto; } - .pf-m-grid-lg.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { + .pf-m-grid-lg.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { width: auto; white-space: normal; } - .pf-m-grid-lg.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { + .pf-m-grid-lg.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { --pf-v5-c-table--cell--MaxWidth: 100%; } - .pf-m-grid-lg.pf-v5-c-table [class*=pf-m-width] { + .pf-m-grid-lg.pf-v5-c-table [class*='pf-m-width'] { --pf-v5-c-table--cell--Width: auto; } } @@ -14046,7 +14286,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: 0; inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border: 0; border-inline-start: var(--pf-v5-c-table__tbody--after--BorderLeftWidth) solid var(--pf-v5-c-table__tbody--after--BorderColor); } @@ -14105,7 +14345,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: relative; } .pf-m-grid-xl.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-hoverable > tr:where(.pf-v5-c-table__tr)::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -14122,7 +14362,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tbody--after__tr--BorderLeftColor: var(--pf-v5-c-table__tbody--m-selected--after__tr--BorderLeftColor); } .pf-m-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -14205,17 +14445,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-button.pf-m-expanded > .pf-m-grid-xl.pf-v5-c-table .pf-v5-c-table__toggle-icon { transform: rotate(var(--pf-v5-c-table__toggle--m-expanded__icon--Rotate)); } - .pf-m-grid-xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { + .pf-m-grid-xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { --pf-v5-c-table--cell--Overflow: auto; } - .pf-m-grid-xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { + .pf-m-grid-xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { width: auto; white-space: normal; } - .pf-m-grid-xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { + .pf-m-grid-xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { --pf-v5-c-table--cell--MaxWidth: 100%; } - .pf-m-grid-xl.pf-v5-c-table [class*=pf-m-width] { + .pf-m-grid-xl.pf-v5-c-table [class*='pf-m-width'] { --pf-v5-c-table--cell--Width: auto; } } @@ -14363,7 +14606,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-start: 0; inset-block-end: 0; inset-inline-start: 0; - content: ""; + content: ''; border: 0; border-inline-start: var(--pf-v5-c-table__tbody--after--BorderLeftWidth) solid var(--pf-v5-c-table__tbody--after--BorderColor); } @@ -14422,7 +14665,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: relative; } .pf-m-grid-2xl.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-hoverable > tr:where(.pf-v5-c-table__tr)::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -14439,7 +14682,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tbody--after__tr--BorderLeftColor: var(--pf-v5-c-table__tbody--m-selected--after__tr--BorderLeftColor); } .pf-m-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected::after { - content: ""; + content: ''; position: absolute; inset-block-start: 0; inset-block-end: 0; @@ -14522,17 +14765,20 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-button.pf-m-expanded > .pf-m-grid-2xl.pf-v5-c-table .pf-v5-c-table__toggle-icon { transform: rotate(var(--pf-v5-c-table__toggle--m-expanded__icon--Rotate)); } - .pf-m-grid-2xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { + .pf-m-grid-2xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-nowrap { --pf-v5-c-table--cell--Overflow: auto; } - .pf-m-grid-2xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { + .pf-m-grid-2xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-fit-content { width: auto; white-space: normal; } - .pf-m-grid-2xl.pf-v5-c-table :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { + .pf-m-grid-2xl.pf-v5-c-table + :where(.pf-v5-c-table, .pf-v5-c-table__thead, .pf-v5-c-table__tbody, .pf-v5-c-table__tr, .pf-v5-c-table__th, .pf-v5-c-table__td, .pf-v5-c-table__text).pf-m-truncate { --pf-v5-c-table--cell--MaxWidth: 100%; } - .pf-m-grid-2xl.pf-v5-c-table [class*=pf-m-width] { + .pf-m-grid-2xl.pf-v5-c-table [class*='pf-m-width'] { --pf-v5-c-table--cell--Width: auto; } } @@ -14566,31 +14812,31 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-table__tree-view-main--PaddingLeft: var(--pf-v5-c-table--m-no-inset__tree-view-main--PaddingLeft); --pf-v5-c-table__tree-view-main--MarginLeft: var(--pf-v5-c-table--m-no-inset__tree-view-main--MarginLeft); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="2"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='2'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="3"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='3'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="4"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='4'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="5"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='5'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="6"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='6'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="7"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='7'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="8"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='8'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="9"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='9'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); } -.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level="10"] { +.pf-v5-c-table.pf-m-tree-view tr:where(.pf-v5-c-table__tr)[aria-level='10'] { --pf-v5-c-table__tree-view-main--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); } .pf-v5-c-table__tree-view-main { @@ -14608,7 +14854,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab position: var(--pf-v5-c-table--m-tree-view__toggle--Position); inset-inline-start: var(--pf-v5-c-table--m-tree-view__toggle--Left); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-table__tree-view-main > .pf-v5-c-table__toggle { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-table__tree-view-main > .pf-v5-c-table__toggle { transform: translateX(calc(var(--pf-v5-c-table--m-tree-view__toggle--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-table__tree-view-main > .pf-v5-c-table__toggle .pf-v5-c-table__toggle-icon { @@ -14671,7 +14917,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: var(--pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft); inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr):not([hidden]) { @@ -14746,32 +14992,50 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab margin-block-start: var(--pf-v5-c-table__tree-view-details-toggle--MarginTop); margin-block-end: var(--pf-v5-c-table__tree-view-details-toggle--MarginBottom); } -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="2"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="3"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="4"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="5"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="6"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="7"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="8"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="9"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); -} -.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="10"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='2'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='3'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='4'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='5'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='6'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='7'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='8'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='9'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); +} +.pf-m-tree-view-grid.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='10'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } @media screen and (max-width: 428px) { .pf-m-tree-view-grid-md.pf-v5-c-table { @@ -14810,7 +15074,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: var(--pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft); inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr):not([hidden]) { @@ -14885,32 +15149,50 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab margin-block-start: var(--pf-v5-c-table__tree-view-details-toggle--MarginTop); margin-block-end: var(--pf-v5-c-table__tree-view-details-toggle--MarginBottom); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="2"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='2'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="3"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='3'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="4"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='4'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="5"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='5'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="6"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='6'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="7"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='7'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="8"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='8'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="9"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='9'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="10"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-md.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='10'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } } @media screen and (max-width: 652px) { @@ -14950,7 +15232,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: var(--pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft); inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr):not([hidden]) { @@ -15025,32 +15307,50 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab margin-block-start: var(--pf-v5-c-table__tree-view-details-toggle--MarginTop); margin-block-end: var(--pf-v5-c-table__tree-view-details-toggle--MarginBottom); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="2"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='2'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="3"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='3'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="4"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='4'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="5"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='5'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="6"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='6'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="7"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='7'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="8"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='8'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="9"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='9'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="10"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-lg.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='10'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } } @media screen and (max-width: 876px) { @@ -15090,7 +15390,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: var(--pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft); inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr):not([hidden]) { @@ -15165,32 +15465,50 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab margin-block-start: var(--pf-v5-c-table__tree-view-details-toggle--MarginTop); margin-block-end: var(--pf-v5-c-table__tree-view-details-toggle--MarginBottom); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="2"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='2'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="3"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='3'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="4"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='4'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="5"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='5'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="6"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='6'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="7"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='7'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="8"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='8'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="9"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='9'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="10"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='10'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } } @media screen and (max-width: 1100px) { @@ -15230,7 +15548,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: var(--pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft); inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor); } .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr):not([hidden]) { @@ -15305,32 +15623,50 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab margin-block-start: var(--pf-v5-c-table__tree-view-details-toggle--MarginTop); margin-block-end: var(--pf-v5-c-table__tree-view-details-toggle--MarginBottom); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="2"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='2'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="3"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='3'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 2 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="4"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='4'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 3 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="5"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='5'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 4 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="6"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='6'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 5 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="7"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='7'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 6 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="8"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='8'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 7 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="9"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='9'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 8 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } - .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level="10"] { - --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc(var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base)); + .pf-m-tree-view-grid-2xl.pf-v5-c-table tr:where(.pf-v5-c-table__tr)[aria-level='10'] { + --pf-v5-c-table--m-tree-view-grid__tbody--cell--PaddingLeft: calc( + var(--pf-v5-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v5-c-table__tree-view-main--indent--base) + ); } } @@ -15356,12 +15692,16 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-about-modal-box--BackgroundSize--min-width: 200px; --pf-v5-c-about-modal-box--BackgroundSize--width: 60%; --pf-v5-c-about-modal-box--BackgroundSize--max-width: 600px; - --pf-v5-c-about-modal-box--BackgroundSize: clamp(var(--pf-v5-c-about-modal-box--BackgroundSize--min-width), var(--pf-v5-c-about-modal-box--BackgroundSize--width), var(--pf-v5-c-about-modal-box--BackgroundSize--max-width)); + --pf-v5-c-about-modal-box--BackgroundSize: clamp( + var(--pf-v5-c-about-modal-box--BackgroundSize--min-width), + var(--pf-v5-c-about-modal-box--BackgroundSize--width), + var(--pf-v5-c-about-modal-box--BackgroundSize--max-width) + ); --pf-v5-c-about-modal-box--Height: 100%; --pf-v5-c-about-modal-box--lg--Height: 47.625rem; --pf-v5-c-about-modal-box--Width: 100%; --pf-v5-c-about-modal-box--sm--GridTemplateColumns: 5fr 1fr; - --pf-v5-c-about-modal-box--lg--GridTemplateColumns: 1fr .6fr; + --pf-v5-c-about-modal-box--lg--GridTemplateColumns: 1fr 0.6fr; --pf-v5-c-about-modal-box--BackgroundPosition: bottom right; --pf-v5-c-about-modal-box__brand--PaddingTop: var(--pf-v5-global--spacer--2xl); --pf-v5-c-about-modal-box__brand--PaddingRight: var(--pf-v5-global--spacer--xl); @@ -15403,7 +15743,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab color: var(--pf-v5-global--Color--100); position: relative; display: grid; - grid-template-areas: "brand close" "header header" "content content"; + grid-template-areas: 'brand close' 'header header' 'content content'; grid-template-rows: max-content max-content auto; width: var(--pf-v5-c-about-modal-box--Width); height: var(--pf-v5-c-about-modal-box--Height); @@ -15415,7 +15755,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab background-position: var(--pf-v5-c-about-modal-box--BackgroundPosition); background-size: var(--pf-v5-c-about-modal-box--BackgroundSize); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-about-modal-box { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-about-modal-box { --pf-v5-c-about-modal-box--BackgroundPosition: bottom left; } @media screen and (min-width: 576px) { @@ -15456,7 +15796,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media only screen and (min-width: 576px) { .pf-v5-c-about-modal-box { - grid-template-areas: "brand close" "header close" "content close"; + grid-template-areas: 'brand close' 'header close' 'content close'; grid-template-columns: var(--pf-v5-c-about-modal-box--sm--GridTemplateColumns); } } @@ -15642,7 +15982,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-modal-box--m-align-top--spacer: var(--pf-v5-global--spacer--sm); --pf-v5-c-modal-box--m-align-top--xl--spacer: var(--pf-v5-global--spacer--xl); --pf-v5-c-modal-box--m-align-top--MarginTop: var(--pf-v5-c-modal-box--m-align-top--spacer); - --pf-v5-c-modal-box--m-align-top--MaxHeight: calc(100% - min(var(--pf-v5-c-modal-box--m-align-top--spacer), var(--pf-v5-global--spacer--2xl)) - var(--pf-v5-c-modal-box--m-align-top--spacer)); + --pf-v5-c-modal-box--m-align-top--MaxHeight: calc( + 100% - min(var(--pf-v5-c-modal-box--m-align-top--spacer), var(--pf-v5-global--spacer--2xl)) - var(--pf-v5-c-modal-box--m-align-top--spacer) + ); --pf-v5-c-modal-box--m-align-top--MaxWidth: calc(100% - min(var(--pf-v5-c-modal-box--m-align-top--spacer) * 2, var(--pf-v5-global--spacer--xl))); --pf-v5-c-modal-box--m-danger__title-icon--Color: var(--pf-v5-global--danger-color--100); --pf-v5-c-modal-box--m-warning__title-icon--Color: var(--pf-v5-global--warning-color--100); @@ -15863,7 +16205,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-accordion__toggle--focus__toggle-text--FontWeight: var(--pf-v5-global--FontWeight--bold); --pf-v5-c-accordion__toggle--m-expanded__toggle-text--Color: var(--pf-v5-global--link--Color); --pf-v5-c-accordion__toggle--m-expanded__toggle-text--FontWeight: var(--pf-v5-global--FontWeight--bold); - --pf-v5-c-accordion__toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-accordion__toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-accordion__toggle--m-expanded__toggle-icon--Rotate: 90deg; --pf-v5-c-accordion__expandable-content--Color: var(--pf-v5-global--Color--200); --pf-v5-c-accordion__expandable-content--FontSize: var(--pf-v5-global--FontSize--sm); @@ -15946,7 +16288,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-color: var(--pf-v5-c-accordion--m-bordered__toggle--before--BorderColor); border-style: solid; border-block-start-width: var(--pf-v5-c-accordion--m-bordered__toggle--before--BorderTopWidth); @@ -15964,8 +16306,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; - border-block-end: var(--pf-v5-c-accordion--m-bordered__expandable-content--m-expanded__expandable-content-body--last-child--before--BorderBottomWidth) solid var(--pf-v5-c-accordion--m-bordered__expandable-content--m-expanded__expandable-content-body--last-child--before--BorderBottomColor); + content: ''; + border-block-end: var(--pf-v5-c-accordion--m-bordered__expandable-content--m-expanded__expandable-content-body--last-child--before--BorderBottomWidth) solid + var(--pf-v5-c-accordion--m-bordered__expandable-content--m-expanded__expandable-content-body--last-child--before--BorderBottomColor); } .pf-v5-c-accordion__toggle { position: relative; @@ -15989,7 +16332,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; width: var(--pf-v5-c-accordion__toggle--after--Width); - content: ""; + content: ''; background-color: var(--pf-v5-c-accordion__toggle--after--BackgroundColor); } .pf-v5-c-accordion__toggle.pf-m-expanded { @@ -16031,7 +16374,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab .pf-v5-c-accordion__toggle-icon { transition: var(--pf-v5-c-accordion__toggle-icon--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-accordion__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-accordion__toggle-icon { scale: -1 1; } .pf-v5-c-accordion__expandable-content { @@ -16058,7 +16401,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab inset-block-end: 0; inset-inline-start: 0; width: var(--pf-v5-c-accordion__expandable-content-body--after--Width); - content: ""; + content: ''; background-color: var(--pf-v5-c-accordion__expandable-content-body--after--BackgroundColor); } .pf-v5-c-accordion__expandable-content-body + .pf-v5-c-accordion__expandable-content-body { @@ -16146,17 +16489,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-sm--Width-on-lg, var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width)))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-sm--Width-on-lg, + var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-sm--Width-on-xl, var(--pf-v5-c-avatar--m-sm--Width-on-lg, var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-sm--Width-on-xl, + var(--pf-v5-c-avatar--m-sm--Width-on-lg, var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-sm--Width-on-2xl, var(--pf-v5-c-avatar--m-sm--Width-on-xl, var(--pf-v5-c-avatar--m-sm--Width-on-lg, var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width)))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-sm--Width-on-2xl, + var( + --pf-v5-c-avatar--m-sm--Width-on-xl, + var(--pf-v5-c-avatar--m-sm--Width-on-lg, var(--pf-v5-c-avatar--m-sm--Width-on-md, var(--pf-v5-c-avatar--m-sm--Width-on-sm, var(--pf-v5-c-avatar--m-sm--Width)))) + ) + ); } } @media (min-width: 576px) { @@ -16171,17 +16526,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-sm--Height-on-lg, var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height)))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-sm--Height-on-lg, + var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-sm--Height-on-xl, var(--pf-v5-c-avatar--m-sm--Height-on-lg, var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-sm--Height-on-xl, + var(--pf-v5-c-avatar--m-sm--Height-on-lg, var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-sm { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-sm--Height-on-2xl, var(--pf-v5-c-avatar--m-sm--Height-on-xl, var(--pf-v5-c-avatar--m-sm--Height-on-lg, var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height)))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-sm--Height-on-2xl, + var( + --pf-v5-c-avatar--m-sm--Height-on-xl, + var(--pf-v5-c-avatar--m-sm--Height-on-lg, var(--pf-v5-c-avatar--m-sm--Height-on-md, var(--pf-v5-c-avatar--m-sm--Height-on-sm, var(--pf-v5-c-avatar--m-sm--Height)))) + ) + ); } } .pf-v5-c-avatar.pf-m-md { @@ -16200,17 +16567,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-md--Width-on-lg, var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width)))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-md--Width-on-lg, + var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-md--Width-on-xl, var(--pf-v5-c-avatar--m-md--Width-on-lg, var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-md--Width-on-xl, + var(--pf-v5-c-avatar--m-md--Width-on-lg, var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-md--Width-on-2xl, var(--pf-v5-c-avatar--m-md--Width-on-xl, var(--pf-v5-c-avatar--m-md--Width-on-lg, var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width)))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-md--Width-on-2xl, + var( + --pf-v5-c-avatar--m-md--Width-on-xl, + var(--pf-v5-c-avatar--m-md--Width-on-lg, var(--pf-v5-c-avatar--m-md--Width-on-md, var(--pf-v5-c-avatar--m-md--Width-on-sm, var(--pf-v5-c-avatar--m-md--Width)))) + ) + ); } } @media (min-width: 576px) { @@ -16225,17 +16604,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-md--Height-on-lg, var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height)))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-md--Height-on-lg, + var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-md--Height-on-xl, var(--pf-v5-c-avatar--m-md--Height-on-lg, var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-md--Height-on-xl, + var(--pf-v5-c-avatar--m-md--Height-on-lg, var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-md { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-md--Height-on-2xl, var(--pf-v5-c-avatar--m-md--Height-on-xl, var(--pf-v5-c-avatar--m-md--Height-on-lg, var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height)))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-md--Height-on-2xl, + var( + --pf-v5-c-avatar--m-md--Height-on-xl, + var(--pf-v5-c-avatar--m-md--Height-on-lg, var(--pf-v5-c-avatar--m-md--Height-on-md, var(--pf-v5-c-avatar--m-md--Height-on-sm, var(--pf-v5-c-avatar--m-md--Height)))) + ) + ); } } .pf-v5-c-avatar.pf-m-lg { @@ -16254,17 +16645,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-lg--Width-on-lg, var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width)))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-lg--Width-on-lg, + var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-lg--Width-on-xl, var(--pf-v5-c-avatar--m-lg--Width-on-lg, var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-lg--Width-on-xl, + var(--pf-v5-c-avatar--m-lg--Width-on-lg, var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-lg--Width-on-2xl, var(--pf-v5-c-avatar--m-lg--Width-on-xl, var(--pf-v5-c-avatar--m-lg--Width-on-lg, var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width)))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-lg--Width-on-2xl, + var( + --pf-v5-c-avatar--m-lg--Width-on-xl, + var(--pf-v5-c-avatar--m-lg--Width-on-lg, var(--pf-v5-c-avatar--m-lg--Width-on-md, var(--pf-v5-c-avatar--m-lg--Width-on-sm, var(--pf-v5-c-avatar--m-lg--Width)))) + ) + ); } } @media (min-width: 576px) { @@ -16279,17 +16682,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-lg--Height-on-lg, var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height)))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-lg--Height-on-lg, + var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-lg--Height-on-xl, var(--pf-v5-c-avatar--m-lg--Height-on-lg, var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-lg--Height-on-xl, + var(--pf-v5-c-avatar--m-lg--Height-on-lg, var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-lg { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-lg--Height-on-2xl, var(--pf-v5-c-avatar--m-lg--Height-on-xl, var(--pf-v5-c-avatar--m-lg--Height-on-lg, var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height)))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-lg--Height-on-2xl, + var( + --pf-v5-c-avatar--m-lg--Height-on-xl, + var(--pf-v5-c-avatar--m-lg--Height-on-lg, var(--pf-v5-c-avatar--m-lg--Height-on-md, var(--pf-v5-c-avatar--m-lg--Height-on-sm, var(--pf-v5-c-avatar--m-lg--Height)))) + ) + ); } } .pf-v5-c-avatar.pf-m-xl { @@ -16308,17 +16723,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-xl--Width-on-lg, var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width)))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-xl--Width-on-lg, + var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-xl--Width-on-xl, var(--pf-v5-c-avatar--m-xl--Width-on-lg, var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-xl--Width-on-xl, + var(--pf-v5-c-avatar--m-xl--Width-on-lg, var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Width: var(--pf-v5-c-avatar--m-xl--Width-on-2xl, var(--pf-v5-c-avatar--m-xl--Width-on-xl, var(--pf-v5-c-avatar--m-xl--Width-on-lg, var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width)))))); + --pf-v5-c-avatar--Width: var( + --pf-v5-c-avatar--m-xl--Width-on-2xl, + var( + --pf-v5-c-avatar--m-xl--Width-on-xl, + var(--pf-v5-c-avatar--m-xl--Width-on-lg, var(--pf-v5-c-avatar--m-xl--Width-on-md, var(--pf-v5-c-avatar--m-xl--Width-on-sm, var(--pf-v5-c-avatar--m-xl--Width)))) + ) + ); } } @media (min-width: 576px) { @@ -16333,17 +16760,29 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 652px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-xl--Height-on-lg, var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height)))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-xl--Height-on-lg, + var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height))) + ); } } @media (min-width: 876px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-xl--Height-on-xl, var(--pf-v5-c-avatar--m-xl--Height-on-lg, var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-xl--Height-on-xl, + var(--pf-v5-c-avatar--m-xl--Height-on-lg, var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-avatar.pf-m-xl { - --pf-v5-c-avatar--Height: var(--pf-v5-c-avatar--m-xl--Height-on-2xl, var(--pf-v5-c-avatar--m-xl--Height-on-xl, var(--pf-v5-c-avatar--m-xl--Height-on-lg, var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height)))))); + --pf-v5-c-avatar--Height: var( + --pf-v5-c-avatar--m-xl--Height-on-2xl, + var( + --pf-v5-c-avatar--m-xl--Height-on-xl, + var(--pf-v5-c-avatar--m-xl--Height-on-lg, var(--pf-v5-c-avatar--m-xl--Height-on-md, var(--pf-v5-c-avatar--m-xl--Height-on-sm, var(--pf-v5-c-avatar--m-xl--Height)))) + ) + ); } } @@ -16388,7 +16827,11 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab --pf-v5-c-background-image--BackgroundSize--min-width: 200px; --pf-v5-c-background-image--BackgroundSize--width: 60%; --pf-v5-c-background-image--BackgroundSize--max-width: 600px; - --pf-v5-c-background-image--BackgroundSize: clamp(var(--pf-v5-c-background-image--BackgroundSize--min-width), var(--pf-v5-c-background-image--BackgroundSize--width), var(--pf-v5-c-background-image--BackgroundSize--max-width)); + --pf-v5-c-background-image--BackgroundSize: clamp( + var(--pf-v5-c-background-image--BackgroundSize--min-width), + var(--pf-v5-c-background-image--BackgroundSize--width), + var(--pf-v5-c-background-image--BackgroundSize--max-width) + ); --pf-v5-c-background-image--BackgroundPosition: bottom right; position: fixed; inset-block-start: 0; @@ -16402,7 +16845,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab background-position: var(--pf-v5-c-background-image--BackgroundPosition); background-size: var(--pf-v5-c-background-image--BackgroundSize); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-background-image { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-background-image { --pf-v5-c-background-image--BackgroundPosition: bottom left; } @@ -16557,12 +17000,18 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 876px) { .pf-v5-c-brand { - --pf-v5-c-brand--Width--base: var(--pf-v5-c-brand--Width-on-xl, var(--pf-v5-c-brand--Width-on-lg, var(--pf-v5-c-brand--Width-on-md, var(--pf-v5-c-brand--Width-on-sm, var(--pf-v5-c-brand--Width))))); + --pf-v5-c-brand--Width--base: var( + --pf-v5-c-brand--Width-on-xl, + var(--pf-v5-c-brand--Width-on-lg, var(--pf-v5-c-brand--Width-on-md, var(--pf-v5-c-brand--Width-on-sm, var(--pf-v5-c-brand--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-brand { - --pf-v5-c-brand--Width--base: var(--pf-v5-c-brand--Width-on-2xl, var(--pf-v5-c-brand--Width-on-xl, var(--pf-v5-c-brand--Width-on-lg, var(--pf-v5-c-brand--Width-on-md, var(--pf-v5-c-brand--Width-on-sm, var(--pf-v5-c-brand--Width)))))); + --pf-v5-c-brand--Width--base: var( + --pf-v5-c-brand--Width-on-2xl, + var(--pf-v5-c-brand--Width-on-xl, var(--pf-v5-c-brand--Width-on-lg, var(--pf-v5-c-brand--Width-on-md, var(--pf-v5-c-brand--Width-on-sm, var(--pf-v5-c-brand--Width))))) + ); } } @media (min-width: 576px) { @@ -16582,12 +17031,18 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab } @media (min-width: 876px) { .pf-v5-c-brand { - --pf-v5-c-brand--Height--base: var(--pf-v5-c-brand--Height-on-xl, var(--pf-v5-c-brand--Height-on-lg, var(--pf-v5-c-brand--Height-on-md, var(--pf-v5-c-brand--Height-on-sm, var(--pf-v5-c-brand--Height))))); + --pf-v5-c-brand--Height--base: var( + --pf-v5-c-brand--Height-on-xl, + var(--pf-v5-c-brand--Height-on-lg, var(--pf-v5-c-brand--Height-on-md, var(--pf-v5-c-brand--Height-on-sm, var(--pf-v5-c-brand--Height)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-brand { - --pf-v5-c-brand--Height--base: var(--pf-v5-c-brand--Height-on-2xl, var(--pf-v5-c-brand--Height-on-xl, var(--pf-v5-c-brand--Height-on-lg, var(--pf-v5-c-brand--Height-on-md, var(--pf-v5-c-brand--Height-on-sm, var(--pf-v5-c-brand--Height)))))); + --pf-v5-c-brand--Height--base: var( + --pf-v5-c-brand--Height-on-2xl, + var(--pf-v5-c-brand--Height-on-xl, var(--pf-v5-c-brand--Height-on-lg, var(--pf-v5-c-brand--Height-on-md, var(--pf-v5-c-brand--Height-on-sm, var(--pf-v5-c-brand--Height))))) + ); } } .pf-v5-c-brand.pf-m-picture { @@ -16767,7 +17222,7 @@ label.pf-v5-c-input-group__text { margin-inline-start: var(--pf-v5-c-calendar-month__header-nav-control--MarginLeft); margin-inline-end: var(--pf-v5-c-calendar-month__header-nav-control--MarginRight); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-calendar-month__header-nav-control { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-calendar-month__header-nav-control { scale: -1 1; } .pf-v5-c-calendar-month__header-nav-control.pf-m-prev-month { @@ -16813,7 +17268,7 @@ label.pf-v5-c-input-group__text { inset-block-end: var(--pf-v5-c-calendar-month__dates-cell--before--Bottom); inset-inline-start: var(--pf-v5-c-calendar-month__dates-cell--before--Left); inset-inline-end: var(--pf-v5-c-calendar-month__dates-cell--before--Right); - content: ""; + content: ''; background-color: var(--pf-v5-c-calendar-month__dates-cell--before--BackgroundColor); } .pf-v5-c-calendar-month__dates-cell.pf-m-current { @@ -16863,7 +17318,7 @@ label.pf-v5-c-input-group__text { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: var(--pf-v5-c-calendar-month__date--after--BorderWidth) solid var(--pf-v5-c-calendar-month__date--after--BorderColor); } .pf-v5-c-calendar-month__date, @@ -16915,7 +17370,7 @@ label.pf-v5-c-input-group__text { /* node_modules/@patternfly/react-styles/css/components/ClipboardCopy/clipboard-copy.css */ .pf-v5-c-clipboard-copy { - --pf-v5-c-clipboard-copy__toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-clipboard-copy__toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-clipboard-copy--m-expanded__toggle-icon--Rotate: 90deg; --pf-v5-c-clipboard-copy__expandable-content--PaddingTop: var(--pf-v5-global--spacer--md); --pf-v5-c-clipboard-copy__expandable-content--PaddingRight: var(--pf-v5-global--spacer--md); @@ -16964,7 +17419,7 @@ label.pf-v5-c-input-group__text { .pf-v5-c-clipboard-copy__toggle-icon { transition: var(--pf-v5-c-clipboard-copy__toggle-icon--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-clipboard-copy__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-clipboard-copy__toggle-icon { scale: -1 1; } .pf-v5-c-clipboard-copy__expandable-content { @@ -17115,7 +17570,7 @@ label.pf-v5-c-input-group__text { } } @media screen and (min-width: 428px) { - .pf-v5-c-data-list:not([class*=pf-m-grid]) { + .pf-v5-c-data-list:not([class*='pf-m-grid']) { --pf-v5-c-data-list__cell--cell--PaddingTop: var(--pf-v5-c-data-list__cell--cell--md--PaddingTop); --pf-v5-c-data-list__cell--PaddingBottom: var(--pf-v5-c-data-list__cell--md--PaddingBottom); --pf-v5-c-data-list__item-control--MarginRight: var(--pf-v5-c-data-list__item-control--md--MarginRight); @@ -17127,7 +17582,7 @@ label.pf-v5-c-input-group__text { } } @media screen and (min-width: 428px) and (min-width: 876px) { - .pf-v5-c-data-list:not([class*=pf-m-grid]) { + .pf-v5-c-data-list:not([class*='pf-m-grid']) { --pf-v5-c-data-list__item-row--PaddingRight: var(--pf-v5-c-data-list__item-row--xl--PaddingRight); --pf-v5-c-data-list__item-row--PaddingLeft: var(--pf-v5-c-data-list__item-row--xl--PaddingLeft); --pf-v5-c-data-list__expandable-content-body--PaddingRight: var(--pf-v5-c-data-list__expandable-content-body--xl--PaddingRight); @@ -17135,38 +17590,38 @@ label.pf-v5-c-input-group__text { } } @media screen and (min-width: 428px) { - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__item-content { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__item-content { display: flex; flex-grow: 1; flex-wrap: wrap; padding-block-end: var(--pf-v5-c-data-list__item-content--md--PaddingBottom); } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell:not(:last-child):not(.pf-m-icon) { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell:not(:last-child):not(.pf-m-icon) { margin-inline-end: var(--pf-v5-c-data-list__cell--MarginRight); } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell + .pf-v5-c-data-list__cell { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell + .pf-v5-c-data-list__cell { flex: 1; order: initial; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-align-right { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-align-right { margin-inline-start: auto; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-no-fill { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-no-fill { flex: none; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-flex-2 { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-flex-2 { flex-grow: 2; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-flex-3 { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-flex-3 { flex-grow: 3; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-flex-4 { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-flex-4 { flex-grow: 4; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__cell.pf-m-flex-5 { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__cell.pf-m-flex-5 { flex-grow: 5; } - .pf-v5-c-data-list:not([class*=pf-m-grid]) .pf-v5-c-data-list__expandable-content { + .pf-v5-c-data-list:not([class*='pf-m-grid']) .pf-v5-c-data-list__expandable-content { max-height: initial; overflow-y: visible; } @@ -17565,7 +18020,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-data-list__toggle--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1); --pf-v5-c-data-list__toggle--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1); --pf-v5-c-data-list__toggle-icon--Height: calc(var(--pf-v5-c-data-list--FontSize) * var(--pf-v5-c-data-list--LineHeight)); - --pf-v5-c-data-list__toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-data-list__toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-data-list__toggle-icon--Rotate: 0; --pf-v5-c-data-list__item--m-expanded__toggle-icon--Rotate: 90deg; --pf-v5-c-data-list__item-draggable-button--BackgroundColor: transparent; @@ -17581,7 +18036,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-data-list__item-draggable-button--hover__draggable-icon--Color: var(--pf-v5-global--icon--Color--dark); --pf-v5-c-data-list__item-draggable-button--focus__draggable-icon--Color: var(--pf-v5-global--icon--Color--dark); --pf-v5-c-data-list__item--m-ghost-row--after--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); - --pf-v5-c-data-list__item--m-ghost-row--after--Opacity: .6; + --pf-v5-c-data-list__item--m-ghost-row--after--Opacity: 0.6; --pf-v5-c-data-list__item-control--PaddingTop: var(--pf-v5-global--spacer--lg); --pf-v5-c-data-list__item-control--PaddingBottom: var(--pf-v5-global--spacer--lg); --pf-v5-c-data-list__item-control--MarginRight: var(--pf-v5-global--spacer--md); @@ -17723,7 +18178,7 @@ label.pf-v5-c-input-group__text { inset-block-end: 0; inset-inline-start: 0; width: var(--pf-v5-c-data-list__item--before--Width); - content: ""; + content: ''; background-color: var(--pf-v5-c-data-list__item--before--BackgroundColor); transition: var(--pf-v5-c-data-list__item--before--Transition); } @@ -17765,7 +18220,7 @@ label.pf-v5-c-input-group__text { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; background-color: var(--pf-v5-c-data-list__item--m-ghost-row--after--BackgroundColor); opacity: var(--pf-v5-c-data-list__item--m-ghost-row--after--Opacity); } @@ -17854,7 +18309,7 @@ label.pf-v5-c-input-group__text { transition: var(--pf-v5-c-data-list__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-data-list__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-data-list__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-data-list__toggle-icon { scale: -1 1; } .pf-v5-c-data-list__item-content { @@ -17934,7 +18389,9 @@ label.pf-v5-c-input-group__text { --pf-v5-c-date-picker--m-top__calendar--Top: 0; --pf-v5-c-date-picker--m-top__calendar--TranslateY: calc(-100% - var(--pf-v5-global--spacer--xs)); --pf-v5-c-date-picker__helper-text--MarginTop: var(--pf-v5-global--spacer--xs); - --pf-v5-c-date-picker__input--c-form-control--Width: calc(var(--pf-v5-c-date-picker__input--c-form-control--width-chars) * 1ch + var(--pf-v5-c-date-picker__input--c-form-control--width-base)); + --pf-v5-c-date-picker__input--c-form-control--Width: calc( + var(--pf-v5-c-date-picker__input--c-form-control--width-chars) * 1ch + var(--pf-v5-c-date-picker__input--c-form-control--width-base) + ); --pf-v5-c-date-picker__input--c-form-control--width-base: calc(var(--pf-v5-global--spacer--xl) + var(--pf-v5-global--spacer--sm)); --pf-v5-c-date-picker__input--c-form-control--width-chars: 10; --pf-v5-c-date-picker__calendar--BackgroundColor: var(--pf-v5-global--BackgroundColor--light-100); @@ -18088,7 +18545,8 @@ label.pf-v5-c-input-group__text { --pf-v5-c-description-list--m-vertical__group--GridTemplateRows: auto 1fr; --pf-v5-c-description-list--m-horizontal__term--width: 12ch; --pf-v5-c-description-list--m-horizontal__description--width: minmax(10ch, auto); - --pf-v5-c-description-list--m-horizontal__group--GridTemplateColumns: var(--pf-v5-c-description-list__term--width) var(--pf-v5-c-description-list--m-horizontal__description--width); + --pf-v5-c-description-list--m-horizontal__group--GridTemplateColumns: var(--pf-v5-c-description-list__term--width) + var(--pf-v5-c-description-list--m-horizontal__description--width); --pf-v5-c-description-list--m-horizontal__group--GridTemplateRows: auto; --pf-v5-c-description-list--m-1-col--GridTemplateColumns--count: 1; --pf-v5-c-description-list--m-2-col--GridTemplateColumns--count: 2; @@ -18113,32 +18571,62 @@ label.pf-v5-c-input-group__text { --pf-v5-c-description-list__term--Display: var(--pf-v5-c-description-list__term--sm--Display); } } -.pf-v5-c-description-list[class*=pf-m-horizontal] { +.pf-v5-c-description-list[class*='pf-m-horizontal'] { --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width); } @media (min-width: 576px) { - .pf-v5-c-description-list[class*=pf-m-horizontal] { + .pf-v5-c-description-list[class*='pf-m-horizontal'] { --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)); } } @media (min-width: 428px) { - .pf-v5-c-description-list[class*=pf-m-horizontal] { - --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width-on-md, var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width))); + .pf-v5-c-description-list[class*='pf-m-horizontal'] { + --pf-v5-c-description-list__term--width: var( + --pf-v5-c-description-list--m-horizontal__term--width-on-md, + var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)) + ); } } @media (min-width: 652px) { - .pf-v5-c-description-list[class*=pf-m-horizontal] { - --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width-on-lg, var(--pf-v5-c-description-list--m-horizontal__term--width-on-md, var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)))); + .pf-v5-c-description-list[class*='pf-m-horizontal'] { + --pf-v5-c-description-list__term--width: var( + --pf-v5-c-description-list--m-horizontal__term--width-on-lg, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-md, + var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)) + ) + ); } } @media (min-width: 876px) { - .pf-v5-c-description-list[class*=pf-m-horizontal] { - --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width-on-xl, var(--pf-v5-c-description-list--m-horizontal__term--width-on-lg, var(--pf-v5-c-description-list--m-horizontal__term--width-on-md, var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width))))); + .pf-v5-c-description-list[class*='pf-m-horizontal'] { + --pf-v5-c-description-list__term--width: var( + --pf-v5-c-description-list--m-horizontal__term--width-on-xl, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-lg, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-md, + var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)) + ) + ) + ); } } @media (min-width: 1100px) { - .pf-v5-c-description-list[class*=pf-m-horizontal] { - --pf-v5-c-description-list__term--width: var(--pf-v5-c-description-list--m-horizontal__term--width-on-2xl, var(--pf-v5-c-description-list--m-horizontal__term--width-on-xl, var(--pf-v5-c-description-list--m-horizontal__term--width-on-lg, var(--pf-v5-c-description-list--m-horizontal__term--width-on-md, var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)))))); + .pf-v5-c-description-list[class*='pf-m-horizontal'] { + --pf-v5-c-description-list__term--width: var( + --pf-v5-c-description-list--m-horizontal__term--width-on-2xl, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-xl, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-lg, + var( + --pf-v5-c-description-list--m-horizontal__term--width-on-md, + var(--pf-v5-c-description-list--m-horizontal__term--width-on-sm, var(--pf-v5-c-description-list--m-horizontal__term--width)) + ) + ) + ) + ); } } .pf-v5-c-description-list.pf-m-inline-grid { @@ -18153,27 +18641,60 @@ label.pf-v5-c-input-group__text { } @media (min-width: 576px) { .pf-v5-c-description-list.pf-m-auto-fit { - --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)); + --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-sm, + var(--pf-v5-c-description-list--GridTemplateColumns--min) + ); } } @media (min-width: 428px) { .pf-v5-c-description-list.pf-m-auto-fit { - --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var(--pf-v5-c-description-list--GridTemplateColumns--min-on-md, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min))); + --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-md, + var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)) + ); } } @media (min-width: 652px) { .pf-v5-c-description-list.pf-m-auto-fit { - --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var(--pf-v5-c-description-list--GridTemplateColumns--min-on-lg, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-md, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)))); + --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-lg, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-md, + var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)) + ) + ); } } @media (min-width: 876px) { .pf-v5-c-description-list.pf-m-auto-fit { - --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var(--pf-v5-c-description-list--GridTemplateColumns--min-on-xl, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-lg, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-md, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min))))); + --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-xl, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-lg, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-md, + var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)) + ) + ) + ); } } @media (min-width: 1100px) { .pf-v5-c-description-list.pf-m-auto-fit { - --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var(--pf-v5-c-description-list--GridTemplateColumns--min-on-2xl, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-xl, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-lg, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-md, var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)))))); + --pf-v5-c-description-list--GridTemplateColumns--minmax--min: var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-2xl, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-xl, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-lg, + var( + --pf-v5-c-description-list--GridTemplateColumns--min-on-md, + var(--pf-v5-c-description-list--GridTemplateColumns--min-on-sm, var(--pf-v5-c-description-list--GridTemplateColumns--min)) + ) + ) + ) + ); } } .pf-v5-c-description-list.pf-m-compact { @@ -18398,7 +18919,7 @@ label.pf-v5-c-input-group__text { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border: var(--pf-v5-c-draggable--m-dragging--after--BorderWidth) solid var(--pf-v5-c-draggable--m-dragging--after--BorderColor); } .pf-v5-c-draggable.pf-m-drag-outside { @@ -18411,7 +18932,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-droppable--after--BorderWidth: 0; --pf-v5-c-droppable--after--BorderColor: transparent; --pf-v5-c-droppable--m-dragging--before--BackgroundColor: var(--pf-v5-global--palette--white); - --pf-v5-c-droppable--m-dragging--before--Opacity: .6; + --pf-v5-c-droppable--m-dragging--before--Opacity: 0.6; --pf-v5-c-droppable--m-dragging--after--BorderWidth: var(--pf-v5-global--BorderWidth--sm); --pf-v5-c-droppable--m-dragging--after--BorderColor: var(--pf-v5-global--active-color--100); --pf-v5-c-droppable--m-drag-outside--after--BorderColor: var(--pf-v5-global--danger-color--100); @@ -18424,7 +18945,7 @@ label.pf-v5-c-input-group__text { inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-droppable::before { background-color: var(--pf-v5-c-droppable--before--BackgroundColor); @@ -18444,7 +18965,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-droppable--m-dragging--after--BorderColor: var(--pf-v5-c-droppable--m-drag-outside--after--BorderColor); } :where(.pf-v5-theme-dark) .pf-v5-c-droppable { - --pf-v5-c-droppable--m-dragging--before--Opacity: .2; + --pf-v5-c-droppable--m-dragging--before--Opacity: 0.2; } /* node_modules/@patternfly/react-styles/css/components/DualListSelector/dual-list-selector.css */ @@ -18474,13 +18995,15 @@ label.pf-v5-c-input-group__text { --pf-v5-c-dual-list-selector__list-item-row--focus-within--BackgroundColor: var(--pf-v5-global--BackgroundColor--200); --pf-v5-c-dual-list-selector__list-item-row--m-selected--BackgroundColor: var(--pf-v5-global--BackgroundColor--200); --pf-v5-c-dual-list-selector__list-item--m-ghost-row--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); - --pf-v5-c-dual-list-selector__list-item--m-ghost-row--Opacity: .4; + --pf-v5-c-dual-list-selector__list-item--m-ghost-row--Opacity: 0.4; --pf-v5-c-dual-list-selector__item--PaddingTop: var(--pf-v5-global--spacer--sm); --pf-v5-c-dual-list-selector__item--PaddingRight: var(--pf-v5-global--spacer--md); --pf-v5-c-dual-list-selector__item--PaddingBottom: var(--pf-v5-global--spacer--sm); --pf-v5-c-dual-list-selector__item--PaddingLeft: var(--pf-v5-global--spacer--md); --pf-v5-c-dual-list-selector__item--m-expandable--PaddingLeft: 0; - --pf-v5-c-dual-list-selector__item--indent--base: calc(var(--pf-v5-global--spacer--md) + var(--pf-v5-global--spacer--sm) + var(--pf-v5-c-dual-list-selector__list-item-row--FontSize)); + --pf-v5-c-dual-list-selector__item--indent--base: calc( + var(--pf-v5-global--spacer--md) + var(--pf-v5-global--spacer--sm) + var(--pf-v5-c-dual-list-selector__list-item-row--FontSize) + ); --pf-v5-c-dual-list-selector__item--nested-indent--base: calc(var(--pf-v5-c-dual-list-selector__item--indent--base) - var(--pf-v5-global--spacer--md)); --pf-v5-c-dual-list-selector__draggable--item--PaddingLeft: var(--pf-v5-global--spacer--xs); --pf-v5-c-dual-list-selector__item-text--Color: var(--pf-v5-global--Color--100); @@ -18509,9 +19032,11 @@ label.pf-v5-c-input-group__text { --pf-v5-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v5-c-dual-list-selector__list-item-row--FontSize); --pf-v5-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-v5-global--disabled-color--200); display: grid; - grid-template-areas: "pane-header . pane-header-c" "pane-tools . pane-tools-c" "pane-status . pane-status-c" "pane-menu controls pane-menu-c"; + grid-template-areas: 'pane-header . pane-header-c' 'pane-tools . pane-tools-c' 'pane-status . pane-status-c' 'pane-menu controls pane-menu-c'; grid-template-rows: repeat(3, auto) auto; - grid-template-columns: minmax(var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max)) min-content minmax(var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max)); + grid-template-columns: + minmax(var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max)) + min-content minmax(var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-v5-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max)); } .pf-v5-c-dual-list-selector__pane { display: contents; @@ -18575,7 +19100,7 @@ label.pf-v5-c-input-group__text { inset-block-start: 0; inset-inline-start: var(--pf-v5-c-dual-list-selector__list__list__item-toggle--Left); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-dual-list-selector__list .pf-v5-c-dual-list-selector__list .pf-v5-c-dual-list-selector__item-toggle { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-dual-list-selector__list .pf-v5-c-dual-list-selector__list .pf-v5-c-dual-list-selector__item-toggle { transform: translateX(calc(var(--pf-v5-c-dual-list-selector__list__list__item-toggle--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-dual-list-selector__list.pf-m-drag-over { @@ -18666,7 +19191,7 @@ label.pf-v5-c-input-group__text { padding-inline-start: var(--pf-v5-c-dual-list-selector__controls--PaddingLeft); padding-inline-end: var(--pf-v5-c-dual-list-selector__controls--PaddingRight); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) :is(.pf-v5-c-dual-list-selector__controls-item, .pf-v5-c-dual-list-selector__item-toggle-icon) { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) :is(.pf-v5-c-dual-list-selector__controls-item, .pf-v5-c-dual-list-selector__item-toggle-icon) { scale: -1 1; } .pf-v5-c-dual-list-selector__item-main { @@ -18706,31 +19231,80 @@ label.pf-v5-c-input-group__text { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 3 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 4 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 5 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 6 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 7 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 8 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 9 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } -.pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item .pf-v5-c-dual-list-selector__list-item { +.pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item + .pf-v5-c-dual-list-selector__list-item { --pf-v5-c-dual-list-selector__item--PaddingLeft: calc(var(--pf-v5-c-dual-list-selector__item--nested-indent--base) * 10 + var(--pf-v5-c-dual-list-selector__item--indent--base)); --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft); } @@ -18754,7 +19328,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-icon--m-xl--Height: var(--pf-v5-global--icon--FontSize--xl); --pf-v5-c-icon--m-inline--Width: 1em; --pf-v5-c-icon--m-inline--Height: 1em; - --pf-v5-c-icon__content--svg--VerticalAlign: -.125em; + --pf-v5-c-icon__content--svg--VerticalAlign: -0.125em; --pf-v5-c-icon__content--Color: initial; --pf-v5-c-icon__content--m-danger--Color: var(--pf-v5-global--danger-color--100); --pf-v5-c-icon__content--m-warning--Color: var(--pf-v5-global--warning-color--100); @@ -18903,7 +19477,7 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; border: var(--pf-v5-c-panel--before--BorderWidth) solid var(--pf-v5-c-panel--before--BorderColor); } .pf-v5-c-panel.pf-m-bordered { @@ -19026,7 +19600,7 @@ label.pf-v5-c-input-group__text { .pf-v5-c-text-input-group__text { display: inline-grid; flex: 1; - grid-template-areas: "text-input"; + grid-template-areas: 'text-input'; grid-template-columns: 1fr; } .pf-v5-c-text-input-group__text::before, @@ -19034,7 +19608,7 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-text-input-group__text::before { border: var(--pf-v5-c-text-input-group__text--before--BorderWidth) solid var(--pf-v5-c-text-input-group__text--before--BorderColor); @@ -19116,7 +19690,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-expandable-section__toggle--BackgroundColor: transparent; --pf-v5-c-expandable-section__toggle-icon--MinWidth: 1em; --pf-v5-c-expandable-section__toggle-icon--Color: var(--pf-v5-global--Color--100); - --pf-v5-c-expandable-section__toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-expandable-section__toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-expandable-section__toggle-icon--Rotate: 0; --pf-v5-c-expandable-section__toggle-icon--m-expand-top--Rotate: 0; --pf-v5-c-expandable-section--m-expanded__toggle-icon--Rotate: 90deg; @@ -19137,7 +19711,9 @@ label.pf-v5-c-input-group__text { --pf-v5-c-expandable-section--m-display-lg--after--BackgroundColor: transparent; --pf-v5-c-expandable-section--m-display-lg--after--Width: var(--pf-v5-global--BorderWidth--lg); --pf-v5-c-expandable-section--m-display-lg--m-expanded--after--BackgroundColor: var(--pf-v5-global--primary-color--100); - --pf-v5-c-expandable-section--m-indented__content--PaddingLeft: calc(var(--pf-v5-c-expandable-section__toggle-text--MarginLeft) + var(--pf-v5-c-expandable-section__toggle-icon--MinWidth)); + --pf-v5-c-expandable-section--m-indented__content--PaddingLeft: calc( + var(--pf-v5-c-expandable-section__toggle-text--MarginLeft) + var(--pf-v5-c-expandable-section__toggle-icon--MinWidth) + ); --pf-v5-c-expandable-section--m-truncate__content--LineClamp: 3; --pf-v5-c-expandable-section--m-truncate__toggle--MarginTop: var(--pf-v5-global--spacer--xs); } @@ -19172,7 +19748,7 @@ label.pf-v5-c-input-group__text { inset-block-end: 0; inset-inline-start: 0; width: var(--pf-v5-c-expandable-section--m-display-lg--after--Width); - content: ""; + content: ''; background-color: var(--pf-v5-c-expandable-section--m-display-lg--after--BackgroundColor); } .pf-v5-c-expandable-section.pf-m-indented { @@ -19221,7 +19797,7 @@ label.pf-v5-c-input-group__text { transition: var(--pf-v5-c-expandable-section__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-expandable-section__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-expandable-section__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-expandable-section__toggle-icon { scale: -1 1; } .pf-v5-c-expandable-section__toggle-icon.pf-m-expand-top { @@ -19248,7 +19824,7 @@ label.pf-v5-c-input-group__text { --pf-v5-c-file-upload--m-drag-hover--before--BorderColor: var(--pf-v5-global--primary-color--100); --pf-v5-c-file-upload--m-drag-hover--before--ZIndex: var(--pf-v5-global--ZIndex--xs); --pf-v5-c-file-upload--m-drag-hover--after--BackgroundColor: var(--pf-v5-global--primary-color--100); - --pf-v5-c-file-upload--m-drag-hover--after--Opacity: .1; + --pf-v5-c-file-upload--m-drag-hover--after--Opacity: 0.1; --pf-v5-c-file-upload__file-details__c-form-control--MinHeight: calc(var(--pf-v5-global--spacer--3xl) * 2); --pf-v5-c-file-upload__file-select__c-button--m-control--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs)); position: relative; @@ -19259,13 +19835,13 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; z-index: var(--pf-v5-c-file-upload--m-drag-hover--before--ZIndex); - content: ""; + content: ''; border: var(--pf-v5-c-file-upload--m-drag-hover--before--BorderWidth) solid var(--pf-v5-c-file-upload--m-drag-hover--before--BorderColor); } .pf-v5-c-file-upload.pf-m-drag-hover::after { position: absolute; inset: 0; - content: ""; + content: ''; background-color: var(--pf-v5-c-file-upload--m-drag-hover--after--BackgroundColor); opacity: var(--pf-v5-c-file-upload--m-drag-hover--after--Opacity); } @@ -19278,7 +19854,7 @@ label.pf-v5-c-input-group__text { inset-block-end: var(--pf-v5-c-file-upload--m-loading__file-details--before--Left); inset-inline-start: var(--pf-v5-c-file-upload--m-loading__file-details--before--Left); inset-inline-end: var(--pf-v5-c-file-upload--m-loading__file-details--before--Left); - content: ""; + content: ''; background-color: var(--pf-v5-c-file-upload--m-loading__file-details--before--BackgroundColor); } .pf-v5-c-file-upload__file-select .pf-v5-c-button.pf-m-control { @@ -19533,7 +20109,7 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; border: solid var(--pf-v5-c-jump-links__list--before--BorderColor); border-block-start-width: var(--pf-v5-c-jump-links__list--before--BorderTopWidth); border-block-end-width: var(--pf-v5-c-jump-links__list--before--BorderBottomWidth); @@ -19569,7 +20145,7 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; border-color: var(--pf-v5-c-jump-links__link--before--BorderColor); border-style: solid; border-block-start-width: var(--pf-v5-c-jump-links__link--before--BorderTopWidth); @@ -19613,7 +20189,7 @@ label.pf-v5-c-input-group__text { transition: var(--pf-v5-c-jump-links__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-jump-links__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-jump-links__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-jump-links__toggle-icon { scale: -1 1; } .pf-v5-c-jump-links__toggle-text { @@ -19748,7 +20324,7 @@ label.pf-v5-c-input-group__text { display: var(--pf-v5-c-sidebar__main--m-border--before--Display); flex: 0 0 var(--pf-v5-c-sidebar__main--m-border--before--BorderWidth); align-self: stretch; - content: ""; + content: ''; background-color: var(--pf-v5-c-sidebar__main--m-border--before--BorderColor); } .pf-v5-c-sidebar__panel { @@ -20313,7 +20889,7 @@ label.pf-v5-c-input-group__text { position: absolute; inset: 0; pointer-events: none; - content: ""; + content: ''; border: var(--pf-v5-c-label__content--before--BorderWidth) solid var(--pf-v5-c-label__content--before--BorderColor); border-radius: var(--pf-v5-c-label--BorderRadius); } @@ -20765,7 +21341,7 @@ ul.pf-v5-c-list { @media (min-width: 876px) { .pf-v5-c-login__container { display: grid; - grid-template-areas: "main header" "main footer" "main ."; + grid-template-areas: 'main header' 'main footer' 'main .'; grid-template-columns: var(--pf-v5-c-login__container--xl--GridTemplateColumns); grid-column-gap: var(--pf-v5-c-login__container--xl--GridColumnGap); justify-content: center; @@ -20955,7 +21531,8 @@ ul.pf-v5-c-list { --pf-v5-c-masthead--m-display-stack__main--PaddingTop: var(--pf-v5-global--spacer--sm); --pf-v5-c-masthead--m-display-stack__main--PaddingBottom: var(--pf-v5-global--spacer--sm); --pf-v5-c-masthead--m-display-stack__main--MarginRight: 0; - --pf-v5-c-masthead--m-display-stack__main--before--BorderBottom: var(--pf-v5-c-masthead__main--before--BorderBottomWidth) solid var(--pf-v5-c-masthead__main--before--BorderBottomColor); + --pf-v5-c-masthead--m-display-stack__main--before--BorderBottom: var(--pf-v5-c-masthead__main--before--BorderBottomWidth) solid + var(--pf-v5-c-masthead__main--before--BorderBottomColor); --pf-v5-c-masthead--m-display-stack__toggle--GridColumn: 1; --pf-v5-c-masthead--m-display-stack__content--GridColumn: 2; --pf-v5-c-masthead--m-display-stack__content--MinHeight: auto; @@ -21103,8 +21680,9 @@ ul.pf-v5-c-list { .pf-v5-c-masthead .pf-v5-c-toolbar__expandable-content::before { position: absolute; inset: 0; - content: ""; - border-block-start: var(--pf-v5-c-masthead--c-toolbar__expandable-content--before--BorderTopWidth) solid var(--pf-v5-c-masthead--c-toolbar__expandable-content--before--BorderTopColor); + content: ''; + border-block-start: var(--pf-v5-c-masthead--c-toolbar__expandable-content--before--BorderTopWidth) solid + var(--pf-v5-c-masthead--c-toolbar__expandable-content--before--BorderTopColor); box-shadow: var(--pf-v5-c-toolbar__expandable-content--before--BoxShadow); } .pf-v5-c-masthead .pf-v5-c-menu-toggle { @@ -21156,7 +21734,7 @@ ul.pf-v5-c-list { inset-block-end: 0; inset-inline-start: var(--pf-v5-c-masthead__main--before--Left); inset-inline-end: var(--pf-v5-c-masthead__main--before--Right); - content: ""; + content: ''; border-block-end: var(--pf-v5-c-masthead__main--before--BorderBottom); } .pf-v5-c-masthead__main:last-child { @@ -21579,7 +22157,7 @@ ul.pf-v5-c-list { --pf-v5-c-multiple-file-upload__main--TextAlign: center; --pf-v5-c-multiple-file-upload__main--GridTemplateColumns: auto; --pf-v5-c-multiple-file-upload__main--GridTemplateRows: auto; - --pf-v5-c-multiple-file-upload__main--GridTemplateAreas: "title" "upload" "info"; + --pf-v5-c-multiple-file-upload__main--GridTemplateAreas: 'title' 'upload' 'info'; --pf-v5-c-multiple-file-upload__main--Gap: var(--pf-v5-global--spacer--md); --pf-v5-c-multiple-file-upload__main--PaddingTop: var(--pf-v5-global--spacer--lg); --pf-v5-c-multiple-file-upload__main--PaddingRight: var(--pf-v5-global--spacer--lg); @@ -21607,7 +22185,7 @@ ul.pf-v5-c-list { --pf-v5-c-multiple-file-upload--m-horizontal--GridTemplateColumns: fit-content(100%); --pf-v5-c-multiple-file-upload--m-horizontal__main--TextAlign: start; --pf-v5-c-multiple-file-upload--m-horizontal__main--GridTemplateColumns: 1fr auto; - --pf-v5-c-multiple-file-upload--m-horizontal__main--GridTemplateAreas: "title upload" "info upload"; + --pf-v5-c-multiple-file-upload--m-horizontal__main--GridTemplateAreas: 'title upload' 'info upload'; --pf-v5-c-multiple-file-upload--m-horizontal__main--Gap: var(--pf-v5-global--spacer--sm) var(--pf-v5-global--spacer--2xl); --pf-v5-c-multiple-file-upload--m-horizontal__main--PaddingBottom: var(--pf-v5-global--spacer--lg); --pf-v5-c-multiple-file-upload--m-horizontal__title--GridTemplateColumns: auto 1fr; @@ -21745,7 +22323,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress__measure--m-static-width--MinWidth: 4.5ch; --pf-v5-c-progress__status--Gap: var(--pf-v5-global--spacer--sm); --pf-v5-c-progress__status-icon--Color: var(--pf-v5-global--Color--100); - --pf-v5-c-progress__bar--before--Opacity: .2; + --pf-v5-c-progress__bar--before--Opacity: 0.2; --pf-v5-c-progress__indicator--Height: var(--pf-v5-c-progress__bar--Height); --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-v5-c-progress__bar--before--BackgroundColor); --pf-v5-c-progress__helper-text--MarginTop: calc(var(--pf-v5-global--spacer--xs) - var(--pf-v5-c-progress--GridGap)); @@ -21885,7 +22463,7 @@ ul.pf-v5-c-list { position: absolute; width: 100%; height: 100%; - content: ""; + content: ''; background-color: var(--pf-v5-c-progress__bar--before--BackgroundColor); opacity: var(--pf-v5-c-progress__bar--before--Opacity); } @@ -22118,10 +22696,7 @@ ul.pf-v5-c-list { --pf-v5-c-nav__scroll-button--BackgroundColor: transparent; --pf-v5-c-nav__scroll-button--Width: var(--pf-v5-global--target-size--MinWidth); --pf-v5-c-nav__scroll-button--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs)); - --pf-v5-c-nav__scroll-button--Transition: - margin .125s, - transform .125s, - opacity .125s; + --pf-v5-c-nav__scroll-button--Transition: margin 0.125s, transform 0.125s, opacity 0.125s; --pf-v5-c-nav__scroll-button--before--BorderColor: var(--pf-v5-global--BackgroundColor--dark-200); --pf-v5-c-nav__scroll-button--before--BorderWidth: var(--pf-v5-global--BorderWidth--sm); --pf-v5-c-nav__scroll-button--before--BorderRightWidth: 0; @@ -22300,7 +22875,7 @@ ul.pf-v5-c-list { .pf-v5-c-nav .pf-v5-c-menu__item::after { position: absolute; inset-block-start: 0; - content: ""; + content: ''; } .pf-v5-c-nav .pf-v5-c-menu__item::before { inset-block-end: calc(var(--pf-v5-c-nav--c-menu__item--before--BorderBottomWidth) * -1); @@ -22327,7 +22902,7 @@ ul.pf-v5-c-list { .pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon { margin-inline-start: calc(var(--pf-v5-c-menu__item-toggle-icon--PaddingLeft) * -1); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon { scale: -1 1; } .pf-v5-c-nav.pf-m-horizontal .pf-v5-c-nav__link::after, @@ -22546,7 +23121,7 @@ ul.pf-v5-c-list { inset-block-end: calc(var(--pf-v5-c-nav__item--before--BorderWidth) * -1); inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-nav__item--before--BorderWidth) solid var(--pf-v5-c-nav__item--before--BorderColor); } .pf-v5-c-nav__item:not(:first-child) { @@ -22571,7 +23146,7 @@ ul.pf-v5-c-list { inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; border-inline-start: var(--pf-v5-c-nav__item--before--BorderWidth) solid var(--pf-v5-c-nav__item--before--BorderColor); } .pf-v5-c-nav__item .pf-v5-c-nav__toggle-icon { @@ -22627,7 +23202,7 @@ ul.pf-v5-c-list { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-block-end: var(--pf-v5-c-nav__item--m-flyout--c-menu__item--before--BorderBottomWidth) solid var(--pf-v5-c-nav__item--m-flyout--c-menu__item--before--BorderBottomColor); } .pf-v5-c-nav__item.pf-m-flyout .pf-v5-c-menu .pf-v5-c-menu__item:hover::after { @@ -22635,8 +23210,9 @@ ul.pf-v5-c-list { inset-block-start: var(--pf-v5-c-nav__item--m-flyout--c-menu__item--hover--after--Top); inset-block-end: 0; inset-inline-start: 0; - content: ""; - border-inline-start: var(--pf-v5-c-nav__item--m-flyout--c-menu__item--hover--after--BorderLeftWidth) solid var(--pf-v5-c-nav__item--m-flyout--c-menu__item--hover--after--BorderLeftColor); + content: ''; + border-inline-start: var(--pf-v5-c-nav__item--m-flyout--c-menu__item--hover--after--BorderLeftWidth) solid + var(--pf-v5-c-nav__item--m-flyout--c-menu__item--hover--after--BorderLeftColor); } .pf-v5-c-nav__item.pf-m-drilldown.pf-m-expanded > .pf-v5-c-nav__subnav { inset-inline-start: 0; @@ -22659,7 +23235,7 @@ ul.pf-v5-c-list { .pf-v5-c-nav__link::after, .pf-v5-c-nav__link::before { position: absolute; - content: ""; + content: ''; border: 0 solid; } .pf-v5-c-nav__link::before { @@ -22795,7 +23371,7 @@ ul.pf-v5-c-list { display: inline-block; transition: var(--pf-v5-c-nav__toggle-icon--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-nav__toggle-icon { scale: -1 1; } .pf-v5-c-nav__item.pf-m-expanded .pf-v5-c-nav__toggle-icon { @@ -22850,14 +23426,14 @@ ul.pf-v5-c-list { opacity: 0; transition: var(--pf-v5-c-nav__scroll-button--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button > * { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-nav__scroll-button > * { scale: -1 1; } .pf-v5-c-nav__scroll-button::before { position: absolute; inset-block-start: 0; inset-block-end: 0; - content: ""; + content: ''; border: 0 solid var(--pf-v5-c-nav__scroll-button--before--BorderColor); border-inline-start-width: var(--pf-v5-c-nav__scroll-button--before--BorderLeftWidth); border-inline-end-width: var(--pf-v5-c-nav__scroll-button--before--BorderRightWidth); @@ -22880,7 +23456,7 @@ ul.pf-v5-c-list { margin-inline-end: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1); transform: translateX(-100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(1) { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-nav__scroll-button:nth-of-type(1) { transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-nav__scroll-button:nth-of-type(1)::before { @@ -22891,7 +23467,7 @@ ul.pf-v5-c-list { margin-inline-start: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1); transform: translateX(100%); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(2) { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-nav__scroll-button:nth-of-type(2) { transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-nav__scroll-button:nth-of-type(2)::before { @@ -22987,7 +23563,7 @@ ul.pf-v5-c-list { inset-inline-end: var(--pf-v5-c-notification-badge--after--Right); width: var(--pf-v5-c-notification-badge--after--Width); height: var(--pf-v5-c-notification-badge--after--Height); - content: ""; + content: ''; border: var(--pf-v5-c-notification-badge--after--BorderWidth) solid var(--pf-v5-c-notification-badge--after--BorderColor); border-radius: var(--pf-v5-c-notification-badge--after--BorderRadius); transform: translate(var(--pf-v5-c-notification-badge--after--TranslateX), var(--pf-v5-c-notification-badge--after--TranslateY)); @@ -23112,7 +23688,7 @@ ul.pf-v5-c-list { --pf-v5-c-notification-drawer__group-toggle-count--MarginRight: var(--pf-v5-global--spacer--md); --pf-v5-c-notification-drawer__group-toggle-icon--MarginRight: var(--pf-v5-global--spacer--md); --pf-v5-c-notification-drawer__group-toggle-icon--Color: var(--pf-v5-global--Color--200); - --pf-v5-c-notification-drawer__group-toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-notification-drawer__group-toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate: 90deg; display: flex; flex-direction: column; @@ -23174,7 +23750,7 @@ ul.pf-v5-c-list { inset-block-start: var(--pf-v5-c-notification-drawer__list-item--before--Top); inset-block-end: var(--pf-v5-c-notification-drawer__list-item--before--Bottom); width: var(--pf-v5-c-notification-drawer__list-item--before--Width); - content: ""; + content: ''; background-color: var(--pf-v5-c-notification-drawer__list-item--before--BackgroundColor); } .pf-v5-c-notification-drawer__list-item.pf-m-info { @@ -23258,7 +23834,8 @@ ul.pf-v5-c-list { min-height: var(--pf-v5-c-notification-drawer__group--m-expanded--MinHeight); } .pf-v5-c-notification-drawer__group.pf-m-expanded + .pf-v5-c-notification-drawer__group { - border-block-start: var(--pf-v5-c-notification-drawer__group--m-expanded--group--BorderTopWidth) solid var(--pf-v5-c-notification-drawer__group--m-expanded--group--BorderTopColor); + border-block-start: var(--pf-v5-c-notification-drawer__group--m-expanded--group--BorderTopWidth) solid + var(--pf-v5-c-notification-drawer__group--m-expanded--group--BorderTopColor); } .pf-v5-c-notification-drawer__group .pf-v5-c-notification-drawer__list-item:last-child { --pf-v5-c-notification-drawer__list-item--BorderBottomWidth: 0; @@ -23296,7 +23873,7 @@ ul.pf-v5-c-list { color: var(--pf-v5-c-notification-drawer__group-toggle-icon--Color); transition: var(--pf-v5-c-notification-drawer__group-toggle-icon--Transition); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-notification-drawer__group-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-notification-drawer__group-toggle-icon { scale: -1 1; } .pf-v5-c-notification-drawer__group.pf-m-expanded .pf-v5-c-notification-drawer__group-toggle-icon { @@ -23416,7 +23993,9 @@ ul.pf-v5-c-list { --pf-v5-c-pagination__nav-page-select--child--MarginRight: var(--pf-v5-global--spacer--xs); --pf-v5-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-v5-global--spacer--sm) * 2 + var(--pf-v5-global--BorderWidth--sm) * 2); --pf-v5-c-pagination__nav-page-select--c-form-control--width-chars: 2; - --pf-v5-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-v5-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-v5-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch)); + --pf-v5-c-pagination__nav-page-select--c-form-control--Width: calc( + var(--pf-v5-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-v5-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch) + ); --pf-v5-c-pagination__total-items--Display: block; --pf-v5-c-pagination--m-display-summary__total-items--Display: block; --pf-v5-c-pagination--m-display-full__total-items--Display: none; @@ -23576,7 +24155,7 @@ ul.pf-v5-c-list { display: var(--pf-v5-c-pagination__nav--Display); justify-content: flex-end; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-pagination__nav-control { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-pagination__nav-control { scale: -1 1; } .pf-v5-c-pagination__nav-control .pf-v5-c-button { @@ -23904,7 +24483,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; position: relative; display: grid; grid-template-rows: var(--pf-v5-c-progress-stepper--GridTemplateRows); @@ -23932,7 +24511,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } } @@ -24020,8 +24599,12 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper__step-title--m-help-text--hover--Color: var(--pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--hover--Color); --pf-v5-c-progress-stepper__step-title--m-help-text--focus--Color: var(--pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--focus--Color); --pf-v5-c-progress-stepper__step-title--m-help-text--TextDecorationColor: var(--pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--TextDecorationColor); - --pf-v5-c-progress-stepper__step-title--m-help-text--hover--TextDecorationColor: var(--pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--hover--TextDecorationColor); - --pf-v5-c-progress-stepper__step-title--m-help-text--focus--TextDecorationColor: var(--pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--focus--TextDecorationColor); + --pf-v5-c-progress-stepper__step-title--m-help-text--hover--TextDecorationColor: var( + --pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--hover--TextDecorationColor + ); + --pf-v5-c-progress-stepper__step-title--m-help-text--focus--TextDecorationColor: var( + --pf-v5-c-progress-stepper__step--m-danger__step-title--m-help-text--focus--TextDecorationColor + ); } .pf-v5-c-progress-stepper__step.pf-m-warning { --pf-v5-c-progress-stepper__step-icon--Color: var(--pf-v5-global--warning-color--100); @@ -24044,7 +24627,7 @@ ul.pf-v5-c-list { inset-inline-start: var(--pf-v5-c-progress-stepper__step-connector--before--Left); width: var(--pf-v5-c-progress-stepper__step-connector--before--Width); height: var(--pf-v5-c-progress-stepper__step-connector--before--Height); - content: ""; + content: ''; border-block-end: var(--pf-v5-c-progress-stepper__step-connector--before--BorderBottomWidth) solid var(--pf-v5-c-progress-stepper__step-connector--before--BorderBottomColor); border-inline-end: var(--pf-v5-c-progress-stepper__step-connector--before--BorderRightWidth) solid var(--pf-v5-c-progress-stepper__step-connector--before--BorderRightColor); transform: var(--pf-v5-c-progress-stepper__step-connector--before--Transform); @@ -24135,7 +24718,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical { @@ -24158,7 +24741,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } @media (min-width: 576px) { .pf-v5-c-progress-stepper.pf-m-horizontal-on-sm { @@ -24180,7 +24763,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical-on-sm { @@ -24203,7 +24786,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } } @media (min-width: 428px) { @@ -24226,7 +24809,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical-on-md { @@ -24249,7 +24832,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } } @media (min-width: 652px) { @@ -24272,7 +24855,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical-on-lg { @@ -24295,7 +24878,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } } @media (min-width: 876px) { @@ -24318,7 +24901,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical-on-xl { @@ -24341,7 +24924,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } } @media (min-width: 1100px) { @@ -24364,7 +24947,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact--GridTemplateColumns: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact--GridTemplateColumns); --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-horizontal--m-compact__step-connector--PaddingBottom); - --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: ''; --pf-v5-c-progress-stepper--m-center__step-main--before--Content: none; } .pf-v5-c-progress-stepper.pf-m-vertical-on-2xl { @@ -24387,7 +24970,7 @@ ul.pf-v5-c-list { --pf-v5-c-progress-stepper--m-compact__step-connector--GridRow: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--GridRow); --pf-v5-c-progress-stepper--m-compact__step-connector--PaddingBottom: var(--pf-v5-c-progress-stepper--m-vertical--m-compact__step-connector--PaddingBottom); --pf-v5-c-progress-stepper--m-center__step-connector--before--Content: none; - --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ""; + --pf-v5-c-progress-stepper--m-center__step-main--before--Content: ''; } } @@ -24486,7 +25069,7 @@ ul.pf-v5-c-list { --pf-v5-c-skeleton--BorderRadius: var(--pf-v5-global--BorderRadius--sm); --pf-v5-c-skeleton--before--PaddingBottom: 0; --pf-v5-c-skeleton--before--Height: auto; - --pf-v5-c-skeleton--before--Content: "\a0"; + --pf-v5-c-skeleton--before--Content: '\a0'; --pf-v5-c-skeleton--after--LinearGradientAngle: 90deg; --pf-v5-c-skeleton--after--LinearGradientColorStop1: var(--pf-v5-global--palette--black-150); --pf-v5-c-skeleton--after--LinearGradientColorStop2: #ededed; @@ -24496,7 +25079,7 @@ ul.pf-v5-c-list { --pf-v5-c-skeleton--after--AnimationDuration: 2s; --pf-v5-c-skeleton--after--AnimationIterationCount: infinite; --pf-v5-c-skeleton--after--AnimationTimingFunction: linear; - --pf-v5-c-skeleton--after--AnimationDelay: .5s; + --pf-v5-c-skeleton--after--AnimationDelay: 0.5s; --pf-v5-c-skeleton--m-circle--BorderRadius: var(--pf-v5-global--BorderRadius--lg); --pf-v5-c-skeleton--m-circle--before--PaddingBottom: 100%; --pf-v5-c-skeleton--m-text-4xl--Height: calc(var(--pf-v5-global--FontSize--4xl) * var(--pf-v5-global--LineHeight--sm)); @@ -24541,17 +25124,18 @@ ul.pf-v5-c-list { position: absolute; inset: 0; display: block; - content: ""; - background: - linear-gradient( - var(--pf-v5-c-skeleton--after--LinearGradientAngle), - var(--pf-v5-c-skeleton--after--LinearGradientColorStop1), - var(--pf-v5-c-skeleton--after--LinearGradientColorStop2), - var(--pf-v5-c-skeleton--after--LinearGradientColorStop3)); + content: ''; + background: linear-gradient( + var(--pf-v5-c-skeleton--after--LinearGradientAngle), + var(--pf-v5-c-skeleton--after--LinearGradientColorStop1), + var(--pf-v5-c-skeleton--after--LinearGradientColorStop2), + var(--pf-v5-c-skeleton--after--LinearGradientColorStop3) + ); transform: translate3d(var(--pf-v5-c-skeleton--after--TranslateX), 0, 0); - animation: var(--pf-v5-c-skeleton--after--AnimationName) var(--pf-v5-c-skeleton--after--AnimationDuration) var(--pf-v5-c-skeleton--after--AnimationTimingFunction) var(--pf-v5-c-skeleton--after--AnimationDelay) var(--pf-v5-c-skeleton--after--AnimationIterationCount); + animation: var(--pf-v5-c-skeleton--after--AnimationName) var(--pf-v5-c-skeleton--after--AnimationDuration) var(--pf-v5-c-skeleton--after--AnimationTimingFunction) + var(--pf-v5-c-skeleton--after--AnimationDelay) var(--pf-v5-c-skeleton--after--AnimationIterationCount); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-skeleton::after { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-skeleton::after { scale: -1 1; } .pf-v5-c-skeleton.pf-m-circle { @@ -24713,7 +25297,9 @@ ul.pf-v5-c-list { --pf-v5-c-slider__value--MarginLeft: var(--pf-v5-global--spacer--md); --pf-v5-c-slider__value--c-form-control--width-base: 3.5ch; --pf-v5-c-slider__value--c-form-control--width-chars: 3; - --pf-v5-c-slider__value--c-form-control--Width: calc(var(--pf-v5-c-slider__value--c-form-control--width-base) + (var(--pf-v5-c-slider__value--c-form-control--width-chars) * 1ch)); + --pf-v5-c-slider__value--c-form-control--Width: calc( + var(--pf-v5-c-slider__value--c-form-control--width-base) + (var(--pf-v5-c-slider__value--c-form-control--width-chars) * 1ch) + ); --pf-v5-c-slider__value--m-floating--TranslateX: -50%; --pf-v5-c-slider__value--m-floating--TranslateY: -100%; --pf-v5-c-slider__value--m-floating--Left: var(--pf-v5-c-slider--value); @@ -24725,7 +25311,7 @@ ul.pf-v5-c-list { --pf-v5-c-slider--m-disabled__thumb--BackgroundColor: var(--pf-v5-global--palette--black-700); display: flex; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider { --pf-v5-c-slider__rail-track--before--fill--direction: left; } .pf-v5-c-slider.pf-m-disabled { @@ -24755,13 +25341,13 @@ ul.pf-v5-c-list { .pf-v5-c-slider__rail-track::before { position: absolute; inset: 0; - content: ""; - background: - linear-gradient( - to var(--pf-v5-c-slider__rail-track--before--fill--direction), - var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor), - var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor) var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop), - var(--pf-v5-c-slider__rail-track--before--base--BackgroundColor) var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop)); + content: ''; + background: linear-gradient( + to var(--pf-v5-c-slider__rail-track--before--fill--direction), + var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor), + var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor) var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop), + var(--pf-v5-c-slider__rail-track--before--base--BackgroundColor) var(--pf-v5-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop) + ); border-radius: var(--pf-v5-c-slider__rail-track--before--BorderRadius); } .pf-v5-c-slider__steps { @@ -24773,7 +25359,7 @@ ul.pf-v5-c-list { position: absolute; inset-block-start: 0; inset-inline-start: var(--pf-v5-c-slider__step--Left); - content: ""; + content: ''; } .pf-v5-c-slider__step.pf-m-active { --pf-v5-c-slider__step-tick--BackgroundColor: var(--pf-v5-c-slider__step--m-active__slider-tick--BackgroundColor); @@ -24796,7 +25382,7 @@ ul.pf-v5-c-list { background-color: var(--pf-v5-c-slider__step-tick--BackgroundColor); border-radius: var(--pf-v5-c-slider__step-tick--BorderRadius); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider__step-tick { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider__step-tick { transform: translateX(calc(var(--pf-v5-c-slider__step-tick--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-slider__step-label { @@ -24805,7 +25391,7 @@ ul.pf-v5-c-list { inset-block-start: var(--pf-v5-c-slider__step-label--Top); word-break: normal; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider__step-label { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider__step-label { transform: translateX(calc(var(--pf-v5-c-slider__step-label--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-slider__thumb { @@ -24820,7 +25406,7 @@ ul.pf-v5-c-list { border-radius: var(--pf-v5-c-slider__thumb--BorderRadius); box-shadow: var(--pf-v5-c-slider__thumb--BoxShadow); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider__thumb { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider__thumb { transform: translate(calc(var(--pf-v5-c-slider__thumb--TranslateX) * var(--pf-v5-global--inverse--multiplier)), var(--pf-v5-c-slider__thumb--TranslateY)); } .pf-v5-c-slider__thumb::before { @@ -24830,10 +25416,10 @@ ul.pf-v5-c-list { inset-inline-start: 50%; width: var(--pf-v5-c-slider__thumb--before--Width); height: var(--pf-v5-c-slider__thumb--before--Height); - content: ""; + content: ''; border-radius: var(--pf-v5-c-slider__thumb--before--BorderRadius); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider__thumb::before { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider__thumb::before { transform: translate(calc(var(--pf-v5-c-slider__thumb--before--TranslateX) * var(--pf-v5-global--inverse--multiplier)), var(--pf-v5-c-slider__thumb--before--TranslateY)); } .pf-v5-c-slider__thumb:hover { @@ -24857,7 +25443,7 @@ ul.pf-v5-c-list { inset-inline-start: var(--pf-v5-c-slider__value--m-floating--Left); z-index: var(--pf-v5-c-slider__value--m-floating--ZIndex); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider__value.pf-m-floating { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-slider__value.pf-m-floating { transform: translate(calc(var(--pf-v5-c-slider__value--m-floating--TranslateX) * var(--pf-v5-global--inverse--multiplier)), var(--pf-v5-c-slider__value--m-floating--TranslateY)); } .pf-v5-c-slider__value .pf-v5-c-form-control { @@ -24877,9 +25463,9 @@ ul.pf-v5-c-list { --pf-v5-c-switch--FontSize: var(--pf-v5-global--FontSize--md); --pf-v5-c-switch__label--PaddingLeft: var(--pf-v5-global--spacer--md); --pf-v5-c-switch--ColumnGap: var(--pf-v5-c-switch__label--PaddingLeft); - --pf-v5-c-switch__toggle-icon--FontSize: calc(var(--pf-v5-c-switch--FontSize) * .625); + --pf-v5-c-switch__toggle-icon--FontSize: calc(var(--pf-v5-c-switch--FontSize) * 0.625); --pf-v5-c-switch__toggle-icon--Color: var(--pf-v5-global--Color--light-100); - --pf-v5-c-switch__toggle-icon--Left: calc(var(--pf-v5-c-switch--FontSize) * .4); + --pf-v5-c-switch__toggle-icon--Left: calc(var(--pf-v5-c-switch--FontSize) * 0.4); --pf-v5-c-switch__toggle-icon--Offset: 0.125rem; --pf-v5-c-switch__input--disabled__toggle-icon--Color: var(--pf-v5-global--palette--black-150); --pf-v5-c-switch--LineHeight: var(--pf-v5-global--LineHeight--md); @@ -24904,7 +25490,7 @@ ul.pf-v5-c-list { --pf-v5-c-switch__toggle--before--BackgroundColor: var(--pf-v5-global--BackgroundColor--100); --pf-v5-c-switch__toggle--before--BorderRadius: var(--pf-v5-global--BorderRadius--lg); --pf-v5-c-switch__toggle--before--BoxShadow: var(--pf-v5-global--BoxShadow--md); - --pf-v5-c-switch__toggle--before--Transition: transform .25s ease 0s; + --pf-v5-c-switch__toggle--before--Transition: transform 0.25s ease 0s; --pf-v5-c-switch__toggle--Width: calc(var(--pf-v5-c-switch__toggle--Height) + var(--pf-v5-c-switch__toggle-icon--Offset) + var(--pf-v5-c-switch__toggle--before--Width)); --pf-v5-c-switch__label--Color: var(--pf-v5-global--Color--dark-100); position: relative; @@ -24943,7 +25529,7 @@ ul.pf-v5-c-list { .pf-v5-c-switch__input:checked ~ .pf-v5-c-switch__toggle::before { transform: translateX(var(--pf-v5-c-switch__input--checked__toggle--before--TranslateX)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-switch__input:checked ~ .pf-v5-c-switch__toggle::before { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-switch__input:checked ~ .pf-v5-c-switch__toggle::before { transform: translateX(calc(var(--pf-v5-c-switch__input--checked__toggle--before--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-switch__input:checked ~ .pf-m-off { @@ -24988,7 +25574,7 @@ ul.pf-v5-c-list { display: block; width: var(--pf-v5-c-switch__toggle--before--Width); height: var(--pf-v5-c-switch__toggle--before--Height); - content: ""; + content: ''; background-color: var(--pf-v5-c-switch__toggle--before--BackgroundColor); border-radius: var(--pf-v5-c-switch__toggle--before--BorderRadius); box-shadow: var(--pf-v5-c-switch__toggle--before--BoxShadow); @@ -25100,9 +25686,9 @@ ul.pf-v5-c-list { --pf-v5-c-tabs__scroll-button--Width: var(--pf-v5-global--spacer--2xl); --pf-v5-c-tabs__scroll-button--xl--Width: var(--pf-v5-global--spacer--3xl); --pf-v5-c-tabs__scroll-button--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs)); - --pf-v5-c-tabs__scroll-button--TransitionDuration--margin: .125s; - --pf-v5-c-tabs__scroll-button--TransitionDuration--transform: .125s; - --pf-v5-c-tabs__scroll-button--TransitionDuration--opacity: .125s; + --pf-v5-c-tabs__scroll-button--TransitionDuration--margin: 0.125s; + --pf-v5-c-tabs__scroll-button--TransitionDuration--transform: 0.125s; + --pf-v5-c-tabs__scroll-button--TransitionDuration--opacity: 0.125s; --pf-v5-c-tabs__scroll-button--before--BorderColor: var(--pf-v5-c-tabs--before--BorderColor); --pf-v5-c-tabs__scroll-button--before--border-width--base: var(--pf-v5-global--BorderWidth--sm); --pf-v5-c-tabs__scroll-button--before--BorderRightWidth: 0; @@ -25144,7 +25730,7 @@ ul.pf-v5-c-list { --pf-v5-c-tabs__add--c-button--PaddingBottom: var(--pf-v5-c-tabs__link--PaddingBottom); --pf-v5-c-tabs__add--c-button--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs)); --pf-v5-c-tabs__link-toggle-icon--Color: var(--pf-v5-global--Color--200); - --pf-v5-c-tabs__link-toggle-icon--Transition: .2s ease-in 0s; + --pf-v5-c-tabs__link-toggle-icon--Transition: 0.2s ease-in 0s; --pf-v5-c-tabs__link-toggle-icon--Rotate: 0; --pf-v5-c-tabs__link-toggle-icon--FontSize: var(--pf-v5-global--FontSize--sm); --pf-v5-c-tabs__link--m-expanded__toggle-icon--Color: var(--pf-v5-global--Color--100); @@ -25436,7 +26022,7 @@ ul.pf-v5-c-list { transition: var(--pf-v5-c-tabs__toggle-icon--Transition); transform: rotate(var(--pf-v5-c-tabs__toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tabs__toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-tabs__toggle-icon { scale: -1 1; } .pf-v5-c-tabs__toggle-text { @@ -25490,7 +26076,7 @@ ul.pf-v5-c-list { inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; - content: ""; + content: ''; border-style: solid; } .pf-v5-c-tabs__list::before, @@ -25609,7 +26195,7 @@ ul.pf-v5-c-list { transition: var(--pf-v5-c-tabs__link-toggle-icon--Transition); transform: rotate(var(--pf-v5-c-tabs__link-toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tabs__link-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-tabs__link-toggle-icon { scale: -1 1; } .pf-v5-c-tabs__item-action { @@ -25643,7 +26229,7 @@ ul.pf-v5-c-list { transform var(--pf-v5-c-tabs__scroll-button--TransitionDuration--transform), opacity var(--pf-v5-c-tabs__scroll-button--TransitionDuration--opacity); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tabs__scroll-button > * { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-tabs__scroll-button > * { scale: -1 1; } .pf-v5-c-tabs__scroll-button:hover, @@ -25982,7 +26568,7 @@ ul.pf-v5-c-list { .pf-v5-c-tile::after { position: absolute; pointer-events: none; - content: ""; + content: ''; } .pf-v5-c-tile::before { inset: 0; @@ -26180,7 +26766,7 @@ ul.pf-v5-c-list { inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; border: var(--pf-v5-c-toggle-group__button--before--BorderWidth) solid var(--pf-v5-c-toggle-group__button--before--BorderColor); } .pf-v5-c-toggle-group__button:hover { @@ -26376,7 +26962,9 @@ ul.pf-v5-c-list { --pf-v5-c-toolbar__item--m-form-element--TranslateY: var(--pf-v5-global--spacer--form-element); --pf-v5-c-toolbar__item--m-form-element--FontWeight: var(--pf-v5-global--FontWeight--bold); --pf-v5-c-toolbar__item--m-form-control--TranslateY: var(--pf-v5-global--spacer--form-element); - --pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom: calc(-1 * var(--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap) + var(--pf-v5-global--spacer--sm)); + --pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom: calc( + -1 * var(--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap) + var(--pf-v5-global--spacer--sm) + ); --pf-v5-c-toolbar__expandable-content__item--m-label--FontSize: var(--pf-v5-global--FontSize--sm); --pf-v5-c-toolbar__toggle--m-expanded__c-button--m-plain--Color: var(--pf-v5-global--Color--100); --pf-v5-c-toolbar--c-divider--m-vertical--spacer: var(--pf-v5-c-toolbar--spacer--base); @@ -26544,17 +27132,29 @@ ul.pf-v5-c-list { } @media (min-width: 652px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--Width--base: var(--pf-v5-c-toolbar__item--Width-on-lg, var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width)))); + --pf-v5-c-toolbar__item--Width--base: var( + --pf-v5-c-toolbar__item--Width-on-lg, + var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width))) + ); } } @media (min-width: 876px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--Width--base: var(--pf-v5-c-toolbar__item--Width-on-xl, var(--pf-v5-c-toolbar__item--Width-on-lg, var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width))))); + --pf-v5-c-toolbar__item--Width--base: var( + --pf-v5-c-toolbar__item--Width-on-xl, + var(--pf-v5-c-toolbar__item--Width-on-lg, var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width)))) + ); } } @media (min-width: 1100px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--Width--base: var(--pf-v5-c-toolbar__item--Width-on-2xl, var(--pf-v5-c-toolbar__item--Width-on-xl, var(--pf-v5-c-toolbar__item--Width-on-lg, var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width)))))); + --pf-v5-c-toolbar__item--Width--base: var( + --pf-v5-c-toolbar__item--Width-on-2xl, + var( + --pf-v5-c-toolbar__item--Width-on-xl, + var(--pf-v5-c-toolbar__item--Width-on-lg, var(--pf-v5-c-toolbar__item--Width-on-md, var(--pf-v5-c-toolbar__item--Width-on-sm, var(--pf-v5-c-toolbar__item--Width)))) + ) + ); } } @media (min-width: 576px) { @@ -26569,17 +27169,35 @@ ul.pf-v5-c-list { } @media (min-width: 652px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--MinWidth--base: var(--pf-v5-c-toolbar__item--MinWidth-on-lg, var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth)))); + --pf-v5-c-toolbar__item--MinWidth--base: var( + --pf-v5-c-toolbar__item--MinWidth-on-lg, + var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth))) + ); } } @media (min-width: 876px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--MinWidth--base: var(--pf-v5-c-toolbar__item--MinWidth-on-xl, var(--pf-v5-c-toolbar__item--MinWidth-on-lg, var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth))))); + --pf-v5-c-toolbar__item--MinWidth--base: var( + --pf-v5-c-toolbar__item--MinWidth-on-xl, + var( + --pf-v5-c-toolbar__item--MinWidth-on-lg, + var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth))) + ) + ); } } @media (min-width: 1100px) { .pf-v5-c-toolbar__item { - --pf-v5-c-toolbar__item--MinWidth--base: var(--pf-v5-c-toolbar__item--MinWidth-on-2xl, var(--pf-v5-c-toolbar__item--MinWidth-on-xl, var(--pf-v5-c-toolbar__item--MinWidth-on-lg, var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth)))))); + --pf-v5-c-toolbar__item--MinWidth--base: var( + --pf-v5-c-toolbar__item--MinWidth-on-2xl, + var( + --pf-v5-c-toolbar__item--MinWidth-on-xl, + var( + --pf-v5-c-toolbar__item--MinWidth-on-lg, + var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth))) + ) + ) + ); } } .pf-v5-c-toolbar__item.pf-m-align-items-start { @@ -27493,7 +28111,10 @@ ul.pf-v5-c-list { --pf-v5-c-number-input--c-form-control--width-icon: 0px; --pf-v5-c-number-input--m-status--c-form-control--width-icon: var(--pf-v5-global--spacer--xl); --pf-v5-c-number-input--c-form-control--width-chars: 4; - --pf-v5-c-number-input--c-form-control--Width: calc( calc( var(--pf-v5-c-number-input--c-form-control--width-base) + var(--pf-v5-c-number-input--c-form-control--width-chars) * 1ch ) + var(--pf-v5-c-number-input--c-form-control--width-icon) ); + --pf-v5-c-number-input--c-form-control--Width: calc( + calc(var(--pf-v5-c-number-input--c-form-control--width-base) + var(--pf-v5-c-number-input--c-form-control--width-chars) * 1ch) + + var(--pf-v5-c-number-input--c-form-control--width-icon) + ); display: inline-flex; align-items: center; } @@ -27573,7 +28194,9 @@ ul.pf-v5-c-list { --pf-v5-c-tree-view--m-guides--guide-color--base: var(--pf-v5-global--BorderColor--100); --pf-v5-c-tree-view--m-guides--guide-width--base: var(--pf-v5-global--BorderWidth--sm); --pf-v5-c-tree-view--m-guides--guide-left--base: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides__list-node--guide-width--base)); - --pf-v5-c-tree-view--m-guides--guide-left--base--offset: calc(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--Left) + var(--pf-v5-c-tree-view__node-toggle-icon--MinWidth) / 2); + --pf-v5-c-tree-view--m-guides--guide-left--base--offset: calc( + var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--Left) + var(--pf-v5-c-tree-view__node-toggle-icon--MinWidth) / 2 + ); --pf-v5-c-tree-view--m-guides__list-node--guide-width--base: var(--pf-v5-global--spacer--lg); --pf-v5-c-tree-view--m-guides__list-item--before--Top: 0; --pf-v5-c-tree-view--m-guides__list-item--before--Width: var(--pf-v5-c-tree-view--m-guides--guide-width--base); @@ -27601,11 +28224,15 @@ ul.pf-v5-c-list { --pf-v5-c-tree-view--m-compact__list-item--before--Top: 0; --pf-v5-c-tree-view--m-compact__list-item--last-child--before--Height: var(--pf-v5-c-tree-view--m-compact__node--before--Top); --pf-v5-c-tree-view--m-compact__list-item--nested--before--Top: calc(var(--pf-v5-c-tree-view__node--PaddingTop--base) * -1); - --pf-v5-c-tree-view--m-compact__list-item--nested--last-child--before--Height: calc(var(--pf-v5-c-tree-view--m-compact__node--before--Top) + var(--pf-v5-c-tree-view__node--PaddingTop--base)); + --pf-v5-c-tree-view--m-compact__list-item--nested--last-child--before--Height: calc( + var(--pf-v5-c-tree-view--m-compact__node--before--Top) + var(--pf-v5-c-tree-view__node--PaddingTop--base) + ); --pf-v5-c-tree-view--m-compact__node--PaddingLeft: var(--pf-v5-c-tree-view--m-compact__node--indent--base); - --pf-v5-c-tree-view--m-compact__node--before--Top: calc(var(--pf-v5-c-tree-view--m-compact__node-container--PaddingTop) + var(--pf-v5-c-tree-view--m-compact__node--nested--PaddingTop) + 0.25rem); + --pf-v5-c-tree-view--m-compact__node--before--Top: calc( + var(--pf-v5-c-tree-view--m-compact__node-container--PaddingTop) + var(--pf-v5-c-tree-view--m-compact__node--nested--PaddingTop) + 0.25rem + ); --pf-v5-c-tree-view--m-compact__node--level-2--PaddingLeft: var(--pf-v5-c-tree-view--m-compact__node--indent--base); - --pf-v5-c-tree-view--m-compact__node-toggle--nested--MarginRight: calc(var(--pf-v5-c-tree-view__node-toggle-button--PaddingLeft) * -.5); + --pf-v5-c-tree-view--m-compact__node-toggle--nested--MarginRight: calc(var(--pf-v5-c-tree-view__node-toggle-button--PaddingLeft) * -0.5); --pf-v5-c-tree-view--m-compact__node-toggle--nested--MarginLeft: calc(var(--pf-v5-c-tree-view__node-toggle-button--PaddingLeft) * -1.5); --pf-v5-c-tree-view--m-compact__node-container--Display: flex; --pf-v5-c-tree-view--m-compact__node-container--PaddingBottom--base: var(--pf-v5-global--spacer--lg); @@ -27621,12 +28248,16 @@ ul.pf-v5-c-list { --pf-v5-c-tree-view--m-compact__list-item--m-expanded__node-container--PaddingBottom: 0; --pf-v5-c-tree-view--m-no-background__node-container--BackgroundColor: transparent; --pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset: var(--pf-v5-global--spacer--sm); - --pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); + --pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); --pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base: var(--pf-v5-c-tree-view__node--indent--base); --pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base: var(--pf-v5-global--spacer--2xl); --pf-v5-c-tree-view--m-compact--m-no-background__node--nested--PaddingTop: 0; --pf-v5-c-tree-view--m-compact--m-no-background__node--nested--PaddingBottom: 0; - --pf-v5-c-tree-view--m-compact--m-no-background__node--before--Top: calc(var(--pf-v5-c-tree-view--m-compact__node-container--nested--PaddingTop) + var(--pf-v5-c-tree-view--m-compact__node--nested--PaddingTop) + 0.25rem); + --pf-v5-c-tree-view--m-compact--m-no-background__node--before--Top: calc( + var(--pf-v5-c-tree-view--m-compact__node-container--nested--PaddingTop) + var(--pf-v5-c-tree-view--m-compact__node--nested--PaddingTop) + 0.25rem + ); padding-block-start: var(--pf-v5-c-tree-view--PaddingTop); padding-block-end: var(--pf-v5-c-tree-view--PaddingBottom); } @@ -27640,7 +28271,7 @@ ul.pf-v5-c-list { .pf-v5-c-tree-view.pf-m-guides .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__node::before { position: absolute; inset-inline-start: var(--pf-v5-c-tree-view--m-guides--guide--Left); - content: ""; + content: ''; } .pf-v5-c-tree-view.pf-m-compact .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item::before, .pf-v5-c-tree-view.pf-m-guides .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item::before { @@ -27753,7 +28384,7 @@ ul.pf-v5-c-list { transition: var(--pf-v5-c-tree-view__node-toggle-icon--Transition); transform: rotate(var(--pf-v5-c-tree-view__node-toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-tree-view__node-toggle-icon { scale: -1 1; } .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { @@ -27841,7 +28472,7 @@ ul.pf-v5-c-list { border: 0; transform: translateX(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-tree-view__node-toggle { transform: translateX(calc(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } .pf-v5-c-tree-view__node-title.pf-m-truncate, @@ -27901,82 +28532,181 @@ label.pf-v5-c-tree-view__node-text { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 2 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 1 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 1 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 1 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 1 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); } .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 3 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 2 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 2 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 2 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 2 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); } .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 4 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 3 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 3 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 3 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 3 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 5 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 4 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 4 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 4 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 4 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 6 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 5 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 5 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 5 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 5 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 7 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 6 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 6 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 6 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 6 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 8 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 7 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 7 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 7 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 7 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 9 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 8 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 8 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 8 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); -} -.pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item { + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 8 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); +} +.pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item + .pf-v5-c-tree-view__list-item { --pf-v5-c-tree-view__list-item__list-item__node-toggle--Left: var(--pf-v5-c-tree-view__node--PaddingLeft); --pf-v5-c-tree-view__node--PaddingLeft: calc(var(--pf-v5-c-tree-view__node--nested-indent--base) * 10 + var(--pf-v5-c-tree-view__node--indent--base)); --pf-v5-c-tree-view--m-guides--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-guides--guide-left--base--offset)); - --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 9 + var(--pf-v5-c-tree-view--m-compact__node--indent--base)); + --pf-v5-c-tree-view--m-compact__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact__node--nested-indent--base) * 9 + var(--pf-v5-c-tree-view--m-compact__node--indent--base) + ); --pf-v5-c-tree-view--m-compact--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--base-border--Left--offset)); - --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc(var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 9 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base)); - --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc(var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset)); + --pf-v5-c-tree-view--m-compact--m-no-background__node--PaddingLeft: calc( + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--nested-indent--base) * 9 + var(--pf-v5-c-tree-view--m-compact--m-no-background__node--indent--base) + ); + --pf-v5-c-tree-view--m-compact--m-no-background--border--nested--Left: calc( + var(--pf-v5-c-tree-view__node--PaddingLeft) - var(--pf-v5-c-tree-view--m-compact--m-no-background--base-border--Left--offset) + ); } :where(.pf-v5-theme-dark) .pf-v5-c-tree-view { --pf-v5-c-tree-view__node--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--300); @@ -28279,7 +29009,7 @@ label.pf-v5-c-tree-view__node-text { margin-inline-start: var(--pf-v5-c-wizard__toggle-separator--MarginLeft); color: var(--pf-v5-c-wizard__toggle-separator--Color); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-wizard__toggle-separator { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-wizard__toggle-separator { scale: -1 1; } .pf-v5-c-wizard__toggle-icon { @@ -28395,7 +29125,7 @@ label.pf-v5-c-tree-view__node-text { background-color: var(--pf-v5-c-wizard__nav-link--before--BackgroundColor); border-radius: var(--pf-v5-c-wizard__nav-link--before--BorderRadius); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-wizard__toggle-num, +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-wizard__toggle-num, .pf-v5-c-wizard__nav-link::before { transform: translateX(calc(var(--pf-v5-c-wizard__nav-link--before--TranslateX) * var(--pf-v5-global--inverse--multiplier))); } @@ -28444,7 +29174,7 @@ label.pf-v5-c-tree-view__node-text { transition: var(--pf-v5-c-wizard__nav-link-toggle-icon--Transition); transform: rotate(var(--pf-v5-c-wizard__nav-link-toggle-icon--Rotate)); } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-wizard__nav-link-toggle-icon { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-wizard__nav-link-toggle-icon { scale: -1 1; } .pf-v5-c-wizard__main { @@ -28521,21 +29251,21 @@ label.pf-v5-c-tree-view__node-text { .pf-v5-c-truncate__end { direction: rtl; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-truncate__end { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-truncate__end { direction: ltr; } .pf-v5-c-truncate__start + .pf-v5-c-truncate__end { overflow: visible; direction: ltr; } -:where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-truncate__start + .pf-v5-c-truncate__end { +:where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-truncate__start + .pf-v5-c-truncate__end { direction: rtl; } @supports (-webkit-hyphens: none) { .pf-v5-c-truncate__end { direction: ltr; } - :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-truncate__end { + :where(.pf-v5-m-dir-rtl, [dir='rtl']) .pf-v5-c-truncate__end { direction: rtl; } } @@ -28547,7 +29277,10 @@ label.pf-v5-c-tree-view__node-text { --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v5-l-gallery--GridTemplateColumns--min); --pf-v5-l-gallery--GridTemplateColumns--max: 1fr; --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v5-l-gallery--GridTemplateColumns--max); - --pf-v5-l-gallery--GridTemplateColumns: repeat(auto-fill, minmax(var(--pf-v5-l-gallery--GridTemplateColumns--minmax--min), var(--pf-v5-l-gallery--GridTemplateColumns--minmax--max))); + --pf-v5-l-gallery--GridTemplateColumns: repeat( + auto-fill, + minmax(var(--pf-v5-l-gallery--GridTemplateColumns--minmax--min), var(--pf-v5-l-gallery--GridTemplateColumns--minmax--max)) + ); --pf-v5-l-gallery--GridTemplateRows: auto; display: grid; grid-template-rows: var(--pf-v5-l-gallery--GridTemplateRows); @@ -28565,22 +29298,43 @@ label.pf-v5-c-tree-view__node-text { } @media (min-width: 428px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-md, + var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min)) + ); } } @media (min-width: 652px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v5-l-gallery--GridTemplateColumns--min-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min)))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min))) + ); } } @media (min-width: 876px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v5-l-gallery--GridTemplateColumns--min-on-xl, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min))))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min))) + ) + ); } } @media (min-width: 1100px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v5-l-gallery--GridTemplateColumns--min-on-2xl, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-xl, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min)))))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--min: var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-2xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--min-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--min))) + ) + ) + ); } } @media (min-width: 576px) { @@ -28590,22 +29344,43 @@ label.pf-v5-c-tree-view__node-text { } @media (min-width: 428px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-md, + var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max)) + ); } } @media (min-width: 652px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v5-l-gallery--GridTemplateColumns--max-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max)))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max))) + ); } } @media (min-width: 876px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v5-l-gallery--GridTemplateColumns--max-on-xl, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max))))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max))) + ) + ); } } @media (min-width: 1100px) { .pf-v5-l-gallery { - --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v5-l-gallery--GridTemplateColumns--max-on-2xl, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-xl, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-lg, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max)))))); + --pf-v5-l-gallery--GridTemplateColumns--minmax--max: var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-2xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-xl, + var( + --pf-v5-l-gallery--GridTemplateColumns--max-on-lg, + var(--pf-v5-l-gallery--GridTemplateColumns--max-on-md, var(--pf-v5-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v5-l-gallery--GridTemplateColumns--max))) + ) + ) + ); } } @@ -28647,13 +29422,22 @@ label.pf-v5-c-tree-view__node-text { @media (min-width: 876px) { .pf-v5-l-grid > *, .pf-v5-l-grid .pf-v5-l-grid__item { - order: var(--pf-v5-l-grid--item--Order-on-xl, var(--pf-v5-l-grid--item--Order-on-lg, var(--pf-v5-l-grid--item--Order-on-md, var(--pf-v5-l-grid--item--Order-on-sm, var(--pf-v5-l-grid--item--Order))))); + order: var( + --pf-v5-l-grid--item--Order-on-xl, + var(--pf-v5-l-grid--item--Order-on-lg, var(--pf-v5-l-grid--item--Order-on-md, var(--pf-v5-l-grid--item--Order-on-sm, var(--pf-v5-l-grid--item--Order)))) + ); } } @media (min-width: 1100px) { .pf-v5-l-grid > *, .pf-v5-l-grid .pf-v5-l-grid__item { - order: var(--pf-v5-l-grid--item--Order-on-2xl, var(--pf-v5-l-grid--item--Order-on-xl, var(--pf-v5-l-grid--item--Order-on-lg, var(--pf-v5-l-grid--item--Order-on-md, var(--pf-v5-l-grid--item--Order-on-sm, var(--pf-v5-l-grid--item--Order)))))); + order: var( + --pf-v5-l-grid--item--Order-on-2xl, + var( + --pf-v5-l-grid--item--Order-on-xl, + var(--pf-v5-l-grid--item--Order-on-lg, var(--pf-v5-l-grid--item--Order-on-md, var(--pf-v5-l-grid--item--Order-on-sm, var(--pf-v5-l-grid--item--Order)))) + ) + ); } } .pf-v5-l-grid.pf-m-all-1-col > * { @@ -29663,12 +30447,8 @@ label.pf-v5-c-tree-view__node-text { block-size: 100%; } .file-editor-modal.is-modified::after { - background: - linear-gradient( - to bottom, - var(--pf-v5-global--warning-color--100), - transparent 0.33em); - content: ""; + background: linear-gradient(to bottom, var(--pf-v5-global--warning-color--100), transparent 0.33em); + content: ''; inset: 0; pointer-events: none; position: absolute; @@ -29678,7 +30458,7 @@ label.pf-v5-c-tree-view__node-text { background: var(--pf-v5-global--warning-color--100); block-size: 1cap; border-radius: 0.5cap; - content: ""; + content: ''; display: inline-block; margin-inline-start: 0.5cap; } @@ -29721,11 +30501,7 @@ button.progress-wrapper:hover { display: inline-block; vertical-align: middle; background: conic-gradient(var(--progress-fill) var(--progress, 0), var(--progress-empty) calc(var(--progress, 0) * 1.005)); - mask-image: - radial-gradient( - circle farthest-side, - transparent calc(100% - var(--progress-width)), - black calc(100% - var(--progress-width) + 1px)); + mask-image: radial-gradient(circle farthest-side, transparent calc(100% - var(--progress-width)), black calc(100% - var(--progress-width) + 1px)); } .upload-progress { margin-block-start: var(--pf-v5-global--spacer--md); @@ -29807,7 +30583,7 @@ button.cancel-button { aspect-ratio: 1; background-color: var(--color-icon); block-size: var(--icon-size); - content: ""; + content: ''; mask-repeat: no-repeat; mask-position: center; mask-image: url('data:image/svg+xml,'); @@ -29822,7 +30598,7 @@ button.cancel-button { aspect-ratio: 1; background-color: var(--color-icon); block-size: var(--symlink-size); - content: ""; + content: ''; mask-repeat: no-repeat; mask-position: center; mask-image: url('data:image/svg+xml,%3Csvg title="symlink" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"%3E%3Cpath d="M81 81a248 248 0 1 1 350 350A248 248 0 0 1 81 81zm81 122 104-3-129 130c-9 9-9 24 0 33l12 12c9 9 24 9 33 0l130-129-3 104c0 14 11 25 24 25h16c13 0 24-11 24-24V163c0-13-11-24-24-24H161c-13 0-24 11-24 24v16c0 13 11 24 25 24z"/%3E%3C/svg%3E'); @@ -30185,7 +30961,7 @@ button.cancel-button { inset-inline-start: 0; inset-inline-end: 0; pointer-events: none; - content: ""; + content: ''; border: var(--pf-v5-c-button--after--BorderWidth) solid; border-color: var(--pf-v5-c-button--after--BorderColor); border-radius: var(--pf-v5-c-button--after--BorderRadius); @@ -30394,7 +31170,8 @@ button.cancel-button { --pf-v5-c-button--BorderRadius: var(--pf-v5-c-button--m-control--BorderRadius); --pf-v5-c-button--disabled--BackgroundColor: var(--pf-v5-c-button--m-control--disabled--BackgroundColor); --pf-v5-c-button--after--BorderWidth: var(--pf-v5-c-button--m-control--after--BorderWidth); - --pf-v5-c-button--after--BorderColor: var(--pf-v5-c-button--m-control--after--BorderTopColor) var(--pf-v5-c-button--m-control--after--BorderRightColor) var(--pf-v5-c-button--m-control--after--BorderBottomColor) var(--pf-v5-c-button--m-control--after--BorderLeftColor); + --pf-v5-c-button--after--BorderColor: var(--pf-v5-c-button--m-control--after--BorderTopColor) var(--pf-v5-c-button--m-control--after--BorderRightColor) + var(--pf-v5-c-button--m-control--after--BorderBottomColor) var(--pf-v5-c-button--m-control--after--BorderLeftColor); color: var(--pf-v5-c-button--m-control--Color); background-color: var(--pf-v5-c-button--m-control--BackgroundColor); } @@ -30623,7 +31400,7 @@ button.cancel-button { .pf-v5-t-light.pf-m-opaque-300 { background-color: #f0f0f0; } -.pf-v5-c-select[data-popper-reference-hidden=false] { +.pf-v5-c-select[data-popper-reference-hidden='false'] { inline-size: auto; } .ct-m-nav__tertiary-wrap .pf-v5-c-nav__list { @@ -30726,43 +31503,43 @@ select.pf-v5-c-form-control { .pf-v5-l-flex { gap: var(--pf-v5-l-flex--spacer-base); } -.pf-v5-l-flex:not([class*=pf-m-space-items-]) { +.pf-v5-l-flex:not([class*='pf-m-space-items-']) { gap: var(--pf-v5-l-flex--spacer--md); } -.pf-v5-l-flex:not([class*=pf-m-space-items-]) > * { +.pf-v5-l-flex:not([class*='pf-m-space-items-']) > * { --pf-v5-l-flex--spacer--column: 0; } .pf-v5-l-flex > :not(.pf-v5-l-flex) { --pf-v5-l-flex--spacer-base: 0; } -.pf-v5-l-flex[class*=pf-m-space-items-] > * { +.pf-v5-l-flex[class*='pf-m-space-items-'] > * { --pf-v5-l-flex--spacer--column: 0; } -.pf-v5-l-flex[class*=pf-m-space-items-none] { +.pf-v5-l-flex[class*='pf-m-space-items-none'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--none); } -.pf-v5-l-flex[class*=pf-m-space-items-xs] { +.pf-v5-l-flex[class*='pf-m-space-items-xs'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--xs); } -.pf-v5-l-flex[class*=pf-m-space-items-sm] { +.pf-v5-l-flex[class*='pf-m-space-items-sm'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--sm); } -.pf-v5-l-flex[class*=pf-m-space-items-md] { +.pf-v5-l-flex[class*='pf-m-space-items-md'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--md); } -.pf-v5-l-flex[class*=pf-m-space-items-lg] { +.pf-v5-l-flex[class*='pf-m-space-items-lg'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--lg); } -.pf-v5-l-flex[class*=pf-m-space-items-xl] { +.pf-v5-l-flex[class*='pf-m-space-items-xl'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--xl); } -.pf-v5-l-flex[class*=pf-m-space-items-2xl] { +.pf-v5-l-flex[class*='pf-m-space-items-2xl'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--2xl); } -.pf-v5-l-flex[class*=pf-m-space-items-3xl] { +.pf-v5-l-flex[class*='pf-m-space-items-3xl'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--3xl); } -.pf-v5-l-flex[class*=pf-m-space-items-4xl] { +.pf-v5-l-flex[class*='pf-m-space-items-4xl'] { --pf-v5-l-flex--spacer-base: var(--pf-v5-l-flex--spacer--4xl); } .pf-v5-c-radio, @@ -30873,10 +31650,10 @@ h3 { h4 { --ct-heading-font-size: var(--pf-v5-global--FontSize--lg); } -h1:not([class*=pf-]):not([data-pf-content=true]), -h2:not([class*=pf-]):not([data-pf-content=true]), -h3:not([class*=pf-]):not([data-pf-content=true]), -h4:not([class*=pf-]):not([data-pf-content=true]) { +h1:not([class*='pf-']):not([data-pf-content='true']), +h2:not([class*='pf-']):not([data-pf-content='true']), +h3:not([class*='pf-']):not([data-pf-content='true']), +h4:not([class*='pf-']):not([data-pf-content='true']) { font-size: var(--ct-heading-font-size); } a { @@ -32133,7 +32910,7 @@ main.pixel-test { display: none; } .pf-v5-c-breadcrumb__list .pf-v5-c-breadcrumb__item-divider::after { - content: "/"; + content: '/'; } .pf-v5-c-breadcrumb__list .pf-v5-c-breadcrumb__item { font-size: var(--pf-v5-global--FontSize--md); diff --git a/rock-s0/cockpit-files/index.js b/rock-s0/cockpit-files/index.js index 3645ea2..c5ca8cd 100644 --- a/rock-s0/cockpit-files/index.js +++ b/rock-s0/cockpit-files/index.js @@ -1,4 +1,4 @@ -"use strict"; +'use strict'; (() => { var __create = Object.create; var __defProp = Object.defineProperty; @@ -9,71 +9,75 @@ var __typeError = (msg) => { throw TypeError(msg); }; - var __commonJS = (cb, mod) => function __require() { - return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; - }; + var __commonJS = (cb, mod) => + function __require() { + return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; + }; var __copyProps = (to, from, except, desc) => { - if (from && typeof from === "object" || typeof from === "function") { + if ((from && typeof from === 'object') || typeof from === 'function') { for (let key of __getOwnPropNames(from)) - if (!__hasOwnProp.call(to, key) && key !== except) - __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); + if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; - var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( - // If the importer is in node compatibility mode or this is not an ESM - // file that has been converted to a CommonJS file using a Babel- - // compatible transform (i.e. "__esModule" has not been set), then set - // "default" to the CommonJS "module.exports" for node compatibility. - isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, - mod - )); - var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg); - var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj)); - var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value); - var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value); - var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method); + var __toESM = (mod, isNodeMode, target) => ( + (target = mod != null ? __create(__getProtoOf(mod)) : {}), + __copyProps( + // If the importer is in node compatibility mode or this is not an ESM + // file that has been converted to a CommonJS file using a Babel- + // compatible transform (i.e. "__esModule" has not been set), then set + // "default" to the CommonJS "module.exports" for node compatibility. + isNodeMode || !mod || !mod.__esModule ? __defProp(target, 'default', { value: mod, enumerable: true }) : target, + mod, + ) + ); + var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError('Cannot ' + msg); + var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, 'read from private field'), getter ? getter.call(obj) : member.get(obj)); + var __privateAdd = (obj, member, value) => + member.has(obj) ? __typeError('Cannot add the same private member more than once') : member instanceof WeakSet ? member.add(obj) : member.set(obj, value); + var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, 'write to private field'), setter ? setter.call(obj, value) : member.set(obj, value), value); + var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, 'access private method'), method); var __privateWrapper = (obj, member, setter, getter) => ({ set _(value) { __privateSet(obj, member, value, setter); }, get _() { return __privateGet(obj, member, getter); - } + }, }); // node_modules/react/cjs/react.development.js var require_react_development = __commonJS({ - "node_modules/react/cjs/react.development.js"(exports, module) { - "use strict"; + 'node_modules/react/cjs/react.development.js'(exports, module) { + 'use strict'; if (true) { - (function() { - "use strict"; - if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") { + (function () { + 'use strict'; + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error()); } - var ReactVersion = "18.3.1"; - var REACT_ELEMENT_TYPE = Symbol.for("react.element"); - var REACT_PORTAL_TYPE = Symbol.for("react.portal"); - var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); - var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"); - var REACT_PROFILER_TYPE = Symbol.for("react.profiler"); - var REACT_PROVIDER_TYPE = Symbol.for("react.provider"); - var REACT_CONTEXT_TYPE = Symbol.for("react.context"); - var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"); - var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"); - var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"); - var REACT_MEMO_TYPE = Symbol.for("react.memo"); - var REACT_LAZY_TYPE = Symbol.for("react.lazy"); - var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"); + var ReactVersion = '18.3.1'; + var REACT_ELEMENT_TYPE = Symbol.for('react.element'); + var REACT_PORTAL_TYPE = Symbol.for('react.portal'); + var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment'); + var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode'); + var REACT_PROFILER_TYPE = Symbol.for('react.profiler'); + var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); + var REACT_CONTEXT_TYPE = Symbol.for('react.context'); + var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); + var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense'); + var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list'); + var REACT_MEMO_TYPE = Symbol.for('react.memo'); + var REACT_LAZY_TYPE = Symbol.for('react.lazy'); + var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen'); var MAYBE_ITERATOR_SYMBOL = Symbol.iterator; - var FAUX_ITERATOR_SYMBOL = "@@iterator"; + var FAUX_ITERATOR_SYMBOL = '@@iterator'; function getIteratorFn(maybeIterable) { - if (maybeIterable === null || typeof maybeIterable !== "object") { + if (maybeIterable === null || typeof maybeIterable !== 'object') { return null; } - var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]; - if (typeof maybeIterator === "function") { + var maybeIterator = (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || maybeIterable[FAUX_ITERATOR_SYMBOL]; + if (typeof maybeIterator === 'function') { return maybeIterator; } return null; @@ -83,23 +87,23 @@ * @internal * @type {ReactComponent} */ - current: null + current: null, }; var ReactCurrentBatchConfig = { - transition: null + transition: null, }; var ReactCurrentActQueue = { current: null, // Used to reproduce behavior of `batchedUpdates` in legacy mode. isBatchingLegacy: false, - didScheduleLegacyUpdate: false + didScheduleLegacyUpdate: false, }; var ReactCurrentOwner = { /** * @internal * @type {ReactComponent} */ - current: null + current: null, }; var ReactDebugCurrentFrame = {}; var currentExtraStackFrame = null; @@ -109,20 +113,20 @@ } } { - ReactDebugCurrentFrame.setExtraStackFrame = function(stack) { + ReactDebugCurrentFrame.setExtraStackFrame = function (stack) { { currentExtraStackFrame = stack; } }; ReactDebugCurrentFrame.getCurrentStack = null; - ReactDebugCurrentFrame.getStackAddendum = function() { - var stack = ""; + ReactDebugCurrentFrame.getStackAddendum = function () { + var stack = ''; if (currentExtraStackFrame) { stack += currentExtraStackFrame; } var impl = ReactDebugCurrentFrame.getCurrentStack; if (impl) { - stack += impl() || ""; + stack += impl() || ''; } return stack; }; @@ -135,7 +139,7 @@ var ReactSharedInternals = { ReactCurrentDispatcher, ReactCurrentBatchConfig, - ReactCurrentOwner + ReactCurrentOwner, }; { ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame; @@ -147,7 +151,7 @@ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } - printWarning("warn", format, args); + printWarning('warn', format, args); } } } @@ -157,7 +161,7 @@ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { args[_key2 - 1] = arguments[_key2]; } - printWarning("error", format, args); + printWarning('error', format, args); } } } @@ -165,14 +169,14 @@ { var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame; var stack = ReactDebugCurrentFrame2.getStackAddendum(); - if (stack !== "") { - format += "%s"; + if (stack !== '') { + format += '%s'; args = args.concat([stack]); } - var argsWithFormat = args.map(function(item) { + var argsWithFormat = args.map(function (item) { return String(item); }); - argsWithFormat.unshift("Warning: " + format); + argsWithFormat.unshift('Warning: ' + format); Function.prototype.apply.call(console[level], console, argsWithFormat); } } @@ -180,12 +184,16 @@ function warnNoop(publicInstance, callerName) { { var _constructor = publicInstance.constructor; - var componentName = _constructor && (_constructor.displayName || _constructor.name) || "ReactClass"; - var warningKey = componentName + "." + callerName; + var componentName = (_constructor && (_constructor.displayName || _constructor.name)) || 'ReactClass'; + var warningKey = componentName + '.' + callerName; if (didWarnStateUpdateForUnmountedComponent[warningKey]) { return; } - error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", callerName, componentName); + error( + "Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", + callerName, + componentName, + ); didWarnStateUpdateForUnmountedComponent[warningKey] = true; } } @@ -197,7 +205,7 @@ * @protected * @final */ - isMounted: function(publicInstance) { + isMounted: function (publicInstance) { return false; }, /** @@ -215,8 +223,8 @@ * @param {?string} callerName name of the calling function in the public API. * @internal */ - enqueueForceUpdate: function(publicInstance, callback, callerName) { - warnNoop(publicInstance, "forceUpdate"); + enqueueForceUpdate: function (publicInstance, callback, callerName) { + warnNoop(publicInstance, 'forceUpdate'); }, /** * Replaces all of the state. Always use this or `setState` to mutate state. @@ -231,8 +239,8 @@ * @param {?string} callerName name of the calling function in the public API. * @internal */ - enqueueReplaceState: function(publicInstance, completeState, callback, callerName) { - warnNoop(publicInstance, "replaceState"); + enqueueReplaceState: function (publicInstance, completeState, callback, callerName) { + warnNoop(publicInstance, 'replaceState'); }, /** * Sets a subset of the state. This only exists because _pendingState is @@ -246,9 +254,9 @@ * @param {?string} Name of the calling function in the public API. * @internal */ - enqueueSetState: function(publicInstance, partialState, callback, callerName) { - warnNoop(publicInstance, "setState"); - } + enqueueSetState: function (publicInstance, partialState, callback, callerName) { + warnNoop(publicInstance, 'setState'); + }, }; var assign = Object.assign; var emptyObject = {}; @@ -262,26 +270,26 @@ this.updater = updater || ReactNoopUpdateQueue; } Component15.prototype.isReactComponent = {}; - Component15.prototype.setState = function(partialState, callback) { - if (typeof partialState !== "object" && typeof partialState !== "function" && partialState != null) { - throw new Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables."); + Component15.prototype.setState = function (partialState, callback) { + if (typeof partialState !== 'object' && typeof partialState !== 'function' && partialState != null) { + throw new Error('setState(...): takes an object of state variables to update or a function which returns an object of state variables.'); } - this.updater.enqueueSetState(this, partialState, callback, "setState"); + this.updater.enqueueSetState(this, partialState, callback, 'setState'); }; - Component15.prototype.forceUpdate = function(callback) { - this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); + Component15.prototype.forceUpdate = function (callback) { + this.updater.enqueueForceUpdate(this, callback, 'forceUpdate'); }; { var deprecatedAPIs = { - isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."], - replaceState: ["replaceState", "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."] + isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.'], + replaceState: ['replaceState', 'Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236).'], }; - var defineDeprecationWarning = function(methodName, info2) { + var defineDeprecationWarning = function (methodName, info2) { Object.defineProperty(Component15.prototype, methodName, { - get: function() { - warn("%s(...) is deprecated in plain JavaScript React classes. %s", info2[0], info2[1]); + get: function () { + warn('%s(...) is deprecated in plain JavaScript React classes. %s', info2[0], info2[1]); return void 0; - } + }, }); }; for (var fnName in deprecatedAPIs) { @@ -290,8 +298,7 @@ } } } - function ComponentDummy() { - } + function ComponentDummy() {} ComponentDummy.prototype = Component15.prototype; function PureComponent(props, context, updater) { this.props = props; @@ -299,13 +306,13 @@ this.refs = emptyObject; this.updater = updater || ReactNoopUpdateQueue; } - var pureComponentPrototype = PureComponent.prototype = new ComponentDummy(); + var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy()); pureComponentPrototype.constructor = PureComponent; assign(pureComponentPrototype, Component15.prototype); pureComponentPrototype.isPureReactComponent = true; function createRef12() { var refObject = { - current: null + current: null, }; { Object.seal(refObject); @@ -318,8 +325,8 @@ } function typeName(value) { { - var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag; - var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object"; + var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag; + var type = (hasToStringTag && value[Symbol.toStringTag]) || value.constructor.name || 'Object'; return type; } } @@ -334,12 +341,12 @@ } } function testStringCoercion(value) { - return "" + value; + return '' + value; } function checkKeyStringCoercion(value) { { if (willCoercionThrow(value)) { - error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value)); + error('The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.', typeName(value)); return testStringCoercion(value); } } @@ -349,57 +356,57 @@ if (displayName) { return displayName; } - var functionName = innerType.displayName || innerType.name || ""; - return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName; + var functionName = innerType.displayName || innerType.name || ''; + return functionName !== '' ? wrapperName + '(' + functionName + ')' : wrapperName; } function getContextName(type) { - return type.displayName || "Context"; + return type.displayName || 'Context'; } function getComponentNameFromType(type) { if (type == null) { return null; } { - if (typeof type.tag === "number") { - error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."); + if (typeof type.tag === 'number') { + error('Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.'); } } - if (typeof type === "function") { + if (typeof type === 'function') { return type.displayName || type.name || null; } - if (typeof type === "string") { + if (typeof type === 'string') { return type; } switch (type) { case REACT_FRAGMENT_TYPE: - return "Fragment"; + return 'Fragment'; case REACT_PORTAL_TYPE: - return "Portal"; + return 'Portal'; case REACT_PROFILER_TYPE: - return "Profiler"; + return 'Profiler'; case REACT_STRICT_MODE_TYPE: - return "StrictMode"; + return 'StrictMode'; case REACT_SUSPENSE_TYPE: - return "Suspense"; + return 'Suspense'; case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; + return 'SuspenseList'; } - if (typeof type === "object") { + if (typeof type === 'object') { switch (type.$$typeof) { case REACT_CONTEXT_TYPE: var context = type; - return getContextName(context) + ".Consumer"; + return getContextName(context) + '.Consumer'; case REACT_PROVIDER_TYPE: var provider = type; - return getContextName(provider._context) + ".Provider"; + return getContextName(provider._context) + '.Provider'; case REACT_FORWARD_REF_TYPE: - return getWrappedName(type, type.render, "ForwardRef"); + return getWrappedName(type, type.render, 'ForwardRef'); case REACT_MEMO_TYPE: var outerName = type.displayName || null; if (outerName !== null) { return outerName; } - return getComponentNameFromType(type.type) || "Memo"; + return getComponentNameFromType(type.type) || 'Memo'; case REACT_LAZY_TYPE: { var lazyComponent = type; var payload = lazyComponent._payload; @@ -419,7 +426,7 @@ key: true, ref: true, __self: true, - __source: true + __source: true, }; var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs; { @@ -427,8 +434,8 @@ } function hasValidRef(config) { { - if (hasOwnProperty.call(config, "ref")) { - var getter = Object.getOwnPropertyDescriptor(config, "ref").get; + if (hasOwnProperty.call(config, 'ref')) { + var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; if (getter && getter.isReactWarning) { return false; } @@ -438,8 +445,8 @@ } function hasValidKey(config) { { - if (hasOwnProperty.call(config, "key")) { - var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (hasOwnProperty.call(config, 'key')) { + var getter = Object.getOwnPropertyDescriptor(config, 'key').get; if (getter && getter.isReactWarning) { return false; } @@ -448,47 +455,57 @@ return config.key !== void 0; } function defineKeyPropWarningGetter(props, displayName) { - var warnAboutAccessingKey = function() { + var warnAboutAccessingKey = function () { { if (!specialPropKeyWarningShown) { specialPropKeyWarningShown = true; - error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName); + error( + '%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)', + displayName, + ); } } }; warnAboutAccessingKey.isReactWarning = true; - Object.defineProperty(props, "key", { + Object.defineProperty(props, 'key', { get: warnAboutAccessingKey, - configurable: true + configurable: true, }); } function defineRefPropWarningGetter(props, displayName) { - var warnAboutAccessingRef = function() { + var warnAboutAccessingRef = function () { { if (!specialPropRefWarningShown) { specialPropRefWarningShown = true; - error("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName); + error( + '%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)', + displayName, + ); } } }; warnAboutAccessingRef.isReactWarning = true; - Object.defineProperty(props, "ref", { + Object.defineProperty(props, 'ref', { get: warnAboutAccessingRef, - configurable: true + configurable: true, }); } function warnIfStringRefCannotBeAutoConverted(config) { { - if (typeof config.ref === "string" && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) { + if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) { var componentName = getComponentNameFromType(ReactCurrentOwner.current.type); if (!didWarnAboutStringRefs[componentName]) { - error('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref); + error( + 'Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', + componentName, + config.ref, + ); didWarnAboutStringRefs[componentName] = true; } } } } - var ReactElement = function(type, key, ref, self2, source, owner, props) { + var ReactElement = function (type, key, ref, self2, source, owner, props) { var element = { // This tag allows us to uniquely identify this as a React Element $$typeof: REACT_ELEMENT_TYPE, @@ -498,27 +515,27 @@ ref, props, // Record the component responsible for creating this element. - _owner: owner + _owner: owner, }; { element._store = {}; - Object.defineProperty(element._store, "validated", { + Object.defineProperty(element._store, 'validated', { configurable: false, enumerable: false, writable: true, - value: false + value: false, }); - Object.defineProperty(element, "_self", { + Object.defineProperty(element, '_self', { configurable: false, enumerable: false, writable: false, - value: self2 + value: self2, }); - Object.defineProperty(element, "_source", { + Object.defineProperty(element, '_source', { configurable: false, enumerable: false, writable: false, - value: source + value: source, }); if (Object.freeze) { Object.freeze(element.props); @@ -545,7 +562,7 @@ { checkKeyStringCoercion(config.key); } - key = "" + config.key; + key = '' + config.key; } self2 = config.__self === void 0 ? null : config.__self; source = config.__source === void 0 ? null : config.__source; @@ -580,7 +597,7 @@ } { if (key || ref) { - var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type; + var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type; if (key) { defineKeyPropWarningGetter(props, displayName); } @@ -597,7 +614,7 @@ } function cloneElement6(element, config, children) { if (element === null || element === void 0) { - throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + "."); + throw new Error('React.cloneElement(...): The argument must be a React element, but you passed ' + element + '.'); } var propName; var props = assign({}, element.props); @@ -615,7 +632,7 @@ { checkKeyStringCoercion(config.key); } - key = "" + config.key; + key = '' + config.key; } var defaultProps; if (element.type && element.type.defaultProps) { @@ -644,38 +661,38 @@ return ReactElement(element.type, key, ref, self2, source, owner, props); } function isValidElement5(object) { - return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; + return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; } - var SEPARATOR = "."; - var SUBSEPARATOR = ":"; + var SEPARATOR = '.'; + var SUBSEPARATOR = ':'; function escape(key) { var escapeRegex = /[=:]/g; var escaperLookup = { - "=": "=0", - ":": "=2" + '=': '=0', + ':': '=2', }; - var escapedString = key.replace(escapeRegex, function(match) { + var escapedString = key.replace(escapeRegex, function (match) { return escaperLookup[match]; }); - return "$" + escapedString; + return '$' + escapedString; } var didWarnAboutMaps = false; var userProvidedKeyEscapeRegex = /\/+/g; function escapeUserProvidedKey(text) { - return text.replace(userProvidedKeyEscapeRegex, "$&/"); + return text.replace(userProvidedKeyEscapeRegex, '$&/'); } function getElementKey(element, index) { - if (typeof element === "object" && element !== null && element.key != null) { + if (typeof element === 'object' && element !== null && element.key != null) { { checkKeyStringCoercion(element.key); } - return escape("" + element.key); + return escape('' + element.key); } return index.toString(36); } function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { var type = typeof children; - if (type === "undefined" || type === "boolean") { + if (type === 'undefined' || type === 'boolean') { children = null; } var invokeCallback = false; @@ -683,11 +700,11 @@ invokeCallback = true; } else { switch (type) { - case "string": - case "number": + case 'string': + case 'number': invokeCallback = true; break; - case "object": + case 'object': switch (children.$$typeof) { case REACT_ELEMENT_TYPE: case REACT_PORTAL_TYPE: @@ -698,13 +715,13 @@ if (invokeCallback) { var _child = children; var mappedChild = callback(_child); - var childKey = nameSoFar === "" ? SEPARATOR + getElementKey(_child, 0) : nameSoFar; + var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar; if (isArray(mappedChild)) { - var escapedChildKey = ""; + var escapedChildKey = ''; if (childKey != null) { - escapedChildKey = escapeUserProvidedKey(childKey) + "/"; + escapedChildKey = escapeUserProvidedKey(childKey) + '/'; } - mapIntoArray(mappedChild, array, escapedChildKey, "", function(c) { + mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) { return c; }); } else if (mappedChild != null) { @@ -719,11 +736,12 @@ // Keep both the (mapped) and old keys if they differ, just as // traverseAllChildren used to do for objects as children escapedPrefix + // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key - (mappedChild.key && (!_child || _child.key !== mappedChild.key) ? ( - // $FlowFixMe Flow incorrectly thinks existing element's key can be a number - // eslint-disable-next-line react-internal/safe-string-coercion - escapeUserProvidedKey("" + mappedChild.key) + "/" - ) : "") + childKey + (mappedChild.key && (!_child || _child.key !== mappedChild.key) + ? // $FlowFixMe Flow incorrectly thinks existing element's key can be a number + // eslint-disable-next-line react-internal/safe-string-coercion + escapeUserProvidedKey('' + mappedChild.key) + '/' + : '') + + childKey, ); } array.push(mappedChild); @@ -733,7 +751,7 @@ var child; var nextName; var subtreeCount = 0; - var nextNamePrefix = nameSoFar === "" ? SEPARATOR : nameSoFar + SUBSEPARATOR; + var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR; if (isArray(children)) { for (var i = 0; i < children.length; i++) { child = children[i]; @@ -742,12 +760,12 @@ } } else { var iteratorFn = getIteratorFn(children); - if (typeof iteratorFn === "function") { + if (typeof iteratorFn === 'function') { var iterableChildren = children; { if (iteratorFn === iterableChildren.entries) { if (!didWarnAboutMaps) { - warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead."); + warn('Using Maps as children is not supported. Use an array of keyed ReactElements instead.'); } didWarnAboutMaps = true; } @@ -760,9 +778,13 @@ nextName = nextNamePrefix + getElementKey(child, ii++); subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback); } - } else if (type === "object") { + } else if (type === 'object') { var childrenString = String(children); - throw new Error("Objects are not valid as a React child (found: " + (childrenString === "[object Object]" ? "object with keys {" + Object.keys(children).join(", ") + "}" : childrenString) + "). If you meant to render a collection of children, use an array instead."); + throw new Error( + 'Objects are not valid as a React child (found: ' + + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + + '). If you meant to render a collection of children, use an array instead.', + ); } } return subtreeCount; @@ -773,31 +795,37 @@ } var result = []; var count = 0; - mapIntoArray(children, result, "", "", function(child) { + mapIntoArray(children, result, '', '', function (child) { return func.call(context, child, count++); }); return result; } function countChildren(children) { var n = 0; - mapChildren(children, function() { + mapChildren(children, function () { n++; }); return n; } function forEachChildren(children, forEachFunc, forEachContext) { - mapChildren(children, function() { - forEachFunc.apply(this, arguments); - }, forEachContext); + mapChildren( + children, + function () { + forEachFunc.apply(this, arguments); + }, + forEachContext, + ); } function toArray(children) { - return mapChildren(children, function(child) { - return child; - }) || []; + return ( + mapChildren(children, function (child) { + return child; + }) || [] + ); } function onlyChild(children) { if (!isValidElement5(children)) { - throw new Error("React.Children.only expected to receive a single React element child."); + throw new Error('React.Children.only expected to receive a single React element child.'); } return children; } @@ -819,11 +847,11 @@ Consumer: null, // Add these to use same hidden class in VM as ServerContext _defaultValue: null, - _globalName: null + _globalName: null, }; context.Provider = { $$typeof: REACT_PROVIDER_TYPE, - _context: context + _context: context, }; var hasWarnedAboutUsingNestedContextConsumers = false; var hasWarnedAboutUsingConsumerProvider = false; @@ -831,65 +859,69 @@ { var Consumer = { $$typeof: REACT_CONTEXT_TYPE, - _context: context + _context: context, }; Object.defineProperties(Consumer, { Provider: { - get: function() { + get: function () { if (!hasWarnedAboutUsingConsumerProvider) { hasWarnedAboutUsingConsumerProvider = true; - error("Rendering is not supported and will be removed in a future major release. Did you mean to render instead?"); + error( + 'Rendering is not supported and will be removed in a future major release. Did you mean to render instead?', + ); } return context.Provider; }, - set: function(_Provider) { + set: function (_Provider) { context.Provider = _Provider; - } + }, }, _currentValue: { - get: function() { + get: function () { return context._currentValue; }, - set: function(_currentValue) { + set: function (_currentValue) { context._currentValue = _currentValue; - } + }, }, _currentValue2: { - get: function() { + get: function () { return context._currentValue2; }, - set: function(_currentValue2) { + set: function (_currentValue2) { context._currentValue2 = _currentValue2; - } + }, }, _threadCount: { - get: function() { + get: function () { return context._threadCount; }, - set: function(_threadCount) { + set: function (_threadCount) { context._threadCount = _threadCount; - } + }, }, Consumer: { - get: function() { + get: function () { if (!hasWarnedAboutUsingNestedContextConsumers) { hasWarnedAboutUsingNestedContextConsumers = true; - error("Rendering is not supported and will be removed in a future major release. Did you mean to render instead?"); + error( + 'Rendering is not supported and will be removed in a future major release. Did you mean to render instead?', + ); } return context.Consumer; - } + }, }, displayName: { - get: function() { + get: function () { return context.displayName; }, - set: function(displayName) { + set: function (displayName) { if (!hasWarnedAboutDisplayNameOnConsumer) { warn("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.", displayName); hasWarnedAboutDisplayNameOnConsumer = true; } - } - } + }, + }, }); context.Consumer = Consumer; } @@ -907,19 +939,22 @@ if (payload._status === Uninitialized) { var ctor = payload._result; var thenable = ctor(); - thenable.then(function(moduleObject2) { - if (payload._status === Pending || payload._status === Uninitialized) { - var resolved = payload; - resolved._status = Resolved; - resolved._result = moduleObject2; - } - }, function(error2) { - if (payload._status === Pending || payload._status === Uninitialized) { - var rejected = payload; - rejected._status = Rejected; - rejected._result = error2; - } - }); + thenable.then( + function (moduleObject2) { + if (payload._status === Pending || payload._status === Uninitialized) { + var resolved = payload; + resolved._status = Resolved; + resolved._result = moduleObject2; + } + }, + function (error2) { + if (payload._status === Pending || payload._status === Uninitialized) { + var rejected = payload; + rejected._status = Rejected; + rejected._result = error2; + } + }, + ); if (payload._status === Uninitialized) { var pending = payload; pending._status = Pending; @@ -930,12 +965,18 @@ var moduleObject = payload._result; { if (moduleObject === void 0) { - error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", moduleObject); + error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", + moduleObject, + ); } } { - if (!("default" in moduleObject)) { - error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", moduleObject); + if (!('default' in moduleObject)) { + error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", + moduleObject, + ); } } return moduleObject.default; @@ -947,12 +988,12 @@ var payload = { // We use these fields to store the result. _status: Uninitialized, - _result: ctor + _result: ctor, }; var lazyType = { $$typeof: REACT_LAZY_TYPE, _payload: payload, - _init: lazyInitializer + _init: lazyInitializer, }; { var defaultProps; @@ -960,30 +1001,34 @@ Object.defineProperties(lazyType, { defaultProps: { configurable: true, - get: function() { + get: function () { return defaultProps; }, - set: function(newDefaultProps) { - error("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."); + set: function (newDefaultProps) { + error( + 'React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.', + ); defaultProps = newDefaultProps; - Object.defineProperty(lazyType, "defaultProps", { - enumerable: true + Object.defineProperty(lazyType, 'defaultProps', { + enumerable: true, }); - } + }, }, propTypes: { configurable: true, - get: function() { + get: function () { return propTypes; }, - set: function(newPropTypes) { - error("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."); + set: function (newPropTypes) { + error( + 'React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.', + ); propTypes = newPropTypes; - Object.defineProperty(lazyType, "propTypes", { - enumerable: true + Object.defineProperty(lazyType, 'propTypes', { + enumerable: true, }); - } - } + }, + }, }); } return lazyType; @@ -991,59 +1036,81 @@ function forwardRef23(render) { { if (render != null && render.$$typeof === REACT_MEMO_TYPE) { - error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."); - } else if (typeof render !== "function") { - error("forwardRef requires a render function but was given %s.", render === null ? "null" : typeof render); + error('forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).'); + } else if (typeof render !== 'function') { + error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render); } else { if (render.length !== 0 && render.length !== 2) { - error("forwardRef render functions accept exactly two parameters: props and ref. %s", render.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."); + error( + 'forwardRef render functions accept exactly two parameters: props and ref. %s', + render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.', + ); } } if (render != null) { if (render.defaultProps != null || render.propTypes != null) { - error("forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?"); + error('forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?'); } } } var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, - render + render, }; { var ownName; - Object.defineProperty(elementType, "displayName", { + Object.defineProperty(elementType, 'displayName', { enumerable: false, configurable: true, - get: function() { + get: function () { return ownName; }, - set: function(name) { + set: function (name) { ownName = name; if (!render.name && !render.displayName) { render.displayName = name; } - } + }, }); } return elementType; } var REACT_MODULE_REFERENCE; { - REACT_MODULE_REFERENCE = Symbol.for("react.module.reference"); + REACT_MODULE_REFERENCE = Symbol.for('react.module.reference'); } function isValidElementType(type) { - if (typeof type === "string" || typeof type === "function") { + if (typeof type === 'string' || typeof type === 'function') { return true; } - if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) { + if ( + type === REACT_FRAGMENT_TYPE || + type === REACT_PROFILER_TYPE || + enableDebugTracing || + type === REACT_STRICT_MODE_TYPE || + type === REACT_SUSPENSE_TYPE || + type === REACT_SUSPENSE_LIST_TYPE || + enableLegacyHidden || + type === REACT_OFFSCREEN_TYPE || + enableScopeAPI || + enableCacheElement || + enableTransitionTracing + ) { return true; } - if (typeof type === "object" && type !== null) { - if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object - // types supported by any Flight configuration anywhere since - // we don't know which Flight build this will end up being used - // with. - type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) { + if (typeof type === 'object' && type !== null) { + if ( + type.$$typeof === REACT_LAZY_TYPE || + type.$$typeof === REACT_MEMO_TYPE || + type.$$typeof === REACT_PROVIDER_TYPE || + type.$$typeof === REACT_CONTEXT_TYPE || + type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object + // types supported by any Flight configuration anywhere since + // we don't know which Flight build this will end up being used + // with. + type.$$typeof === REACT_MODULE_REFERENCE || + type.getModuleId !== void 0 + ) { return true; } } @@ -1052,28 +1119,28 @@ function memo(type, compare2) { { if (!isValidElementType(type)) { - error("memo: The first argument must be a component. Instead received: %s", type === null ? "null" : typeof type); + error('memo: The first argument must be a component. Instead received: %s', type === null ? 'null' : typeof type); } } var elementType = { $$typeof: REACT_MEMO_TYPE, type, - compare: compare2 === void 0 ? null : compare2 + compare: compare2 === void 0 ? null : compare2, }; { var ownName; - Object.defineProperty(elementType, "displayName", { + Object.defineProperty(elementType, 'displayName', { enumerable: false, configurable: true, - get: function() { + get: function () { return ownName; }, - set: function(name) { + set: function (name) { ownName = name; if (!type.name && !type.displayName) { type.displayName = name; } - } + }, }); } return elementType; @@ -1082,7 +1149,9 @@ var dispatcher = ReactCurrentDispatcher.current; { if (dispatcher === null) { - error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem."); + error( + 'Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.', + ); } } return dispatcher; @@ -1093,9 +1162,11 @@ if (Context._context !== void 0) { var realContext = Context._context; if (realContext.Consumer === Context) { - error("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?"); + error( + 'Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?', + ); } else if (realContext.Provider === Context) { - error("Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?"); + error('Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?'); } } } @@ -1167,8 +1238,7 @@ var prevGroup; var prevGroupCollapsed; var prevGroupEnd; - function disabledLog() { - } + function disabledLog() {} disabledLog.__reactDisabledLog = true; function disableLogs() { { @@ -1184,7 +1254,7 @@ configurable: true, enumerable: true, value: disabledLog, - writable: true + writable: true, }; Object.defineProperties(console, { info: props, @@ -1193,7 +1263,7 @@ error: props, group: props, groupCollapsed: props, - groupEnd: props + groupEnd: props, }); } disabledDepth++; @@ -1206,34 +1276,34 @@ var props = { configurable: true, enumerable: true, - writable: true + writable: true, }; Object.defineProperties(console, { log: assign({}, props, { - value: prevLog + value: prevLog, }), info: assign({}, props, { - value: prevInfo + value: prevInfo, }), warn: assign({}, props, { - value: prevWarn + value: prevWarn, }), error: assign({}, props, { - value: prevError + value: prevError, }), group: assign({}, props, { - value: prevGroup + value: prevGroup, }), groupCollapsed: assign({}, props, { - value: prevGroupCollapsed + value: prevGroupCollapsed, }), groupEnd: assign({}, props, { - value: prevGroupEnd - }) + value: prevGroupEnd, + }), }); } if (disabledDepth < 0) { - error("disabledDepth fell below zero. This is a bug in React. Please file an issue."); + error('disabledDepth fell below zero. This is a bug in React. Please file an issue.'); } } } @@ -1246,21 +1316,21 @@ throw Error(); } catch (x) { var match = x.stack.trim().match(/\n( *(at )?)/); - prefix = match && match[1] || ""; + prefix = (match && match[1]) || ''; } } - return "\n" + prefix + name; + return '\n' + prefix + name; } } var reentry = false; var componentFrameCache; { - var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map; + var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map; componentFrameCache = new PossiblyWeakMap(); } function describeNativeComponentFrame(fn, construct) { if (!fn || reentry) { - return ""; + return ''; } { var frame = componentFrameCache.get(fn); @@ -1280,15 +1350,15 @@ } try { if (construct) { - var Fake = function() { + var Fake = function () { throw Error(); }; - Object.defineProperty(Fake.prototype, "props", { - set: function() { + Object.defineProperty(Fake.prototype, 'props', { + set: function () { throw Error(); - } + }, }); - if (typeof Reflect === "object" && Reflect.construct) { + if (typeof Reflect === 'object' && Reflect.construct) { try { Reflect.construct(Fake, []); } catch (x) { @@ -1312,9 +1382,9 @@ fn(); } } catch (sample) { - if (sample && control && typeof sample.stack === "string") { - var sampleLines = sample.stack.split("\n"); - var controlLines = control.stack.split("\n"); + if (sample && control && typeof sample.stack === 'string') { + var sampleLines = sample.stack.split('\n'); + var controlLines = control.stack.split('\n'); var s = sampleLines.length - 1; var c = controlLines.length - 1; while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { @@ -1327,12 +1397,12 @@ s--; c--; if (c < 0 || sampleLines[s] !== controlLines[c]) { - var _frame = "\n" + sampleLines[s].replace(" at new ", " at "); - if (fn.displayName && _frame.includes("")) { - _frame = _frame.replace("", fn.displayName); + var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); + if (fn.displayName && _frame.includes('')) { + _frame = _frame.replace('', fn.displayName); } { - if (typeof fn === "function") { + if (typeof fn === 'function') { componentFrameCache.set(fn, _frame); } } @@ -1352,10 +1422,10 @@ } Error.prepareStackTrace = previousPrepareStackTrace; } - var name = fn ? fn.displayName || fn.name : ""; - var syntheticFrame = name ? describeBuiltInComponentFrame(name) : ""; + var name = fn ? fn.displayName || fn.name : ''; + var syntheticFrame = name ? describeBuiltInComponentFrame(name) : ''; { - if (typeof fn === "function") { + if (typeof fn === 'function') { componentFrameCache.set(fn, syntheticFrame); } } @@ -1372,23 +1442,23 @@ } function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) { if (type == null) { - return ""; + return ''; } - if (typeof type === "function") { + if (typeof type === 'function') { { return describeNativeComponentFrame(type, shouldConstruct(type)); } } - if (typeof type === "string") { + if (typeof type === 'string') { return describeBuiltInComponentFrame(type); } switch (type) { case REACT_SUSPENSE_TYPE: - return describeBuiltInComponentFrame("Suspense"); + return describeBuiltInComponentFrame('Suspense'); case REACT_SUSPENSE_LIST_TYPE: - return describeBuiltInComponentFrame("SuspenseList"); + return describeBuiltInComponentFrame('SuspenseList'); } - if (typeof type === "object") { + if (typeof type === 'object') { switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: return describeFunctionComponentFrame(type.render); @@ -1400,12 +1470,11 @@ var init = lazyComponent._init; try { return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn); - } catch (x) { - } + } catch (x) {} } } } - return ""; + return ''; } var loggedTypeFailures = {}; var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame; @@ -1427,24 +1496,39 @@ if (has(typeSpecs, typeSpecName)) { var error$1 = void 0; try { - if (typeof typeSpecs[typeSpecName] !== "function") { - var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."); - err.name = "Invariant Violation"; + if (typeof typeSpecs[typeSpecName] !== 'function') { + var err = Error( + (componentName || 'React class') + + ': ' + + location + + ' type `' + + typeSpecName + + '` is invalid; it must be a function, usually from the `prop-types` package, but received `' + + typeof typeSpecs[typeSpecName] + + '`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.', + ); + err.name = 'Invariant Violation'; throw err; } - error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"); + error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'); } catch (ex) { error$1 = ex; } if (error$1 && !(error$1 instanceof Error)) { setCurrentlyValidatingElement(element); - error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1); + error( + '%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).', + componentName || 'React class', + location, + typeSpecName, + typeof error$1, + ); setCurrentlyValidatingElement(null); } if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) { loggedTypeFailures[error$1.message] = true; setCurrentlyValidatingElement(element); - error("Failed %s type: %s", location, error$1.message); + error('Failed %s type: %s', location, error$1.message); setCurrentlyValidatingElement(null); } } @@ -1470,32 +1554,32 @@ if (ReactCurrentOwner.current) { var name = getComponentNameFromType(ReactCurrentOwner.current.type); if (name) { - return "\n\nCheck the render method of `" + name + "`."; + return '\n\nCheck the render method of `' + name + '`.'; } } - return ""; + return ''; } function getSourceInfoErrorAddendum(source) { if (source !== void 0) { - var fileName = source.fileName.replace(/^.*[\\\/]/, ""); + var fileName = source.fileName.replace(/^.*[\\\/]/, ''); var lineNumber = source.lineNumber; - return "\n\nCheck your code at " + fileName + ":" + lineNumber + "."; + return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.'; } - return ""; + return ''; } function getSourceInfoErrorAddendumForProps(elementProps) { if (elementProps !== null && elementProps !== void 0) { return getSourceInfoErrorAddendum(elementProps.__source); } - return ""; + return ''; } var ownerHasKeyUseWarning = {}; function getCurrentComponentErrorInfo(parentType) { var info2 = getDeclarationErrorAddendum(); if (!info2) { - var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name; + var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name; if (parentName) { - info2 = "\n\nCheck the top-level render call using <" + parentName + ">."; + info2 = '\n\nCheck the top-level render call using <' + parentName + '>.'; } } return info2; @@ -1510,18 +1594,22 @@ return; } ownerHasKeyUseWarning[currentComponentErrorInfo] = true; - var childOwner = ""; + var childOwner = ''; if (element && element._owner && element._owner !== ReactCurrentOwner.current) { - childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + "."; + childOwner = ' It was passed a child from ' + getComponentNameFromType(element._owner.type) + '.'; } { setCurrentlyValidatingElement$1(element); - error('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner); + error( + 'Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', + currentComponentErrorInfo, + childOwner, + ); setCurrentlyValidatingElement$1(null); } } function validateChildKeys(node, parentType) { - if (typeof node !== "object") { + if (typeof node !== 'object') { return; } if (isArray(node)) { @@ -1537,7 +1625,7 @@ } } else if (node) { var iteratorFn = getIteratorFn(node); - if (typeof iteratorFn === "function") { + if (typeof iteratorFn === 'function') { if (iteratorFn !== node.entries) { var iterator = iteratorFn.call(node); var step; @@ -1553,29 +1641,32 @@ function validatePropTypes(element) { { var type = element.type; - if (type === null || type === void 0 || typeof type === "string") { + if (type === null || type === void 0 || typeof type === 'string') { return; } var propTypes; - if (typeof type === "function") { + if (typeof type === 'function') { propTypes = type.propTypes; - } else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here. - // Inner props are checked in the reconciler. - type.$$typeof === REACT_MEMO_TYPE)) { + } else if ( + typeof type === 'object' && + (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here. + // Inner props are checked in the reconciler. + type.$$typeof === REACT_MEMO_TYPE) + ) { propTypes = type.propTypes; } else { return; } if (propTypes) { var name = getComponentNameFromType(type); - checkPropTypes(propTypes, element.props, "prop", name, element); + checkPropTypes(propTypes, element.props, 'prop', name, element); } else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) { propTypesMisspellWarningShown = true; var _name = getComponentNameFromType(type); - error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown"); + error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown'); } - if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) { - error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead."); + if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) { + error('getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.'); } } } @@ -1584,16 +1675,16 @@ var keys = Object.keys(fragment.props); for (var i = 0; i < keys.length; i++) { var key = keys[i]; - if (key !== "children" && key !== "key") { + if (key !== 'children' && key !== 'key') { setCurrentlyValidatingElement$1(fragment); - error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key); + error('Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.', key); setCurrentlyValidatingElement$1(null); break; } } if (fragment.ref !== null) { setCurrentlyValidatingElement$1(fragment); - error("Invalid attribute `ref` supplied to `React.Fragment`."); + error('Invalid attribute `ref` supplied to `React.Fragment`.'); setCurrentlyValidatingElement$1(null); } } @@ -1601,8 +1692,8 @@ function createElementWithValidation(type, props, children) { var validType = isValidElementType(type); if (!validType) { - var info2 = ""; - if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) { + var info2 = ''; + if (type === void 0 || (typeof type === 'object' && type !== null && Object.keys(type).length === 0)) { info2 += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."; } var sourceInfo = getSourceInfoErrorAddendumForProps(props); @@ -1613,17 +1704,21 @@ } var typeString; if (type === null) { - typeString = "null"; + typeString = 'null'; } else if (isArray(type)) { - typeString = "array"; + typeString = 'array'; } else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) { - typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />"; - info2 = " Did you accidentally export a JSX literal instead of a component?"; + typeString = '<' + (getComponentNameFromType(type.type) || 'Unknown') + ' />'; + info2 = ' Did you accidentally export a JSX literal instead of a component?'; } else { typeString = typeof type; } { - error("React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info2); + error( + 'React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s', + typeString, + info2, + ); } } var element = createElement124.apply(this, arguments); @@ -1649,17 +1744,17 @@ { if (!didWarnAboutDeprecatedCreateFactory) { didWarnAboutDeprecatedCreateFactory = true; - warn("React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead."); + warn('React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.'); } - Object.defineProperty(validatedFactory, "type", { + Object.defineProperty(validatedFactory, 'type', { enumerable: false, - get: function() { - warn("Factory.type is deprecated. Access the class directly before passing it to createFactory."); - Object.defineProperty(this, "type", { - value: type + get: function () { + warn('Factory.type is deprecated. Access the class directly before passing it to createFactory.'); + Object.defineProperty(this, 'type', { + value: type, }); return type; - } + }, }); } return validatedFactory; @@ -1687,7 +1782,9 @@ if (prevTransition === null && currentTransition._updatedFibers) { var updatedFibersCount = currentTransition._updatedFibers.size; if (updatedFibersCount > 10) { - warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."); + warn( + 'Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.', + ); } currentTransition._updatedFibers.clear(); } @@ -1699,16 +1796,18 @@ function enqueueTask(task) { if (enqueueTaskImpl === null) { try { - var requireString = ("require" + Math.random()).slice(0, 7); + var requireString = ('require' + Math.random()).slice(0, 7); var nodeRequire = module && module[requireString]; - enqueueTaskImpl = nodeRequire.call(module, "timers").setImmediate; + enqueueTaskImpl = nodeRequire.call(module, 'timers').setImmediate; } catch (_err) { - enqueueTaskImpl = function(callback) { + enqueueTaskImpl = function (callback) { { if (didWarnAboutMessageChannel === false) { didWarnAboutMessageChannel = true; - if (typeof MessageChannel === "undefined") { - error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."); + if (typeof MessageChannel === 'undefined') { + error( + 'This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.', + ); } } } @@ -1747,34 +1846,40 @@ } finally { ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy; } - if (result !== null && typeof result === "object" && typeof result.then === "function") { + if (result !== null && typeof result === 'object' && typeof result.then === 'function') { var thenableResult = result; var wasAwaited = false; var thenable = { - then: function(resolve, reject) { + then: function (resolve, reject) { wasAwaited = true; - thenableResult.then(function(returnValue2) { - popActScope(prevActScopeDepth); - if (actScopeDepth === 0) { - recursivelyFlushAsyncActWork(returnValue2, resolve, reject); - } else { - resolve(returnValue2); - } - }, function(error2) { - popActScope(prevActScopeDepth); - reject(error2); - }); - } + thenableResult.then( + function (returnValue2) { + popActScope(prevActScopeDepth); + if (actScopeDepth === 0) { + recursivelyFlushAsyncActWork(returnValue2, resolve, reject); + } else { + resolve(returnValue2); + } + }, + function (error2) { + popActScope(prevActScopeDepth); + reject(error2); + }, + ); + }, }; { - if (!didWarnNoAwaitAct && typeof Promise !== "undefined") { - Promise.resolve().then(function() { - }).then(function() { - if (!wasAwaited) { - didWarnNoAwaitAct = true; - error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"); - } - }); + if (!didWarnNoAwaitAct && typeof Promise !== 'undefined') { + Promise.resolve() + .then(function () {}) + .then(function () { + if (!wasAwaited) { + didWarnNoAwaitAct = true; + error( + 'You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);', + ); + } + }); } } return thenable; @@ -1788,21 +1893,21 @@ ReactCurrentActQueue.current = null; } var _thenable = { - then: function(resolve, reject) { + then: function (resolve, reject) { if (ReactCurrentActQueue.current === null) { ReactCurrentActQueue.current = []; recursivelyFlushAsyncActWork(returnValue, resolve, reject); } else { resolve(returnValue); } - } + }, }; return _thenable; } else { var _thenable2 = { - then: function(resolve, reject) { + then: function (resolve, reject) { resolve(returnValue); - } + }, }; return _thenable2; } @@ -1812,7 +1917,7 @@ function popActScope(prevActScopeDepth) { { if (prevActScopeDepth !== actScopeDepth - 1) { - error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "); + error('You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. '); } actScopeDepth = prevActScopeDepth; } @@ -1823,7 +1928,7 @@ if (queue !== null) { try { flushActQueue(queue); - enqueueTask(function() { + enqueueTask(function () { if (queue.length === 0) { ReactCurrentActQueue.current = null; resolve(returnValue); @@ -1870,7 +1975,7 @@ forEach: forEachChildren, count: countChildren, toArray, - only: onlyChild + only: onlyChild, }; exports.Children = Children4; exports.Component = Component15; @@ -1908,34 +2013,34 @@ exports.useSyncExternalStore = useSyncExternalStore; exports.useTransition = useTransition; exports.version = ReactVersion; - if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") { + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === 'function') { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); } })(); } - } + }, }); // node_modules/react/index.js var require_react = __commonJS({ - "node_modules/react/index.js"(exports, module) { - "use strict"; + 'node_modules/react/index.js'(exports, module) { + 'use strict'; if (false) { module.exports = null; } else { module.exports = require_react_development(); } - } + }, }); // node_modules/scheduler/cjs/scheduler.development.js var require_scheduler_development = __commonJS({ - "node_modules/scheduler/cjs/scheduler.development.js"(exports) { - "use strict"; + 'node_modules/scheduler/cjs/scheduler.development.js'(exports) { + 'use strict'; if (true) { - (function() { - "use strict"; - if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") { + (function () { + 'use strict'; + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error()); } var enableSchedulerDebugging = false; @@ -1964,7 +2069,7 @@ function siftUp(heap, node, i) { var index = i; while (index > 0) { - var parentIndex = index - 1 >>> 1; + var parentIndex = (index - 1) >>> 1; var parent2 = heap[parentIndex]; if (compare2(parent2, node) > 0) { heap[parentIndex] = node; @@ -2012,18 +2117,17 @@ var NormalPriority = 3; var LowPriority = 4; var IdlePriority = 5; - function markTaskErrored(task, ms) { - } - var hasPerformanceNow = typeof performance === "object" && typeof performance.now === "function"; + function markTaskErrored(task, ms) {} + var hasPerformanceNow = typeof performance === 'object' && typeof performance.now === 'function'; if (hasPerformanceNow) { var localPerformance = performance; - exports.unstable_now = function() { + exports.unstable_now = function () { return localPerformance.now(); }; } else { var localDate = Date; var initialTime = localDate.now(); - exports.unstable_now = function() { + exports.unstable_now = function () { return localDate.now() - initialTime; }; } @@ -2041,10 +2145,13 @@ var isPerformingWork = false; var isHostCallbackScheduled = false; var isHostTimeoutScheduled = false; - var localSetTimeout = typeof setTimeout === "function" ? setTimeout : null; - var localClearTimeout = typeof clearTimeout === "function" ? clearTimeout : null; - var localSetImmediate = typeof setImmediate !== "undefined" ? setImmediate : null; - var isInputPending = typeof navigator !== "undefined" && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 ? navigator.scheduling.isInputPending.bind(navigator.scheduling) : null; + var localSetTimeout = typeof setTimeout === 'function' ? setTimeout : null; + var localClearTimeout = typeof clearTimeout === 'function' ? clearTimeout : null; + var localSetImmediate = typeof setImmediate !== 'undefined' ? setImmediate : null; + var isInputPending = + typeof navigator !== 'undefined' && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 + ? navigator.scheduling.isInputPending.bind(navigator.scheduling) + : null; function advanceTimers(currentTime) { var timer = peek(timerQueue); while (timer !== null) { @@ -2113,13 +2220,13 @@ break; } var callback = currentTask.callback; - if (typeof callback === "function") { + if (typeof callback === 'function') { currentTask.callback = null; currentPriorityLevel = currentTask.priorityLevel; var didUserCallbackTimeout = currentTask.expirationTime <= currentTime; var continuationCallback = callback(didUserCallbackTimeout); currentTime = exports.unstable_now(); - if (typeof continuationCallback === "function") { + if (typeof continuationCallback === 'function') { currentTask.callback = continuationCallback; } else { if (currentTask === peek(taskQueue)) { @@ -2183,7 +2290,7 @@ } function unstable_wrapCallback(callback) { var parentPriorityLevel = currentPriorityLevel; - return function() { + return function () { var previousPriorityLevel = currentPriorityLevel; currentPriorityLevel = parentPriorityLevel; try { @@ -2196,9 +2303,9 @@ function unstable_scheduleCallback(priorityLevel, callback, options) { var currentTime = exports.unstable_now(); var startTime2; - if (typeof options === "object" && options !== null) { + if (typeof options === 'object' && options !== null) { var delay3 = options.delay; - if (typeof delay3 === "number" && delay3 > 0) { + if (typeof delay3 === 'number' && delay3 > 0) { startTime2 = currentTime + delay3; } else { startTime2 = currentTime; @@ -2232,7 +2339,7 @@ priorityLevel, startTime: startTime2, expirationTime, - sortIndex: -1 + sortIndex: -1, }; if (startTime2 > currentTime) { newTask.sortIndex = startTime2; @@ -2255,8 +2362,7 @@ } return newTask; } - function unstable_pauseExecution() { - } + function unstable_pauseExecution() {} function unstable_continueExecution() { if (!isHostCallbackScheduled && !isPerformingWork) { isHostCallbackScheduled = true; @@ -2284,11 +2390,10 @@ } return true; } - function requestPaint() { - } + function requestPaint() {} function forceFrameRate(fps) { if (fps < 0 || fps > 125) { - console["error"]("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"); + console['error']('forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported'); return; } if (fps > 0) { @@ -2297,7 +2402,7 @@ frameInterval = frameYieldMs; } } - var performWorkUntilDeadline = function() { + var performWorkUntilDeadline = function () { if (scheduledHostCallback !== null) { var currentTime = exports.unstable_now(); startTime = currentTime; @@ -2318,19 +2423,19 @@ } }; var schedulePerformWorkUntilDeadline; - if (typeof localSetImmediate === "function") { - schedulePerformWorkUntilDeadline = function() { + if (typeof localSetImmediate === 'function') { + schedulePerformWorkUntilDeadline = function () { localSetImmediate(performWorkUntilDeadline); }; - } else if (typeof MessageChannel !== "undefined") { + } else if (typeof MessageChannel !== 'undefined') { var channel = new MessageChannel(); var port = channel.port2; channel.port1.onmessage = performWorkUntilDeadline; - schedulePerformWorkUntilDeadline = function() { + schedulePerformWorkUntilDeadline = function () { port.postMessage(null); }; } else { - schedulePerformWorkUntilDeadline = function() { + schedulePerformWorkUntilDeadline = function () { localSetTimeout(performWorkUntilDeadline, 0); }; } @@ -2342,7 +2447,7 @@ } } function requestHostTimeout(callback, ms) { - taskTimeoutID = localSetTimeout(function() { + taskTimeoutID = localSetTimeout(function () { callback(exports.unstable_now()); }, ms); } @@ -2370,34 +2475,34 @@ exports.unstable_scheduleCallback = unstable_scheduleCallback; exports.unstable_shouldYield = shouldYieldToHost; exports.unstable_wrapCallback = unstable_wrapCallback; - if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") { + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === 'function') { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); } })(); } - } + }, }); // node_modules/scheduler/index.js var require_scheduler = __commonJS({ - "node_modules/scheduler/index.js"(exports, module) { - "use strict"; + 'node_modules/scheduler/index.js'(exports, module) { + 'use strict'; if (false) { module.exports = null; } else { module.exports = require_scheduler_development(); } - } + }, }); // node_modules/react-dom/cjs/react-dom.development.js var require_react_dom_development = __commonJS({ - "node_modules/react-dom/cjs/react-dom.development.js"(exports) { - "use strict"; + 'node_modules/react-dom/cjs/react-dom.development.js'(exports) { + 'use strict'; if (true) { - (function() { - "use strict"; - if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") { + (function () { + 'use strict'; + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error()); } var React162 = require_react(); @@ -2415,7 +2520,7 @@ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } - printWarning("warn", format, args); + printWarning('warn', format, args); } } } @@ -2425,7 +2530,7 @@ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { args[_key2 - 1] = arguments[_key2]; } - printWarning("error", format, args); + printWarning('error', format, args); } } } @@ -2433,14 +2538,14 @@ { var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame; var stack = ReactDebugCurrentFrame2.getStackAddendum(); - if (stack !== "") { - format += "%s"; + if (stack !== '') { + format += '%s'; args = args.concat([stack]); } - var argsWithFormat = args.map(function(item) { + var argsWithFormat = args.map(function (item) { return String(item); }); - argsWithFormat.unshift("Warning: " + format); + argsWithFormat.unshift('Warning: ' + format); Function.prototype.apply.call(console[level], console, argsWithFormat); } } @@ -2485,19 +2590,19 @@ var possibleRegistrationNames = {}; function registerTwoPhaseEvent(registrationName, dependencies) { registerDirectEvent(registrationName, dependencies); - registerDirectEvent(registrationName + "Capture", dependencies); + registerDirectEvent(registrationName + 'Capture', dependencies); } function registerDirectEvent(registrationName, dependencies) { { if (registrationNameDependencies[registrationName]) { - error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.", registrationName); + error('EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.', registrationName); } } registrationNameDependencies[registrationName] = dependencies; { var lowerCasedName = registrationName.toLowerCase(); possibleRegistrationNames[lowerCasedName] = registrationName; - if (registrationName === "onDoubleClick") { + if (registrationName === 'onDoubleClick') { possibleRegistrationNames.ondblclick = registrationName; } } @@ -2505,12 +2610,12 @@ allNativeEvents.add(dependencies[i]); } } - var canUseDOM2 = !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined"); + var canUseDOM2 = !!(typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined'); var hasOwnProperty = Object.prototype.hasOwnProperty; function typeName(value) { { - var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag; - var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object"; + var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag; + var type = (hasToStringTag && value[Symbol.toStringTag]) || value.constructor.name || 'Object'; return type; } } @@ -2525,12 +2630,12 @@ } } function testStringCoercion(value) { - return "" + value; + return '' + value; } function checkAttributeStringCoercion(value, attributeName) { { if (willCoercionThrow(value)) { - error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before before using it here.", attributeName, typeName(value)); + error('The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before before using it here.', attributeName, typeName(value)); return testStringCoercion(value); } } @@ -2538,7 +2643,7 @@ function checkKeyStringCoercion(value) { { if (willCoercionThrow(value)) { - error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value)); + error('The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.', typeName(value)); return testStringCoercion(value); } } @@ -2546,7 +2651,7 @@ function checkPropStringCoercion(value, propName) { { if (willCoercionThrow(value)) { - error("The provided `%s` prop is an unsupported type %s. This value must be coerced to a string before before using it here.", propName, typeName(value)); + error('The provided `%s` prop is an unsupported type %s. This value must be coerced to a string before before using it here.', propName, typeName(value)); return testStringCoercion(value); } } @@ -2554,7 +2659,7 @@ function checkCSSPropertyStringCoercion(value, propName) { { if (willCoercionThrow(value)) { - error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it here.", propName, typeName(value)); + error('The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it here.', propName, typeName(value)); return testStringCoercion(value); } } @@ -2562,7 +2667,7 @@ function checkHtmlStringCoercion(value) { { if (willCoercionThrow(value)) { - error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value)); + error('The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using it here.', typeName(value)); return testStringCoercion(value); } } @@ -2570,7 +2675,10 @@ function checkFormFieldValueStringCoercion(value) { { if (willCoercionThrow(value)) { - error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before before using it here.", typeName(value)); + error( + 'Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before before using it here.', + typeName(value), + ); return testStringCoercion(value); } } @@ -2582,9 +2690,10 @@ var OVERLOADED_BOOLEAN = 4; var NUMERIC = 5; var POSITIVE_NUMERIC = 6; - var ATTRIBUTE_NAME_START_CHAR = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD"; - var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040"; - var VALID_ATTRIBUTE_NAME_REGEX = new RegExp("^[" + ATTRIBUTE_NAME_START_CHAR + "][" + ATTRIBUTE_NAME_CHAR + "]*$"); + var ATTRIBUTE_NAME_START_CHAR = + ':A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD'; + var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + '\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040'; + var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + ATTRIBUTE_NAME_START_CHAR + '][' + ATTRIBUTE_NAME_CHAR + ']*$'); var illegalAttributeNameCache = {}; var validatedAttributeNameCache = {}; function isAttributeNameSafe(attributeName) { @@ -2600,7 +2709,7 @@ } illegalAttributeNameCache[attributeName] = true; { - error("Invalid attribute name: `%s`", attributeName); + error('Invalid attribute name: `%s`', attributeName); } return false; } @@ -2611,7 +2720,7 @@ if (isCustomComponentTag) { return false; } - if (name.length > 2 && (name[0] === "o" || name[0] === "O") && (name[1] === "n" || name[1] === "N")) { + if (name.length > 2 && (name[0] === 'o' || name[0] === 'O') && (name[1] === 'n' || name[1] === 'N')) { return true; } return false; @@ -2621,11 +2730,11 @@ return false; } switch (typeof value) { - case "function": + case 'function': // $FlowIssue symbol is perfectly valid here - case "symbol": + case 'symbol': return true; - case "boolean": { + case 'boolean': { if (isCustomComponentTag) { return false; } @@ -2633,7 +2742,7 @@ return !propertyInfo.acceptsBooleans; } else { var prefix2 = name.toLowerCase().slice(0, 5); - return prefix2 !== "data-" && prefix2 !== "aria-"; + return prefix2 !== 'data-' && prefix2 !== 'aria-'; } } default: @@ -2641,7 +2750,7 @@ } } function shouldRemoveAttribute(name, value, propertyInfo, isCustomComponentTag) { - if (value === null || typeof value === "undefined") { + if (value === null || typeof value === 'undefined') { return true; } if (shouldRemoveAttributeWithWarning(name, value, propertyInfo, isCustomComponentTag)) { @@ -2679,19 +2788,19 @@ } var properties = {}; var reservedProps = [ - "children", - "dangerouslySetInnerHTML", + 'children', + 'dangerouslySetInnerHTML', // TODO: This prevents the assignment of defaultValue to regular // elements (not just inputs). Now that ReactDOMInput assigns to the // defaultValue property -- do we need this? - "defaultValue", - "defaultChecked", - "innerHTML", - "suppressContentEditableWarning", - "suppressHydrationWarning", - "style" + 'defaultValue', + 'defaultChecked', + 'innerHTML', + 'suppressContentEditableWarning', + 'suppressHydrationWarning', + 'style', ]; - reservedProps.forEach(function(name) { + reservedProps.forEach(function (name) { properties[name] = new PropertyInfoRecord( name, RESERVED, @@ -2703,11 +2812,17 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); - [["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(_ref) { - var name = _ref[0], attributeName = _ref[1]; + [ + ['acceptCharset', 'accept-charset'], + ['className', 'class'], + ['htmlFor', 'for'], + ['httpEquiv', 'http-equiv'], + ].forEach(function (_ref) { + var name = _ref[0], + attributeName = _ref[1]; properties[name] = new PropertyInfoRecord( name, STRING, @@ -2719,10 +2834,10 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); - ["contentEditable", "draggable", "spellCheck", "value"].forEach(function(name) { + ['contentEditable', 'draggable', 'spellCheck', 'value'].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, BOOLEANISH_STRING, @@ -2734,10 +2849,10 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); - ["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(name) { + ['autoReverse', 'externalResourcesRequired', 'focusable', 'preserveAlpha'].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, BOOLEANISH_STRING, @@ -2749,37 +2864,37 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); [ - "allowFullScreen", - "async", + 'allowFullScreen', + 'async', // Note: there is a special case that prevents it from being written to the DOM // on the client side because the browsers are inconsistent. Instead we call focus(). - "autoFocus", - "autoPlay", - "controls", - "default", - "defer", - "disabled", - "disablePictureInPicture", - "disableRemotePlayback", - "formNoValidate", - "hidden", - "loop", - "noModule", - "noValidate", - "open", - "playsInline", - "readOnly", - "required", - "reversed", - "scoped", - "seamless", + 'autoFocus', + 'autoPlay', + 'controls', + 'default', + 'defer', + 'disabled', + 'disablePictureInPicture', + 'disableRemotePlayback', + 'formNoValidate', + 'hidden', + 'loop', + 'noModule', + 'noValidate', + 'open', + 'playsInline', + 'readOnly', + 'required', + 'reversed', + 'scoped', + 'seamless', // Microdata - "itemScope" - ].forEach(function(name) { + 'itemScope', + ].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, BOOLEAN, @@ -2791,20 +2906,20 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); [ - "checked", + 'checked', // Note: `option.selected` is not updated if `select.multiple` is // disabled with `removeAttribute`. We have special logic for handling this. - "multiple", - "muted", - "selected" + 'multiple', + 'muted', + 'selected', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(name) { + ].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, BOOLEAN, @@ -2816,16 +2931,16 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); [ - "capture", - "download" + 'capture', + 'download', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(name) { + ].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, OVERLOADED_BOOLEAN, @@ -2837,18 +2952,18 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); [ - "cols", - "rows", - "size", - "span" + 'cols', + 'rows', + 'size', + 'span', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(name) { + ].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, POSITIVE_NUMERIC, @@ -2860,10 +2975,10 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); - ["rowSpan", "start"].forEach(function(name) { + ['rowSpan', 'start'].forEach(function (name) { properties[name] = new PropertyInfoRecord( name, NUMERIC, @@ -2875,91 +2990,91 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); var CAMELIZE = /[\-\:]([a-z])/g; - var capitalize3 = function(token) { + var capitalize3 = function (token) { return token[1].toUpperCase(); }; [ - "accent-height", - "alignment-baseline", - "arabic-form", - "baseline-shift", - "cap-height", - "clip-path", - "clip-rule", - "color-interpolation", - "color-interpolation-filters", - "color-profile", - "color-rendering", - "dominant-baseline", - "enable-background", - "fill-opacity", - "fill-rule", - "flood-color", - "flood-opacity", - "font-family", - "font-size", - "font-size-adjust", - "font-stretch", - "font-style", - "font-variant", - "font-weight", - "glyph-name", - "glyph-orientation-horizontal", - "glyph-orientation-vertical", - "horiz-adv-x", - "horiz-origin-x", - "image-rendering", - "letter-spacing", - "lighting-color", - "marker-end", - "marker-mid", - "marker-start", - "overline-position", - "overline-thickness", - "paint-order", - "panose-1", - "pointer-events", - "rendering-intent", - "shape-rendering", - "stop-color", - "stop-opacity", - "strikethrough-position", - "strikethrough-thickness", - "stroke-dasharray", - "stroke-dashoffset", - "stroke-linecap", - "stroke-linejoin", - "stroke-miterlimit", - "stroke-opacity", - "stroke-width", - "text-anchor", - "text-decoration", - "text-rendering", - "underline-position", - "underline-thickness", - "unicode-bidi", - "unicode-range", - "units-per-em", - "v-alphabetic", - "v-hanging", - "v-ideographic", - "v-mathematical", - "vector-effect", - "vert-adv-y", - "vert-origin-x", - "vert-origin-y", - "word-spacing", - "writing-mode", - "xmlns:xlink", - "x-height" + 'accent-height', + 'alignment-baseline', + 'arabic-form', + 'baseline-shift', + 'cap-height', + 'clip-path', + 'clip-rule', + 'color-interpolation', + 'color-interpolation-filters', + 'color-profile', + 'color-rendering', + 'dominant-baseline', + 'enable-background', + 'fill-opacity', + 'fill-rule', + 'flood-color', + 'flood-opacity', + 'font-family', + 'font-size', + 'font-size-adjust', + 'font-stretch', + 'font-style', + 'font-variant', + 'font-weight', + 'glyph-name', + 'glyph-orientation-horizontal', + 'glyph-orientation-vertical', + 'horiz-adv-x', + 'horiz-origin-x', + 'image-rendering', + 'letter-spacing', + 'lighting-color', + 'marker-end', + 'marker-mid', + 'marker-start', + 'overline-position', + 'overline-thickness', + 'paint-order', + 'panose-1', + 'pointer-events', + 'rendering-intent', + 'shape-rendering', + 'stop-color', + 'stop-opacity', + 'strikethrough-position', + 'strikethrough-thickness', + 'stroke-dasharray', + 'stroke-dashoffset', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-miterlimit', + 'stroke-opacity', + 'stroke-width', + 'text-anchor', + 'text-decoration', + 'text-rendering', + 'underline-position', + 'underline-thickness', + 'unicode-bidi', + 'unicode-range', + 'units-per-em', + 'v-alphabetic', + 'v-hanging', + 'v-ideographic', + 'v-mathematical', + 'vector-effect', + 'vert-adv-y', + 'vert-origin-x', + 'vert-origin-y', + 'word-spacing', + 'writing-mode', + 'xmlns:xlink', + 'x-height', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(attributeName) { + ].forEach(function (attributeName) { var name = attributeName.replace(CAMELIZE, capitalize3); properties[name] = new PropertyInfoRecord( name, @@ -2971,20 +3086,20 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); [ - "xlink:actuate", - "xlink:arcrole", - "xlink:role", - "xlink:show", - "xlink:title", - "xlink:type" + 'xlink:actuate', + 'xlink:arcrole', + 'xlink:role', + 'xlink:show', + 'xlink:title', + 'xlink:type', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(attributeName) { + ].forEach(function (attributeName) { var name = attributeName.replace(CAMELIZE, capitalize3); properties[name] = new PropertyInfoRecord( name, @@ -2992,20 +3107,20 @@ false, // mustUseProperty attributeName, - "http://www.w3.org/1999/xlink", + 'http://www.w3.org/1999/xlink', false, // sanitizeURL - false + false, ); }); [ - "xml:base", - "xml:lang", - "xml:space" + 'xml:base', + 'xml:lang', + 'xml:space', // NOTE: if you add a camelCased prop to this list, // you'll need to set attributeName to name.toLowerCase() // instead in the assignment below. - ].forEach(function(attributeName) { + ].forEach(function (attributeName) { var name = attributeName.replace(CAMELIZE, capitalize3); properties[name] = new PropertyInfoRecord( name, @@ -3013,13 +3128,13 @@ false, // mustUseProperty attributeName, - "http://www.w3.org/XML/1998/namespace", + 'http://www.w3.org/XML/1998/namespace', false, // sanitizeURL - false + false, ); }); - ["tabIndex", "crossOrigin"].forEach(function(attributeName) { + ['tabIndex', 'crossOrigin'].forEach(function (attributeName) { properties[attributeName] = new PropertyInfoRecord( attributeName, STRING, @@ -3031,22 +3146,22 @@ // attributeNamespace false, // sanitizeURL - false + false, ); }); - var xlinkHref = "xlinkHref"; + var xlinkHref = 'xlinkHref'; properties[xlinkHref] = new PropertyInfoRecord( - "xlinkHref", + 'xlinkHref', STRING, false, // mustUseProperty - "xlink:href", - "http://www.w3.org/1999/xlink", + 'xlink:href', + 'http://www.w3.org/1999/xlink', true, // sanitizeURL - false + false, ); - ["src", "href", "action", "formAction"].forEach(function(attributeName) { + ['src', 'href', 'action', 'formAction'].forEach(function (attributeName) { properties[attributeName] = new PropertyInfoRecord( attributeName, STRING, @@ -3058,7 +3173,7 @@ // attributeNamespace true, // sanitizeURL - true + true, ); }); var isJavaScriptProtocol = /^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i; @@ -3067,7 +3182,10 @@ { if (!didWarn && isJavaScriptProtocol.test(url)) { didWarn = true; - error("A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.", JSON.stringify(url)); + error( + 'A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.', + JSON.stringify(url), + ); } } } @@ -3081,20 +3199,20 @@ checkAttributeStringCoercion(expected, name); } if (propertyInfo.sanitizeURL) { - sanitizeURL("" + expected); + sanitizeURL('' + expected); } var attributeName = propertyInfo.attributeName; var stringValue = null; if (propertyInfo.type === OVERLOADED_BOOLEAN) { if (node.hasAttribute(attributeName)) { var value = node.getAttribute(attributeName); - if (value === "") { + if (value === '') { return true; } if (shouldRemoveAttribute(name, expected, propertyInfo, false)) { return value; } - if (value === "" + expected) { + if (value === '' + expected) { return expected; } return value; @@ -3110,7 +3228,7 @@ } if (shouldRemoveAttribute(name, expected, propertyInfo, false)) { return stringValue === null ? expected : stringValue; - } else if (stringValue === "" + expected) { + } else if (stringValue === '' + expected) { return expected; } else { return stringValue; @@ -3130,7 +3248,7 @@ { checkAttributeStringCoercion(expected, name); } - if (value === "" + expected) { + if (value === '' + expected) { return expected; } return value; @@ -3153,7 +3271,7 @@ { checkAttributeStringCoercion(value, name); } - node.setAttribute(_attributeName, "" + value); + node.setAttribute(_attributeName, '' + value); } } return; @@ -3163,26 +3281,27 @@ var propertyName = propertyInfo.propertyName; if (value === null) { var type = propertyInfo.type; - node[propertyName] = type === BOOLEAN ? false : ""; + node[propertyName] = type === BOOLEAN ? false : ''; } else { node[propertyName] = value; } return; } - var attributeName = propertyInfo.attributeName, attributeNamespace = propertyInfo.attributeNamespace; + var attributeName = propertyInfo.attributeName, + attributeNamespace = propertyInfo.attributeNamespace; if (value === null) { node.removeAttribute(attributeName); } else { var _type = propertyInfo.type; var attributeValue; - if (_type === BOOLEAN || _type === OVERLOADED_BOOLEAN && value === true) { - attributeValue = ""; + if (_type === BOOLEAN || (_type === OVERLOADED_BOOLEAN && value === true)) { + attributeValue = ''; } else { { { checkAttributeStringCoercion(value, attributeName); } - attributeValue = "" + value; + attributeValue = '' + value; } if (propertyInfo.sanitizeURL) { sanitizeURL(attributeValue.toString()); @@ -3195,32 +3314,32 @@ } } } - var REACT_ELEMENT_TYPE = Symbol.for("react.element"); - var REACT_PORTAL_TYPE = Symbol.for("react.portal"); - var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); - var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"); - var REACT_PROFILER_TYPE = Symbol.for("react.profiler"); - var REACT_PROVIDER_TYPE = Symbol.for("react.provider"); - var REACT_CONTEXT_TYPE = Symbol.for("react.context"); - var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"); - var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"); - var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"); - var REACT_MEMO_TYPE = Symbol.for("react.memo"); - var REACT_LAZY_TYPE = Symbol.for("react.lazy"); - var REACT_SCOPE_TYPE = Symbol.for("react.scope"); - var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode"); - var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"); - var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"); - var REACT_CACHE_TYPE = Symbol.for("react.cache"); - var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker"); + var REACT_ELEMENT_TYPE = Symbol.for('react.element'); + var REACT_PORTAL_TYPE = Symbol.for('react.portal'); + var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment'); + var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode'); + var REACT_PROFILER_TYPE = Symbol.for('react.profiler'); + var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); + var REACT_CONTEXT_TYPE = Symbol.for('react.context'); + var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); + var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense'); + var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list'); + var REACT_MEMO_TYPE = Symbol.for('react.memo'); + var REACT_LAZY_TYPE = Symbol.for('react.lazy'); + var REACT_SCOPE_TYPE = Symbol.for('react.scope'); + var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for('react.debug_trace_mode'); + var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen'); + var REACT_LEGACY_HIDDEN_TYPE = Symbol.for('react.legacy_hidden'); + var REACT_CACHE_TYPE = Symbol.for('react.cache'); + var REACT_TRACING_MARKER_TYPE = Symbol.for('react.tracing_marker'); var MAYBE_ITERATOR_SYMBOL = Symbol.iterator; - var FAUX_ITERATOR_SYMBOL = "@@iterator"; + var FAUX_ITERATOR_SYMBOL = '@@iterator'; function getIteratorFn(maybeIterable) { - if (maybeIterable === null || typeof maybeIterable !== "object") { + if (maybeIterable === null || typeof maybeIterable !== 'object') { return null; } - var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]; - if (typeof maybeIterator === "function") { + var maybeIterator = (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || maybeIterable[FAUX_ITERATOR_SYMBOL]; + if (typeof maybeIterator === 'function') { return maybeIterator; } return null; @@ -3234,8 +3353,7 @@ var prevGroup; var prevGroupCollapsed; var prevGroupEnd; - function disabledLog() { - } + function disabledLog() {} disabledLog.__reactDisabledLog = true; function disableLogs() { { @@ -3251,7 +3369,7 @@ configurable: true, enumerable: true, value: disabledLog, - writable: true + writable: true, }; Object.defineProperties(console, { info: props, @@ -3260,7 +3378,7 @@ error: props, group: props, groupCollapsed: props, - groupEnd: props + groupEnd: props, }); } disabledDepth++; @@ -3273,34 +3391,34 @@ var props = { configurable: true, enumerable: true, - writable: true + writable: true, }; Object.defineProperties(console, { log: assign({}, props, { - value: prevLog + value: prevLog, }), info: assign({}, props, { - value: prevInfo + value: prevInfo, }), warn: assign({}, props, { - value: prevWarn + value: prevWarn, }), error: assign({}, props, { - value: prevError + value: prevError, }), group: assign({}, props, { - value: prevGroup + value: prevGroup, }), groupCollapsed: assign({}, props, { - value: prevGroupCollapsed + value: prevGroupCollapsed, }), groupEnd: assign({}, props, { - value: prevGroupEnd - }) + value: prevGroupEnd, + }), }); } if (disabledDepth < 0) { - error("disabledDepth fell below zero. This is a bug in React. Please file an issue."); + error('disabledDepth fell below zero. This is a bug in React. Please file an issue.'); } } } @@ -3313,21 +3431,21 @@ throw Error(); } catch (x) { var match = x.stack.trim().match(/\n( *(at )?)/); - prefix = match && match[1] || ""; + prefix = (match && match[1]) || ''; } } - return "\n" + prefix + name; + return '\n' + prefix + name; } } var reentry = false; var componentFrameCache; { - var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map; + var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map; componentFrameCache = new PossiblyWeakMap(); } function describeNativeComponentFrame(fn, construct) { if (!fn || reentry) { - return ""; + return ''; } { var frame = componentFrameCache.get(fn); @@ -3347,15 +3465,15 @@ } try { if (construct) { - var Fake = function() { + var Fake = function () { throw Error(); }; - Object.defineProperty(Fake.prototype, "props", { - set: function() { + Object.defineProperty(Fake.prototype, 'props', { + set: function () { throw Error(); - } + }, }); - if (typeof Reflect === "object" && Reflect.construct) { + if (typeof Reflect === 'object' && Reflect.construct) { try { Reflect.construct(Fake, []); } catch (x) { @@ -3379,9 +3497,9 @@ fn(); } } catch (sample) { - if (sample && control && typeof sample.stack === "string") { - var sampleLines = sample.stack.split("\n"); - var controlLines = control.stack.split("\n"); + if (sample && control && typeof sample.stack === 'string') { + var sampleLines = sample.stack.split('\n'); + var controlLines = control.stack.split('\n'); var s = sampleLines.length - 1; var c = controlLines.length - 1; while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { @@ -3394,12 +3512,12 @@ s--; c--; if (c < 0 || sampleLines[s] !== controlLines[c]) { - var _frame = "\n" + sampleLines[s].replace(" at new ", " at "); - if (fn.displayName && _frame.includes("")) { - _frame = _frame.replace("", fn.displayName); + var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); + if (fn.displayName && _frame.includes('')) { + _frame = _frame.replace('', fn.displayName); } { - if (typeof fn === "function") { + if (typeof fn === 'function') { componentFrameCache.set(fn, _frame); } } @@ -3419,10 +3537,10 @@ } Error.prepareStackTrace = previousPrepareStackTrace; } - var name = fn ? fn.displayName || fn.name : ""; - var syntheticFrame = name ? describeBuiltInComponentFrame(name) : ""; + var name = fn ? fn.displayName || fn.name : ''; + var syntheticFrame = name ? describeBuiltInComponentFrame(name) : ''; { - if (typeof fn === "function") { + if (typeof fn === 'function') { componentFrameCache.set(fn, syntheticFrame); } } @@ -3444,23 +3562,23 @@ } function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) { if (type == null) { - return ""; + return ''; } - if (typeof type === "function") { + if (typeof type === 'function') { { return describeNativeComponentFrame(type, shouldConstruct(type)); } } - if (typeof type === "string") { + if (typeof type === 'string') { return describeBuiltInComponentFrame(type); } switch (type) { case REACT_SUSPENSE_TYPE: - return describeBuiltInComponentFrame("Suspense"); + return describeBuiltInComponentFrame('Suspense'); case REACT_SUSPENSE_LIST_TYPE: - return describeBuiltInComponentFrame("SuspenseList"); + return describeBuiltInComponentFrame('SuspenseList'); } - if (typeof type === "object") { + if (typeof type === 'object') { switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: return describeFunctionComponentFrame(type.render); @@ -3472,12 +3590,11 @@ var init = lazyComponent._init; try { return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn); - } catch (x) { - } + } catch (x) {} } } } - return ""; + return ''; } function describeFiber(fiber) { var owner = fiber._debugOwner ? fiber._debugOwner.type : null; @@ -3486,11 +3603,11 @@ case HostComponent: return describeBuiltInComponentFrame(fiber.type); case LazyComponent: - return describeBuiltInComponentFrame("Lazy"); + return describeBuiltInComponentFrame('Lazy'); case SuspenseComponent: - return describeBuiltInComponentFrame("Suspense"); + return describeBuiltInComponentFrame('Suspense'); case SuspenseListComponent: - return describeBuiltInComponentFrame("SuspenseList"); + return describeBuiltInComponentFrame('SuspenseList'); case FunctionComponent: case IndeterminateComponent: case SimpleMemoComponent: @@ -3500,12 +3617,12 @@ case ClassComponent: return describeClassComponentFrame(fiber.type); default: - return ""; + return ''; } } function getStackByFiberInDevAndProd(workInProgress2) { try { - var info2 = ""; + var info2 = ''; var node = workInProgress2; do { info2 += describeFiber(node); @@ -3513,7 +3630,7 @@ } while (node); return info2; } catch (x) { - return "\nError generating stack: " + x.message + "\n" + x.stack; + return '\nError generating stack: ' + x.message + '\n' + x.stack; } } function getWrappedName(outerType, innerType, wrapperName) { @@ -3521,57 +3638,57 @@ if (displayName) { return displayName; } - var functionName = innerType.displayName || innerType.name || ""; - return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName; + var functionName = innerType.displayName || innerType.name || ''; + return functionName !== '' ? wrapperName + '(' + functionName + ')' : wrapperName; } function getContextName(type) { - return type.displayName || "Context"; + return type.displayName || 'Context'; } function getComponentNameFromType(type) { if (type == null) { return null; } { - if (typeof type.tag === "number") { - error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."); + if (typeof type.tag === 'number') { + error('Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.'); } } - if (typeof type === "function") { + if (typeof type === 'function') { return type.displayName || type.name || null; } - if (typeof type === "string") { + if (typeof type === 'string') { return type; } switch (type) { case REACT_FRAGMENT_TYPE: - return "Fragment"; + return 'Fragment'; case REACT_PORTAL_TYPE: - return "Portal"; + return 'Portal'; case REACT_PROFILER_TYPE: - return "Profiler"; + return 'Profiler'; case REACT_STRICT_MODE_TYPE: - return "StrictMode"; + return 'StrictMode'; case REACT_SUSPENSE_TYPE: - return "Suspense"; + return 'Suspense'; case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; + return 'SuspenseList'; } - if (typeof type === "object") { + if (typeof type === 'object') { switch (type.$$typeof) { case REACT_CONTEXT_TYPE: var context = type; - return getContextName(context) + ".Consumer"; + return getContextName(context) + '.Consumer'; case REACT_PROVIDER_TYPE: var provider = type; - return getContextName(provider._context) + ".Provider"; + return getContextName(provider._context) + '.Provider'; case REACT_FORWARD_REF_TYPE: - return getWrappedName(type, type.render, "ForwardRef"); + return getWrappedName(type, type.render, 'ForwardRef'); case REACT_MEMO_TYPE: var outerName = type.displayName || null; if (outerName !== null) { return outerName; } - return getComponentNameFromType(type.type) || "Memo"; + return getComponentNameFromType(type.type) || 'Memo'; case REACT_LAZY_TYPE: { var lazyComponent = type; var payload = lazyComponent._payload; @@ -3587,56 +3704,57 @@ return null; } function getWrappedName$1(outerType, innerType, wrapperName) { - var functionName = innerType.displayName || innerType.name || ""; - return outerType.displayName || (functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName); + var functionName = innerType.displayName || innerType.name || ''; + return outerType.displayName || (functionName !== '' ? wrapperName + '(' + functionName + ')' : wrapperName); } function getContextName$1(type) { - return type.displayName || "Context"; + return type.displayName || 'Context'; } function getComponentNameFromFiber(fiber) { - var tag = fiber.tag, type = fiber.type; + var tag = fiber.tag, + type = fiber.type; switch (tag) { case CacheComponent: - return "Cache"; + return 'Cache'; case ContextConsumer: var context = type; - return getContextName$1(context) + ".Consumer"; + return getContextName$1(context) + '.Consumer'; case ContextProvider: var provider = type; - return getContextName$1(provider._context) + ".Provider"; + return getContextName$1(provider._context) + '.Provider'; case DehydratedFragment: - return "DehydratedFragment"; + return 'DehydratedFragment'; case ForwardRef: - return getWrappedName$1(type, type.render, "ForwardRef"); + return getWrappedName$1(type, type.render, 'ForwardRef'); case Fragment18: - return "Fragment"; + return 'Fragment'; case HostComponent: return type; case HostPortal: - return "Portal"; + return 'Portal'; case HostRoot: - return "Root"; + return 'Root'; case HostText: - return "Text"; + return 'Text'; case LazyComponent: return getComponentNameFromType(type); case Mode: if (type === REACT_STRICT_MODE_TYPE) { - return "StrictMode"; + return 'StrictMode'; } - return "Mode"; + return 'Mode'; case OffscreenComponent: - return "Offscreen"; + return 'Offscreen'; case Profiler: - return "Profiler"; + return 'Profiler'; case ScopeComponent: - return "Scope"; + return 'Scope'; case SuspenseComponent: - return "Suspense"; + return 'Suspense'; case SuspenseListComponent: - return "SuspenseList"; + return 'SuspenseList'; case TracingMarkerComponent: - return "TracingMarker"; + return 'TracingMarker'; // The display name for this tags come from the user-provided type: case ClassComponent: case FunctionComponent: @@ -3644,10 +3762,10 @@ case IndeterminateComponent: case MemoComponent: case SimpleMemoComponent: - if (typeof type === "function") { + if (typeof type === 'function') { return type.displayName || type.name || null; } - if (typeof type === "string") { + if (typeof type === 'string') { return type; } break; @@ -3663,7 +3781,7 @@ return null; } var owner = current._debugOwner; - if (owner !== null && typeof owner !== "undefined") { + if (owner !== null && typeof owner !== 'undefined') { return getComponentNameFromFiber(owner); } } @@ -3672,7 +3790,7 @@ function getCurrentFiberStackInDev() { { if (current === null) { - return ""; + return ''; } return getStackByFiberInDevAndProd(current); } @@ -3702,22 +3820,22 @@ } } function toString(value) { - return "" + value; + return '' + value; } function getToStringValue(value) { switch (typeof value) { - case "boolean": - case "number": - case "string": - case "undefined": + case 'boolean': + case 'number': + case 'string': + case 'undefined': return value; - case "object": + case 'object': { checkFormFieldValueStringCoercion(value); } return value; default: - return ""; + return ''; } } var hasReadOnlyValue = { @@ -3727,22 +3845,26 @@ hidden: true, radio: true, reset: true, - submit: true + submit: true, }; function checkControlledValueProps(tagName, props) { { if (!(hasReadOnlyValue[props.type] || props.onChange || props.onInput || props.readOnly || props.disabled || props.value == null)) { - error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`."); + error( + 'You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.', + ); } if (!(props.onChange || props.readOnly || props.disabled || props.checked == null)) { - error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`."); + error( + 'You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.', + ); } } } function isCheckable(elem) { var type = elem.type; var nodeName = elem.nodeName; - return nodeName && nodeName.toLowerCase() === "input" && (type === "checkbox" || type === "radio"); + return nodeName && nodeName.toLowerCase() === 'input' && (type === 'checkbox' || type === 'radio'); } function getTracker(node) { return node._valueTracker; @@ -3751,58 +3873,59 @@ node._valueTracker = null; } function getValueFromNode(node) { - var value = ""; + var value = ''; if (!node) { return value; } if (isCheckable(node)) { - value = node.checked ? "true" : "false"; + value = node.checked ? 'true' : 'false'; } else { value = node.value; } return value; } function trackValueOnNode(node) { - var valueField = isCheckable(node) ? "checked" : "value"; + var valueField = isCheckable(node) ? 'checked' : 'value'; var descriptor = Object.getOwnPropertyDescriptor(node.constructor.prototype, valueField); { checkFormFieldValueStringCoercion(node[valueField]); } - var currentValue = "" + node[valueField]; - if (node.hasOwnProperty(valueField) || typeof descriptor === "undefined" || typeof descriptor.get !== "function" || typeof descriptor.set !== "function") { + var currentValue = '' + node[valueField]; + if (node.hasOwnProperty(valueField) || typeof descriptor === 'undefined' || typeof descriptor.get !== 'function' || typeof descriptor.set !== 'function') { return; } - var get2 = descriptor.get, set2 = descriptor.set; + var get2 = descriptor.get, + set2 = descriptor.set; Object.defineProperty(node, valueField, { configurable: true, - get: function() { + get: function () { return get2.call(this); }, - set: function(value) { + set: function (value) { { checkFormFieldValueStringCoercion(value); } - currentValue = "" + value; + currentValue = '' + value; set2.call(this, value); - } + }, }); Object.defineProperty(node, valueField, { - enumerable: descriptor.enumerable + enumerable: descriptor.enumerable, }); var tracker = { - getValue: function() { + getValue: function () { return currentValue; }, - setValue: function(value) { + setValue: function (value) { { checkFormFieldValueStringCoercion(value); } - currentValue = "" + value; + currentValue = '' + value; }, - stopTracking: function() { + stopTracking: function () { detachTracker(node); delete node[valueField]; - } + }, }; return tracker; } @@ -3829,8 +3952,8 @@ return false; } function getActiveElement(doc) { - doc = doc || (typeof document !== "undefined" ? document : void 0); - if (typeof doc === "undefined") { + doc = doc || (typeof document !== 'undefined' ? document : void 0); + if (typeof doc === 'undefined') { return null; } try { @@ -3844,7 +3967,7 @@ var didWarnControlledToUncontrolled = false; var didWarnUncontrolledToControlled = false; function isControlled(props) { - var usesChecked = props.type === "checkbox" || props.type === "radio"; + var usesChecked = props.type === 'checkbox' || props.type === 'radio'; return usesChecked ? props.checked != null : props.value != null; } function getHostProps(element, props) { @@ -3854,35 +3977,43 @@ defaultChecked: void 0, defaultValue: void 0, value: void 0, - checked: checked != null ? checked : node._wrapperState.initialChecked + checked: checked != null ? checked : node._wrapperState.initialChecked, }); return hostProps; } function initWrapperState(element, props) { { - checkControlledValueProps("input", props); + checkControlledValueProps('input', props); if (props.checked !== void 0 && props.defaultChecked !== void 0 && !didWarnCheckedDefaultChecked) { - error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type); + error( + '%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components', + getCurrentFiberOwnerNameInDevOrNull() || 'A component', + props.type, + ); didWarnCheckedDefaultChecked = true; } if (props.value !== void 0 && props.defaultValue !== void 0 && !didWarnValueDefaultValue) { - error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type); + error( + '%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components', + getCurrentFiberOwnerNameInDevOrNull() || 'A component', + props.type, + ); didWarnValueDefaultValue = true; } } var node = element; - var defaultValue = props.defaultValue == null ? "" : props.defaultValue; + var defaultValue = props.defaultValue == null ? '' : props.defaultValue; node._wrapperState = { initialChecked: props.checked != null ? props.checked : props.defaultChecked, initialValue: getToStringValue(props.value != null ? props.value : defaultValue), - controlled: isControlled(props) + controlled: isControlled(props), }; } function updateChecked(element, props) { var node = element; var checked = props.checked; if (checked != null) { - setValueForProperty(node, "checked", checked, false); + setValueForProperty(node, 'checked', checked, false); } } function updateWrapper(element, props) { @@ -3890,11 +4021,15 @@ { var controlled = isControlled(props); if (!node._wrapperState.controlled && controlled && !didWarnUncontrolledToControlled) { - error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components"); + error( + 'A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components', + ); didWarnUncontrolledToControlled = true; } if (node._wrapperState.controlled && !controlled && !didWarnControlledToUncontrolled) { - error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components"); + error( + 'A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components', + ); didWarnControlledToUncontrolled = true; } } @@ -3902,23 +4037,25 @@ var value = getToStringValue(props.value); var type = props.type; if (value != null) { - if (type === "number") { - if (value === 0 && node.value === "" || // We explicitly want to coerce to number here if possible. - // eslint-disable-next-line - node.value != value) { + if (type === 'number') { + if ( + (value === 0 && node.value === '') || // We explicitly want to coerce to number here if possible. + // eslint-disable-next-line + node.value != value + ) { node.value = toString(value); } } else if (node.value !== toString(value)) { node.value = toString(value); } - } else if (type === "submit" || type === "reset") { - node.removeAttribute("value"); + } else if (type === 'submit' || type === 'reset') { + node.removeAttribute('value'); return; } { - if (props.hasOwnProperty("value")) { + if (props.hasOwnProperty('value')) { setDefaultValue(node, props.type, value); - } else if (props.hasOwnProperty("defaultValue")) { + } else if (props.hasOwnProperty('defaultValue')) { setDefaultValue(node, props.type, getToStringValue(props.defaultValue)); } } @@ -3930,9 +4067,9 @@ } function postMountWrapper(element, props, isHydrating2) { var node = element; - if (props.hasOwnProperty("value") || props.hasOwnProperty("defaultValue")) { + if (props.hasOwnProperty('value') || props.hasOwnProperty('defaultValue')) { var type = props.type; - var isButton = type === "submit" || type === "reset"; + var isButton = type === 'submit' || type === 'reset'; if (isButton && (props.value === void 0 || props.value === null)) { return; } @@ -3949,14 +4086,14 @@ } } var name = node.name; - if (name !== "") { - node.name = ""; + if (name !== '') { + node.name = ''; } { node.defaultChecked = !node.defaultChecked; node.defaultChecked = !!node._wrapperState.initialChecked; } - if (name !== "") { + if (name !== '') { node.name = name; } } @@ -3967,15 +4104,15 @@ } function updateNamedCousins(rootNode, props) { var name = props.name; - if (props.type === "radio" && name != null) { + if (props.type === 'radio' && name != null) { var queryRoot = rootNode; while (queryRoot.parentNode) { queryRoot = queryRoot.parentNode; } { - checkAttributeStringCoercion(name, "name"); + checkAttributeStringCoercion(name, 'name'); } - var group = queryRoot.querySelectorAll("input[name=" + JSON.stringify("" + name) + '][type="radio"]'); + var group = queryRoot.querySelectorAll('input[name=' + JSON.stringify('' + name) + '][type="radio"]'); for (var i = 0; i < group.length; i++) { var otherNode = group[i]; if (otherNode === rootNode || otherNode.form !== rootNode.form) { @@ -3983,7 +4120,7 @@ } var otherProps = getFiberCurrentPropsFromNode(otherNode); if (!otherProps) { - throw new Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported."); + throw new Error('ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.'); } updateValueIfChanged(otherNode); updateWrapper(otherNode, otherProps); @@ -3993,7 +4130,8 @@ function setDefaultValue(node, type, value) { if ( // Focused number inputs synchronize on blur. See ChangeEventPlugin.js - type !== "number" || getActiveElement(node.ownerDocument) !== node + type !== 'number' || + getActiveElement(node.ownerDocument) !== node ) { if (value == null) { node.defaultValue = toString(node._wrapperState.initialValue); @@ -4008,35 +4146,35 @@ function validateProps(element, props) { { if (props.value == null) { - if (typeof props.children === "object" && props.children !== null) { - React162.Children.forEach(props.children, function(child) { + if (typeof props.children === 'object' && props.children !== null) { + React162.Children.forEach(props.children, function (child) { if (child == null) { return; } - if (typeof child === "string" || typeof child === "number") { + if (typeof child === 'string' || typeof child === 'number') { return; } if (!didWarnInvalidChild) { didWarnInvalidChild = true; - error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to