@scalably/ui 0.7.13 → 0.8.0
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.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +97 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +97 -15
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -832,6 +832,8 @@ type BaseProps = {
|
|
|
832
832
|
containerClassName?: string;
|
|
833
833
|
placeholder?: string;
|
|
834
834
|
autoWidth?: boolean;
|
|
835
|
+
/** Additional classes for the internal DatePicker surface. */
|
|
836
|
+
datePickerClassName?: string;
|
|
835
837
|
format?: (value: Date | {
|
|
836
838
|
from: Date | null;
|
|
837
839
|
to: Date | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -832,6 +832,8 @@ type BaseProps = {
|
|
|
832
832
|
containerClassName?: string;
|
|
833
833
|
placeholder?: string;
|
|
834
834
|
autoWidth?: boolean;
|
|
835
|
+
/** Additional classes for the internal DatePicker surface. */
|
|
836
|
+
datePickerClassName?: string;
|
|
835
837
|
format?: (value: Date | {
|
|
836
838
|
from: Date | null;
|
|
837
839
|
to: Date | null;
|