@cobre-npm/ds-v3 0.80.9 → 0.81.1

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.
@@ -48,6 +48,7 @@ export { default as CobreModalAction } from './molecules/CobreModalAction/CobreM
48
48
  export { default as CobreOtp } from './molecules/CobreFormOtp/CobreFormOtp.vue';
49
49
  export { default as CobreRowTable } from './molecules/CobreRowTable/CobreRowTable.vue';
50
50
  export { default as CobreSelect } from './molecules/CobreSelect/CobreSelect.vue';
51
+ export { default as CobreSelectTags } from './molecules/CobreSelectTags/CobreSelectTags.vue';
51
52
  export { default as CobreSnackBar } from './molecules/CobreSnackBar/CobreSnackBar.vue';
52
53
  export { default as CobreTableCellCopy } from './molecules/CobreTableCellCopy/CobreTableCellCopy.vue';
53
54
  export { default as CobreTextArea } from './molecules/CobreTextArea/CobreTextArea.vue';
@@ -0,0 +1,69 @@
1
+ import 'vue-select/dist/vue-select.css';
2
+ interface Props {
3
+ labelName?: string;
4
+ isRequired?: boolean;
5
+ errorMsg?: string;
6
+ labelTooltip?: string;
7
+ labelOptional?: string;
8
+ disabled?: boolean;
9
+ noArrow?: boolean;
10
+ noOptionsText?: string;
11
+ noOptionsIcon?: string;
12
+ }
13
+ declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
15
+ slots: {
16
+ option?(_: {
17
+ option: never;
18
+ }): any;
19
+ 'open-indicator'?(_: {
20
+ attributes: any;
21
+ }): any;
22
+ 'selected-option-container'?(_: {
23
+ option: any;
24
+ }): any;
25
+ 'no-options'?(_: {
26
+ search: never;
27
+ searching: never;
28
+ loading: never;
29
+ noOptionsMessage: never;
30
+ }): any;
31
+ 'no-results'?(_: {
32
+ search: never;
33
+ noResultsMessage: never;
34
+ }): any;
35
+ deselect?(_: {
36
+ deselect: any;
37
+ option: any;
38
+ attributes: any;
39
+ }): any;
40
+ 'list-footer'?(_: {
41
+ search: any;
42
+ loading: any;
43
+ attributes: any;
44
+ }): any;
45
+ 'list-header'?(_: {
46
+ search: any;
47
+ loading: any;
48
+ attributes: any;
49
+ }): any;
50
+ };
51
+ refs: {};
52
+ rootEl: HTMLDivElement;
53
+ };
54
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
55
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
56
+ isRequired: boolean;
57
+ errorMsg: string;
58
+ labelTooltip: string;
59
+ labelOptional: string;
60
+ noOptionsText: string;
61
+ noOptionsIcon: string;
62
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
63
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
64
+ export default _default;
65
+ type __VLS_WithTemplateSlots<T, S> = T & {
66
+ new (): {
67
+ $slots: S;
68
+ };
69
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cobre-npm/ds-v3",
3
- "version": "0.80.9",
3
+ "version": "0.81.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"