@mozaic-ds/web-components 1.0.0-beta.6 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -68
- package/dist/Cross20.js +1 -1
- package/dist/Cross20.js.map +1 -1
- package/dist/Cross24.js +1 -1
- package/dist/Cross24.js.map +1 -1
- package/dist/CrossCircleFilled24.js +1 -1
- package/dist/CrossCircleFilled24.js.map +1 -1
- package/dist/attributes.js +1 -1
- package/dist/attributes.js.map +1 -1
- package/dist/bundle.d.ts +24 -23
- package/dist/bundle.d.ts.map +1 -1
- package/dist/bundle.js +24 -23
- package/dist/components/avatar/Avatar.js +2 -5
- package/dist/components/avatar/Avatar.js.map +1 -1
- package/dist/components/avatar/Avatar.spec.js +17 -0
- package/dist/components/avatar/Avatar.stories.d.ts.map +1 -1
- package/dist/components/avatar/Avatar.stories.js +3 -29
- package/dist/components/avatar/Avatar.svelte +9 -10
- package/dist/components/avatar/Avatar.svelte.d.ts +2 -0
- package/dist/components/avatar/Avatar.svelte.d.ts.map +1 -1
- package/dist/components/avatar/README.md +16 -0
- package/dist/components/breadcrumb/Breadcrumb.js +6 -9
- package/dist/components/breadcrumb/Breadcrumb.js.map +1 -1
- package/dist/components/breadcrumb/Breadcrumb.spec.js +42 -0
- package/dist/components/breadcrumb/Breadcrumb.stories.d.ts.map +1 -1
- package/dist/components/breadcrumb/Breadcrumb.stories.js +6 -35
- package/dist/components/breadcrumb/Breadcrumb.svelte +26 -34
- package/dist/components/breadcrumb/Breadcrumb.svelte.d.ts.map +1 -1
- package/dist/components/breadcrumb/README.md +11 -0
- package/dist/components/button/Button.js +3 -6
- package/dist/components/button/Button.js.map +1 -1
- package/dist/components/button/Button.spec.js +74 -0
- package/dist/components/button/Button.stories.d.ts +9 -13
- package/dist/components/button/Button.stories.d.ts.map +1 -1
- package/dist/components/button/Button.stories.js +46 -146
- package/dist/components/button/Button.svelte +186 -168
- package/dist/components/button/Button.svelte.d.ts +36 -8
- package/dist/components/button/Button.svelte.d.ts.map +1 -1
- package/dist/components/button/README.md +26 -0
- package/dist/components/callout/Callout.js +2 -5
- package/dist/components/callout/Callout.js.map +1 -1
- package/dist/components/callout/Callout.spec.js +33 -0
- package/dist/components/callout/Callout.stories.d.ts.map +1 -1
- package/dist/components/callout/Callout.stories.js +2 -55
- package/dist/components/callout/Callout.svelte +15 -14
- package/dist/components/callout/Callout.svelte.d.ts +4 -0
- package/dist/components/callout/Callout.svelte.d.ts.map +1 -1
- package/dist/components/callout/README.md +20 -0
- package/dist/components/checkbox/Checkbox.js +3 -6
- package/dist/components/checkbox/Checkbox.js.map +1 -1
- package/dist/components/checkbox/Checkbox.spec.js +70 -0
- package/dist/components/checkbox/Checkbox.stories.d.ts +11 -16
- package/dist/components/checkbox/Checkbox.stories.d.ts.map +1 -1
- package/dist/components/checkbox/Checkbox.stories.js +67 -124
- package/dist/components/checkbox/Checkbox.svelte +75 -58
- package/dist/components/checkbox/Checkbox.svelte.d.ts +31 -6
- package/dist/components/checkbox/Checkbox.svelte.d.ts.map +1 -1
- package/dist/components/checkbox/README.md +17 -0
- package/dist/components/checkboxgroup/CheckboxGroup.js +4 -7
- package/dist/components/checkboxgroup/CheckboxGroup.js.map +1 -1
- package/dist/components/checkboxgroup/CheckboxGroup.spec.js +113 -0
- package/dist/components/checkboxgroup/CheckboxGroup.stories.d.ts +5 -13
- package/dist/components/checkboxgroup/CheckboxGroup.stories.d.ts.map +1 -1
- package/dist/components/checkboxgroup/CheckboxGroup.stories.js +56 -140
- package/dist/components/checkboxgroup/CheckboxGroup.svelte +89 -81
- package/dist/components/checkboxgroup/CheckboxGroup.svelte.d.ts +30 -6
- package/dist/components/checkboxgroup/CheckboxGroup.svelte.d.ts.map +1 -1
- package/dist/components/checkboxgroup/README.md +14 -0
- package/dist/components/circularprogressbar/CircularProgressbar.js +4 -7
- package/dist/components/circularprogressbar/CircularProgressbar.js.map +1 -1
- package/dist/components/circularprogressbar/CircularProgressbar.spec.js +74 -0
- package/dist/components/circularprogressbar/CircularProgressbar.stories.d.ts +6 -6
- package/dist/components/circularprogressbar/CircularProgressbar.stories.d.ts.map +1 -1
- package/dist/components/circularprogressbar/CircularProgressbar.stories.js +29 -68
- package/dist/components/circularprogressbar/CircularProgressbar.svelte +46 -30
- package/dist/components/circularprogressbar/CircularProgressbar.svelte.d.ts +18 -0
- package/dist/components/circularprogressbar/CircularProgressbar.svelte.d.ts.map +1 -1
- package/dist/components/circularprogressbar/README.md +14 -0
- package/dist/components/datepicker/Datepicker.js +3 -6
- package/dist/components/datepicker/Datepicker.js.map +1 -1
- package/dist/components/datepicker/Datepicker.spec.js +95 -0
- package/dist/components/datepicker/Datepicker.stories.d.ts +7 -6
- package/dist/components/datepicker/Datepicker.stories.d.ts.map +1 -1
- package/dist/components/datepicker/Datepicker.stories.js +58 -75
- package/dist/components/datepicker/Datepicker.svelte +103 -79
- package/dist/components/datepicker/Datepicker.svelte.d.ts +30 -1
- package/dist/components/datepicker/Datepicker.svelte.d.ts.map +1 -1
- package/dist/components/datepicker/README.md +18 -0
- package/dist/components/drawer/Drawer.js +12 -15
- package/dist/components/drawer/Drawer.js.map +1 -1
- package/dist/components/drawer/Drawer.spec.js +101 -0
- package/dist/components/drawer/Drawer.stories.d.ts +29 -8
- package/dist/components/drawer/Drawer.stories.d.ts.map +1 -1
- package/dist/components/drawer/Drawer.stories.js +86 -87
- package/dist/components/drawer/Drawer.svelte +185 -161
- package/dist/components/drawer/Drawer.svelte.d.ts +26 -3
- package/dist/components/drawer/Drawer.svelte.d.ts.map +1 -1
- package/dist/components/drawer/README.md +29 -0
- package/dist/components/field/Field.js +3 -6
- package/dist/components/field/Field.js.map +1 -1
- package/dist/components/field/Field.spec.js +51 -0
- package/dist/components/field/Field.stories.d.ts +9 -15
- package/dist/components/field/Field.stories.d.ts.map +1 -1
- package/dist/components/field/Field.stories.js +86 -142
- package/dist/components/field/Field.svelte +63 -30
- package/dist/components/field/Field.svelte.d.ts +38 -7
- package/dist/components/field/Field.svelte.d.ts.map +1 -1
- package/dist/components/field/README.md +24 -0
- package/dist/components/flag/Flag.js +2 -5
- package/dist/components/flag/Flag.js.map +1 -1
- package/dist/components/flag/Flag.spec.js +30 -0
- package/dist/components/flag/Flag.stories.d.ts +8 -18
- package/dist/components/flag/Flag.stories.d.ts.map +1 -1
- package/dist/components/flag/Flag.stories.js +28 -106
- package/dist/components/flag/Flag.svelte +23 -24
- package/dist/components/flag/Flag.svelte.d.ts +10 -28
- package/dist/components/flag/Flag.svelte.d.ts.map +1 -1
- package/dist/components/flag/README.md +11 -0
- package/dist/components/iconbutton/IconButton.js +2 -5
- package/dist/components/iconbutton/IconButton.js.map +1 -1
- package/dist/components/iconbutton/IconButton.stories.d.ts +11 -11
- package/dist/components/iconbutton/IconButton.stories.d.ts.map +1 -1
- package/dist/components/iconbutton/IconButton.stories.js +51 -67
- package/dist/components/iconbutton/IconButton.svelte +157 -152
- package/dist/components/iconbutton/IconButton.svelte.d.ts +28 -7
- package/dist/components/iconbutton/IconButton.svelte.d.ts.map +1 -1
- package/dist/components/iconbutton/README.md +21 -0
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.js +2 -5
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.js.map +1 -1
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.spec.js +28 -0
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.stories.d.ts +5 -7
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.stories.d.ts.map +1 -1
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.stories.js +18 -49
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.svelte +19 -12
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.svelte.d.ts +10 -1
- package/dist/components/linearprogressbarbuffer/LinearProgressbarBuffer.svelte.d.ts.map +1 -1
- package/dist/components/linearprogressbarbuffer/README.md +11 -0
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.js +2 -5
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.js.map +1 -1
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.spec.js +26 -0
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.stories.d.ts +4 -5
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.stories.d.ts.map +1 -1
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.stories.js +15 -33
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.svelte +19 -16
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.svelte.d.ts +6 -0
- package/dist/components/linearprogressbarpercentage/LinearProgressbarPercentage.svelte.d.ts.map +1 -1
- package/dist/components/linearprogressbarpercentage/README.md +10 -0
- package/dist/components/link/Link.js +2 -5
- package/dist/components/link/Link.js.map +1 -1
- package/dist/components/link/Link.spec.js +51 -0
- package/dist/components/link/Link.stories.d.ts +12 -12
- package/dist/components/link/Link.stories.d.ts.map +1 -1
- package/dist/components/link/Link.stories.js +61 -74
- package/dist/components/link/Link.svelte +54 -52
- package/dist/components/link/Link.svelte.d.ts +29 -8
- package/dist/components/link/Link.svelte.d.ts.map +1 -1
- package/dist/components/link/README.md +23 -0
- package/dist/components/loader/Loader.js +7 -10
- package/dist/components/loader/Loader.js.map +1 -1
- package/dist/components/loader/Loader.spec.js +54 -0
- package/dist/components/loader/Loader.stories.d.ts +8 -10
- package/dist/components/loader/Loader.stories.d.ts.map +1 -1
- package/dist/components/loader/Loader.stories.js +27 -43
- package/dist/components/loader/Loader.svelte +42 -43
- package/dist/components/loader/Loader.svelte.d.ts +14 -3
- package/dist/components/loader/Loader.svelte.d.ts.map +1 -1
- package/dist/components/loader/README.md +12 -0
- package/dist/components/loadingoverlay/LoadingOverlay.js +4 -0
- package/dist/components/loadingoverlay/LoadingOverlay.js.map +1 -0
- package/dist/components/loadingoverlay/LoadingOverlay.spec.js +38 -0
- package/dist/components/loadingoverlay/LoadingOverlay.stories.d.ts +7 -0
- package/dist/components/loadingoverlay/LoadingOverlay.stories.d.ts.map +1 -0
- package/dist/components/loadingoverlay/LoadingOverlay.stories.js +39 -0
- package/dist/components/loadingoverlay/LoadingOverlay.svelte +50 -0
- package/dist/components/loadingoverlay/LoadingOverlay.svelte.d.ts +17 -0
- package/dist/components/loadingoverlay/LoadingOverlay.svelte.d.ts.map +1 -0
- package/dist/components/loadingoverlay/README.md +11 -0
- package/dist/components/modal/Modal.js +14 -17
- package/dist/components/modal/Modal.js.map +1 -1
- package/dist/components/modal/Modal.spec.js +50 -0
- package/dist/components/modal/Modal.stories.d.ts +36 -9
- package/dist/components/modal/Modal.stories.d.ts.map +1 -1
- package/dist/components/modal/Modal.stories.js +54 -83
- package/dist/components/modal/Modal.svelte +167 -166
- package/dist/components/modal/Modal.svelte.d.ts +22 -5
- package/dist/components/modal/Modal.svelte.d.ts.map +1 -1
- package/dist/components/modal/README.md +28 -0
- package/dist/components/numberbadge/NumberBadge.js +2 -5
- package/dist/components/numberbadge/NumberBadge.js.map +1 -1
- package/dist/components/numberbadge/NumberBadge.spec.js +28 -0
- package/dist/components/numberbadge/NumberBadge.stories.d.ts +9 -13
- package/dist/components/numberbadge/NumberBadge.stories.d.ts.map +1 -1
- package/dist/components/numberbadge/NumberBadge.stories.js +28 -56
- package/dist/components/numberbadge/NumberBadge.svelte +36 -35
- package/dist/components/numberbadge/NumberBadge.svelte.d.ts +15 -4
- package/dist/components/numberbadge/NumberBadge.svelte.d.ts.map +1 -1
- package/dist/components/numberbadge/README.md +12 -0
- package/dist/components/overlay/Overlay.js +2 -5
- package/dist/components/overlay/Overlay.js.map +1 -1
- package/dist/components/overlay/Overlay.spec.js +29 -0
- package/dist/components/overlay/Overlay.stories.d.ts +5 -7
- package/dist/components/overlay/Overlay.stories.d.ts.map +1 -1
- package/dist/components/overlay/Overlay.stories.js +32 -40
- package/dist/components/overlay/Overlay.svelte +21 -12
- package/dist/components/overlay/Overlay.svelte.d.ts +11 -0
- package/dist/components/overlay/Overlay.svelte.d.ts.map +1 -1
- package/dist/components/overlay/README.md +17 -0
- package/dist/components/pagination/Pagination.js +8 -11
- package/dist/components/pagination/Pagination.js.map +1 -1
- package/dist/components/pagination/Pagination.spec.js +65 -0
- package/dist/components/pagination/Pagination.stories.d.ts +8 -11
- package/dist/components/pagination/Pagination.stories.d.ts.map +1 -1
- package/dist/components/pagination/Pagination.stories.js +37 -91
- package/dist/components/pagination/Pagination.svelte +53 -35
- package/dist/components/pagination/Pagination.svelte.d.ts +27 -4
- package/dist/components/pagination/Pagination.svelte.d.ts.map +1 -1
- package/dist/components/pagination/README.md +16 -0
- package/dist/components/passwordinput/PasswordInput.js +4 -9
- package/dist/components/passwordinput/PasswordInput.js.map +1 -1
- package/dist/components/passwordinput/PasswordInput.spec.js +84 -0
- package/dist/components/passwordinput/PasswordInput.stories.d.ts +10 -13
- package/dist/components/passwordinput/PasswordInput.stories.d.ts.map +1 -1
- package/dist/components/passwordinput/PasswordInput.stories.js +67 -124
- package/dist/components/passwordinput/PasswordInput.svelte +424 -60
- package/dist/components/passwordinput/PasswordInput.svelte.d.ts +34 -2
- package/dist/components/passwordinput/PasswordInput.svelte.d.ts.map +1 -1
- package/dist/components/passwordinput/README.md +19 -0
- package/dist/components/pincode/Pincode.js +4 -7
- package/dist/components/pincode/Pincode.js.map +1 -1
- package/dist/components/pincode/Pincode.spec.js +99 -0
- package/dist/components/pincode/Pincode.stories.d.ts +9 -13
- package/dist/components/pincode/Pincode.stories.d.ts.map +1 -1
- package/dist/components/pincode/Pincode.stories.js +62 -127
- package/dist/components/pincode/Pincode.svelte +72 -60
- package/dist/components/pincode/Pincode.svelte.d.ts +30 -24
- package/dist/components/pincode/Pincode.svelte.d.ts.map +1 -1
- package/dist/components/pincode/README.md +22 -0
- package/dist/components/quantityselector/QuantitySelector.js +3 -7
- package/dist/components/quantityselector/QuantitySelector.js.map +1 -1
- package/dist/components/quantityselector/QuantitySelector.spec.js +104 -0
- package/dist/components/quantityselector/QuantitySelector.stories.d.ts +11 -15
- package/dist/components/quantityselector/QuantitySelector.stories.d.ts.map +1 -1
- package/dist/components/quantityselector/QuantitySelector.stories.js +77 -145
- package/dist/components/quantityselector/QuantitySelector.svelte +136 -112
- package/dist/components/quantityselector/QuantitySelector.svelte.d.ts +49 -17
- package/dist/components/quantityselector/QuantitySelector.svelte.d.ts.map +1 -1
- package/dist/components/quantityselector/README.md +21 -0
- package/dist/components/radio/README.md +15 -0
- package/dist/components/radio/Radio.js +2 -5
- package/dist/components/radio/Radio.js.map +1 -1
- package/dist/components/radio/Radio.spec.js +60 -0
- package/dist/components/radio/Radio.stories.d.ts +9 -13
- package/dist/components/radio/Radio.stories.d.ts.map +1 -1
- package/dist/components/radio/Radio.stories.js +54 -70
- package/dist/components/radio/Radio.svelte +58 -39
- package/dist/components/radio/Radio.svelte.d.ts +27 -5
- package/dist/components/radio/Radio.svelte.d.ts.map +1 -1
- package/dist/components/radiogroup/README.md +14 -0
- package/dist/components/radiogroup/RadioGroup.js +4 -7
- package/dist/components/radiogroup/RadioGroup.js.map +1 -1
- package/dist/components/radiogroup/RadioGroup.spec.js +65 -0
- package/dist/components/radiogroup/RadioGroup.stories.d.ts +5 -12
- package/dist/components/radiogroup/RadioGroup.stories.d.ts.map +1 -1
- package/dist/components/radiogroup/RadioGroup.stories.js +56 -151
- package/dist/components/radiogroup/RadioGroup.svelte +81 -77
- package/dist/components/radiogroup/RadioGroup.svelte.d.ts +28 -9
- package/dist/components/radiogroup/RadioGroup.svelte.d.ts.map +1 -1
- package/dist/components/select/README.md +18 -0
- package/dist/components/select/Select.js +3 -6
- package/dist/components/select/Select.js.map +1 -1
- package/dist/components/select/Select.spec.js +76 -0
- package/dist/components/select/Select.stories.d.ts +10 -14
- package/dist/components/select/Select.stories.d.ts.map +1 -1
- package/dist/components/select/Select.stories.js +87 -92
- package/dist/components/select/Select.svelte +77 -67
- package/dist/components/select/Select.svelte.d.ts +41 -10
- package/dist/components/select/Select.svelte.d.ts.map +1 -1
- package/dist/components/statusbadge/README.md +11 -0
- package/dist/components/statusbadge/StatusBadge.js +2 -5
- package/dist/components/statusbadge/StatusBadge.js.map +1 -1
- package/dist/components/statusbadge/StatusBadge.spec.js +31 -0
- package/dist/components/statusbadge/StatusBadge.stories.d.ts +9 -12
- package/dist/components/statusbadge/StatusBadge.stories.d.ts.map +1 -1
- package/dist/components/statusbadge/StatusBadge.stories.js +21 -44
- package/dist/components/statusbadge/StatusBadge.svelte +34 -29
- package/dist/components/statusbadge/StatusBadge.svelte.d.ts +13 -28
- package/dist/components/statusbadge/StatusBadge.svelte.d.ts.map +1 -1
- package/dist/components/statusdot/README.md +11 -0
- package/dist/components/statusdot/StatusDot.js +2 -5
- package/dist/components/statusdot/StatusDot.js.map +1 -1
- package/dist/components/statusdot/StatusDot.spec.js +42 -0
- package/dist/components/statusdot/StatusDot.stories.d.ts.map +1 -1
- package/dist/components/statusdot/StatusDot.stories.js +9 -37
- package/dist/components/statusdot/StatusDot.svelte +15 -16
- package/dist/components/statusdot/StatusDot.svelte.d.ts +2 -2
- package/dist/components/statusdot/StatusDot.svelte.d.ts.map +1 -1
- package/dist/components/statusnotification/README.md +25 -0
- package/dist/components/statusnotification/StatusNotification.js +3 -6
- package/dist/components/statusnotification/StatusNotification.js.map +1 -1
- package/dist/components/statusnotification/StatusNotification.spec.js +54 -0
- package/dist/components/statusnotification/StatusNotification.stories.d.ts +16 -14
- package/dist/components/statusnotification/StatusNotification.stories.d.ts.map +1 -1
- package/dist/components/statusnotification/StatusNotification.stories.js +53 -86
- package/dist/components/statusnotification/StatusNotification.svelte +186 -187
- package/dist/components/statusnotification/StatusNotification.svelte.d.ts +21 -18
- package/dist/components/statusnotification/StatusNotification.svelte.d.ts.map +1 -1
- package/dist/components/tab/README.md +20 -0
- package/dist/components/tab/Tab.js +4 -0
- package/dist/components/tab/Tab.js.map +1 -0
- package/dist/components/tab/Tab.spec.js +58 -0
- package/dist/components/tab/Tab.svelte +154 -0
- package/dist/components/{tabs → tab}/Tab.svelte.d.ts +20 -3
- package/dist/components/tab/Tab.svelte.d.ts.map +1 -0
- package/dist/components/tabs/README.md +18 -0
- package/dist/components/tabs/Tabs.js +2 -5
- package/dist/components/tabs/Tabs.js.map +1 -1
- package/dist/components/tabs/Tabs.spec.js +51 -0
- package/dist/components/tabs/Tabs.stories.d.ts +9 -6
- package/dist/components/tabs/Tabs.stories.d.ts.map +1 -1
- package/dist/components/tabs/Tabs.stories.js +59 -115
- package/dist/components/tabs/Tabs.svelte +46 -29
- package/dist/components/tabs/Tabs.svelte.d.ts +21 -7
- package/dist/components/tabs/Tabs.svelte.d.ts.map +1 -1
- package/dist/components/tags/README.md +9 -0
- package/dist/components/tags/Tag.js +2 -5
- package/dist/components/tags/Tag.js.map +1 -1
- package/dist/components/tags/Tag.svelte +35 -38
- package/dist/components/tags/TagContextualised.js +2 -5
- package/dist/components/tags/TagContextualised.js.map +1 -1
- package/dist/components/tags/TagContextualised.svelte +35 -38
- package/dist/components/tags/TagInteractive.js +2 -5
- package/dist/components/tags/TagInteractive.js.map +1 -1
- package/dist/components/tags/TagInteractive.svelte +35 -38
- package/dist/components/tags/TagRemovable.js +2 -5
- package/dist/components/tags/TagRemovable.js.map +1 -1
- package/dist/components/tags/TagRemovable.svelte +35 -38
- package/dist/components/tags/TagSelectable.js +2 -5
- package/dist/components/tags/TagSelectable.js.map +1 -1
- package/dist/components/tags/TagSelectable.svelte +35 -38
- package/dist/components/tags/Tags.stories.d.ts.map +1 -1
- package/dist/components/tags/Tags.stories.js +7 -1
- package/dist/components/tags/TagsContextualised.stories.d.ts.map +1 -1
- package/dist/components/tags/TagsContextualised.stories.js +7 -1
- package/dist/components/tags/TagsInteractive.stories.d.ts.map +1 -1
- package/dist/components/tags/TagsInteractive.stories.js +7 -1
- package/dist/components/tags/TagsRemovable.stories.d.ts.map +1 -1
- package/dist/components/tags/TagsRemovable.stories.js +7 -1
- package/dist/components/tags/TagsSelectable.stories.d.ts.map +1 -1
- package/dist/components/tags/TagsSelectable.stories.js +7 -1
- package/dist/components/textarea/README.md +19 -0
- package/dist/components/textarea/Textarea.js +2 -8
- package/dist/components/textarea/Textarea.js.map +1 -1
- package/dist/components/textarea/Textarea.spec.js +67 -0
- package/dist/components/textarea/Textarea.stories.d.ts +9 -13
- package/dist/components/textarea/Textarea.stories.d.ts.map +1 -1
- package/dist/components/textarea/Textarea.stories.js +61 -92
- package/dist/components/textarea/Textarea.svelte +70 -117
- package/dist/components/textarea/Textarea.svelte.d.ts +43 -13
- package/dist/components/textarea/Textarea.svelte.d.ts.map +1 -1
- package/dist/components/textinput/README.md +26 -0
- package/dist/components/textinput/Textinput.js +5 -9
- package/dist/components/textinput/Textinput.js.map +1 -1
- package/dist/components/textinput/Textinput.spec.js +89 -0
- package/dist/components/textinput/Textinput.stories.d.ts +11 -12
- package/dist/components/textinput/Textinput.stories.d.ts.map +1 -1
- package/dist/components/textinput/Textinput.stories.js +78 -137
- package/dist/components/textinput/Textinput.svelte +107 -148
- package/dist/components/textinput/Textinput.svelte.d.ts +46 -22
- package/dist/components/textinput/Textinput.svelte.d.ts.map +1 -1
- package/dist/components/toaster/README.md +28 -0
- package/dist/components/toaster/Toaster.js +5 -8
- package/dist/components/toaster/Toaster.js.map +1 -1
- package/dist/components/toaster/Toaster.spec.js +100 -0
- package/dist/components/toaster/Toaster.stories.d.ts.map +1 -1
- package/dist/components/toaster/Toaster.stories.js +5 -73
- package/dist/components/toaster/Toaster.svelte +157 -146
- package/dist/components/toaster/Toaster.svelte.d.ts +3 -0
- package/dist/components/toaster/Toaster.svelte.d.ts.map +1 -1
- package/dist/components/toggle/README.md +15 -0
- package/dist/components/toggle/Toggle.js +2 -5
- package/dist/components/toggle/Toggle.js.map +1 -1
- package/dist/components/toggle/Toggle.spec.js +69 -0
- package/dist/components/toggle/Toggle.stories.d.ts +9 -14
- package/dist/components/toggle/Toggle.stories.d.ts.map +1 -1
- package/dist/components/toggle/Toggle.stories.js +55 -64
- package/dist/components/toggle/Toggle.svelte +59 -48
- package/dist/components/toggle/Toggle.svelte.d.ts +26 -7
- package/dist/components/toggle/Toggle.svelte.d.ts.map +1 -1
- package/dist/components/togglegroup/README.md +13 -0
- package/dist/components/togglegroup/ToggleGroup.js +3 -6
- package/dist/components/togglegroup/ToggleGroup.js.map +1 -1
- package/dist/components/togglegroup/ToggleGroup.spec.js +50 -0
- package/dist/components/togglegroup/ToggleGroup.stories.d.ts +5 -13
- package/dist/components/togglegroup/ToggleGroup.stories.d.ts.map +1 -1
- package/dist/components/togglegroup/ToggleGroup.stories.js +56 -104
- package/dist/components/togglegroup/ToggleGroup.svelte +91 -97
- package/dist/components/togglegroup/ToggleGroup.svelte.d.ts +25 -14
- package/dist/components/togglegroup/ToggleGroup.svelte.d.ts.map +1 -1
- package/dist/components/tooltip/README.md +19 -0
- package/dist/components/tooltip/Tooltip.js +4 -7
- package/dist/components/tooltip/Tooltip.js.map +1 -1
- package/dist/components/tooltip/Tooltip.spec.js +38 -0
- package/dist/components/tooltip/Tooltip.stories.d.ts +6 -7
- package/dist/components/tooltip/Tooltip.stories.d.ts.map +1 -1
- package/dist/components/tooltip/Tooltip.stories.js +45 -59
- package/dist/components/tooltip/Tooltip.svelte +31 -25
- package/dist/components/tooltip/Tooltip.svelte.d.ts +17 -0
- package/dist/components/tooltip/Tooltip.svelte.d.ts.map +1 -1
- package/dist/custom-element-forward-events.js.map +1 -1
- package/dist/custom-element.js +3 -3
- package/dist/custom-element.js.map +1 -1
- package/dist/documentation/Contributing.mdx +1 -1
- package/dist/documentation/Introduction.mdx +45 -11
- package/dist/documentation/SupportAndOnboarding.mdx +2 -2
- package/dist/each.js +1 -1
- package/dist/each.js.map +1 -1
- package/dist/if.js +1 -1
- package/dist/if.js.map +1 -1
- package/dist/input.js +1 -1
- package/dist/input.js.map +1 -1
- package/dist/legacy.js +1 -1
- package/dist/legacy.js.map +1 -1
- package/dist/main.d.ts +24 -23
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +24 -23
- package/dist/slot.js +1 -1
- package/dist/slot.js.map +1 -1
- package/dist/this.js +2 -0
- package/dist/this.js.map +1 -0
- package/package.json +12 -4
- package/dist/components/button/button.types.d.ts +0 -13
- package/dist/components/button/button.types.d.ts.map +0 -1
- package/dist/components/button/button.types.js +0 -1
- package/dist/components/checkboxgroup/checkboxgroup.types.d.ts +0 -9
- package/dist/components/checkboxgroup/checkboxgroup.types.d.ts.map +0 -1
- package/dist/components/checkboxgroup/checkboxgroup.types.js +0 -1
- package/dist/components/link/link.types.d.ts +0 -4
- package/dist/components/link/link.types.d.ts.map +0 -1
- package/dist/components/link/link.types.js +0 -1
- package/dist/components/loader/loader.types.d.ts +0 -3
- package/dist/components/loader/loader.types.d.ts.map +0 -1
- package/dist/components/loader/loader.types.js +0 -1
- package/dist/components/numberbadge/NumberBadge.types.d.ts +0 -3
- package/dist/components/numberbadge/NumberBadge.types.d.ts.map +0 -1
- package/dist/components/numberbadge/NumberBadge.types.js +0 -1
- package/dist/components/overlayloader/OverlayLoader.js +0 -30
- package/dist/components/overlayloader/OverlayLoader.js.map +0 -1
- package/dist/components/overlayloader/OverlayLoader.stories.d.ts +0 -8
- package/dist/components/overlayloader/OverlayLoader.stories.d.ts.map +0 -1
- package/dist/components/overlayloader/OverlayLoader.stories.js +0 -50
- package/dist/components/overlayloader/OverlayLoader.svelte +0 -159
- package/dist/components/overlayloader/OverlayLoader.svelte.d.ts +0 -9
- package/dist/components/overlayloader/OverlayLoader.svelte.d.ts.map +0 -1
- package/dist/components/quantityselector/quantitySelector.types.d.ts +0 -2
- package/dist/components/quantityselector/quantitySelector.types.d.ts.map +0 -1
- package/dist/components/quantityselector/quantitySelector.types.js +0 -1
- package/dist/components/radiogroup/radioGroup.types.d.ts +0 -9
- package/dist/components/radiogroup/radioGroup.types.d.ts.map +0 -1
- package/dist/components/radiogroup/radioGroup.types.js +0 -1
- package/dist/components/select/select.types.d.ts +0 -9
- package/dist/components/select/select.types.d.ts.map +0 -1
- package/dist/components/select/select.types.js +0 -1
- package/dist/components/statusbadge/StatusBadge.types.d.ts +0 -2
- package/dist/components/statusbadge/StatusBadge.types.d.ts.map +0 -1
- package/dist/components/statusbadge/StatusBadge.types.js +0 -1
- package/dist/components/statusdot/StatusDot.types.d.ts +0 -3
- package/dist/components/statusdot/StatusDot.types.d.ts.map +0 -1
- package/dist/components/statusdot/StatusDot.types.js +0 -1
- package/dist/components/tabs/Tab.js +0 -7
- package/dist/components/tabs/Tab.js.map +0 -1
- package/dist/components/tabs/Tab.svelte +0 -137
- package/dist/components/tabs/Tab.svelte.d.ts.map +0 -1
- package/dist/components/textinput/textinput.types.d.ts +0 -3
- package/dist/components/textinput/textinput.types.d.ts.map +0 -1
- package/dist/components/textinput/textinput.types.js +0 -1
- package/dist/components/toggle/toggle.types.d.ts +0 -2
- package/dist/components/toggle/toggle.types.d.ts.map +0 -1
- package/dist/components/toggle/toggle.types.js +0 -1
- package/dist/index-client.js +0 -2
- package/dist/index-client.js.map +0 -1
- package/dist/snippet.js +0 -2
- package/dist/snippet.js.map +0 -1
|
@@ -4,49 +4,78 @@
|
|
|
4
4
|
import ArrowBack24 from '@mozaic-ds/icons-svelte/svelte/ArrowBack24/ArrowBack24.svelte';
|
|
5
5
|
import Cross24 from '@mozaic-ds/icons-svelte/svelte/Cross24/Cross24.svelte';
|
|
6
6
|
import MOverlay from '../overlay/Overlay.svelte';
|
|
7
|
-
|
|
7
|
+
/**
|
|
8
|
+
* A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
|
|
9
|
+
*
|
|
10
|
+
* @slot default - Use this slot to insert the content of the drawer
|
|
11
|
+
* @slot footer - Use this slot to insert buttons in the footer
|
|
12
|
+
* @event update:open {CustomEvent<boolean>} - Emits when the drawer open state changes.
|
|
13
|
+
* @event back {CustomEvent<void>} - Emits when click back button of the drawer.
|
|
14
|
+
*/
|
|
8
15
|
interface Props {
|
|
16
|
+
/**
|
|
17
|
+
* If `true`, display the drawer.
|
|
18
|
+
*/
|
|
9
19
|
open?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Position of the drawer.
|
|
22
|
+
*/
|
|
10
23
|
position?: 'left' | 'right';
|
|
24
|
+
/**
|
|
25
|
+
* If `true`, the drawer have a bigger width.
|
|
26
|
+
*/
|
|
11
27
|
extended?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* If `true`, display the back button.
|
|
30
|
+
*/
|
|
12
31
|
back?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Title of the drawer.
|
|
34
|
+
*/
|
|
13
35
|
title: string;
|
|
36
|
+
/**
|
|
37
|
+
* Title of the content of the drawer.
|
|
38
|
+
*/
|
|
14
39
|
contentTitle?: string;
|
|
15
|
-
updateopen?: (value: boolean) => void;
|
|
16
|
-
backfn?: () => void;
|
|
17
|
-
[key: string]: any;
|
|
18
40
|
}
|
|
19
41
|
|
|
20
|
-
let {
|
|
21
|
-
|
|
22
|
-
position = 'right',
|
|
23
|
-
extended = false,
|
|
24
|
-
back = false,
|
|
25
|
-
title = '',
|
|
26
|
-
contentTitle = '',
|
|
27
|
-
updateopen = () => {},
|
|
28
|
-
backfn = () => {},
|
|
29
|
-
}: Props = $props();
|
|
42
|
+
let { open, position, extended, back, title, contentTitle }: Props = $props();
|
|
43
|
+
let element: HTMLElement;
|
|
30
44
|
|
|
31
|
-
|
|
45
|
+
const onClose = () => {
|
|
32
46
|
open = false;
|
|
33
|
-
updateopen(false);
|
|
34
|
-
}
|
|
35
47
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
48
|
+
const event = new CustomEvent('update:open', {
|
|
49
|
+
detail: open,
|
|
50
|
+
bubbles: true,
|
|
51
|
+
composed: true,
|
|
52
|
+
});
|
|
53
|
+
element.dispatchEvent(event);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const onBack = () => {
|
|
57
|
+
const event = new CustomEvent('back', {
|
|
58
|
+
bubbles: true,
|
|
59
|
+
composed: true,
|
|
60
|
+
});
|
|
61
|
+
element.dispatchEvent(event);
|
|
62
|
+
};
|
|
39
63
|
</script>
|
|
40
64
|
|
|
41
|
-
<
|
|
42
|
-
class={
|
|
43
|
-
|
|
44
|
-
|
|
65
|
+
<div
|
|
66
|
+
class={[
|
|
67
|
+
'mc-drawer',
|
|
68
|
+
`mc-drawer--${position}`,
|
|
69
|
+
open && 'is-open',
|
|
70
|
+
extended && 'mc-drawer--extend',
|
|
71
|
+
]}
|
|
72
|
+
role="dialog"
|
|
45
73
|
aria-labelledby="drawerTitle"
|
|
46
74
|
aria-modal={open ? 'true' : 'false'}
|
|
47
75
|
tabindex="-1"
|
|
48
76
|
aria-hidden={!open}
|
|
49
|
-
|
|
77
|
+
onkeydown={(e) => e.key === 'Escape' && onClose()}
|
|
78
|
+
bind:this={element}
|
|
50
79
|
>
|
|
51
80
|
<div class="mc-drawer__dialog" role="document">
|
|
52
81
|
<div class="mc-drawer__header">
|
|
@@ -54,7 +83,7 @@
|
|
|
54
83
|
<button
|
|
55
84
|
class="mc-drawer__back mc-button mc-button--icon-button mc-button--ghost"
|
|
56
85
|
aria-label="Back"
|
|
57
|
-
|
|
86
|
+
onclick={onBack}
|
|
58
87
|
>
|
|
59
88
|
<ArrowBack24 aria-hidden="true" />
|
|
60
89
|
</button>
|
|
@@ -63,14 +92,14 @@
|
|
|
63
92
|
<button
|
|
64
93
|
class="mc-drawer__close mc-button mc-button--icon-button mc-button--ghost"
|
|
65
94
|
aria-label="Close"
|
|
66
|
-
|
|
95
|
+
onclick={onClose}
|
|
67
96
|
>
|
|
68
97
|
<Cross24 aria-hidden="true" />
|
|
69
98
|
</button>
|
|
70
99
|
</div>
|
|
71
100
|
|
|
72
101
|
<div class="mc-drawer__body">
|
|
73
|
-
<div class="mc-drawer__content"
|
|
102
|
+
<div class="mc-drawer__content">
|
|
74
103
|
{#if contentTitle}
|
|
75
104
|
<h2 class="mc-drawer__content__title">{contentTitle}</h2>
|
|
76
105
|
{/if}
|
|
@@ -78,21 +107,16 @@
|
|
|
78
107
|
</div>
|
|
79
108
|
</div>
|
|
80
109
|
|
|
81
|
-
|
|
82
|
-
<
|
|
83
|
-
|
|
84
|
-
</div>
|
|
85
|
-
{/if}
|
|
110
|
+
<div class="mc-drawer__footer">
|
|
111
|
+
<slot name="footer" />
|
|
112
|
+
</div>
|
|
86
113
|
</div>
|
|
87
114
|
<MOverlay isvisible={open} dialoglabel="drawerTitle" />
|
|
88
|
-
</
|
|
115
|
+
</div>
|
|
89
116
|
|
|
90
117
|
<style>/**
|
|
91
118
|
* Do not edit directly, this file was auto-generated.
|
|
92
119
|
*/
|
|
93
|
-
/**
|
|
94
|
-
* Do not edit directly, this file was auto-generated.
|
|
95
|
-
*/
|
|
96
120
|
.mc-drawer {
|
|
97
121
|
box-sizing: border-box;
|
|
98
122
|
inset: 0;
|
|
@@ -121,7 +145,7 @@
|
|
|
121
145
|
}
|
|
122
146
|
}
|
|
123
147
|
.mc-drawer__dialog {
|
|
124
|
-
background: #ffffff;
|
|
148
|
+
background: var(--drawer-color-background, #ffffff);
|
|
125
149
|
display: flex;
|
|
126
150
|
flex-direction: column;
|
|
127
151
|
height: 100%;
|
|
@@ -131,7 +155,7 @@
|
|
|
131
155
|
visibility: hidden;
|
|
132
156
|
width: 100%;
|
|
133
157
|
z-index: var(--drawer-z-index, 3);
|
|
134
|
-
border-radius: 1rem;
|
|
158
|
+
border-radius: var(--radius-l, 1rem);
|
|
135
159
|
}
|
|
136
160
|
@media (width >= 680px) {
|
|
137
161
|
.mc-drawer__dialog {
|
|
@@ -150,9 +174,9 @@
|
|
|
150
174
|
width: 1.5rem;
|
|
151
175
|
}
|
|
152
176
|
.mc-drawer__title {
|
|
153
|
-
font-size: 0.875rem;
|
|
154
|
-
font-weight: 600;
|
|
155
|
-
color: #666666;
|
|
177
|
+
font-size: var(--font-body-s, 0.875rem);
|
|
178
|
+
font-weight: var(--font-weight-semi-bold, 600);
|
|
179
|
+
color: var(--drawer-color-title, #666666);
|
|
156
180
|
margin-bottom: 0;
|
|
157
181
|
margin-top: 0;
|
|
158
182
|
text-align: center;
|
|
@@ -176,7 +200,7 @@
|
|
|
176
200
|
max-height: 100%;
|
|
177
201
|
overflow: hidden auto;
|
|
178
202
|
padding: 0.5rem 1rem 0;
|
|
179
|
-
color: #000000;
|
|
203
|
+
color: var(--drawer-color-paragraph, #000000);
|
|
180
204
|
}
|
|
181
205
|
@media (width >= 680px) {
|
|
182
206
|
.mc-drawer__content {
|
|
@@ -184,7 +208,7 @@
|
|
|
184
208
|
}
|
|
185
209
|
}
|
|
186
210
|
.mc-drawer__content__title {
|
|
187
|
-
font-size: 1.5rem;
|
|
211
|
+
font-size: var(--font-title-m, 1.5rem);
|
|
188
212
|
margin: 0 0 0.5rem;
|
|
189
213
|
}
|
|
190
214
|
.mc-drawer__footer {
|
|
@@ -192,7 +216,7 @@
|
|
|
192
216
|
flex-direction: column;
|
|
193
217
|
gap: 1rem;
|
|
194
218
|
padding: 1rem 1.5rem;
|
|
195
|
-
border-top: 1px solid #cccccc;
|
|
219
|
+
border-top: var(--border-s, 1px) solid var(--divider-color-primary, #cccccc);
|
|
196
220
|
}
|
|
197
221
|
@media (width >= 680px) {
|
|
198
222
|
.mc-drawer__footer {
|
|
@@ -211,18 +235,37 @@
|
|
|
211
235
|
}
|
|
212
236
|
|
|
213
237
|
.mc-button {
|
|
214
|
-
color: #ffffff;
|
|
215
|
-
background-color: #464e63;
|
|
216
|
-
|
|
238
|
+
color: var(--button-color-filled-standard-font, #ffffff);
|
|
239
|
+
background-color: var(--button-color-filled-standard-background, #464e63);
|
|
240
|
+
}
|
|
241
|
+
.mc-button:hover {
|
|
242
|
+
background-color: var(--button-color-filled-standard-hover-background, #343b4c);
|
|
243
|
+
}
|
|
244
|
+
.mc-button:active {
|
|
245
|
+
background-color: var(--button-color-filled-standard-active-background, #242938);
|
|
246
|
+
}
|
|
247
|
+
.mc-button:disabled {
|
|
248
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
249
|
+
border-color: transparent;
|
|
250
|
+
color: var(--button-state-disabled-color, #737373);
|
|
251
|
+
cursor: not-allowed;
|
|
252
|
+
}
|
|
253
|
+
.mc-button {
|
|
254
|
+
font-weight: var(--font-weight-semi-bold, 600);
|
|
217
255
|
padding: 0 calc(1rem - 0.125rem);
|
|
218
256
|
min-height: 3rem;
|
|
219
257
|
min-width: 3rem;
|
|
258
|
+
}
|
|
259
|
+
.mc-button .mc-button__label {
|
|
260
|
+
font-size: var(--font-size-150, 1rem);
|
|
261
|
+
}
|
|
262
|
+
.mc-button {
|
|
220
263
|
display: inline-flex;
|
|
221
264
|
justify-content: center;
|
|
222
265
|
vertical-align: middle;
|
|
223
266
|
text-align: center;
|
|
224
267
|
border: 2px solid transparent;
|
|
225
|
-
border-radius: 0.25rem;
|
|
268
|
+
border-radius: var(--button-radius, 0.25rem);
|
|
226
269
|
transition: all ease 200ms;
|
|
227
270
|
transition: box-shadow 200ms ease;
|
|
228
271
|
align-items: center;
|
|
@@ -232,23 +275,8 @@
|
|
|
232
275
|
gap: 0.25rem;
|
|
233
276
|
cursor: pointer;
|
|
234
277
|
}
|
|
235
|
-
.mc-button:hover {
|
|
236
|
-
background-color: #343b4c;
|
|
237
|
-
}
|
|
238
|
-
.mc-button:active {
|
|
239
|
-
background-color: #242938;
|
|
240
|
-
}
|
|
241
|
-
.mc-button:disabled {
|
|
242
|
-
background-color: #d9d9d9;
|
|
243
|
-
border-color: transparent;
|
|
244
|
-
color: #737373;
|
|
245
|
-
cursor: not-allowed;
|
|
246
|
-
}
|
|
247
|
-
.mc-button .mc-button__label {
|
|
248
|
-
font-size: 1rem;
|
|
249
|
-
}
|
|
250
278
|
.mc-button__label {
|
|
251
|
-
font-size: 1rem;
|
|
279
|
+
font-size: var(--font-size-150, 1rem);
|
|
252
280
|
}
|
|
253
281
|
.mc-button__icon {
|
|
254
282
|
flex-shrink: 0;
|
|
@@ -256,13 +284,13 @@
|
|
|
256
284
|
height: 1.5rem;
|
|
257
285
|
}
|
|
258
286
|
.mc-button:disabled {
|
|
259
|
-
background-color: #d9d9d9;
|
|
287
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
260
288
|
border-color: transparent;
|
|
261
|
-
color: #737373;
|
|
289
|
+
color: var(--button-state-disabled-color, #737373);
|
|
262
290
|
cursor: not-allowed;
|
|
263
291
|
}
|
|
264
292
|
.mc-button:focus-visible {
|
|
265
|
-
box-shadow: 0 0 0 0.125rem var(--focus-color-mid, #ffffff), 0 0 0 0.25rem var(--focus-color-outer, #000000);
|
|
293
|
+
box-shadow: 0 0 0 0.125rem var(--focus-color-mid, var(--focus-color-outline-mid, #ffffff)), 0 0 0 0.25rem var(--focus-color-outer, var(--focus-color-outline-outer, #000000));
|
|
266
294
|
outline: 0.125rem solid transparent;
|
|
267
295
|
outline-offset: 0.125rem;
|
|
268
296
|
}
|
|
@@ -272,7 +300,7 @@
|
|
|
272
300
|
min-width: 2rem;
|
|
273
301
|
}
|
|
274
302
|
.mc-button--s .mc-button__label {
|
|
275
|
-
font-size: 0.875rem;
|
|
303
|
+
font-size: var(--font-size-100, 0.875rem);
|
|
276
304
|
}
|
|
277
305
|
.mc-button--s .mc-button__icon {
|
|
278
306
|
width: 1.25rem;
|
|
@@ -288,7 +316,7 @@
|
|
|
288
316
|
min-width: 3rem;
|
|
289
317
|
}
|
|
290
318
|
.mc-button--m .mc-button__label {
|
|
291
|
-
font-size: 1rem;
|
|
319
|
+
font-size: var(--font-size-150, 1rem);
|
|
292
320
|
}
|
|
293
321
|
.mc-button--m .mc-button__icon {
|
|
294
322
|
width: 1.5rem;
|
|
@@ -304,7 +332,7 @@
|
|
|
304
332
|
min-width: 4rem;
|
|
305
333
|
}
|
|
306
334
|
.mc-button--l .mc-button__label {
|
|
307
|
-
font-size: 1.125rem;
|
|
335
|
+
font-size: var(--font-size-200, 1.125rem);
|
|
308
336
|
}
|
|
309
337
|
.mc-button--l .mc-button__icon {
|
|
310
338
|
width: 2rem;
|
|
@@ -318,90 +346,90 @@
|
|
|
318
346
|
padding: 0.25rem;
|
|
319
347
|
}
|
|
320
348
|
.mc-button--outlined {
|
|
321
|
-
color: #242938;
|
|
322
|
-
border-color: #8891aa;
|
|
323
|
-
background-color: #ffffff;
|
|
349
|
+
color: var(--button-color-outlined-standard-font, #242938);
|
|
350
|
+
border-color: var(--button-color-outlined-standard-border, #8891aa);
|
|
351
|
+
background-color: var(--button-color-outlined-standard-background, #ffffff);
|
|
324
352
|
}
|
|
325
353
|
.mc-button--outlined:hover {
|
|
326
|
-
background-color: #eff1f6;
|
|
354
|
+
background-color: var(--button-color-outlined-standard-hover-background, #eff1f6);
|
|
327
355
|
}
|
|
328
356
|
.mc-button--outlined:active {
|
|
329
|
-
background-color: #c9d0de;
|
|
357
|
+
background-color: var(--button-color-outlined-standard-active-background, #c9d0de);
|
|
330
358
|
}
|
|
331
359
|
.mc-button--outlined:disabled {
|
|
332
|
-
background-color: #d9d9d9;
|
|
360
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
333
361
|
border-color: transparent;
|
|
334
|
-
color: #737373;
|
|
362
|
+
color: var(--button-state-disabled-color, #737373);
|
|
335
363
|
cursor: not-allowed;
|
|
336
364
|
}
|
|
337
365
|
.mc-button--ghost {
|
|
338
|
-
color: #242938;
|
|
339
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
366
|
+
color: var(--button-color-ghost-standard-font, #242938);
|
|
367
|
+
background-color: var(--button-color-ghost-standard-background, rgba(255, 255, 255, 0.01));
|
|
340
368
|
}
|
|
341
369
|
.mc-button--ghost:hover {
|
|
342
|
-
background-color: rgba(70, 78, 99, 0.1);
|
|
370
|
+
background-color: var(--button-color-ghost-standard-hover-background, rgba(70, 78, 99, 0.1));
|
|
343
371
|
}
|
|
344
372
|
.mc-button--ghost:active {
|
|
345
|
-
background-color: rgba(70, 78, 99, 0.2);
|
|
373
|
+
background-color: var(--button-color-ghost-standard-active-background, rgba(70, 78, 99, 0.2));
|
|
346
374
|
}
|
|
347
375
|
.mc-button--ghost:disabled {
|
|
348
|
-
background-color: #d9d9d9;
|
|
376
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
349
377
|
border-color: transparent;
|
|
350
|
-
color: #737373;
|
|
378
|
+
color: var(--button-state-disabled-color, #737373);
|
|
351
379
|
cursor: not-allowed;
|
|
352
380
|
}
|
|
353
381
|
.mc-button--accent {
|
|
354
|
-
color: #ffffff;
|
|
355
|
-
background-color: #117f03;
|
|
382
|
+
color: var(--button-color-filled-accent-font, #ffffff);
|
|
383
|
+
background-color: var(--button-color-filled-accent-background, #117f03);
|
|
356
384
|
}
|
|
357
385
|
.mc-button--accent:hover {
|
|
358
|
-
background-color: #006902;
|
|
386
|
+
background-color: var(--button-color-filled-accent-hover-background, #006902);
|
|
359
387
|
}
|
|
360
388
|
.mc-button--accent:active {
|
|
361
|
-
background-color: #035010;
|
|
389
|
+
background-color: var(--button-color-filled-accent-active-background, #035010);
|
|
362
390
|
}
|
|
363
391
|
.mc-button--accent:disabled {
|
|
364
|
-
background-color: #d9d9d9;
|
|
392
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
365
393
|
border-color: transparent;
|
|
366
|
-
color: #737373;
|
|
394
|
+
color: var(--button-state-disabled-color, #737373);
|
|
367
395
|
cursor: not-allowed;
|
|
368
396
|
}
|
|
369
397
|
.mc-button--danger {
|
|
370
|
-
color: #ffffff;
|
|
371
|
-
background-color: #c61112;
|
|
398
|
+
color: var(--button-color-filled-danger-font, #ffffff);
|
|
399
|
+
background-color: var(--button-color-filled-danger-background, #c61112);
|
|
372
400
|
}
|
|
373
401
|
.mc-button--danger:hover {
|
|
374
|
-
background-color: #8c0003;
|
|
402
|
+
background-color: var(--button-color-filled-danger-hover-background, #8c0003);
|
|
375
403
|
}
|
|
376
404
|
.mc-button--danger:active {
|
|
377
|
-
background-color: #530000;
|
|
405
|
+
background-color: var(--button-color-filled-danger-active-background, #530000);
|
|
378
406
|
}
|
|
379
407
|
.mc-button--danger:disabled {
|
|
380
|
-
background-color: #d9d9d9;
|
|
408
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
381
409
|
border-color: transparent;
|
|
382
|
-
color: #737373;
|
|
410
|
+
color: var(--button-state-disabled-color, #737373);
|
|
383
411
|
cursor: not-allowed;
|
|
384
412
|
}
|
|
385
413
|
.mc-button--inverse {
|
|
386
|
-
--focus-color-mid: #000000;
|
|
387
|
-
--focus-color-outer: #ffffff;
|
|
388
|
-
color: #242938;
|
|
389
|
-
background-color: #ffffff;
|
|
414
|
+
--focus-color-mid: var(--focus-color-outline-outer, #000000);
|
|
415
|
+
--focus-color-outer: var(--focus-color-outline-mid, #ffffff);
|
|
416
|
+
color: var(--button-color-filled-inverse-font, #242938);
|
|
417
|
+
background-color: var(--button-color-filled-inverse-background, #ffffff);
|
|
390
418
|
}
|
|
391
419
|
.mc-button--inverse:hover {
|
|
392
|
-
background-color: #e6e6e6;
|
|
420
|
+
background-color: var(--button-color-filled-inverse-hover-background, #e6e6e6);
|
|
393
421
|
}
|
|
394
422
|
.mc-button--inverse:active {
|
|
395
|
-
background-color: #cccccc;
|
|
423
|
+
background-color: var(--button-color-filled-inverse-active-background, #cccccc);
|
|
396
424
|
}
|
|
397
425
|
.mc-button--inverse:disabled {
|
|
398
|
-
background-color: #d9d9d9;
|
|
426
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
399
427
|
border-color: transparent;
|
|
400
|
-
color: #737373;
|
|
428
|
+
color: var(--button-state-disabled-color, #737373);
|
|
401
429
|
cursor: not-allowed;
|
|
402
430
|
}
|
|
403
431
|
.mc-button--icon-button {
|
|
404
|
-
border-radius: 100
|
|
432
|
+
border-radius: var(--radius-full, 100%);
|
|
405
433
|
padding: 0;
|
|
406
434
|
}
|
|
407
435
|
.mc-button--loading .mc-button__loader {
|
|
@@ -413,138 +441,134 @@
|
|
|
413
441
|
visibility: hidden;
|
|
414
442
|
}
|
|
415
443
|
.mc-button--outlined.mc-button--standard {
|
|
416
|
-
color: #242938;
|
|
417
|
-
border-color: #8891aa;
|
|
418
|
-
background-color: #ffffff;
|
|
444
|
+
color: var(--button-color-outlined-standard-font, #242938);
|
|
445
|
+
border-color: var(--button-color-outlined-standard-border, #8891aa);
|
|
446
|
+
background-color: var(--button-color-outlined-standard-background, #ffffff);
|
|
419
447
|
}
|
|
420
448
|
.mc-button--outlined.mc-button--standard:hover {
|
|
421
|
-
background-color: #eff1f6;
|
|
449
|
+
background-color: var(--button-color-outlined-standard-hover-background, #eff1f6);
|
|
422
450
|
}
|
|
423
451
|
.mc-button--outlined.mc-button--standard:active {
|
|
424
|
-
background-color: #c9d0de;
|
|
452
|
+
background-color: var(--button-color-outlined-standard-active-background, #c9d0de);
|
|
425
453
|
}
|
|
426
454
|
.mc-button--outlined.mc-button--standard:disabled {
|
|
427
|
-
background-color: #d9d9d9;
|
|
455
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
428
456
|
border-color: transparent;
|
|
429
|
-
color: #737373;
|
|
457
|
+
color: var(--button-state-disabled-color, #737373);
|
|
430
458
|
cursor: not-allowed;
|
|
431
459
|
}
|
|
432
460
|
.mc-button--outlined.mc-button--accent {
|
|
433
|
-
color: #117f03;
|
|
434
|
-
border-color: #78be20;
|
|
435
|
-
background-color: #ffffff;
|
|
461
|
+
color: var(--button-color-outlined-accent-font, #117f03);
|
|
462
|
+
border-color: var(--button-color-outlined-accent-border, #78be20);
|
|
463
|
+
background-color: var(--button-color-outlined-accent-background, #ffffff);
|
|
436
464
|
}
|
|
437
465
|
.mc-button--outlined.mc-button--accent:hover {
|
|
438
|
-
background-color: #ebf5de;
|
|
466
|
+
background-color: var(--button-color-outlined-accent-hover-background, #ebf5de);
|
|
439
467
|
}
|
|
440
468
|
.mc-button--outlined.mc-button--accent:active {
|
|
441
|
-
background-color: #c5e39e;
|
|
469
|
+
background-color: var(--button-color-outlined-accent-active-background, #c5e39e);
|
|
442
470
|
}
|
|
443
471
|
.mc-button--outlined.mc-button--accent:disabled {
|
|
444
|
-
background-color: #d9d9d9;
|
|
472
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
445
473
|
border-color: transparent;
|
|
446
|
-
color: #737373;
|
|
474
|
+
color: var(--button-state-disabled-color, #737373);
|
|
447
475
|
cursor: not-allowed;
|
|
448
476
|
}
|
|
449
477
|
.mc-button--outlined.mc-button--danger {
|
|
450
|
-
color: #c61112;
|
|
451
|
-
border-color: #ef5f5c;
|
|
452
|
-
background-color: #ffffff;
|
|
478
|
+
color: var(--button-color-outlined-danger-font, #c61112);
|
|
479
|
+
border-color: var(--button-color-outlined-danger-border, #ef5f5c);
|
|
480
|
+
background-color: var(--button-color-outlined-danger-background, #ffffff);
|
|
453
481
|
}
|
|
454
482
|
.mc-button--outlined.mc-button--danger:hover {
|
|
455
|
-
background-color: #fdeaea;
|
|
483
|
+
background-color: var(--button-color-outlined-danger-hover-background, #fdeaea);
|
|
456
484
|
}
|
|
457
485
|
.mc-button--outlined.mc-button--danger:active {
|
|
458
|
-
background-color: #f8bcbb;
|
|
486
|
+
background-color: var(--button-color-outlined-danger-active-background, #f8bcbb);
|
|
459
487
|
}
|
|
460
488
|
.mc-button--outlined.mc-button--danger:disabled {
|
|
461
|
-
background-color: #d9d9d9;
|
|
489
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
462
490
|
border-color: transparent;
|
|
463
|
-
color: #737373;
|
|
491
|
+
color: var(--button-state-disabled-color, #737373);
|
|
464
492
|
cursor: not-allowed;
|
|
465
493
|
}
|
|
466
494
|
.mc-button--outlined.mc-button--inverse {
|
|
467
|
-
color: #ffffff;
|
|
468
|
-
border-color: #ffffff;
|
|
469
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
495
|
+
color: var(--button-color-outlined-inverse-font, #ffffff);
|
|
496
|
+
border-color: var(--button-color-outlined-inverse-border, #ffffff);
|
|
497
|
+
background-color: var(--button-color-outlined-inverse-background, rgba(255, 255, 255, 0.01));
|
|
470
498
|
}
|
|
471
499
|
.mc-button--outlined.mc-button--inverse:hover {
|
|
472
|
-
background-color: rgba(255, 255, 255, 0.1);
|
|
500
|
+
background-color: var(--button-color-outlined-inverse-hover-background, rgba(255, 255, 255, 0.1));
|
|
473
501
|
}
|
|
474
502
|
.mc-button--outlined.mc-button--inverse:active {
|
|
475
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
503
|
+
background-color: var(--button-color-outlined-inverse-active-background, rgba(255, 255, 255, 0.2));
|
|
476
504
|
}
|
|
477
505
|
.mc-button--outlined.mc-button--inverse:disabled {
|
|
478
|
-
background-color: #d9d9d9;
|
|
506
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
479
507
|
border-color: transparent;
|
|
480
|
-
color: #737373;
|
|
508
|
+
color: var(--button-state-disabled-color, #737373);
|
|
481
509
|
cursor: not-allowed;
|
|
482
510
|
}
|
|
483
511
|
.mc-button--ghost.mc-button--standard {
|
|
484
|
-
color: #242938;
|
|
485
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
512
|
+
color: var(--button-color-ghost-standard-font, #242938);
|
|
513
|
+
background-color: var(--button-color-ghost-standard-background, rgba(255, 255, 255, 0.01));
|
|
486
514
|
}
|
|
487
515
|
.mc-button--ghost.mc-button--standard:hover {
|
|
488
|
-
background-color: rgba(70, 78, 99, 0.1);
|
|
516
|
+
background-color: var(--button-color-ghost-standard-hover-background, rgba(70, 78, 99, 0.1));
|
|
489
517
|
}
|
|
490
518
|
.mc-button--ghost.mc-button--standard:active {
|
|
491
|
-
background-color: rgba(70, 78, 99, 0.2);
|
|
519
|
+
background-color: var(--button-color-ghost-standard-active-background, rgba(70, 78, 99, 0.2));
|
|
492
520
|
}
|
|
493
521
|
.mc-button--ghost.mc-button--standard:disabled {
|
|
494
|
-
background-color: #d9d9d9;
|
|
522
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
495
523
|
border-color: transparent;
|
|
496
|
-
color: #737373;
|
|
524
|
+
color: var(--button-state-disabled-color, #737373);
|
|
497
525
|
cursor: not-allowed;
|
|
498
526
|
}
|
|
499
527
|
.mc-button--ghost.mc-button--accent {
|
|
500
|
-
color: #117f03;
|
|
501
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
528
|
+
color: var(--button-color-ghost-accent-font, #117f03);
|
|
529
|
+
background-color: var(--button-color-ghost-accent-background, rgba(255, 255, 255, 0.01));
|
|
502
530
|
}
|
|
503
531
|
.mc-button--ghost.mc-button--accent:hover {
|
|
504
|
-
background-color: rgba(17, 127, 3, 0.1);
|
|
532
|
+
background-color: var(--button-color-ghost-accent-hover-background, rgba(17, 127, 3, 0.1));
|
|
505
533
|
}
|
|
506
534
|
.mc-button--ghost.mc-button--accent:active {
|
|
507
|
-
background-color: rgba(17, 127, 3, 0.2);
|
|
535
|
+
background-color: var(--button-color-ghost-accent-active-background, rgba(17, 127, 3, 0.2));
|
|
508
536
|
}
|
|
509
537
|
.mc-button--ghost.mc-button--accent:disabled {
|
|
510
|
-
background-color: #d9d9d9;
|
|
538
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
511
539
|
border-color: transparent;
|
|
512
|
-
color: #737373;
|
|
540
|
+
color: var(--button-state-disabled-color, #737373);
|
|
513
541
|
cursor: not-allowed;
|
|
514
542
|
}
|
|
515
543
|
.mc-button--ghost.mc-button--danger {
|
|
516
|
-
color: #c61112;
|
|
517
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
544
|
+
color: var(--button-color-ghost-danger-font, #c61112);
|
|
545
|
+
background-color: var(--button-color-ghost-danger-background, rgba(255, 255, 255, 0.01));
|
|
518
546
|
}
|
|
519
547
|
.mc-button--ghost.mc-button--danger:hover {
|
|
520
|
-
background-color: rgba(198, 17, 18, 0.1);
|
|
548
|
+
background-color: var(--button-color-ghost-danger-hover-background, rgba(198, 17, 18, 0.1));
|
|
521
549
|
}
|
|
522
550
|
.mc-button--ghost.mc-button--danger:active {
|
|
523
|
-
background-color: rgba(198, 17, 18, 0.2);
|
|
551
|
+
background-color: var(--button-color-ghost-danger-active-background, rgba(198, 17, 18, 0.2));
|
|
524
552
|
}
|
|
525
553
|
.mc-button--ghost.mc-button--danger:disabled {
|
|
526
|
-
background-color: #d9d9d9;
|
|
554
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
527
555
|
border-color: transparent;
|
|
528
|
-
color: #737373;
|
|
556
|
+
color: var(--button-state-disabled-color, #737373);
|
|
529
557
|
cursor: not-allowed;
|
|
530
558
|
}
|
|
531
559
|
.mc-button--ghost.mc-button--inverse {
|
|
532
|
-
color: #ffffff;
|
|
533
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
560
|
+
color: var(--button-color-ghost-inverse-font, #ffffff);
|
|
561
|
+
background-color: var(--button-color-ghost-inverse-background, rgba(255, 255, 255, 0.01));
|
|
534
562
|
}
|
|
535
563
|
.mc-button--ghost.mc-button--inverse:hover {
|
|
536
|
-
background-color: rgba(255, 255, 255, 0.1);
|
|
564
|
+
background-color: var(--button-color-ghost-inverse-hover-background, rgba(255, 255, 255, 0.1));
|
|
537
565
|
}
|
|
538
566
|
.mc-button--ghost.mc-button--inverse:active {
|
|
539
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
567
|
+
background-color: var(--button-color-ghost-inverse-active-background, rgba(255, 255, 255, 0.2));
|
|
540
568
|
}
|
|
541
569
|
.mc-button--ghost.mc-button--inverse:disabled {
|
|
542
|
-
background-color: #d9d9d9;
|
|
570
|
+
background-color: var(--button-state-disabled-background, #d9d9d9);
|
|
543
571
|
border-color: transparent;
|
|
544
|
-
color: #737373;
|
|
572
|
+
color: var(--button-state-disabled-color, #737373);
|
|
545
573
|
cursor: not-allowed;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.mc-overlay {
|
|
549
|
-
filter: none;
|
|
550
574
|
}</style>
|
|
@@ -1,13 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
|
|
3
|
+
*
|
|
4
|
+
* @slot default - Use this slot to insert the content of the drawer
|
|
5
|
+
* @slot footer - Use this slot to insert buttons in the footer
|
|
6
|
+
* @event update:open {CustomEvent<boolean>} - Emits when the drawer open state changes.
|
|
7
|
+
* @event back {CustomEvent<void>} - Emits when click back button of the drawer.
|
|
8
|
+
*/
|
|
1
9
|
interface Props {
|
|
10
|
+
/**
|
|
11
|
+
* If `true`, display the drawer.
|
|
12
|
+
*/
|
|
2
13
|
open?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Position of the drawer.
|
|
16
|
+
*/
|
|
3
17
|
position?: 'left' | 'right';
|
|
18
|
+
/**
|
|
19
|
+
* If `true`, the drawer have a bigger width.
|
|
20
|
+
*/
|
|
4
21
|
extended?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* If `true`, display the back button.
|
|
24
|
+
*/
|
|
5
25
|
back?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Title of the drawer.
|
|
28
|
+
*/
|
|
6
29
|
title: string;
|
|
30
|
+
/**
|
|
31
|
+
* Title of the content of the drawer.
|
|
32
|
+
*/
|
|
7
33
|
contentTitle?: string;
|
|
8
|
-
updateopen?: (value: boolean) => void;
|
|
9
|
-
backfn?: () => void;
|
|
10
|
-
[key: string]: any;
|
|
11
34
|
}
|
|
12
35
|
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
13
36
|
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Drawer.svelte.d.ts","sourceRoot":"","sources":["../../../src/components/drawer/Drawer.svelte.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Drawer.svelte.d.ts","sourceRoot":"","sources":["../../../src/components/drawer/Drawer.svelte.ts"],"names":[],"mappings":"AAOE;;;;;;;GAOG;AACH,UAAU,KAAK;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAuEH,UAAU,kCAAkC,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,QAAQ,GAAG,MAAM;IACpM,KAAK,OAAO,EAAE,OAAO,QAAQ,EAAE,2BAA2B,CAAC,KAAK,CAAC,GAAG,OAAO,QAAQ,EAAE,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAAG;QAAE,UAAU,CAAC,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC;IACjK,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,GAAG;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,KAAK,CAAA;KAAC,GAAG,OAAO,GAAG;QAAE,IAAI,CAAC,EAAE,GAAG,CAAC;QAAC,GAAG,CAAC,EAAE,GAAG,CAAA;KAAE,CAAC;IAC9G,YAAY,CAAC,EAAE,QAAQ,CAAC;CAC3B;AACD,KAAK,gCAAgC,CAAC,KAAK,EAAE,KAAK,IAAI,KAAK,GACvD,CAAC,KAAK,SAAS;IAAE,OAAO,EAAE,GAAG,CAAA;CAAE,GACzB,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,GACnC,GAAG,GACH;IAAE,QAAQ,CAAC,EAAE,GAAG,CAAA;CAAE,GAClB,EAAE,CAAC,CAAC;AAId,QAAA,MAAM,MAAM;;;;;;;;UAAqF,CAAC;AAChF,KAAK,MAAM,GAAG,YAAY,CAAC,OAAO,MAAM,CAAC,CAAC;AAC5C,eAAe,MAAM,CAAC"}
|