@selfdecode/sd-component-library 2.46.4 → 2.46.5
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/lib/components/selectors/custom-scrollable-selector/custom-scrollable-selector.d.ts +2 -0
- package/lib/components/selectors/custom-scrollable-selector/index.d.ts +1 -0
- package/lib/components/selectors/custom-scrollable-selector/interfaces.d.ts +3 -0
- package/lib/components/selectors/custom-scrollable-selector/partials/custom-scrollable-options-box/custom-scrollable-options-box.d.ts +2 -0
- package/lib/components/selectors/custom-scrollable-selector/partials/custom-scrollable-options-box/index.d.ts +1 -0
- package/lib/components/selectors/custom-scrollable-selector/partials/custom-scrollable-options-box/interfaces.d.ts +3 -0
- package/lib/core/theme.d.ts +10 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CustomScrollableSelector } from "./custom-scrollable-selector";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CustomScrollableOptionsBox } from "./custom-scrollable-options-box";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { SecondaryCustomSelectorOptionsBoxProps } from "../../../secondary-custom-selector/partials/secondary-custom-selector-options-box/interfaces";
|
|
2
|
+
export interface CustomScrollableOptionsBoxProps<T extends string = string> extends SecondaryCustomSelectorOptionsBoxProps<T> {
|
|
3
|
+
}
|
package/lib/core/theme.d.ts
CHANGED
|
@@ -68,6 +68,9 @@ declare const _default: {
|
|
|
68
68
|
customTertiary: {
|
|
69
69
|
gap: string;
|
|
70
70
|
};
|
|
71
|
+
customScrollable: {
|
|
72
|
+
gap: string;
|
|
73
|
+
};
|
|
71
74
|
};
|
|
72
75
|
};
|
|
73
76
|
_dropdowns: {
|
|
@@ -340,6 +343,13 @@ declare const _default: {
|
|
|
340
343
|
textTransform: string;
|
|
341
344
|
color: string;
|
|
342
345
|
};
|
|
346
|
+
customScrollable: {
|
|
347
|
+
fontSize: string;
|
|
348
|
+
fontWeight: number;
|
|
349
|
+
letterSpacing: string;
|
|
350
|
+
textTransform: string;
|
|
351
|
+
color: string;
|
|
352
|
+
};
|
|
343
353
|
};
|
|
344
354
|
iconButton: {
|
|
345
355
|
marginRight: string;
|
package/lib/index.d.ts
CHANGED
|
@@ -151,6 +151,7 @@ export { TertiarySelectorV2 } from "./components/selectors/tertiary-selector-v2"
|
|
|
151
151
|
export { SecondarySelectorV2 } from "./components/selectors/secondary-selector-v2";
|
|
152
152
|
export { PrimarySelectorV2 } from "./components/selectors/primary-selector-v2";
|
|
153
153
|
export { CombinedSecondarySelectorV2 } from "./components/selectors/combined-secondary-selector-v2";
|
|
154
|
+
export { CustomScrollableSelector } from "./components/selectors/custom-scrollable-selector";
|
|
154
155
|
export { Slider } from "./components/slider";
|
|
155
156
|
export declare type SlideSettings = SlideSettingsType;
|
|
156
157
|
export { TextSwitch } from "./components/switches/text-switch";
|