@bcc-code/component-library-vue 0.8.10 → 0.8.11
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 +4154 -4102
- package/dist/component-library.umd.cjs +294 -294
- package/dist/index.css +1 -1
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +17 -0
- package/dist-types/components/wrapped/index.d.ts +2 -0
- package/dist-types/index.d.ts +0 -1
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type SelectButtonProps as PrimeSelectButtonProps } from 'primevue/selectbutton';
|
|
2
|
+
export type SelectButtonProps = PrimeSelectButtonProps;
|
|
3
|
+
declare var __VLS_9: {
|
|
4
|
+
option: any;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
option?: (props: typeof __VLS_9) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<PrimeSelectButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PrimeSelectButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -12,6 +12,7 @@ export { default as BccInput } from './BccInput.vue';
|
|
|
12
12
|
export { default as BccMenu } from './BccMenu/BccMenu.vue';
|
|
13
13
|
export { default as BccMessage } from './BccMessage.vue';
|
|
14
14
|
export { default as BccRadioButton } from './BccRadioButton.vue';
|
|
15
|
+
export { default as BccSelectButton } from './BccSelectButton.vue';
|
|
15
16
|
export { default as BccTabs } from './BccTabs/BccTabs.vue';
|
|
16
17
|
export { default as BccToggle } from './BccToggle/BccToggle.vue';
|
|
17
18
|
export { default as BccToggleButton } from './BccToggleButton.vue';
|
|
@@ -24,6 +25,7 @@ export type { InputProps } from './BccInput.vue';
|
|
|
24
25
|
export type { BccMenuItem, MenuProps } from './BccMenu/BccMenu.vue';
|
|
25
26
|
export type { MessageProps } from './BccMessage.vue';
|
|
26
27
|
export type { RadioButtonProps } from './BccRadioButton.vue';
|
|
28
|
+
export type { SelectButtonProps } from './BccSelectButton.vue';
|
|
27
29
|
export type { TabItem, TabsProps } from './BccTabs/BccTabs.vue';
|
|
28
30
|
export type { ToggleProps } from './BccToggle/BccToggle.vue';
|
|
29
31
|
export type { ToggleButtonProps } from './BccToggleButton.vue';
|
package/dist-types/index.d.ts
CHANGED
|
@@ -101,7 +101,6 @@ export { default as BccRow } from 'primevue/row';
|
|
|
101
101
|
export { default as BccScrollPanel } from 'primevue/scrollpanel';
|
|
102
102
|
export { default as BccScrollTop } from 'primevue/scrolltop';
|
|
103
103
|
export { default as BccSelect } from 'primevue/select';
|
|
104
|
-
export { default as BccSelectButton } from 'primevue/selectbutton';
|
|
105
104
|
export { default as BccSkeleton } from 'primevue/skeleton';
|
|
106
105
|
export { default as BccSlider } from 'primevue/slider';
|
|
107
106
|
export { default as BccSpeedDial } from 'primevue/speeddial';
|
package/package.json
CHANGED