@dpa-id-components/dpa-shared-components 8.0.3 → 8.0.6
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/components/UiButton/UiButton.stories.d.ts +15 -15
- package/dist/components/UiButton/UiButton.vue.d.ts +9 -9
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +15 -15
- package/dist/components/UiInput/UiInput.stories.d.ts +18 -18
- package/dist/components/UiInput/UiInput.vue.d.ts +9 -9
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +18 -18
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +9 -9
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +39 -39
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +7 -7
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +24 -24
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +8 -8
- package/dist/components/UiTextButton/UiTextButton.stories.d.ts +19 -0
- package/dist/components/UiTextButton/UiTextButton.vue.d.ts +9 -0
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +34 -0
- package/dist/components/UiTooltip/UiTooltip.vue.d.ts +9 -0
- package/dist/dpa-shared-components.mjs +4461 -4279
- package/dist/dpa-shared-components.umd.js +5 -5
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/bookmark-4ff074d8.mjs +0 -19
- package/dist/bookmark-fill-731ae06c.mjs +0 -19
- package/dist/graphic-90b2d2fc.mjs +0 -20
- package/dist/main.css +0 -23
|
@@ -13,6 +13,7 @@ declare const meta: {
|
|
|
13
13
|
title: string;
|
|
14
14
|
description: string;
|
|
15
15
|
}[] | undefined;
|
|
16
|
+
multilines?: boolean | undefined;
|
|
16
17
|
key?: string | number | symbol | undefined;
|
|
17
18
|
ref?: import("vue").VNodeRef | undefined;
|
|
18
19
|
ref_for?: boolean | undefined;
|
|
@@ -91,6 +92,10 @@ declare const meta: {
|
|
|
91
92
|
}[]>;
|
|
92
93
|
default: () => never[];
|
|
93
94
|
};
|
|
95
|
+
multilines: {
|
|
96
|
+
type: import("vue").PropType<boolean>;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
94
99
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
95
100
|
fixed: boolean;
|
|
96
101
|
position: import("@popperjs/core").Placement;
|
|
@@ -99,6 +104,7 @@ declare const meta: {
|
|
|
99
104
|
title: string;
|
|
100
105
|
description: string;
|
|
101
106
|
}[];
|
|
107
|
+
multilines: boolean;
|
|
102
108
|
}, {}, string, {}> & {
|
|
103
109
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
104
110
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -139,6 +145,10 @@ declare const meta: {
|
|
|
139
145
|
}[]>;
|
|
140
146
|
default: () => never[];
|
|
141
147
|
};
|
|
148
|
+
multilines: {
|
|
149
|
+
type: import("vue").PropType<boolean>;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
142
152
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
143
153
|
__isFragment?: undefined;
|
|
144
154
|
__isTeleport?: undefined;
|
|
@@ -163,6 +173,10 @@ declare const meta: {
|
|
|
163
173
|
}[]>;
|
|
164
174
|
default: () => never[];
|
|
165
175
|
};
|
|
176
|
+
multilines: {
|
|
177
|
+
type: import("vue").PropType<boolean>;
|
|
178
|
+
default: boolean;
|
|
179
|
+
};
|
|
166
180
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
167
181
|
fixed: boolean;
|
|
168
182
|
position: import("@popperjs/core").Placement;
|
|
@@ -171,6 +185,7 @@ declare const meta: {
|
|
|
171
185
|
title: string;
|
|
172
186
|
description: string;
|
|
173
187
|
}[];
|
|
188
|
+
multilines: boolean;
|
|
174
189
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
175
190
|
$slots: {
|
|
176
191
|
default?(_: {}): any;
|
|
@@ -193,12 +208,16 @@ declare const meta: {
|
|
|
193
208
|
fixed: {
|
|
194
209
|
control: string;
|
|
195
210
|
};
|
|
211
|
+
multilines: {
|
|
212
|
+
control: string;
|
|
213
|
+
};
|
|
196
214
|
};
|
|
197
215
|
args: {
|
|
198
216
|
position: "bottom";
|
|
199
217
|
structuredLayout: false;
|
|
200
218
|
structuredInfo: never[];
|
|
201
219
|
fixed: false;
|
|
220
|
+
multilines: false;
|
|
202
221
|
};
|
|
203
222
|
render: (args: any) => {
|
|
204
223
|
setup(this: void): {
|
|
@@ -217,6 +236,7 @@ declare const meta: {
|
|
|
217
236
|
title: string;
|
|
218
237
|
description: string;
|
|
219
238
|
}[] | undefined;
|
|
239
|
+
multilines?: boolean | undefined;
|
|
220
240
|
key?: string | number | symbol | undefined;
|
|
221
241
|
ref?: import("vue").VNodeRef | undefined;
|
|
222
242
|
ref_for?: boolean | undefined;
|
|
@@ -295,6 +315,10 @@ declare const meta: {
|
|
|
295
315
|
}[]>;
|
|
296
316
|
default: () => never[];
|
|
297
317
|
};
|
|
318
|
+
multilines: {
|
|
319
|
+
type: import("vue").PropType<boolean>;
|
|
320
|
+
default: boolean;
|
|
321
|
+
};
|
|
298
322
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
299
323
|
fixed: boolean;
|
|
300
324
|
position: import("@popperjs/core").Placement;
|
|
@@ -303,6 +327,7 @@ declare const meta: {
|
|
|
303
327
|
title: string;
|
|
304
328
|
description: string;
|
|
305
329
|
}[];
|
|
330
|
+
multilines: boolean;
|
|
306
331
|
}, {}, string, {}> & {
|
|
307
332
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
308
333
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -343,6 +368,10 @@ declare const meta: {
|
|
|
343
368
|
}[]>;
|
|
344
369
|
default: () => never[];
|
|
345
370
|
};
|
|
371
|
+
multilines: {
|
|
372
|
+
type: import("vue").PropType<boolean>;
|
|
373
|
+
default: boolean;
|
|
374
|
+
};
|
|
346
375
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
347
376
|
__isFragment?: undefined;
|
|
348
377
|
__isTeleport?: undefined;
|
|
@@ -367,6 +396,10 @@ declare const meta: {
|
|
|
367
396
|
}[]>;
|
|
368
397
|
default: () => never[];
|
|
369
398
|
};
|
|
399
|
+
multilines: {
|
|
400
|
+
type: import("vue").PropType<boolean>;
|
|
401
|
+
default: boolean;
|
|
402
|
+
};
|
|
370
403
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
371
404
|
fixed: boolean;
|
|
372
405
|
position: import("@popperjs/core").Placement;
|
|
@@ -375,6 +408,7 @@ declare const meta: {
|
|
|
375
408
|
title: string;
|
|
376
409
|
description: string;
|
|
377
410
|
}[];
|
|
411
|
+
multilines: boolean;
|
|
378
412
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
379
413
|
$slots: {
|
|
380
414
|
default?(_: {}): any;
|
|
@@ -19,6 +19,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
19
19
|
}[]>;
|
|
20
20
|
default: () => never[];
|
|
21
21
|
};
|
|
22
|
+
multilines: {
|
|
23
|
+
type: import("vue").PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
22
26
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
27
|
fixed: {
|
|
24
28
|
type: import("vue").PropType<boolean>;
|
|
@@ -39,6 +43,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
39
43
|
}[]>;
|
|
40
44
|
default: () => never[];
|
|
41
45
|
};
|
|
46
|
+
multilines: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
42
50
|
}>>, {
|
|
43
51
|
fixed: boolean;
|
|
44
52
|
position: Placement;
|
|
@@ -47,6 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
47
55
|
title: string;
|
|
48
56
|
description: string;
|
|
49
57
|
}[];
|
|
58
|
+
multilines: boolean;
|
|
50
59
|
}, {}>, {
|
|
51
60
|
default?(_: {}): any;
|
|
52
61
|
activator?(_: {}): any;
|