@bcc-code/component-library-vue 1.3.8 → 1.3.10
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 +7133 -5885
- package/dist/component-library.umd.cjs +1214 -186
- package/dist/index.css +1 -1
- package/dist/quill-BfNQeuzX.js +7524 -0
- package/dist/theme.css +2 -1
- package/dist-types/components/wrapped/BccCheckbox.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +5 -1
- package/dist-types/index.d.ts +1 -0
- package/package.json +2 -1
package/dist/theme.css
CHANGED
|
@@ -1708,7 +1708,8 @@
|
|
|
1708
1708
|
/** Custom styles to fix primevue components that are not custom or wrapped. */
|
|
1709
1709
|
|
|
1710
1710
|
:root {
|
|
1711
|
-
--p-toast-width: min(85vw,
|
|
1711
|
+
--p-toast-width: min(85vw, calc(var(--spacing) * 100));
|
|
1712
|
+
--p-tooltip-max-width: min(85vw, calc(var(--spacing) * 100));
|
|
1712
1713
|
}
|
|
1713
1714
|
|
|
1714
1715
|
/**
|
|
@@ -2,6 +2,8 @@ import { type CheckboxProps as PrimeCheckboxProps } from 'primevue/checkbox';
|
|
|
2
2
|
export type CheckboxProps = PrimeCheckboxProps & {
|
|
3
3
|
label?: string;
|
|
4
4
|
labelLeft?: boolean;
|
|
5
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
6
|
+
labelClass?: string;
|
|
5
7
|
};
|
|
6
8
|
declare var __VLS_18: {};
|
|
7
9
|
type __VLS_Slots = {} & {
|
|
@@ -6,9 +6,13 @@ export type MessageProps = Omit<PrimeMessageProps, 'icon'> & {
|
|
|
6
6
|
title?: string;
|
|
7
7
|
message?: string;
|
|
8
8
|
};
|
|
9
|
-
declare var __VLS_19: {};
|
|
9
|
+
declare var __VLS_19: {}, __VLS_21: {}, __VLS_23: {};
|
|
10
10
|
type __VLS_Slots = {} & {
|
|
11
11
|
default?: (props: typeof __VLS_19) => any;
|
|
12
|
+
} & {
|
|
13
|
+
title?: (props: typeof __VLS_21) => any;
|
|
14
|
+
} & {
|
|
15
|
+
message?: (props: typeof __VLS_23) => any;
|
|
12
16
|
};
|
|
13
17
|
declare const __VLS_base: import("vue").DefineComponent<MessageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MessageProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
18
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export { default as BccDivider } from 'primevue/divider';
|
|
|
57
57
|
export { default as BccDock } from 'primevue/dock';
|
|
58
58
|
export { default as BccDrawer } from 'primevue/drawer';
|
|
59
59
|
export { default as BccDynamicDialog } from 'primevue/dynamicdialog';
|
|
60
|
+
export { default as BccEditor } from 'primevue/editor';
|
|
60
61
|
export { default as BccFieldset } from 'primevue/fieldset';
|
|
61
62
|
export { default as BccFileUpload } from 'primevue/fileupload';
|
|
62
63
|
export { default as BccFloatLabel } from 'primevue/floatlabel';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Extended Vue component library based on PrimeVue and BCC design tokens",
|
|
6
6
|
"repository": "https://github.com/bcc-code/bcc-design.git",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"postcss": "^8.4.49",
|
|
88
88
|
"prettier": "^3.8.1",
|
|
89
89
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
90
|
+
"quill": "^2.0.3",
|
|
90
91
|
"remark-gfm": "^4.0.0",
|
|
91
92
|
"rimraf": "^6.0.0",
|
|
92
93
|
"storybook": "^10.3.5",
|