@bcc-code/component-library-vue 0.0.0-dev.46e3f5f → 0.0.0-dev.4e4f921
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/README.md +29 -35
- package/dist/component-library.js +6716 -5503
- package/dist/component-library.umd.cjs +1214 -186
- package/dist/index.css +1 -1
- package/dist/library-utilities.css +2 -0
- package/dist/quill-BfNQeuzX.js +7524 -0
- package/dist/theme.css +8 -1
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +1 -0
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +1 -1
- package/dist-types/components/wrapped/BccCheckbox.vue.d.ts +3 -0
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/package.json +6 -2
package/dist/theme.css
CHANGED
|
@@ -1870,7 +1870,8 @@
|
|
|
1870
1870
|
}
|
|
1871
1871
|
|
|
1872
1872
|
.p-message-text {
|
|
1873
|
-
line-height:
|
|
1873
|
+
line-height: 1;
|
|
1874
|
+
flex: 1 1 0;
|
|
1874
1875
|
}
|
|
1875
1876
|
|
|
1876
1877
|
.p-multiselect {
|
|
@@ -2615,3 +2616,9 @@ strong,
|
|
|
2615
2616
|
cursor: not-allowed;
|
|
2616
2617
|
pointer-events: none;
|
|
2617
2618
|
}
|
|
2619
|
+
|
|
2620
|
+
|
|
2621
|
+
/* Library utility classes, compiled from the library's own components.
|
|
2622
|
+
Contains only the utility class rules used inside the library — no preflight, no @theme
|
|
2623
|
+
variables, no design tokens, since theme.css already provides those. */
|
|
2624
|
+
@import './library-utilities.css';
|
|
@@ -4,9 +4,9 @@ declare const __VLS_export: import("vue").DefineComponent<ReactProps, {}, {}, {}
|
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<ReactProps> & Readonly<{
|
|
5
5
|
onToggle?: ((id: string) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
|
-
placeholder: string;
|
|
8
7
|
top: boolean;
|
|
9
8
|
emojis: ReactInfo[];
|
|
9
|
+
placeholder: string;
|
|
10
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
declare const _default: typeof __VLS_export;
|
|
12
12
|
export default _default;
|
|
@@ -2,6 +2,9 @@ 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;
|
|
7
|
+
fluid?: boolean;
|
|
5
8
|
};
|
|
6
9
|
declare var __VLS_18: {};
|
|
7
10
|
type __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": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.4e4f921",
|
|
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",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"./style.css": "./dist/index.css",
|
|
32
32
|
"./theme.css": "./dist/theme.css",
|
|
33
|
+
"./library-utilities.css": "./dist/library-utilities.css",
|
|
33
34
|
"./archivo-font.css": "./dist/archivo-font.css",
|
|
34
35
|
"./tailwind.css": "./dist-css/tailwind.css"
|
|
35
36
|
},
|
|
@@ -37,7 +38,8 @@
|
|
|
37
38
|
"start": "storybook dev -p 6006",
|
|
38
39
|
"build-storybook": "storybook build",
|
|
39
40
|
"build": "run-p typecheck build:types build:vite",
|
|
40
|
-
"build:vite": "rimraf dist && vite build && node scripts/build-theme-css.mjs",
|
|
41
|
+
"build:vite": "rimraf dist && vite build && pnpm run build:library-utilities && node scripts/build-theme-css.mjs",
|
|
42
|
+
"build:library-utilities": "tailwindcss -i src/library-utilities-input.css -o dist/library-utilities.css --minify",
|
|
41
43
|
"build:types": "rimraf dist-types && vue-tsc -p tsconfig.build.json",
|
|
42
44
|
"generate:semantic": "node scripts/restructure-semantic-primitives.mjs",
|
|
43
45
|
"generate:semantic-css": "node scripts/generate-semantic-css.mjs",
|
|
@@ -70,6 +72,7 @@
|
|
|
70
72
|
"@primevue/auto-import-resolver": "^4.5.4",
|
|
71
73
|
"@storybook/addon-docs": "^10.3.5",
|
|
72
74
|
"@storybook/vue3-vite": "^10.3.5",
|
|
75
|
+
"@tailwindcss/cli": "^4.2.4",
|
|
73
76
|
"@types/node": "^22.0.0",
|
|
74
77
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
75
78
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
@@ -87,6 +90,7 @@
|
|
|
87
90
|
"postcss": "^8.4.49",
|
|
88
91
|
"prettier": "^3.8.1",
|
|
89
92
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
93
|
+
"quill": "^2.0.3",
|
|
90
94
|
"remark-gfm": "^4.0.0",
|
|
91
95
|
"rimraf": "^6.0.0",
|
|
92
96
|
"storybook": "^10.3.5",
|