musae 1.0.7-beta.8 → 1.0.7
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/LICENSE +21 -21
- package/README.md +38 -38
- package/dist/components/avatar/avatar.cjs +12 -70
- package/dist/components/avatar/avatar.mjs +12 -70
- package/dist/components/badge/badge.cjs +6 -23
- package/dist/components/badge/badge.mjs +6 -23
- package/dist/components/bench/bench.cjs +16 -63
- package/dist/components/bench/bench.mjs +16 -63
- package/dist/components/breadcrumb/breadcrumb.cjs +2 -3
- package/dist/components/breadcrumb/breadcrumb.mjs +2 -3
- package/dist/components/breadcrumb/item.cjs +5 -22
- package/dist/components/breadcrumb/item.mjs +5 -22
- package/dist/components/button/button.cjs +14 -192
- package/dist/components/button/button.mjs +8 -186
- package/dist/components/button/styles.cjs +149 -0
- package/dist/components/button/styles.d.ts +140 -0
- package/dist/components/button/styles.mjs +144 -0
- package/dist/components/button-group/button-group.d.ts +2 -0
- package/dist/components/calendar/calendar.cjs +3 -8
- package/dist/components/calendar/calendar.mjs +3 -8
- package/dist/components/calendar/contribution.cjs +13 -68
- package/dist/components/calendar/contribution.mjs +13 -68
- package/dist/components/calendar/hooks.cjs +25 -51
- package/dist/components/calendar/hooks.mjs +25 -51
- package/dist/components/cascader/cascader.cjs +1 -1
- package/dist/components/cascader/cascader.mjs +1 -1
- package/dist/components/chat/chat.cjs +4 -4
- package/dist/components/chat/chat.mjs +4 -4
- package/dist/components/chat/item.cjs +19 -82
- package/dist/components/chat/item.mjs +19 -82
- package/dist/components/checkbox/checkbox.cjs +1 -1
- package/dist/components/checkbox/checkbox.mjs +1 -1
- package/dist/components/checkbox/styles.cjs +11 -104
- package/dist/components/checkbox/styles.d.ts +62 -61
- package/dist/components/checkbox/styles.mjs +11 -104
- package/dist/components/clock/clock.cjs +1 -1
- package/dist/components/clock/clock.mjs +1 -1
- package/dist/components/clock/column.cjs +4 -7
- package/dist/components/clock/column.mjs +4 -7
- package/dist/components/collapse/collapse.cjs +1 -2
- package/dist/components/collapse/collapse.mjs +1 -2
- package/dist/components/collapse/item.cjs +20 -38
- package/dist/components/collapse/item.mjs +20 -38
- package/dist/components/countdown/countdown.cjs +9 -10
- package/dist/components/countdown/countdown.mjs +9 -10
- package/dist/components/date-picker/date-picker.cjs +2 -2
- package/dist/components/date-picker/date-picker.mjs +2 -2
- package/dist/components/date-range-picker/date-range-picker.cjs +38 -35
- package/dist/components/date-range-picker/date-range-picker.d.ts +1 -1
- package/dist/components/date-range-picker/date-range-picker.mjs +39 -36
- package/dist/components/date-range-picker/{hooks.cjs → hooks/use-date-range-picker-state.cjs} +12 -16
- package/dist/components/date-range-picker/hooks/use-date-range-picker-state.d.ts +17 -0
- package/dist/components/date-range-picker/{hooks.mjs → hooks/use-date-range-picker-state.mjs} +13 -17
- package/dist/components/dialog/hooks.cjs +16 -10
- package/dist/components/dialog/hooks.d.ts +7 -1
- package/dist/components/dialog/hooks.mjs +16 -10
- package/dist/components/dialog/popup.cjs +39 -32
- package/dist/components/dialog/popup.d.ts +1 -1
- package/dist/components/dialog/popup.mjs +39 -32
- package/dist/components/divider/divider.cjs +12 -21
- package/dist/components/divider/divider.mjs +12 -21
- package/dist/components/drawer/popup.cjs +30 -76
- package/dist/components/drawer/popup.mjs +30 -76
- package/dist/components/empty/empty.cjs +3 -3
- package/dist/components/empty/empty.mjs +3 -3
- package/dist/components/fab/fab.cjs +14 -41
- package/dist/components/fab/fab.mjs +16 -43
- package/dist/components/form/context.cjs +6 -4
- package/dist/components/form/context.d.ts +1 -3
- package/dist/components/form/context.mjs +6 -4
- package/dist/components/form/field/error.cjs +18 -37
- package/dist/components/form/field/error.mjs +18 -37
- package/dist/components/form/field/field.cjs +2 -2
- package/dist/components/form/field/field.mjs +1 -1
- package/dist/components/form/field/layout.cjs +12 -24
- package/dist/components/form/field/layout.mjs +12 -24
- package/dist/components/form/field/supporting.cjs +1 -2
- package/dist/components/form/field/supporting.mjs +1 -2
- package/dist/components/form/form.cjs +2 -2
- package/dist/components/form/form.mjs +1 -1
- package/dist/components/form/{hooks.cjs → hooks/index.cjs} +24 -17
- package/dist/components/form/{hooks.d.ts → hooks/index.d.ts} +5 -8
- package/dist/components/form/{hooks.mjs → hooks/index.mjs} +25 -18
- package/dist/components/form/hooks/use-form.cjs +27 -0
- package/dist/components/form/hooks/use-form.d.ts +7 -0
- package/dist/components/form/hooks/use-form.mjs +25 -0
- package/dist/components/form/index.cjs +5 -3
- package/dist/components/form/index.mjs +5 -3
- package/dist/components/form/list/context.cjs +10 -0
- package/dist/components/form/list/context.d.ts +12 -0
- package/dist/components/form/list/context.mjs +8 -0
- package/dist/components/form/list/fields.cjs +92 -0
- package/dist/components/form/list/fields.d.ts +25 -0
- package/dist/components/form/list/fields.mjs +90 -0
- package/dist/components/form/list/index.cjs +29 -0
- package/dist/components/form/list/index.d.ts +3 -0
- package/dist/components/form/list/index.mjs +25 -0
- package/dist/components/form/list/item.cjs +41 -0
- package/dist/components/form/list/item.d.ts +7 -0
- package/dist/components/form/list/item.mjs +39 -0
- package/dist/components/form/list/list.cjs +44 -0
- package/dist/components/form/list/list.d.ts +13 -0
- package/dist/components/form/list/list.mjs +42 -0
- package/dist/components/form/use-form.cjs +9 -2
- package/dist/components/form/use-form.d.ts +1 -1
- package/dist/components/form/use-form.mjs +9 -2
- package/dist/components/grid/row.cjs +0 -1
- package/dist/components/grid/row.mjs +0 -1
- package/dist/components/highlight/highlight.cjs +0 -1
- package/dist/components/highlight/highlight.mjs +0 -1
- package/dist/components/i18n-button/hooks.cjs +26 -28
- package/dist/components/i18n-button/hooks.mjs +26 -28
- package/dist/components/i18n-button/i18n-button.cjs +8 -9
- package/dist/components/i18n-button/i18n-button.mjs +8 -9
- package/dist/components/icon/icon.cjs +11 -22
- package/dist/components/icon/icon.mjs +13 -24
- package/dist/components/icon-button/icon-button.cjs +27 -15
- package/dist/components/icon-button/icon-button.mjs +27 -15
- package/dist/components/image/image.cjs +13 -29
- package/dist/components/image/image.mjs +13 -29
- package/dist/components/image/preview/operations.cjs +13 -61
- package/dist/components/image/preview/operations.mjs +13 -61
- package/dist/components/image/preview/preview.cjs +11 -10
- package/dist/components/image/preview/preview.mjs +11 -10
- package/dist/components/input/input.cjs +44 -111
- package/dist/components/input/input.d.ts +40 -49
- package/dist/components/input/input.mjs +45 -112
- package/dist/components/layout/footer.cjs +2 -12
- package/dist/components/layout/footer.mjs +2 -12
- package/dist/components/layout/header.cjs +3 -15
- package/dist/components/layout/header.mjs +3 -15
- package/dist/components/layout/heading.cjs +5 -42
- package/dist/components/layout/heading.mjs +5 -42
- package/dist/components/layout/layout.cjs +12 -19
- package/dist/components/layout/layout.mjs +10 -17
- package/dist/components/layout/main.cjs +4 -43
- package/dist/components/layout/main.mjs +4 -43
- package/dist/components/layout/sidebar.cjs +5 -45
- package/dist/components/layout/sidebar.mjs +5 -45
- package/dist/components/loading/loading.cjs +14 -16
- package/dist/components/loading/loading.mjs +14 -16
- package/dist/components/markdown/loading.cjs +5 -5
- package/dist/components/markdown/loading.mjs +5 -5
- package/dist/components/markdown/markdown.cjs +17 -20
- package/dist/components/markdown/markdown.mjs +17 -20
- package/dist/components/markdown/utils.cjs +8 -11
- package/dist/components/markdown/utils.mjs +8 -11
- package/dist/components/menu/group.cjs +17 -39
- package/dist/components/menu/group.mjs +17 -39
- package/dist/components/menu/hooks.cjs +35 -25
- package/dist/components/menu/hooks.mjs +35 -25
- package/dist/components/menu/item.cjs +51 -118
- package/dist/components/menu/item.mjs +52 -119
- package/dist/components/notification/holder.cjs +4 -28
- package/dist/components/notification/holder.mjs +4 -28
- package/dist/components/notification/hooks.cjs +6 -7
- package/dist/components/notification/hooks.mjs +6 -7
- package/dist/components/notification/notification.cjs +86 -131
- package/dist/components/notification/notification.mjs +86 -131
- package/dist/components/notification/notifier.cjs +5 -6
- package/dist/components/notification/notifier.mjs +5 -6
- package/dist/components/otp-input/otp-input.cjs +2 -2
- package/dist/components/otp-input/otp-input.mjs +2 -2
- package/dist/components/pagination/pagination.cjs +1 -1
- package/dist/components/pagination/pagination.mjs +1 -1
- package/dist/components/password-input/password-input.cjs +1 -2
- package/dist/components/password-input/password-input.mjs +1 -2
- package/dist/components/picker/picker.cjs +11 -25
- package/dist/components/picker/picker.mjs +12 -26
- package/dist/components/popconfirm/context.cjs +1 -0
- package/dist/components/popconfirm/context.d.ts +1 -0
- package/dist/components/popconfirm/context.mjs +1 -0
- package/dist/components/popconfirm/popconfirm.cjs +14 -43
- package/dist/components/popconfirm/popconfirm.mjs +14 -43
- package/dist/components/popover/hooks/use-is-visible-state.cjs +68 -0
- package/dist/components/popover/hooks/use-is-visible-state.d.ts +19 -0
- package/dist/components/popover/hooks/use-is-visible-state.mjs +66 -0
- package/dist/components/popover/hooks.cjs +0 -61
- package/dist/components/popover/hooks.d.ts +0 -17
- package/dist/components/popover/hooks.mjs +3 -63
- package/dist/components/popover/popover.cjs +48 -37
- package/dist/components/popover/popover.d.ts +2 -0
- package/dist/components/popover/popover.mjs +49 -38
- package/dist/components/popper/dropdown.cjs +8 -29
- package/dist/components/popper/dropdown.mjs +8 -29
- package/dist/components/popper/hooks.cjs +32 -34
- package/dist/components/popper/hooks.mjs +32 -34
- package/dist/components/progress/circular.cjs +13 -11
- package/dist/components/progress/circular.mjs +13 -11
- package/dist/components/progress/linear.cjs +13 -56
- package/dist/components/progress/linear.mjs +11 -54
- package/dist/components/quote/quote.cjs +1 -1
- package/dist/components/quote/quote.mjs +1 -1
- package/dist/components/quote/styles.cjs +5 -19
- package/dist/components/quote/styles.d.ts +7 -7
- package/dist/components/quote/styles.mjs +5 -19
- package/dist/components/radio/radio.cjs +46 -147
- package/dist/components/radio/radio.mjs +46 -147
- package/dist/components/rate/rate.cjs +3 -19
- package/dist/components/rate/rate.mjs +3 -19
- package/dist/components/rate/star.cjs +24 -46
- package/dist/components/rate/star.mjs +24 -46
- package/dist/components/rich-text-editor/context.cjs +2 -1
- package/dist/components/rich-text-editor/context.d.ts +2 -0
- package/dist/components/rich-text-editor/context.mjs +2 -1
- package/dist/components/rich-text-editor/dropdown.cjs +19 -29
- package/dist/components/rich-text-editor/dropdown.d.ts +2 -2
- package/dist/components/rich-text-editor/dropdown.mjs +19 -29
- package/dist/components/rich-text-editor/index.cjs +1 -1
- package/dist/components/rich-text-editor/index.mjs +1 -1
- package/dist/components/rich-text-editor/nodes/checkable-list-item.cjs +9 -3
- package/dist/components/rich-text-editor/nodes/checkable-list-item.d.ts +6 -1
- package/dist/components/rich-text-editor/nodes/checkable-list-item.mjs +10 -4
- package/dist/components/rich-text-editor/nodes/checkbox.cjs +18 -8
- package/dist/components/rich-text-editor/nodes/checkbox.d.ts +8 -2
- package/dist/components/rich-text-editor/nodes/checkbox.mjs +18 -8
- package/dist/components/rich-text-editor/plugins/controlled-state/index.cjs +38 -16
- package/dist/components/rich-text-editor/plugins/controlled-state/index.mjs +41 -19
- package/dist/components/rich-text-editor/plugins/floating-link-editor/index.cjs +13 -14
- package/dist/components/rich-text-editor/plugins/floating-link-editor/index.mjs +13 -14
- package/dist/components/rich-text-editor/plugins/toolbar/hooks.d.ts +3 -3
- package/dist/components/rich-text-editor/plugins/toolbar/index.cjs +21 -49
- package/dist/components/rich-text-editor/plugins/toolbar/index.mjs +17 -45
- package/dist/components/rich-text-editor/rich-text-editor.cjs +11 -9
- package/dist/components/rich-text-editor/rich-text-editor.mjs +11 -9
- package/dist/components/rich-text-editor/utils.cjs +25 -101
- package/dist/components/rich-text-editor/utils.d.ts +3 -3
- package/dist/components/rich-text-editor/utils.mjs +25 -101
- package/dist/components/ripple/ripple.cjs +15 -22
- package/dist/components/ripple/ripple.mjs +15 -22
- package/dist/components/select/select.cjs +2 -2
- package/dist/components/select/select.mjs +2 -2
- package/dist/components/select/selections.cjs +5 -11
- package/dist/components/select/selections.d.ts +1 -1
- package/dist/components/select/selections.mjs +6 -12
- package/dist/components/select/selector.cjs +18 -16
- package/dist/components/select/selector.mjs +18 -16
- package/dist/components/skeleton/skeleton.cjs +11 -35
- package/dist/components/skeleton/skeleton.mjs +11 -35
- package/dist/components/slider/context.d.ts +17 -0
- package/dist/components/slider/handle.d.ts +6 -0
- package/dist/components/slider/track.d.ts +4 -0
- package/dist/components/space/context.cjs +11 -0
- package/dist/components/space/context.d.ts +8 -0
- package/dist/components/space/context.mjs +9 -0
- package/dist/components/space/space.cjs +15 -21
- package/dist/components/space/space.mjs +15 -21
- package/dist/components/split-panel/divider.cjs +21 -28
- package/dist/components/split-panel/divider.mjs +21 -28
- package/dist/components/split-panel/panel.cjs +0 -1
- package/dist/components/split-panel/panel.mjs +0 -1
- package/dist/components/split-panel/split-panel.cjs +5 -22
- package/dist/components/split-panel/split-panel.mjs +5 -22
- package/dist/components/steps/item.cjs +26 -60
- package/dist/components/steps/item.mjs +26 -60
- package/dist/components/steps/steps.cjs +2 -5
- package/dist/components/steps/steps.mjs +2 -5
- package/dist/components/switch/switch.cjs +84 -183
- package/dist/components/switch/switch.mjs +84 -183
- package/dist/components/table/body.cjs +14 -50
- package/dist/components/table/body.mjs +14 -50
- package/dist/components/table/header/cell.cjs +19 -38
- package/dist/components/table/header/cell.mjs +19 -38
- package/dist/components/table/header/header.cjs +30 -79
- package/dist/components/table/header/header.mjs +30 -79
- package/dist/components/tabs/navigation.cjs +28 -53
- package/dist/components/tabs/navigation.mjs +28 -53
- package/dist/components/tabs/panels.cjs +2 -2
- package/dist/components/tabs/panels.mjs +2 -2
- package/dist/components/tag/tag.cjs +25 -80
- package/dist/components/tag/tag.mjs +25 -80
- package/dist/components/textarea/textarea.cjs +12 -65
- package/dist/components/textarea/textarea.mjs +13 -66
- package/dist/components/theme/hooks.cjs +2 -2
- package/dist/components/theme/hooks.d.ts +1 -1
- package/dist/components/theme/hooks.mjs +2 -2
- package/dist/components/theme/theme.cjs +11 -11
- package/dist/components/theme/theme.d.ts +62 -62
- package/dist/components/theme/theme.mjs +11 -11
- package/dist/components/theme/tokens.stylex.cjs +7 -10
- package/dist/components/theme/tokens.stylex.d.ts +11 -4
- package/dist/components/theme/tokens.stylex.mjs +7 -10
- package/dist/components/time-picker/panel.cjs +6 -31
- package/dist/components/time-picker/panel.mjs +11 -36
- package/dist/components/time-picker/time-picker.cjs +6 -7
- package/dist/components/time-picker/time-picker.mjs +6 -7
- package/dist/components/timeline/item.cjs +21 -65
- package/dist/components/timeline/item.mjs +21 -65
- package/dist/components/timeline/timeline.cjs +1 -2
- package/dist/components/timeline/timeline.mjs +1 -2
- package/dist/components/tour/spotlight.cjs +1 -1
- package/dist/components/tour/spotlight.mjs +1 -1
- package/dist/components/tour/tour.cjs +8 -10
- package/dist/components/tour/tour.mjs +8 -10
- package/dist/components/transfer/item.cjs +1 -1
- package/dist/components/transfer/item.mjs +1 -1
- package/dist/components/transfer/list.cjs +19 -21
- package/dist/components/transfer/list.mjs +19 -21
- package/dist/components/transfer/transfer.cjs +2 -2
- package/dist/components/transfer/transfer.mjs +2 -2
- package/dist/components/tree/list.cjs +14 -15
- package/dist/components/tree/list.mjs +14 -15
- package/dist/components/tree/node.cjs +38 -69
- package/dist/components/tree/node.mjs +38 -69
- package/dist/components/tree/tree.cjs +3 -3
- package/dist/components/tree/tree.mjs +4 -4
- package/dist/components/upload/upload.cjs +1 -1
- package/dist/components/upload/upload.mjs +1 -1
- package/dist/components/upload/uploaded-item.cjs +16 -69
- package/dist/components/upload/uploaded-item.mjs +16 -69
- package/dist/components/upload/uploaded-list.cjs +21 -22
- package/dist/components/upload/uploaded-list.mjs +21 -22
- package/dist/components/visually-hidden/visually-hidden.cjs +12 -7
- package/dist/components/visually-hidden/visually-hidden.d.ts +3 -2
- package/dist/components/visually-hidden/visually-hidden.mjs +13 -8
- package/dist/components/waterfall/sequential.cjs +11 -13
- package/dist/components/waterfall/sequential.mjs +11 -13
- package/dist/components/waterfall/waterfall.cjs +25 -65
- package/dist/components/waterfall/waterfall.mjs +25 -65
- package/dist/hooks/use-closable.cjs +3 -5
- package/dist/hooks/use-closable.mjs +3 -5
- package/dist/hooks/use-expandable.cjs +21 -23
- package/dist/hooks/use-expandable.mjs +21 -23
- package/dist/hooks/use-lazy-boolean.cjs +27 -22
- package/dist/hooks/use-lazy-boolean.d.ts +5 -1
- package/dist/hooks/use-lazy-boolean.mjs +28 -23
- package/dist/hooks/use-theme-color-vars.cjs +32 -0
- package/dist/hooks/use-theme-color-vars.d.ts +8 -0
- package/dist/hooks/use-theme-color-vars.mjs +30 -0
- package/dist/node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.cjs +154 -0
- package/dist/node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.mjs +152 -0
- package/dist/styles.css +1183 -1114
- package/dist/types/button.d.ts +2 -2
- package/dist/types/dialog.d.ts +10 -0
- package/dist/types/form.d.ts +47 -10
- package/dist/types/menu.d.ts +3 -0
- package/dist/types/popover.d.ts +9 -0
- package/dist/types/rich-text-editor.d.ts +4 -4
- package/dist/types/slider.d.ts +9 -0
- package/dist/utils/color-role.d.ts +1 -2
- package/dist/utils/form.cjs +173 -129
- package/dist/utils/form.d.ts +19 -3
- package/dist/utils/form.mjs +174 -130
- package/package.json +53 -54
- package/dist/components/date-range-picker/hooks.d.ts +0 -13
- package/dist/components/form/list.cjs +0 -78
- package/dist/components/form/list.d.ts +0 -7
- package/dist/components/form/list.mjs +0 -74
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 aiszlab
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 aiszlab
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
<h1 align="center">musae</h1>
|
|
2
|
-
|
|
3
|
-
## Introduction
|
|
4
|
-
|
|
5
|
-
Next-generation UI Component suite for `React`.
|
|
6
|
-
|
|
7
|
-
## 📦 Install
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
## use npm
|
|
11
|
-
npm install musae
|
|
12
|
-
|
|
13
|
-
## use pnpm
|
|
14
|
-
pnpm add musae
|
|
15
|
-
|
|
16
|
-
## use yarn
|
|
17
|
-
yarn add musae
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Overview
|
|
21
|
-
|
|
22
|
-
`musae` is a complete UI suite for `React` consisting of a rich set of UI components, icons, blocks, and application templates.
|
|
23
|
-
|
|
24
|
-
## Theming
|
|
25
|
-
|
|
26
|
-
`musae` has powerful theme customization based on CSS-in-JS.
|
|
27
|
-
|
|
28
|
-
## 🔨 Usage
|
|
29
|
-
|
|
30
|
-
```tsx
|
|
31
|
-
import React from "react";
|
|
32
|
-
import { Button } from "musae";
|
|
33
|
-
import "musae/styles.css";
|
|
34
|
-
|
|
35
|
-
const App = () => <Button>PRESS ME</Button>;
|
|
36
|
-
|
|
37
|
-
export default App;
|
|
38
|
-
```
|
|
1
|
+
<h1 align="center">musae</h1>
|
|
2
|
+
|
|
3
|
+
## Introduction
|
|
4
|
+
|
|
5
|
+
Next-generation UI Component suite for `React`.
|
|
6
|
+
|
|
7
|
+
## 📦 Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
## use npm
|
|
11
|
+
npm install musae
|
|
12
|
+
|
|
13
|
+
## use pnpm
|
|
14
|
+
pnpm add musae
|
|
15
|
+
|
|
16
|
+
## use yarn
|
|
17
|
+
yarn add musae
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Overview
|
|
21
|
+
|
|
22
|
+
`musae` is a complete UI suite for `React` consisting of a rich set of UI components, icons, blocks, and application templates.
|
|
23
|
+
|
|
24
|
+
## Theming
|
|
25
|
+
|
|
26
|
+
`musae` has powerful theme customization based on CSS-in-JS.
|
|
27
|
+
|
|
28
|
+
## 🔨 Usage
|
|
29
|
+
|
|
30
|
+
```tsx
|
|
31
|
+
import React from "react";
|
|
32
|
+
import { Button } from "musae";
|
|
33
|
+
import "musae/styles.css";
|
|
34
|
+
|
|
35
|
+
const App = () => <Button>PRESS ME</Button>;
|
|
36
|
+
|
|
37
|
+
export default App;
|
|
38
|
+
```
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
6
6
|
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
7
7
|
var React = require('react');
|
|
8
|
-
var stylex = require('@stylexjs/stylex');
|
|
8
|
+
var stylex = require('../../node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.cjs');
|
|
9
9
|
var context = require('./context.cjs');
|
|
10
10
|
var hooks = require('../theme/hooks.cjs');
|
|
11
11
|
var theme = require('../theme/theme.cjs');
|
|
@@ -17,33 +17,9 @@ var useClassNames = require('../../hooks/use-class-names.cjs');
|
|
|
17
17
|
var _excluded = ["src", "alt", "shape", "size", "className", "style", "crossOrigin", "referrerPolicy"];
|
|
18
18
|
var styles = {
|
|
19
19
|
avatar: {
|
|
20
|
-
kMzoRj: "musaex-
|
|
21
|
-
kjGldf: null,
|
|
22
|
-
k2ei4v: null,
|
|
23
|
-
kZ1KPB: null,
|
|
24
|
-
ke9TFa: null,
|
|
25
|
-
kWqL5O: null,
|
|
26
|
-
kLoX6v: null,
|
|
27
|
-
kEafiO: null,
|
|
28
|
-
kt9PQ7: null,
|
|
20
|
+
kMzoRj: "musaex-1iyq3db",
|
|
29
21
|
ksu8eU: "musaex-1y0btm7",
|
|
30
|
-
kJRH4f: null,
|
|
31
|
-
kVhnKS: null,
|
|
32
|
-
k4WBpm: null,
|
|
33
|
-
k8ry5P: null,
|
|
34
|
-
kSWEuD: null,
|
|
35
|
-
kDUl1X: null,
|
|
36
|
-
kPef9Z: null,
|
|
37
|
-
kfdmCh: null,
|
|
38
22
|
kVAM5u: "musaex-9r1u3d",
|
|
39
|
-
kzOINU: null,
|
|
40
|
-
kGJrpR: null,
|
|
41
|
-
kaZRDh: null,
|
|
42
|
-
kBCPoo: null,
|
|
43
|
-
k26BEO: null,
|
|
44
|
-
k5QoK5: null,
|
|
45
|
-
kLZC3w: null,
|
|
46
|
-
kL6WhQ: null,
|
|
47
23
|
kB7OPa: "musaex-9f619",
|
|
48
24
|
kWkggS: "musaex-1ncffr6",
|
|
49
25
|
kMwMTN: "musaex-14qql8p",
|
|
@@ -52,6 +28,7 @@ var styles = {
|
|
|
52
28
|
kfSwDN: "musaex-87ps6o",
|
|
53
29
|
k1xSpc: "musaex-3nfvp2",
|
|
54
30
|
kXLuUW: "musaex-xymvpz",
|
|
31
|
+
kmuXW: "musaex-2lah0s",
|
|
55
32
|
$$css: true
|
|
56
33
|
},
|
|
57
34
|
loading: {
|
|
@@ -63,68 +40,34 @@ var styles = {
|
|
|
63
40
|
kVIFPx: "musaex-l1xv1r",
|
|
64
41
|
kYDvB4: "musaex-1s8dy9j",
|
|
65
42
|
kaIpWk: "musaex-1pjcqnp",
|
|
66
|
-
krdFHd: null,
|
|
67
|
-
kfmiAY: null,
|
|
68
|
-
kVL7Gh: null,
|
|
69
|
-
kT0f0o: null,
|
|
70
|
-
kIxVMA: null,
|
|
71
|
-
ksF3WI: null,
|
|
72
|
-
kqGeR4: null,
|
|
73
|
-
kYm2EN: null,
|
|
74
43
|
$$css: true
|
|
75
44
|
},
|
|
76
45
|
overlapping: {
|
|
77
|
-
kgxsog: "musaex-
|
|
78
|
-
k9fVmS: null,
|
|
79
|
-
kZB82w: null,
|
|
46
|
+
kgxsog: "musaex-e1706l",
|
|
80
47
|
kVAM5u: "musaex-o3pef4",
|
|
81
|
-
kzOINU: null,
|
|
82
|
-
kGJrpR: null,
|
|
83
|
-
kaZRDh: null,
|
|
84
|
-
kBCPoo: null,
|
|
85
|
-
k26BEO: null,
|
|
86
|
-
k5QoK5: null,
|
|
87
|
-
kLZC3w: null,
|
|
88
|
-
kL6WhQ: null,
|
|
89
48
|
$$css: true
|
|
90
49
|
},
|
|
91
50
|
circular: {
|
|
92
|
-
kaIpWk: "musaex-
|
|
93
|
-
krdFHd: null,
|
|
94
|
-
kfmiAY: null,
|
|
95
|
-
kVL7Gh: null,
|
|
96
|
-
kT0f0o: null,
|
|
97
|
-
kIxVMA: null,
|
|
98
|
-
ksF3WI: null,
|
|
99
|
-
kqGeR4: null,
|
|
100
|
-
kYm2EN: null,
|
|
51
|
+
kaIpWk: "musaex-shxsqp",
|
|
101
52
|
$$css: true
|
|
102
53
|
},
|
|
103
54
|
squared: {
|
|
104
|
-
kaIpWk: "musaex-
|
|
105
|
-
krdFHd: null,
|
|
106
|
-
kfmiAY: null,
|
|
107
|
-
kVL7Gh: null,
|
|
108
|
-
kT0f0o: null,
|
|
109
|
-
kIxVMA: null,
|
|
110
|
-
ksF3WI: null,
|
|
111
|
-
kqGeR4: null,
|
|
112
|
-
kYm2EN: null,
|
|
55
|
+
kaIpWk: "musaex-db68te",
|
|
113
56
|
$$css: true
|
|
114
57
|
},
|
|
115
58
|
small: {
|
|
116
|
-
kzqmXN: "musaex-
|
|
117
|
-
kZKoxP: "musaex-
|
|
59
|
+
kzqmXN: "musaex-t4hhhd",
|
|
60
|
+
kZKoxP: "musaex-pvxov6",
|
|
118
61
|
$$css: true
|
|
119
62
|
},
|
|
120
63
|
medium: {
|
|
121
|
-
kzqmXN: "musaex-
|
|
122
|
-
kZKoxP: "musaex-
|
|
64
|
+
kzqmXN: "musaex-1po6ib",
|
|
65
|
+
kZKoxP: "musaex-1si1pn3",
|
|
123
66
|
$$css: true
|
|
124
67
|
},
|
|
125
68
|
large: {
|
|
126
|
-
kzqmXN: "musaex-
|
|
127
|
-
kZKoxP: "musaex-
|
|
69
|
+
kzqmXN: "musaex-19dbm5w",
|
|
70
|
+
kZKoxP: "musaex-12ez60q",
|
|
128
71
|
$$css: true
|
|
129
72
|
}
|
|
130
73
|
};
|
|
@@ -170,7 +113,6 @@ var Avatar = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
170
113
|
return /*#__PURE__*/React.createElement("span", _objectSpread(_objectSpread({}, props), {}, {
|
|
171
114
|
className: className.stringify(classNames.avatar, className$1, styled.avatar.className),
|
|
172
115
|
style: _objectSpread(_objectSpread(_objectSpread({}, styled.avatar.style), style), {}, {
|
|
173
|
-
// @ts-expect-error style vars
|
|
174
116
|
"--color-primary": theme$1.colors.primary,
|
|
175
117
|
"--color-on-primary": theme$1.colors["on-primary"],
|
|
176
118
|
"--color-primary-container": theme$1.colors["primary-container"]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _objectSpread from '@babel/runtime/helpers/objectSpread2';
|
|
2
2
|
import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
|
|
3
3
|
import React, { forwardRef, useContext } from 'react';
|
|
4
|
-
import { props } from '@stylexjs/stylex';
|
|
4
|
+
import { props } from '../../node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.mjs';
|
|
5
5
|
import Context, { CLASS_NAMES } from './context.mjs';
|
|
6
6
|
import { useTheme } from '../theme/hooks.mjs';
|
|
7
7
|
import { $label } from '../theme/theme.mjs';
|
|
@@ -13,33 +13,9 @@ import { useClassNames } from '../../hooks/use-class-names.mjs';
|
|
|
13
13
|
var _excluded = ["src", "alt", "shape", "size", "className", "style", "crossOrigin", "referrerPolicy"];
|
|
14
14
|
var styles = {
|
|
15
15
|
avatar: {
|
|
16
|
-
kMzoRj: "musaex-
|
|
17
|
-
kjGldf: null,
|
|
18
|
-
k2ei4v: null,
|
|
19
|
-
kZ1KPB: null,
|
|
20
|
-
ke9TFa: null,
|
|
21
|
-
kWqL5O: null,
|
|
22
|
-
kLoX6v: null,
|
|
23
|
-
kEafiO: null,
|
|
24
|
-
kt9PQ7: null,
|
|
16
|
+
kMzoRj: "musaex-1iyq3db",
|
|
25
17
|
ksu8eU: "musaex-1y0btm7",
|
|
26
|
-
kJRH4f: null,
|
|
27
|
-
kVhnKS: null,
|
|
28
|
-
k4WBpm: null,
|
|
29
|
-
k8ry5P: null,
|
|
30
|
-
kSWEuD: null,
|
|
31
|
-
kDUl1X: null,
|
|
32
|
-
kPef9Z: null,
|
|
33
|
-
kfdmCh: null,
|
|
34
18
|
kVAM5u: "musaex-9r1u3d",
|
|
35
|
-
kzOINU: null,
|
|
36
|
-
kGJrpR: null,
|
|
37
|
-
kaZRDh: null,
|
|
38
|
-
kBCPoo: null,
|
|
39
|
-
k26BEO: null,
|
|
40
|
-
k5QoK5: null,
|
|
41
|
-
kLZC3w: null,
|
|
42
|
-
kL6WhQ: null,
|
|
43
19
|
kB7OPa: "musaex-9f619",
|
|
44
20
|
kWkggS: "musaex-1ncffr6",
|
|
45
21
|
kMwMTN: "musaex-14qql8p",
|
|
@@ -48,6 +24,7 @@ var styles = {
|
|
|
48
24
|
kfSwDN: "musaex-87ps6o",
|
|
49
25
|
k1xSpc: "musaex-3nfvp2",
|
|
50
26
|
kXLuUW: "musaex-xymvpz",
|
|
27
|
+
kmuXW: "musaex-2lah0s",
|
|
51
28
|
$$css: true
|
|
52
29
|
},
|
|
53
30
|
loading: {
|
|
@@ -59,68 +36,34 @@ var styles = {
|
|
|
59
36
|
kVIFPx: "musaex-l1xv1r",
|
|
60
37
|
kYDvB4: "musaex-1s8dy9j",
|
|
61
38
|
kaIpWk: "musaex-1pjcqnp",
|
|
62
|
-
krdFHd: null,
|
|
63
|
-
kfmiAY: null,
|
|
64
|
-
kVL7Gh: null,
|
|
65
|
-
kT0f0o: null,
|
|
66
|
-
kIxVMA: null,
|
|
67
|
-
ksF3WI: null,
|
|
68
|
-
kqGeR4: null,
|
|
69
|
-
kYm2EN: null,
|
|
70
39
|
$$css: true
|
|
71
40
|
},
|
|
72
41
|
overlapping: {
|
|
73
|
-
kgxsog: "musaex-
|
|
74
|
-
k9fVmS: null,
|
|
75
|
-
kZB82w: null,
|
|
42
|
+
kgxsog: "musaex-e1706l",
|
|
76
43
|
kVAM5u: "musaex-o3pef4",
|
|
77
|
-
kzOINU: null,
|
|
78
|
-
kGJrpR: null,
|
|
79
|
-
kaZRDh: null,
|
|
80
|
-
kBCPoo: null,
|
|
81
|
-
k26BEO: null,
|
|
82
|
-
k5QoK5: null,
|
|
83
|
-
kLZC3w: null,
|
|
84
|
-
kL6WhQ: null,
|
|
85
44
|
$$css: true
|
|
86
45
|
},
|
|
87
46
|
circular: {
|
|
88
|
-
kaIpWk: "musaex-
|
|
89
|
-
krdFHd: null,
|
|
90
|
-
kfmiAY: null,
|
|
91
|
-
kVL7Gh: null,
|
|
92
|
-
kT0f0o: null,
|
|
93
|
-
kIxVMA: null,
|
|
94
|
-
ksF3WI: null,
|
|
95
|
-
kqGeR4: null,
|
|
96
|
-
kYm2EN: null,
|
|
47
|
+
kaIpWk: "musaex-shxsqp",
|
|
97
48
|
$$css: true
|
|
98
49
|
},
|
|
99
50
|
squared: {
|
|
100
|
-
kaIpWk: "musaex-
|
|
101
|
-
krdFHd: null,
|
|
102
|
-
kfmiAY: null,
|
|
103
|
-
kVL7Gh: null,
|
|
104
|
-
kT0f0o: null,
|
|
105
|
-
kIxVMA: null,
|
|
106
|
-
ksF3WI: null,
|
|
107
|
-
kqGeR4: null,
|
|
108
|
-
kYm2EN: null,
|
|
51
|
+
kaIpWk: "musaex-db68te",
|
|
109
52
|
$$css: true
|
|
110
53
|
},
|
|
111
54
|
small: {
|
|
112
|
-
kzqmXN: "musaex-
|
|
113
|
-
kZKoxP: "musaex-
|
|
55
|
+
kzqmXN: "musaex-t4hhhd",
|
|
56
|
+
kZKoxP: "musaex-pvxov6",
|
|
114
57
|
$$css: true
|
|
115
58
|
},
|
|
116
59
|
medium: {
|
|
117
|
-
kzqmXN: "musaex-
|
|
118
|
-
kZKoxP: "musaex-
|
|
60
|
+
kzqmXN: "musaex-1po6ib",
|
|
61
|
+
kZKoxP: "musaex-1si1pn3",
|
|
119
62
|
$$css: true
|
|
120
63
|
},
|
|
121
64
|
large: {
|
|
122
|
-
kzqmXN: "musaex-
|
|
123
|
-
kZKoxP: "musaex-
|
|
65
|
+
kzqmXN: "musaex-19dbm5w",
|
|
66
|
+
kZKoxP: "musaex-12ez60q",
|
|
124
67
|
$$css: true
|
|
125
68
|
}
|
|
126
69
|
};
|
|
@@ -166,7 +109,6 @@ var Avatar = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
166
109
|
return /*#__PURE__*/React.createElement("span", _objectSpread(_objectSpread({}, props$1), {}, {
|
|
167
110
|
className: stringify(classNames.avatar, className, styled.avatar.className),
|
|
168
111
|
style: _objectSpread(_objectSpread(_objectSpread({}, styled.avatar.style), style), {}, {
|
|
169
|
-
// @ts-expect-error style vars
|
|
170
112
|
"--color-primary": theme.colors.primary,
|
|
171
113
|
"--color-on-primary": theme.colors["on-primary"],
|
|
172
114
|
"--color-primary-container": theme.colors["primary-container"]
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
6
6
|
var React = require('react');
|
|
7
7
|
var useClassNames = require('../../hooks/use-class-names.cjs');
|
|
8
|
-
var stylex = require('@stylexjs/stylex');
|
|
8
|
+
var stylex = require('../../node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.cjs');
|
|
9
9
|
var theme = require('../theme/theme.cjs');
|
|
10
10
|
var hooks = require('../theme/hooks.cjs');
|
|
11
11
|
var relax = require('@aiszlab/relax');
|
|
@@ -23,26 +23,18 @@ var styles = {
|
|
|
23
23
|
tail: {
|
|
24
24
|
"default": {
|
|
25
25
|
kVAEAm: "musaex-10l6tqk",
|
|
26
|
-
kaIpWk: "musaex-
|
|
27
|
-
|
|
28
|
-
kfmiAY: null,
|
|
29
|
-
kVL7Gh: null,
|
|
30
|
-
kT0f0o: null,
|
|
31
|
-
kIxVMA: null,
|
|
32
|
-
ksF3WI: null,
|
|
33
|
-
kqGeR4: null,
|
|
34
|
-
kYm2EN: null,
|
|
35
|
-
k7Eaqz: "musaex-11gam51",
|
|
26
|
+
kaIpWk: "musaex-shxsqp",
|
|
27
|
+
k7Eaqz: "musaex-d9398k",
|
|
36
28
|
k9WMMc: "musaex-2b8uid",
|
|
37
|
-
kGVxlE: "musaex-
|
|
29
|
+
kGVxlE: "musaex-bxw2on",
|
|
38
30
|
kWkggS: "musaex-19fix8x",
|
|
39
31
|
kMwMTN: "musaex-1szb5uh",
|
|
40
32
|
$$css: true
|
|
41
33
|
},
|
|
42
34
|
dot: {
|
|
43
35
|
k7Eaqz: null,
|
|
44
|
-
kzqmXN: "musaex-
|
|
45
|
-
kZKoxP: "musaex-
|
|
36
|
+
kzqmXN: "musaex-11mouiv",
|
|
37
|
+
kZKoxP: "musaex-1svyby3",
|
|
46
38
|
$$css: true
|
|
47
39
|
},
|
|
48
40
|
invisible: {
|
|
@@ -52,32 +44,24 @@ var styles = {
|
|
|
52
44
|
"top-right": {
|
|
53
45
|
k87sOh: "musaex-13vifvy",
|
|
54
46
|
kCIrl2: "musaex-3m8u43",
|
|
55
|
-
kLqNvP: null,
|
|
56
|
-
kt4wiu: null,
|
|
57
47
|
k3aq6I: "musaex-rycbv3",
|
|
58
48
|
$$css: true
|
|
59
49
|
},
|
|
60
50
|
"top-left": {
|
|
61
51
|
k87sOh: "musaex-13vifvy",
|
|
62
52
|
kbCHJM: "musaex-u96u03",
|
|
63
|
-
kLqNvP: null,
|
|
64
|
-
kt4wiu: null,
|
|
65
53
|
k3aq6I: "musaex-1i3z1r0",
|
|
66
54
|
$$css: true
|
|
67
55
|
},
|
|
68
56
|
"bottom-right": {
|
|
69
57
|
krVfgx: "musaex-1ey2m1c",
|
|
70
58
|
kCIrl2: "musaex-3m8u43",
|
|
71
|
-
kLqNvP: null,
|
|
72
|
-
kt4wiu: null,
|
|
73
59
|
k3aq6I: "musaex-1vfo23u",
|
|
74
60
|
$$css: true
|
|
75
61
|
},
|
|
76
62
|
"bottom-left": {
|
|
77
63
|
krVfgx: "musaex-1ey2m1c",
|
|
78
64
|
kbCHJM: "musaex-u96u03",
|
|
79
|
-
kLqNvP: null,
|
|
80
|
-
kt4wiu: null,
|
|
81
65
|
k3aq6I: "musaex-itovws",
|
|
82
66
|
$$css: true
|
|
83
67
|
}
|
|
@@ -102,7 +86,6 @@ var Badge = function Badge(_ref) {
|
|
|
102
86
|
return /*#__PURE__*/React.createElement("span", {
|
|
103
87
|
className: className.stringify(classNames.badge, className$1, styled.badge.className),
|
|
104
88
|
style: _objectSpread(_objectSpread(_objectSpread({}, styled.badge.style), style), {}, {
|
|
105
|
-
// @ts-expect-error style vars
|
|
106
89
|
"--color-primary": theme$1.colors.primary,
|
|
107
90
|
"--color-on-primary": theme$1.colors["on-primary"]
|
|
108
91
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _objectSpread from '@babel/runtime/helpers/objectSpread2';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { useClassNames } from '../../hooks/use-class-names.mjs';
|
|
4
|
-
import { props } from '@stylexjs/stylex';
|
|
4
|
+
import { props } from '../../node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.mjs';
|
|
5
5
|
import { $label } from '../theme/theme.mjs';
|
|
6
6
|
import { useTheme } from '../theme/hooks.mjs';
|
|
7
7
|
import { isVoid } from '@aiszlab/relax';
|
|
@@ -19,26 +19,18 @@ var styles = {
|
|
|
19
19
|
tail: {
|
|
20
20
|
"default": {
|
|
21
21
|
kVAEAm: "musaex-10l6tqk",
|
|
22
|
-
kaIpWk: "musaex-
|
|
23
|
-
|
|
24
|
-
kfmiAY: null,
|
|
25
|
-
kVL7Gh: null,
|
|
26
|
-
kT0f0o: null,
|
|
27
|
-
kIxVMA: null,
|
|
28
|
-
ksF3WI: null,
|
|
29
|
-
kqGeR4: null,
|
|
30
|
-
kYm2EN: null,
|
|
31
|
-
k7Eaqz: "musaex-11gam51",
|
|
22
|
+
kaIpWk: "musaex-shxsqp",
|
|
23
|
+
k7Eaqz: "musaex-d9398k",
|
|
32
24
|
k9WMMc: "musaex-2b8uid",
|
|
33
|
-
kGVxlE: "musaex-
|
|
25
|
+
kGVxlE: "musaex-bxw2on",
|
|
34
26
|
kWkggS: "musaex-19fix8x",
|
|
35
27
|
kMwMTN: "musaex-1szb5uh",
|
|
36
28
|
$$css: true
|
|
37
29
|
},
|
|
38
30
|
dot: {
|
|
39
31
|
k7Eaqz: null,
|
|
40
|
-
kzqmXN: "musaex-
|
|
41
|
-
kZKoxP: "musaex-
|
|
32
|
+
kzqmXN: "musaex-11mouiv",
|
|
33
|
+
kZKoxP: "musaex-1svyby3",
|
|
42
34
|
$$css: true
|
|
43
35
|
},
|
|
44
36
|
invisible: {
|
|
@@ -48,32 +40,24 @@ var styles = {
|
|
|
48
40
|
"top-right": {
|
|
49
41
|
k87sOh: "musaex-13vifvy",
|
|
50
42
|
kCIrl2: "musaex-3m8u43",
|
|
51
|
-
kLqNvP: null,
|
|
52
|
-
kt4wiu: null,
|
|
53
43
|
k3aq6I: "musaex-rycbv3",
|
|
54
44
|
$$css: true
|
|
55
45
|
},
|
|
56
46
|
"top-left": {
|
|
57
47
|
k87sOh: "musaex-13vifvy",
|
|
58
48
|
kbCHJM: "musaex-u96u03",
|
|
59
|
-
kLqNvP: null,
|
|
60
|
-
kt4wiu: null,
|
|
61
49
|
k3aq6I: "musaex-1i3z1r0",
|
|
62
50
|
$$css: true
|
|
63
51
|
},
|
|
64
52
|
"bottom-right": {
|
|
65
53
|
krVfgx: "musaex-1ey2m1c",
|
|
66
54
|
kCIrl2: "musaex-3m8u43",
|
|
67
|
-
kLqNvP: null,
|
|
68
|
-
kt4wiu: null,
|
|
69
55
|
k3aq6I: "musaex-1vfo23u",
|
|
70
56
|
$$css: true
|
|
71
57
|
},
|
|
72
58
|
"bottom-left": {
|
|
73
59
|
krVfgx: "musaex-1ey2m1c",
|
|
74
60
|
kbCHJM: "musaex-u96u03",
|
|
75
|
-
kLqNvP: null,
|
|
76
|
-
kt4wiu: null,
|
|
77
61
|
k3aq6I: "musaex-itovws",
|
|
78
62
|
$$css: true
|
|
79
63
|
}
|
|
@@ -98,7 +82,6 @@ var Badge = function Badge(_ref) {
|
|
|
98
82
|
return /*#__PURE__*/React.createElement("span", {
|
|
99
83
|
className: stringify(classNames.badge, className, styled.badge.className),
|
|
100
84
|
style: _objectSpread(_objectSpread(_objectSpread({}, styled.badge.style), style), {}, {
|
|
101
|
-
// @ts-expect-error style vars
|
|
102
85
|
"--color-primary": theme.colors.primary,
|
|
103
86
|
"--color-on-primary": theme.colors["on-primary"]
|
|
104
87
|
})
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var stylex = require('@stylexjs/stylex');
|
|
7
|
+
var stylex = require('../../node_modules/.pnpm/@stylexjs_stylex@0.15.3/node_modules/@stylexjs/stylex/lib/es/stylex.cjs');
|
|
8
8
|
var hooks = require('./hooks.cjs');
|
|
9
9
|
var theme = require('../theme/theme.cjs');
|
|
10
10
|
var className = require('@aiszlab/relax/class-name');
|
|
@@ -22,14 +22,14 @@ var styles = {
|
|
|
22
22
|
kzqmXN: "musaex-n9wirt",
|
|
23
23
|
kZKoxP: "musaex-1dr59a3",
|
|
24
24
|
k1xSpc: "musaex-rvj5dj",
|
|
25
|
-
k9llMU: "musaex-
|
|
26
|
-
kumcoG: "musaex-
|
|
25
|
+
k9llMU: "musaex-uc9tuw",
|
|
26
|
+
kumcoG: "musaex-1rkj9a3",
|
|
27
27
|
k1ekBW: "musaex-7hfw76",
|
|
28
|
-
kIyJzY: "musaex-
|
|
28
|
+
kIyJzY: "musaex-1dg6om",
|
|
29
29
|
$$css: true
|
|
30
30
|
},
|
|
31
31
|
collapsed: {
|
|
32
|
-
kumcoG: "musaex-
|
|
32
|
+
kumcoG: "musaex-15ta1fy",
|
|
33
33
|
$$css: true
|
|
34
34
|
}
|
|
35
35
|
},
|
|
@@ -39,19 +39,13 @@ var styles = {
|
|
|
39
39
|
},
|
|
40
40
|
collapsed: {
|
|
41
41
|
kjj79g: "musaex-l56j7k",
|
|
42
|
-
kg3NbH: "musaex-
|
|
43
|
-
kuDDbn: null,
|
|
44
|
-
kE3dHu: null,
|
|
45
|
-
kP0aTx: null,
|
|
46
|
-
kpe85a: null,
|
|
42
|
+
kg3NbH: "musaex-2961ne",
|
|
47
43
|
$$css: true
|
|
48
44
|
}
|
|
49
45
|
},
|
|
50
46
|
collapser: {
|
|
51
47
|
"default": {
|
|
52
48
|
keTefX: "musaex-vc5jky",
|
|
53
|
-
koQZXg: null,
|
|
54
|
-
km5ZXQ: null,
|
|
55
49
|
$$css: true
|
|
56
50
|
}
|
|
57
51
|
},
|
|
@@ -63,12 +57,8 @@ var styles = {
|
|
|
63
57
|
trailing: {
|
|
64
58
|
"default": {
|
|
65
59
|
k1xSpc: "musaex-78zum5",
|
|
66
|
-
kOIVth: "musaex-
|
|
67
|
-
|
|
68
|
-
k1C7PZ: null,
|
|
69
|
-
keTefX: "musaex-9v92dh",
|
|
70
|
-
koQZXg: null,
|
|
71
|
-
km5ZXQ: null,
|
|
60
|
+
kOIVth: "musaex-1wm2zkp",
|
|
61
|
+
keTefX: "musaex-3qhtz4",
|
|
72
62
|
$$css: true
|
|
73
63
|
}
|
|
74
64
|
},
|
|
@@ -77,13 +67,9 @@ var styles = {
|
|
|
77
67
|
$$css: true
|
|
78
68
|
},
|
|
79
69
|
collapsed: {
|
|
80
|
-
kg3NbH: "musaex-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
kP0aTx: null,
|
|
84
|
-
kpe85a: null,
|
|
85
|
-
kGO01o: "musaex-v1djvk",
|
|
86
|
-
kLKAdn: "musaex-zvzwkw",
|
|
70
|
+
kg3NbH: "musaex-2961ne",
|
|
71
|
+
kGO01o: "musaex-5jv616",
|
|
72
|
+
kLKAdn: "musaex-1nxu92g",
|
|
87
73
|
k1xSpc: "musaex-78zum5",
|
|
88
74
|
kXwgrk: "musaex-dt5ytf",
|
|
89
75
|
kGNEyG: "musaex-6s0dn4",
|
|
@@ -93,8 +79,6 @@ var styles = {
|
|
|
93
79
|
menu: {
|
|
94
80
|
"default": {
|
|
95
81
|
kVQacm: "musaex-b3r6kr",
|
|
96
|
-
kXHlph: null,
|
|
97
|
-
kORKVm: null,
|
|
98
82
|
$$css: true
|
|
99
83
|
},
|
|
100
84
|
collapsed: {
|
|
@@ -105,46 +89,15 @@ var styles = {
|
|
|
105
89
|
expander: {
|
|
106
90
|
"default": {
|
|
107
91
|
kJuA4N: "musaex-1pultth",
|
|
108
|
-
|
|
109
|
-
k1lYIM: null,
|
|
110
|
-
kpJH7q: null,
|
|
111
|
-
kBCFzs: null,
|
|
112
|
-
kEXP64: null,
|
|
113
|
-
kWZpDQ: null,
|
|
114
|
-
kzqmXN: "musaex-16xszrz",
|
|
92
|
+
kzqmXN: "musaex-92755x",
|
|
115
93
|
k1xSpc: "musaex-78zum5",
|
|
116
94
|
kjj79g: "musaex-l56j7k",
|
|
117
|
-
k8WAf4: "musaex-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
kMzoRj: "musaex-1jwyp45",
|
|
122
|
-
kjGldf: null,
|
|
123
|
-
k2ei4v: null,
|
|
124
|
-
kZ1KPB: null,
|
|
125
|
-
ke9TFa: null,
|
|
126
|
-
kWqL5O: null,
|
|
127
|
-
kLoX6v: null,
|
|
128
|
-
kt9PQ7: null,
|
|
129
|
-
kEafiO: "musaex-1dico0h",
|
|
95
|
+
k8WAf4: "musaex-g98ter",
|
|
96
|
+
keoZOQ: "musaex-1r8uzkf",
|
|
97
|
+
kMzoRj: "musaex-k59kd",
|
|
98
|
+
kEafiO: "musaex-uvson1",
|
|
130
99
|
ksu8eU: "musaex-1y0btm7",
|
|
131
|
-
kJRH4f: null,
|
|
132
|
-
kVhnKS: null,
|
|
133
|
-
k4WBpm: null,
|
|
134
|
-
k8ry5P: null,
|
|
135
|
-
kSWEuD: null,
|
|
136
|
-
kDUl1X: null,
|
|
137
|
-
kPef9Z: null,
|
|
138
|
-
kfdmCh: null,
|
|
139
100
|
kVAM5u: "musaex-axmpxa",
|
|
140
|
-
kzOINU: null,
|
|
141
|
-
kGJrpR: null,
|
|
142
|
-
kaZRDh: null,
|
|
143
|
-
kBCPoo: null,
|
|
144
|
-
k26BEO: null,
|
|
145
|
-
k5QoK5: null,
|
|
146
|
-
kLZC3w: null,
|
|
147
|
-
kL6WhQ: null,
|
|
148
101
|
$$css: true
|
|
149
102
|
}
|
|
150
103
|
},
|