1234567891011121314151617181920212223242526 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.97
- */
- export const CSS = {
- container: "container",
- header: "header",
- footer: "footer",
- title: "title",
- subtitle: "subtitle",
- checkboxWrapper: "checkbox-wrapper",
- thumbnailWrapper: "thumbnail-wrapper"
- };
- export const SLOTS = {
- thumbnail: "thumbnail",
- title: "title",
- subtitle: "subtitle",
- footerLeading: "footer-leading",
- footerTrailing: "footer-trailing"
- };
- export const TEXT = {
- select: "Select",
- deselect: "Deselect",
- loading: "Loading"
- };
|