@cobre-npm/ds-v3 0.77.5 → 0.77.7
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.
|
@@ -626,10 +626,11 @@
|
|
|
626
626
|
|
|
627
627
|
--cobre-calendar-menu-padding: 8px;
|
|
628
628
|
|
|
629
|
-
--cobre-calendar-input-height:
|
|
630
|
-
--cobre-calendar-input-radius: var(--cobre-radius-
|
|
629
|
+
--cobre-calendar-input-height: 32px;
|
|
630
|
+
--cobre-calendar-input-radius: var(--cobre-radius-XS);
|
|
631
631
|
--cobre-calendar-input-border: var(--cobre-border-stroke-L) solid var(--cobre-primary-20);
|
|
632
632
|
--cobre-calendar-input-font-size: var(--cobre-label-medium-fs);
|
|
633
|
+
--cobre-calendar-input-color: var(--cobre-primary-80);
|
|
633
634
|
--cobre-calendar-input-readonly-bg: var(--cobre-primary-5);
|
|
634
635
|
--cobre-calendar-input-readonly-border-color: var(--cobre-primary-20);
|
|
635
636
|
--cobre-calendar-input-readonly-color: var(--cobre-primary-40);
|
|
@@ -5,7 +5,7 @@ interface Props {
|
|
|
5
5
|
tooltipText?: string;
|
|
6
6
|
copied?: string;
|
|
7
7
|
minLengthToShowTooltip?: number;
|
|
8
|
-
|
|
8
|
+
columnWidth?: number;
|
|
9
9
|
}
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
11
|
attrs: Partial<{}>;
|
|
@@ -14,6 +14,7 @@ declare function __VLS_template(): {
|
|
|
14
14
|
};
|
|
15
15
|
refs: {
|
|
16
16
|
componentRef: HTMLDivElement;
|
|
17
|
+
textRef: HTMLParagraphElement;
|
|
17
18
|
copyButtonRef: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
18
19
|
theme: {
|
|
19
20
|
type: () => import("../../../types/button.types.js").ButtonThemes;
|
|
@@ -113,6 +114,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
113
114
|
minLengthToShowTooltip: number;
|
|
114
115
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
115
116
|
componentRef: HTMLDivElement;
|
|
117
|
+
textRef: HTMLParagraphElement;
|
|
116
118
|
copyButtonRef: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
117
119
|
theme: {
|
|
118
120
|
type: () => import("../../../types/button.types.js").ButtonThemes;
|