@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
30 lines (28 loc) • 747 B
JavaScript
/**
* Copyright IBM Corp. 2020, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
//#region src/globals/settings.ts
/**
*
* Copyright IBM Corp. 2024, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
const prefix = "c4p";
const carbonPrefix = "cds-custom";
/**
* A selector selecting tabbable nodes.
* Borrowed from `carbon-angular`. tabbable === focusable.
*/
const selectorTabbable = `
c4p-side-nav-link,
c4p-side-nav-menu,
c4p-side-nav-menu-item
`;
//#endregion
export { carbonPrefix, prefix, selectorTabbable };
//# sourceMappingURL=settings.js.map