musae 0.2.26 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/avatar/avatar.cjs +179 -0
- package/dist/components/avatar/{avatar.js → avatar.mjs} +12 -12
- package/dist/components/avatar/context.cjs +9 -0
- package/dist/components/avatar/group.cjs +67 -0
- package/dist/components/avatar/{group.js → group.mjs} +6 -6
- package/dist/components/avatar/index.cjs +8 -0
- package/dist/components/avatar/{index.js → index.mjs} +2 -2
- package/dist/components/avatar/types.d.ts +1 -1
- package/dist/components/badge/badge.cjs +120 -0
- package/dist/components/badge/{badge.js → badge.mjs} +9 -10
- package/dist/components/badge/types.d.ts +1 -1
- package/dist/components/bench/bench.cjs +164 -0
- package/dist/components/bench/bench.d.ts +2 -2
- package/dist/components/bench/{bench.js → bench.mjs} +13 -14
- package/dist/components/bench/hooks.cjs +129 -0
- package/dist/components/bench/hooks.d.ts +4 -4
- package/dist/components/bench/{hooks.js → hooks.mjs} +3 -3
- package/dist/components/bench/index.d.ts +0 -2
- package/dist/components/breadcrumb/breadcrumb.cjs +60 -0
- package/dist/components/breadcrumb/{breadcrumb.js → breadcrumb.mjs} +10 -11
- package/dist/components/breadcrumb/item.cjs +88 -0
- package/dist/components/breadcrumb/{item.js → item.mjs} +6 -6
- package/dist/components/breadcrumb/types.d.ts +1 -1
- package/dist/components/button/button.cjs +298 -0
- package/dist/components/button/{button.js → button.mjs} +15 -15
- package/dist/components/button/hooks.cjs +24 -0
- package/dist/components/button/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/button/types.d.ts +1 -1
- package/dist/components/calendar/calendar.cjs +109 -0
- package/dist/components/calendar/{calendar.js → calendar.mjs} +15 -16
- package/dist/components/calendar/hooks.cjs +235 -0
- package/dist/components/calendar/{hooks.js → hooks.mjs} +11 -11
- package/dist/components/calendar/types.d.ts +1 -1
- package/dist/components/cascader/cascader.cjs +86 -0
- package/dist/components/cascader/{cascader.js → cascader.mjs} +8 -9
- package/dist/components/cascader/hooks.cjs +130 -0
- package/dist/components/cascader/hooks.d.ts +2 -2
- package/dist/components/cascader/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/cascader/types.d.ts +1 -1
- package/dist/components/cascader/utils.cjs +108 -0
- package/dist/components/cascader/utils.d.ts +1 -1
- package/dist/components/checkbox/checkbox.cjs +88 -0
- package/dist/components/checkbox/{checkbox.js → checkbox.mjs} +10 -10
- package/dist/components/checkbox/context.cjs +7 -0
- package/dist/components/checkbox/group.cjs +48 -0
- package/dist/components/checkbox/{group.js → group.mjs} +1 -1
- package/dist/components/checkbox/index.cjs +8 -0
- package/dist/components/checkbox/{index.js → index.mjs} +2 -2
- package/dist/components/checkbox/styles.cjs +186 -0
- package/dist/components/checkbox/styles.d.ts +1 -0
- package/dist/components/checkbox/{styles.js → styles.mjs} +1 -0
- package/dist/components/checkbox/types.d.ts +1 -1
- package/dist/components/clock/clock.cjs +40 -0
- package/dist/components/clock/{clock.js → clock.mjs} +7 -8
- package/dist/components/clock/column.cjs +92 -0
- package/dist/components/clock/{column.js → column.mjs} +9 -9
- package/dist/components/clock/hooks.cjs +12 -0
- package/dist/components/clock/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/clock/types.cjs +6 -0
- package/dist/components/clock/types.d.ts +1 -1
- package/dist/components/collapse/collapse.cjs +102 -0
- package/dist/components/collapse/{collapse.js → collapse.mjs} +10 -11
- package/dist/components/collapse/context.cjs +12 -0
- package/dist/components/collapse/hooks.cjs +51 -0
- package/dist/components/collapse/item.cjs +170 -0
- package/dist/components/collapse/{item.js → item.mjs} +9 -9
- package/dist/components/collapse/types.d.ts +1 -1
- package/dist/components/config/context.cjs +11 -0
- package/dist/components/config/{context.js → context.mjs} +1 -1
- package/dist/components/config/hooks.cjs +12 -0
- package/dist/components/config/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/config/provider.cjs +35 -0
- package/dist/components/config/{provider.js → provider.mjs} +7 -8
- package/dist/components/config/types.d.ts +1 -1
- package/dist/components/countdown/countdown.cjs +85 -0
- package/dist/components/countdown/{countdown.js → countdown.mjs} +2 -3
- package/dist/components/countdown/types.d.ts +1 -1
- package/dist/components/date-picker/date-picker.cjs +45 -0
- package/dist/components/date-picker/{date-picker.js → date-picker.mjs} +12 -13
- package/dist/components/date-picker/hooks.cjs +31 -0
- package/dist/components/date-range-picker/date-range-picker.cjs +56 -0
- package/dist/components/date-range-picker/{date-range-picker.js → date-range-picker.mjs} +8 -9
- package/dist/components/date-range-picker/hooks.cjs +41 -0
- package/dist/components/dialog/dialog.cjs +40 -0
- package/dist/components/dialog/{dialog.js → dialog.mjs} +3 -4
- package/dist/components/dialog/hooks.cjs +32 -0
- package/dist/components/dialog/{hooks.js → hooks.mjs} +4 -4
- package/dist/components/dialog/popup.cjs +216 -0
- package/dist/components/dialog/{popup.js → popup.mjs} +20 -20
- package/dist/components/dialog/types.d.ts +1 -1
- package/dist/components/divider/divider.cjs +181 -0
- package/dist/components/divider/{divider.js → divider.mjs} +12 -13
- package/dist/components/divider/hooks.cjs +16 -0
- package/dist/components/divider/types.d.ts +1 -1
- package/dist/components/drawer/drawer.cjs +46 -0
- package/dist/components/drawer/{drawer.js → drawer.mjs} +3 -4
- package/dist/components/drawer/hooks.cjs +8 -0
- package/dist/components/drawer/popup.cjs +276 -0
- package/dist/components/drawer/{popup.js → popup.mjs} +15 -15
- package/dist/components/drawer/types.d.ts +1 -1
- package/dist/components/empty/empty.cjs +66 -0
- package/dist/components/empty/{empty.js → empty.mjs} +8 -9
- package/dist/components/floating-action-button/floatable.cjs +102 -0
- package/dist/components/floating-action-button/{floatable.js → floatable.mjs} +4 -4
- package/dist/components/floating-action-button/floating-action-button.cjs +39 -0
- package/dist/components/floating-action-button/{floating-action-button.js → floating-action-button.mjs} +3 -4
- package/dist/components/form/context.cjs +12 -0
- package/dist/components/form/context.d.ts +1 -1
- package/dist/components/form/{context.js → context.mjs} +1 -2
- package/dist/components/form/field/error.cjs +74 -0
- package/dist/components/form/field/error.d.ts +1 -1
- package/dist/components/form/field/{error.js → error.mjs} +6 -6
- package/dist/components/form/field/field.cjs +96 -0
- package/dist/components/form/field/field.d.ts +2 -2
- package/dist/components/form/field/field.mjs +94 -0
- package/dist/components/form/field/layout.cjs +79 -0
- package/dist/components/form/field/layout.d.ts +4 -3
- package/dist/components/form/field/layout.mjs +77 -0
- package/dist/components/form/form.cjs +55 -0
- package/dist/components/form/form.d.ts +1 -1
- package/dist/components/form/{form.js → form.mjs} +2 -2
- package/dist/components/form/hooks.cjs +14 -0
- package/dist/components/form/index.cjs +10 -0
- package/dist/components/form/index.d.ts +1 -4
- package/dist/components/form/index.mjs +10 -0
- package/dist/components/form/item.cjs +35 -0
- package/dist/components/form/item.d.ts +1 -1
- package/dist/components/form/{item.js → item.mjs} +4 -2
- package/dist/components/grid/col.cjs +40 -0
- package/dist/components/grid/{col.js → col.mjs} +5 -5
- package/dist/components/grid/index.cjs +9 -0
- package/dist/components/grid/{index.js → index.mjs} +2 -2
- package/dist/components/grid/row.cjs +65 -0
- package/dist/components/grid/{row.js → row.mjs} +6 -6
- package/dist/components/grid/types.d.ts +1 -1
- package/dist/components/highlight/highlight.cjs +57 -0
- package/dist/components/highlight/{highlight.js → highlight.mjs} +6 -6
- package/dist/components/i18n-button/hooks.cjs +78 -0
- package/dist/components/i18n-button/hooks.d.ts +2 -2
- package/dist/components/i18n-button/{hooks.js → hooks.mjs} +3 -3
- package/dist/components/i18n-button/i18n-button.cjs +56 -0
- package/dist/components/i18n-button/{i18n-button.js → i18n-button.mjs} +6 -7
- package/dist/components/i18n-button/types.d.ts +1 -1
- package/dist/components/icon/hoc.cjs +17 -0
- package/dist/components/icon/{hoc.js → hoc.mjs} +1 -1
- package/dist/components/icon/icon.cjs +60 -0
- package/dist/components/icon/{icon.js → icon.mjs} +8 -9
- package/dist/components/icon/icons/action/check-circle-outline.cjs +20 -0
- package/dist/components/icon/icons/action/{check-circle-outline.js → check-circle-outline.mjs} +2 -3
- package/dist/components/icon/icons/action/check-circle.cjs +20 -0
- package/dist/components/icon/icons/action/{check-circle.js → check-circle.mjs} +2 -3
- package/dist/components/icon/icons/action/code.cjs +20 -0
- package/dist/components/icon/icons/action/{code.js → code.mjs} +2 -3
- package/dist/components/icon/icons/action/done-outline.cjs +20 -0
- package/dist/components/icon/icons/action/{done-outline.js → done-outline.mjs} +2 -3
- package/dist/components/icon/icons/action/done.cjs +20 -0
- package/dist/components/icon/icons/action/{done.js → done.mjs} +2 -3
- package/dist/components/icon/icons/action/index.cjs +29 -0
- package/dist/components/icon/icons/action/index.mjs +13 -0
- package/dist/components/icon/icons/action/open-in-new.cjs +20 -0
- package/dist/components/icon/icons/action/{open-in-new.js → open-in-new.mjs} +2 -3
- package/dist/components/icon/icons/action/swap-horiz.cjs +20 -0
- package/dist/components/icon/icons/action/{swap-horiz.js → swap-horiz.mjs} +2 -3
- package/dist/components/icon/icons/action/swap-vert.cjs +20 -0
- package/dist/components/icon/icons/action/{swap-vert.js → swap-vert.mjs} +2 -3
- package/dist/components/icon/icons/action/translate.cjs +20 -0
- package/dist/components/icon/icons/action/{translate.js → translate.mjs} +2 -3
- package/dist/components/icon/icons/action/visibility-off.cjs +20 -0
- package/dist/components/icon/icons/action/{visibility-off.js → visibility-off.mjs} +2 -3
- package/dist/components/icon/icons/action/visibility.cjs +20 -0
- package/dist/components/icon/icons/action/{visibility.js → visibility.mjs} +2 -3
- package/dist/components/icon/icons/action/zoom-in.cjs +20 -0
- package/dist/components/icon/icons/action/{zoom-in.js → zoom-in.mjs} +2 -3
- package/dist/components/icon/icons/action/zoom-out.cjs +20 -0
- package/dist/components/icon/icons/action/{zoom-out.js → zoom-out.mjs} +2 -3
- package/dist/components/icon/icons/alert/add-alert.cjs +20 -0
- package/dist/components/icon/icons/alert/{add-alert.js → add-alert.mjs} +2 -3
- package/dist/components/icon/icons/alert/auto-delete.cjs +26 -0
- package/dist/components/icon/icons/alert/{auto-delete.js → auto-delete.mjs} +2 -3
- package/dist/components/icon/icons/alert/error-outline.cjs +20 -0
- package/dist/components/icon/icons/alert/{error-outline.js → error-outline.mjs} +2 -3
- package/dist/components/icon/icons/alert/error.cjs +20 -0
- package/dist/components/icon/icons/alert/{error.js → error.mjs} +2 -3
- package/dist/components/icon/icons/alert/index.cjs +17 -0
- package/dist/components/icon/icons/alert/index.mjs +7 -0
- package/dist/components/icon/icons/alert/notification-important.cjs +20 -0
- package/dist/components/icon/icons/alert/{notification-important.js → notification-important.mjs} +2 -3
- package/dist/components/icon/icons/alert/warning-amber.cjs +20 -0
- package/dist/components/icon/icons/alert/{warning-amber.js → warning-amber.mjs} +2 -3
- package/dist/components/icon/icons/alert/warning.cjs +20 -0
- package/dist/components/icon/icons/alert/{warning.js → warning.mjs} +2 -3
- package/dist/components/icon/icons/content/clear.cjs +20 -0
- package/dist/components/icon/icons/content/{clear.js → clear.mjs} +2 -3
- package/dist/components/icon/icons/content/font-download.cjs +20 -0
- package/dist/components/icon/icons/content/{font-download.js → font-download.mjs} +2 -3
- package/dist/components/icon/icons/content/index.cjs +13 -0
- package/dist/components/icon/icons/content/index.mjs +5 -0
- package/dist/components/icon/icons/content/link-off.cjs +20 -0
- package/dist/components/icon/icons/content/{link-off.js → link-off.mjs} +2 -3
- package/dist/components/icon/icons/content/redo.cjs +20 -0
- package/dist/components/icon/icons/content/{redo.js → redo.mjs} +2 -3
- package/dist/components/icon/icons/content/undo.cjs +20 -0
- package/dist/components/icon/icons/content/{undo.js → undo.mjs} +2 -3
- package/dist/components/icon/icons/editor/checklist.cjs +20 -0
- package/dist/components/icon/icons/editor/{checklist.js → checklist.mjs} +2 -3
- package/dist/components/icon/icons/editor/format-bold.cjs +20 -0
- package/dist/components/icon/icons/editor/{format-bold.js → format-bold.mjs} +2 -3
- package/dist/components/icon/icons/editor/format-italic.cjs +20 -0
- package/dist/components/icon/icons/editor/{format-italic.js → format-italic.mjs} +2 -3
- package/dist/components/icon/icons/editor/format-strikethrough.cjs +20 -0
- package/dist/components/icon/icons/editor/{format-strikethrough.js → format-strikethrough.mjs} +2 -3
- package/dist/components/icon/icons/editor/format-underlined.cjs +20 -0
- package/dist/components/icon/icons/editor/{format-underlined.js → format-underlined.mjs} +2 -3
- package/dist/components/icon/icons/editor/index.cjs +21 -0
- package/dist/components/icon/icons/editor/index.mjs +9 -0
- package/dist/components/icon/icons/editor/insert-link.cjs +20 -0
- package/dist/components/icon/icons/editor/{insert-link.js → insert-link.mjs} +2 -3
- package/dist/components/icon/icons/editor/notes.cjs +20 -0
- package/dist/components/icon/icons/editor/{notes.js → notes.mjs} +2 -3
- package/dist/components/icon/icons/editor/subscript.cjs +20 -0
- package/dist/components/icon/icons/editor/{subscript.js → subscript.mjs} +2 -3
- package/dist/components/icon/icons/editor/superscript.cjs +20 -0
- package/dist/components/icon/icons/editor/{superscript.js → superscript.mjs} +2 -3
- package/dist/components/icon/icons/hardware/index.cjs +15 -0
- package/dist/components/icon/icons/hardware/{index.js → index.mjs} +6 -6
- package/dist/components/icon/icons/hardware/keyboard-arrow-down.cjs +19 -0
- package/dist/components/icon/icons/hardware/{keyboard-arrow-down.js → keyboard-arrow-down.mjs} +2 -3
- package/dist/components/icon/icons/hardware/keyboard-arrow-left.cjs +20 -0
- package/dist/components/icon/icons/hardware/{keyboard-arrow-left.js → keyboard-arrow-left.mjs} +2 -3
- package/dist/components/icon/icons/hardware/keyboard-arrow-right.cjs +20 -0
- package/dist/components/icon/icons/hardware/{keyboard-arrow-right.js → keyboard-arrow-right.mjs} +2 -3
- package/dist/components/icon/icons/hardware/keyboard-arrow-up.cjs +20 -0
- package/dist/components/icon/icons/hardware/{keyboard-arrow-up.js → keyboard-arrow-up.mjs} +2 -3
- package/dist/components/icon/icons/hardware/keyboard-double-arrow-left.cjs +23 -0
- package/dist/components/icon/icons/hardware/{keyboard-double-arrow-left.js → keyboard-double-arrow-left.mjs} +2 -3
- package/dist/components/icon/icons/hardware/keyboard-double-arrow-right.cjs +23 -0
- package/dist/components/icon/icons/hardware/{keyboard-double-arrow-right.js → keyboard-double-arrow-right.mjs} +2 -3
- package/dist/components/icon/icons/image/bedtime.cjs +20 -0
- package/dist/components/icon/icons/image/{bedtime.js → bedtime.mjs} +2 -3
- package/dist/components/icon/icons/image/edit.cjs +20 -0
- package/dist/components/icon/icons/image/{edit.js → edit.mjs} +2 -3
- package/dist/components/icon/icons/image/index.cjs +25 -0
- package/dist/components/icon/icons/image/index.mjs +11 -0
- package/dist/components/icon/icons/image/looks-five.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-five.js → looks-five.mjs} +2 -3
- package/dist/components/icon/icons/image/looks-four.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-four.js → looks-four.mjs} +2 -3
- package/dist/components/icon/icons/image/looks-one.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-one.js → looks-one.mjs} +2 -3
- package/dist/components/icon/icons/image/looks-six.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-six.js → looks-six.mjs} +2 -3
- package/dist/components/icon/icons/image/looks-three.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-three.js → looks-three.mjs} +2 -3
- package/dist/components/icon/icons/image/looks-two.cjs +20 -0
- package/dist/components/icon/icons/image/{looks-two.js → looks-two.mjs} +2 -3
- package/dist/components/icon/icons/image/rotate-left.cjs +20 -0
- package/dist/components/icon/icons/image/{rotate-left.js → rotate-left.mjs} +2 -3
- package/dist/components/icon/icons/image/rotate-right.cjs +20 -0
- package/dist/components/icon/icons/image/{rotate-right.js → rotate-right.mjs} +2 -3
- package/dist/components/icon/icons/image/wb-sunny.cjs +20 -0
- package/dist/components/icon/icons/image/{wb-sunny.js → wb-sunny.mjs} +2 -3
- package/dist/components/icon/icons/index.cjs +125 -0
- package/dist/components/icon/icons/index.mjs +61 -0
- package/dist/components/icon/icons/mock/github.cjs +21 -0
- package/dist/components/icon/icons/mock/{github.js → github.mjs} +2 -3
- package/dist/components/icon/icons/mock/index.cjs +7 -0
- package/dist/components/icon/icons/mock/index.mjs +2 -0
- package/dist/components/icon/icons/mock/loading.cjs +26 -0
- package/dist/components/icon/icons/mock/{loading.js → loading.mjs} +2 -3
- package/dist/components/icon/icons/navigation/cancel.cjs +20 -0
- package/dist/components/icon/icons/navigation/{cancel.js → cancel.mjs} +2 -3
- package/dist/components/icon/icons/navigation/check.cjs +20 -0
- package/dist/components/icon/icons/navigation/{check.js → check.mjs} +2 -3
- package/dist/components/icon/icons/navigation/close.cjs +20 -0
- package/dist/components/icon/icons/navigation/{close.js → close.mjs} +2 -3
- package/dist/components/icon/icons/navigation/index.cjs +13 -0
- package/dist/components/icon/icons/navigation/index.mjs +5 -0
- package/dist/components/icon/icons/navigation/more-horiz.cjs +20 -0
- package/dist/components/icon/icons/navigation/{more-horiz.js → more-horiz.mjs} +2 -3
- package/dist/components/icon/icons/navigation/unfold-more.cjs +20 -0
- package/dist/components/icon/icons/navigation/{unfold-more.js → unfold-more.mjs} +2 -3
- package/dist/components/icon/icons/toggle/index.cjs +9 -0
- package/dist/components/icon/icons/toggle/index.mjs +3 -0
- package/dist/components/icon/icons/toggle/star-half.cjs +20 -0
- package/dist/components/icon/icons/toggle/{star-half.js → star-half.mjs} +2 -3
- package/dist/components/icon/icons/toggle/star-outline.cjs +20 -0
- package/dist/components/icon/icons/toggle/{star-outline.js → star-outline.mjs} +2 -3
- package/dist/components/icon/icons/toggle/star.cjs +20 -0
- package/dist/components/icon/icons/toggle/{star.js → star.mjs} +2 -3
- package/dist/components/icon/types.d.ts +1 -1
- package/dist/components/image/hooks.cjs +65 -0
- package/dist/components/image/{hooks.js → hooks.mjs} +7 -7
- package/dist/components/image/image.cjs +47 -0
- package/dist/components/image/{image.js → image.mjs} +2 -2
- package/dist/components/image/index.cjs +8 -0
- package/dist/components/image/{index.js → index.mjs} +2 -2
- package/dist/components/image/preview/context.cjs +7 -0
- package/dist/components/image/preview/group.cjs +62 -0
- package/dist/components/image/preview/{group.js → group.mjs} +2 -2
- package/dist/components/image/preview/operations.cjs +148 -0
- package/dist/components/image/preview/{operations.js → operations.mjs} +10 -10
- package/dist/components/image/preview/preview.cjs +135 -0
- package/dist/components/image/preview/{preview.js → preview.mjs} +3 -3
- package/dist/components/image/types.d.ts +1 -1
- package/dist/components/input/hooks.cjs +69 -0
- package/dist/components/input/input.cjs +225 -0
- package/dist/components/input/{input.js → input.mjs} +11 -12
- package/dist/components/input/types.d.ts +1 -1
- package/dist/components/layout/footer.cjs +7 -0
- package/dist/components/layout/header.cjs +46 -0
- package/dist/components/layout/{header.js → header.mjs} +4 -4
- package/dist/components/layout/hooks.cjs +60 -0
- package/dist/components/layout/hooks.d.ts +1 -1
- package/dist/components/layout/{hooks.js → hooks.mjs} +4 -4
- package/dist/components/layout/index.cjs +13 -0
- package/dist/components/layout/index.mjs +13 -0
- package/dist/components/layout/layout.cjs +52 -0
- package/dist/components/layout/{layout.js → layout.mjs} +5 -5
- package/dist/components/layout/main.cjs +8 -0
- package/dist/components/layout/sider.cjs +18 -0
- package/dist/components/layout/{sider.js → sider.mjs} +1 -1
- package/dist/components/layout/types.d.ts +1 -1
- package/dist/components/loading/loading.cjs +159 -0
- package/dist/components/loading/loading.d.ts +1 -1
- package/dist/components/loading/{loading.js → loading.mjs} +39 -49
- package/dist/components/loading/types.d.ts +9 -2
- package/dist/components/menu/context.cjs +20 -0
- package/dist/components/menu/context.d.ts +1 -1
- package/dist/components/menu/group.cjs +190 -0
- package/dist/components/menu/group.d.ts +2 -2
- package/dist/components/menu/{group.js → group.mjs} +11 -11
- package/dist/components/menu/hooks.cjs +163 -0
- package/dist/components/menu/hooks.d.ts +2 -2
- package/dist/components/menu/{hooks.js → hooks.mjs} +4 -4
- package/dist/components/menu/index.d.ts +1 -2
- package/dist/components/menu/item.cjs +291 -0
- package/dist/components/menu/item.d.ts +3 -3
- package/dist/components/menu/{item.js → item.mjs} +17 -17
- package/dist/components/menu/menu.cjs +73 -0
- package/dist/components/menu/menu.d.ts +1 -1
- package/dist/components/menu/{menu.js → menu.mjs} +7 -8
- package/dist/components/message/hooks.cjs +47 -0
- package/dist/components/message/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/message/messager.cjs +22 -0
- package/dist/components/message/{messager.js → messager.mjs} +2 -3
- package/dist/components/notification/holder.cjs +170 -0
- package/dist/components/notification/{holder.js → holder.mjs} +4 -4
- package/dist/components/notification/hooks.cjs +86 -0
- package/dist/components/notification/{hooks.js → hooks.mjs} +2 -2
- package/dist/components/notification/notification.cjs +279 -0
- package/dist/components/notification/{notification.js → notification.mjs} +14 -14
- package/dist/components/notification/notifier.cjs +73 -0
- package/dist/components/notification/{notifier.js → notifier.mjs} +2 -3
- package/dist/components/number-input/hooks.cjs +31 -0
- package/dist/components/number-input/number-input.cjs +40 -0
- package/dist/components/number-input/{number-input.js → number-input.mjs} +3 -4
- package/dist/components/otp-input/hooks.cjs +82 -0
- package/dist/components/otp-input/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/otp-input/otp-input.cjs +89 -0
- package/dist/components/otp-input/{otp-input.js → otp-input.mjs} +3 -4
- package/dist/components/pagination/hooks.cjs +70 -0
- package/dist/components/pagination/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/pagination/item.cjs +74 -0
- package/dist/components/pagination/{item.js → item.mjs} +7 -7
- package/dist/components/pagination/pagination.cjs +90 -0
- package/dist/components/pagination/{pagination.js → pagination.mjs} +8 -9
- package/dist/components/pagination/types.cjs +11 -0
- package/dist/components/picker/context.cjs +9 -0
- package/dist/components/picker/picker.cjs +121 -0
- package/dist/components/picker/{picker.js → picker.mjs} +12 -12
- package/dist/components/picker/types.d.ts +1 -1
- package/dist/components/popconfirm/popconfirm.cjs +148 -0
- package/dist/components/popconfirm/{popconfirm.js → popconfirm.mjs} +13 -14
- package/dist/components/popconfirm/types.d.ts +1 -1
- package/dist/components/popover/hooks.cjs +64 -0
- package/dist/components/popover/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/popover/popover.cjs +154 -0
- package/dist/components/popover/{popover.js → popover.mjs} +9 -10
- package/dist/components/popover/types.d.ts +1 -1
- package/dist/components/popper/dropdown.cjs +135 -0
- package/dist/components/popper/{dropdown.js → dropdown.mjs} +11 -11
- package/dist/components/popper/hooks.cjs +187 -0
- package/dist/components/popper/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/popper/popper.cjs +26 -0
- package/dist/components/popper/{popper.js → popper.mjs} +2 -2
- package/dist/components/popper/types.d.ts +1 -1
- package/dist/components/portal/portal.cjs +39 -0
- package/dist/components/portal/{portal.js → portal.mjs} +1 -1
- package/dist/components/progress/circular.cjs +86 -0
- package/dist/components/progress/{circular.js → circular.mjs} +5 -5
- package/dist/components/progress/hooks.cjs +48 -0
- package/dist/components/progress/linear.cjs +85 -0
- package/dist/components/progress/{linear.js → linear.mjs} +7 -7
- package/dist/components/progress/progress.cjs +22 -0
- package/dist/components/progress/{progress.js → progress.mjs} +3 -4
- package/dist/components/progress/types.d.ts +1 -1
- package/dist/components/quote/quote.cjs +30 -0
- package/dist/components/quote/{quote.js → quote.mjs} +9 -10
- package/dist/components/quote/styles.cjs +31 -0
- package/dist/components/quote/types.d.ts +1 -1
- package/dist/components/radio/context.cjs +7 -0
- package/dist/components/radio/group.cjs +37 -0
- package/dist/components/radio/{group.js → group.mjs} +1 -1
- package/dist/components/radio/index.cjs +8 -0
- package/dist/components/radio/{index.js → index.mjs} +2 -2
- package/dist/components/radio/radio.cjs +241 -0
- package/dist/components/radio/{radio.js → radio.mjs} +13 -13
- package/dist/components/radio/types.d.ts +1 -1
- package/dist/components/rate/hooks.cjs +59 -0
- package/dist/components/rate/rate.cjs +66 -0
- package/dist/components/rate/{rate.js → rate.mjs} +7 -8
- package/dist/components/rate/star.cjs +147 -0
- package/dist/components/rate/{star.js → star.mjs} +9 -9
- package/dist/components/rate/types.d.ts +1 -1
- package/dist/components/rich-text-editor/dropdown.cjs +80 -0
- package/dist/components/rich-text-editor/{dropdown.js → dropdown.mjs} +4 -4
- package/dist/components/rich-text-editor/index.cjs +12 -0
- package/dist/components/rich-text-editor/{index.js → index.mjs} +1 -1
- package/dist/components/rich-text-editor/nodes/checkable-list-item.cjs +89 -0
- package/dist/components/rich-text-editor/plugins/check-list/index.cjs +49 -0
- package/dist/components/rich-text-editor/plugins/controlled-state/index.cjs +45 -0
- package/dist/components/rich-text-editor/plugins/controlled-state/{index.js → index.mjs} +1 -1
- package/dist/components/rich-text-editor/plugins/floating-link-editor/index.cjs +123 -0
- package/dist/components/rich-text-editor/plugins/floating-link-editor/{index.js → index.mjs} +10 -10
- package/dist/components/rich-text-editor/plugins/markdown-shortcut/index.cjs +16 -0
- package/dist/components/rich-text-editor/plugins/markdown-shortcut/{index.js → index.mjs} +3 -4
- package/dist/components/rich-text-editor/plugins/toolbar/hooks.cjs +265 -0
- package/dist/components/rich-text-editor/plugins/toolbar/hooks.d.ts +3 -3
- package/dist/components/rich-text-editor/plugins/toolbar/{hooks.js → hooks.mjs} +11 -11
- package/dist/components/rich-text-editor/plugins/toolbar/index.cjs +218 -0
- package/dist/components/rich-text-editor/plugins/toolbar/{index.js → index.mjs} +17 -17
- package/dist/components/rich-text-editor/rich-text-editor.cjs +209 -0
- package/dist/components/rich-text-editor/rich-text-editor.d.ts +1 -1
- package/dist/components/rich-text-editor/{rich-text-editor.js → rich-text-editor.mjs} +16 -20
- package/dist/components/rich-text-editor/types.d.ts +1 -6
- package/dist/components/rich-text-editor/utils/get-element-by-node.cjs +8 -0
- package/dist/components/ripple/hooks.cjs +53 -0
- package/dist/components/ripple/ripple.cjs +93 -0
- package/dist/components/ripple/{ripple.js → ripple.mjs} +2 -2
- package/dist/components/select/hooks.cjs +145 -0
- package/dist/components/select/hooks.d.ts +2 -2
- package/dist/components/select/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/select/select.cjs +91 -0
- package/dist/components/select/{select.js → select.mjs} +8 -9
- package/dist/components/select/selections.cjs +41 -0
- package/dist/components/select/{selections.js → selections.mjs} +3 -3
- package/dist/components/select/selector.cjs +82 -0
- package/dist/components/select/{selector.js → selector.mjs} +7 -7
- package/dist/components/select/types.d.ts +3 -3
- package/dist/components/select/utils.cjs +67 -0
- package/dist/components/select/utils.d.ts +2 -2
- package/dist/components/skeleton/skeleton.cjs +101 -0
- package/dist/components/skeleton/{skeleton.js → skeleton.mjs} +5 -6
- package/dist/components/skeleton/types.d.ts +1 -1
- package/dist/components/space/space.cjs +61 -0
- package/dist/components/space/{space.js → space.mjs} +4 -5
- package/dist/components/space/types.d.ts +1 -1
- package/dist/components/steps/context.cjs +9 -0
- package/dist/components/steps/item.cjs +237 -0
- package/dist/components/steps/{item.js → item.mjs} +10 -10
- package/dist/components/steps/steps.cjs +78 -0
- package/dist/components/steps/{steps.js → steps.mjs} +7 -8
- package/dist/components/steps/types.d.ts +1 -1
- package/dist/components/switch/switch.cjs +311 -0
- package/dist/components/switch/{switch.js → switch.mjs} +15 -16
- package/dist/components/switch/types.d.ts +1 -1
- package/dist/components/table/body.cjs +92 -0
- package/dist/components/table/{body.js → body.mjs} +7 -7
- package/dist/components/table/context.cjs +18 -0
- package/dist/components/table/context.d.ts +1 -1
- package/dist/components/table/header/cell.cjs +135 -0
- package/dist/components/table/header/cell.d.ts +2 -2
- package/dist/components/table/header/{cell.js → cell.mjs} +5 -5
- package/dist/components/table/header/header.cjs +109 -0
- package/dist/components/table/header/header.d.ts +1 -1
- package/dist/components/table/header/{header.js → header.mjs} +8 -8
- package/dist/components/table/hooks.cjs +74 -0
- package/dist/components/table/hooks.d.ts +1 -1
- package/dist/components/table/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/table/index.d.ts +0 -2
- package/dist/components/table/table.cjs +41 -0
- package/dist/components/table/table.d.ts +1 -1
- package/dist/components/table/{table.js → table.mjs} +5 -6
- package/dist/components/tabs/context.cjs +7 -0
- package/dist/components/tabs/hooks.cjs +134 -0
- package/dist/components/tabs/{hooks.js → hooks.mjs} +1 -1
- package/dist/components/tabs/navigation.cjs +168 -0
- package/dist/components/tabs/{navigation.js → navigation.mjs} +8 -8
- package/dist/components/tabs/panels.cjs +88 -0
- package/dist/components/tabs/{panels.js → panels.mjs} +5 -5
- package/dist/components/tabs/tab.cjs +35 -0
- package/dist/components/tabs/{tab.js → tab.mjs} +5 -5
- package/dist/components/tabs/tabs.cjs +56 -0
- package/dist/components/tabs/{tabs.js → tabs.mjs} +8 -9
- package/dist/components/tabs/types.d.ts +1 -1
- package/dist/components/tag/tag.cjs +123 -0
- package/dist/components/tag/{tag.js → tag.mjs} +10 -11
- package/dist/components/tag/types.d.ts +1 -1
- package/dist/components/theme/hooks.cjs +218 -0
- package/dist/components/theme/{hooks.js → hooks.mjs} +2 -2
- package/dist/components/theme/theme-provider.cjs +36 -0
- package/dist/components/theme/{theme-provider.js → theme-provider.mjs} +2 -3
- package/dist/components/theme/theme.cjs +145 -0
- package/dist/components/theme/tokens.stylex.cjs +64 -0
- package/dist/components/time-picker/hooks.cjs +31 -0
- package/dist/components/time-picker/panel.cjs +105 -0
- package/dist/components/time-picker/{panel.js → panel.mjs} +15 -15
- package/dist/components/time-picker/time-picker.cjs +64 -0
- package/dist/components/time-picker/{time-picker.js → time-picker.mjs} +12 -13
- package/dist/components/time-picker/types.d.ts +1 -1
- package/dist/components/timeline/context.cjs +8 -0
- package/dist/components/timeline/item.cjs +220 -0
- package/dist/components/timeline/{item.js → item.mjs} +8 -8
- package/dist/components/timeline/timeline.cjs +44 -0
- package/dist/components/timeline/{timeline.js → timeline.mjs} +6 -7
- package/dist/components/tooltip/tooltip.cjs +24 -0
- package/dist/components/tooltip/{tooltip.js → tooltip.mjs} +5 -6
- package/dist/components/tooltip/types.d.ts +1 -1
- package/dist/components/tour/hooks.cjs +47 -0
- package/dist/components/tour/hooks.d.ts +1 -1
- package/dist/components/tour/index.d.ts +0 -2
- package/dist/components/tour/spotlight.cjs +65 -0
- package/dist/components/tour/spotlight.d.ts +1 -1
- package/dist/components/tour/{spotlight.js → spotlight.mjs} +3 -3
- package/dist/components/tour/tour.cjs +171 -0
- package/dist/components/tour/tour.d.ts +1 -1
- package/dist/components/tour/{tour.js → tour.mjs} +16 -17
- package/dist/components/transfer/context.cjs +11 -0
- package/dist/components/transfer/hooks.cjs +72 -0
- package/dist/components/transfer/item.cjs +27 -0
- package/dist/components/transfer/{item.js → item.mjs} +4 -4
- package/dist/components/transfer/list.cjs +132 -0
- package/dist/components/transfer/{list.js → list.mjs} +11 -11
- package/dist/components/transfer/transfer.cjs +82 -0
- package/dist/components/transfer/{transfer.js → transfer.mjs} +10 -11
- package/dist/components/transfer/types.d.ts +2 -2
- package/dist/components/tree/context.cjs +12 -0
- package/dist/components/tree/context.d.ts +1 -1
- package/dist/components/tree/hooks.cjs +67 -0
- package/dist/components/tree/hooks.d.ts +1 -1
- package/dist/components/tree/index.d.ts +1 -2
- package/dist/components/tree/list.cjs +97 -0
- package/dist/components/tree/list.d.ts +1 -1
- package/dist/components/tree/{list.js → list.mjs} +8 -8
- package/dist/components/tree/node.cjs +153 -0
- package/dist/components/tree/node.d.ts +1 -1
- package/dist/components/tree/{node.js → node.mjs} +14 -14
- package/dist/components/tree/tree.cjs +68 -0
- package/dist/components/tree/tree.d.ts +1 -1
- package/dist/components/tree/{tree.js → tree.mjs} +4 -5
- package/dist/components/upload/upload.cjs +80 -0
- package/dist/components/upload/{upload.js → upload.mjs} +3 -4
- package/dist/components/upload/uploadeds.cjs +116 -0
- package/dist/components/upload/{uploadeds.js → uploadeds.mjs} +3 -3
- package/dist/components/visually-hidden/visually-hidden.cjs +21 -0
- package/dist/components/visually-hidden/{visually-hidden.js → visually-hidden.mjs} +4 -5
- package/dist/components/waterfall/hooks.cjs +60 -0
- package/dist/components/waterfall/sequential.cjs +73 -0
- package/dist/components/waterfall/{sequential.js → sequential.mjs} +2 -2
- package/dist/components/waterfall/types.d.ts +1 -1
- package/dist/components/waterfall/waterfall.cjs +152 -0
- package/dist/components/waterfall/{waterfall.js → waterfall.mjs} +10 -11
- package/dist/components/watermark/hooks.cjs +154 -0
- package/dist/components/watermark/watermark.cjs +86 -0
- package/dist/components/watermark/{watermark.js → watermark.mjs} +2 -3
- package/dist/hooks/use-class-names.cjs +12 -0
- package/dist/hooks/use-class-names.d.ts +1 -0
- package/dist/hooks/{use-class-names.js → use-class-names.mjs} +1 -1
- package/dist/hooks/use-closable.cjs +61 -0
- package/dist/hooks/use-closable.d.ts +1 -1
- package/dist/hooks/{use-closable.js → use-closable.mjs} +3 -3
- package/dist/hooks/use-container.cjs +28 -0
- package/dist/hooks/use-expandable.cjs +74 -0
- package/dist/hooks/use-gutters.cjs +13 -0
- package/dist/hooks/use-lazy-boolean.cjs +64 -0
- package/dist/index.cjs +130 -0
- package/dist/index.d.ts +2 -13
- package/dist/index.mjs +64 -0
- package/dist/locale/context.cjs +6 -0
- package/dist/locale/context.d.ts +1 -1
- package/dist/locale/context.mjs +6 -0
- package/dist/locale/index.d.ts +1 -2
- package/dist/locale/locales/en_US.cjs +34 -0
- package/dist/locale/locales/en_US.d.ts +1 -1
- package/dist/locale/locales/{en_US.js → en_US.mjs} +3 -5
- package/dist/locale/locales/index.cjs +7 -0
- package/dist/locale/locales/index.mjs +2 -0
- package/dist/locale/locales/zh_CN.cjs +34 -0
- package/dist/locale/locales/zh_CN.d.ts +1 -1
- package/dist/locale/locales/{zh_CN.js → zh_CN.mjs} +3 -5
- package/dist/locale/use-locale.cjs +12 -0
- package/dist/locale/use-locale.d.ts +1 -1
- package/dist/locale/{use-locale.js → use-locale.mjs} +1 -1
- package/dist/node_modules/.pnpm/@stylexjs_stylex@0.7.5/node_modules/@stylexjs/stylex/lib/es/stylex.cjs +306 -0
- package/dist/styles.css +2 -6
- package/dist/{components/bench/types.d.ts → types/bench.d.ts} +5 -5
- package/dist/{components/form/types.d.ts → types/form.d.ts} +7 -2
- package/dist/{locale/types.d.ts → types/locale.d.ts} +1 -4
- package/dist/{components/menu/types.d.ts → types/menu.d.ts} +2 -2
- package/dist/{components/table/types.d.ts → types/table.d.ts} +1 -1
- package/dist/{components/tour/types.d.ts → types/tour.d.ts} +1 -1
- package/dist/{components/tree/types.d.ts → types/tree.d.ts} +1 -1
- package/dist/utils/class-name.cjs +357 -0
- package/dist/utils/class-name.d.ts +4 -1
- package/dist/utils/{class-name.js → class-name.mjs} +4 -3
- package/dist/utils/colors.cjs +72 -0
- package/dist/utils/component-token.cjs +54 -0
- package/dist/utils/keyboard.cjs +12 -0
- package/dist/utils/layer.cjs +23 -0
- package/dist/utils/styles.cjs +15 -0
- package/dist/utils/timespan.cjs +52 -0
- package/package.json +28 -47
- package/dist/components/form/field/field.js +0 -88
- package/dist/components/form/field/layout.js +0 -65
- package/dist/components/form/index.js +0 -10
- package/dist/components/icon/icons/action/index.js +0 -13
- package/dist/components/icon/icons/alert/index.js +0 -7
- package/dist/components/icon/icons/content/index.js +0 -5
- package/dist/components/icon/icons/editor/index.js +0 -9
- package/dist/components/icon/icons/image/index.js +0 -11
- package/dist/components/icon/icons/index.js +0 -61
- package/dist/components/icon/icons/mock/index.js +0 -2
- package/dist/components/icon/icons/navigation/index.js +0 -5
- package/dist/components/icon/icons/toggle/index.js +0 -3
- package/dist/components/layout/index.js +0 -13
- package/dist/index.js +0 -64
- package/dist/locale/context.js +0 -6
- package/dist/locale/locales/index.js +0 -2
- package/dist/locale/types.js +0 -7
- /package/dist/components/avatar/{context.js → context.mjs} +0 -0
- /package/dist/components/cascader/{utils.js → utils.mjs} +0 -0
- /package/dist/components/checkbox/{context.js → context.mjs} +0 -0
- /package/dist/components/clock/{types.js → types.mjs} +0 -0
- /package/dist/components/collapse/{context.js → context.mjs} +0 -0
- /package/dist/components/collapse/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/date-picker/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/date-range-picker/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/divider/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/drawer/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/form/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/image/preview/{context.js → context.mjs} +0 -0
- /package/dist/components/input/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/layout/{footer.js → footer.mjs} +0 -0
- /package/dist/components/layout/{main.js → main.mjs} +0 -0
- /package/dist/components/menu/{context.js → context.mjs} +0 -0
- /package/dist/components/number-input/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/pagination/{types.js → types.mjs} +0 -0
- /package/dist/components/picker/{context.js → context.mjs} +0 -0
- /package/dist/components/progress/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/quote/{styles.js → styles.mjs} +0 -0
- /package/dist/components/radio/{context.js → context.mjs} +0 -0
- /package/dist/components/rate/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/rich-text-editor/nodes/{checkable-list-item.js → checkable-list-item.mjs} +0 -0
- /package/dist/components/rich-text-editor/plugins/check-list/{index.js → index.mjs} +0 -0
- /package/dist/components/rich-text-editor/utils/{get-element-by-node.js → get-element-by-node.mjs} +0 -0
- /package/dist/components/ripple/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/select/{utils.js → utils.mjs} +0 -0
- /package/dist/components/steps/{context.js → context.mjs} +0 -0
- /package/dist/components/table/{context.js → context.mjs} +0 -0
- /package/dist/components/tabs/{context.js → context.mjs} +0 -0
- /package/dist/components/theme/{theme.js → theme.mjs} +0 -0
- /package/dist/components/theme/{tokens.stylex.js → tokens.stylex.mjs} +0 -0
- /package/dist/components/time-picker/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/timeline/{context.js → context.mjs} +0 -0
- /package/dist/components/tour/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/transfer/{context.js → context.mjs} +0 -0
- /package/dist/components/transfer/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/tree/{context.js → context.mjs} +0 -0
- /package/dist/components/tree/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/waterfall/{hooks.js → hooks.mjs} +0 -0
- /package/dist/components/watermark/{hooks.js → hooks.mjs} +0 -0
- /package/dist/hooks/{use-container.js → use-container.mjs} +0 -0
- /package/dist/hooks/{use-expandable.js → use-expandable.mjs} +0 -0
- /package/dist/hooks/{use-gutters.js → use-gutters.mjs} +0 -0
- /package/dist/hooks/{use-lazy-boolean.js → use-lazy-boolean.mjs} +0 -0
- /package/dist/node_modules/.pnpm/@stylexjs_stylex@0.7.5/node_modules/@stylexjs/stylex/lib/es/{stylex.js → stylex.mjs} +0 -0
- /package/dist/utils/{colors.js → colors.mjs} +0 -0
- /package/dist/utils/{component-token.js → component-token.mjs} +0 -0
- /package/dist/utils/{keyboard.js → keyboard.mjs} +0 -0
- /package/dist/utils/{layer.js → layer.mjs} +0 -0
- /package/dist/utils/{styles.js → styles.mjs} +0 -0
- /package/dist/utils/{timespan.js → timespan.mjs} +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
var clear = require('./clear.cjs');
|
|
2
|
+
var redo = require('./redo.cjs');
|
|
3
|
+
var undo = require('./undo.cjs');
|
|
4
|
+
var linkOff = require('./link-off.cjs');
|
|
5
|
+
var fontDownload = require('./font-download.cjs');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
exports.Clear = clear.default;
|
|
10
|
+
exports.Redo = redo.default;
|
|
11
|
+
exports.Undo = undo.default;
|
|
12
|
+
exports.LinkOff = linkOff.default;
|
|
13
|
+
exports.FontDownload = fontDownload.default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var LinkOff = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M14.39 11.0648L16 12.6748V11.0648H14.39ZM17 7.06481H13V8.9648H17C18.71 8.9648 20.1 10.3548 20.1 12.0648C20.1 13.3348 19.33 14.4348 18.23 14.9048L19.63 16.3048C21.05 15.4248 22 13.8548 22 12.0648C22 9.3048 19.76 7.06481 17 7.06481ZM2 4.3348L5.11 7.44481C3.29 8.1848 2 9.9748 2 12.0648C2 14.8248 4.24 17.0648 7 17.0648H11V15.1648H7C5.29 15.1648 3.9 13.7748 3.9 12.0648C3.9 10.4748 5.11 9.16481 6.66 8.99481L8.73 11.0648H8V13.0648H10.73L13 15.3348V17.0648H14.73L18.74 21.0748L20.15 19.6648L3.41 2.9248L2 4.3348Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = LinkOff;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var LinkOff = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var LinkOff = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var LinkOff$1 = LinkOff;
|
|
18
17
|
|
|
19
|
-
export { LinkOff
|
|
18
|
+
export { LinkOff as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Clear = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M18.63 11.1C16.78 9.49 14.38 8.5 11.73 8.5C7.07999 8.5 3.14999 11.53 1.76999 15.72L4.12999 16.5C5.17999 13.31 8.17999 11 11.73 11C13.68 11 15.46 11.72 16.85 12.88L13.23 16.5H22.23V7.5L18.63 11.1Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Clear;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Clear = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Clear = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Redo = Clear;
|
|
18
17
|
|
|
19
|
-
export {
|
|
18
|
+
export { Clear as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Undo = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M12.265 8.5C9.61501 8.5 7.21501 9.49 5.36501 11.1L1.76501 7.5V16.5H10.765L7.14501 12.88C8.53501 11.72 10.305 11 12.265 11C15.805 11 18.815 13.31 19.865 16.5L22.235 15.72C20.845 11.53 16.915 8.5 12.265 8.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Undo;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Undo = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Undo = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Undo$1 = Undo;
|
|
18
17
|
|
|
19
|
-
export { Undo
|
|
18
|
+
export { Undo as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Checklist = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M22 7.53484H13V9.53484H22V7.53484ZM22 15.5348H13V17.5348H22V15.5348ZM5.54 11.5348L2 7.99484L3.41 6.58484L5.53 8.70484L9.77 4.46484L11.18 5.87484L5.54 11.5348ZM5.54 19.5348L2 15.9948L3.41 14.5848L5.53 16.7048L9.77 12.4648L11.18 13.8748L5.54 19.5348Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Checklist;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Checklist = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Checklist = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Checklist$1 = Checklist;
|
|
18
17
|
|
|
19
|
-
export { Checklist
|
|
18
|
+
export { Checklist as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var FormatBold = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M15.225 11.79C16.195 11.12 16.875 10.02 16.875 9C16.875 6.74 15.125 5 12.875 5H6.625V19H13.665C15.755 19 17.375 17.3 17.375 15.21C17.375 13.69 16.515 12.39 15.225 11.79ZM9.625 7.5H12.625C13.455 7.5 14.125 8.17 14.125 9C14.125 9.83 13.455 10.5 12.625 10.5H9.625V7.5ZM13.125 16.5H9.625V13.5H13.125C13.955 13.5 14.625 14.17 14.625 15C14.625 15.83 13.955 16.5 13.125 16.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = FormatBold;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var FormatBold = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var FormatBold = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var FormatBold$1 = FormatBold;
|
|
18
17
|
|
|
19
|
-
export { FormatBold
|
|
18
|
+
export { FormatBold as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var FormatItalic = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M10 5V8H12.21L8.79 16H6V19H14V16H11.79L15.21 8H18V5H10Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = FormatItalic;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var FormatItalic = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var FormatItalic = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var FormatItalic$1 = FormatItalic;
|
|
18
17
|
|
|
19
|
-
export { FormatItalic
|
|
18
|
+
export { FormatItalic as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var FormatStrikethrough = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M10 19.5H14V16.5H10V19.5ZM5 4.5V7.5H10V10.5H14V7.5H19V4.5H5ZM3 14.5H21V12.5H3V14.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = FormatStrikethrough;
|
package/dist/components/icon/icons/editor/{format-strikethrough.js → format-strikethrough.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var FormatStrikethrough = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var FormatStrikethrough = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var FormatStrikethrough$1 = FormatStrikethrough;
|
|
18
17
|
|
|
19
|
-
export { FormatStrikethrough
|
|
18
|
+
export { FormatStrikethrough as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var FormatUnderlined = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M12 17C15.31 17 18 14.31 18 11V3H15.5V11C15.5 12.93 13.93 14.5 12 14.5C10.07 14.5 8.5 12.93 8.5 11V3H6V11C6 14.31 8.69 17 12 17ZM5 19V21H19V19H5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = FormatUnderlined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var FormatUnderlined = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var FormatUnderlined = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var FormatUnderlined$1 = FormatUnderlined;
|
|
18
17
|
|
|
19
|
-
export { FormatUnderlined
|
|
18
|
+
export { FormatUnderlined as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var formatBold = require('./format-bold.cjs');
|
|
2
|
+
var formatItalic = require('./format-italic.cjs');
|
|
3
|
+
var formatUnderlined = require('./format-underlined.cjs');
|
|
4
|
+
var insertLink = require('./insert-link.cjs');
|
|
5
|
+
var formatStrikethrough = require('./format-strikethrough.cjs');
|
|
6
|
+
var subscript = require('./subscript.cjs');
|
|
7
|
+
var superscript = require('./superscript.cjs');
|
|
8
|
+
var notes = require('./notes.cjs');
|
|
9
|
+
var checklist = require('./checklist.cjs');
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
exports.FormatBold = formatBold.default;
|
|
14
|
+
exports.FormatItalic = formatItalic.default;
|
|
15
|
+
exports.FormatUnderlined = formatUnderlined.default;
|
|
16
|
+
exports.InsertLink = insertLink.default;
|
|
17
|
+
exports.FormatStrikethrough = formatStrikethrough.default;
|
|
18
|
+
exports.Subscript = subscript.default;
|
|
19
|
+
exports.Superscript = superscript.default;
|
|
20
|
+
exports.Notes = notes.default;
|
|
21
|
+
exports.Checklist = checklist.default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as FormatBold } from './format-bold.mjs';
|
|
2
|
+
export { default as FormatItalic } from './format-italic.mjs';
|
|
3
|
+
export { default as FormatUnderlined } from './format-underlined.mjs';
|
|
4
|
+
export { default as InsertLink } from './insert-link.mjs';
|
|
5
|
+
export { default as FormatStrikethrough } from './format-strikethrough.mjs';
|
|
6
|
+
export { default as Subscript } from './subscript.mjs';
|
|
7
|
+
export { default as Superscript } from './superscript.mjs';
|
|
8
|
+
export { default as Notes } from './notes.mjs';
|
|
9
|
+
export { default as Checklist } from './checklist.mjs';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var InsertLink = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M3.9 12C3.9 10.29 5.29 8.9 7 8.9H11V7H7C4.24 7 2 9.24 2 12C2 14.76 4.24 17 7 17H11V15.1H7C5.29 15.1 3.9 13.71 3.9 12ZM8 13H16V11H8V13ZM17 7H13V8.9H17C18.71 8.9 20.1 10.29 20.1 12C20.1 13.71 18.71 15.1 17 15.1H13V17H17C19.76 17 22 14.76 22 12C22 9.24 19.76 7 17 7Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = InsertLink;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var InsertLink = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var InsertLink = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var InsertLink$1 = InsertLink;
|
|
18
17
|
|
|
19
|
-
export { InsertLink
|
|
18
|
+
export { InsertLink as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Notes = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M21 11.01L3 11V13H21V11.01ZM3 16H15V18H3V16ZM21 6H3V8.01L21 8V6Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Notes;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Notes = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Notes = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Notes$1 = Notes;
|
|
18
17
|
|
|
19
|
-
export { Notes
|
|
18
|
+
export { Notes as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Subscript = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M19.56 18H17.56V19H20.56V20H16.56V18C16.56 17.45 17.01 17 17.56 17H19.56V16H16.56V15H19.56C20.11 15 20.56 15.45 20.56 16V17C20.56 17.55 20.11 18 19.56 18ZM3.44 18H6.1L9.5 12.58H9.62L13.02 18H15.68L11.03 10.73L15.37 4H12.69L9.62 8.99H9.5L6.41 4H3.75L8.07 10.73L3.44 18Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Subscript;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Subscript = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Subscript = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Subscript$1 = Subscript;
|
|
18
17
|
|
|
19
|
-
export { Subscript
|
|
18
|
+
export { Subscript as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var Superscript = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M19.56 7H17.56V8H20.56V9H16.56V7C16.56 6.45 17.01 6 17.56 6H19.56V5H16.56V4H19.56C20.11 4 20.56 4.45 20.56 5V6C20.56 6.55 20.11 7 19.56 7ZM3.44 20H6.1L9.5 14.58H9.62L13.02 20H15.68L11.03 12.73L15.37 6H12.69L9.62 10.99H9.5L6.41 6H3.75L8.07 12.73L3.44 20Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Superscript;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var Superscript = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Superscript = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Superscript$1 = Superscript;
|
|
18
17
|
|
|
19
|
-
export { Superscript
|
|
18
|
+
export { Superscript as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var keyboardDoubleArrowLeft = require('./keyboard-double-arrow-left.cjs');
|
|
2
|
+
var keyboardDoubleArrowRight = require('./keyboard-double-arrow-right.cjs');
|
|
3
|
+
var keyboardArrowLeft = require('./keyboard-arrow-left.cjs');
|
|
4
|
+
var keyboardArrowRight = require('./keyboard-arrow-right.cjs');
|
|
5
|
+
var keyboardArrowUp = require('./keyboard-arrow-up.cjs');
|
|
6
|
+
var keyboardArrowDown = require('./keyboard-arrow-down.cjs');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
exports.KeyboardDoubleArrowLeft = keyboardDoubleArrowLeft.default;
|
|
11
|
+
exports.KeyboardDoubleArrowRight = keyboardDoubleArrowRight.default;
|
|
12
|
+
exports.KeyboardArrowLeft = keyboardArrowLeft.default;
|
|
13
|
+
exports.KeyboardArrowRight = keyboardArrowRight.default;
|
|
14
|
+
exports.KeyboardArrowUp = keyboardArrowUp.default;
|
|
15
|
+
exports.KeyboardArrowDown = keyboardArrowDown.default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default as KeyboardDoubleArrowLeft } from './keyboard-double-arrow-left.
|
|
2
|
-
export { default as KeyboardDoubleArrowRight } from './keyboard-double-arrow-right.
|
|
3
|
-
export { default as KeyboardArrowLeft } from './keyboard-arrow-left.
|
|
4
|
-
export { default as KeyboardArrowRight } from './keyboard-arrow-right.
|
|
5
|
-
export { default as KeyboardArrowUp } from './keyboard-arrow-up.
|
|
6
|
-
export { default as KeyboardArrowDown } from './keyboard-arrow-down.
|
|
1
|
+
export { default as KeyboardDoubleArrowLeft } from './keyboard-double-arrow-left.mjs';
|
|
2
|
+
export { default as KeyboardDoubleArrowRight } from './keyboard-double-arrow-right.mjs';
|
|
3
|
+
export { default as KeyboardArrowLeft } from './keyboard-arrow-left.mjs';
|
|
4
|
+
export { default as KeyboardArrowRight } from './keyboard-arrow-right.mjs';
|
|
5
|
+
export { default as KeyboardArrowUp } from './keyboard-arrow-up.mjs';
|
|
6
|
+
export { default as KeyboardArrowDown } from './keyboard-arrow-down.mjs';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var KeyboardArrowDown = hoc.withIcon(function (props) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: props.size,
|
|
10
|
+
height: props.size,
|
|
11
|
+
viewBox: "0 0 24 24",
|
|
12
|
+
fill: "none"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M7.41 8.29492L12 12.8749L16.59 8.29492L18 9.70492L12 15.7049L6 9.70492L7.41 8.29492Z",
|
|
15
|
+
fill: "currentColor"
|
|
16
|
+
}));
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
exports.default = KeyboardArrowDown;
|
package/dist/components/icon/icons/hardware/{keyboard-arrow-down.js → keyboard-arrow-down.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var KeyboardArrowDown = withIcon(function (props) {
|
|
5
5
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -13,6 +13,5 @@ var KeyboardArrowDown = withIcon(function (props) {
|
|
|
13
13
|
fill: "currentColor"
|
|
14
14
|
}));
|
|
15
15
|
});
|
|
16
|
-
var KeyboardArrowDown$1 = KeyboardArrowDown;
|
|
17
16
|
|
|
18
|
-
export { KeyboardArrowDown
|
|
17
|
+
export { KeyboardArrowDown as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var KeyboardArrowLeft = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M15.705 16.59L11.125 12L15.705 7.41L14.295 6L8.29498 12L14.295 18L15.705 16.59Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = KeyboardArrowLeft;
|
package/dist/components/icon/icons/hardware/{keyboard-arrow-left.js → keyboard-arrow-left.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var KeyboardArrowLeft = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var KeyboardArrowLeft = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var KeyboardArrowLeft$1 = KeyboardArrowLeft;
|
|
18
17
|
|
|
19
|
-
export { KeyboardArrowLeft
|
|
18
|
+
export { KeyboardArrowLeft as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var KeyboardArrowRight = hoc.withIcon(function (_ref) {
|
|
7
|
+
var size = _ref.size;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
d: "M8.29498 16.59L12.875 12L8.29498 7.41L9.70498 6L15.705 12L9.70498 18L8.29498 16.59Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = KeyboardArrowRight;
|
package/dist/components/icon/icons/hardware/{keyboard-arrow-right.js → keyboard-arrow-right.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { withIcon } from '../../hoc.
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
4
|
var KeyboardArrowRight = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var KeyboardArrowRight = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var KeyboardArrowRight$1 = KeyboardArrowRight;
|
|
18
17
|
|
|
19
|
-
export { KeyboardArrowRight
|
|
18
|
+
export { KeyboardArrowRight as default };
|