@ceed/ads 1.41.1 → 1.41.3-next.1
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/components/inputs/DatePicker.md +1 -1
- package/dist/components/inputs/DateRangePicker.md +1 -1
- package/dist/index.browser.js +8 -8
- package/dist/index.browser.js.map +4 -4
- package/dist/index.cjs +30 -56
- package/dist/index.js +30 -56
- package/framer/index.js +1 -1
- package/package.json +7 -4
|
@@ -653,7 +653,7 @@ When `displayFormat` contains `MMM` or `MMMM`, the input becomes **read-only** a
|
|
|
653
653
|
// → "4월 09, 2026"
|
|
654
654
|
```
|
|
655
655
|
|
|
656
|
-
> **Note**: DatePicker also accepts all Input props (e.g., `size`, `variant`, `color`, `startDecorator`, `placeholder`, `sx`).
|
|
656
|
+
> **Note**: DatePicker also accepts all Input props (e.g., `size`, `variant`, `color`, `startDecorator`, `placeholder`, `sx`). `sx` and `className` are applied to the root element, so layout styles like `width` work as expected when DatePicker is a direct flex child.
|
|
657
657
|
|
|
658
658
|
## Accessibility
|
|
659
659
|
|
|
@@ -763,7 +763,7 @@ When `displayFormat` contains `MMM` or `MMMM`, the input becomes **read-only** a
|
|
|
763
763
|
// → "Apr 01, 2026 - Apr 09, 2026"
|
|
764
764
|
```
|
|
765
765
|
|
|
766
|
-
> **Note**: DateRangePicker also accepts all Input props (e.g., `size`, `variant`, `color`, `sx`).
|
|
766
|
+
> **Note**: DateRangePicker also accepts all Input props (e.g., `size`, `variant`, `color`, `sx`). `sx` and `className` are applied to the root element, so layout styles like `width` work as expected when DateRangePicker is a direct flex child.
|
|
767
767
|
|
|
768
768
|
## Accessibility
|
|
769
769
|
|