@cobre-npm/ds-v3 0.69.1 → 0.70.0
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.
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
:root {
|
|
137
137
|
--cobre-badge-radius: var(--cobre-radius-XS);
|
|
138
138
|
--cobre-badge-font-size: var(--cobre-label-small-fs);
|
|
139
|
-
--cobre-badge-padding-x:
|
|
139
|
+
--cobre-badge-padding-x: 8px;
|
|
140
140
|
--cobre-badge-padding-y: 0px;
|
|
141
141
|
--cobre-badge-height: 20px;
|
|
142
142
|
|
|
@@ -163,6 +163,13 @@
|
|
|
163
163
|
--cobre-badge-outline-border: var(--cobre-border-stroke-M) solid var(--cobre-primary-40);
|
|
164
164
|
--cobre-badge-outline-color: var(--cobre-primary-80);
|
|
165
165
|
|
|
166
|
+
--cobre-badge-action-outline-bg: var(--cobre-white);
|
|
167
|
+
--cobre-badge-action-outline-border: var(--cobre-border-stroke-M) solid var(--cobre-primary-20);
|
|
168
|
+
--cobre-badge-action-outline-color: var(--cobre-primary-80);
|
|
169
|
+
--cobre-badge-action-outline-hover-bg: var(--cobre-primary-10);
|
|
170
|
+
--cobre-badge-action-outline-active-border: var(--cobre-border-stroke-M) solid var(--cobre-secondary-50);
|
|
171
|
+
--cobre-badge-action-outline-active-bg: var(--cobre-secondary-5);
|
|
172
|
+
|
|
166
173
|
--cobre-badge-inactive-bg: var(--cobre-primary-10);
|
|
167
174
|
--cobre-badge-inactive-border: none;
|
|
168
175
|
--cobre-badge-inactive-color: var(--cobre-primary-95);
|
|
@@ -35,6 +35,7 @@ export { default as CobreInputAmount } from './molecules/CobreInputAmount/CobreI
|
|
|
35
35
|
export { default as CobreInputCurrency } from './molecules/CobreInputCurrency/CobreInputCurrency.vue';
|
|
36
36
|
export { default as CobreInputPhoneNumber } from './molecules/CobreInputPhoneNumber/CobreInputPhoneNumber.vue';
|
|
37
37
|
export { default as CobreInputSearch } from './molecules/Toolbar/CobreInputSearch/CobreInputSearch.vue';
|
|
38
|
+
export { default as CobreInputSearchV2 } from './molecules/Toolbar/CobreInputSearchV2/CobreInputSearchV2.vue';
|
|
38
39
|
export { default as CobreInputUrl } from './molecules/CobreInputUrl/CobreInputUrl.vue';
|
|
39
40
|
export { default as CobreKebabMenu } from './molecules/CobreKebabMenu/CobreKebabMenu.vue';
|
|
40
41
|
export { default as CobreLogoField } from './molecules/CobreLogoField/CobreLogoField.vue';
|
package/dist/types/components/molecules/Toolbar/CobreInputSearchV2/CobreInputSearchV2.vue.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: string;
|
|
3
|
+
isLoading?: boolean;
|
|
4
|
+
id?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
debounce?: number;
|
|
7
|
+
searchLabel?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (...args: any[]) => void;
|
|
11
|
+
deleteInput: (...args: any[]) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
onDeleteInput?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
isLoading: boolean;
|
|
17
|
+
debounce: number;
|
|
18
|
+
searchLabel: string;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
20
|
+
inputSearch: HTMLInputElement;
|
|
21
|
+
}, HTMLElement>;
|
|
22
|
+
export default _default;
|