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
|
@@ -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 OpenInNew = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var OpenInNew = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var OpenInNew$1 = OpenInNew;
|
|
18
17
|
|
|
19
|
-
export { OpenInNew
|
|
18
|
+
export { OpenInNew 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 SwapHoriz = 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: "M6.99 11L3 15L6.99 19V16H14V14H6.99V11ZM21 9L17.01 5V8H10V10H17.01V13L21 9Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = SwapHoriz;
|
|
@@ -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 SwapHoriz = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var SwapHoriz = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var SwapHoriz$1 = SwapHoriz;
|
|
18
17
|
|
|
19
|
-
export { SwapHoriz
|
|
18
|
+
export { SwapHoriz 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 SwapVert = 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: "M16 17.01V10H14V17.01H11L15 21L19 17.01H16ZM9 3L5 6.99H8V14H10V6.99H13L9 3ZM16 17.01V10H14V17.01H11L15 21L19 17.01H16ZM9 3L5 6.99H8V14H10V6.99H13L9 3Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = SwapVert;
|
|
@@ -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 SwapVert = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var SwapVert = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var SwapVert$1 = SwapVert;
|
|
18
17
|
|
|
19
|
-
export { SwapVert
|
|
18
|
+
export { SwapVert 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 Translate = 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.87 15.07L10.33 12.56L10.36 12.53C12.1 10.59 13.34 8.36 14.07 6H17V4H10V2H8V4H1V5.99H12.17C11.5 7.92 10.44 9.75 9 11.35C8.07 10.32 7.3 9.19 6.69 8H4.69C5.42 9.63 6.42 11.17 7.67 12.56L2.58 17.58L4 19L9 14L12.11 17.11L12.87 15.07ZM18.5 10H16.5L12 22H14L15.12 19H19.87L21 22H23L18.5 10ZM15.88 17L17.5 12.67L19.12 17H15.88Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Translate;
|
|
@@ -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 Translate = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Translate = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Translate$1 = Translate;
|
|
18
17
|
|
|
19
|
-
export { Translate
|
|
18
|
+
export { Translate 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 VisibilityOff = 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 5.9748C15.79 5.9748 19.17 8.1048 20.82 11.4748C20.23 12.6948 19.4 13.7448 18.41 14.5948L19.82 16.0048C21.21 14.7748 22.31 13.2348 23 11.4748C21.27 7.08481 17 3.9748 12 3.9748C10.73 3.9748 9.51 4.1748 8.36 4.5448L10.01 6.1948C10.66 6.0648 11.32 5.9748 12 5.9748ZM10.93 7.1148L13 9.1848C13.57 9.4348 14.03 9.8948 14.28 10.4648L16.35 12.5348C16.43 12.1948 16.49 11.8348 16.49 11.4648C16.5 8.9848 14.48 6.9748 12 6.9748C11.63 6.9748 11.28 7.0248 10.93 7.1148ZM2.01 3.8448L4.69 6.52481C3.06 7.8048 1.77 9.5048 1 11.4748C2.73 15.8648 7 18.9748 12 18.9748C13.52 18.9748 14.98 18.6848 16.32 18.1548L19.74 21.5748L21.15 20.1648L3.42 2.4248L2.01 3.8448ZM9.51 11.3448L12.12 13.9548C12.08 13.9648 12.04 13.9748 12 13.9748C10.62 13.9748 9.5 12.8548 9.5 11.4748C9.5 11.4248 9.51 11.3948 9.51 11.3448ZM6.11 7.9448L7.86 9.69481C7.63 10.2448 7.5 10.8448 7.5 11.4748C7.5 13.9548 9.52 15.9748 12 15.9748C12.63 15.9748 13.23 15.8448 13.77 15.6148L14.75 16.5948C13.87 16.8348 12.95 16.9748 12 16.9748C8.21 16.9748 4.83 14.8448 3.18 11.4748C3.88 10.0448 4.9 8.8648 6.11 7.9448Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = VisibilityOff;
|
|
@@ -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 VisibilityOff = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var VisibilityOff = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var VisibilityOff$1 = VisibilityOff;
|
|
18
17
|
|
|
19
|
-
export { VisibilityOff
|
|
18
|
+
export { VisibilityOff 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 Visibility = 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 6.5C15.79 6.5 19.17 8.63 20.82 12C19.17 15.37 15.79 17.5 12 17.5C8.21 17.5 4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5ZM12 4.5C7 4.5 2.73 7.61 1 12C2.73 16.39 7 19.5 12 19.5C17 19.5 21.27 16.39 23 12C21.27 7.61 17 4.5 12 4.5ZM12 9.5C13.38 9.5 14.5 10.62 14.5 12C14.5 13.38 13.38 14.5 12 14.5C10.62 14.5 9.5 13.38 9.5 12C9.5 10.62 10.62 9.5 12 9.5ZM12 7.5C9.52 7.5 7.5 9.52 7.5 12C7.5 14.48 9.52 16.5 12 16.5C14.48 16.5 16.5 14.48 16.5 12C16.5 9.52 14.48 7.5 12 7.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Visibility;
|
|
@@ -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 Visibility = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Visibility = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Visibility$1 = Visibility;
|
|
18
17
|
|
|
19
|
-
export { Visibility
|
|
18
|
+
export { Visibility 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 ZoomIn = 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.755 14.2549H14.965L14.685 13.9849C15.665 12.8449 16.255 11.3649 16.255 9.75488C16.255 6.16488 13.345 3.25488 9.755 3.25488C6.165 3.25488 3.255 6.16488 3.255 9.75488C3.255 13.3449 6.165 16.2549 9.755 16.2549C11.365 16.2549 12.845 15.6649 13.985 14.6849L14.255 14.9649V15.7549L19.255 20.7449L20.745 19.2549L15.755 14.2549ZM9.755 14.2549C7.26501 14.2549 5.255 12.2449 5.255 9.75488C5.255 7.26488 7.26501 5.25488 9.755 5.25488C12.245 5.25488 14.255 7.26488 14.255 9.75488C14.255 12.2449 12.245 14.2549 9.755 14.2549ZM10.255 7.25488H9.255V9.25488H7.255V10.2549H9.255V12.2549H10.255V10.2549H12.255V9.25488H10.255V7.25488Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = ZoomIn;
|
|
@@ -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 ZoomIn = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var ZoomIn = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var ZoomIn$1 = ZoomIn;
|
|
18
17
|
|
|
19
|
-
export { ZoomIn
|
|
18
|
+
export { ZoomIn 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 ZoomOut = 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.755 14.2549H14.965L14.685 13.9849C15.665 12.8449 16.255 11.3649 16.255 9.75488C16.255 6.16488 13.345 3.25488 9.755 3.25488C6.165 3.25488 3.255 6.16488 3.255 9.75488C3.255 13.3449 6.165 16.2549 9.755 16.2549C11.365 16.2549 12.845 15.6649 13.985 14.6849L14.255 14.9649V15.7549L19.255 20.7449L20.745 19.2549L15.755 14.2549ZM9.755 14.2549C7.26501 14.2549 5.255 12.2449 5.255 9.75488C5.255 7.26488 7.26501 5.25488 9.755 5.25488C12.245 5.25488 14.255 7.26488 14.255 9.75488C14.255 12.2449 12.245 14.2549 9.755 14.2549ZM7.255 9.25488H12.255V10.2549H7.255V9.25488Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = ZoomOut;
|
|
@@ -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 ZoomOut = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var ZoomOut = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var ZoomOut$1 = ZoomOut;
|
|
18
17
|
|
|
19
|
-
export { ZoomOut
|
|
18
|
+
export { ZoomOut 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 AddAlert = 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.01 20.76C10.01 21.86 10.9 22.75 12 22.75C13.1 22.75 13.99 21.86 13.99 20.76H10.01ZM12 5.75C14.76 5.75 17 7.99 17 10.75V17.75H7V10.75C7 7.99 9.24 5.75 12 5.75ZM12 1.25C11.17 1.25 10.5 1.92 10.5 2.75V3.92C7.36 4.6 5 7.4 5 10.75V16.75L3 18.75V19.75H21V18.75L19 16.75V10.75C19 7.4 16.64 4.6 13.5 3.92V2.75C13.5 1.92 12.83 1.25 12 1.25ZM13 7.75H11V10.75H8V12.75H11V15.75H13V12.75H16V10.75H13V7.75Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = AddAlert;
|
|
@@ -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 AddAlert = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var AddAlert = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var AddAlert$1 = AddAlert;
|
|
18
17
|
|
|
19
|
-
export { AddAlert
|
|
18
|
+
export { AddAlert as default };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hoc = require('../../hoc.cjs');
|
|
5
|
+
|
|
6
|
+
var AutoDelete = 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 2H11.5L10.5 1H5.5L4.5 2H1V4H15V2Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M16 9C15.3 9 14.63 9.1 14 9.29V5H2V17C2 18.1 2.9 19 4 19H9.68C10.8 21.36 13.21 23 16 23C19.87 23 23 19.87 23 16C23 12.13 19.87 9 16 9ZM9 16C9 16.34 9.03 16.67 9.08 17H4V7H12V10.26C10.19 11.53 9 13.62 9 16ZM16 21C13.24 21 11 18.76 11 16C11 13.24 13.24 11 16 11C18.76 11 21 13.24 21 16C21 18.76 18.76 21 16 21Z",
|
|
19
|
+
fill: "currentColor"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M16.5 12H15V17L18.6 19.1L19.4 17.9L16.5 16.2V12Z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
exports.default = AutoDelete;
|
|
@@ -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 AutoDelete = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -20,6 +20,5 @@ var AutoDelete = withIcon(function (_ref) {
|
|
|
20
20
|
fill: "currentColor"
|
|
21
21
|
}));
|
|
22
22
|
});
|
|
23
|
-
var AutoDelete$1 = AutoDelete;
|
|
24
23
|
|
|
25
|
-
export { AutoDelete
|
|
24
|
+
export { AutoDelete 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 ErrorOutline = 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: "M11 15H13V17H11V15ZM11 7H13V13H11V7ZM11.99 2C6.47 2 2 6.48 2 12C2 17.52 6.47 22 11.99 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 11.99 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = ErrorOutline;
|
|
@@ -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 ErrorOutline = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var ErrorOutline = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var ErrorOutline$1 = ErrorOutline;
|
|
18
17
|
|
|
19
|
-
export { ErrorOutline
|
|
18
|
+
export { ErrorOutline 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 Error = 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 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM13 17H11V15H13V17ZM13 13H11V7H13V13Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Error;
|
|
@@ -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 Error = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Error = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Error$1 = Error;
|
|
18
17
|
|
|
19
|
-
export { Error
|
|
18
|
+
export { Error as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var errorOutline = require('./error-outline.cjs');
|
|
2
|
+
var addAlert = require('./add-alert.cjs');
|
|
3
|
+
var autoDelete = require('./auto-delete.cjs');
|
|
4
|
+
var error = require('./error.cjs');
|
|
5
|
+
var notificationImportant = require('./notification-important.cjs');
|
|
6
|
+
var warning = require('./warning.cjs');
|
|
7
|
+
var warningAmber = require('./warning-amber.cjs');
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
exports.ErrorOutline = errorOutline.default;
|
|
12
|
+
exports.AddAlert = addAlert.default;
|
|
13
|
+
exports.AutoDelete = autoDelete.default;
|
|
14
|
+
exports.Error = error.default;
|
|
15
|
+
exports.NotificationImportant = notificationImportant.default;
|
|
16
|
+
exports.Warning = warning.default;
|
|
17
|
+
exports.WarningAmber = warningAmber.default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as ErrorOutline } from './error-outline.mjs';
|
|
2
|
+
export { default as AddAlert } from './add-alert.mjs';
|
|
3
|
+
export { default as AutoDelete } from './auto-delete.mjs';
|
|
4
|
+
export { default as Error } from './error.mjs';
|
|
5
|
+
export { default as NotificationImportant } from './notification-important.mjs';
|
|
6
|
+
export { default as Warning } from './warning.mjs';
|
|
7
|
+
export { default as WarningAmber } from './warning-amber.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 NotificationImportant = 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.01 20.76C10.01 21.86 10.9 22.75 12 22.75C13.1 22.75 13.99 21.86 13.99 20.76H10.01ZM12 5.75C14.76 5.75 17 7.99 17 10.75V17.75H7V10.75C7 7.99 9.24 5.75 12 5.75ZM12 1.25C11.17 1.25 10.5 1.92 10.5 2.75V3.92C7.36 4.6 5 7.4 5 10.75V16.75L3 18.75V19.75H21V18.75L19 16.75V10.75C19 7.4 16.64 4.6 13.5 3.92V2.75C13.5 1.92 12.83 1.25 12 1.25ZM11 7.75H13V11.75H11V7.75ZM11 13.75H13V15.75H11V13.75Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = NotificationImportant;
|
package/dist/components/icon/icons/alert/{notification-important.js → notification-important.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 NotificationImportant = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var NotificationImportant = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var NotificationImportant$1 = NotificationImportant;
|
|
18
17
|
|
|
19
|
-
export { NotificationImportant
|
|
18
|
+
export { NotificationImportant 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 WarningAmber = 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 6.49L19.53 19.5H4.47L12 6.49ZM12 2.5L1 21.5H23L12 2.5ZM13 16.5H11V18.5H13V16.5ZM13 10.5H11V14.5H13V10.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = WarningAmber;
|
|
@@ -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 WarningAmber = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var WarningAmber = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var WarningAmber$1 = WarningAmber;
|
|
18
17
|
|
|
19
|
-
export { WarningAmber
|
|
18
|
+
export { WarningAmber 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 Warning = 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: "M1 21.5H23L12 2.5L1 21.5ZM13 18.5H11V16.5H13V18.5ZM13 14.5H11V10.5H13V14.5Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = Warning;
|
|
@@ -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 Warning = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Warning = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Warning$1 = Warning;
|
|
18
17
|
|
|
19
|
-
export { Warning
|
|
18
|
+
export { Warning 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 Redo = 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 = Redo;
|
|
@@ -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 Redo = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var Redo = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var Clear = Redo;
|
|
18
17
|
|
|
19
|
-
export {
|
|
18
|
+
export { Redo 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 FontDownload = 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: "M9.17 15.5H14.81L15.95 18.5H18.04L12.93 5.5H11.07L5.96 18.5H8.05L9.17 15.5ZM12 7.98L14.07 13.5H9.93L12 7.98ZM20 2H4C2.9 2 2 2.9 2 4V20C2 21.1 2.9 22 4 22H20C21.1 22 22 21.1 22 20V4C22 2.9 21.1 2 20 2ZM20 20H4V4H20V20Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}));
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
exports.default = FontDownload;
|
|
@@ -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 FontDownload = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
@@ -14,6 +14,5 @@ var FontDownload = withIcon(function (_ref) {
|
|
|
14
14
|
fill: "currentColor"
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
|
-
var FontDownload$1 = FontDownload;
|
|
18
17
|
|
|
19
|
-
export { FontDownload
|
|
18
|
+
export { FontDownload as default };
|