@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.
@@ -0,0 +1,2 @@
1
+ import { CustomScrollableSelectorProps as Props } from "./interfaces";
2
+ export declare const CustomScrollableSelector: <T extends string = string>(props: Props<T>) => JSX.Element | null;
@@ -0,0 +1 @@
1
+ export { CustomScrollableSelector } from "./custom-scrollable-selector";
@@ -0,0 +1,3 @@
1
+ import { SecondaryCustomSelectorProps } from "../secondary-custom-selector/interfaces";
2
+ export interface CustomScrollableSelectorProps<T extends string = string> extends Omit<SecondaryCustomSelectorProps<T>, "variant"> {
3
+ }
@@ -0,0 +1,2 @@
1
+ import { CustomScrollableOptionsBoxProps as Props } from "./interfaces";
2
+ export declare const CustomScrollableOptionsBox: <T extends string = string>(props: Props<T>) => JSX.Element;
@@ -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
+ }
@@ -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";