sag_components 2.0.0-beta235 → 2.0.0-beta237
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/index.d.ts +2 -1
- package/dist/index.esm.js +85 -96
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +85 -96
- package/dist/index.js.map +1 -1
- package/dist/types/components/OverlayDropdown/OverlayDropdown.stories.d.ts +8 -0
- package/dist/types/components/WeeksPicker/WeeksPicker.d.ts +2 -1
- package/package.json +1 -1
|
@@ -212,6 +212,8 @@ export namespace WithSelection {
|
|
|
212
212
|
export { hoverColor_2 as hoverColor };
|
|
213
213
|
const dropdownMaxHeight_2: string;
|
|
214
214
|
export { dropdownMaxHeight_2 as dropdownMaxHeight };
|
|
215
|
+
const isDarkerBackground_2: boolean;
|
|
216
|
+
export { isDarkerBackground_2 as isDarkerBackground };
|
|
215
217
|
const label_2: string;
|
|
216
218
|
export { label_2 as label };
|
|
217
219
|
const labelEmptyValue_2: string;
|
|
@@ -244,6 +246,8 @@ export namespace LongStringTooltip {
|
|
|
244
246
|
export { hoverColor_3 as hoverColor };
|
|
245
247
|
const dropdownMaxHeight_3: string;
|
|
246
248
|
export { dropdownMaxHeight_3 as dropdownMaxHeight };
|
|
249
|
+
const isDarkerBackground_3: boolean;
|
|
250
|
+
export { isDarkerBackground_3 as isDarkerBackground };
|
|
247
251
|
const label_3: string;
|
|
248
252
|
export { label_3 as label };
|
|
249
253
|
const labelEmptyValue_3: string;
|
|
@@ -288,6 +292,8 @@ export namespace Skin_Customized {
|
|
|
288
292
|
export { placeHolder_4 as placeHolder };
|
|
289
293
|
const placeHolderColor_4: string;
|
|
290
294
|
export { placeHolderColor_4 as placeHolderColor };
|
|
295
|
+
const isDarkerBackground_4: boolean;
|
|
296
|
+
export { isDarkerBackground_4 as isDarkerBackground };
|
|
291
297
|
const margin_3: string;
|
|
292
298
|
export { margin_3 as margin };
|
|
293
299
|
}
|
|
@@ -320,6 +326,8 @@ export namespace Disabled_Required {
|
|
|
320
326
|
export { placeHolder_5 as placeHolder };
|
|
321
327
|
const placeHolderColor_5: string;
|
|
322
328
|
export { placeHolderColor_5 as placeHolderColor };
|
|
329
|
+
const isDarkerBackground_5: boolean;
|
|
330
|
+
export { isDarkerBackground_5 as isDarkerBackground };
|
|
323
331
|
const margin_4: string;
|
|
324
332
|
export { margin_4 as margin };
|
|
325
333
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default WeeksPicker;
|
|
2
|
-
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, allowedWeekRange, restrictToRange, }: {
|
|
2
|
+
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, isDarkerBackground, allowedWeekRange, restrictToRange, }: {
|
|
3
3
|
label: any;
|
|
4
4
|
disabled: any;
|
|
5
5
|
borderColor: any;
|
|
@@ -15,6 +15,7 @@ declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, t
|
|
|
15
15
|
withMarginBottom?: boolean;
|
|
16
16
|
onChange: any;
|
|
17
17
|
selectedValue: any;
|
|
18
|
+
isDarkerBackground?: boolean;
|
|
18
19
|
allowedWeekRange?: any;
|
|
19
20
|
restrictToRange?: boolean;
|
|
20
21
|
}): import("react/jsx-runtime").JSX.Element;
|