@bcc-code/component-library-vue 0.0.0-dev.b82d660 → 0.0.0-dev.e513497
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 +9 -0
- package/dist/component-library.js +29258 -29436
- package/dist/component-library.umd.cjs +3953 -3966
- package/dist/index.css +1 -1
- package/dist/theme.css +395 -310
- package/dist-types/components/custom/BccNpsResult/BccNpsResult.vue.d.ts +2 -2
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +28 -0
- package/dist-types/components/custom/index.d.ts +2 -6
- package/dist-types/components/{custom → wrapped}/BccAvatar/BccAvatar.vue.d.ts +1 -1
- package/dist-types/components/wrapped/BccButton.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccCheckbox.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccChip/BccChip.vue.d.ts +18 -0
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +14 -0
- package/dist-types/components/{custom → wrapped}/BccTabs/BccTabs.vue.d.ts +1 -1
- package/dist-types/components/wrapped/index.d.ts +10 -0
- package/dist-types/index.d.ts +14 -5
- package/package.json +103 -101
- /package/dist-types/components/{custom → wrapped}/BccToggle/BccToggle.vue.d.ts +0 -0
|
@@ -2,7 +2,7 @@ export type NpsResultProps = {
|
|
|
2
2
|
/** NPS score between -100 and 100; drives the gauge needle angle and position. */
|
|
3
3
|
score: number;
|
|
4
4
|
/** Controls the size of the gauge and optional text (lg, md, sm, xs). */
|
|
5
|
-
size?: '
|
|
5
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
6
6
|
/** Text shown as the main heading; defaults to the numeric score when unset. */
|
|
7
7
|
display?: string;
|
|
8
8
|
/** Secondary label shown under the main heading. */
|
|
@@ -13,7 +13,7 @@ export type NpsResultProps = {
|
|
|
13
13
|
animated?: boolean;
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_export: import("vue").DefineComponent<NpsResultProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NpsResultProps> & Readonly<{}>, {
|
|
16
|
-
size: "
|
|
16
|
+
size: "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
17
17
|
hideText: boolean;
|
|
18
18
|
animated: boolean;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type BCC_CONTEXT } from '@/contexts';
|
|
2
|
+
export type StepIndicatorProps = {
|
|
3
|
+
steps: string[];
|
|
4
|
+
additionalText?: boolean;
|
|
5
|
+
showStepLabel?: boolean;
|
|
6
|
+
left?: boolean;
|
|
7
|
+
right?: boolean;
|
|
8
|
+
context?: BCC_CONTEXT;
|
|
9
|
+
headingFn?: (currentStep: number, totalSteps: number) => string;
|
|
10
|
+
clickable?: boolean;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_Props = StepIndicatorProps;
|
|
13
|
+
type __VLS_ModelProps = {
|
|
14
|
+
modelValue?: number;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
17
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
"update:modelValue": (value: number) => any;
|
|
19
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
21
|
+
}>, {
|
|
22
|
+
context: BCC_CONTEXT;
|
|
23
|
+
additionalText: boolean;
|
|
24
|
+
showStepLabel: boolean;
|
|
25
|
+
headingFn: (currentStep: number, totalSteps: number) => string;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
* Custom BCC components (not based on PrimeVue).
|
|
3
3
|
* Add new custom components here and export them from this file.
|
|
4
4
|
*/
|
|
5
|
-
export { default as BccAvatar } from './BccAvatar/BccAvatar.vue';
|
|
6
5
|
export { default as BccBadge } from './BccBadge/BccBadge.vue';
|
|
7
6
|
export { default as BccCapacityIndicator } from './BccCapacityIndicator/BccCapacityIndicator.vue';
|
|
8
7
|
export { default as BccCircleLoader } from './BccCircleLoader/BccCircleLoader.vue';
|
|
@@ -13,10 +12,8 @@ export { default as BccNpsResult } from './BccNpsResult/BccNpsResult.vue';
|
|
|
13
12
|
export { default as BccNpsScore } from './BccNpsScore/BccNpsScore.vue';
|
|
14
13
|
export { default as BccReact } from './BccReact/BccReact.vue';
|
|
15
14
|
export { default as BccReactEmoji } from './BccReact/BccReactEmoji.vue';
|
|
16
|
-
export { default as
|
|
15
|
+
export { default as BccStepIndicator } from './BccStepIndicator/BccStepIndicator.vue';
|
|
17
16
|
export { default as BccTag } from './BccTag/BccTag.vue';
|
|
18
|
-
export { default as BccToggle } from './BccToggle/BccToggle.vue';
|
|
19
|
-
export type { AvatarProps } from './BccAvatar/BccAvatar.vue';
|
|
20
17
|
export type { BadgeProps } from './BccBadge/BccBadge.vue';
|
|
21
18
|
export type { CapacityIndicatorProps } from './BccCapacityIndicator/BccCapacityIndicator.vue';
|
|
22
19
|
export type { KnobProps, KnobSlots } from './BccDialKnob/BccDialKnob.vue';
|
|
@@ -25,6 +22,5 @@ export type { GraphicProps } from './BccGraphic/BccGraphic.vue';
|
|
|
25
22
|
export type { NpsResultProps } from './BccNpsResult/BccNpsResult.vue';
|
|
26
23
|
export type { NpsScoreProps } from './BccNpsScore/BccNpsScore.vue';
|
|
27
24
|
export type { ReactInfo, ReactProps } from './BccReact/types';
|
|
28
|
-
export type {
|
|
25
|
+
export type { StepIndicatorProps } from './BccStepIndicator/BccStepIndicator.vue';
|
|
29
26
|
export type { TagProps } from './BccTag/BccTag.vue';
|
|
30
|
-
export type { ToggleProps } from './BccToggle/BccToggle.vue';
|
|
@@ -11,7 +11,7 @@ export type AvatarProps = Omit<PrimeAvatarProps, 'shape' | 'size'> & {
|
|
|
11
11
|
squared?: boolean;
|
|
12
12
|
/** Adds a visible border around the avatar. */
|
|
13
13
|
bordered?: boolean;
|
|
14
|
-
/** Controls the avatar dimensions; maps to CSS size classes (xs through xxl). */
|
|
14
|
+
/** Controls the avatar dimensions; maps to CSS size classes (xs through xxl). Default: md */
|
|
15
15
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_export: import("vue").DefineComponent<AvatarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AvatarProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -3,6 +3,7 @@ import { type ButtonProps as PrimeButtonProps } from 'primevue/button';
|
|
|
3
3
|
export type ButtonProps = {
|
|
4
4
|
icon?: VueComponent;
|
|
5
5
|
iconRight?: boolean;
|
|
6
|
+
iconClass?: PrimeButtonProps['iconClass'];
|
|
6
7
|
size?: PrimeButtonProps['size'];
|
|
7
8
|
useCtx?: boolean;
|
|
8
9
|
} & /* @vue-ignore */ Omit<PrimeButtonProps, 'icon' | 'iconPos'>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { VueComponent } from '@/types';
|
|
2
|
+
import { type ChipProps as PrimeChipProps } from 'primevue/chip';
|
|
3
|
+
export type ChipProps = {
|
|
4
|
+
icon?: VueComponent;
|
|
5
|
+
} & /* @vue-ignore */ Omit<PrimeChipProps, 'icon' | 'iconPos'>;
|
|
6
|
+
declare var __VLS_14: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_14) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_base: import("vue").DefineComponent<ChipProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ChipProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { VueComponent } from '@/types';
|
|
2
|
+
import type { MenuItem } from 'primevue/menuitem';
|
|
3
|
+
/** Menu item model for BccMenu: icon can be a PrimeVue icon class string or a Vue icon component. */
|
|
4
|
+
export type BccMenuItem = Omit<MenuItem, 'icon' | 'items'> & {
|
|
5
|
+
icon?: string | VueComponent;
|
|
6
|
+
items?: BccMenuItem[];
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {
|
|
9
|
+
toggle: (event: Event, target?: unknown) => void | undefined;
|
|
10
|
+
show: (event: Event, target?: unknown) => void | undefined;
|
|
11
|
+
hide: () => void | undefined;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
14
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { VueComponent } from '@/types';
|
|
2
2
|
import { type TabsProps as PrimeTabsProps } from 'primevue/tabs';
|
|
3
|
-
import { type BadgeProps } from '
|
|
3
|
+
import { type BadgeProps } from '../../custom';
|
|
4
4
|
export interface TabItem {
|
|
5
5
|
title: string;
|
|
6
6
|
icon?: VueComponent;
|
|
@@ -2,13 +2,23 @@
|
|
|
2
2
|
* Wrapped PrimeVue components with BCC defaults or extensions.
|
|
3
3
|
* Add new wrapped components here and export them from this file.
|
|
4
4
|
*/
|
|
5
|
+
export { default as BccAvatar } from './BccAvatar/BccAvatar.vue';
|
|
5
6
|
export { default as BccButton } from './BccButton.vue';
|
|
6
7
|
export { default as BccCheckbox } from './BccCheckbox.vue';
|
|
8
|
+
export { default as BccChip } from './BccChip/BccChip.vue';
|
|
7
9
|
export { default as BccInput } from './BccInput.vue';
|
|
10
|
+
export { default as BccMenu } from './BccMenu/BccMenu.vue';
|
|
8
11
|
export { default as BccMessage } from './BccMessage.vue';
|
|
12
|
+
export { default as BccTabs } from './BccTabs/BccTabs.vue';
|
|
13
|
+
export { default as BccToggle } from './BccToggle/BccToggle.vue';
|
|
9
14
|
export { default as BccToggleButton } from './BccToggleButton.vue';
|
|
15
|
+
export type { AvatarProps } from './BccAvatar/BccAvatar.vue';
|
|
10
16
|
export type { ButtonProps } from './BccButton.vue';
|
|
11
17
|
export type { CheckboxProps } from './BccCheckbox.vue';
|
|
18
|
+
export type { ChipProps } from './BccChip/BccChip.vue';
|
|
12
19
|
export type { InputProps } from './BccInput.vue';
|
|
20
|
+
export type { BccMenuItem } from './BccMenu/BccMenu.vue';
|
|
13
21
|
export type { MessageProps } from './BccMessage.vue';
|
|
22
|
+
export type { TabItem, TabsProps } from './BccTabs/BccTabs.vue';
|
|
23
|
+
export type { ToggleProps } from './BccToggle/BccToggle.vue';
|
|
14
24
|
export type { ToggleButtonProps } from './BccToggleButton.vue';
|
package/dist-types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
* 2. Alternative: Pre-built CSS only (no Tailwind in your app; library styles + components only):
|
|
17
17
|
* - main.ts: import "@bcc-code/component-library-vue/style.css";
|
|
18
18
|
*/
|
|
19
|
+
import type { ConfirmationOptions } from 'primevue/confirmationoptions';
|
|
19
20
|
import './style.css';
|
|
20
21
|
export { default as BccPreset } from '@bcc-code/design-tokens/primevue';
|
|
21
22
|
export { BCC_CONTEXTS, type BCC_CONTEXT } from './contexts';
|
|
@@ -45,7 +46,6 @@ export { default as BccColorPicker } from 'primevue/colorpicker';
|
|
|
45
46
|
export { default as BccColumn } from 'primevue/column';
|
|
46
47
|
export { default as BccColumnGroup } from 'primevue/columngroup';
|
|
47
48
|
export { default as BccConfig } from 'primevue/config';
|
|
48
|
-
export { default as BccConfirmDialog } from 'primevue/confirmdialog';
|
|
49
49
|
export { default as BccConfirmPopup } from 'primevue/confirmpopup';
|
|
50
50
|
export { default as BccContextMenu } from 'primevue/contextmenu';
|
|
51
51
|
export { default as BccDataTable } from 'primevue/datatable';
|
|
@@ -80,7 +80,7 @@ export { default as BccKeyFilter } from 'primevue/keyfilter';
|
|
|
80
80
|
export { default as BccKnob } from 'primevue/knob';
|
|
81
81
|
export { default as BccListbox } from 'primevue/listbox';
|
|
82
82
|
export { default as BccMegaMenu } from 'primevue/megamenu';
|
|
83
|
-
export {
|
|
83
|
+
export { BccMenu, type BccMenuItem } from './components/wrapped';
|
|
84
84
|
export { default as BccMenubar } from 'primevue/menubar';
|
|
85
85
|
export { default as BccMeterGroup } from 'primevue/metergroup';
|
|
86
86
|
export { default as BccMultiSelect } from 'primevue/multiselect';
|
|
@@ -133,14 +133,23 @@ export { default as BccTieredMenu } from 'primevue/tieredmenu';
|
|
|
133
133
|
export { default as BccTimeline } from 'primevue/timeline';
|
|
134
134
|
export { default as BccToast } from 'primevue/toast';
|
|
135
135
|
export { default as BccToastService } from 'primevue/toastservice';
|
|
136
|
-
export { default as BccToggleSwitch } from 'primevue/toggleswitch';
|
|
137
136
|
export { default as BccToolbar } from 'primevue/toolbar';
|
|
138
137
|
export { default as BccTooltip } from 'primevue/tooltip';
|
|
139
138
|
export { default as BccTree } from 'primevue/tree';
|
|
140
139
|
export { default as BccTreeSelect } from 'primevue/treeselect';
|
|
141
140
|
export { default as BccTreeTable } from 'primevue/treetable';
|
|
142
|
-
export { default as BccVirtualScroller } from 'primevue/virtualscroller';
|
|
143
|
-
export { useConfirm } from 'primevue/useconfirm';
|
|
144
141
|
export { useDialog } from 'primevue/usedialog';
|
|
145
142
|
export { useToast } from 'primevue/usetoast';
|
|
143
|
+
export { default as BccVirtualScroller } from 'primevue/virtualscroller';
|
|
146
144
|
export { default as useAnimatedNumber } from './composables/animatedNumber';
|
|
145
|
+
import type { VueComponent } from './types';
|
|
146
|
+
interface UseConfirmOptions extends Omit<ConfirmationOptions, 'icon' | 'acceptIcon' | 'rejectIcon'> {
|
|
147
|
+
icon?: VueComponent | undefined;
|
|
148
|
+
acceptIcon?: VueComponent | undefined;
|
|
149
|
+
rejectIcon?: VueComponent | undefined;
|
|
150
|
+
}
|
|
151
|
+
type UseConfirmReturn = {
|
|
152
|
+
require: (option: UseConfirmOptions) => void;
|
|
153
|
+
close: () => void;
|
|
154
|
+
};
|
|
155
|
+
export declare function useConfirm(): UseConfirmReturn;
|
package/package.json
CHANGED
|
@@ -1,103 +1,105 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
2
|
+
"name": "@bcc-code/component-library-vue",
|
|
3
|
+
"version": "0.0.0-dev.e513497",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Extended Vue component library based on PrimeVue and BCC design tokens",
|
|
6
|
+
"repository": "https://github.com/bcc-code/bcc-design.git",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"packageManager": "pnpm@9.15.0",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"dist-types",
|
|
15
|
+
"dist-css"
|
|
16
|
+
],
|
|
17
|
+
"main": "./dist/component-library.umd.cjs",
|
|
18
|
+
"module": "./dist/component-library.js",
|
|
19
|
+
"types": "./dist-types/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"import": {
|
|
23
|
+
"types": "./dist-types/index.d.ts",
|
|
24
|
+
"default": "./dist/component-library.js"
|
|
25
|
+
},
|
|
26
|
+
"require": {
|
|
27
|
+
"types": "./dist-types/index.d.ts",
|
|
28
|
+
"default": "./dist/component-library.umd.cjs"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"./style.css": "./dist/index.css",
|
|
32
|
+
"./theme.css": "./dist/theme.css",
|
|
33
|
+
"./archivo-font.css": "./dist/archivo-font.css",
|
|
34
|
+
"./tailwind.css": "./dist-css/tailwind.css"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"start": "storybook dev -p 6006",
|
|
38
|
+
"build-storybook": "storybook build",
|
|
39
|
+
"build": "run-p typecheck build:types build:vite",
|
|
40
|
+
"build:vite": "rimraf dist && vite build && node scripts/build-theme-css.mjs",
|
|
41
|
+
"build:types": "rimraf dist-types && vue-tsc -p tsconfig.build.json",
|
|
42
|
+
"generate:semantic": "node scripts/restructure-semantic-primitives.mjs",
|
|
43
|
+
"generate:semantic-css": "node scripts/generate-semantic-css.mjs",
|
|
44
|
+
"generate:context-modes": "node scripts/generate-context-modes.mjs",
|
|
45
|
+
"generate:context-css": "node scripts/generate-context-css.mjs",
|
|
46
|
+
"generate": "pnpm run generate:semantic && pnpm run generate:semantic-css && pnpm run generate:context-modes && pnpm run generate:context-css",
|
|
47
|
+
"sync:primevue-icon-patches": "node scripts/sync-primevue-icon-patches.mjs",
|
|
48
|
+
"typecheck": "vue-tsc --noEmit",
|
|
49
|
+
"lint": "eslint src/**/*.ts src/**/*.vue",
|
|
50
|
+
"lint:fix": "eslint --fix src/**/*.ts src/**/*.vue",
|
|
51
|
+
"test:unit": "vitest run",
|
|
52
|
+
"release-channel": "node ./scripts/release-channel.cjs",
|
|
53
|
+
"create-version": "node ./scripts/version.cjs"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@bcc-code/design-tokens": "^5.1.34",
|
|
57
|
+
"@bcc-code/icons-vue": "^1.4.0",
|
|
58
|
+
"@primeuix/themes": "^2.0.3",
|
|
59
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
60
|
+
"primevue": "^4.5.4",
|
|
61
|
+
"tailwindcss": "^4.0.0"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"vue": "^3.5.0"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@eslint/js": "^9.39.2",
|
|
68
|
+
"@primevue/auto-import-resolver": "^4.5.4",
|
|
69
|
+
"@storybook/addon-docs": "^10.2.8",
|
|
70
|
+
"@storybook/manager-api": "^8.6.14",
|
|
71
|
+
"@storybook/theming": "^8.6.14",
|
|
72
|
+
"@storybook/vue3": "^10.0.0",
|
|
73
|
+
"@storybook/vue3-vite": "^10.0.0",
|
|
74
|
+
"@types/node": "^22.0.0",
|
|
75
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
76
|
+
"@vue/eslint-config-prettier": "^10.2.0",
|
|
77
|
+
"@vue/test-utils": "^2.4.6",
|
|
78
|
+
"@vue/tsconfig": "^0.7.0",
|
|
79
|
+
"autoprefixer": "^10.4.20",
|
|
80
|
+
"eslint": "^9.39.2",
|
|
81
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
82
|
+
"eslint-plugin-vue": "^10.7.0",
|
|
83
|
+
"globals": "^17.3.0",
|
|
84
|
+
"jiti": "^2.6.1",
|
|
85
|
+
"npm-run-all": "^4.1.5",
|
|
86
|
+
"postcss": "^8.4.49",
|
|
87
|
+
"prettier": "^3.8.1",
|
|
88
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
89
|
+
"remark-gfm": "^4.0.0",
|
|
90
|
+
"rimraf": "^6.0.0",
|
|
91
|
+
"storybook": "^10.0.0",
|
|
92
|
+
"typescript": "~5.7.0",
|
|
93
|
+
"typescript-eslint": "^8.54.0",
|
|
94
|
+
"unplugin-vue-components": "^31.0.0",
|
|
95
|
+
"vite": "^7.3.0",
|
|
96
|
+
"vitest": "^4.0.18",
|
|
97
|
+
"vue": "^3.5.0",
|
|
98
|
+
"vue-tsc": "^3.2.4"
|
|
99
|
+
},
|
|
100
|
+
"pnpm": {
|
|
101
|
+
"patchedDependencies": {
|
|
102
|
+
"@primevue/icons": "patches/@primevue__icons.patch"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
103
105
|
}
|
|
File without changes
|