@codeandfunction/callaloo 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.css +1 -1
- package/dist/components/Containers/CLCard.vue.d.ts +1 -1
- package/dist/components/Indicators/CLBanner.vue.d.ts +1 -0
- package/dist/components/Popups/CLDropdownMenu.vue.d.ts +2 -0
- package/dist/components/Theme/utils.d.ts +2 -1
- package/dist/composables/useEsc.d.ts +1 -1
- package/dist/index.js +2124 -2113
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export interface BannerProps {
|
|
|
8
8
|
align?: Align;
|
|
9
9
|
/** Sets the aria-label on the banner if the `onClick` property has been set. It should be used when the `onClick` property has been set. */
|
|
10
10
|
ariaLabel?: string;
|
|
11
|
+
/** A boolean value when set to `true`, adds a border to the banner. */
|
|
12
|
+
bordered?: boolean;
|
|
11
13
|
/** The border radius size. The property can be one of `CLBorderRadius`, e.g. `CLBorderRadius.Medium`. */
|
|
12
14
|
borderRadius?: BorderRadius;
|
|
13
15
|
/** A `boolean` value which dictates the busy state of the Banner. When set to `true`, it utilizes the `<CLSkeleton />` component. */
|