@gem-sdk/core 2.0.0-dev.344 → 2.0.0-dev.345
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/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -36083,6 +36083,7 @@ type Option$4<T> = {
|
|
|
36083
36083
|
condition?: 'and' | 'or';
|
|
36084
36084
|
icon?: string;
|
|
36085
36085
|
svgIcon?: string;
|
|
36086
|
+
svgIconSelected?: string;
|
|
36086
36087
|
tooltip?: string;
|
|
36087
36088
|
type?: string;
|
|
36088
36089
|
note?: string;
|
|
@@ -36131,6 +36132,9 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36131
36132
|
default?: T;
|
|
36132
36133
|
isFullWidth?: boolean;
|
|
36133
36134
|
showSelectedIcon?: boolean;
|
|
36135
|
+
showSelectedSvg?: boolean;
|
|
36136
|
+
fixWidth?: boolean;
|
|
36137
|
+
disableSelectedText?: boolean;
|
|
36134
36138
|
};
|
|
36135
36139
|
type SelectControlType<T> = {
|
|
36136
36140
|
[K in keyof T]-?: Mapped$5<K, T[K]>;
|