@bcc-code/component-library-vue 1.3.28 → 1.3.30
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/component-library.js +3694 -3657
- package/dist/component-library.umd.cjs +186 -186
- package/dist/index.css +1 -1
- package/dist/theme.css +2 -2
- package/dist-types/components/wrapped/BccButton.vue.d.ts +3 -3
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -2122,11 +2122,11 @@
|
|
|
2122
2122
|
}
|
|
2123
2123
|
|
|
2124
2124
|
.bcc-lightbox__header {
|
|
2125
|
-
@apply top-inset-top pointer-events-none absolute inset-x-0 z-20 flex items-center
|
|
2125
|
+
@apply top-inset-top pointer-events-none absolute inset-x-0 z-20 flex items-center gap-3 p-3;
|
|
2126
2126
|
}
|
|
2127
2127
|
|
|
2128
2128
|
.bcc-lightbox__counter {
|
|
2129
|
-
@apply body-sm pointer-events-none
|
|
2129
|
+
@apply body-sm pointer-events-none rounded-md bg-black/50 px-2.5 py-1 text-white;
|
|
2130
2130
|
}
|
|
2131
2131
|
|
|
2132
2132
|
.bcc-lightbox__control {
|
|
@@ -2,15 +2,15 @@ import type { VueComponent } from '@/types';
|
|
|
2
2
|
import { type ButtonProps as PrimeButtonProps } from 'primevue/button';
|
|
3
3
|
export type ButtonProps = {
|
|
4
4
|
icon?: VueComponent;
|
|
5
|
-
iconRight?: boolean;
|
|
5
|
+
iconRight?: boolean | VueComponent;
|
|
6
6
|
iconClass?: PrimeButtonProps['iconClass'];
|
|
7
7
|
size?: PrimeButtonProps['size'];
|
|
8
8
|
loadingIcon?: VueComponent;
|
|
9
9
|
useCtx?: boolean;
|
|
10
10
|
} & /* @vue-ignore */ Omit<PrimeButtonProps, 'icon' | 'iconPos' | 'loadingIcon'>;
|
|
11
|
-
declare var
|
|
11
|
+
declare var __VLS_25: {};
|
|
12
12
|
type __VLS_Slots = {} & {
|
|
13
|
-
default?: (props: typeof
|
|
13
|
+
default?: (props: typeof __VLS_25) => any;
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/package.json
CHANGED