@nuraly/lumenui 0.1.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/LICENSE +28 -0
- package/README.md +248 -0
- package/dist/nuralyui.bundle.js +29209 -0
- package/dist/nuralyui.bundle.js.gz +0 -0
- package/dist/src/components/alert/alert.component.d.ts +103 -0
- package/dist/src/components/alert/alert.component.js +225 -0
- package/dist/src/components/alert/alert.style.d.ts +14 -0
- package/dist/src/components/alert/alert.style.js +191 -0
- package/dist/src/components/alert/alert.types.d.ts +46 -0
- package/dist/src/components/alert/alert.types.js +7 -0
- package/dist/src/components/alert/bundle.js +231 -0
- package/dist/src/components/alert/bundle.js.gz +0 -0
- package/dist/src/components/alert/index.d.ts +8 -0
- package/dist/src/components/alert/index.js +8 -0
- package/dist/src/components/alert/react.d.ts +5 -0
- package/dist/src/components/alert/react.js +17 -0
- package/dist/src/components/badge/badge.component.d.ts +148 -0
- package/dist/src/components/badge/badge.component.js +270 -0
- package/dist/src/components/badge/badge.style.d.ts +14 -0
- package/dist/src/components/badge/badge.style.js +250 -0
- package/dist/src/components/badge/badge.types.d.ts +84 -0
- package/dist/src/components/badge/badge.types.js +7 -0
- package/dist/src/components/badge/bundle.js +277 -0
- package/dist/src/components/badge/bundle.js.gz +0 -0
- package/dist/src/components/badge/index.d.ts +2 -0
- package/dist/src/components/badge/index.js +2 -0
- package/dist/src/components/badge/react.d.ts +3 -0
- package/dist/src/components/badge/react.js +10 -0
- package/dist/src/components/breadcrumb/breadcrumb.component.d.ts +121 -0
- package/dist/src/components/breadcrumb/breadcrumb.component.js +257 -0
- package/dist/src/components/breadcrumb/breadcrumb.style.d.ts +14 -0
- package/dist/src/components/breadcrumb/breadcrumb.style.js +153 -0
- package/dist/src/components/breadcrumb/breadcrumb.types.d.ts +63 -0
- package/dist/src/components/breadcrumb/breadcrumb.types.js +7 -0
- package/dist/src/components/breadcrumb/bundle.js +213 -0
- package/dist/src/components/breadcrumb/bundle.js.gz +0 -0
- package/dist/src/components/breadcrumb/index.d.ts +2 -0
- package/dist/src/components/breadcrumb/index.js +2 -0
- package/dist/src/components/breadcrumb/react.d.ts +5 -0
- package/dist/src/components/breadcrumb/react.js +12 -0
- package/dist/src/components/button/bundle.js +606 -0
- package/dist/src/components/button/bundle.js.gz +0 -0
- package/dist/src/components/button/button.component.d.ts +96 -0
- package/dist/src/components/button/button.component.js +312 -0
- package/dist/src/components/button/button.style.d.ts +10 -0
- package/dist/src/components/button/button.style.js +535 -0
- package/dist/src/components/button/button.types.d.ts +57 -0
- package/dist/src/components/button/button.types.js +2 -0
- package/dist/src/components/button/index.d.ts +2 -0
- package/dist/src/components/button/index.js +2 -0
- package/dist/src/components/button/react.d.ts +5 -0
- package/dist/src/components/button/react.js +12 -0
- package/dist/src/components/canvas/base-canvas.component.d.ts +177 -0
- package/dist/src/components/canvas/base-canvas.component.js +865 -0
- package/dist/src/components/canvas/bundle.js +16664 -0
- package/dist/src/components/canvas/bundle.js.gz +0 -0
- package/dist/src/components/canvas/canvas.component.d.ts +2 -0
- package/dist/src/components/canvas/canvas.component.js +295 -0
- package/dist/src/components/canvas/canvas.constants.d.ts +66 -0
- package/dist/src/components/canvas/canvas.constants.js +61 -0
- package/dist/src/components/canvas/chatbot-panel.style.d.ts +11 -0
- package/dist/src/components/canvas/chatbot-panel.style.js +189 -0
- package/dist/src/components/canvas/index.d.ts +13 -0
- package/dist/src/components/canvas/index.js +21 -0
- package/dist/src/components/canvas/react.d.ts +354 -0
- package/dist/src/components/canvas/react.js +41 -0
- package/dist/src/components/canvas/whiteboard-canvas.component.d.ts +63 -0
- package/dist/src/components/canvas/whiteboard-canvas.component.js +356 -0
- package/dist/src/components/canvas/whiteboard-canvas.style.d.ts +7 -0
- package/dist/src/components/canvas/whiteboard-canvas.style.js +1011 -0
- package/dist/src/components/canvas/whiteboard-node.component.d.ts +87 -0
- package/dist/src/components/canvas/whiteboard-node.component.js +809 -0
- package/dist/src/components/canvas/whiteboard-node.style.d.ts +7 -0
- package/dist/src/components/canvas/whiteboard-node.style.js +775 -0
- package/dist/src/components/canvas/workflow-canvas.component.d.ts +150 -0
- package/dist/src/components/canvas/workflow-canvas.component.js +1468 -0
- package/dist/src/components/canvas/workflow-canvas.style.d.ts +8 -0
- package/dist/src/components/canvas/workflow-canvas.style.js +2903 -0
- package/dist/src/components/canvas/workflow-canvas.types.d.ts +710 -0
- package/dist/src/components/canvas/workflow-canvas.types.js +2305 -0
- package/dist/src/components/canvas/workflow-node.component.d.ts +96 -0
- package/dist/src/components/canvas/workflow-node.component.js +752 -0
- package/dist/src/components/canvas/workflow-node.style.d.ts +8 -0
- package/dist/src/components/canvas/workflow-node.style.js +1053 -0
- package/dist/src/components/card/bundle.js +69 -0
- package/dist/src/components/card/bundle.js.gz +0 -0
- package/dist/src/components/card/card.component.d.ts +30 -0
- package/dist/src/components/card/card.component.js +64 -0
- package/dist/src/components/card/card.style.d.ts +2 -0
- package/dist/src/components/card/card.style.js +62 -0
- package/dist/src/components/card/card.types.d.ts +17 -0
- package/dist/src/components/card/card.types.js +2 -0
- package/dist/src/components/card/index.d.ts +3 -0
- package/dist/src/components/card/index.js +3 -0
- package/dist/src/components/card/react.d.ts +5 -0
- package/dist/src/components/card/react.js +12 -0
- package/dist/src/components/carousel/bundle.js +96 -0
- package/dist/src/components/carousel/bundle.js.gz +0 -0
- package/dist/src/components/carousel/carousel.component.d.ts +19 -0
- package/dist/src/components/carousel/carousel.component.js +128 -0
- package/dist/src/components/carousel/carousel.style.d.ts +2 -0
- package/dist/src/components/carousel/carousel.style.js +68 -0
- package/dist/src/components/carousel/index.d.ts +2 -0
- package/dist/src/components/carousel/index.js +2 -0
- package/dist/src/components/carousel/react.d.ts +5 -0
- package/dist/src/components/carousel/react.js +12 -0
- package/dist/src/components/chatbot/bundle.js +2527 -0
- package/dist/src/components/chatbot/bundle.js.gz +0 -0
- package/dist/src/components/chatbot/chatbot.component.d.ts +215 -0
- package/dist/src/components/chatbot/chatbot.component.js +1097 -0
- package/dist/src/components/chatbot/chatbot.style.d.ts +3 -0
- package/dist/src/components/chatbot/chatbot.style.js +1638 -0
- package/dist/src/components/chatbot/chatbot.types.d.ts +246 -0
- package/dist/src/components/chatbot/chatbot.types.js +124 -0
- package/dist/src/components/chatbot/index.d.ts +13 -0
- package/dist/src/components/chatbot/index.js +20 -0
- package/dist/src/components/chatbot/react.d.ts +54 -0
- package/dist/src/components/chatbot/react.js +55 -0
- package/dist/src/components/checkbox/bundle.js +352 -0
- package/dist/src/components/checkbox/bundle.js.gz +0 -0
- package/dist/src/components/checkbox/checkbox.component.d.ts +62 -0
- package/dist/src/components/checkbox/checkbox.component.js +178 -0
- package/dist/src/components/checkbox/checkbox.style.d.ts +2 -0
- package/dist/src/components/checkbox/checkbox.style.js +323 -0
- package/dist/src/components/checkbox/checkbox.types.d.ts +6 -0
- package/dist/src/components/checkbox/checkbox.types.js +2 -0
- package/dist/src/components/checkbox/index.d.ts +2 -0
- package/dist/src/components/checkbox/index.js +2 -0
- package/dist/src/components/checkbox/react.d.ts +5 -0
- package/dist/src/components/checkbox/react.js +12 -0
- package/dist/src/components/code-editor/bundle.js +55 -0
- package/dist/src/components/code-editor/bundle.js.gz +0 -0
- package/dist/src/components/code-editor/code-editor.component.d.ts +119 -0
- package/dist/src/components/code-editor/code-editor.component.js +532 -0
- package/dist/src/components/code-editor/code-editor.style.d.ts +7 -0
- package/dist/src/components/code-editor/code-editor.style.js +39 -0
- package/dist/src/components/code-editor/code-editor.types.d.ts +39 -0
- package/dist/src/components/code-editor/code-editor.types.js +22 -0
- package/dist/src/components/code-editor/index.d.ts +9 -0
- package/dist/src/components/code-editor/index.js +9 -0
- package/dist/src/components/collapse/bundle.js +308 -0
- package/dist/src/components/collapse/bundle.js.gz +0 -0
- package/dist/src/components/collapse/collapse.component.d.ts +93 -0
- package/dist/src/components/collapse/collapse.component.js +322 -0
- package/dist/src/components/collapse/collapse.style.d.ts +11 -0
- package/dist/src/components/collapse/collapse.style.js +234 -0
- package/dist/src/components/collapse/collapse.type.d.ts +79 -0
- package/dist/src/components/collapse/collapse.type.js +11 -0
- package/dist/src/components/collapse/index.d.ts +2 -0
- package/dist/src/components/collapse/index.js +2 -0
- package/dist/src/components/collapse/react.d.ts +6 -0
- package/dist/src/components/collapse/react.js +13 -0
- package/dist/src/components/colorpicker/bundle.js +242 -0
- package/dist/src/components/colorpicker/bundle.js.gz +0 -0
- package/dist/src/components/colorpicker/color-holder.component.d.ts +50 -0
- package/dist/src/components/colorpicker/color-holder.component.js +116 -0
- package/dist/src/components/colorpicker/color-holder.style.d.ts +2 -0
- package/dist/src/components/colorpicker/color-holder.style.js +45 -0
- package/dist/src/components/colorpicker/color-picker.component.d.ts +178 -0
- package/dist/src/components/colorpicker/color-picker.component.js +374 -0
- package/dist/src/components/colorpicker/color-picker.style.d.ts +10 -0
- package/dist/src/components/colorpicker/color-picker.style.js +86 -0
- package/dist/src/components/colorpicker/color-picker.types.d.ts +60 -0
- package/dist/src/components/colorpicker/color-picker.types.js +2 -0
- package/dist/src/components/colorpicker/default-color-sets.component.d.ts +45 -0
- package/dist/src/components/colorpicker/default-color-sets.component.js +121 -0
- package/dist/src/components/colorpicker/default-color-sets.style.d.ts +2 -0
- package/dist/src/components/colorpicker/default-color-sets.style.js +34 -0
- package/dist/src/components/colorpicker/index.d.ts +3 -0
- package/dist/src/components/colorpicker/index.js +3 -0
- package/dist/src/components/colorpicker/react.d.ts +6 -0
- package/dist/src/components/colorpicker/react.js +13 -0
- package/dist/src/components/console/react.d.ts +340 -0
- package/dist/src/components/console/react.js +13 -0
- package/dist/src/components/container/bundle.js +161 -0
- package/dist/src/components/container/bundle.js.gz +0 -0
- package/dist/src/components/container/container.component.d.ts +85 -0
- package/dist/src/components/container/container.component.js +223 -0
- package/dist/src/components/container/container.style.d.ts +6 -0
- package/dist/src/components/container/container.style.js +146 -0
- package/dist/src/components/container/container.types.d.ts +67 -0
- package/dist/src/components/container/container.types.js +5 -0
- package/dist/src/components/container/index.d.ts +3 -0
- package/dist/src/components/container/index.js +3 -0
- package/dist/src/components/container/react.d.ts +3 -0
- package/dist/src/components/container/react.js +10 -0
- package/dist/src/components/datepicker/bundle.js +706 -0
- package/dist/src/components/datepicker/bundle.js.gz +0 -0
- package/dist/src/components/datepicker/datepicker.component.d.ts +190 -0
- package/dist/src/components/datepicker/datepicker.component.js +673 -0
- package/dist/src/components/datepicker/datepicker.constant.d.ts +60 -0
- package/dist/src/components/datepicker/datepicker.constant.js +60 -0
- package/dist/src/components/datepicker/datepicker.style.d.ts +17 -0
- package/dist/src/components/datepicker/datepicker.style.js +453 -0
- package/dist/src/components/datepicker/datepicker.style.variables.d.ts +2 -0
- package/dist/src/components/datepicker/datepicker.style.variables.js +119 -0
- package/dist/src/components/datepicker/datepicker.types.d.ts +142 -0
- package/dist/src/components/datepicker/datepicker.types.js +75 -0
- package/dist/src/components/datepicker/index.d.ts +4 -0
- package/dist/src/components/datepicker/index.js +4 -0
- package/dist/src/components/datepicker/react.d.ts +16 -0
- package/dist/src/components/datepicker/react.js +23 -0
- package/dist/src/components/db-connection-select/bundle.js +308 -0
- package/dist/src/components/db-connection-select/bundle.js.gz +0 -0
- package/dist/src/components/db-connection-select/db-connection-select.component.d.ts +105 -0
- package/dist/src/components/db-connection-select/db-connection-select.component.js +573 -0
- package/dist/src/components/db-connection-select/index.d.ts +7 -0
- package/dist/src/components/db-connection-select/index.js +7 -0
- package/dist/src/components/divider/bundle.js +143 -0
- package/dist/src/components/divider/bundle.js.gz +0 -0
- package/dist/src/components/divider/divider.component.d.ts +90 -0
- package/dist/src/components/divider/divider.component.js +168 -0
- package/dist/src/components/divider/divider.style.d.ts +3 -0
- package/dist/src/components/divider/divider.style.js +139 -0
- package/dist/src/components/divider/divider.types.d.ts +55 -0
- package/dist/src/components/divider/divider.types.js +6 -0
- package/dist/src/components/divider/index.d.ts +3 -0
- package/dist/src/components/divider/index.js +3 -0
- package/dist/src/components/divider/react.d.ts +3 -0
- package/dist/src/components/divider/react.js +10 -0
- package/dist/src/components/document/bundle.js +242 -0
- package/dist/src/components/document/bundle.js.gz +0 -0
- package/dist/src/components/document/document.component.d.ts +27 -0
- package/dist/src/components/document/document.component.js +136 -0
- package/dist/src/components/document/document.style.d.ts +3 -0
- package/dist/src/components/document/document.style.js +210 -0
- package/dist/src/components/document/document.types.d.ts +68 -0
- package/dist/src/components/document/document.types.js +7 -0
- package/dist/src/components/document/index.d.ts +3 -0
- package/dist/src/components/document/index.js +3 -0
- package/dist/src/components/document/react.d.ts +8 -0
- package/dist/src/components/document/react.js +15 -0
- package/dist/src/components/dropdown/bundle.js +528 -0
- package/dist/src/components/dropdown/bundle.js.gz +0 -0
- package/dist/src/components/dropdown/dropdown.component.d.ts +120 -0
- package/dist/src/components/dropdown/dropdown.component.js +390 -0
- package/dist/src/components/dropdown/dropdown.style.d.ts +2 -0
- package/dist/src/components/dropdown/dropdown.style.js +460 -0
- package/dist/src/components/dropdown/dropdown.types.d.ts +99 -0
- package/dist/src/components/dropdown/dropdown.types.js +2 -0
- package/dist/src/components/dropdown/index.d.ts +3 -0
- package/dist/src/components/dropdown/index.js +3 -0
- package/dist/src/components/dropdown/react.d.ts +7 -0
- package/dist/src/components/dropdown/react.js +14 -0
- package/dist/src/components/file-upload/bundle.js +472 -0
- package/dist/src/components/file-upload/bundle.js.gz +0 -0
- package/dist/src/components/file-upload/file-upload.component.d.ts +43 -0
- package/dist/src/components/file-upload/file-upload.component.js +398 -0
- package/dist/src/components/file-upload/index.d.ts +2 -0
- package/dist/src/components/file-upload/index.js +2 -0
- package/dist/src/components/file-upload/react.d.ts +7 -0
- package/dist/src/components/file-upload/react.js +14 -0
- package/dist/src/components/file-upload/styles.d.ts +2 -0
- package/dist/src/components/file-upload/styles.js +373 -0
- package/dist/src/components/file-upload/types.d.ts +11 -0
- package/dist/src/components/file-upload/types.js +2 -0
- package/dist/src/components/file-upload/utils.d.ts +6 -0
- package/dist/src/components/file-upload/utils.js +24 -0
- package/dist/src/components/flex/bundle.js +114 -0
- package/dist/src/components/flex/bundle.js.gz +0 -0
- package/dist/src/components/flex/flex.component.d.ts +89 -0
- package/dist/src/components/flex/flex.component.js +178 -0
- package/dist/src/components/flex/flex.style.d.ts +6 -0
- package/dist/src/components/flex/flex.style.js +101 -0
- package/dist/src/components/flex/flex.types.d.ts +63 -0
- package/dist/src/components/flex/flex.types.js +5 -0
- package/dist/src/components/flex/index.d.ts +3 -0
- package/dist/src/components/flex/index.js +3 -0
- package/dist/src/components/flex/react.d.ts +3 -0
- package/dist/src/components/flex/react.js +10 -0
- package/dist/src/components/form/bundle.js +98 -0
- package/dist/src/components/form/bundle.js.gz +0 -0
- package/dist/src/components/form/form.component.d.ts +279 -0
- package/dist/src/components/form/form.component.js +644 -0
- package/dist/src/components/form/form.style.d.ts +7 -0
- package/dist/src/components/form/form.style.js +68 -0
- package/dist/src/components/form/form.types.d.ts +92 -0
- package/dist/src/components/form/form.types.js +38 -0
- package/dist/src/components/form/index.d.ts +10 -0
- package/dist/src/components/form/index.js +13 -0
- package/dist/src/components/grid/bundle.js +202 -0
- package/dist/src/components/grid/bundle.js.gz +0 -0
- package/dist/src/components/grid/col.component.d.ts +103 -0
- package/dist/src/components/grid/col.component.js +253 -0
- package/dist/src/components/grid/col.style.d.ts +6 -0
- package/dist/src/components/grid/col.style.js +117 -0
- package/dist/src/components/grid/grid.types.d.ts +80 -0
- package/dist/src/components/grid/grid.types.js +16 -0
- package/dist/src/components/grid/index.d.ts +4 -0
- package/dist/src/components/grid/index.js +4 -0
- package/dist/src/components/grid/react.d.ts +5 -0
- package/dist/src/components/grid/react.js +17 -0
- package/dist/src/components/grid/row.component.d.ts +83 -0
- package/dist/src/components/grid/row.component.js +197 -0
- package/dist/src/components/grid/row.style.d.ts +6 -0
- package/dist/src/components/grid/row.style.js +68 -0
- package/dist/src/components/icon/bundle.js +340 -0
- package/dist/src/components/icon/bundle.js.gz +0 -0
- package/dist/src/components/icon/icon.component.d.ts +64 -0
- package/dist/src/components/icon/icon.component.js +207 -0
- package/dist/src/components/icon/icon.style.d.ts +2 -0
- package/dist/src/components/icon/icon.style.js +211 -0
- package/dist/src/components/icon/icon.types.d.ts +5 -0
- package/dist/src/components/icon/icon.types.js +2 -0
- package/dist/src/components/icon/icon.variables.d.ts +17 -0
- package/dist/src/components/icon/icon.variables.js +132 -0
- package/dist/src/components/icon/index.d.ts +2 -0
- package/dist/src/components/icon/index.js +2 -0
- package/dist/src/components/icon/react.d.ts +3 -0
- package/dist/src/components/icon/react.js +9 -0
- package/dist/src/components/iconpicker/bundle.js +2811 -0
- package/dist/src/components/iconpicker/bundle.js.gz +0 -0
- package/dist/src/components/iconpicker/icon-picker.component.d.ts +119 -0
- package/dist/src/components/iconpicker/icon-picker.component.js +337 -0
- package/dist/src/components/iconpicker/icon-picker.constant.d.ts +15 -0
- package/dist/src/components/iconpicker/icon-picker.constant.js +31 -0
- package/dist/src/components/iconpicker/icon-picker.style.d.ts +8 -0
- package/dist/src/components/iconpicker/icon-picker.style.js +216 -0
- package/dist/src/components/iconpicker/icon-picker.types.d.ts +49 -0
- package/dist/src/components/iconpicker/icon-picker.types.js +7 -0
- package/dist/src/components/iconpicker/index.d.ts +9 -0
- package/dist/src/components/iconpicker/index.js +9 -0
- package/dist/src/components/iconpicker/react.d.ts +14 -0
- package/dist/src/components/iconpicker/react.js +21 -0
- package/dist/src/components/image/bundle.js +98 -0
- package/dist/src/components/image/bundle.js.gz +0 -0
- package/dist/src/components/image/image.component.d.ts +31 -0
- package/dist/src/components/image/image.component.js +143 -0
- package/dist/src/components/image/image.style.d.ts +3 -0
- package/dist/src/components/image/image.style.js +83 -0
- package/dist/src/components/image/image.types.d.ts +68 -0
- package/dist/src/components/image/image.types.js +7 -0
- package/dist/src/components/image/index.d.ts +3 -0
- package/dist/src/components/image/index.js +3 -0
- package/dist/src/components/image/react.d.ts +8 -0
- package/dist/src/components/image/react.js +15 -0
- package/dist/src/components/input/bundle.js +930 -0
- package/dist/src/components/input/bundle.js.gz +0 -0
- package/dist/src/components/input/index.d.ts +3 -0
- package/dist/src/components/input/index.js +3 -0
- package/dist/src/components/input/input.component.d.ts +174 -0
- package/dist/src/components/input/input.component.js +490 -0
- package/dist/src/components/input/input.style.d.ts +2 -0
- package/dist/src/components/input/input.style.js +810 -0
- package/dist/src/components/input/input.types.d.ts +127 -0
- package/dist/src/components/input/input.types.js +75 -0
- package/dist/src/components/input/react.d.ts +9 -0
- package/dist/src/components/input/react.js +16 -0
- package/dist/src/components/input/validation.d.ts +3 -0
- package/dist/src/components/input/validation.js +3 -0
- package/dist/src/components/kv-secret-select/bundle.js +183 -0
- package/dist/src/components/kv-secret-select/bundle.js.gz +0 -0
- package/dist/src/components/kv-secret-select/index.d.ts +2 -0
- package/dist/src/components/kv-secret-select/index.js +2 -0
- package/dist/src/components/kv-secret-select/kv-secret-select.component.d.ts +83 -0
- package/dist/src/components/kv-secret-select/kv-secret-select.component.js +360 -0
- package/dist/src/components/label/bundle.js +104 -0
- package/dist/src/components/label/bundle.js.gz +0 -0
- package/dist/src/components/label/index.d.ts +2 -0
- package/dist/src/components/label/index.js +2 -0
- package/dist/src/components/label/label.component.d.ts +18 -0
- package/dist/src/components/label/label.component.js +64 -0
- package/dist/src/components/label/label.style.d.ts +3 -0
- package/dist/src/components/label/label.style.js +70 -0
- package/dist/src/components/label/label.style.variables.d.ts +2 -0
- package/dist/src/components/label/label.style.variables.js +35 -0
- package/dist/src/components/label/label.types.d.ts +42 -0
- package/dist/src/components/label/label.types.js +2 -0
- package/dist/src/components/label/react.d.ts +339 -0
- package/dist/src/components/label/react.js +12 -0
- package/dist/src/components/layout/bundle.js +220 -0
- package/dist/src/components/layout/bundle.js.gz +0 -0
- package/dist/src/components/layout/content.component.d.ts +35 -0
- package/dist/src/components/layout/content.component.js +47 -0
- package/dist/src/components/layout/content.style.d.ts +2 -0
- package/dist/src/components/layout/content.style.js +17 -0
- package/dist/src/components/layout/footer.component.d.ts +38 -0
- package/dist/src/components/layout/footer.component.js +60 -0
- package/dist/src/components/layout/footer.style.d.ts +2 -0
- package/dist/src/components/layout/footer.style.js +17 -0
- package/dist/src/components/layout/header.component.d.ts +39 -0
- package/dist/src/components/layout/header.component.js +61 -0
- package/dist/src/components/layout/header.style.d.ts +2 -0
- package/dist/src/components/layout/header.style.js +19 -0
- package/dist/src/components/layout/index.d.ts +8 -0
- package/dist/src/components/layout/index.js +7 -0
- package/dist/src/components/layout/layout.component.d.ts +50 -0
- package/dist/src/components/layout/layout.component.js +89 -0
- package/dist/src/components/layout/layout.style.d.ts +2 -0
- package/dist/src/components/layout/layout.style.js +23 -0
- package/dist/src/components/layout/layout.types.d.ts +75 -0
- package/dist/src/components/layout/layout.types.js +12 -0
- package/dist/src/components/layout/react.d.ts +14 -0
- package/dist/src/components/layout/react.js +37 -0
- package/dist/src/components/layout/sider.component.d.ts +116 -0
- package/dist/src/components/layout/sider.component.js +273 -0
- package/dist/src/components/layout/sider.style.d.ts +2 -0
- package/dist/src/components/layout/sider.style.js +104 -0
- package/dist/src/components/menu/bundle.js +520 -0
- package/dist/src/components/menu/bundle.js.gz +0 -0
- package/dist/src/components/menu/index.d.ts +4 -0
- package/dist/src/components/menu/index.js +2 -0
- package/dist/src/components/menu/menu.component.d.ts +87 -0
- package/dist/src/components/menu/menu.component.js +596 -0
- package/dist/src/components/menu/menu.constants.d.ts +12 -0
- package/dist/src/components/menu/menu.constants.js +14 -0
- package/dist/src/components/menu/menu.style.d.ts +2 -0
- package/dist/src/components/menu/menu.style.js +372 -0
- package/dist/src/components/menu/menu.types.d.ts +66 -0
- package/dist/src/components/menu/menu.types.js +7 -0
- package/dist/src/components/menu/react.d.ts +5 -0
- package/dist/src/components/menu/react.js +12 -0
- package/dist/src/components/modal/bundle.js +442 -0
- package/dist/src/components/modal/bundle.js.gz +0 -0
- package/dist/src/components/modal/index.d.ts +10 -0
- package/dist/src/components/modal/index.js +10 -0
- package/dist/src/components/modal/modal-manager.d.ts +72 -0
- package/dist/src/components/modal/modal-manager.js +170 -0
- package/dist/src/components/modal/modal.component.d.ts +121 -0
- package/dist/src/components/modal/modal.component.js +461 -0
- package/dist/src/components/modal/modal.style.d.ts +9 -0
- package/dist/src/components/modal/modal.style.js +369 -0
- package/dist/src/components/modal/modal.types.d.ts +105 -0
- package/dist/src/components/modal/modal.types.js +93 -0
- package/dist/src/components/modal/react.d.ts +9 -0
- package/dist/src/components/modal/react.js +16 -0
- package/dist/src/components/panel/bundle.js +1075 -0
- package/dist/src/components/panel/bundle.js.gz +0 -0
- package/dist/src/components/panel/index.d.ts +9 -0
- package/dist/src/components/panel/index.js +9 -0
- package/dist/src/components/panel/panel.component.d.ts +199 -0
- package/dist/src/components/panel/panel.component.js +720 -0
- package/dist/src/components/panel/panel.style.d.ts +7 -0
- package/dist/src/components/panel/panel.style.js +497 -0
- package/dist/src/components/panel/panel.types.d.ts +94 -0
- package/dist/src/components/panel/panel.types.js +50 -0
- package/dist/src/components/panel/react.d.ts +11 -0
- package/dist/src/components/panel/react.js +18 -0
- package/dist/src/components/popconfirm/bundle.js +438 -0
- package/dist/src/components/popconfirm/bundle.js.gz +0 -0
- package/dist/src/components/popconfirm/index.d.ts +4 -0
- package/dist/src/components/popconfirm/index.js +4 -0
- package/dist/src/components/popconfirm/popconfirm-manager.component.d.ts +129 -0
- package/dist/src/components/popconfirm/popconfirm-manager.component.js +372 -0
- package/dist/src/components/popconfirm/popconfirm-manager.style.d.ts +2 -0
- package/dist/src/components/popconfirm/popconfirm-manager.style.js +137 -0
- package/dist/src/components/popconfirm/popconfirm.component.d.ts +179 -0
- package/dist/src/components/popconfirm/popconfirm.component.js +409 -0
- package/dist/src/components/popconfirm/popconfirm.style.d.ts +2 -0
- package/dist/src/components/popconfirm/popconfirm.style.js +207 -0
- package/dist/src/components/popconfirm/popconfirm.types.d.ts +104 -0
- package/dist/src/components/popconfirm/popconfirm.types.js +2 -0
- package/dist/src/components/popconfirm/react.d.ts +7 -0
- package/dist/src/components/popconfirm/react.js +14 -0
- package/dist/src/components/radio/bundle.js +180 -0
- package/dist/src/components/radio/bundle.js.gz +0 -0
- package/dist/src/components/radio/index.d.ts +3 -0
- package/dist/src/components/radio/index.js +3 -0
- package/dist/src/components/radio/radio.component.d.ts +70 -0
- package/dist/src/components/radio/radio.component.js +187 -0
- package/dist/src/components/radio/radio.style.d.ts +7 -0
- package/dist/src/components/radio/radio.style.js +149 -0
- package/dist/src/components/radio/radio.types.d.ts +14 -0
- package/dist/src/components/radio/radio.types.js +15 -0
- package/dist/src/components/radio/react.d.ts +12 -0
- package/dist/src/components/radio/react.js +19 -0
- package/dist/src/components/radio-group/bundle.js +430 -0
- package/dist/src/components/radio-group/bundle.js.gz +0 -0
- package/dist/src/components/radio-group/index.d.ts +3 -0
- package/dist/src/components/radio-group/index.js +3 -0
- package/dist/src/components/radio-group/radio-group.component.d.ts +165 -0
- package/dist/src/components/radio-group/radio-group.component.js +437 -0
- package/dist/src/components/radio-group/radio-group.style.d.ts +7 -0
- package/dist/src/components/radio-group/radio-group.style.js +270 -0
- package/dist/src/components/radio-group/radio-group.types.d.ts +39 -0
- package/dist/src/components/radio-group/radio-group.types.js +29 -0
- package/dist/src/components/radio-group/radio.constant.d.ts +2 -0
- package/dist/src/components/radio-group/radio.constant.js +2 -0
- package/dist/src/components/radio-group/react.d.ts +10 -0
- package/dist/src/components/radio-group/react.js +17 -0
- package/dist/src/components/select/bundle.js +721 -0
- package/dist/src/components/select/bundle.js.gz +0 -0
- package/dist/src/components/select/index.d.ts +17 -0
- package/dist/src/components/select/index.js +20 -0
- package/dist/src/components/select/react.d.ts +19 -0
- package/dist/src/components/select/react.js +26 -0
- package/dist/src/components/select/select.component.d.ts +359 -0
- package/dist/src/components/select/select.component.js +775 -0
- package/dist/src/components/select/select.constant.d.ts +133 -0
- package/dist/src/components/select/select.constant.js +136 -0
- package/dist/src/components/select/select.style.d.ts +2 -0
- package/dist/src/components/select/select.style.js +533 -0
- package/dist/src/components/select/select.types.d.ts +100 -0
- package/dist/src/components/select/select.types.js +73 -0
- package/dist/src/components/skeleton/bundle.js +293 -0
- package/dist/src/components/skeleton/bundle.js.gz +0 -0
- package/dist/src/components/skeleton/index.d.ts +3 -0
- package/dist/src/components/skeleton/index.js +3 -0
- package/dist/src/components/skeleton/react.d.ts +3 -0
- package/dist/src/components/skeleton/react.js +10 -0
- package/dist/src/components/skeleton/skeleton.component.d.ts +165 -0
- package/dist/src/components/skeleton/skeleton.component.js +387 -0
- package/dist/src/components/skeleton/skeleton.style.d.ts +2 -0
- package/dist/src/components/skeleton/skeleton.style.js +224 -0
- package/dist/src/components/skeleton/skeleton.types.d.ts +82 -0
- package/dist/src/components/skeleton/skeleton.types.js +2 -0
- package/dist/src/components/slider-input/bundle.js +241 -0
- package/dist/src/components/slider-input/bundle.js.gz +0 -0
- package/dist/src/components/slider-input/index.d.ts +3 -0
- package/dist/src/components/slider-input/index.js +3 -0
- package/dist/src/components/slider-input/react.d.ts +340 -0
- package/dist/src/components/slider-input/react.js +13 -0
- package/dist/src/components/slider-input/slider-input.component.d.ts +38 -0
- package/dist/src/components/slider-input/slider-input.component.js +191 -0
- package/dist/src/components/slider-input/slider-input.style.d.ts +3 -0
- package/dist/src/components/slider-input/slider-input.style.js +171 -0
- package/dist/src/components/slider-input/slider-input.style.variables.d.ts +2 -0
- package/dist/src/components/slider-input/slider-input.style.variables.js +59 -0
- package/dist/src/components/slider-input/slider-input.types.d.ts +21 -0
- package/dist/src/components/slider-input/slider-input.types.js +6 -0
- package/dist/src/components/table/bundle.js +987 -0
- package/dist/src/components/table/bundle.js.gz +0 -0
- package/dist/src/components/table/index.d.ts +2 -0
- package/dist/src/components/table/index.js +2 -0
- package/dist/src/components/table/react.d.ts +7 -0
- package/dist/src/components/table/react.js +14 -0
- package/dist/src/components/table/table.component.d.ts +140 -0
- package/dist/src/components/table/table.component.js +433 -0
- package/dist/src/components/table/table.style.d.ts +3 -0
- package/dist/src/components/table/table.style.js +702 -0
- package/dist/src/components/table/table.types.d.ts +103 -0
- package/dist/src/components/table/table.types.js +2 -0
- package/dist/src/components/tabs/bundle.js +1782 -0
- package/dist/src/components/tabs/bundle.js.gz +0 -0
- package/dist/src/components/tabs/index.d.ts +9 -0
- package/dist/src/components/tabs/index.js +10 -0
- package/dist/src/components/tabs/react.d.ts +50 -0
- package/dist/src/components/tabs/react.js +50 -0
- package/dist/src/components/tabs/tabs.component.d.ts +100 -0
- package/dist/src/components/tabs/tabs.component.js +461 -0
- package/dist/src/components/tabs/tabs.constant.d.ts +20 -0
- package/dist/src/components/tabs/tabs.constant.js +21 -0
- package/dist/src/components/tabs/tabs.style.d.ts +9 -0
- package/dist/src/components/tabs/tabs.style.js +577 -0
- package/dist/src/components/tabs/tabs.types.d.ts +241 -0
- package/dist/src/components/tabs/tabs.types.js +13 -0
- package/dist/src/components/tag/bundle.js +108 -0
- package/dist/src/components/tag/bundle.js.gz +0 -0
- package/dist/src/components/tag/index.d.ts +2 -0
- package/dist/src/components/tag/index.js +2 -0
- package/dist/src/components/tag/react.d.ts +6 -0
- package/dist/src/components/tag/react.js +13 -0
- package/dist/src/components/tag/tag.component.d.ts +57 -0
- package/dist/src/components/tag/tag.component.js +157 -0
- package/dist/src/components/tag/tag.style.d.ts +7 -0
- package/dist/src/components/tag/tag.style.js +88 -0
- package/dist/src/components/tag/tag.types.d.ts +28 -0
- package/dist/src/components/tag/tag.types.js +7 -0
- package/dist/src/components/textarea/bundle.js +404 -0
- package/dist/src/components/textarea/bundle.js.gz +0 -0
- package/dist/src/components/textarea/index.d.ts +8 -0
- package/dist/src/components/textarea/index.js +7 -0
- package/dist/src/components/textarea/react.d.ts +9 -0
- package/dist/src/components/textarea/react.js +16 -0
- package/dist/src/components/textarea/textarea.component.d.ts +203 -0
- package/dist/src/components/textarea/textarea.component.js +657 -0
- package/dist/src/components/textarea/textarea.style.d.ts +59 -0
- package/dist/src/components/textarea/textarea.style.js +386 -0
- package/dist/src/components/textarea/textarea.types.d.ts +102 -0
- package/dist/src/components/textarea/textarea.types.js +14 -0
- package/dist/src/components/timeline/bundle.js +261 -0
- package/dist/src/components/timeline/bundle.js.gz +0 -0
- package/dist/src/components/timeline/index.d.ts +2 -0
- package/dist/src/components/timeline/index.js +2 -0
- package/dist/src/components/timeline/react.d.ts +3 -0
- package/dist/src/components/timeline/react.js +10 -0
- package/dist/src/components/timeline/timeline.component.d.ts +109 -0
- package/dist/src/components/timeline/timeline.component.js +214 -0
- package/dist/src/components/timeline/timeline.style.d.ts +14 -0
- package/dist/src/components/timeline/timeline.style.js +234 -0
- package/dist/src/components/timeline/timeline.types.d.ts +62 -0
- package/dist/src/components/timeline/timeline.types.js +7 -0
- package/dist/src/components/timepicker/bundle.js +810 -0
- package/dist/src/components/timepicker/bundle.js.gz +0 -0
- package/dist/src/components/timepicker/index.d.ts +12 -0
- package/dist/src/components/timepicker/index.js +12 -0
- package/dist/src/components/timepicker/timepicker.component.d.ts +115 -0
- package/dist/src/components/timepicker/timepicker.component.js +743 -0
- package/dist/src/components/timepicker/timepicker.constants.d.ts +85 -0
- package/dist/src/components/timepicker/timepicker.constants.js +85 -0
- package/dist/src/components/timepicker/timepicker.style.d.ts +7 -0
- package/dist/src/components/timepicker/timepicker.style.js +568 -0
- package/dist/src/components/timepicker/timepicker.style.variables.d.ts +2 -0
- package/dist/src/components/timepicker/timepicker.style.variables.js +122 -0
- package/dist/src/components/timepicker/timepicker.types.d.ts +161 -0
- package/dist/src/components/timepicker/timepicker.types.js +125 -0
- package/dist/src/components/toast/bundle.js +393 -0
- package/dist/src/components/toast/bundle.js.gz +0 -0
- package/dist/src/components/toast/index.d.ts +9 -0
- package/dist/src/components/toast/index.js +9 -0
- package/dist/src/components/toast/react.d.ts +7 -0
- package/dist/src/components/toast/react.js +19 -0
- package/dist/src/components/toast/toast.component.d.ts +152 -0
- package/dist/src/components/toast/toast.component.js +368 -0
- package/dist/src/components/toast/toast.style.d.ts +14 -0
- package/dist/src/components/toast/toast.style.js +338 -0
- package/dist/src/components/toast/toast.types.d.ts +124 -0
- package/dist/src/components/toast/toast.types.js +9 -0
- package/dist/src/components/tooltips/bundle.js +123 -0
- package/dist/src/components/tooltips/bundle.js.gz +0 -0
- package/dist/src/components/tooltips/index.d.ts +2 -0
- package/dist/src/components/tooltips/index.js +2 -0
- package/dist/src/components/tooltips/react.d.ts +1 -0
- package/dist/src/components/tooltips/react.js +2 -0
- package/dist/src/components/tooltips/tooltips.component.d.ts +33 -0
- package/dist/src/components/tooltips/tooltips.component.js +313 -0
- package/dist/src/components/tooltips/tooltips.constant.d.ts +13 -0
- package/dist/src/components/tooltips/tooltips.constant.js +15 -0
- package/dist/src/components/tooltips/tooltips.style.d.ts +2 -0
- package/dist/src/components/tooltips/tooltips.style.js +103 -0
- package/dist/src/components/tooltips/tooltips.variables.d.ts +2 -0
- package/dist/src/components/tooltips/tooltips.variables.js +14 -0
- package/dist/src/components/video/bundle.js +171 -0
- package/dist/src/components/video/bundle.js.gz +0 -0
- package/dist/src/components/video/index.d.ts +3 -0
- package/dist/src/components/video/index.js +3 -0
- package/dist/src/components/video/react.d.ts +10 -0
- package/dist/src/components/video/react.js +17 -0
- package/dist/src/components/video/video.component.d.ts +34 -0
- package/dist/src/components/video/video.component.js +184 -0
- package/dist/src/components/video/video.style.d.ts +3 -0
- package/dist/src/components/video/video.style.js +124 -0
- package/dist/src/components/video/video.types.d.ts +80 -0
- package/dist/src/components/video/video.types.js +7 -0
- package/package.json +215 -0
- package/packages/common/README.md +137 -0
- package/packages/common/dist/LICENSE +28 -0
- package/packages/common/dist/README.md +137 -0
- package/packages/common/dist/VERSIONS.md +4 -0
- package/packages/common/dist/constants/index.d.ts +2 -0
- package/packages/common/dist/constants/index.d.ts.map +1 -0
- package/packages/common/dist/constants/index.js +2 -0
- package/packages/common/dist/constants/index.js.map +1 -0
- package/packages/common/dist/constants.d.ts +17 -0
- package/packages/common/dist/constants.d.ts.map +1 -0
- package/packages/common/dist/constants.js +7 -0
- package/packages/common/dist/constants.js.map +1 -0
- package/packages/common/dist/controllers/index.d.ts +2 -0
- package/packages/common/dist/controllers/index.d.ts.map +1 -0
- package/packages/common/dist/controllers/index.js +2 -0
- package/packages/common/dist/controllers/index.js.map +1 -0
- package/packages/common/dist/controllers.d.ts +21 -0
- package/packages/common/dist/controllers.d.ts.map +1 -0
- package/packages/common/dist/controllers.js +22 -0
- package/packages/common/dist/controllers.js.map +1 -0
- package/packages/common/dist/index.d.ts +25 -0
- package/packages/common/dist/index.d.ts.map +1 -0
- package/packages/common/dist/index.js +27 -0
- package/packages/common/dist/index.js.map +1 -0
- package/packages/common/dist/mixins/index.d.ts +2 -0
- package/packages/common/dist/mixins/index.d.ts.map +1 -0
- package/packages/common/dist/mixins/index.js +3 -0
- package/packages/common/dist/mixins/index.js.map +1 -0
- package/packages/common/dist/mixins.d.ts +26 -0
- package/packages/common/dist/mixins.d.ts.map +1 -0
- package/packages/common/dist/mixins.js +29 -0
- package/packages/common/dist/mixins.js.map +1 -0
- package/packages/common/dist/shared/base-mixin.d.ts +42 -0
- package/packages/common/dist/shared/base-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/base-mixin.js +38 -0
- package/packages/common/dist/shared/base-mixin.js.map +1 -0
- package/packages/common/dist/shared/constants.d.ts +1 -0
- package/packages/common/dist/shared/constants.d.ts.map +1 -0
- package/packages/common/dist/shared/constants.js +2 -0
- package/packages/common/dist/shared/constants.js.map +1 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.d.ts +81 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.js +104 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/base.controller.d.ts +76 -0
- package/packages/common/dist/shared/controllers/base.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/base.controller.js +129 -0
- package/packages/common/dist/shared/controllers/base.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.d.ts +77 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.js +341 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.d.ts +37 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.js +2 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.js.map +1 -0
- package/packages/common/dist/shared/controllers/index.d.ts +6 -0
- package/packages/common/dist/shared/controllers/index.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/index.js +6 -0
- package/packages/common/dist/shared/controllers/index.js.map +1 -0
- package/packages/common/dist/shared/controllers/theme.controller.d.ts +48 -0
- package/packages/common/dist/shared/controllers/theme.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/theme.controller.js +133 -0
- package/packages/common/dist/shared/controllers/theme.controller.js.map +1 -0
- package/packages/common/dist/shared/dependency-mixin.d.ts +37 -0
- package/packages/common/dist/shared/dependency-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/dependency-mixin.js +141 -0
- package/packages/common/dist/shared/dependency-mixin.js.map +1 -0
- package/packages/common/dist/shared/event-handler-mixin.d.ts +64 -0
- package/packages/common/dist/shared/event-handler-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/event-handler-mixin.js +95 -0
- package/packages/common/dist/shared/event-handler-mixin.js.map +1 -0
- package/packages/common/dist/shared/index.d.ts +13 -0
- package/packages/common/dist/shared/index.d.ts.map +1 -0
- package/packages/common/dist/shared/index.js +17 -0
- package/packages/common/dist/shared/index.js.map +1 -0
- package/packages/common/dist/shared/render-utils.d.ts +103 -0
- package/packages/common/dist/shared/render-utils.d.ts.map +1 -0
- package/packages/common/dist/shared/render-utils.js +132 -0
- package/packages/common/dist/shared/render-utils.js.map +1 -0
- package/packages/common/dist/shared/theme-mixin.d.ts +78 -0
- package/packages/common/dist/shared/theme-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/theme-mixin.js +194 -0
- package/packages/common/dist/shared/theme-mixin.js.map +1 -0
- package/packages/common/dist/shared/themes.d.ts +44 -0
- package/packages/common/dist/shared/themes.d.ts.map +1 -0
- package/packages/common/dist/shared/themes.js +85 -0
- package/packages/common/dist/shared/themes.js.map +1 -0
- package/packages/common/dist/shared/utils.d.ts +60 -0
- package/packages/common/dist/shared/utils.d.ts.map +1 -0
- package/packages/common/dist/shared/utils.js +85 -0
- package/packages/common/dist/shared/utils.js.map +1 -0
- package/packages/common/dist/shared/validation.types.d.ts +108 -0
- package/packages/common/dist/shared/validation.types.d.ts.map +1 -0
- package/packages/common/dist/shared/validation.types.js +17 -0
- package/packages/common/dist/shared/validation.types.js.map +1 -0
- package/packages/common/dist/themes/index.d.ts +2 -0
- package/packages/common/dist/themes/index.d.ts.map +1 -0
- package/packages/common/dist/themes/index.js +2 -0
- package/packages/common/dist/themes/index.js.map +1 -0
- package/packages/common/dist/themes.d.ts +22 -0
- package/packages/common/dist/themes.d.ts.map +1 -0
- package/packages/common/dist/themes.js +23 -0
- package/packages/common/dist/themes.js.map +1 -0
- package/packages/common/dist/utils/index.d.ts +2 -0
- package/packages/common/dist/utils/index.d.ts.map +1 -0
- package/packages/common/dist/utils/index.js +2 -0
- package/packages/common/dist/utils/index.js.map +1 -0
- package/packages/common/dist/utils.d.ts +22 -0
- package/packages/common/dist/utils.d.ts.map +1 -0
- package/packages/common/dist/utils.js +24 -0
- package/packages/common/dist/utils.js.map +1 -0
- package/packages/themes/README.md +146 -0
- package/packages/themes/dist/README.md +146 -0
- package/packages/themes/dist/carbon.css +2987 -0
- package/packages/themes/dist/default.css +2757 -0
- package/packages/themes/dist/editor.css +1063 -0
- package/packages/themes/dist/index.cjs +46 -0
- package/packages/themes/dist/index.js +46 -0
- package/packages/themes/dist/package.json +59 -0
|
@@ -0,0 +1,1011 @@
|
|
|
1
|
+
import { css } from 'lit';
|
|
2
|
+
import { chatbotPanelStyles } from './chatbot-panel.style.js';
|
|
3
|
+
/**
|
|
4
|
+
* Whiteboard Canvas component styles
|
|
5
|
+
* Shared canvas infrastructure + whiteboard-specific toolbar/sidebar styles
|
|
6
|
+
*/
|
|
7
|
+
export const whiteboardCanvasStyles = css `
|
|
8
|
+
:host {
|
|
9
|
+
display: block;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
position: relative;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
color: var(--nuraly-color-text);
|
|
15
|
+
background-color: var(--nuraly-color-background);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
:host([data-theme]) {
|
|
19
|
+
color: inherit;
|
|
20
|
+
background-color: inherit;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.canvas-wrapper {
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
26
|
+
position: relative;
|
|
27
|
+
z-index: 0;
|
|
28
|
+
background: var(--nuraly-color-background-inverse, #0f0f0f);
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
font-family: var(--nuraly-font-family);
|
|
31
|
+
overscroll-behavior: none;
|
|
32
|
+
touch-action: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.canvas-wrapper[data-mode="PAN"] {
|
|
36
|
+
cursor: grab;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.canvas-wrapper[data-mode="PAN"]:active {
|
|
40
|
+
cursor: grabbing;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.canvas-grid {
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: 0;
|
|
46
|
+
left: 0;
|
|
47
|
+
width: 100%;
|
|
48
|
+
height: 100%;
|
|
49
|
+
background-image:
|
|
50
|
+
linear-gradient(var(--nuraly-color-border-subtle, rgba(255, 255, 255, 0.05)) 1px, transparent 1px),
|
|
51
|
+
linear-gradient(90deg, var(--nuraly-color-border-subtle, rgba(255, 255, 255, 0.05)) 1px, transparent 1px);
|
|
52
|
+
background-size: var(--nuraly-spacing-5, 20px) var(--nuraly-spacing-5, 20px);
|
|
53
|
+
z-index: 0;
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.canvas-viewport {
|
|
58
|
+
position: absolute;
|
|
59
|
+
top: 0;
|
|
60
|
+
left: 0;
|
|
61
|
+
transform-origin: 0 0;
|
|
62
|
+
will-change: transform;
|
|
63
|
+
z-index: 1;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.edges-svg {
|
|
67
|
+
position: absolute;
|
|
68
|
+
top: 0;
|
|
69
|
+
left: 0;
|
|
70
|
+
width: 10000px;
|
|
71
|
+
height: 10000px;
|
|
72
|
+
pointer-events: none;
|
|
73
|
+
overflow: visible;
|
|
74
|
+
z-index: 1;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.edge-path {
|
|
78
|
+
fill: none;
|
|
79
|
+
stroke: var(--nuraly-color-border-strong, #4a4a4a);
|
|
80
|
+
stroke-width: 2;
|
|
81
|
+
transition: stroke var(--nuraly-transition-fast, 0.15s) ease;
|
|
82
|
+
pointer-events: stroke;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.edge-path:hover {
|
|
87
|
+
stroke: var(--nuraly-color-border-interactive, #6a6a6a);
|
|
88
|
+
stroke-width: 3;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.edge-path.selected {
|
|
92
|
+
stroke: var(--nuraly-color-interactive, #3b82f6);
|
|
93
|
+
stroke-width: 3;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.edge-path.animated {
|
|
97
|
+
stroke-dasharray: 8;
|
|
98
|
+
animation: edge-flow 1s linear infinite;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@keyframes edge-flow {
|
|
102
|
+
from { stroke-dashoffset: 16; }
|
|
103
|
+
to { stroke-dashoffset: 0; }
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.edge-arrow {
|
|
107
|
+
fill: var(--nuraly-color-border-strong, #4a4a4a);
|
|
108
|
+
transition: fill var(--nuraly-transition-fast, 0.15s) ease;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.edge-path:hover + .edge-arrow,
|
|
112
|
+
.edge-path.selected + .edge-arrow {
|
|
113
|
+
fill: var(--nuraly-color-interactive, #3b82f6);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.edge-label {
|
|
117
|
+
font-family: var(--nuraly-font-family);
|
|
118
|
+
font-size: var(--nuraly-font-size-xs, 10px);
|
|
119
|
+
fill: var(--nuraly-color-text-secondary, #888);
|
|
120
|
+
pointer-events: none;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.connection-line {
|
|
124
|
+
fill: none;
|
|
125
|
+
stroke: var(--nuraly-color-interactive, #3b82f6);
|
|
126
|
+
stroke-width: 2;
|
|
127
|
+
stroke-dasharray: 5;
|
|
128
|
+
pointer-events: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.nodes-layer {
|
|
132
|
+
position: relative;
|
|
133
|
+
z-index: 2;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.selection-box {
|
|
137
|
+
position: absolute;
|
|
138
|
+
border: 1px dashed var(--nuraly-color-interactive, #3b82f6);
|
|
139
|
+
background: rgba(59, 130, 246, 0.1);
|
|
140
|
+
pointer-events: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/* Toolbar */
|
|
144
|
+
.canvas-toolbar {
|
|
145
|
+
position: absolute;
|
|
146
|
+
top: var(--nuraly-spacing-4, 16px);
|
|
147
|
+
left: var(--nuraly-spacing-4, 16px);
|
|
148
|
+
display: flex;
|
|
149
|
+
gap: var(--nuraly-spacing-2, 8px);
|
|
150
|
+
padding: var(--nuraly-spacing-2, 8px);
|
|
151
|
+
background: var(--nuraly-color-layer-02, rgba(0, 0, 0, 0.8));
|
|
152
|
+
border: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
153
|
+
border-radius: var(--nuraly-border-radius-medium, 8px);
|
|
154
|
+
z-index: 100;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.toolbar-btn {
|
|
158
|
+
display: flex;
|
|
159
|
+
align-items: center;
|
|
160
|
+
justify-content: center;
|
|
161
|
+
width: var(--nuraly-size-sm, 32px);
|
|
162
|
+
height: var(--nuraly-size-sm, 32px);
|
|
163
|
+
background: transparent;
|
|
164
|
+
border: 1px solid transparent;
|
|
165
|
+
border-radius: var(--nuraly-border-radius-small, 4px);
|
|
166
|
+
color: var(--nuraly-color-text-secondary, #888);
|
|
167
|
+
cursor: pointer;
|
|
168
|
+
transition: all var(--nuraly-transition-fast, 0.15s) ease;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.toolbar-btn:hover {
|
|
172
|
+
background: var(--nuraly-color-layer-hover-02, rgba(255, 255, 255, 0.1));
|
|
173
|
+
color: var(--nuraly-color-text-primary, #e5e5e5);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.toolbar-btn.active {
|
|
177
|
+
background: var(--nuraly-color-interactive, #3b82f6);
|
|
178
|
+
color: var(--nuraly-color-text-on-color, #fff);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.toolbar-btn:disabled {
|
|
182
|
+
opacity: 0.5;
|
|
183
|
+
cursor: not-allowed;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.toolbar-btn nr-icon {
|
|
187
|
+
color: inherit;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.toolbar-divider {
|
|
191
|
+
width: 1px;
|
|
192
|
+
background: var(--nuraly-color-border-subtle, #3a3a3a);
|
|
193
|
+
margin: 0 var(--nuraly-spacing-1, 4px);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* Zoom controls */
|
|
197
|
+
.zoom-controls {
|
|
198
|
+
position: absolute;
|
|
199
|
+
bottom: var(--nuraly-spacing-4, 16px);
|
|
200
|
+
left: var(--nuraly-spacing-4, 16px);
|
|
201
|
+
display: flex;
|
|
202
|
+
align-items: center;
|
|
203
|
+
gap: var(--nuraly-spacing-2, 8px);
|
|
204
|
+
padding: var(--nuraly-spacing-2, 8px);
|
|
205
|
+
background: var(--nuraly-color-layer-02, rgba(0, 0, 0, 0.8));
|
|
206
|
+
border: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
207
|
+
border-radius: var(--nuraly-border-radius-medium, 8px);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.zoom-value {
|
|
211
|
+
font-family: var(--nuraly-font-family);
|
|
212
|
+
font-size: var(--nuraly-font-size-sm, 12px);
|
|
213
|
+
color: var(--nuraly-color-text-secondary, #888);
|
|
214
|
+
min-width: 48px;
|
|
215
|
+
text-align: center;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/* Context menu */
|
|
219
|
+
.context-menu {
|
|
220
|
+
position: fixed;
|
|
221
|
+
min-width: 160px;
|
|
222
|
+
background: var(--nuraly-color-layer-01, rgba(0, 0, 0, 0.95));
|
|
223
|
+
border: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
224
|
+
border-radius: var(--nuraly-border-radius-medium, 8px);
|
|
225
|
+
padding: var(--nuraly-spacing-1, 4px) 0;
|
|
226
|
+
z-index: 1000;
|
|
227
|
+
box-shadow: var(--nuraly-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.5));
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.context-menu-item {
|
|
231
|
+
display: flex;
|
|
232
|
+
align-items: center;
|
|
233
|
+
gap: var(--nuraly-spacing-2, 8px);
|
|
234
|
+
padding: var(--nuraly-spacing-2, 8px) var(--nuraly-spacing-3, 12px);
|
|
235
|
+
font-family: var(--nuraly-font-family);
|
|
236
|
+
font-size: var(--nuraly-font-size-sm, 12px);
|
|
237
|
+
color: var(--nuraly-color-text-primary, #e5e5e5);
|
|
238
|
+
cursor: pointer;
|
|
239
|
+
transition: background var(--nuraly-transition-fast, 0.15s) ease;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.context-menu-item:hover {
|
|
243
|
+
background: var(--nuraly-color-layer-hover-01, rgba(255, 255, 255, 0.1));
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.context-menu-item.danger {
|
|
247
|
+
color: var(--nuraly-color-support-error, #ef4444);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.context-menu-item nr-icon {
|
|
251
|
+
color: inherit;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.context-menu-shortcut {
|
|
255
|
+
margin-left: auto;
|
|
256
|
+
font-size: 11px;
|
|
257
|
+
color: var(--nuraly-color-text-secondary, #a0a0a0);
|
|
258
|
+
opacity: 0.7;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.context-menu-divider {
|
|
262
|
+
height: 1px;
|
|
263
|
+
background: var(--nuraly-color-border-subtle, #3a3a3a);
|
|
264
|
+
margin: var(--nuraly-spacing-1, 4px) 0;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/* Configuration panel */
|
|
268
|
+
.config-panel {
|
|
269
|
+
position: absolute;
|
|
270
|
+
width: 320px;
|
|
271
|
+
max-height: 500px;
|
|
272
|
+
background: var(--nuraly-color-layer-01, rgba(0, 0, 0, 0.95));
|
|
273
|
+
border: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
274
|
+
border-radius: var(--nuraly-border-radius-medium, 8px);
|
|
275
|
+
overflow: hidden;
|
|
276
|
+
z-index: 200;
|
|
277
|
+
display: flex;
|
|
278
|
+
flex-direction: column;
|
|
279
|
+
box-shadow: var(--nuraly-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.4));
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.config-panel-header {
|
|
283
|
+
display: flex;
|
|
284
|
+
align-items: center;
|
|
285
|
+
justify-content: space-between;
|
|
286
|
+
padding: var(--nuraly-spacing-3, 12px);
|
|
287
|
+
border-bottom: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
288
|
+
background: var(--nuraly-color-layer-02, rgba(255, 255, 255, 0.03));
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.config-panel-title {
|
|
292
|
+
display: flex;
|
|
293
|
+
align-items: center;
|
|
294
|
+
gap: var(--nuraly-spacing-2, 8px);
|
|
295
|
+
font-family: var(--nuraly-font-family);
|
|
296
|
+
font-size: var(--nuraly-font-size-sm, 13px);
|
|
297
|
+
font-weight: var(--nuraly-font-weight-semibold, 600);
|
|
298
|
+
color: var(--nuraly-color-text-primary, #e5e5e5);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.config-panel-close {
|
|
302
|
+
background: none;
|
|
303
|
+
border: none;
|
|
304
|
+
color: var(--nuraly-color-text-secondary, #888);
|
|
305
|
+
cursor: pointer;
|
|
306
|
+
padding: var(--nuraly-spacing-1, 4px);
|
|
307
|
+
display: flex;
|
|
308
|
+
align-items: center;
|
|
309
|
+
justify-content: center;
|
|
310
|
+
border-radius: var(--nuraly-border-radius-small, 4px);
|
|
311
|
+
transition: all var(--nuraly-transition-fast, 0.15s) ease;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.config-panel-close:hover {
|
|
315
|
+
color: var(--nuraly-color-text-primary, #e5e5e5);
|
|
316
|
+
background: var(--nuraly-color-layer-hover-01, rgba(255, 255, 255, 0.1));
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.config-panel-content {
|
|
320
|
+
flex: 1;
|
|
321
|
+
overflow-y: auto;
|
|
322
|
+
padding: var(--nuraly-spacing-3, 12px);
|
|
323
|
+
display: flex;
|
|
324
|
+
flex-direction: column;
|
|
325
|
+
gap: var(--nuraly-spacing-3, 12px);
|
|
326
|
+
overscroll-behavior: contain;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.config-field {
|
|
330
|
+
display: flex;
|
|
331
|
+
flex-direction: column;
|
|
332
|
+
gap: var(--nuraly-spacing-1, 4px);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.config-field label {
|
|
336
|
+
font-family: var(--nuraly-font-family);
|
|
337
|
+
font-size: var(--nuraly-font-size-xs, 11px);
|
|
338
|
+
font-weight: var(--nuraly-font-weight-medium, 500);
|
|
339
|
+
color: var(--nuraly-color-text-secondary, #888);
|
|
340
|
+
text-transform: uppercase;
|
|
341
|
+
letter-spacing: 0.5px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.config-field nr-input {
|
|
345
|
+
width: 100%;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* Empty state */
|
|
349
|
+
.empty-state {
|
|
350
|
+
position: absolute;
|
|
351
|
+
top: 50%;
|
|
352
|
+
left: 50%;
|
|
353
|
+
transform: translate(-50%, -50%);
|
|
354
|
+
text-align: center;
|
|
355
|
+
color: var(--nuraly-color-text-placeholder, #666);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.empty-state-icon {
|
|
359
|
+
font-size: 48px;
|
|
360
|
+
margin-bottom: var(--nuraly-spacing-4, 16px);
|
|
361
|
+
opacity: 0.5;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.empty-state-icon nr-icon {
|
|
365
|
+
color: inherit;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.empty-state-text {
|
|
369
|
+
font-family: var(--nuraly-font-family);
|
|
370
|
+
font-size: var(--nuraly-font-size-md, 14px);
|
|
371
|
+
margin-bottom: var(--nuraly-spacing-2, 8px);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.empty-state-hint {
|
|
375
|
+
font-family: var(--nuraly-font-family);
|
|
376
|
+
font-size: var(--nuraly-font-size-sm, 12px);
|
|
377
|
+
opacity: 0.7;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
/* Frames layer */
|
|
381
|
+
.frames-layer {
|
|
382
|
+
position: absolute;
|
|
383
|
+
top: 0;
|
|
384
|
+
left: 0;
|
|
385
|
+
width: 100%;
|
|
386
|
+
height: 100%;
|
|
387
|
+
pointer-events: none;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.frames-layer > * {
|
|
391
|
+
pointer-events: auto;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
/* Frame nodes */
|
|
395
|
+
.frame-node {
|
|
396
|
+
position: absolute;
|
|
397
|
+
border-radius: 8px;
|
|
398
|
+
cursor: move;
|
|
399
|
+
transition: box-shadow 0.15s ease;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.frame-node:hover {
|
|
403
|
+
box-shadow: 0 0 0 1px var(--nuraly-color-interactive, #3b82f6);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.frame-node.selected {
|
|
407
|
+
box-shadow: 0 0 0 2px var(--nuraly-color-interactive, #3b82f6);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.frame-label {
|
|
411
|
+
position: absolute;
|
|
412
|
+
font-size: 12px;
|
|
413
|
+
font-weight: 600;
|
|
414
|
+
color: var(--nuraly-color-text-secondary, #a0a0a0);
|
|
415
|
+
white-space: nowrap;
|
|
416
|
+
overflow: hidden;
|
|
417
|
+
text-overflow: ellipsis;
|
|
418
|
+
max-width: calc(100% - 40px);
|
|
419
|
+
user-select: none;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.frame-label.outside { top: -22px; left: 0; }
|
|
423
|
+
.frame-label.inside { top: 8px; left: 12px; background: inherit; padding: 2px 6px; border-radius: 4px; }
|
|
424
|
+
.frame-label.top-left { left: 0; }
|
|
425
|
+
.frame-label.top-center { left: 50%; transform: translateX(-50%); }
|
|
426
|
+
.frame-label.top-right { left: auto; right: 0; }
|
|
427
|
+
|
|
428
|
+
.frame-label-text {
|
|
429
|
+
display: inline-flex;
|
|
430
|
+
align-items: center;
|
|
431
|
+
gap: 4px;
|
|
432
|
+
cursor: pointer;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.frame-label-edit-icon {
|
|
436
|
+
opacity: 0;
|
|
437
|
+
width: 14px;
|
|
438
|
+
height: 14px;
|
|
439
|
+
padding: 2px;
|
|
440
|
+
color: var(--nuraly-color-text-secondary, #a0a0a0);
|
|
441
|
+
cursor: pointer;
|
|
442
|
+
border-radius: 3px;
|
|
443
|
+
transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.frame-label-text:hover .frame-label-edit-icon {
|
|
447
|
+
opacity: 0.7;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.frame-label-edit-icon:hover {
|
|
451
|
+
opacity: 1 !important;
|
|
452
|
+
background: var(--nuraly-color-layer-hover, rgba(255, 255, 255, 0.1));
|
|
453
|
+
color: var(--nuraly-color-interactive, #3b82f6);
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.frame-label-input {
|
|
457
|
+
font-size: 12px;
|
|
458
|
+
font-weight: 600;
|
|
459
|
+
color: var(--nuraly-color-text-primary, #e5e5e5);
|
|
460
|
+
background: var(--nuraly-color-layer-02, #2a2a2a);
|
|
461
|
+
border: 1px solid var(--nuraly-color-interactive, #3b82f6);
|
|
462
|
+
border-radius: 4px;
|
|
463
|
+
padding: 2px 6px;
|
|
464
|
+
outline: none;
|
|
465
|
+
min-width: 80px;
|
|
466
|
+
max-width: 200px;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.frame-label-input:focus {
|
|
470
|
+
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.frame-collapse-btn {
|
|
474
|
+
position: absolute;
|
|
475
|
+
top: -22px;
|
|
476
|
+
right: 0;
|
|
477
|
+
width: 20px;
|
|
478
|
+
height: 20px;
|
|
479
|
+
display: flex;
|
|
480
|
+
align-items: center;
|
|
481
|
+
justify-content: center;
|
|
482
|
+
background: var(--nuraly-color-layer-02, #2a2a2a);
|
|
483
|
+
border: 1px solid var(--nuraly-color-border-subtle, #3a3a3a);
|
|
484
|
+
border-radius: 4px;
|
|
485
|
+
cursor: pointer;
|
|
486
|
+
opacity: 0;
|
|
487
|
+
transition: opacity 0.15s ease, background 0.15s ease;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.frame-node:hover .frame-collapse-btn { opacity: 1; }
|
|
491
|
+
.frame-collapse-btn:hover { background: var(--nuraly-color-layer-hover, #3a3a3a); }
|
|
492
|
+
.frame-collapse-btn nr-icon { width: 12px; height: 12px; color: var(--nuraly-color-text-secondary, #a0a0a0); }
|
|
493
|
+
|
|
494
|
+
.frame-resize-handles {
|
|
495
|
+
position: absolute;
|
|
496
|
+
top: 0; left: 0; right: 0; bottom: 0;
|
|
497
|
+
pointer-events: none;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.resize-handle {
|
|
501
|
+
position: absolute;
|
|
502
|
+
pointer-events: auto;
|
|
503
|
+
opacity: 0;
|
|
504
|
+
transition: opacity 0.15s ease;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.frame-node:hover .resize-handle,
|
|
508
|
+
.frame-node.selected .resize-handle { opacity: 1; }
|
|
509
|
+
|
|
510
|
+
.resize-handle.corner {
|
|
511
|
+
width: 12px; height: 12px;
|
|
512
|
+
background: var(--nuraly-color-interactive, #3b82f6);
|
|
513
|
+
border: 2px solid var(--nuraly-color-layer-01, #1e1e1e);
|
|
514
|
+
border-radius: 2px;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.resize-handle.nw { top: -6px; left: -6px; cursor: nw-resize; }
|
|
518
|
+
.resize-handle.ne { top: -6px; right: -6px; cursor: ne-resize; }
|
|
519
|
+
.resize-handle.sw { bottom: -6px; left: -6px; cursor: sw-resize; }
|
|
520
|
+
.resize-handle.se { bottom: -6px; right: -6px; cursor: se-resize; }
|
|
521
|
+
|
|
522
|
+
.resize-handle.edge { background: transparent; }
|
|
523
|
+
.resize-handle.n { top: -4px; left: 12px; right: 12px; height: 8px; cursor: n-resize; }
|
|
524
|
+
.resize-handle.s { bottom: -4px; left: 12px; right: 12px; height: 8px; cursor: s-resize; }
|
|
525
|
+
.resize-handle.w { left: -4px; top: 12px; bottom: 12px; width: 8px; cursor: w-resize; }
|
|
526
|
+
.resize-handle.e { right: -4px; top: 12px; bottom: 12px; width: 8px; cursor: e-resize; }
|
|
527
|
+
|
|
528
|
+
/* ========================================
|
|
529
|
+
* WHITEBOARD FLOATING TOOLBAR
|
|
530
|
+
* ======================================== */
|
|
531
|
+
|
|
532
|
+
.wb-floating-toolbar {
|
|
533
|
+
position: absolute;
|
|
534
|
+
transform: translateX(-50%);
|
|
535
|
+
z-index: 1000;
|
|
536
|
+
display: flex;
|
|
537
|
+
align-items: center;
|
|
538
|
+
gap: 4px;
|
|
539
|
+
padding: 6px 10px;
|
|
540
|
+
background: #ffffff;
|
|
541
|
+
border: 1px solid #e0e0e0;
|
|
542
|
+
border-radius: 8px;
|
|
543
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
544
|
+
pointer-events: auto;
|
|
545
|
+
white-space: nowrap;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.wb-color-picker-panel {
|
|
549
|
+
position: absolute;
|
|
550
|
+
z-index: 1001;
|
|
551
|
+
pointer-events: auto;
|
|
552
|
+
background: #ffffff;
|
|
553
|
+
border: 1px solid #e0e0e0;
|
|
554
|
+
border-radius: 8px;
|
|
555
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
556
|
+
padding: 8px;
|
|
557
|
+
width: 200px;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.wb-picker-presets {
|
|
561
|
+
display: flex;
|
|
562
|
+
flex-wrap: wrap;
|
|
563
|
+
gap: 4px;
|
|
564
|
+
margin-bottom: 8px;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.wb-picker-swatch {
|
|
568
|
+
width: 24px;
|
|
569
|
+
height: 24px;
|
|
570
|
+
border-radius: 4px;
|
|
571
|
+
border: 1.5px solid #d1d5db;
|
|
572
|
+
cursor: pointer;
|
|
573
|
+
padding: 0;
|
|
574
|
+
transition: transform 0.1s ease, border-color 0.1s ease;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.wb-picker-swatch:hover {
|
|
578
|
+
transform: scale(1.15);
|
|
579
|
+
border-color: #9ca3af;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.wb-picker-swatch.active {
|
|
583
|
+
border-color: #3b82f6;
|
|
584
|
+
box-shadow: 0 0 0 1.5px #3b82f6;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.wb-picker-custom {
|
|
588
|
+
display: flex;
|
|
589
|
+
align-items: center;
|
|
590
|
+
gap: 6px;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.wb-picker-native {
|
|
594
|
+
width: 32px;
|
|
595
|
+
height: 32px;
|
|
596
|
+
padding: 1px;
|
|
597
|
+
border: 1.5px solid #d1d5db;
|
|
598
|
+
border-radius: 6px;
|
|
599
|
+
background: none;
|
|
600
|
+
cursor: pointer;
|
|
601
|
+
flex-shrink: 0;
|
|
602
|
+
-webkit-appearance: none;
|
|
603
|
+
appearance: none;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.wb-picker-native::-webkit-color-swatch-wrapper { padding: 2px; }
|
|
607
|
+
.wb-picker-native::-webkit-color-swatch { border: none; border-radius: 3px; }
|
|
608
|
+
.wb-picker-native::-moz-color-swatch { border: none; border-radius: 3px; }
|
|
609
|
+
.wb-picker-native:hover { border-color: #9ca3af; }
|
|
610
|
+
|
|
611
|
+
.wb-toolbar-group {
|
|
612
|
+
display: flex;
|
|
613
|
+
align-items: center;
|
|
614
|
+
gap: 4px;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.wb-toolbar-label {
|
|
618
|
+
font-size: 10px;
|
|
619
|
+
font-weight: 600;
|
|
620
|
+
color: #6b7280;
|
|
621
|
+
text-transform: uppercase;
|
|
622
|
+
letter-spacing: 0.5px;
|
|
623
|
+
margin-right: 2px;
|
|
624
|
+
user-select: none;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.wb-toolbar-divider {
|
|
628
|
+
width: 1px;
|
|
629
|
+
height: 20px;
|
|
630
|
+
background: #e5e7eb;
|
|
631
|
+
margin: 0 4px;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.wb-floating-toolbar nr-colorholder-box { cursor: pointer; }
|
|
635
|
+
.wb-floating-toolbar nr-input { --nr-input-height: 28px; --nr-input-font-size: 12px; }
|
|
636
|
+
.wb-floating-toolbar nr-select { --nr-select-height: 28px; --nr-select-font-size: 12px; }
|
|
637
|
+
|
|
638
|
+
.wb-toolbar-btn {
|
|
639
|
+
display: flex;
|
|
640
|
+
align-items: center;
|
|
641
|
+
justify-content: center;
|
|
642
|
+
width: 28px;
|
|
643
|
+
height: 28px;
|
|
644
|
+
padding: 0;
|
|
645
|
+
border: 1px solid #e5e7eb;
|
|
646
|
+
border-radius: 6px;
|
|
647
|
+
background: #f9fafb;
|
|
648
|
+
cursor: pointer;
|
|
649
|
+
transition: all 0.1s ease;
|
|
650
|
+
color: #374151;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.wb-toolbar-btn:hover { background: #e5e7eb; }
|
|
654
|
+
.wb-toolbar-btn.danger:hover { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
|
|
655
|
+
.wb-toolbar-btn nr-icon { --icon-size: 14px; }
|
|
656
|
+
|
|
657
|
+
/* ========================================
|
|
658
|
+
* WHITEBOARD LEFT SIDEBAR (Miro-style)
|
|
659
|
+
* ======================================== */
|
|
660
|
+
|
|
661
|
+
.wb-sidebar {
|
|
662
|
+
position: absolute;
|
|
663
|
+
left: 16px;
|
|
664
|
+
top: 35%;
|
|
665
|
+
transform: translateY(-50%);
|
|
666
|
+
z-index: 100;
|
|
667
|
+
display: flex;
|
|
668
|
+
flex-direction: column;
|
|
669
|
+
align-items: center;
|
|
670
|
+
gap: 2px;
|
|
671
|
+
padding: 6px;
|
|
672
|
+
background: #ffffff;
|
|
673
|
+
border: 1px solid #e0e0e0;
|
|
674
|
+
border-radius: 12px;
|
|
675
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
676
|
+
pointer-events: auto;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.wb-sidebar-btn {
|
|
680
|
+
display: flex;
|
|
681
|
+
align-items: center;
|
|
682
|
+
justify-content: center;
|
|
683
|
+
width: 36px;
|
|
684
|
+
height: 36px;
|
|
685
|
+
padding: 0;
|
|
686
|
+
border: 1px solid transparent;
|
|
687
|
+
border-radius: 8px;
|
|
688
|
+
background: transparent;
|
|
689
|
+
cursor: pointer;
|
|
690
|
+
transition: all 0.15s ease;
|
|
691
|
+
color: #6b7280;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.wb-sidebar-btn:hover { background: #f3f4f6; color: #374151; }
|
|
695
|
+
.wb-sidebar-btn.active { background: var(--nuraly-color-interactive, #3b82f6); color: #fff; }
|
|
696
|
+
.wb-sidebar-btn nr-icon { color: inherit; }
|
|
697
|
+
|
|
698
|
+
.wb-sidebar-divider {
|
|
699
|
+
width: 24px;
|
|
700
|
+
height: 1px;
|
|
701
|
+
background: #e5e7eb;
|
|
702
|
+
margin: 4px 0;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.wb-sidebar-shapes-wrapper { position: relative; }
|
|
706
|
+
|
|
707
|
+
.wb-shapes-flyout {
|
|
708
|
+
position: absolute;
|
|
709
|
+
left: calc(100% + 8px);
|
|
710
|
+
top: 50%;
|
|
711
|
+
transform: translateY(-50%);
|
|
712
|
+
display: grid;
|
|
713
|
+
grid-template-columns: repeat(4, 1fr);
|
|
714
|
+
gap: 4px;
|
|
715
|
+
padding: 8px;
|
|
716
|
+
background: #ffffff;
|
|
717
|
+
border: 1px solid #e0e0e0;
|
|
718
|
+
border-radius: 10px;
|
|
719
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
720
|
+
z-index: 101;
|
|
721
|
+
pointer-events: auto;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.wb-shapes-flyout-btn {
|
|
725
|
+
display: flex;
|
|
726
|
+
align-items: center;
|
|
727
|
+
justify-content: center;
|
|
728
|
+
width: 36px;
|
|
729
|
+
height: 36px;
|
|
730
|
+
padding: 0;
|
|
731
|
+
border: 1px solid transparent;
|
|
732
|
+
border-radius: 8px;
|
|
733
|
+
background: transparent;
|
|
734
|
+
cursor: pointer;
|
|
735
|
+
transition: all 0.15s ease;
|
|
736
|
+
color: #6b7280;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.wb-shapes-flyout-btn:hover { background: #f3f4f6; color: #374151; }
|
|
740
|
+
.wb-shapes-flyout-btn nr-icon { color: inherit; }
|
|
741
|
+
|
|
742
|
+
/* ========================================
|
|
743
|
+
* COLLABORATION: REMOTE CURSORS
|
|
744
|
+
* ======================================== */
|
|
745
|
+
|
|
746
|
+
.remote-cursor {
|
|
747
|
+
position: absolute;
|
|
748
|
+
pointer-events: none;
|
|
749
|
+
z-index: 9999;
|
|
750
|
+
transition: left 50ms linear, top 50ms linear;
|
|
751
|
+
will-change: left, top;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.remote-cursor svg {
|
|
755
|
+
display: block;
|
|
756
|
+
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.remote-cursor-label {
|
|
760
|
+
display: inline-block;
|
|
761
|
+
margin-left: 16px;
|
|
762
|
+
margin-top: -2px;
|
|
763
|
+
padding: 2px 8px;
|
|
764
|
+
border-radius: 4px;
|
|
765
|
+
font-family: var(--nuraly-font-family);
|
|
766
|
+
font-size: 11px;
|
|
767
|
+
font-weight: 500;
|
|
768
|
+
color: #ffffff;
|
|
769
|
+
white-space: nowrap;
|
|
770
|
+
line-height: 1.4;
|
|
771
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
/* ========================================
|
|
775
|
+
* COLLABORATION: PRESENCE BAR
|
|
776
|
+
* ======================================== */
|
|
777
|
+
|
|
778
|
+
.presence-bar {
|
|
779
|
+
position: absolute;
|
|
780
|
+
top: 16px;
|
|
781
|
+
right: 16px;
|
|
782
|
+
z-index: 100;
|
|
783
|
+
display: flex;
|
|
784
|
+
align-items: center;
|
|
785
|
+
gap: 10px;
|
|
786
|
+
padding: 6px 12px;
|
|
787
|
+
background: rgba(255, 255, 255, 0.85);
|
|
788
|
+
backdrop-filter: blur(12px);
|
|
789
|
+
-webkit-backdrop-filter: blur(12px);
|
|
790
|
+
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
791
|
+
border-radius: 20px;
|
|
792
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
793
|
+
pointer-events: auto;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.presence-avatars {
|
|
797
|
+
display: flex;
|
|
798
|
+
flex-direction: row-reverse;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.presence-avatar {
|
|
802
|
+
width: 28px;
|
|
803
|
+
height: 28px;
|
|
804
|
+
border-radius: 50%;
|
|
805
|
+
display: flex;
|
|
806
|
+
align-items: center;
|
|
807
|
+
justify-content: center;
|
|
808
|
+
font-size: 11px;
|
|
809
|
+
font-weight: 600;
|
|
810
|
+
color: #ffffff;
|
|
811
|
+
border: 2px solid #ffffff;
|
|
812
|
+
margin-left: -8px;
|
|
813
|
+
cursor: default;
|
|
814
|
+
position: relative;
|
|
815
|
+
transition: transform 0.15s ease;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.presence-avatar-clickable {
|
|
819
|
+
cursor: pointer;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.presence-avatar:hover {
|
|
823
|
+
transform: scale(1.15);
|
|
824
|
+
z-index: 1;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.presence-avatar-clickable:hover {
|
|
828
|
+
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.6);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.presence-avatar:last-child {
|
|
832
|
+
margin-left: 0;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.presence-avatar-typing {
|
|
836
|
+
animation: presence-typing-pulse 1.2s ease-in-out infinite;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
@keyframes presence-typing-pulse {
|
|
840
|
+
0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
|
|
841
|
+
50% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3); }
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.presence-avatar-extra {
|
|
845
|
+
background: #6b7280 !important;
|
|
846
|
+
font-size: 10px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.presence-count {
|
|
850
|
+
font-family: var(--nuraly-font-family);
|
|
851
|
+
font-size: 12px;
|
|
852
|
+
font-weight: 500;
|
|
853
|
+
color: #6b7280;
|
|
854
|
+
white-space: nowrap;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
/* ========================================
|
|
858
|
+
* LIGHT THEME
|
|
859
|
+
* ======================================== */
|
|
860
|
+
|
|
861
|
+
.canvas-wrapper[data-theme="light"],
|
|
862
|
+
.canvas-wrapper[data-theme="carbon-light"],
|
|
863
|
+
.canvas-wrapper[data-theme="default-light"] {
|
|
864
|
+
background: var(--nuraly-color-layer-01, #f4f4f4);
|
|
865
|
+
|
|
866
|
+
.canvas-grid {
|
|
867
|
+
background-image:
|
|
868
|
+
linear-gradient(var(--nuraly-color-border-subtle, rgba(0, 0, 0, 0.1)) 1px, transparent 1px),
|
|
869
|
+
linear-gradient(90deg, var(--nuraly-color-border-subtle, rgba(0, 0, 0, 0.1)) 1px, transparent 1px);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.edge-path { stroke: var(--nuraly-color-border-strong, #8d8d8d); }
|
|
873
|
+
.edge-path:hover { stroke: var(--nuraly-color-border-interactive, #6f6f6f); }
|
|
874
|
+
.edge-arrow { fill: var(--nuraly-color-border-strong, #8d8d8d); }
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.canvas-wrapper[data-theme="light"] .canvas-toolbar,
|
|
878
|
+
.canvas-wrapper[data-theme="light"] .zoom-controls,
|
|
879
|
+
.canvas-wrapper[data-theme="light"] .context-menu,
|
|
880
|
+
.canvas-wrapper[data-theme="light"] .config-panel,
|
|
881
|
+
.canvas-wrapper[data-theme="carbon-light"] .canvas-toolbar,
|
|
882
|
+
.canvas-wrapper[data-theme="carbon-light"] .zoom-controls,
|
|
883
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu,
|
|
884
|
+
.canvas-wrapper[data-theme="carbon-light"] .config-panel,
|
|
885
|
+
.canvas-wrapper[data-theme="default-light"] .canvas-toolbar,
|
|
886
|
+
.canvas-wrapper[data-theme="default-light"] .zoom-controls,
|
|
887
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu,
|
|
888
|
+
.canvas-wrapper[data-theme="default-light"] .config-panel,
|
|
889
|
+
.canvas-wrapper[data-theme="default"] .canvas-toolbar,
|
|
890
|
+
.canvas-wrapper[data-theme="default"] .zoom-controls,
|
|
891
|
+
.canvas-wrapper[data-theme="default"] .context-menu,
|
|
892
|
+
.canvas-wrapper[data-theme="default"] .config-panel {
|
|
893
|
+
background: var(--nuraly-color-layer-01, #ffffff);
|
|
894
|
+
border-color: var(--nuraly-color-border-subtle, #e0e0e0);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.canvas-wrapper[data-theme="light"] .context-menu-item,
|
|
898
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu-item,
|
|
899
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu-item,
|
|
900
|
+
.canvas-wrapper[data-theme="default"] .context-menu-item {
|
|
901
|
+
color: var(--nuraly-color-text-primary, #1a1a1a);
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.canvas-wrapper[data-theme="light"] .context-menu-item:hover,
|
|
905
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu-item:hover,
|
|
906
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu-item:hover,
|
|
907
|
+
.canvas-wrapper[data-theme="default"] .context-menu-item:hover {
|
|
908
|
+
background: var(--nuraly-color-layer-hover-01, #f3f4f6);
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.canvas-wrapper[data-theme="light"] .context-menu-item.danger,
|
|
912
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu-item.danger,
|
|
913
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu-item.danger,
|
|
914
|
+
.canvas-wrapper[data-theme="default"] .context-menu-item.danger {
|
|
915
|
+
color: var(--nuraly-color-support-error, #ef4444);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.canvas-wrapper[data-theme="light"] .context-menu-shortcut,
|
|
919
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu-shortcut,
|
|
920
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu-shortcut,
|
|
921
|
+
.canvas-wrapper[data-theme="default"] .context-menu-shortcut {
|
|
922
|
+
color: var(--nuraly-color-text-secondary, #6b7280);
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.canvas-wrapper[data-theme="light"] .context-menu-divider,
|
|
926
|
+
.canvas-wrapper[data-theme="carbon-light"] .context-menu-divider,
|
|
927
|
+
.canvas-wrapper[data-theme="default-light"] .context-menu-divider,
|
|
928
|
+
.canvas-wrapper[data-theme="default"] .context-menu-divider {
|
|
929
|
+
background: var(--nuraly-color-border-subtle, #e5e7eb);
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.canvas-wrapper[data-theme="light"] .toolbar-btn,
|
|
933
|
+
.canvas-wrapper[data-theme="carbon-light"] .toolbar-btn,
|
|
934
|
+
.canvas-wrapper[data-theme="default-light"] .toolbar-btn,
|
|
935
|
+
.canvas-wrapper[data-theme="default"] .toolbar-btn {
|
|
936
|
+
color: var(--nuraly-color-text-secondary, #6b7280);
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.canvas-wrapper[data-theme="light"] .toolbar-btn:hover,
|
|
940
|
+
.canvas-wrapper[data-theme="carbon-light"] .toolbar-btn:hover,
|
|
941
|
+
.canvas-wrapper[data-theme="default-light"] .toolbar-btn:hover,
|
|
942
|
+
.canvas-wrapper[data-theme="default"] .toolbar-btn:hover {
|
|
943
|
+
background: var(--nuraly-color-layer-hover-02, #f3f4f6);
|
|
944
|
+
color: var(--nuraly-color-text-primary, #1a1a1a);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.canvas-wrapper[data-theme="light"] .zoom-value,
|
|
948
|
+
.canvas-wrapper[data-theme="carbon-light"] .zoom-value,
|
|
949
|
+
.canvas-wrapper[data-theme="default-light"] .zoom-value,
|
|
950
|
+
.canvas-wrapper[data-theme="default"] .zoom-value {
|
|
951
|
+
color: var(--nuraly-color-text-secondary, #6b7280);
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.canvas-wrapper[data-theme="light"] .empty-state,
|
|
955
|
+
.canvas-wrapper[data-theme="carbon-light"] .empty-state,
|
|
956
|
+
.canvas-wrapper[data-theme="default-light"] .empty-state {
|
|
957
|
+
color: var(--nuraly-color-text-placeholder, #6f6f6f);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
/* ========================================
|
|
961
|
+
* DARK THEME
|
|
962
|
+
* ======================================== */
|
|
963
|
+
|
|
964
|
+
.canvas-wrapper[data-theme="dark"],
|
|
965
|
+
.canvas-wrapper[data-theme="carbon-dark"],
|
|
966
|
+
.canvas-wrapper[data-theme="default-dark"] {
|
|
967
|
+
background: var(--nuraly-color-background, #161616);
|
|
968
|
+
|
|
969
|
+
.canvas-grid {
|
|
970
|
+
background-image:
|
|
971
|
+
linear-gradient(var(--nuraly-color-border-subtle, rgba(255, 255, 255, 0.05)) 1px, transparent 1px),
|
|
972
|
+
linear-gradient(90deg, var(--nuraly-color-border-subtle, rgba(255, 255, 255, 0.05)) 1px, transparent 1px);
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.canvas-wrapper[data-theme="dark"] .canvas-toolbar,
|
|
977
|
+
.canvas-wrapper[data-theme="dark"] .zoom-controls,
|
|
978
|
+
.canvas-wrapper[data-theme="dark"] .context-menu,
|
|
979
|
+
.canvas-wrapper[data-theme="dark"] .config-panel,
|
|
980
|
+
.canvas-wrapper[data-theme="carbon-dark"] .canvas-toolbar,
|
|
981
|
+
.canvas-wrapper[data-theme="carbon-dark"] .zoom-controls,
|
|
982
|
+
.canvas-wrapper[data-theme="carbon-dark"] .context-menu,
|
|
983
|
+
.canvas-wrapper[data-theme="carbon-dark"] .config-panel,
|
|
984
|
+
.canvas-wrapper[data-theme="default-dark"] .canvas-toolbar,
|
|
985
|
+
.canvas-wrapper[data-theme="default-dark"] .zoom-controls,
|
|
986
|
+
.canvas-wrapper[data-theme="default-dark"] .context-menu,
|
|
987
|
+
.canvas-wrapper[data-theme="default-dark"] .config-panel {
|
|
988
|
+
background: var(--nuraly-color-layer-01, #262626);
|
|
989
|
+
border-color: var(--nuraly-color-border-subtle, #393939);
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
/* Carbon theme sharp corners */
|
|
993
|
+
.canvas-wrapper[data-theme="carbon-light"],
|
|
994
|
+
.canvas-wrapper[data-theme="carbon-dark"],
|
|
995
|
+
.canvas-wrapper[data-theme="carbon"] {
|
|
996
|
+
.canvas-toolbar,
|
|
997
|
+
.zoom-controls,
|
|
998
|
+
.context-menu,
|
|
999
|
+
.config-panel {
|
|
1000
|
+
border-radius: 0;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.toolbar-btn,
|
|
1004
|
+
.config-panel-close {
|
|
1005
|
+
border-radius: 0;
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
`;
|
|
1010
|
+
export const styles = [whiteboardCanvasStyles, chatbotPanelStyles];
|
|
1011
|
+
//# sourceMappingURL=whiteboard-canvas.style.js.map
|