@bcc-code/component-library-vue 0.0.0-dev.b7ec5fd → 0.0.0-dev.ed57818
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 +376 -376
- package/dist/component-library.umd.cjs +79 -79
- package/dist/index.css +1 -1
- package/dist/theme.css +7 -1
- package/dist-types/components/wrapped/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -1838,6 +1838,12 @@
|
|
|
1838
1838
|
flex-grow: 1;
|
|
1839
1839
|
}
|
|
1840
1840
|
|
|
1841
|
+
.p-autocomplete-chip.p-chip {
|
|
1842
|
+
padding-block-start: calc(var(--p-autocomplete-padding-y) / 2);
|
|
1843
|
+
padding-block-end: calc(var(--p-autocomplete-padding-y) / 2);
|
|
1844
|
+
border-radius: var(--p-autocomplete-chip-border-radius);
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1841
1847
|
|
|
1842
1848
|
/**
|
|
1843
1849
|
GUTTER FIX
|
|
@@ -1909,7 +1915,7 @@ GUTTER FIX
|
|
|
1909
1915
|
}
|
|
1910
1916
|
|
|
1911
1917
|
.bcc-badge.squared {
|
|
1912
|
-
@apply rounded;
|
|
1918
|
+
@apply rounded-sm;
|
|
1913
1919
|
}
|
|
1914
1920
|
}
|
|
1915
1921
|
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
export { default as BccAvatar } from './BccAvatar/BccAvatar.vue';
|
|
6
6
|
export { default as BccButton } from './BccButton.vue';
|
|
7
7
|
export { default as BccCheckbox } from './BccCheckbox.vue';
|
|
8
|
+
export { default as BccChip } from './BccChip/BccChip.vue';
|
|
8
9
|
export { default as BccInput } from './BccInput.vue';
|
|
9
10
|
export { default as BccMessage } from './BccMessage.vue';
|
|
10
11
|
export { default as BccTabs } from './BccTabs/BccTabs.vue';
|
|
@@ -13,6 +14,7 @@ export { default as BccToggleButton } from './BccToggleButton.vue';
|
|
|
13
14
|
export type { AvatarProps } from './BccAvatar/BccAvatar.vue';
|
|
14
15
|
export type { ButtonProps } from './BccButton.vue';
|
|
15
16
|
export type { CheckboxProps } from './BccCheckbox.vue';
|
|
17
|
+
export type { ChipProps } from './BccChip/BccChip.vue';
|
|
16
18
|
export type { InputProps } from './BccInput.vue';
|
|
17
19
|
export type { MessageProps } from './BccMessage.vue';
|
|
18
20
|
export type { TabItem, TabsProps } from './BccTabs/BccTabs.vue';
|
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.ed57818",
|
|
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",
|