@3dsource/source-ui 3.1.2 → 3.1.3
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/package.json
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
overflow-y: auto;
|
|
100
100
|
scrollbar-gutter: stable;
|
|
101
101
|
scrollbar-color: var(--src-color-border-strong)
|
|
102
|
-
var(--src-
|
|
102
|
+
var(--src-border-container-basic);
|
|
103
103
|
scrollbar-width: thin;
|
|
104
104
|
|
|
105
105
|
&::-webkit-scrollbar {
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
&::-webkit-scrollbar-track {
|
|
110
|
-
background-color: var(--src-
|
|
110
|
+
background-color: var(--src-border-container-basic);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
&::-webkit-scrollbar-thumb {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
// // --mat-sys-inverse-on-surface: light-dark(#f0f1f1, #2f3131);
|
|
63
63
|
// --mat-sys-outline: light-dark(var(--src-color-border-strong), #8b90a0);
|
|
64
64
|
// --mat-sys-outline-variant: light-dark(
|
|
65
|
-
// var(--src-
|
|
65
|
+
// var(--src-border-container-basic),
|
|
66
66
|
// #414754
|
|
67
67
|
// );
|
|
68
68
|
// --mat-sys-neutral10: light-dark(
|
|
@@ -29,12 +29,11 @@ interface SourceModalData {
|
|
|
29
29
|
componentData?: unknown;
|
|
30
30
|
footerButtons?: DialogButtonsData | DialogButtonsData[];
|
|
31
31
|
testID?: string;
|
|
32
|
-
[key: string]: unknown;
|
|
33
32
|
}
|
|
34
33
|
interface DialogButtonData {
|
|
35
34
|
srcButtonConfig?: Partial<SourceButton>;
|
|
36
35
|
label: string;
|
|
37
|
-
action: (
|
|
36
|
+
action: (data?: unknown) => unknown;
|
|
38
37
|
}
|
|
39
38
|
type DialogButtonsData = DialogButtonData[];
|
|
40
39
|
|
|
@@ -113,8 +112,8 @@ interface SourcePopoverData {
|
|
|
113
112
|
hasBackdrop: boolean;
|
|
114
113
|
closeOnBackdropClick: boolean;
|
|
115
114
|
overlayRef?: OverlayRef;
|
|
115
|
+
overlayOrigin?: CdkOverlayOrigin;
|
|
116
116
|
testID?: string;
|
|
117
|
-
[key: string]: any;
|
|
118
117
|
}
|
|
119
118
|
|
|
120
119
|
declare const defaultSourcePopoverConfig: SourcePopoverData;
|
|
@@ -163,9 +162,8 @@ type SourceTabAppearanceKeys = (typeof SourceTabAppearance)[keyof typeof SourceT
|
|
|
163
162
|
|
|
164
163
|
interface SourceTabData {
|
|
165
164
|
title: string;
|
|
166
|
-
data:
|
|
165
|
+
data: unknown;
|
|
167
166
|
isDisabled?: boolean;
|
|
168
|
-
[key: string]: any;
|
|
169
167
|
}
|
|
170
168
|
|
|
171
169
|
declare class SourceTabsComponent {
|