@selfdecode/sd-component-library 2.46.20 → 2.46.23
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/inputs/date-inputs/primary-date-range-input/interfaces.d.ts +5 -0
- package/lib/components/selectors/index.d.ts +1 -0
- package/lib/components/selectors/updated-secondary-selector-v2/index.d.ts +1 -0
- package/lib/components/selectors/updated-secondary-selector-v2/interfaces.d.ts +3 -0
- package/lib/components/selectors/updated-secondary-selector-v2/updated-secondary-selector-v2.d.ts +3 -0
- package/lib/core/theme.d.ts +29 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export interface PrimaryDateRangeInputProps extends Omit<BaseDateRangeInputProps
|
|
|
6
6
|
*/
|
|
7
7
|
label?: string;
|
|
8
8
|
labelColor?: string;
|
|
9
|
+
labelFontSize?: number;
|
|
9
10
|
/**
|
|
10
11
|
* Text to be displayed inside of input.
|
|
11
12
|
*/
|
|
@@ -22,4 +23,8 @@ export interface PrimaryDateRangeInputProps extends Omit<BaseDateRangeInputProps
|
|
|
22
23
|
* Color of the arrow icon.
|
|
23
24
|
*/
|
|
24
25
|
arrowColor?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Distance between text and underline.
|
|
28
|
+
*/
|
|
29
|
+
pb?: string | string[];
|
|
25
30
|
}
|
|
@@ -19,3 +19,4 @@ export { PrimarySelectorV2 } from "./primary-selector-v2";
|
|
|
19
19
|
export { CombinedSecondarySelectorV2 } from "./combined-secondary-selector-v2";
|
|
20
20
|
export { CustomScrollableSelector } from "./custom-scrollable-selector";
|
|
21
21
|
export { PrimaryCustomScrollableSelector } from "./primary-custom-scrollable-selector";
|
|
22
|
+
export { UpdatedSecondarySelectorV2 } from "./updated-secondary-selector-v2";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UpdatedSecondarySelectorV2 } from "./updated-secondary-selector-v2";
|
package/lib/core/theme.d.ts
CHANGED
|
@@ -350,6 +350,13 @@ declare const _default: {
|
|
|
350
350
|
textTransform: string;
|
|
351
351
|
color: string;
|
|
352
352
|
};
|
|
353
|
+
updatedSecondary: {
|
|
354
|
+
fontSize: string;
|
|
355
|
+
fontWeight: number;
|
|
356
|
+
letterSpacing: string;
|
|
357
|
+
textTransform: string;
|
|
358
|
+
color: string;
|
|
359
|
+
};
|
|
353
360
|
};
|
|
354
361
|
iconButton: {
|
|
355
362
|
marginRight: string;
|
|
@@ -484,6 +491,28 @@ declare const _default: {
|
|
|
484
491
|
borderColor: string;
|
|
485
492
|
outline: string;
|
|
486
493
|
};
|
|
494
|
+
updatedSecondary: {
|
|
495
|
+
fontFamily: string;
|
|
496
|
+
textTransform: string;
|
|
497
|
+
fontSize: string;
|
|
498
|
+
lineHeight: string;
|
|
499
|
+
fontWeight: number;
|
|
500
|
+
letterSpacing: number;
|
|
501
|
+
color: string;
|
|
502
|
+
paddingLeft: number;
|
|
503
|
+
border: string;
|
|
504
|
+
outline: string;
|
|
505
|
+
borderBottomColor: string;
|
|
506
|
+
borderBottomStyle: string;
|
|
507
|
+
borderBottomWidth: number;
|
|
508
|
+
borderRadius: number;
|
|
509
|
+
py: string;
|
|
510
|
+
pr: string;
|
|
511
|
+
"& + svg": {
|
|
512
|
+
fill: string;
|
|
513
|
+
transform: string;
|
|
514
|
+
};
|
|
515
|
+
};
|
|
487
516
|
};
|
|
488
517
|
};
|
|
489
518
|
text: {
|