@yamada-ui/react 2.0.10-dev-20260301101758 → 2.1.0-dev-20260302125757
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/cjs/components/accordion/accordion.cjs +8 -9
- package/dist/cjs/components/accordion/accordion.cjs.map +1 -1
- package/dist/cjs/components/accordion/accordion.style.cjs +11 -37
- package/dist/cjs/components/accordion/accordion.style.cjs.map +1 -1
- package/dist/cjs/components/accordion/use-accordion.cjs +7 -2
- package/dist/cjs/components/accordion/use-accordion.cjs.map +1 -1
- package/dist/cjs/components/autocomplete/autocomplete.cjs +2 -2
- package/dist/cjs/components/button/button-group.cjs +1 -1
- package/dist/cjs/components/chart/area-chart.cjs +41 -0
- package/dist/cjs/components/chart/area-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/area-chart.namespace.cjs +31 -0
- package/dist/cjs/components/chart/area-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/area-chart.style.cjs +12 -0
- package/dist/cjs/components/chart/area-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/bar-chart.cjs +41 -0
- package/dist/cjs/components/chart/bar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/bar-chart.namespace.cjs +30 -0
- package/dist/cjs/components/chart/bar-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/bar-chart.style.cjs +14 -0
- package/dist/cjs/components/chart/bar-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/cartesian-chart.cjs +637 -0
- package/dist/cjs/components/chart/cartesian-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/cartesian-chart.style.cjs +123 -0
- package/dist/cjs/components/chart/cartesian-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/chart.cjs +233 -0
- package/dist/cjs/components/chart/chart.cjs.map +1 -0
- package/dist/cjs/components/chart/chart.style.cjs +119 -0
- package/dist/cjs/components/chart/chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/donut-chart.cjs +45 -0
- package/dist/cjs/components/chart/donut-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/donut-chart.namespace.cjs +27 -0
- package/dist/cjs/components/chart/donut-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/donut-chart.style.cjs +10 -0
- package/dist/cjs/components/chart/donut-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/index.cjs +134 -0
- package/dist/cjs/components/chart/line-chart.cjs +41 -0
- package/dist/cjs/components/chart/line-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/line-chart.namespace.cjs +30 -0
- package/dist/cjs/components/chart/line-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/line-chart.style.cjs +12 -0
- package/dist/cjs/components/chart/line-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/pie-chart.cjs +45 -0
- package/dist/cjs/components/chart/pie-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/pie-chart.namespace.cjs +27 -0
- package/dist/cjs/components/chart/pie-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/pie-chart.style.cjs +12 -0
- package/dist/cjs/components/chart/pie-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/polar-chart.cjs +659 -0
- package/dist/cjs/components/chart/polar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/polar-chart.style.cjs +150 -0
- package/dist/cjs/components/chart/polar-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/radar-chart.cjs +44 -0
- package/dist/cjs/components/chart/radar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/radar-chart.namespace.cjs +30 -0
- package/dist/cjs/components/chart/radar-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/radar-chart.style.cjs +12 -0
- package/dist/cjs/components/chart/radar-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/radial-chart.cjs +57 -0
- package/dist/cjs/components/chart/radial-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/radial-chart.namespace.cjs +30 -0
- package/dist/cjs/components/chart/radial-chart.namespace.cjs.map +1 -0
- package/dist/cjs/components/chart/radial-chart.style.cjs +15 -0
- package/dist/cjs/components/chart/radial-chart.style.cjs.map +1 -0
- package/dist/cjs/components/chart/use-area-chart.cjs +41 -0
- package/dist/cjs/components/chart/use-area-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-bar-chart.cjs +41 -0
- package/dist/cjs/components/chart/use-bar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-cartesian-chart.cjs +592 -0
- package/dist/cjs/components/chart/use-cartesian-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-chart.cjs +253 -0
- package/dist/cjs/components/chart/use-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-line-chart.cjs +41 -0
- package/dist/cjs/components/chart/use-line-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-pie-chart.cjs +43 -0
- package/dist/cjs/components/chart/use-pie-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-polar-chart.cjs +716 -0
- package/dist/cjs/components/chart/use-polar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-radar-chart.cjs +45 -0
- package/dist/cjs/components/chart/use-radar-chart.cjs.map +1 -0
- package/dist/cjs/components/chart/use-radial-chart.cjs +63 -0
- package/dist/cjs/components/chart/use-radial-chart.cjs.map +1 -0
- package/dist/cjs/components/checkbox/checkbox.style.cjs +18 -0
- package/dist/cjs/components/checkbox/checkbox.style.cjs.map +1 -1
- package/dist/cjs/components/checkbox-card/checkbox-card.style.cjs +18 -0
- package/dist/cjs/components/checkbox-card/checkbox-card.style.cjs.map +1 -1
- package/dist/cjs/components/color-picker/color-picker.cjs +2 -2
- package/dist/cjs/components/date-picker/date-picker.cjs +2 -2
- package/dist/cjs/components/dropzone/dropzone.style.cjs +18 -0
- package/dist/cjs/components/dropzone/dropzone.style.cjs.map +1 -1
- package/dist/cjs/components/editable/editable.style.cjs +36 -0
- package/dist/cjs/components/editable/editable.style.cjs.map +1 -1
- package/dist/cjs/components/field/field.cjs +28 -15
- package/dist/cjs/components/field/field.cjs.map +1 -1
- package/dist/cjs/components/field/use-field-props.cjs +12 -1
- package/dist/cjs/components/field/use-field-props.cjs.map +1 -1
- package/dist/cjs/components/fieldset/fieldset.cjs +12 -2
- package/dist/cjs/components/fieldset/fieldset.cjs.map +1 -1
- package/dist/cjs/components/fieldset/fieldset.style.cjs +1 -1
- package/dist/cjs/components/fieldset/fieldset.style.cjs.map +1 -1
- package/dist/cjs/components/file-button/file-button.cjs +2 -2
- package/dist/cjs/components/file-button/use-file-button.cjs +2 -5
- package/dist/cjs/components/file-button/use-file-button.cjs.map +1 -1
- package/dist/cjs/components/file-input/use-file-input.cjs +7 -2
- package/dist/cjs/components/file-input/use-file-input.cjs.map +1 -1
- package/dist/cjs/components/form/form.cjs +136 -0
- package/dist/cjs/components/form/form.cjs.map +1 -0
- package/dist/cjs/components/form/form.style.cjs +108 -0
- package/dist/cjs/components/form/form.style.cjs.map +1 -0
- package/dist/cjs/components/form/index.cjs +23 -0
- package/dist/cjs/components/form/namespace.cjs +25 -0
- package/dist/cjs/components/form/namespace.cjs.map +1 -0
- package/dist/cjs/components/input/input-group.cjs +2 -2
- package/dist/cjs/components/input/input.style.cjs +36 -0
- package/dist/cjs/components/input/input.style.cjs.map +1 -1
- package/dist/cjs/components/loading/oval.cjs +2 -3
- package/dist/cjs/components/loading/oval.cjs.map +1 -1
- package/dist/cjs/components/modal/modal.cjs +2 -2
- package/dist/cjs/components/native-accordion/index.cjs +23 -0
- package/dist/cjs/components/native-accordion/namespace.cjs +22 -0
- package/dist/cjs/components/native-accordion/namespace.cjs.map +1 -0
- package/dist/cjs/components/native-accordion/native-accordion.cjs +102 -0
- package/dist/cjs/components/native-accordion/native-accordion.cjs.map +1 -0
- package/dist/cjs/components/native-accordion/native-accordion.style.cjs +69 -0
- package/dist/cjs/components/native-accordion/native-accordion.style.cjs.map +1 -0
- package/dist/cjs/components/native-accordion/use-native-accordion.cjs +61 -0
- package/dist/cjs/components/native-accordion/use-native-accordion.cjs.map +1 -0
- package/dist/cjs/components/native-popover/index.cjs +23 -0
- package/dist/cjs/components/native-popover/namespace.cjs +25 -0
- package/dist/cjs/components/native-popover/namespace.cjs.map +1 -0
- package/dist/cjs/components/native-popover/native-popover.cjs +99 -0
- package/dist/cjs/components/native-popover/native-popover.cjs.map +1 -0
- package/dist/cjs/components/native-popover/native-popover.style.cjs +67 -0
- package/dist/cjs/components/native-popover/native-popover.style.cjs.map +1 -0
- package/dist/cjs/components/native-popover/use-native-popover.cjs +119 -0
- package/dist/cjs/components/native-popover/use-native-popover.cjs.map +1 -0
- package/dist/cjs/components/native-select/native-select.cjs +2 -2
- package/dist/cjs/components/number-input/number-input.cjs +2 -2
- package/dist/cjs/components/number-input/number-input.style.cjs +2 -2
- package/dist/cjs/components/password-input/password-input.cjs +2 -2
- package/dist/cjs/components/password-input/password-input.style.cjs +2 -2
- package/dist/cjs/components/pin-input/pin-input.cjs +2 -2
- package/dist/cjs/components/popover/index.cjs +1 -0
- package/dist/cjs/components/popover/namespace.cjs +1 -0
- package/dist/cjs/components/popover/namespace.cjs.map +1 -1
- package/dist/cjs/components/popover/popover.cjs +12 -4
- package/dist/cjs/components/popover/popover.cjs.map +1 -1
- package/dist/cjs/components/popover/popover.style.cjs +4 -54
- package/dist/cjs/components/popover/popover.style.cjs.map +1 -1
- package/dist/cjs/components/popover/use-popover.cjs +16 -9
- package/dist/cjs/components/popover/use-popover.cjs.map +1 -1
- package/dist/cjs/components/qr-code/index.cjs +19 -0
- package/dist/cjs/components/qr-code/namespace.cjs +21 -0
- package/dist/cjs/components/qr-code/namespace.cjs.map +1 -0
- package/dist/cjs/components/qr-code/qr-code.cjs +66 -0
- package/dist/cjs/components/qr-code/qr-code.cjs.map +1 -0
- package/dist/cjs/components/qr-code/qr-code.style.cjs +48 -0
- package/dist/cjs/components/qr-code/qr-code.style.cjs.map +1 -0
- package/dist/cjs/components/qr-code/use-qr-code.cjs +67 -0
- package/dist/cjs/components/qr-code/use-qr-code.cjs.map +1 -0
- package/dist/cjs/components/radio/radio.style.cjs +18 -0
- package/dist/cjs/components/radio/radio.style.cjs.map +1 -1
- package/dist/cjs/components/radio-card/radio-card.style.cjs +21 -1
- package/dist/cjs/components/radio-card/radio-card.style.cjs.map +1 -1
- package/dist/cjs/components/rating/rating.style.cjs +19 -1
- package/dist/cjs/components/rating/rating.style.cjs.map +1 -1
- package/dist/cjs/components/resizable/index.cjs +3 -0
- package/dist/cjs/components/resizable/namespace.cjs +2 -0
- package/dist/cjs/components/resizable/namespace.cjs.map +1 -1
- package/dist/cjs/components/resizable/resizable.cjs +12 -12
- package/dist/cjs/components/resizable/resizable.cjs.map +1 -1
- package/dist/cjs/components/resizable/resizable.style.cjs +1 -2
- package/dist/cjs/components/resizable/resizable.style.cjs.map +1 -1
- package/dist/cjs/components/resizable/use-resizable.cjs +56 -89
- package/dist/cjs/components/resizable/use-resizable.cjs.map +1 -1
- package/dist/cjs/components/select/select.cjs +2 -2
- package/dist/cjs/components/slider/slider.style.cjs +18 -0
- package/dist/cjs/components/slider/slider.style.cjs.map +1 -1
- package/dist/cjs/components/tip/index.cjs +3 -0
- package/dist/cjs/components/tip/tip.cjs +53 -0
- package/dist/cjs/components/tip/tip.cjs.map +1 -0
- package/dist/cjs/components/toggle/toggle.cjs +2 -2
- package/dist/cjs/components/tooltip/index.cjs +2 -0
- package/dist/cjs/components/tooltip/use-tooltip.cjs +23 -3
- package/dist/cjs/components/tooltip/use-tooltip.cjs.map +1 -1
- package/dist/cjs/core/components/create-component.cjs +8 -4
- package/dist/cjs/core/components/create-component.cjs.map +1 -1
- package/dist/cjs/core/components/use-component-style.cjs +54 -14
- package/dist/cjs/core/components/use-component-style.cjs.map +1 -1
- package/dist/cjs/core/css/at-rule.cjs +3 -2
- package/dist/cjs/core/css/at-rule.cjs.map +1 -1
- package/dist/cjs/core/css/color-mix.cjs +5 -2
- package/dist/cjs/core/css/color-mix.cjs.map +1 -1
- package/dist/cjs/core/css/conditions.cjs +6 -0
- package/dist/cjs/core/css/conditions.cjs.map +1 -1
- package/dist/cjs/core/css/styles.cjs +13 -3
- package/dist/cjs/core/css/styles.cjs.map +1 -1
- package/dist/cjs/core/css/use-css.cjs +5 -4
- package/dist/cjs/core/css/use-css.cjs.map +1 -1
- package/dist/cjs/core/system/styled.cjs +4 -3
- package/dist/cjs/core/system/styled.cjs.map +1 -1
- package/dist/cjs/core/system/var.cjs +2 -1
- package/dist/cjs/core/system/var.cjs.map +1 -1
- package/dist/cjs/index.cjs +524 -171
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/theme/styles/reset-style.cjs +1 -0
- package/dist/cjs/theme/styles/reset-style.cjs.map +1 -1
- package/dist/cjs/utils/children.cjs +9 -1
- package/dist/cjs/utils/children.cjs.map +1 -1
- package/dist/esm/components/accordion/accordion.js +8 -9
- package/dist/esm/components/accordion/accordion.js.map +1 -1
- package/dist/esm/components/accordion/accordion.style.js +11 -37
- package/dist/esm/components/accordion/accordion.style.js.map +1 -1
- package/dist/esm/components/accordion/use-accordion.js +7 -2
- package/dist/esm/components/accordion/use-accordion.js.map +1 -1
- package/dist/esm/components/autocomplete/autocomplete.js +2 -2
- package/dist/esm/components/button/button-group.js +1 -1
- package/dist/esm/components/chart/area-chart.js +38 -0
- package/dist/esm/components/chart/area-chart.js.map +1 -0
- package/dist/esm/components/chart/area-chart.namespace.js +26 -0
- package/dist/esm/components/chart/area-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/area-chart.style.js +12 -0
- package/dist/esm/components/chart/area-chart.style.js.map +1 -0
- package/dist/esm/components/chart/bar-chart.js +38 -0
- package/dist/esm/components/chart/bar-chart.js.map +1 -0
- package/dist/esm/components/chart/bar-chart.namespace.js +25 -0
- package/dist/esm/components/chart/bar-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/bar-chart.style.js +14 -0
- package/dist/esm/components/chart/bar-chart.style.js.map +1 -0
- package/dist/esm/components/chart/cartesian-chart.js +629 -0
- package/dist/esm/components/chart/cartesian-chart.js.map +1 -0
- package/dist/esm/components/chart/cartesian-chart.style.js +123 -0
- package/dist/esm/components/chart/cartesian-chart.style.js.map +1 -0
- package/dist/esm/components/chart/chart.js +222 -0
- package/dist/esm/components/chart/chart.js.map +1 -0
- package/dist/esm/components/chart/chart.style.js +119 -0
- package/dist/esm/components/chart/chart.style.js.map +1 -0
- package/dist/esm/components/chart/donut-chart.js +42 -0
- package/dist/esm/components/chart/donut-chart.js.map +1 -0
- package/dist/esm/components/chart/donut-chart.namespace.js +22 -0
- package/dist/esm/components/chart/donut-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/donut-chart.style.js +10 -0
- package/dist/esm/components/chart/donut-chart.style.js.map +1 -0
- package/dist/esm/components/chart/index.js +31 -0
- package/dist/esm/components/chart/line-chart.js +38 -0
- package/dist/esm/components/chart/line-chart.js.map +1 -0
- package/dist/esm/components/chart/line-chart.namespace.js +25 -0
- package/dist/esm/components/chart/line-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/line-chart.style.js +12 -0
- package/dist/esm/components/chart/line-chart.style.js.map +1 -0
- package/dist/esm/components/chart/pie-chart.js +42 -0
- package/dist/esm/components/chart/pie-chart.js.map +1 -0
- package/dist/esm/components/chart/pie-chart.namespace.js +22 -0
- package/dist/esm/components/chart/pie-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/pie-chart.style.js +12 -0
- package/dist/esm/components/chart/pie-chart.style.js.map +1 -0
- package/dist/esm/components/chart/polar-chart.js +651 -0
- package/dist/esm/components/chart/polar-chart.js.map +1 -0
- package/dist/esm/components/chart/polar-chart.style.js +150 -0
- package/dist/esm/components/chart/polar-chart.style.js.map +1 -0
- package/dist/esm/components/chart/radar-chart.js +41 -0
- package/dist/esm/components/chart/radar-chart.js.map +1 -0
- package/dist/esm/components/chart/radar-chart.namespace.js +25 -0
- package/dist/esm/components/chart/radar-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/radar-chart.style.js +12 -0
- package/dist/esm/components/chart/radar-chart.style.js.map +1 -0
- package/dist/esm/components/chart/radial-chart.js +54 -0
- package/dist/esm/components/chart/radial-chart.js.map +1 -0
- package/dist/esm/components/chart/radial-chart.namespace.js +25 -0
- package/dist/esm/components/chart/radial-chart.namespace.js.map +1 -0
- package/dist/esm/components/chart/radial-chart.style.js +15 -0
- package/dist/esm/components/chart/radial-chart.style.js.map +1 -0
- package/dist/esm/components/chart/use-area-chart.js +40 -0
- package/dist/esm/components/chart/use-area-chart.js.map +1 -0
- package/dist/esm/components/chart/use-bar-chart.js +40 -0
- package/dist/esm/components/chart/use-bar-chart.js.map +1 -0
- package/dist/esm/components/chart/use-cartesian-chart.js +585 -0
- package/dist/esm/components/chart/use-cartesian-chart.js.map +1 -0
- package/dist/esm/components/chart/use-chart.js +246 -0
- package/dist/esm/components/chart/use-chart.js.map +1 -0
- package/dist/esm/components/chart/use-line-chart.js +40 -0
- package/dist/esm/components/chart/use-line-chart.js.map +1 -0
- package/dist/esm/components/chart/use-pie-chart.js +42 -0
- package/dist/esm/components/chart/use-pie-chart.js.map +1 -0
- package/dist/esm/components/chart/use-polar-chart.js +707 -0
- package/dist/esm/components/chart/use-polar-chart.js.map +1 -0
- package/dist/esm/components/chart/use-radar-chart.js +44 -0
- package/dist/esm/components/chart/use-radar-chart.js.map +1 -0
- package/dist/esm/components/chart/use-radial-chart.js +62 -0
- package/dist/esm/components/chart/use-radial-chart.js.map +1 -0
- package/dist/esm/components/checkbox/checkbox.style.js +18 -0
- package/dist/esm/components/checkbox/checkbox.style.js.map +1 -1
- package/dist/esm/components/checkbox-card/checkbox-card.style.js +18 -0
- package/dist/esm/components/checkbox-card/checkbox-card.style.js.map +1 -1
- package/dist/esm/components/color-picker/color-picker.js +2 -2
- package/dist/esm/components/date-picker/date-picker.js +2 -2
- package/dist/esm/components/dropzone/dropzone.style.js +18 -0
- package/dist/esm/components/dropzone/dropzone.style.js.map +1 -1
- package/dist/esm/components/editable/editable.style.js +36 -0
- package/dist/esm/components/editable/editable.style.js.map +1 -1
- package/dist/esm/components/field/field.js +28 -15
- package/dist/esm/components/field/field.js.map +1 -1
- package/dist/esm/components/field/use-field-props.js +12 -1
- package/dist/esm/components/field/use-field-props.js.map +1 -1
- package/dist/esm/components/fieldset/fieldset.js +12 -2
- package/dist/esm/components/fieldset/fieldset.js.map +1 -1
- package/dist/esm/components/fieldset/fieldset.style.js +1 -1
- package/dist/esm/components/fieldset/fieldset.style.js.map +1 -1
- package/dist/esm/components/file-button/file-button.js +2 -2
- package/dist/esm/components/file-button/use-file-button.js +2 -5
- package/dist/esm/components/file-button/use-file-button.js.map +1 -1
- package/dist/esm/components/file-input/use-file-input.js +7 -2
- package/dist/esm/components/file-input/use-file-input.js.map +1 -1
- package/dist/esm/components/form/form.js +124 -0
- package/dist/esm/components/form/form.js.map +1 -0
- package/dist/esm/components/form/form.style.js +108 -0
- package/dist/esm/components/form/form.style.js.map +1 -0
- package/dist/esm/components/form/index.js +5 -0
- package/dist/esm/components/form/namespace.js +20 -0
- package/dist/esm/components/form/namespace.js.map +1 -0
- package/dist/esm/components/input/input-group.js +2 -2
- package/dist/esm/components/input/input.style.js +36 -0
- package/dist/esm/components/input/input.style.js.map +1 -1
- package/dist/esm/components/loading/oval.js +2 -3
- package/dist/esm/components/loading/oval.js.map +1 -1
- package/dist/esm/components/modal/modal.js +2 -2
- package/dist/esm/components/native-accordion/index.js +6 -0
- package/dist/esm/components/native-accordion/namespace.js +17 -0
- package/dist/esm/components/native-accordion/namespace.js.map +1 -0
- package/dist/esm/components/native-accordion/native-accordion.js +95 -0
- package/dist/esm/components/native-accordion/native-accordion.js.map +1 -0
- package/dist/esm/components/native-accordion/native-accordion.style.js +69 -0
- package/dist/esm/components/native-accordion/native-accordion.style.js.map +1 -0
- package/dist/esm/components/native-accordion/use-native-accordion.js +57 -0
- package/dist/esm/components/native-accordion/use-native-accordion.js.map +1 -0
- package/dist/esm/components/native-popover/index.js +6 -0
- package/dist/esm/components/native-popover/namespace.js +20 -0
- package/dist/esm/components/native-popover/namespace.js.map +1 -0
- package/dist/esm/components/native-popover/native-popover.js +89 -0
- package/dist/esm/components/native-popover/native-popover.js.map +1 -0
- package/dist/esm/components/native-popover/native-popover.style.js +67 -0
- package/dist/esm/components/native-popover/native-popover.style.js.map +1 -0
- package/dist/esm/components/native-popover/use-native-popover.js +118 -0
- package/dist/esm/components/native-popover/use-native-popover.js.map +1 -0
- package/dist/esm/components/native-select/native-select.js +2 -2
- package/dist/esm/components/number-input/number-input.js +2 -2
- package/dist/esm/components/number-input/number-input.style.js +2 -2
- package/dist/esm/components/password-input/password-input.js +2 -2
- package/dist/esm/components/password-input/password-input.style.js +2 -2
- package/dist/esm/components/pin-input/pin-input.js +2 -2
- package/dist/esm/components/popover/index.js +2 -2
- package/dist/esm/components/popover/namespace.js +2 -1
- package/dist/esm/components/popover/namespace.js.map +1 -1
- package/dist/esm/components/popover/popover.js +12 -5
- package/dist/esm/components/popover/popover.js.map +1 -1
- package/dist/esm/components/popover/popover.style.js +4 -54
- package/dist/esm/components/popover/popover.style.js.map +1 -1
- package/dist/esm/components/popover/use-popover.js +16 -9
- package/dist/esm/components/popover/use-popover.js.map +1 -1
- package/dist/esm/components/qr-code/index.js +6 -0
- package/dist/esm/components/qr-code/namespace.js +16 -0
- package/dist/esm/components/qr-code/namespace.js.map +1 -0
- package/dist/esm/components/qr-code/qr-code.js +60 -0
- package/dist/esm/components/qr-code/qr-code.js.map +1 -0
- package/dist/esm/components/qr-code/qr-code.style.js +48 -0
- package/dist/esm/components/qr-code/qr-code.style.js.map +1 -0
- package/dist/esm/components/qr-code/use-qr-code.js +66 -0
- package/dist/esm/components/qr-code/use-qr-code.js.map +1 -0
- package/dist/esm/components/radio/radio.style.js +18 -0
- package/dist/esm/components/radio/radio.style.js.map +1 -1
- package/dist/esm/components/radio-card/radio-card.style.js +21 -1
- package/dist/esm/components/radio-card/radio-card.style.js.map +1 -1
- package/dist/esm/components/rating/rating.style.js +19 -1
- package/dist/esm/components/rating/rating.style.js.map +1 -1
- package/dist/esm/components/resizable/index.js +2 -2
- package/dist/esm/components/resizable/namespace.js +2 -1
- package/dist/esm/components/resizable/namespace.js.map +1 -1
- package/dist/esm/components/resizable/resizable.js +13 -13
- package/dist/esm/components/resizable/resizable.js.map +1 -1
- package/dist/esm/components/resizable/resizable.style.js +1 -2
- package/dist/esm/components/resizable/resizable.style.js.map +1 -1
- package/dist/esm/components/resizable/use-resizable.js +60 -93
- package/dist/esm/components/resizable/use-resizable.js.map +1 -1
- package/dist/esm/components/select/select.js +2 -2
- package/dist/esm/components/slider/slider.style.js +18 -0
- package/dist/esm/components/slider/slider.style.js.map +1 -1
- package/dist/esm/components/tip/index.js +3 -0
- package/dist/esm/components/tip/tip.js +52 -0
- package/dist/esm/components/tip/tip.js.map +1 -0
- package/dist/esm/components/toggle/toggle.js +2 -2
- package/dist/esm/components/tooltip/index.js +2 -2
- package/dist/esm/components/tooltip/use-tooltip.js +22 -4
- package/dist/esm/components/tooltip/use-tooltip.js.map +1 -1
- package/dist/esm/core/components/create-component.js +8 -4
- package/dist/esm/core/components/create-component.js.map +1 -1
- package/dist/esm/core/components/use-component-style.js +54 -14
- package/dist/esm/core/components/use-component-style.js.map +1 -1
- package/dist/esm/core/css/at-rule.js +3 -2
- package/dist/esm/core/css/at-rule.js.map +1 -1
- package/dist/esm/core/css/color-mix.js +5 -2
- package/dist/esm/core/css/color-mix.js.map +1 -1
- package/dist/esm/core/css/conditions.js +6 -0
- package/dist/esm/core/css/conditions.js.map +1 -1
- package/dist/esm/core/css/styles.js +13 -3
- package/dist/esm/core/css/styles.js.map +1 -1
- package/dist/esm/core/css/use-css.js +5 -4
- package/dist/esm/core/css/use-css.js.map +1 -1
- package/dist/esm/core/system/styled.js +4 -3
- package/dist/esm/core/system/styled.js.map +1 -1
- package/dist/esm/core/system/var.js +2 -1
- package/dist/esm/core/system/var.js.map +1 -1
- package/dist/esm/index.js +258 -84
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/theme/styles/reset-style.js +1 -0
- package/dist/esm/theme/styles/reset-style.js.map +1 -1
- package/dist/esm/utils/children.js +9 -1
- package/dist/esm/utils/children.js.map +1 -1
- package/dist/types/components/accordion/accordion.d.ts +3 -6
- package/dist/types/components/accordion/use-accordion.d.ts +11 -11
- package/dist/types/components/airy/airy.d.ts +2 -2
- package/dist/types/components/alert/alert.d.ts +2 -2
- package/dist/types/components/alpha-slider/alpha-slider.d.ts +2 -2
- package/dist/types/components/aspect-ratio/aspect-ratio.d.ts +2 -2
- package/dist/types/components/autocomplete/autocomplete.d.ts +2 -2
- package/dist/types/components/autocomplete/autocomplete.style.d.ts +13 -1
- package/dist/types/components/autocomplete/use-autocomplete.d.ts +5 -5
- package/dist/types/components/avatar/avatar.d.ts +6 -6
- package/dist/types/components/avatar/avatar.style.d.ts +1 -1
- package/dist/types/components/avatar/use-avatar-group.d.ts +2 -2
- package/dist/types/components/badge/badge.d.ts +2 -2
- package/dist/types/components/bleed/bleed.d.ts +2 -2
- package/dist/types/components/blockquote/blockquote.d.ts +2 -2
- package/dist/types/components/breadcrumb/breadcrumb.d.ts +2 -2
- package/dist/types/components/breadcrumb/breadcrumb.style.d.ts +1 -1
- package/dist/types/components/breadcrumb/use-breadcrumb.d.ts +2 -2
- package/dist/types/components/button/button.d.ts +2 -2
- package/dist/types/components/button/icon-button.d.ts +2 -2
- package/dist/types/components/calendar/calendar.d.ts +2 -2
- package/dist/types/components/calendar/calendar.style.d.ts +2 -2
- package/dist/types/components/calendar/use-calendar.d.ts +8 -8
- package/dist/types/components/card/card.d.ts +2 -2
- package/dist/types/components/carousel/carousel.d.ts +2 -2
- package/dist/types/components/carousel/carousel.style.d.ts +2 -2
- package/dist/types/components/carousel/use-carousel.d.ts +3 -3
- package/dist/types/components/center/center.d.ts +2 -2
- package/dist/types/components/chart/area-chart.d.ts +34 -0
- package/dist/types/components/chart/area-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/area-chart.style.d.ts +10 -0
- package/dist/types/components/chart/bar-chart.d.ts +34 -0
- package/dist/types/components/chart/bar-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/bar-chart.style.d.ts +10 -0
- package/dist/types/components/chart/cartesian-chart.d.ts +311 -0
- package/dist/types/components/chart/cartesian-chart.style.d.ts +10 -0
- package/dist/types/components/chart/chart.d.ts +148 -0
- package/dist/types/components/chart/chart.style.d.ts +36 -0
- package/dist/types/components/chart/donut-chart.d.ts +34 -0
- package/dist/types/components/chart/donut-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/donut-chart.style.d.ts +10 -0
- package/dist/types/components/chart/index.d.ts +30 -0
- package/dist/types/components/chart/line-chart.d.ts +34 -0
- package/dist/types/components/chart/line-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/line-chart.style.d.ts +10 -0
- package/dist/types/components/chart/pie-chart.d.ts +34 -0
- package/dist/types/components/chart/pie-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/pie-chart.style.d.ts +10 -0
- package/dist/types/components/chart/polar-chart.d.ts +401 -0
- package/dist/types/components/chart/polar-chart.style.d.ts +10 -0
- package/dist/types/components/chart/radar-chart.d.ts +34 -0
- package/dist/types/components/chart/radar-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/radar-chart.style.d.ts +10 -0
- package/dist/types/components/chart/radial-chart.d.ts +34 -0
- package/dist/types/components/chart/radial-chart.namespace.d.ts +11 -0
- package/dist/types/components/chart/radial-chart.style.d.ts +10 -0
- package/dist/types/components/chart/use-area-chart.d.ts +29 -0
- package/dist/types/components/chart/use-bar-chart.d.ts +29 -0
- package/dist/types/components/chart/use-cartesian-chart.d.ts +238 -0
- package/dist/types/components/chart/use-chart.d.ts +117 -0
- package/dist/types/components/chart/use-line-chart.d.ts +29 -0
- package/dist/types/components/chart/use-pie-chart.d.ts +30 -0
- package/dist/types/components/chart/use-polar-chart.d.ts +330 -0
- package/dist/types/components/chart/use-radar-chart.d.ts +31 -0
- package/dist/types/components/chart/use-radial-chart.d.ts +40 -0
- package/dist/types/components/checkbox/checkbox.d.ts +5 -5
- package/dist/types/components/checkbox/use-checkbox-group.d.ts +2 -2
- package/dist/types/components/checkbox-card/checkbox-card.d.ts +23 -5
- package/dist/types/components/checkbox-card/checkbox-card.style.d.ts +6 -0
- package/dist/types/components/circle-progress/circle-progress.d.ts +2 -2
- package/dist/types/components/close-button/close-button.d.ts +2 -2
- package/dist/types/components/code/code.d.ts +2 -2
- package/dist/types/components/collapse/collapse.d.ts +2 -2
- package/dist/types/components/color-picker/color-picker.d.ts +2 -2
- package/dist/types/components/color-picker/color-picker.style.d.ts +12 -0
- package/dist/types/components/color-picker/use-color-picker.d.ts +2 -2
- package/dist/types/components/color-selector/color-selector.d.ts +2 -2
- package/dist/types/components/color-selector/use-color-selector.d.ts +3 -3
- package/dist/types/components/color-swatch/color-swatch.d.ts +2 -2
- package/dist/types/components/container/container.d.ts +2 -2
- package/dist/types/components/data-list/data-list.d.ts +2 -2
- package/dist/types/components/date-picker/date-picker.d.ts +2 -2
- package/dist/types/components/date-picker/date-picker.style.d.ts +13 -1
- package/dist/types/components/date-picker/use-date-picker.d.ts +4 -4
- package/dist/types/components/drawer/drawer.d.ts +2 -2
- package/dist/types/components/drawer/drawer.style.d.ts +2 -2
- package/dist/types/components/dropzone/dropzone.d.ts +8 -2
- package/dist/types/components/dropzone/dropzone.style.d.ts +6 -0
- package/dist/types/components/editable/editable.d.ts +2 -2
- package/dist/types/components/editable/use-editable.d.ts +2 -2
- package/dist/types/components/em/em.d.ts +2 -2
- package/dist/types/components/empty-state/empty-state.d.ts +2 -2
- package/dist/types/components/fade/fade.d.ts +2 -2
- package/dist/types/components/field/field.d.ts +7 -3
- package/dist/types/components/field/field.style.d.ts +2 -2
- package/dist/types/components/field/use-field-props.d.ts +7 -4
- package/dist/types/components/fieldset/fieldset.d.ts +3 -3
- package/dist/types/components/fieldset/fieldset.style.d.ts +4 -2
- package/dist/types/components/file-button/file-button.d.ts +2 -2
- package/dist/types/components/file-button/use-file-button.d.ts +17 -17
- package/dist/types/components/file-input/file-input.d.ts +2 -2
- package/dist/types/components/file-input/file-input.style.d.ts +12 -0
- package/dist/types/components/file-input/use-file-input.d.ts +17 -17
- package/dist/types/components/flex/flex.d.ts +2 -2
- package/dist/types/components/flip/flip.d.ts +2 -2
- package/dist/types/components/float/float.d.ts +2 -2
- package/dist/types/components/form/form.d.ts +129 -0
- package/dist/types/components/form/form.style.d.ts +107 -0
- package/dist/types/components/form/index.d.ts +4 -0
- package/dist/types/components/form/namespace.d.ts +9 -0
- package/dist/types/components/format/format-byte.d.ts +2 -2
- package/dist/types/components/format/format-date-time.d.ts +2 -2
- package/dist/types/components/format/format-number.d.ts +2 -2
- package/dist/types/components/grid/grid-item.d.ts +2 -2
- package/dist/types/components/grid/grid.d.ts +2 -2
- package/dist/types/components/group/group.d.ts +2 -2
- package/dist/types/components/group/use-group.d.ts +2 -2
- package/dist/types/components/heading/heading.d.ts +2 -2
- package/dist/types/components/hue-slider/hue-slider.d.ts +3 -3
- package/dist/types/components/icon/icon.d.ts +4 -4
- package/dist/types/components/image/image.d.ts +2 -2
- package/dist/types/components/indicator/indicator.d.ts +2 -2
- package/dist/types/components/infinite-scroll-area/infinite-scroll-area.d.ts +2 -2
- package/dist/types/components/input/input-addon.d.ts +2 -2
- package/dist/types/components/input/input-element.d.ts +2 -2
- package/dist/types/components/input/input.d.ts +2 -2
- package/dist/types/components/input/input.style.d.ts +12 -0
- package/dist/types/components/kbd/kbd.d.ts +2 -2
- package/dist/types/components/link/link.d.ts +2 -2
- package/dist/types/components/link-box/link-box.d.ts +2 -2
- package/dist/types/components/list/list.d.ts +2 -2
- package/dist/types/components/loading/loading-provider.d.ts +2 -2
- package/dist/types/components/loading/loading.d.ts +3 -3
- package/dist/types/components/mark/mark.d.ts +2 -2
- package/dist/types/components/menu/menu.d.ts +2 -2
- package/dist/types/components/menu/menu.style.d.ts +2 -2
- package/dist/types/components/menu/use-menu.d.ts +11 -11
- package/dist/types/components/modal/modal.d.ts +2 -2
- package/dist/types/components/modal/modal.style.d.ts +2 -2
- package/dist/types/components/native-accordion/index.d.ts +5 -0
- package/dist/types/components/native-accordion/namespace.d.ts +9 -0
- package/dist/types/components/native-accordion/native-accordion.d.ts +59 -0
- package/dist/types/components/native-accordion/native-accordion.style.d.ts +58 -0
- package/dist/types/components/native-accordion/use-native-accordion.d.ts +50 -0
- package/dist/types/components/native-popover/index.d.ts +5 -0
- package/dist/types/components/native-popover/namespace.d.ts +9 -0
- package/dist/types/components/native-popover/native-popover.d.ts +35 -0
- package/dist/types/components/native-popover/native-popover.style.d.ts +39 -0
- package/dist/types/components/native-popover/use-native-popover.d.ts +75 -0
- package/dist/types/components/native-select/native-select.d.ts +2 -2
- package/dist/types/components/native-select/native-select.style.d.ts +12 -0
- package/dist/types/components/native-table/native-table.d.ts +2 -2
- package/dist/types/components/notice/notice.style.d.ts +1 -1
- package/dist/types/components/number-input/number-input.d.ts +2 -2
- package/dist/types/components/number-input/number-input.style.d.ts +12 -0
- package/dist/types/components/pagination/pagination.d.ts +2 -2
- package/dist/types/components/pagination/use-pagination.d.ts +2 -2
- package/dist/types/components/password-input/password-input.d.ts +2 -2
- package/dist/types/components/password-input/password-input.style.d.ts +12 -0
- package/dist/types/components/password-input/strength-meter.d.ts +2 -2
- package/dist/types/components/password-input/use-password-input.d.ts +2 -2
- package/dist/types/components/pin-input/pin-input.d.ts +2 -2
- package/dist/types/components/pin-input/pin-input.style.d.ts +12 -0
- package/dist/types/components/pin-input/use-pin-input.d.ts +7 -7
- package/dist/types/components/popover/index.d.ts +2 -2
- package/dist/types/components/popover/namespace.d.ts +2 -2
- package/dist/types/components/popover/popover.d.ts +5 -9
- package/dist/types/components/popover/use-popover.d.ts +1 -0
- package/dist/types/components/progress/progress.d.ts +2 -2
- package/dist/types/components/progress/use-progress.d.ts +706 -706
- package/dist/types/components/qr-code/index.d.ts +5 -0
- package/dist/types/components/qr-code/namespace.d.ts +9 -0
- package/dist/types/components/qr-code/qr-code.d.ts +35 -0
- package/dist/types/components/qr-code/qr-code.style.d.ts +56 -0
- package/dist/types/components/qr-code/use-qr-code.d.ts +94 -0
- package/dist/types/components/radio/radio.d.ts +5 -5
- package/dist/types/components/radio/use-radio-group.d.ts +2 -2
- package/dist/types/components/radio-card/radio-card.d.ts +29 -5
- package/dist/types/components/radio-card/radio-card.style.d.ts +8 -0
- package/dist/types/components/rating/rating.style.d.ts +2 -2
- package/dist/types/components/rating/use-rating.d.ts +7 -7
- package/dist/types/components/reorder/reorder.d.ts +2 -2
- package/dist/types/components/reorder/use-reorder.d.ts +3 -3
- package/dist/types/components/resizable/index.d.ts +2 -2
- package/dist/types/components/resizable/namespace.d.ts +2 -2
- package/dist/types/components/resizable/resizable.d.ts +5 -10
- package/dist/types/components/resizable/resizable.style.d.ts +0 -3
- package/dist/types/components/resizable/use-resizable.d.ts +20 -146
- package/dist/types/components/ripple/ripple.d.ts +2 -2
- package/dist/types/components/ripple/use-ripple.d.ts +2 -2
- package/dist/types/components/rotate/rotate.d.ts +2 -2
- package/dist/types/components/saturation-slider/saturation-slider.d.ts +2 -2
- package/dist/types/components/saturation-slider/use-saturation-slider.d.ts +2 -2
- package/dist/types/components/scroll-area/scroll-area.d.ts +2 -2
- package/dist/types/components/segmented-control/segmented-control.d.ts +2 -2
- package/dist/types/components/segmented-control/segmented-control.style.d.ts +2 -2
- package/dist/types/components/segmented-control/use-segmented-control.d.ts +9 -9
- package/dist/types/components/select/select.d.ts +2 -2
- package/dist/types/components/select/select.style.d.ts +13 -1
- package/dist/types/components/select/use-select.d.ts +4 -4
- package/dist/types/components/separator/separator.d.ts +2 -2
- package/dist/types/components/simple-grid/simple-grid.d.ts +2 -2
- package/dist/types/components/skeleton/skeleton.d.ts +2 -2
- package/dist/types/components/slide/slide.d.ts +2 -2
- package/dist/types/components/slide-fade/slide-fade.d.ts +2 -2
- package/dist/types/components/slider/slider.d.ts +2 -2
- package/dist/types/components/slider/slider.style.d.ts +10 -0
- package/dist/types/components/slider/use-slider.d.ts +2 -2
- package/dist/types/components/stack/h-stack.d.ts +2 -2
- package/dist/types/components/stack/stack.d.ts +2 -2
- package/dist/types/components/stack/v-stack.d.ts +2 -2
- package/dist/types/components/stack/z-stack.d.ts +2 -2
- package/dist/types/components/stat/stat.d.ts +2 -2
- package/dist/types/components/stat/stat.style.d.ts +2 -2
- package/dist/types/components/status/status.d.ts +2 -2
- package/dist/types/components/steps/steps.d.ts +2 -2
- package/dist/types/components/steps/steps.style.d.ts +1 -1
- package/dist/types/components/steps/use-steps.d.ts +10 -10
- package/dist/types/components/switch/switch.d.ts +2 -2
- package/dist/types/components/table/table.d.ts +2 -2
- package/dist/types/components/tabs/tabs.d.ts +2 -2
- package/dist/types/components/tabs/tabs.style.d.ts +1 -1
- package/dist/types/components/tabs/use-tabs.d.ts +16 -16
- package/dist/types/components/tag/tag.d.ts +2 -2
- package/dist/types/components/tag/tag.style.d.ts +1 -1
- package/dist/types/components/text/text.d.ts +2 -2
- package/dist/types/components/textarea/textarea.d.ts +2 -2
- package/dist/types/components/textarea/textarea.style.d.ts +12 -0
- package/dist/types/components/textarea/use-autosize.d.ts +2 -2
- package/dist/types/components/timeline/timeline.d.ts +5 -5
- package/dist/types/components/timeline/timeline.style.d.ts +2 -2
- package/dist/types/components/tip/index.d.ts +2 -0
- package/dist/types/components/tip/tip.d.ts +30 -0
- package/dist/types/components/toggle/toggle.d.ts +6 -6
- package/dist/types/components/toggle/use-toggle-group.d.ts +2 -2
- package/dist/types/components/toggle/use-toggle.d.ts +2 -2
- package/dist/types/components/tooltip/index.d.ts +2 -2
- package/dist/types/components/tooltip/tooltip.d.ts +2 -2
- package/dist/types/components/tooltip/use-tooltip.d.ts +4 -1
- package/dist/types/components/visually-hidden/visually-hidden.d.ts +2 -2
- package/dist/types/components/wrap/wrap.d.ts +2 -2
- package/dist/types/core/components/create-component.d.ts +9 -9
- package/dist/types/core/components/use-component-style.d.ts +1 -0
- package/dist/types/core/css/conditions.d.ts +53 -5
- package/dist/types/core/css/index.d.ts +2 -2
- package/dist/types/core/css/index.types.d.ts +78 -1
- package/dist/types/core/css/styles.d.ts +44 -111
- package/dist/types/core/css/use-css.d.ts +2 -2
- package/dist/types/core/index.d.ts +2 -2
- package/dist/types/core/system/color-mode-provider.d.ts +2 -2
- package/dist/types/core/system/styled.d.ts +3 -2
- package/dist/types/core/system/system-provider.d.ts +2 -2
- package/dist/types/hooks/use-breakpoint/use-breakpoint-state.d.ts +2 -2
- package/dist/types/hooks/use-clickable/index.d.ts +9 -9
- package/dist/types/hooks/use-clipboard/index.d.ts +2 -2
- package/dist/types/hooks/use-combobox/index.d.ts +12 -12
- package/dist/types/hooks/use-counter/index.d.ts +2 -2
- package/dist/types/hooks/use-descendants/index.d.ts +2 -2
- package/dist/types/hooks/use-field-sizing/index.d.ts +2 -2
- package/dist/types/hooks/use-hover/index.d.ts +2 -2
- package/dist/types/hooks/use-popper/index.d.ts +2 -2
- package/dist/types/hooks/use-resize-observer/index.d.ts +3 -3
- package/dist/types/index.d.ts +85 -34
- package/dist/types/providers/i18n-provider/i18n-provider.d.ts +3 -3
- package/dist/types/providers/ui-provider/ui-provider.d.ts +2 -2
- package/dist/types/utils/children.d.ts +4 -4
- package/package.json +5 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cartesian-chart.js","names":["props"],"sources":["../../../../src/components/chart/cartesian-chart.tsx"],"sourcesContent":["\"use client\"\n\nimport type { ReactElement, ReactNode } from \"react\"\nimport type {\n ActiveDotProps,\n DotProps,\n LabelListProps,\n LabelProps,\n} from \"recharts\"\nimport type {\n XAxisTickContentProps,\n YAxisTickContentProps,\n} from \"recharts/types/util/types\"\nimport type {\n CSSObject,\n CSSProps,\n GenericsComponent,\n HTMLProps,\n HTMLStyledProps,\n ThemeProps,\n} from \"../../core\"\nimport type { Dict, Merge } from \"../../utils\"\nimport type { CartesianChartStyle } from \"./cartesian-chart.style\"\nimport type {\n ChartActiveDot,\n ChartDot,\n ChartLabel,\n ChartLabelList,\n ChartProps,\n ChartTickLine,\n} from \"./chart\"\nimport type {\n UseChartAreaProps,\n UseChartBarProps,\n UseChartGridProps,\n UseChartLineProps,\n UseChartReferenceLineProps,\n UseChartXAxisProps,\n UseChartYAxisProps,\n} from \"./use-cartesian-chart\"\nimport { cloneElement, isValidElement, useId, useMemo } from \"react\"\nimport {\n Area,\n Bar,\n CartesianGrid,\n Line,\n ReferenceLine,\n XAxis,\n YAxis,\n} from \"recharts\"\nimport {\n createShouldForwardProp,\n createSlotComponent,\n getCSS,\n styled,\n useSystem,\n useTheme,\n varAttr,\n} from \"../../core\"\nimport { cx, isFunction, isObject, splitObject } from \"../../utils\"\nimport { cartesianChartStyle } from \"./cartesian-chart.style\"\nimport { Chart, useChartComponentContext } from \"./chart\"\nimport {\n useChartArea,\n useChartBar,\n useChartGrid,\n useChartLine,\n useChartReferenceLine,\n useChartXAxis,\n useChartYAxis,\n} from \"./use-cartesian-chart\"\n\nconst shouldForwardProp = createShouldForwardProp()\n\ninterface ComponentContext extends Pick<\n CartesianChartProps,\n | \"areaProps\"\n | \"barProps\"\n | \"gridProps\"\n | \"lineProps\"\n | \"referenceLineProps\"\n | \"xAxisProps\"\n | \"yAxisProps\"\n> {}\n\nexport interface CartesianChartProps<Y extends Dict = Dict>\n extends ChartProps<Y>, ThemeProps<CartesianChartStyle> {\n /**\n * The fill color of the active dots.\n */\n activeDotFill?: CSSProps[\"fill\"]\n /**\n * The radius of the active dots.\n */\n activeDotRadius?: CSSProps[\"r\"]\n /**\n * The stroke color of the active dots.\n */\n activeDotStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the active dots.\n */\n activeDotStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The fill opacity of the area.\n */\n areaFillOpacity?: CSSProps[\"fillOpacity\"]\n /**\n * The fill color of the dots.\n */\n dotFill?: CSSProps[\"fill\"]\n /**\n * The radius of the dots.\n */\n dotRadius?: CSSProps[\"r\"]\n /**\n * The stroke color of the dots.\n */\n dotStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the dots.\n */\n dotStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The stroke color of the grid.\n */\n gridStroke?: CSSProps[\"stroke\"]\n /**\n * The opacity of the inactive lines.\n */\n inactiveLineOpacity?: CSSProps[\"opacity\"]\n /**\n * The color of the lines.\n */\n lineColor?: CSSProps[\"color\"]\n /**\n * The stroke color of the lines.\n */\n lineStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the lines.\n */\n lineStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The color of the reference lines.\n */\n referenceLineColor?: CSSProps[\"color\"]\n /**\n * The stroke color of the reference lines.\n */\n referenceLineStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the reference lines.\n */\n referenceLineStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The text color of the reference lines.\n */\n referenceLineTextColor?: CSSProps[\"color\"]\n /**\n * The text fill color of the reference lines.\n */\n referenceLineTextFill?: CSSProps[\"fill\"]\n /**\n * If `true`, grid is visible.\n *\n * @default true\n */\n withGrid?: boolean\n /**\n * If `true`, X axis is visible.\n *\n * @default true\n */\n withXAxis?: boolean\n /**\n * If `true`, Y axis is visible.\n *\n * @default false\n */\n withYAxis?: boolean\n /**\n * The stroke color of the x-axis lines.\n */\n xAxisLineStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the x-axis lines.\n */\n xAxisLineStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The text color of the x-axis.\n */\n xAxisTextColor?: CSSProps[\"color\"]\n /**\n * The text fill color of the x-axis.\n */\n xAxisTextFill?: CSSProps[\"fill\"]\n /**\n * The stroke color of the y-axis lines.\n */\n yAxisLineStroke?: CSSProps[\"stroke\"]\n /**\n * The stroke width of the y-axis lines.\n */\n yAxisLineStrokeWidth?: CSSProps[\"strokeWidth\"]\n /**\n * The text color of the y-axis.\n */\n yAxisTextColor?: CSSProps[\"color\"]\n /**\n * The text fill color of the y-axis.\n */\n yAxisTextFill?: CSSProps[\"fill\"]\n /**\n * Props for the area component.\n */\n areaProps?: Omit<ChartAreaProps, \"data\" | \"dataKey\">\n /**\n * Props for the bar component.\n */\n barProps?: Omit<ChartBarProps, \"dataKey\">\n /**\n * Props for the grid component.\n */\n gridProps?: ChartGridProps\n /**\n * Props for the line component.\n */\n lineProps?: Omit<ChartLineProps, \"data\" | \"dataKey\">\n /**\n * Props for the reference line component.\n */\n referenceLineProps?: ChartReferenceLineProps\n /**\n * Props for the x axis component.\n */\n xAxisProps?: ChartXAxisProps\n /**\n * Props for the y axis component.\n */\n yAxisProps?: ChartYAxisProps\n}\n\nconst {\n ComponentContext,\n PropsContext: CartesianChartPropsContext,\n useComponentContext,\n usePropsContext: useCartesianChartPropsContext,\n withContext,\n withProvider,\n useSlotComponentProps,\n} = createSlotComponent<\n CartesianChartProps,\n CartesianChartStyle,\n ComponentContext\n>(\"cartesian-chart\", cartesianChartStyle)\n\nexport { CartesianChartPropsContext, useCartesianChartPropsContext }\n\nexport const CartesianChart = withProvider(\n <Y extends Dict>({\n components: componentsProp,\n withGrid = true,\n withXAxis = true,\n withYAxis = false,\n areaProps,\n barProps,\n gridProps,\n lineProps,\n referenceLineProps,\n xAxisProps,\n yAxisProps,\n ...rest\n }: CartesianChartProps<Y>) => {\n const components = useMemo(\n () => [\n {\n component: ChartGrid,\n fallback: withGrid ? <ChartGrid /> : null,\n },\n {\n component: ChartXAxis,\n fallback: <ChartXAxis hide={!withXAxis} />,\n },\n {\n component: ChartYAxis,\n fallback: <ChartYAxis hide={!withYAxis} />,\n },\n ...componentsProp,\n ],\n [componentsProp, withGrid, withXAxis, withYAxis],\n )\n const componentContext = useMemo(\n () => ({\n areaProps,\n barProps,\n gridProps,\n lineProps,\n referenceLineProps,\n xAxisProps,\n yAxisProps,\n }),\n [\n areaProps,\n barProps,\n gridProps,\n lineProps,\n referenceLineProps,\n xAxisProps,\n yAxisProps,\n ],\n )\n\n return (\n <ComponentContext value={componentContext}>\n <Chart components={components} {...rest} />\n </ComponentContext>\n )\n },\n \"root\",\n)(\n undefined,\n ({\n activeDotFill,\n activeDotRadius,\n activeDotStroke,\n activeDotStrokeWidth,\n areaFillOpacity,\n dotFill,\n dotRadius,\n dotStroke,\n dotStrokeWidth,\n gridStroke,\n inactiveLineOpacity,\n lineColor,\n lineStroke,\n lineStrokeWidth,\n referenceLineColor,\n referenceLineStroke,\n referenceLineStrokeWidth,\n referenceLineTextColor,\n referenceLineTextFill,\n xAxisLineStroke,\n xAxisLineStrokeWidth,\n xAxisTextColor,\n xAxisTextFill,\n yAxisLineStroke,\n yAxisLineStrokeWidth,\n yAxisTextColor,\n yAxisTextFill,\n ...rest\n }) => ({\n \"--active-dot-fill\": varAttr(activeDotFill, \"colors\"),\n \"--active-dot-r\": activeDotRadius,\n \"--active-dot-stroke\": varAttr(activeDotStroke, \"colors\"),\n \"--active-dot-stroke-width\": activeDotStrokeWidth,\n \"--area-fill-opacity\": areaFillOpacity,\n \"--dot-fill\": varAttr(dotFill, \"colors\"),\n \"--dot-r\": dotRadius,\n \"--dot-stroke\": varAttr(dotStroke, \"colors\"),\n \"--dot-stroke-width\": dotStrokeWidth,\n \"--grid-stroke\": varAttr(gridStroke, \"colors\"),\n \"--inactive-line-opacity\": inactiveLineOpacity,\n \"--line-color\": varAttr(lineColor, \"colors\"),\n \"--line-stroke\": varAttr(lineStroke, \"colors\"),\n \"--line-stroke-width\": lineStrokeWidth,\n \"--reference-line-color\": varAttr(referenceLineColor, \"colors\"),\n \"--reference-line-stroke\": varAttr(referenceLineStroke, \"colors\"),\n \"--reference-line-stroke-width\": referenceLineStrokeWidth,\n \"--reference-line-text-color\": varAttr(referenceLineTextColor, \"colors\"),\n \"--reference-line-text-fill\": varAttr(referenceLineTextFill, \"colors\"),\n \"--x-axis-line-stroke\": varAttr(xAxisLineStroke, \"colors\"),\n \"--x-axis-line-stroke-width\": xAxisLineStrokeWidth,\n \"--x-axis-text-color\": varAttr(xAxisTextColor, \"colors\"),\n \"--x-axis-text-fill\": varAttr(xAxisTextFill, \"colors\"),\n \"--y-axis-line-stroke\": varAttr(yAxisLineStroke, \"colors\"),\n \"--y-axis-line-stroke-width\": yAxisLineStrokeWidth,\n \"--y-axis-text-color\": varAttr(yAxisTextColor, \"colors\"),\n \"--y-axis-text-fill\": varAttr(yAxisTextFill, \"colors\"),\n ...rest,\n }),\n) as GenericsComponent<{\n <Y extends Dict>(props: CartesianChartProps<Y>): ReactElement\n}>\n\nexport type ChartXAxisTick =\n | ((props: XAxisTickContentProps) => ReactNode)\n | boolean\n | HTMLStyledProps<\"text\">\n | ReactElement\n\nexport interface ChartXAxisProps extends Merge<\n HTMLStyledProps<\"svg\">,\n Omit<UseChartXAxisProps, \"label\" | \"tick\" | \"tickLine\">\n> {\n /**\n * The label to use for the axis.\n *\n * @default false\n */\n label?: ChartLabel\n /**\n * The tick to use for the axis.\n *\n * @default true\n */\n tick?: ChartXAxisTick\n /**\n * The tick line to use for the axis.\n *\n * @default false\n */\n tickLine?: ChartTickLine\n}\n\nexport const ChartXAxis = withContext<\"svg\", ChartXAxisProps>((props) => {\n const { xAxisProps } = useComponentContext()\n const {\n children,\n label: labelProp = false,\n tick: tickProp = true,\n tickLine: tickLineProp = false,\n ...rest\n } = { ...xAxisProps, ...props }\n const system = useSystem()\n const { theme } = useTheme()\n const tickProps = useSlotComponentProps({}, \"xAxisTick\")\n const labelProps = useSlotComponentProps({}, \"xAxisLabel\")\n const tickLineProps = useSlotComponentProps({}, \"xAxisTickLine\")\n const tick = useMemo<UseChartXAxisProps[\"tick\"]>(() => {\n if (!tickProp) return tickProp\n\n const css = getCSS(system, theme)\n const className = cx(tickProps.className, css(tickProps.css))\n\n if (isFunction(tickProp)) {\n return (props) =>\n tickProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(tickProp)) {\n return cloneElement<any>(tickProp, { className })\n } else if (isObject(tickProp)) {\n const [omittedProps, styleProps] = splitObject<\n HTMLProps<\"text\">,\n CSSObject\n >(tickProp, shouldForwardProp)\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, tickProp, tickProps.className, tickProps.css])\n const tickLine = useMemo<UseChartXAxisProps[\"tickLine\"]>(() => {\n if (!tickLineProp) return tickLineProp\n\n const css = getCSS(system, theme)\n const className = cx(tickLineProps.className, css(tickLineProps.css))\n\n if (isObject(tickLineProp)) {\n const [omittedProps, styleProps] = splitObject<\n HTMLProps<\"line\">,\n CSSObject\n >(tickLineProp, shouldForwardProp)\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, tickLineProp, tickLineProps.className, tickLineProps.css])\n const label = useMemo<UseChartXAxisProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className, children: labelProp }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getRootProps, getXAxisProps } = useChartXAxis({\n label,\n tick,\n tickLine,\n ...rest,\n })\n\n return (\n <styled.svg asChild {...getRootProps()}>\n <XAxis {...getXAxisProps()}>{children}</XAxis>\n </styled.svg>\n )\n}, \"xAxis\")()\n\nexport type ChartYAxisTick =\n | ((props: YAxisTickContentProps) => ReactNode)\n | boolean\n | HTMLStyledProps<\"text\">\n | ReactElement\n\nexport interface ChartYAxisProps extends Merge<\n HTMLStyledProps<\"svg\">,\n Omit<UseChartYAxisProps, \"label\" | \"tick\" | \"tickLine\">\n> {\n /**\n * The label to use for the axis.\n *\n * @default false\n */\n label?: ChartLabel\n /**\n * The tick to use for the axis.\n *\n * @default true\n */\n tick?: ChartYAxisTick\n /**\n * The tick line to use for the axis.\n *\n * @default false\n */\n tickLine?: ChartTickLine\n}\n\nexport const ChartYAxis = withContext<\"svg\", ChartYAxisProps>((props) => {\n const { yAxisProps } = useComponentContext()\n const {\n children,\n label: labelProp = false,\n tick: tickProp = true,\n tickLine: tickLineProp = false,\n ...rest\n } = { ...yAxisProps, ...props }\n const system = useSystem()\n const { theme } = useTheme()\n const tickProps = useSlotComponentProps({}, \"yAxisTick\")\n const labelProps = useSlotComponentProps({}, \"yAxisLabel\")\n const tickLineProps = useSlotComponentProps({}, \"yAxisTickLine\")\n const tick = useMemo<UseChartYAxisProps[\"tick\"]>(() => {\n if (!tickProp) return tickProp\n\n const css = getCSS(system, theme)\n const className = cx(tickProps.className, css(tickProps.css))\n\n if (isFunction(tickProp)) {\n return (props) =>\n tickProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(tickProp)) {\n return cloneElement<any>(tickProp, { className })\n } else if (isObject(tickProp)) {\n const [omittedProps, styleProps] = splitObject<\n HTMLProps<\"text\">,\n CSSObject\n >(tickProp, shouldForwardProp)\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, tickProp, tickProps.className, tickProps.css])\n const tickLine = useMemo<UseChartXAxisProps[\"tickLine\"]>(() => {\n if (!tickLineProp) return tickLineProp\n\n const css = getCSS(system, theme)\n const className = cx(tickLineProps.className, css(tickLineProps.css))\n\n if (isObject(tickLineProp)) {\n const [omittedProps, styleProps] = splitObject<\n HTMLProps<\"line\">,\n CSSObject\n >(tickLineProp, shouldForwardProp)\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, tickLineProp, tickLineProps.className, tickLineProps.css])\n const label = useMemo<UseChartYAxisProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className, children: labelProp }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getRootProps, getYAxisProps } = useChartYAxis({\n label,\n tick,\n tickLine,\n ...rest,\n })\n\n return (\n <styled.svg asChild {...getRootProps()}>\n <YAxis {...getYAxisProps()}>{children}</YAxis>\n </styled.svg>\n )\n}, \"yAxis\")()\n\nexport interface ChartGridProps extends Merge<\n HTMLStyledProps<\"line\">,\n UseChartGridProps\n> {}\n\nexport const ChartGrid = withContext<\"line\", ChartGridProps>((props) => {\n const { gridProps } = useComponentContext()\n const { getGridProps, getRootProps } = useChartGrid({\n ...gridProps,\n ...props,\n })\n\n return (\n <styled.line asChild {...getRootProps()}>\n <CartesianGrid {...getGridProps()} />\n </styled.line>\n )\n}, \"grid\")()\n\nexport interface ChartLineProps<Y extends Dict = Dict> extends Merge<\n HTMLStyledProps<\"line\">,\n Omit<UseChartLineProps, \"activeDot\" | \"data\" | \"dataKey\" | \"dot\" | \"label\">\n> {\n /**\n * The key of a group of data which should be unique in an chart.\n */\n dataKey: keyof Y\n /**\n * The active dot to use for the line.\n *\n * @default true\n */\n activeDot?: ChartActiveDot\n /**\n * The data to use for the line.\n */\n data?: Y[]\n /**\n * The dot to use for the line.\n *\n * @default false\n */\n dot?: ChartDot\n /**\n * The label list to use for the line.\n *\n * @default false\n */\n label?: ChartLabelList\n}\n\nexport const ChartLine = withContext<\"line\", ChartLineProps>((props) => {\n const { lineProps } = useComponentContext()\n const {\n activeDot: activeDotProp = true,\n children,\n dataKey,\n dot: dotProp = false,\n label: labelProp = false,\n ...rest\n } = { ...lineProps, ...props }\n const system = useSystem()\n const { theme } = useTheme()\n const { varMap } = useChartComponentContext()\n const color = varMap[dataKey.toString()] ?? rest.stroke ?? rest.color\n const dotProps = useSlotComponentProps({}, \"dot\")\n const activeDotProps = useSlotComponentProps({}, \"activeDot\")\n const labelProps = useSlotComponentProps({}, \"labelList\")\n const dot = useMemo<UseChartLineProps[\"dot\"]>(() => {\n if (!dotProp) return dotProp\n\n const css = getCSS(system, theme)\n const className = cx(\n dotProps.className,\n css(dotProps.css),\n css({ fill: color, stroke: color }),\n )\n\n if (isFunction(dotProp)) {\n return (props) =>\n dotProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(dotProp)) {\n return cloneElement<any>(dotProp, { className })\n } else if (isObject(dotProp)) {\n const [omittedProps, styleProps] = splitObject<DotProps, CSSObject>(\n dotProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [dotProp, system, theme, dotProps.className, dotProps.css, color])\n const activeDot = useMemo<UseChartLineProps[\"activeDot\"]>(() => {\n if (!activeDotProp) return activeDotProp\n\n const css = getCSS(system, theme)\n const className = cx(\n activeDotProps.className,\n css(activeDotProps.css),\n css({ fill: color, stroke: color }),\n )\n\n if (isFunction(activeDotProp)) {\n return (props) =>\n activeDotProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(activeDotProp)) {\n return cloneElement<any>(activeDotProp, { className })\n } else if (isObject(activeDotProp)) {\n const [omittedProps, styleProps] = splitObject<ActiveDotProps, CSSObject>(\n activeDotProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [\n activeDotProp,\n system,\n theme,\n activeDotProps.className,\n activeDotProps.css,\n color,\n ])\n const label = useMemo<UseChartLineProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelListProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getLineProps, getRootProps } = useChartLine({\n activeDot,\n dataKey,\n dot,\n label,\n stroke: color,\n ...rest,\n })\n\n return (\n <styled.line asChild {...getRootProps()}>\n <Line {...getLineProps()}>{children}</Line>\n </styled.line>\n )\n}, \"line\")() as GenericsComponent<{\n <Y extends Dict>(props: ChartLineProps<Y>): ReactElement\n}>\n\nexport interface ChartAreaProps<Y extends Dict = Dict> extends Merge<\n HTMLStyledProps<\"line\">,\n Omit<UseChartAreaProps, \"activeDot\" | \"data\" | \"dataKey\" | \"dot\" | \"label\">\n> {\n /**\n * The key of a group of data which should be unique in an chart.\n */\n dataKey: keyof Y\n /**\n * The active dot to use for the line.\n *\n * @default true\n */\n activeDot?: ChartActiveDot\n /**\n * The data to use for the area.\n */\n data?: Y[]\n /**\n * The dot to use for the line.\n *\n * @default false\n */\n dot?: ChartDot\n /**\n * The label list to use for the line.\n *\n * @default false\n */\n label?: ChartLabelList\n /**\n * Determines whether the chart area should be represented with a gradient instead of the solid color.\n */\n withGradient?: boolean\n}\n\nexport const ChartArea = withContext<\"line\", ChartAreaProps>((props) => {\n const { areaProps } = useComponentContext()\n const {\n activeDot: activeDotProp = true,\n children,\n dataKey,\n dot: dotProp = false,\n label: labelProp = false,\n withGradient,\n ...rest\n } = { ...areaProps, ...props }\n const id = useId()\n const system = useSystem()\n const { theme } = useTheme()\n const { varMap } = useChartComponentContext()\n const color = varMap[dataKey.toString()] ?? rest.stroke ?? rest.color\n const dotProps = useSlotComponentProps({}, \"dot\")\n const activeDotProps = useSlotComponentProps({}, \"activeDot\")\n const labelProps = useSlotComponentProps({}, \"labelList\")\n const dot = useMemo<UseChartLineProps[\"dot\"]>(() => {\n if (!dotProp) return dotProp\n\n const css = getCSS(system, theme)\n const className = cx(\n dotProps.className,\n css(dotProps.css),\n css({ fill: color, stroke: color }),\n )\n\n if (isFunction(dotProp)) {\n return (props) =>\n dotProp({\n ...props,\n className: cx(className, props.className),\n })\n } else if (isValidElement(dotProp)) {\n return cloneElement<any>(dotProp, {\n className,\n })\n } else if (isObject(dotProp)) {\n const [omittedProps, styleProps] = splitObject<DotProps, CSSObject>(\n dotProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [dotProp, system, theme, dotProps.className, dotProps.css, color])\n const activeDot = useMemo<UseChartLineProps[\"activeDot\"]>(() => {\n if (!activeDotProp) return activeDotProp\n\n const css = getCSS(system, theme)\n const className = cx(\n activeDotProps.className,\n css(activeDotProps.css),\n css({ fill: color, stroke: color }),\n )\n\n if (isFunction(activeDotProp)) {\n return (props) =>\n activeDotProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(activeDotProp)) {\n return cloneElement<any>(activeDotProp, { className })\n } else if (isObject(activeDotProp)) {\n const [omittedProps, styleProps] = splitObject<ActiveDotProps, CSSObject>(\n activeDotProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [\n activeDotProp,\n system,\n theme,\n activeDotProps.className,\n activeDotProps.css,\n color,\n ])\n const label = useMemo<UseChartLineProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelListProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getAreaProps, getRootProps } = useChartArea({\n activeDot,\n dataKey,\n dot,\n fill: color ? `url(#${id})` : \"\",\n label,\n stroke: color,\n ...rest,\n })\n\n return (\n <>\n <styled.line asChild {...getRootProps()}>\n <Area {...getAreaProps()}>{children}</Area>\n </styled.line>\n\n <defs>\n {withGradient ? (\n <linearGradient id={id} x1=\"0\" x2=\"0\" y1=\"0\" y2=\"1\">\n <styled.stop asChild stopColor={color} stopOpacity={0.8}>\n <stop offset=\"5%\" />\n </styled.stop>\n <styled.stop asChild stopColor={color} stopOpacity={0.1}>\n <stop offset=\"95%\" />\n </styled.stop>\n </linearGradient>\n ) : (\n <linearGradient id={id} x1=\"0\" x2=\"0\" y1=\"0\" y2=\"1\">\n <styled.stop stopColor={color} stopOpacity={0.4} />\n </linearGradient>\n )}\n </defs>\n </>\n )\n}, \"area\")() as GenericsComponent<{\n <Y extends Dict>(props: ChartAreaProps<Y>): ReactElement\n}>\n\nexport interface ChartBarProps<Y extends Dict = Dict> extends Merge<\n HTMLStyledProps<\"path\">,\n Omit<UseChartBarProps, \"dataKey\" | \"label\">\n> {\n /**\n * The key of a group of data which should be unique in an chart.\n */\n dataKey: keyof Y\n /**\n * The label list to use for the bar.\n *\n * @default false\n */\n label?: ChartLabelList\n}\n\nexport const ChartBar = withContext<\"path\", ChartBarProps>((props) => {\n const { barProps } = useComponentContext()\n const {\n children,\n dataKey,\n label: labelProp = false,\n ...rest\n } = { ...barProps, ...props }\n const system = useSystem()\n const { theme } = useTheme()\n const { varMap } = useChartComponentContext()\n const color = varMap[dataKey.toString()]\n const labelProps = useSlotComponentProps({}, \"labelList\")\n const label = useMemo<UseChartBarProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelListProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getBarProps, getRootProps } = useChartBar({\n dataKey,\n fill: color,\n label,\n stroke: color,\n ...rest,\n })\n\n return (\n <styled.path asChild {...getRootProps()}>\n <Bar {...getBarProps()}>{children}</Bar>\n </styled.path>\n )\n}, \"bar\")() as GenericsComponent<{\n <Y extends Dict>(props: ChartBarProps<Y>): ReactElement\n}>\n\nexport interface ChartReferenceLineProps extends Omit<\n Merge<HTMLStyledProps<\"line\">, UseChartReferenceLineProps>,\n \"label\"\n> {\n /**\n * The label to use for the reference line.\n *\n * @default false\n */\n label?: ChartLabel\n}\n\nexport const ChartReferenceLine = withContext<\"line\", ChartReferenceLineProps>(\n (props) => {\n const { referenceLineProps } = useComponentContext()\n const { label: labelProp = false, ...rest } = {\n ...referenceLineProps,\n ...props,\n }\n const system = useSystem()\n const { theme } = useTheme()\n const labelProps = useSlotComponentProps({}, \"referenceLineLabel\")\n const label = useMemo<UseChartReferenceLineProps[\"label\"]>(() => {\n if (!labelProp) return labelProp\n\n const css = getCSS(system, theme)\n const className = cx(labelProps.className, css(labelProps.css))\n\n if (isFunction(labelProp)) {\n return (props) =>\n labelProp({ ...props, className: cx(className, props.className) })\n } else if (isValidElement(labelProp)) {\n return cloneElement<any>(labelProp, { className })\n } else if (isObject(labelProp)) {\n const [omittedProps, styleProps] = splitObject<LabelProps, CSSObject>(\n labelProp,\n shouldForwardProp,\n )\n\n return {\n ...omittedProps,\n className: cx(className, omittedProps.className, css(styleProps)),\n }\n } else {\n return { className, children: labelProp }\n }\n }, [system, theme, labelProp, labelProps.className, labelProps.css])\n const { getReferenceLineProps, getRootProps } = useChartReferenceLine({\n label,\n ...rest,\n })\n\n return (\n <styled.line asChild {...getRootProps()}>\n <ReferenceLine {...getReferenceLineProps()} />\n </styled.line>\n )\n },\n \"referenceLine\",\n)()\n"],"mappings":"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"}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { defineComponentSlotStyle } from "../../core/system/config.js";
|
|
2
|
+
import "../../core/index.js";
|
|
3
|
+
import { chartStyle } from "./chart.style.js";
|
|
4
|
+
|
|
5
|
+
//#region src/components/chart/cartesian-chart.style.ts
|
|
6
|
+
const cartesianChartStyle = defineComponentSlotStyle({ base: {
|
|
7
|
+
activeDot: {
|
|
8
|
+
fill: "{active-dot-fill}",
|
|
9
|
+
r: "{active-dot-r}",
|
|
10
|
+
stroke: "{active-dot-stroke}",
|
|
11
|
+
strokeWidth: "{active-dot-stroke-width}"
|
|
12
|
+
},
|
|
13
|
+
area: {
|
|
14
|
+
"&:has(path[data-inactive])": { opacity: "{inactive-line-opacity}" },
|
|
15
|
+
color: "{line-color}",
|
|
16
|
+
fill: "{line-stroke}",
|
|
17
|
+
fillOpacity: "{area-fill-opacity}",
|
|
18
|
+
stroke: "{line-stroke}",
|
|
19
|
+
strokeWidth: "{line-stroke-width}"
|
|
20
|
+
},
|
|
21
|
+
bar: {
|
|
22
|
+
"&:has(path[data-inactive])": { opacity: "{inactive-line-opacity}" },
|
|
23
|
+
color: "{line-color}",
|
|
24
|
+
fill: "{line-stroke}",
|
|
25
|
+
stroke: "{line-stroke}",
|
|
26
|
+
strokeWidth: "{line-stroke-width}"
|
|
27
|
+
},
|
|
28
|
+
dot: {
|
|
29
|
+
fill: "{dot-fill}",
|
|
30
|
+
r: "{dot-r}",
|
|
31
|
+
stroke: "{dot-stroke}",
|
|
32
|
+
strokeWidth: "{dot-stroke-width}"
|
|
33
|
+
},
|
|
34
|
+
grid: { stroke: "{grid-stroke}" },
|
|
35
|
+
labelList: chartStyle.base?.labelList,
|
|
36
|
+
line: {
|
|
37
|
+
"&:has(> path[data-inactive])": { opacity: "{inactive-line-opacity}" },
|
|
38
|
+
color: "{line-color}",
|
|
39
|
+
stroke: "{line-stroke}",
|
|
40
|
+
strokeWidth: "{line-stroke-width}"
|
|
41
|
+
},
|
|
42
|
+
referenceLine: {
|
|
43
|
+
color: "{reference-line-color}",
|
|
44
|
+
stroke: "{reference-line-stroke}",
|
|
45
|
+
strokeWidth: "{reference-line-stroke-width}"
|
|
46
|
+
},
|
|
47
|
+
referenceLineLabel: {
|
|
48
|
+
color: "{reference-line-text-color}",
|
|
49
|
+
fill: "{reference-line-text-fill}",
|
|
50
|
+
fontSize: "xs",
|
|
51
|
+
fontWeight: "medium",
|
|
52
|
+
stroke: "none"
|
|
53
|
+
},
|
|
54
|
+
root: {
|
|
55
|
+
"--active-dot-fill": "{line-color}",
|
|
56
|
+
"--active-dot-r": "4",
|
|
57
|
+
"--active-dot-stroke": "{line-color}",
|
|
58
|
+
"--active-dot-stroke-width": "0",
|
|
59
|
+
"--area-fill-opacity": "0.4",
|
|
60
|
+
"--dot-fill": "{line-stroke}",
|
|
61
|
+
"--dot-r": "4",
|
|
62
|
+
"--dot-stroke": "{line-stroke}",
|
|
63
|
+
"--dot-stroke-width": "0",
|
|
64
|
+
"--grid-stroke": "colors.border",
|
|
65
|
+
"--inactive-line-opacity": "0.4",
|
|
66
|
+
"--line-color": "colorScheme.solid",
|
|
67
|
+
"--line-stroke": "currentColor",
|
|
68
|
+
"--line-stroke-width": "2",
|
|
69
|
+
"--reference-line-color": "colors.fg.error",
|
|
70
|
+
"--reference-line-stroke": "currentColor",
|
|
71
|
+
"--reference-line-stroke-width": "1",
|
|
72
|
+
"--reference-line-text-color": "colors.fg.error",
|
|
73
|
+
"--reference-line-text-fill": "currentColor",
|
|
74
|
+
"--x-axis-line-stroke": "currentColor",
|
|
75
|
+
"--x-axis-line-stroke-width": "1",
|
|
76
|
+
"--x-axis-text-color": "colors.fg.muted",
|
|
77
|
+
"--x-axis-text-fill": "currentColor",
|
|
78
|
+
"--y-axis-line-stroke": "currentColor",
|
|
79
|
+
"--y-axis-line-stroke-width": "1",
|
|
80
|
+
"--y-axis-text-color": "colors.fg.muted",
|
|
81
|
+
"--y-axis-text-fill": "currentColor"
|
|
82
|
+
},
|
|
83
|
+
xAxis: {},
|
|
84
|
+
xAxisLabel: {
|
|
85
|
+
color: "{x-axis-text-color}",
|
|
86
|
+
fill: "{x-axis-text-fill}",
|
|
87
|
+
fontSize: "xs",
|
|
88
|
+
fontWeight: "medium"
|
|
89
|
+
},
|
|
90
|
+
xAxisTick: {
|
|
91
|
+
color: "{x-axis-text-color}",
|
|
92
|
+
fill: "{x-axis-text-fill}",
|
|
93
|
+
fontSize: "xs",
|
|
94
|
+
fontWeight: "medium"
|
|
95
|
+
},
|
|
96
|
+
xAxisTickLine: {
|
|
97
|
+
color: "{x-axis-text-color}",
|
|
98
|
+
stroke: "{x-axis-line-stroke}",
|
|
99
|
+
strokeWidth: "{x-axis-line-stroke-width}"
|
|
100
|
+
},
|
|
101
|
+
yAxis: {},
|
|
102
|
+
yAxisLabel: {
|
|
103
|
+
color: "{y-axis-text-color}",
|
|
104
|
+
fill: "{y-axis-text-fill}",
|
|
105
|
+
fontSize: "xs",
|
|
106
|
+
fontWeight: "medium"
|
|
107
|
+
},
|
|
108
|
+
yAxisTick: {
|
|
109
|
+
color: "{y-axis-text-color}",
|
|
110
|
+
fill: "{y-axis-text-fill}",
|
|
111
|
+
fontSize: "xs",
|
|
112
|
+
fontWeight: "medium"
|
|
113
|
+
},
|
|
114
|
+
yAxisTickLine: {
|
|
115
|
+
color: "{x-axis-text-color}",
|
|
116
|
+
stroke: "{y-axis-line-stroke}",
|
|
117
|
+
strokeWidth: "{y-axis-line-stroke-width}"
|
|
118
|
+
}
|
|
119
|
+
} });
|
|
120
|
+
|
|
121
|
+
//#endregion
|
|
122
|
+
export { cartesianChartStyle };
|
|
123
|
+
//# sourceMappingURL=cartesian-chart.style.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cartesian-chart.style.js","names":[],"sources":["../../../../src/components/chart/cartesian-chart.style.ts"],"sourcesContent":["import { defineComponentSlotStyle } from \"../../core\"\nimport { chartStyle } from \"./chart.style\"\n\nexport const cartesianChartStyle = defineComponentSlotStyle({\n base: {\n activeDot: {\n fill: \"{active-dot-fill}\",\n r: \"{active-dot-r}\",\n stroke: \"{active-dot-stroke}\",\n strokeWidth: \"{active-dot-stroke-width}\",\n },\n area: {\n \"&:has(path[data-inactive])\": {\n opacity: \"{inactive-line-opacity}\",\n },\n color: \"{line-color}\",\n fill: \"{line-stroke}\",\n fillOpacity: \"{area-fill-opacity}\",\n stroke: \"{line-stroke}\",\n strokeWidth: \"{line-stroke-width}\",\n },\n bar: {\n \"&:has(path[data-inactive])\": {\n opacity: \"{inactive-line-opacity}\",\n },\n color: \"{line-color}\",\n fill: \"{line-stroke}\",\n stroke: \"{line-stroke}\",\n strokeWidth: \"{line-stroke-width}\",\n },\n dot: {\n fill: \"{dot-fill}\",\n r: \"{dot-r}\",\n stroke: \"{dot-stroke}\",\n strokeWidth: \"{dot-stroke-width}\",\n },\n grid: { stroke: \"{grid-stroke}\" },\n labelList: chartStyle.base?.labelList,\n line: {\n \"&:has(> path[data-inactive])\": {\n opacity: \"{inactive-line-opacity}\",\n },\n color: \"{line-color}\",\n stroke: \"{line-stroke}\",\n strokeWidth: \"{line-stroke-width}\",\n },\n referenceLine: {\n color: \"{reference-line-color}\",\n stroke: \"{reference-line-stroke}\",\n strokeWidth: \"{reference-line-stroke-width}\",\n },\n referenceLineLabel: {\n color: \"{reference-line-text-color}\",\n fill: \"{reference-line-text-fill}\",\n fontSize: \"xs\",\n fontWeight: \"medium\",\n stroke: \"none\",\n },\n root: {\n \"--active-dot-fill\": \"{line-color}\",\n \"--active-dot-r\": \"4\",\n \"--active-dot-stroke\": \"{line-color}\",\n \"--active-dot-stroke-width\": \"0\",\n \"--area-fill-opacity\": \"0.4\",\n \"--dot-fill\": \"{line-stroke}\",\n \"--dot-r\": \"4\",\n \"--dot-stroke\": \"{line-stroke}\",\n \"--dot-stroke-width\": \"0\",\n \"--grid-stroke\": \"colors.border\",\n \"--inactive-line-opacity\": \"0.4\",\n \"--line-color\": \"colorScheme.solid\",\n \"--line-stroke\": \"currentColor\",\n \"--line-stroke-width\": \"2\",\n \"--reference-line-color\": \"colors.fg.error\",\n \"--reference-line-stroke\": \"currentColor\",\n \"--reference-line-stroke-width\": \"1\",\n \"--reference-line-text-color\": \"colors.fg.error\",\n \"--reference-line-text-fill\": \"currentColor\",\n \"--x-axis-line-stroke\": \"currentColor\",\n \"--x-axis-line-stroke-width\": \"1\",\n \"--x-axis-text-color\": \"colors.fg.muted\",\n \"--x-axis-text-fill\": \"currentColor\",\n \"--y-axis-line-stroke\": \"currentColor\",\n \"--y-axis-line-stroke-width\": \"1\",\n \"--y-axis-text-color\": \"colors.fg.muted\",\n \"--y-axis-text-fill\": \"currentColor\",\n },\n xAxis: {},\n xAxisLabel: {\n color: \"{x-axis-text-color}\",\n fill: \"{x-axis-text-fill}\",\n fontSize: \"xs\",\n fontWeight: \"medium\",\n },\n xAxisTick: {\n color: \"{x-axis-text-color}\",\n fill: \"{x-axis-text-fill}\",\n fontSize: \"xs\",\n fontWeight: \"medium\",\n },\n xAxisTickLine: {\n color: \"{x-axis-text-color}\",\n stroke: \"{x-axis-line-stroke}\",\n strokeWidth: \"{x-axis-line-stroke-width}\",\n },\n yAxis: {},\n yAxisLabel: {\n color: \"{y-axis-text-color}\",\n fill: \"{y-axis-text-fill}\",\n fontSize: \"xs\",\n fontWeight: \"medium\",\n },\n yAxisTick: {\n color: \"{y-axis-text-color}\",\n fill: \"{y-axis-text-fill}\",\n fontSize: \"xs\",\n fontWeight: \"medium\",\n },\n yAxisTickLine: {\n color: \"{x-axis-text-color}\",\n stroke: \"{y-axis-line-stroke}\",\n strokeWidth: \"{y-axis-line-stroke-width}\",\n },\n },\n})\n\nexport type CartesianChartStyle = typeof cartesianChartStyle\n"],"mappings":";;;;;AAGA,MAAa,sBAAsB,yBAAyB,EAC1D,MAAM;CACJ,WAAW;EACT,MAAM;EACN,GAAG;EACH,QAAQ;EACR,aAAa;EACd;CACD,MAAM;EACJ,8BAA8B,EAC5B,SAAS,2BACV;EACD,OAAO;EACP,MAAM;EACN,aAAa;EACb,QAAQ;EACR,aAAa;EACd;CACD,KAAK;EACH,8BAA8B,EAC5B,SAAS,2BACV;EACD,OAAO;EACP,MAAM;EACN,QAAQ;EACR,aAAa;EACd;CACD,KAAK;EACH,MAAM;EACN,GAAG;EACH,QAAQ;EACR,aAAa;EACd;CACD,MAAM,EAAE,QAAQ,iBAAiB;CACjC,WAAW,WAAW,MAAM;CAC5B,MAAM;EACJ,gCAAgC,EAC9B,SAAS,2BACV;EACD,OAAO;EACP,QAAQ;EACR,aAAa;EACd;CACD,eAAe;EACb,OAAO;EACP,QAAQ;EACR,aAAa;EACd;CACD,oBAAoB;EAClB,OAAO;EACP,MAAM;EACN,UAAU;EACV,YAAY;EACZ,QAAQ;EACT;CACD,MAAM;EACJ,qBAAqB;EACrB,kBAAkB;EAClB,uBAAuB;EACvB,6BAA6B;EAC7B,uBAAuB;EACvB,cAAc;EACd,WAAW;EACX,gBAAgB;EAChB,sBAAsB;EACtB,iBAAiB;EACjB,2BAA2B;EAC3B,gBAAgB;EAChB,iBAAiB;EACjB,uBAAuB;EACvB,0BAA0B;EAC1B,2BAA2B;EAC3B,iCAAiC;EACjC,+BAA+B;EAC/B,8BAA8B;EAC9B,wBAAwB;EACxB,8BAA8B;EAC9B,uBAAuB;EACvB,sBAAsB;EACtB,wBAAwB;EACxB,8BAA8B;EAC9B,uBAAuB;EACvB,sBAAsB;EACvB;CACD,OAAO,EAAE;CACT,YAAY;EACV,OAAO;EACP,MAAM;EACN,UAAU;EACV,YAAY;EACb;CACD,WAAW;EACT,OAAO;EACP,MAAM;EACN,UAAU;EACV,YAAY;EACb;CACD,eAAe;EACb,OAAO;EACP,QAAQ;EACR,aAAa;EACd;CACD,OAAO,EAAE;CACT,YAAY;EACV,OAAO;EACP,MAAM;EACN,UAAU;EACV,YAAY;EACb;CACD,WAAW;EACT,OAAO;EACP,MAAM;EACN,UAAU;EACV,YAAY;EACb;CACD,eAAe;EACb,OAAO;EACP,QAAQ;EACR,aAAa;EACd;CACF,EACF,CAAC"}
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { useSplitChildren } from "../../utils/children.js";
|
|
4
|
+
import { createContext as createContext$1 } from "../../utils/context.js";
|
|
5
|
+
import { utils_exports } from "../../utils/index.js";
|
|
6
|
+
import { varAttr } from "../../core/system/var.js";
|
|
7
|
+
import { styled } from "../../core/system/factory.js";
|
|
8
|
+
import { createSlotComponent } from "../../core/components/create-component.js";
|
|
9
|
+
import "../../core/index.js";
|
|
10
|
+
import { chartStyle } from "./chart.style.js";
|
|
11
|
+
import { ChartContext, useChart, useChartLabel, useChartLabelList, useChartLegend, useChartTooltip } from "./use-chart.js";
|
|
12
|
+
import { Fragment, isValidElement, useMemo, useRef } from "react";
|
|
13
|
+
import { Fragment as Fragment$1, jsx, jsxs } from "react/jsx-runtime";
|
|
14
|
+
import { Label, LabelList, Legend, ResponsiveContainer, Tooltip } from "recharts";
|
|
15
|
+
|
|
16
|
+
//#region src/components/chart/chart.tsx
|
|
17
|
+
function mergeSeries(series, color = "mono", strategy = "invert") {
|
|
18
|
+
const colors = gradients(series.length, color, strategy);
|
|
19
|
+
return series.map((item, index) => ({
|
|
20
|
+
...item,
|
|
21
|
+
color: colors[index]
|
|
22
|
+
}));
|
|
23
|
+
}
|
|
24
|
+
function mergeData(data, color = "mono", strategy = "invert") {
|
|
25
|
+
const colors = gradients(data.length, color, strategy);
|
|
26
|
+
return data.map((item, index) => ({
|
|
27
|
+
...item,
|
|
28
|
+
fill: colors[index]
|
|
29
|
+
}));
|
|
30
|
+
}
|
|
31
|
+
function gradients(length, color = "mono", strategy = "invert") {
|
|
32
|
+
return Array.from({ length }, (_, index) => {
|
|
33
|
+
const percent = `${Math.floor(100 - 100 / length * index)}%`;
|
|
34
|
+
if (strategy === "invert") return [`tint(colors.${color}, ${percent})`, `shade(colors.${color}, ${percent})`];
|
|
35
|
+
else return `${strategy}(colors.${color}, ${percent})`;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
const { ComponentContext, PropsContext: ChartPropsContext, useComponentContext: useChartComponentContext, usePropsContext: useChartPropsContext, withContext, withProvider } = createSlotComponent("chart", chartStyle);
|
|
39
|
+
const Chart = withProvider(({ children, components: componentsProp, render, series = [], withLegend = false, withTooltip = true, legendProps, responsiveContainerProps, tooltipProps, ...rest }) => {
|
|
40
|
+
const { highlightedDataKey, onHighlight } = useChart();
|
|
41
|
+
const nameKeyRef = useRef(void 0);
|
|
42
|
+
const components = useMemo(() => [
|
|
43
|
+
...componentsProp,
|
|
44
|
+
{
|
|
45
|
+
component: ChartLegend,
|
|
46
|
+
fallback: withLegend ? /* @__PURE__ */ jsx(ChartLegend, {}) : null
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
component: ChartTooltip,
|
|
50
|
+
fallback: withTooltip ? /* @__PURE__ */ jsx(ChartTooltip, {}) : null
|
|
51
|
+
}
|
|
52
|
+
], [
|
|
53
|
+
componentsProp,
|
|
54
|
+
withLegend,
|
|
55
|
+
withTooltip
|
|
56
|
+
]);
|
|
57
|
+
const [omittedChildren, ...customComponents] = useSplitChildren(children, ...components.map(({ component }) => component));
|
|
58
|
+
const varProps = useMemo(() => series.reduce((acc, data) => {
|
|
59
|
+
const key = `--${data.dataKey.toString()}`;
|
|
60
|
+
if (data.color) acc[key] = varAttr(data.color, "colors");
|
|
61
|
+
return acc;
|
|
62
|
+
}, {}), [series]);
|
|
63
|
+
const varMap = useMemo(() => series.reduce((acc, data) => {
|
|
64
|
+
const key = data.dataKey.toString();
|
|
65
|
+
if (data.color) acc[key] = `var(--${key})`;
|
|
66
|
+
return acc;
|
|
67
|
+
}, {}), [series]);
|
|
68
|
+
return /* @__PURE__ */ jsx(ChartContext, {
|
|
69
|
+
value: useMemo(() => ({
|
|
70
|
+
highlightedDataKey,
|
|
71
|
+
onHighlight
|
|
72
|
+
}), [highlightedDataKey, onHighlight]),
|
|
73
|
+
children: /* @__PURE__ */ jsx(ComponentContext, {
|
|
74
|
+
value: useMemo(() => ({
|
|
75
|
+
nameKeyRef,
|
|
76
|
+
varMap,
|
|
77
|
+
legendProps,
|
|
78
|
+
tooltipProps
|
|
79
|
+
}), [
|
|
80
|
+
varMap,
|
|
81
|
+
legendProps,
|
|
82
|
+
tooltipProps
|
|
83
|
+
]),
|
|
84
|
+
children: /* @__PURE__ */ jsx(styled.div, {
|
|
85
|
+
...varProps,
|
|
86
|
+
...rest,
|
|
87
|
+
children: /* @__PURE__ */ jsx(ResponsiveContainer, {
|
|
88
|
+
...responsiveContainerProps,
|
|
89
|
+
children: render({ children: /* @__PURE__ */ jsxs(Fragment$1, { children: [components.map(({ fallback }, index) => /* @__PURE__ */ jsx(Fragment, { children: customComponents[index] ?? fallback }, index)), omittedChildren] }) })
|
|
90
|
+
})
|
|
91
|
+
})
|
|
92
|
+
})
|
|
93
|
+
});
|
|
94
|
+
}, "root")(void 0, ({ labelListColor, labelListFill, tooltipCursorFill, tooltipCursorFillOpacity, tooltipCursorStroke, ...rest }) => ({
|
|
95
|
+
"--label-list-color": varAttr(labelListColor, "colors"),
|
|
96
|
+
"--label-list-fill": varAttr(labelListFill, "colors"),
|
|
97
|
+
"--tooltip-cursor-fill": varAttr(tooltipCursorFill, "colors"),
|
|
98
|
+
"--tooltip-cursor-fill-opacity": tooltipCursorFillOpacity,
|
|
99
|
+
"--tooltip-cursor-stroke": varAttr(tooltipCursorStroke, "colors"),
|
|
100
|
+
...rest
|
|
101
|
+
}));
|
|
102
|
+
const [ChartLegendContext, useChartLegendContext] = createContext$1({ name: "ChartLegendContext" });
|
|
103
|
+
const ChartLegend = withContext((props) => {
|
|
104
|
+
const { legendProps } = useChartComponentContext();
|
|
105
|
+
const { contentProps, ...rest } = {
|
|
106
|
+
...legendProps,
|
|
107
|
+
...props
|
|
108
|
+
};
|
|
109
|
+
const { getLegendContentProps, getLegendItemProps, getLegendProps, getRootProps } = useChartLegend({
|
|
110
|
+
content: ({ formatter, payload }) => /* @__PURE__ */ jsx(ChartLegendContent, {
|
|
111
|
+
formatter,
|
|
112
|
+
payload,
|
|
113
|
+
...getLegendContentProps(contentProps)
|
|
114
|
+
}),
|
|
115
|
+
...rest
|
|
116
|
+
});
|
|
117
|
+
return /* @__PURE__ */ jsx(ChartLegendContext, {
|
|
118
|
+
value: useMemo(() => ({ getLegendItemProps }), [getLegendItemProps]),
|
|
119
|
+
children: /* @__PURE__ */ jsx(styled.div, {
|
|
120
|
+
asChild: true,
|
|
121
|
+
...getRootProps(),
|
|
122
|
+
children: /* @__PURE__ */ jsx(Legend, { ...getLegendProps() })
|
|
123
|
+
})
|
|
124
|
+
});
|
|
125
|
+
}, "legend")();
|
|
126
|
+
const ChartLegendContent = withContext(({ formatter, payload, withSwatch = true, ...rest }) => {
|
|
127
|
+
const { nameKeyRef, varMap } = useChartComponentContext();
|
|
128
|
+
const { getLegendItemProps } = useChartLegendContext();
|
|
129
|
+
return /* @__PURE__ */ jsx(styled.div, {
|
|
130
|
+
...rest,
|
|
131
|
+
children: payload?.map((data, index) => {
|
|
132
|
+
let value = data.value;
|
|
133
|
+
if (nameKeyRef.current) value = data.payload?.[nameKeyRef.current];
|
|
134
|
+
const dataKey = (0, utils_exports.isString)(data.dataKey) || (0, utils_exports.isNumber)(data.dataKey) ? data.dataKey : value;
|
|
135
|
+
const color = data.color || (dataKey ? varMap[dataKey] : void 0);
|
|
136
|
+
const formattedValue = formatter?.(value, data, index) ?? value;
|
|
137
|
+
return /* @__PURE__ */ jsxs(ChartLegendItem, {
|
|
138
|
+
...getLegendItemProps({ dataKey }),
|
|
139
|
+
children: [withSwatch ? /* @__PURE__ */ jsx(ChartLegendSwatch, { bg: color }) : null, /* @__PURE__ */ jsx(ChartLegendValue, { children: formattedValue })]
|
|
140
|
+
}, index);
|
|
141
|
+
})
|
|
142
|
+
});
|
|
143
|
+
}, "legendContent")();
|
|
144
|
+
const ChartLegendItem = withContext("div", "legendItem")();
|
|
145
|
+
const ChartLegendSwatch = withContext("div", "legendSwatch")();
|
|
146
|
+
const ChartLegendValue = withContext("span", "legendValue")();
|
|
147
|
+
const ChartTooltip = (props) => {
|
|
148
|
+
const { tooltipProps } = useChartComponentContext();
|
|
149
|
+
const { cursor = false, contentProps, ...rest } = {
|
|
150
|
+
...tooltipProps,
|
|
151
|
+
...props
|
|
152
|
+
};
|
|
153
|
+
const { getContentProps, getRootProps } = useChartTooltip({
|
|
154
|
+
content: ({ formatter, label, labelFormatter, payload }) => /* @__PURE__ */ jsx(ChartTooltipContent, {
|
|
155
|
+
formatter,
|
|
156
|
+
label,
|
|
157
|
+
labelFormatter,
|
|
158
|
+
payload,
|
|
159
|
+
...getContentProps(contentProps)
|
|
160
|
+
}),
|
|
161
|
+
cursor: isValidElement(cursor) || !cursor ? cursor : /* @__PURE__ */ jsx(ChartTooltipCursor, { ...(0, utils_exports.isObject)(cursor) ? cursor : {} }),
|
|
162
|
+
...rest
|
|
163
|
+
});
|
|
164
|
+
return /* @__PURE__ */ jsx(Tooltip, { ...getRootProps() });
|
|
165
|
+
};
|
|
166
|
+
const ChartTooltipCursor = withContext("path", "tooltipCursor")(void 0, ({ bottom: _bottom, brushBottom: _brushBottom, fill, height, left: _left, payload: _payload, payloadIndex: _payloadIndex, points, right: _right, stroke, top: _top, width, x, y, ...rest }) => {
|
|
167
|
+
return {
|
|
168
|
+
asChild: true,
|
|
169
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
170
|
+
d: !!points ? `M${points[0]?.x},${points[0]?.y}L${points[1]?.x},${points[1]?.y}` : `M ${x},${y} h ${width} v ${height} h -${width} Z`,
|
|
171
|
+
height,
|
|
172
|
+
width
|
|
173
|
+
}),
|
|
174
|
+
fill: fill === "#ccc" ? void 0 : fill,
|
|
175
|
+
stroke: stroke === "#ccc" ? void 0 : stroke,
|
|
176
|
+
...rest
|
|
177
|
+
};
|
|
178
|
+
});
|
|
179
|
+
const ChartTooltipContent = withContext(({ formatter, label: labelProp, labelFormatter, payload, withSwatch = true, ...rest }) => {
|
|
180
|
+
const { nameKeyRef, varMap } = useChartComponentContext();
|
|
181
|
+
const label = labelFormatter ? labelFormatter(labelProp, payload) : labelProp;
|
|
182
|
+
return /* @__PURE__ */ jsxs(styled.div, {
|
|
183
|
+
...rest,
|
|
184
|
+
children: [!(0, utils_exports.isUndefined)(label) && !(0, utils_exports.isNull)(label) ? /* @__PURE__ */ jsx(ChartTooltipLabel, { children: label }) : null, /* @__PURE__ */ jsx(ChartTooltipList, { children: payload.map((data, index) => {
|
|
185
|
+
if (nameKeyRef.current) data.name = data.payload[nameKeyRef.current];
|
|
186
|
+
const color = data.payload.fill ?? varMap[data.dataKey.toString()];
|
|
187
|
+
const result = formatter?.(data.value, data.name, data, index, payload) ?? ((0, utils_exports.isArray)(data.value) ? data.value.join(", ") : data.value);
|
|
188
|
+
const [value, name] = (0, utils_exports.isArray)(result) ? result : [result, data.name];
|
|
189
|
+
return /* @__PURE__ */ jsxs(ChartTooltipItem, { children: [
|
|
190
|
+
withSwatch ? /* @__PURE__ */ jsx(ChartTooltipSwatch, { bg: color }) : null,
|
|
191
|
+
/* @__PURE__ */ jsx(ChartTooltipName, { children: name }),
|
|
192
|
+
/* @__PURE__ */ jsx(ChartTooltipValue, { children: value })
|
|
193
|
+
] }, index);
|
|
194
|
+
}) })]
|
|
195
|
+
});
|
|
196
|
+
}, "tooltipContent")();
|
|
197
|
+
const ChartTooltipLabel = withContext("p", "tooltipLabel")();
|
|
198
|
+
const ChartTooltipList = withContext("div", "tooltipList")();
|
|
199
|
+
const ChartTooltipItem = withContext("div", "tooltipItem")();
|
|
200
|
+
const ChartTooltipSwatch = withContext("div", "tooltipSwatch")();
|
|
201
|
+
const ChartTooltipName = withContext("span", "tooltipName")();
|
|
202
|
+
const ChartTooltipValue = withContext("span", "tooltipValue")();
|
|
203
|
+
const ChartLabelList = withContext((props) => {
|
|
204
|
+
const { getLabelListProps, getRootProps } = useChartLabelList(props);
|
|
205
|
+
return /* @__PURE__ */ jsx(styled.text, {
|
|
206
|
+
asChild: true,
|
|
207
|
+
...getRootProps(),
|
|
208
|
+
children: /* @__PURE__ */ jsx(LabelList, { ...getLabelListProps() })
|
|
209
|
+
});
|
|
210
|
+
}, "labelList")();
|
|
211
|
+
const ChartLabel = withContext((props) => {
|
|
212
|
+
const { getLabelProps, getRootProps } = useChartLabel(props);
|
|
213
|
+
return /* @__PURE__ */ jsx(styled.text, {
|
|
214
|
+
asChild: true,
|
|
215
|
+
...getRootProps(),
|
|
216
|
+
children: /* @__PURE__ */ jsx(Label, { ...getLabelProps() })
|
|
217
|
+
});
|
|
218
|
+
}, "label")();
|
|
219
|
+
|
|
220
|
+
//#endregion
|
|
221
|
+
export { Chart, ChartLabel, ChartLabelList, ChartLegend, ChartPropsContext, ChartTooltip, gradients, mergeData, mergeSeries, useChartComponentContext, useChartPropsContext };
|
|
222
|
+
//# sourceMappingURL=chart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chart.js","names":["createContext"],"sources":["../../../../src/components/chart/chart.tsx"],"sourcesContent":["\"use client\"\n\nimport type {\n JSXElementConstructor,\n PropsWithChildren,\n ReactElement,\n ReactNode,\n RefObject,\n} from \"react\"\nimport type {\n ActiveDotProps,\n DataKey,\n DefaultLegendContentProps,\n DotItemDotProps,\n DotProps,\n LabelProps,\n RenderableText,\n ResponsiveContainerProps,\n TooltipContentProps,\n} from \"recharts\"\nimport type {\n CSSProps,\n GenericsComponent,\n HTMLStyledProps,\n ThemeProps,\n} from \"../../core\"\nimport type { Dict, Merge } from \"../../utils\"\nimport type {\n ChartAreaProps,\n ChartBarProps,\n ChartLineProps,\n} from \"./cartesian-chart\"\nimport type { ChartStyle } from \"./chart.style\"\nimport type {\n ChartDonutProps,\n ChartPieProps,\n ChartRadarProps,\n ChartRadialProps,\n} from \"./polar-chart\"\nimport type {\n UseChartLabelListProps,\n UseChartLabelProps,\n UseChartLegendProps,\n UseChartLegendReturn,\n UseChartTooltipProps,\n} from \"./use-chart\"\nimport { Fragment, isValidElement, useMemo, useRef } from \"react\"\nimport {\n Label,\n LabelList,\n Legend,\n ResponsiveContainer,\n Tooltip,\n} from \"recharts\"\nimport { createSlotComponent, styled, varAttr } from \"../../core\"\nimport {\n createContext,\n isArray,\n isNull,\n isNumber,\n isObject,\n isString,\n isUndefined,\n useSplitChildren,\n} from \"../../utils\"\nimport { chartStyle } from \"./chart.style\"\nimport {\n ChartContext,\n useChart,\n useChartLabel,\n useChartLabelList,\n useChartLegend,\n useChartTooltip,\n} from \"./use-chart\"\n\nexport type ChartDot =\n | ((props: DotItemDotProps) => ReactNode)\n | boolean\n | Merge<Partial<DotProps>, HTMLStyledProps<\"circle\">>\n | ReactElement\n\nexport type ChartActiveDot =\n | ((props: ActiveDotProps) => ReactNode)\n | boolean\n | Merge<Partial<ActiveDotProps>, HTMLStyledProps<\"circle\">>\n | ReactElement\n\nexport type ChartLabel =\n | ((props: any) => ReactElement | RenderableText)\n | boolean\n | (Merge<\n HTMLStyledProps<\"text\">,\n Pick<\n LabelProps,\n | \"angle\"\n | \"content\"\n | \"formatter\"\n | \"index\"\n | \"labelRef\"\n | \"offset\"\n | \"parentViewBox\"\n | \"position\"\n | \"textBreakAll\"\n | \"value\"\n | \"viewBox\"\n | \"zIndex\"\n >\n > & { dataKey?: DataKey<any> })\n | number\n | ReactElement\n | string\n\nexport type ChartLabelList =\n | ((props: LabelProps) => ReactElement | RenderableText)\n | boolean\n | ChartLabelListProps\n | ReactElement\n\nexport type ChartTickLine = boolean | HTMLStyledProps<\"line\">\n\ntype GradientStrategy = \"invert\" | \"shade\" | \"tint\"\n\nexport function mergeSeries<Y>(\n series: Y[],\n color: CSSProps[\"color\"] = \"mono\",\n strategy: GradientStrategy = \"invert\",\n): (Y & { color: CSSProps[\"fill\"] })[] {\n const colors = gradients(series.length, color, strategy)\n\n return series.map((item, index) => ({ ...item, color: colors[index] }))\n}\n\nexport function mergeData<Y>(\n data: Y[],\n color: CSSProps[\"fill\"] = \"mono\",\n strategy: GradientStrategy = \"invert\",\n): (Y & { fill: CSSProps[\"fill\"] })[] {\n const colors = gradients(data.length, color, strategy)\n\n return data.map((item, index) => ({ ...item, fill: colors[index] }))\n}\n\nexport function gradients(\n length: number,\n color: CSSProps[\"color\"] = \"mono\",\n strategy: GradientStrategy = \"invert\",\n): CSSProps[\"fill\"][] {\n return Array.from({ length }, (_, index) => {\n const value = Math.floor(100 - (100 / length) * index)\n const percent = `${value}%`\n\n if (strategy === \"invert\") {\n return [\n `tint(colors.${color}, ${percent})`,\n `shade(colors.${color}, ${percent})`,\n ]\n } else {\n return `${strategy}(colors.${color}, ${percent})`\n }\n })\n}\n\ninterface ComponentContext extends Pick<\n ChartProps,\n \"legendProps\" | \"tooltipProps\"\n> {\n nameKeyRef: RefObject<string | undefined>\n varMap: Dict<string>\n}\n\nexport interface ChartProps<Y extends Dict = Dict>\n extends HTMLStyledProps, ThemeProps<ChartStyle> {\n /**\n * The components to render the chart components.\n */\n components: {\n component: JSXElementConstructor<any>\n fallback: ReactNode\n }[]\n /**\n * The function to render the chart.\n */\n render: (props: PropsWithChildren) => ReactNode\n /**\n * The color of the label list.\n */\n labelListColor?: CSSProps[\"color\"]\n /**\n * The fill of the label list.\n */\n labelListFill?: CSSProps[\"fill\"]\n /**\n * If provided, generate shapes based on series.\n */\n series?:\n | ChartAreaProps<Y>[]\n | ChartBarProps<Y>[]\n | ChartDonutProps<Y>[]\n | ChartLineProps<Y>[]\n | ChartPieProps<Y>[]\n | ChartRadarProps<Y>[]\n | ChartRadialProps<Y>[]\n /**\n * The fill of the tooltip cursor.\n */\n tooltipCursorFill?: CSSProps[\"fill\"]\n /**\n * The fill opacity of the tooltip cursor.\n */\n tooltipCursorFillOpacity?: CSSProps[\"fillOpacity\"]\n /**\n * The stroke of the tooltip cursor.\n */\n tooltipCursorStroke?: CSSProps[\"stroke\"]\n /**\n * If `true`, legend is visible.\n *\n * @default false\n */\n withLegend?: boolean\n /**\n * If `true`, tooltip is visible.\n *\n * @default true\n */\n withTooltip?: boolean\n /**\n * Props for the legend component.\n */\n legendProps?: ChartLegendProps\n /**\n * Props for the responsive container component.\n */\n responsiveContainerProps?: ResponsiveContainerProps\n /**\n * Props for the tooltip component.\n */\n tooltipProps?: ChartTooltipProps\n}\n\nconst {\n ComponentContext,\n PropsContext: ChartPropsContext,\n useComponentContext: useChartComponentContext,\n usePropsContext: useChartPropsContext,\n withContext,\n withProvider,\n} = createSlotComponent<ChartProps, ChartStyle, ComponentContext>(\n \"chart\",\n chartStyle,\n)\n\nexport { ChartPropsContext, useChartComponentContext, useChartPropsContext }\n\nexport const Chart = withProvider(\n <Y extends Dict>({\n children,\n components: componentsProp,\n render,\n series = [],\n withLegend = false,\n withTooltip = true,\n legendProps,\n responsiveContainerProps,\n tooltipProps,\n ...rest\n }: ChartProps<Y>) => {\n const { highlightedDataKey, onHighlight } = useChart()\n const nameKeyRef = useRef<string | undefined>(undefined)\n const components = useMemo(\n () => [\n ...componentsProp,\n {\n component: ChartLegend,\n fallback: withLegend ? <ChartLegend /> : null,\n },\n {\n component: ChartTooltip,\n fallback: withTooltip ? <ChartTooltip /> : null,\n },\n ],\n [componentsProp, withLegend, withTooltip],\n )\n const [omittedChildren, ...customComponents] = useSplitChildren(\n children,\n ...components.map(({ component }) => component),\n )\n const varProps = useMemo(\n () =>\n series.reduce<Dict>((acc, data) => {\n const key = `--${data.dataKey.toString()}`\n\n if (data.color) acc[key] = varAttr(data.color, \"colors\")\n\n return acc\n }, {}),\n [series],\n )\n const varMap = useMemo(\n () =>\n series.reduce<Dict>((acc, data) => {\n const key = data.dataKey.toString()\n\n if (data.color) acc[key] = `var(--${key})`\n\n return acc\n }, {}),\n [series],\n )\n const context = useMemo(\n () => ({\n highlightedDataKey,\n onHighlight,\n }),\n [highlightedDataKey, onHighlight],\n )\n const componentContext = useMemo(\n () => ({\n nameKeyRef,\n varMap,\n legendProps,\n tooltipProps,\n }),\n [varMap, legendProps, tooltipProps],\n )\n\n return (\n <ChartContext value={context}>\n <ComponentContext value={componentContext}>\n <styled.div {...varProps} {...rest}>\n <ResponsiveContainer {...responsiveContainerProps}>\n {render({\n children: (\n <>\n {components.map(({ fallback }, index) => (\n <Fragment key={index}>\n {customComponents[index] ?? fallback}\n </Fragment>\n ))}\n\n {omittedChildren}\n </>\n ),\n })}\n </ResponsiveContainer>\n </styled.div>\n </ComponentContext>\n </ChartContext>\n )\n },\n \"root\",\n)(\n undefined,\n ({\n labelListColor,\n labelListFill,\n tooltipCursorFill,\n tooltipCursorFillOpacity,\n tooltipCursorStroke,\n ...rest\n }) => ({\n \"--label-list-color\": varAttr(labelListColor, \"colors\"),\n \"--label-list-fill\": varAttr(labelListFill, \"colors\"),\n \"--tooltip-cursor-fill\": varAttr(tooltipCursorFill, \"colors\"),\n \"--tooltip-cursor-fill-opacity\": tooltipCursorFillOpacity,\n \"--tooltip-cursor-stroke\": varAttr(tooltipCursorStroke, \"colors\"),\n ...rest,\n }),\n) as GenericsComponent<{\n <Y extends Dict>(props: ChartProps<Y>): ReactElement\n}>\n\ninterface ChartLegendContext extends Pick<\n UseChartLegendReturn,\n \"getLegendItemProps\"\n> {}\n\nconst [ChartLegendContext, useChartLegendContext] =\n createContext<ChartLegendContext>({\n name: \"ChartLegendContext\",\n })\n\nexport interface ChartLegendProps extends Merge<\n HTMLStyledProps,\n UseChartLegendProps\n> {\n /**\n * Props for the content component.\n */\n contentProps?: Omit<ChartLegendContentProps, \"formatter\" | \"payload\">\n}\n\nexport const ChartLegend = withContext<\"div\", ChartLegendProps>((props) => {\n const { legendProps } = useChartComponentContext()\n const { contentProps, ...rest } = { ...legendProps, ...props }\n const {\n getLegendContentProps,\n getLegendItemProps,\n getLegendProps,\n getRootProps,\n } = useChartLegend({\n content: ({ formatter, payload }) => (\n <ChartLegendContent\n formatter={formatter}\n payload={payload}\n {...getLegendContentProps(contentProps)}\n />\n ),\n ...rest,\n })\n const context = useMemo(() => ({ getLegendItemProps }), [getLegendItemProps])\n\n return (\n <ChartLegendContext value={context}>\n <styled.div asChild {...getRootProps()}>\n <Legend {...getLegendProps()} />\n </styled.div>\n </ChartLegendContext>\n )\n}, \"legend\")()\n\ninterface ChartLegendContentProps\n extends\n HTMLStyledProps,\n Pick<DefaultLegendContentProps, \"formatter\" | \"payload\"> {\n /**\n * If `true`, swatch is visible.\n */\n withSwatch?: boolean\n}\n\nconst ChartLegendContent = withContext<\"div\", ChartLegendContentProps>(\n ({ formatter, payload, withSwatch = true, ...rest }) => {\n const { nameKeyRef, varMap } = useChartComponentContext()\n const { getLegendItemProps } = useChartLegendContext()\n\n return (\n <styled.div {...rest}>\n {payload?.map((data, index) => {\n let value = data.value\n\n if (nameKeyRef.current)\n value = (data.payload as any)?.[nameKeyRef.current]\n\n const dataKey =\n isString(data.dataKey) || isNumber(data.dataKey)\n ? data.dataKey\n : value\n const color = data.color || (dataKey ? varMap[dataKey] : undefined)\n const formattedValue = formatter?.(value, data, index) ?? value\n\n return (\n <ChartLegendItem key={index} {...getLegendItemProps({ dataKey })}>\n {withSwatch ? <ChartLegendSwatch bg={color} /> : null}\n <ChartLegendValue>{formattedValue}</ChartLegendValue>\n </ChartLegendItem>\n )\n })}\n </styled.div>\n )\n },\n \"legendContent\",\n)()\n\ninterface ChartLegendItemProps extends HTMLStyledProps {}\n\nconst ChartLegendItem = withContext<\"div\", ChartLegendItemProps>(\n \"div\",\n \"legendItem\",\n)()\n\ninterface ChartLegendSwatchProps extends HTMLStyledProps {}\n\nconst ChartLegendSwatch = withContext<\"div\", ChartLegendSwatchProps>(\n \"div\",\n \"legendSwatch\",\n)()\n\ninterface ChartLegendValueProps extends HTMLStyledProps<\"span\"> {}\n\nconst ChartLegendValue = withContext<\"span\", ChartLegendValueProps>(\n \"span\",\n \"legendValue\",\n)()\n\nexport interface ChartTooltipProps<\n Y extends (number | string)[] | number | string = number,\n M extends number | string = string,\n> extends Omit<Merge<HTMLStyledProps, UseChartTooltipProps<Y, M>>, \"cursor\"> {\n /**\n * Props for the cursor component.\n */\n cursor?: boolean | ChartTooltipCursorProps | ReactElement\n /**\n * Props for the content component.\n */\n contentProps?: Omit<\n ChartTooltipContentProps,\n \"formatter\" | \"label\" | \"labelFormatter\" | \"payload\"\n >\n}\n\nexport const ChartTooltip = <\n Y extends (number | string)[] | number | string,\n M extends number | string,\n>(\n props: ChartTooltipProps<Y, M>,\n) => {\n const { tooltipProps } = useChartComponentContext()\n const {\n cursor = false,\n contentProps,\n ...rest\n } = {\n ...tooltipProps,\n ...props,\n } as ChartTooltipProps<Y, M>\n const { getContentProps, getRootProps } = useChartTooltip({\n content: ({ formatter, label, labelFormatter, payload }) => (\n <ChartTooltipContent\n formatter={formatter}\n label={label}\n labelFormatter={labelFormatter}\n payload={payload}\n {...getContentProps(contentProps)}\n />\n ),\n cursor:\n isValidElement(cursor) || !cursor ? (\n cursor\n ) : (\n <ChartTooltipCursor {...(isObject(cursor) ? cursor : {})} />\n ),\n ...rest,\n })\n\n return <Tooltip {...getRootProps()} />\n}\n\ninterface ChartTooltipCursorProps extends Omit<\n HTMLStyledProps<\"path\">,\n \"height\" | \"points\" | \"width\"\n> {\n brushBottom?: number\n height?: number\n payload?: Dict[]\n payloadIndex?: number\n points?: { x: number; y: number }[]\n width?: number\n}\n\nconst ChartTooltipCursor = withContext<\"path\", ChartTooltipCursorProps>(\n \"path\",\n \"tooltipCursor\",\n)(\n undefined,\n ({\n bottom: _bottom,\n brushBottom: _brushBottom,\n fill,\n height,\n left: _left,\n payload: _payload,\n payloadIndex: _payloadIndex,\n points,\n right: _right,\n stroke,\n top: _top,\n width,\n x,\n y,\n ...rest\n }) => {\n const d = !!points\n ? `M${points[0]?.x},${points[0]?.y}L${points[1]?.x},${points[1]?.y}`\n : `M ${x},${y} h ${width} v ${height} h -${width} Z`\n return {\n asChild: true,\n children: <path d={d} height={height} width={width} />,\n fill: fill === \"#ccc\" ? undefined : fill,\n stroke: stroke === \"#ccc\" ? undefined : stroke,\n ...rest,\n }\n },\n)\n\ninterface ChartTooltipContentProps\n extends\n HTMLStyledProps,\n Pick<\n TooltipContentProps<any, any>,\n \"formatter\" | \"label\" | \"labelFormatter\" | \"payload\"\n > {\n /**\n * If `true`, swatch is visible.\n */\n withSwatch?: boolean\n}\n\nconst ChartTooltipContent = withContext<\"div\", ChartTooltipContentProps>(\n ({\n formatter,\n label: labelProp,\n labelFormatter,\n payload,\n withSwatch = true,\n ...rest\n }) => {\n const { nameKeyRef, varMap } = useChartComponentContext()\n const label = labelFormatter\n ? labelFormatter(labelProp, payload)\n : labelProp\n\n return (\n <styled.div {...rest}>\n {!isUndefined(label) && !isNull(label) ? (\n <ChartTooltipLabel>{label}</ChartTooltipLabel>\n ) : null}\n\n <ChartTooltipList>\n {payload.map((data, index) => {\n if (nameKeyRef.current) data.name = data.payload[nameKeyRef.current]\n\n const color = data.payload.fill ?? varMap[data.dataKey.toString()]\n const result =\n formatter?.(data.value, data.name, data, index, payload) ??\n (isArray(data.value) ? data.value.join(\", \") : data.value)\n const [value, name] = isArray(result) ? result : [result, data.name]\n\n return (\n <ChartTooltipItem key={index}>\n {withSwatch ? <ChartTooltipSwatch bg={color} /> : null}\n <ChartTooltipName>{name}</ChartTooltipName>\n <ChartTooltipValue>{value}</ChartTooltipValue>\n </ChartTooltipItem>\n )\n })}\n </ChartTooltipList>\n </styled.div>\n )\n },\n \"tooltipContent\",\n)()\n\ninterface ChartTooltipLabel extends HTMLStyledProps<\"p\"> {}\n\nconst ChartTooltipLabel = withContext<\"p\", ChartTooltipLabel>(\n \"p\",\n \"tooltipLabel\",\n)()\n\ninterface ChartTooltipList extends HTMLStyledProps {}\n\nconst ChartTooltipList = withContext<\"div\", ChartTooltipList>(\n \"div\",\n \"tooltipList\",\n)()\n\ninterface ChartTooltipItem extends HTMLStyledProps {}\n\nconst ChartTooltipItem = withContext<\"div\", ChartTooltipItem>(\n \"div\",\n \"tooltipItem\",\n)()\n\ninterface ChartTooltipSwatch extends HTMLStyledProps {}\n\nconst ChartTooltipSwatch = withContext<\"div\", ChartTooltipSwatch>(\n \"div\",\n \"tooltipSwatch\",\n)()\n\ninterface ChartTooltipName extends HTMLStyledProps<\"span\"> {}\n\nconst ChartTooltipName = withContext<\"span\", ChartTooltipName>(\n \"span\",\n \"tooltipName\",\n)()\n\ninterface ChartTooltipValue extends HTMLStyledProps<\"span\"> {}\n\nconst ChartTooltipValue = withContext<\"span\", ChartTooltipValue>(\n \"span\",\n \"tooltipValue\",\n)()\n\nexport interface ChartLabelListProps extends Merge<\n HTMLStyledProps<\"text\">,\n UseChartLabelListProps\n> {}\n\nexport const ChartLabelList = withContext<\"text\", ChartLabelListProps>(\n (props) => {\n const { getLabelListProps, getRootProps } = useChartLabelList(props)\n\n return (\n <styled.text asChild {...getRootProps()}>\n <LabelList {...getLabelListProps()} />\n </styled.text>\n )\n },\n \"labelList\",\n)()\n\nexport interface ChartLabelProps extends Merge<\n HTMLStyledProps<\"text\">,\n UseChartLabelProps\n> {}\n\nexport const ChartLabel = withContext<\"text\", ChartLabelProps>((props) => {\n const { getLabelProps, getRootProps } = useChartLabel(props)\n\n return (\n <styled.text asChild {...getRootProps()}>\n <Label {...getLabelProps()} />\n </styled.text>\n )\n}, \"label\")()\n"],"mappings":"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"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { defineComponentSlotStyle } from "../../core/system/config.js";
|
|
2
|
+
import "../../core/index.js";
|
|
3
|
+
import { buttonStyle } from "../button/button.style.js";
|
|
4
|
+
import "../button/index.js";
|
|
5
|
+
import { tooltipStyle } from "../tooltip/tooltip.style.js";
|
|
6
|
+
import "../tooltip/index.js";
|
|
7
|
+
|
|
8
|
+
//#region src/components/chart/chart.style.ts
|
|
9
|
+
const chartStyle = defineComponentSlotStyle({
|
|
10
|
+
base: {
|
|
11
|
+
label: {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
fontSize: "xs",
|
|
14
|
+
fontWeight: "medium"
|
|
15
|
+
},
|
|
16
|
+
labelList: {
|
|
17
|
+
color: "{label-list-color}",
|
|
18
|
+
fill: "{label-list-fill}",
|
|
19
|
+
fontSize: "xs",
|
|
20
|
+
fontWeight: "medium",
|
|
21
|
+
stroke: "none"
|
|
22
|
+
},
|
|
23
|
+
legend: { mb: "md" },
|
|
24
|
+
legendContent: {
|
|
25
|
+
"&:is([data-align=center])": { justifyContent: "center" },
|
|
26
|
+
"&:is([data-align=left])": { justifyContent: "flex-start" },
|
|
27
|
+
"&:is([data-align=right])": { justifyContent: "flex-end" },
|
|
28
|
+
"&:is([data-vertical-align=bottom])": { mt: "md" },
|
|
29
|
+
"&:is([data-vertical-align=middle])": {
|
|
30
|
+
"&:is([data-align=left])": { me: "md" },
|
|
31
|
+
"&:is([data-align=right])": { ms: "md" }
|
|
32
|
+
},
|
|
33
|
+
"&:is([data-vertical-align=top])": { mb: "md" },
|
|
34
|
+
display: "flex",
|
|
35
|
+
flexWrap: "wrap",
|
|
36
|
+
_horizontal: {
|
|
37
|
+
alignItems: "center",
|
|
38
|
+
flexDirection: "row"
|
|
39
|
+
},
|
|
40
|
+
_vertical: {
|
|
41
|
+
alignItems: "stretch",
|
|
42
|
+
flexDirection: "column"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
legendItem: {
|
|
46
|
+
...buttonStyle.base,
|
|
47
|
+
...buttonStyle.sizes?.xs,
|
|
48
|
+
...buttonStyle.variants?.ghost
|
|
49
|
+
},
|
|
50
|
+
legendSwatch: {
|
|
51
|
+
bg: "{legend-swatch-color}",
|
|
52
|
+
boxSize: "2",
|
|
53
|
+
rounded: "full"
|
|
54
|
+
},
|
|
55
|
+
legendValue: {
|
|
56
|
+
color: "fg.muted",
|
|
57
|
+
flex: "1",
|
|
58
|
+
fontSize: "sm"
|
|
59
|
+
},
|
|
60
|
+
root: {
|
|
61
|
+
"*": { outline: "none" },
|
|
62
|
+
"--label-list-color": "currentColor",
|
|
63
|
+
"--label-list-fill": "currentColor",
|
|
64
|
+
"--tooltip-cursor-fill": "colors.border",
|
|
65
|
+
"--tooltip-cursor-fill-opacity": "1",
|
|
66
|
+
"--tooltip-cursor-stroke": "colors.border",
|
|
67
|
+
w: "full"
|
|
68
|
+
},
|
|
69
|
+
tooltipContent: {
|
|
70
|
+
...tooltipStyle.base?.content,
|
|
71
|
+
display: "flex",
|
|
72
|
+
flexDirection: "column",
|
|
73
|
+
fontWeight: "medium",
|
|
74
|
+
gap: "0.5",
|
|
75
|
+
minW: "3xs",
|
|
76
|
+
zIndex: "recoome"
|
|
77
|
+
},
|
|
78
|
+
tooltipCursor: {
|
|
79
|
+
fill: "{tooltip-cursor-fill}",
|
|
80
|
+
fillOpacity: "{tooltip-cursor-fill-opacity}",
|
|
81
|
+
stroke: "{tooltip-cursor-stroke}",
|
|
82
|
+
strokeWidth: "1"
|
|
83
|
+
},
|
|
84
|
+
tooltipItem: {
|
|
85
|
+
alignItems: "center",
|
|
86
|
+
display: "flex",
|
|
87
|
+
gap: "sm"
|
|
88
|
+
},
|
|
89
|
+
tooltipLabel: {},
|
|
90
|
+
tooltipList: {
|
|
91
|
+
display: "flex",
|
|
92
|
+
flexDirection: "column",
|
|
93
|
+
gap: "0"
|
|
94
|
+
},
|
|
95
|
+
tooltipName: { color: "fg.muted" },
|
|
96
|
+
tooltipSwatch: {
|
|
97
|
+
bg: "{tooltip-swatch-color}",
|
|
98
|
+
boxSize: "2",
|
|
99
|
+
rounded: "full"
|
|
100
|
+
},
|
|
101
|
+
tooltipValue: {
|
|
102
|
+
color: "fg.emphasized",
|
|
103
|
+
flex: "1",
|
|
104
|
+
textAlign: "end"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
sizes: {
|
|
108
|
+
xs: { root: { h: "xs" } },
|
|
109
|
+
sm: { root: { h: "sm" } },
|
|
110
|
+
md: { root: { h: "md" } },
|
|
111
|
+
lg: { root: { h: "lg" } },
|
|
112
|
+
xl: { root: { h: "xl" } }
|
|
113
|
+
},
|
|
114
|
+
defaultProps: { size: "md" }
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
//#endregion
|
|
118
|
+
export { chartStyle };
|
|
119
|
+
//# sourceMappingURL=chart.style.js.map
|