@cyberpunk-vue/components 1.9.9 → 1.9.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.
@@ -0,0 +1,238 @@
1
+ /**
2
+ * CpDescriptions 描述列表组件
3
+ *
4
+ * @description 赛博朋克风格描述列表,以键值对形式展示结构化数据。
5
+ * 配合 CpDescriptionsItem 声明式定义条目。
6
+ *
7
+ * @example
8
+ * ```vue
9
+ * <CpDescriptions title="设备信息" :column="3" border>
10
+ * <CpDescriptionsItem label="节点 ID">CYB-7749</CpDescriptionsItem>
11
+ * <CpDescriptionsItem label="状态">在线</CpDescriptionsItem>
12
+ * </CpDescriptions>
13
+ * ```
14
+ */
15
+ export declare const CpDescriptions: import('../utils').SFCWithInstall<{
16
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
17
+ readonly title: {
18
+ readonly type: StringConstructor;
19
+ readonly default: "";
20
+ };
21
+ readonly extra: {
22
+ readonly type: StringConstructor;
23
+ readonly default: "";
24
+ };
25
+ readonly column: {
26
+ readonly type: NumberConstructor;
27
+ readonly default: 3;
28
+ };
29
+ readonly direction: {
30
+ readonly type: import('vue').PropType<import('.').DescriptionsDirection>;
31
+ readonly default: "horizontal";
32
+ };
33
+ readonly variant: {
34
+ readonly type: import('vue').PropType<import('.').DescriptionsVariant>;
35
+ readonly default: "solid";
36
+ };
37
+ readonly size: {
38
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
39
+ readonly default: "md";
40
+ };
41
+ readonly type: {
42
+ readonly type: import('vue').PropType<import('.').DescriptionsType>;
43
+ readonly default: "default";
44
+ };
45
+ readonly color: {
46
+ readonly type: StringConstructor;
47
+ readonly default: "";
48
+ };
49
+ readonly labelWidth: {
50
+ readonly type: import('vue').PropType<string | number>;
51
+ readonly default: "";
52
+ };
53
+ readonly labelAlign: {
54
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
55
+ readonly default: "left";
56
+ };
57
+ readonly labelVerticalAlign: {
58
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
59
+ readonly default: "center";
60
+ };
61
+ readonly contentAlign: {
62
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
63
+ readonly default: "left";
64
+ };
65
+ readonly contentVerticalAlign: {
66
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
67
+ readonly default: "center";
68
+ };
69
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
70
+ readonly size: import('@cyberpunk-vue/hooks').Size;
71
+ readonly type: import('.').DescriptionsType;
72
+ readonly color: string;
73
+ readonly variant: import('.').DescriptionsVariant;
74
+ readonly title: string;
75
+ readonly labelWidth: string | number;
76
+ readonly labelVerticalAlign: import('.').DescriptionsVerticalAlign;
77
+ readonly column: number;
78
+ readonly direction: import('.').DescriptionsDirection;
79
+ readonly extra: string;
80
+ readonly labelAlign: "left" | "right" | "center";
81
+ readonly contentAlign: "left" | "right" | "center";
82
+ readonly contentVerticalAlign: import('.').DescriptionsVerticalAlign;
83
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
84
+ P: {};
85
+ B: {};
86
+ D: {};
87
+ C: {};
88
+ M: {};
89
+ Defaults: {};
90
+ }, Readonly<import('vue').ExtractPropTypes<{
91
+ readonly title: {
92
+ readonly type: StringConstructor;
93
+ readonly default: "";
94
+ };
95
+ readonly extra: {
96
+ readonly type: StringConstructor;
97
+ readonly default: "";
98
+ };
99
+ readonly column: {
100
+ readonly type: NumberConstructor;
101
+ readonly default: 3;
102
+ };
103
+ readonly direction: {
104
+ readonly type: import('vue').PropType<import('.').DescriptionsDirection>;
105
+ readonly default: "horizontal";
106
+ };
107
+ readonly variant: {
108
+ readonly type: import('vue').PropType<import('.').DescriptionsVariant>;
109
+ readonly default: "solid";
110
+ };
111
+ readonly size: {
112
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
113
+ readonly default: "md";
114
+ };
115
+ readonly type: {
116
+ readonly type: import('vue').PropType<import('.').DescriptionsType>;
117
+ readonly default: "default";
118
+ };
119
+ readonly color: {
120
+ readonly type: StringConstructor;
121
+ readonly default: "";
122
+ };
123
+ readonly labelWidth: {
124
+ readonly type: import('vue').PropType<string | number>;
125
+ readonly default: "";
126
+ };
127
+ readonly labelAlign: {
128
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
129
+ readonly default: "left";
130
+ };
131
+ readonly labelVerticalAlign: {
132
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
133
+ readonly default: "center";
134
+ };
135
+ readonly contentAlign: {
136
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
137
+ readonly default: "left";
138
+ };
139
+ readonly contentVerticalAlign: {
140
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
141
+ readonly default: "center";
142
+ };
143
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
144
+ readonly size: import('@cyberpunk-vue/hooks').Size;
145
+ readonly type: import('.').DescriptionsType;
146
+ readonly color: string;
147
+ readonly variant: import('.').DescriptionsVariant;
148
+ readonly title: string;
149
+ readonly labelWidth: string | number;
150
+ readonly labelVerticalAlign: import('.').DescriptionsVerticalAlign;
151
+ readonly column: number;
152
+ readonly direction: import('.').DescriptionsDirection;
153
+ readonly extra: string;
154
+ readonly labelAlign: "left" | "right" | "center";
155
+ readonly contentAlign: "left" | "right" | "center";
156
+ readonly contentVerticalAlign: import('.').DescriptionsVerticalAlign;
157
+ }>;
158
+ __isFragment?: never;
159
+ __isTeleport?: never;
160
+ __isSuspense?: never;
161
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
162
+ readonly title: {
163
+ readonly type: StringConstructor;
164
+ readonly default: "";
165
+ };
166
+ readonly extra: {
167
+ readonly type: StringConstructor;
168
+ readonly default: "";
169
+ };
170
+ readonly column: {
171
+ readonly type: NumberConstructor;
172
+ readonly default: 3;
173
+ };
174
+ readonly direction: {
175
+ readonly type: import('vue').PropType<import('.').DescriptionsDirection>;
176
+ readonly default: "horizontal";
177
+ };
178
+ readonly variant: {
179
+ readonly type: import('vue').PropType<import('.').DescriptionsVariant>;
180
+ readonly default: "solid";
181
+ };
182
+ readonly size: {
183
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
184
+ readonly default: "md";
185
+ };
186
+ readonly type: {
187
+ readonly type: import('vue').PropType<import('.').DescriptionsType>;
188
+ readonly default: "default";
189
+ };
190
+ readonly color: {
191
+ readonly type: StringConstructor;
192
+ readonly default: "";
193
+ };
194
+ readonly labelWidth: {
195
+ readonly type: import('vue').PropType<string | number>;
196
+ readonly default: "";
197
+ };
198
+ readonly labelAlign: {
199
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
200
+ readonly default: "left";
201
+ };
202
+ readonly labelVerticalAlign: {
203
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
204
+ readonly default: "center";
205
+ };
206
+ readonly contentAlign: {
207
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
208
+ readonly default: "left";
209
+ };
210
+ readonly contentVerticalAlign: {
211
+ readonly type: import('vue').PropType<import('.').DescriptionsVerticalAlign>;
212
+ readonly default: "center";
213
+ };
214
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
215
+ readonly size: import('@cyberpunk-vue/hooks').Size;
216
+ readonly type: import('.').DescriptionsType;
217
+ readonly color: string;
218
+ readonly variant: import('.').DescriptionsVariant;
219
+ readonly title: string;
220
+ readonly labelWidth: string | number;
221
+ readonly labelVerticalAlign: import('.').DescriptionsVerticalAlign;
222
+ readonly column: number;
223
+ readonly direction: import('.').DescriptionsDirection;
224
+ readonly extra: string;
225
+ readonly labelAlign: "left" | "right" | "center";
226
+ readonly contentAlign: "left" | "right" | "center";
227
+ readonly contentVerticalAlign: import('.').DescriptionsVerticalAlign;
228
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
229
+ $slots: {
230
+ default?(_: {}): any;
231
+ title?(_: {}): any;
232
+ extra?(_: {}): any;
233
+ };
234
+ })>;
235
+ export default CpDescriptions;
236
+ export * from './src/descriptions';
237
+ export type { CpDescriptionsInstance } from './src/instance';
238
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../descriptions/index.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA4B,CAAA;AAEvD,eAAe,cAAc,CAAA;AAC7B,cAAc,oBAAoB,CAAA;AAClC,YAAY,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAA"}
@@ -0,0 +1,188 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
+ /**
4
+ * 描述列表颜色类型
5
+ */
6
+ export type DescriptionsType = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info';
7
+ /**
8
+ * 描述列表排列方向
9
+ * - `horizontal` — label 与内容同行
10
+ * - `vertical` — label 在上、内容在下
11
+ */
12
+ export type DescriptionsDirection = 'horizontal' | 'vertical';
13
+ /**
14
+ * 描述列表变体
15
+ * - `solid` — 带边框 + label 背景(默认)
16
+ * - `outline` — 带边框、无 label 背景
17
+ * - `ghost` — 无边框、无背景
18
+ */
19
+ export type DescriptionsVariant = 'solid' | 'outline' | 'ghost';
20
+ /**
21
+ * 垂直对齐方式(仅在 direction 为 horizontal 时生效)
22
+ */
23
+ export type DescriptionsVerticalAlign = 'center' | 'top' | 'bottom' | 'auto';
24
+ /**
25
+ * 描述列表条目配置(内部使用,由 CpDescriptionsItem 注册)
26
+ */
27
+ export interface DescriptionsItemConfig {
28
+ /** 唯一标识(内部生成) */
29
+ id: string;
30
+ /** 标签文字 */
31
+ label: string;
32
+ /** 占列数 */
33
+ span: number;
34
+ /** 覆盖父级 label 宽度 */
35
+ labelWidth: string | number;
36
+ /** 覆盖父级 label 水平对齐 */
37
+ labelAlign: 'left' | 'center' | 'right' | '';
38
+ /** 覆盖父级 label 垂直对齐 */
39
+ labelVerticalAlign: DescriptionsVerticalAlign | '';
40
+ /** 覆盖父级内容水平对齐 */
41
+ contentAlign: 'left' | 'center' | 'right' | '';
42
+ /** 覆盖父级内容垂直对齐 */
43
+ contentVerticalAlign: DescriptionsVerticalAlign | '';
44
+ /** label 自定义类名 */
45
+ labelClassName: string;
46
+ /** content 自定义类名 */
47
+ contentClassName: string;
48
+ /** label 颜色(覆盖 CSS 变量) */
49
+ labelColor: string;
50
+ /** content 颜色(覆盖 CSS 变量) */
51
+ contentColor: string;
52
+ /** 单项类型(覆盖父级) */
53
+ type: DescriptionsType | '';
54
+ /** 单项自定义色(覆盖父级) */
55
+ color: string;
56
+ /** 插槽 */
57
+ slots: {
58
+ default?: (...args: unknown[]) => unknown;
59
+ label?: (...args: unknown[]) => unknown;
60
+ };
61
+ }
62
+ /**
63
+ * CpDescriptions 组件 Props 定义
64
+ * @category 数据展示
65
+ * @displayName CpDescriptions 描述列表
66
+ * @description 赛博朋克风格描述列表,以键值对形式展示结构化数据。配合 CpDescriptionsItem 声明式定义条目
67
+ * @slots default - CpDescriptionsItem 条目定义
68
+ * @slots title - 自定义标题
69
+ * @slots extra - 右侧额外操作区
70
+ * @example
71
+ * ```vue
72
+ * <CpDescriptions title="设备信息" :column="3">
73
+ * <CpDescriptionsItem label="节点 ID">CYB-7749</CpDescriptionsItem>
74
+ * <CpDescriptionsItem label="状态">在线</CpDescriptionsItem>
75
+ * </CpDescriptions>
76
+ * ```
77
+ */
78
+ export declare const descriptionsProps: {
79
+ /**
80
+ * 标题
81
+ * @default ''
82
+ */
83
+ readonly title: {
84
+ readonly type: StringConstructor;
85
+ readonly default: "";
86
+ };
87
+ /**
88
+ * 额外说明文字(右侧)
89
+ * @default ''
90
+ */
91
+ readonly extra: {
92
+ readonly type: StringConstructor;
93
+ readonly default: "";
94
+ };
95
+ /**
96
+ * 一行几列
97
+ * @default 3
98
+ */
99
+ readonly column: {
100
+ readonly type: NumberConstructor;
101
+ readonly default: 3;
102
+ };
103
+ /**
104
+ * 排列方向
105
+ * @default 'horizontal'
106
+ */
107
+ readonly direction: {
108
+ readonly type: PropType<DescriptionsDirection>;
109
+ readonly default: "horizontal";
110
+ };
111
+ /**
112
+ * 变体样式
113
+ * - `solid` — 带边框 + label 背景(默认)
114
+ * - `outline` — 仅边框
115
+ * - `ghost` — 无边框
116
+ * @default 'solid'
117
+ */
118
+ readonly variant: {
119
+ readonly type: PropType<DescriptionsVariant>;
120
+ readonly default: "solid";
121
+ };
122
+ /**
123
+ * 尺寸
124
+ * @default 'md'
125
+ */
126
+ readonly size: {
127
+ readonly type: PropType<Size>;
128
+ readonly default: "md";
129
+ };
130
+ /**
131
+ * 颜色类型
132
+ * @default 'default'
133
+ */
134
+ readonly type: {
135
+ readonly type: PropType<DescriptionsType>;
136
+ readonly default: "default";
137
+ };
138
+ /**
139
+ * 自定义主题色
140
+ * @default ''
141
+ */
142
+ readonly color: {
143
+ readonly type: StringConstructor;
144
+ readonly default: "";
145
+ };
146
+ /**
147
+ * 全局 label 宽度
148
+ * @default ''
149
+ */
150
+ readonly labelWidth: {
151
+ readonly type: PropType<string | number>;
152
+ readonly default: "";
153
+ };
154
+ /**
155
+ * label 水平对齐
156
+ * @default 'left'
157
+ */
158
+ readonly labelAlign: {
159
+ readonly type: PropType<"left" | "center" | "right">;
160
+ readonly default: "left";
161
+ };
162
+ /**
163
+ * label 垂直对齐(仅 direction 为 horizontal 时生效)
164
+ * @default 'center'
165
+ */
166
+ readonly labelVerticalAlign: {
167
+ readonly type: PropType<DescriptionsVerticalAlign>;
168
+ readonly default: "center";
169
+ };
170
+ /**
171
+ * 内容水平对齐
172
+ * @default 'left'
173
+ */
174
+ readonly contentAlign: {
175
+ readonly type: PropType<"left" | "center" | "right">;
176
+ readonly default: "left";
177
+ };
178
+ /**
179
+ * 内容垂直对齐(仅 direction 为 horizontal 时生效)
180
+ * @default 'center'
181
+ */
182
+ readonly contentVerticalAlign: {
183
+ readonly type: PropType<DescriptionsVerticalAlign>;
184
+ readonly default: "center";
185
+ };
186
+ };
187
+ export type DescriptionsProps = ExtractPropTypes<typeof descriptionsProps>;
188
+ //# sourceMappingURL=descriptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"descriptions.d.ts","sourceRoot":"","sources":["../../../descriptions/src/descriptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACrD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAEhD;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;AAE/F;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,YAAY,GAAG,UAAU,CAAA;AAE7D;;;;;GAKG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;AAE/D;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAA;AAE5E;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,iBAAiB;IACjB,EAAE,EAAE,MAAM,CAAA;IACV,WAAW;IACX,KAAK,EAAE,MAAM,CAAA;IACb,UAAU;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,oBAAoB;IACpB,UAAU,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,sBAAsB;IACtB,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,EAAE,CAAA;IAC5C,sBAAsB;IACtB,kBAAkB,EAAE,yBAAyB,GAAG,EAAE,CAAA;IAClD,iBAAiB;IACjB,YAAY,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,EAAE,CAAA;IAC9C,iBAAiB;IACjB,oBAAoB,EAAE,yBAAyB,GAAG,EAAE,CAAA;IACpD,kBAAkB;IAClB,cAAc,EAAE,MAAM,CAAA;IACtB,oBAAoB;IACpB,gBAAgB,EAAE,MAAM,CAAA;IACxB,0BAA0B;IAC1B,UAAU,EAAE,MAAM,CAAA;IAClB,4BAA4B;IAC5B,YAAY,EAAE,MAAM,CAAA;IACpB,iBAAiB;IACjB,IAAI,EAAE,gBAAgB,GAAG,EAAE,CAAA;IAC3B,mBAAmB;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,SAAS;IACT,KAAK,EAAE;QACL,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAA;QACzC,KAAK,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAA;KACxC,CAAA;CACF;AAED;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;uBAEe,QAAQ,CAAC,qBAAqB,CAAC;;;IAGjD;;;;;;OAMG;;uBAEe,QAAQ,CAAC,mBAAmB,CAAC;;;IAG/C;;;OAGG;;uBAEyB,QAAQ,CAAC,IAAI,CAAC;;;IAG1C;;;OAGG;;uBAEe,QAAQ,CAAC,gBAAgB,CAAC;;;IAG5C;;;OAGG;;;;;IAKH;;;OAGG;;uBAEyB,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC;;;IAGrD;;;OAGG;;uBAEe,QAAQ,CAAC,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;;;IAGvD;;;OAGG;;uBAEe,QAAQ,CAAC,yBAAyB,CAAC;;;IAGrD;;;OAGG;;uBAEe,QAAQ,CAAC,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;;;IAGvD;;;OAGG;;uBAEe,QAAQ,CAAC,yBAAyB,CAAC;;;CAG7C,CAAA;AAEV,MAAM,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
@@ -0,0 +1,141 @@
1
+ import { DescriptionsVerticalAlign } from './descriptions';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ title?(_: {}): any;
7
+ extra?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
14
+ readonly title: {
15
+ readonly type: StringConstructor;
16
+ readonly default: "";
17
+ };
18
+ readonly extra: {
19
+ readonly type: StringConstructor;
20
+ readonly default: "";
21
+ };
22
+ readonly column: {
23
+ readonly type: NumberConstructor;
24
+ readonly default: 3;
25
+ };
26
+ readonly direction: {
27
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsDirection>;
28
+ readonly default: "horizontal";
29
+ };
30
+ readonly variant: {
31
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsVariant>;
32
+ readonly default: "solid";
33
+ };
34
+ readonly size: {
35
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
36
+ readonly default: "md";
37
+ };
38
+ readonly type: {
39
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsType>;
40
+ readonly default: "default";
41
+ };
42
+ readonly color: {
43
+ readonly type: StringConstructor;
44
+ readonly default: "";
45
+ };
46
+ readonly labelWidth: {
47
+ readonly type: import('vue').PropType<string | number>;
48
+ readonly default: "";
49
+ };
50
+ readonly labelAlign: {
51
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
52
+ readonly default: "left";
53
+ };
54
+ readonly labelVerticalAlign: {
55
+ readonly type: import('vue').PropType<DescriptionsVerticalAlign>;
56
+ readonly default: "center";
57
+ };
58
+ readonly contentAlign: {
59
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
60
+ readonly default: "left";
61
+ };
62
+ readonly contentVerticalAlign: {
63
+ readonly type: import('vue').PropType<DescriptionsVerticalAlign>;
64
+ readonly default: "center";
65
+ };
66
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
67
+ readonly title: {
68
+ readonly type: StringConstructor;
69
+ readonly default: "";
70
+ };
71
+ readonly extra: {
72
+ readonly type: StringConstructor;
73
+ readonly default: "";
74
+ };
75
+ readonly column: {
76
+ readonly type: NumberConstructor;
77
+ readonly default: 3;
78
+ };
79
+ readonly direction: {
80
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsDirection>;
81
+ readonly default: "horizontal";
82
+ };
83
+ readonly variant: {
84
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsVariant>;
85
+ readonly default: "solid";
86
+ };
87
+ readonly size: {
88
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
89
+ readonly default: "md";
90
+ };
91
+ readonly type: {
92
+ readonly type: import('vue').PropType<import('./descriptions').DescriptionsType>;
93
+ readonly default: "default";
94
+ };
95
+ readonly color: {
96
+ readonly type: StringConstructor;
97
+ readonly default: "";
98
+ };
99
+ readonly labelWidth: {
100
+ readonly type: import('vue').PropType<string | number>;
101
+ readonly default: "";
102
+ };
103
+ readonly labelAlign: {
104
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
105
+ readonly default: "left";
106
+ };
107
+ readonly labelVerticalAlign: {
108
+ readonly type: import('vue').PropType<DescriptionsVerticalAlign>;
109
+ readonly default: "center";
110
+ };
111
+ readonly contentAlign: {
112
+ readonly type: import('vue').PropType<"left" | "center" | "right">;
113
+ readonly default: "left";
114
+ };
115
+ readonly contentVerticalAlign: {
116
+ readonly type: import('vue').PropType<DescriptionsVerticalAlign>;
117
+ readonly default: "center";
118
+ };
119
+ }>> & Readonly<{}>, {
120
+ readonly size: import('@cyberpunk-vue/hooks').Size;
121
+ readonly type: import('./descriptions').DescriptionsType;
122
+ readonly color: string;
123
+ readonly variant: import('./descriptions').DescriptionsVariant;
124
+ readonly title: string;
125
+ readonly labelWidth: string | number;
126
+ readonly labelVerticalAlign: DescriptionsVerticalAlign;
127
+ readonly column: number;
128
+ readonly direction: import('./descriptions').DescriptionsDirection;
129
+ readonly extra: string;
130
+ readonly labelAlign: "left" | "right" | "center";
131
+ readonly contentAlign: "left" | "right" | "center";
132
+ readonly contentVerticalAlign: DescriptionsVerticalAlign;
133
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
134
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
135
+ export default _default;
136
+ type __VLS_WithTemplateSlots<T, S> = T & {
137
+ new (): {
138
+ $slots: S;
139
+ };
140
+ };
141
+ //# sourceMappingURL=descriptions.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"descriptions.vue.d.ts","sourceRoot":"","sources":["../../../descriptions/src/descriptions.vue"],"names":[],"mappings":"AA4ZA,OAAO,EAGL,KAAK,yBAAyB,EAC/B,MAAM,gBAAgB,CAAA;AAsSvB,iBAAS,cAAc;WA+IT,OAAO,IAA6B;;yBAZrB,GAAG;uBACL,GAAG;uBACH,GAAG;;;;EAe7B;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uFAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { default as CpDescriptions } from './descriptions.vue';
2
+ export type CpDescriptionsInstance = InstanceType<typeof CpDescriptions> & unknown;
3
+ //# sourceMappingURL=instance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"instance.d.ts","sourceRoot":"","sources":["../../../descriptions/src/instance.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,oBAAoB,CAAA;AAEpD,MAAM,MAAM,sBAAsB,GAAG,YAAY,CAAC,OAAO,cAAc,CAAC,GAAG,OAAO,CAAA"}