@univerjs-pro/docs-chart-ui 1.0.0-alpha.3

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.
Files changed (97) hide show
  1. package/README.md +46 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/cjs/locale/ca-ES.js +1 -0
  4. package/lib/cjs/locale/en-US.js +1 -0
  5. package/lib/cjs/locale/es-ES.js +1 -0
  6. package/lib/cjs/locale/fa-IR.js +1 -0
  7. package/lib/cjs/locale/fr-FR.js +1 -0
  8. package/lib/cjs/locale/ja-JP.js +1 -0
  9. package/lib/cjs/locale/ko-KR.js +1 -0
  10. package/lib/cjs/locale/ru-RU.js +1 -0
  11. package/lib/cjs/locale/sk-SK.js +1 -0
  12. package/lib/cjs/locale/vi-VN.js +1 -0
  13. package/lib/cjs/locale/zh-CN.js +1 -0
  14. package/lib/cjs/locale/zh-TW.js +1 -0
  15. package/lib/es/index.js +1 -0
  16. package/lib/es/locale/ca-ES.js +1 -0
  17. package/lib/es/locale/en-US.js +1 -0
  18. package/lib/es/locale/es-ES.js +1 -0
  19. package/lib/es/locale/fa-IR.js +1 -0
  20. package/lib/es/locale/fr-FR.js +1 -0
  21. package/lib/es/locale/ja-JP.js +1 -0
  22. package/lib/es/locale/ko-KR.js +1 -0
  23. package/lib/es/locale/ru-RU.js +1 -0
  24. package/lib/es/locale/sk-SK.js +1 -0
  25. package/lib/es/locale/vi-VN.js +1 -0
  26. package/lib/es/locale/zh-CN.js +1 -0
  27. package/lib/es/locale/zh-TW.js +1 -0
  28. package/lib/index.css +261 -0
  29. package/lib/index.js +1 -0
  30. package/lib/locale/ca-ES.js +1 -0
  31. package/lib/locale/en-US.js +1 -0
  32. package/lib/locale/es-ES.js +1 -0
  33. package/lib/locale/fa-IR.js +1 -0
  34. package/lib/locale/fr-FR.js +1 -0
  35. package/lib/locale/ja-JP.js +1 -0
  36. package/lib/locale/ko-KR.js +1 -0
  37. package/lib/locale/ru-RU.js +1 -0
  38. package/lib/locale/sk-SK.js +1 -0
  39. package/lib/locale/vi-VN.js +1 -0
  40. package/lib/locale/zh-CN.js +1 -0
  41. package/lib/locale/zh-TW.js +1 -0
  42. package/lib/types/commands/operations/chart-dialog.operation.d.ts +15 -0
  43. package/lib/types/components/DocChartDataEditor.d.ts +15 -0
  44. package/lib/types/components/DocChartEditPanel.d.ts +20 -0
  45. package/lib/types/components/DocChartEditorDialog.d.ts +9 -0
  46. package/lib/types/components/DocChartInlineTableEditor.d.ts +11 -0
  47. package/lib/types/components/DocChartInsertPanel.d.ts +11 -0
  48. package/lib/types/components/DocChartPreview.d.ts +10 -0
  49. package/lib/types/config/config.d.ts +5 -0
  50. package/lib/types/controllers/components.controller.d.ts +9 -0
  51. package/lib/types/controllers/doc-chart-clipboard.controller.d.ts +20 -0
  52. package/lib/types/controllers/doc-chart-drawing-edit.controller.d.ts +12 -0
  53. package/lib/types/controllers/doc-chart-snapshot-refresh.controller.d.ts +12 -0
  54. package/lib/types/controllers/doc-chart-static-render.controller.d.ts +21 -0
  55. package/lib/types/controllers/ui.controller.d.ts +20 -0
  56. package/lib/types/index.d.ts +35 -0
  57. package/lib/types/locale/ca-ES.d.ts +3 -0
  58. package/lib/types/locale/en-US.d.ts +72 -0
  59. package/lib/types/locale/es-ES.d.ts +3 -0
  60. package/lib/types/locale/fa-IR.d.ts +3 -0
  61. package/lib/types/locale/fr-FR.d.ts +3 -0
  62. package/lib/types/locale/ja-JP.d.ts +3 -0
  63. package/lib/types/locale/ko-KR.d.ts +3 -0
  64. package/lib/types/locale/ru-RU.d.ts +3 -0
  65. package/lib/types/locale/sk-SK.d.ts +3 -0
  66. package/lib/types/locale/types.d.ts +3 -0
  67. package/lib/types/locale/vi-VN.d.ts +3 -0
  68. package/lib/types/locale/zh-CN.d.ts +3 -0
  69. package/lib/types/locale/zh-TW.d.ts +3 -0
  70. package/lib/types/menu/chart.menu.d.ts +12 -0
  71. package/lib/types/menu/schema.d.ts +2 -0
  72. package/lib/types/plugin.d.ts +16 -0
  73. package/lib/types/services/doc-chart-active-render.service.d.ts +41 -0
  74. package/lib/types/services/doc-chart-data-edit.service.d.ts +24 -0
  75. package/lib/types/services/doc-chart-host.d.ts +43 -0
  76. package/lib/types/services/doc-chart-insert-position.d.ts +18 -0
  77. package/lib/types/services/doc-chart-insert.service.d.ts +28 -0
  78. package/lib/types/services/doc-chart-print.service.d.ts +16 -0
  79. package/lib/types/services/doc-chart-render.service.d.ts +33 -0
  80. package/lib/types/services/doc-chart-snapshot-render.service.d.ts +57 -0
  81. package/lib/types/utils/ChartPanelOptions.d.ts +9 -0
  82. package/lib/types/views/active-chart/index.d.ts +11 -0
  83. package/lib/types/views/print-chart/index.d.ts +9 -0
  84. package/lib/umd/index.js +1 -0
  85. package/lib/umd/locale/ca-ES.js +1 -0
  86. package/lib/umd/locale/en-US.js +1 -0
  87. package/lib/umd/locale/es-ES.js +1 -0
  88. package/lib/umd/locale/fa-IR.js +1 -0
  89. package/lib/umd/locale/fr-FR.js +1 -0
  90. package/lib/umd/locale/ja-JP.js +1 -0
  91. package/lib/umd/locale/ko-KR.js +1 -0
  92. package/lib/umd/locale/ru-RU.js +1 -0
  93. package/lib/umd/locale/sk-SK.js +1 -0
  94. package/lib/umd/locale/vi-VN.js +1 -0
  95. package/lib/umd/locale/zh-CN.js +1 -0
  96. package/lib/umd/locale/zh-TW.js +1 -0
  97. package/package.json +94 -0
@@ -0,0 +1 @@
1
+ const _0x3ba9e6=_0x530f;(function(_0x6127e1,_0xc2a927){const _0x12b374=_0x530f,_0x551278=_0x6127e1();while(!![]){try{const _0x414a7b=-parseInt(_0x12b374(0xa0))/0x1*(parseInt(_0x12b374(0x76))/0x2)+parseInt(_0x12b374(0x8b))/0x3+-parseInt(_0x12b374(0x83))/0x4*(-parseInt(_0x12b374(0x9f))/0x5)+-parseInt(_0x12b374(0xa3))/0x6+parseInt(_0x12b374(0x74))/0x7*(-parseInt(_0x12b374(0x82))/0x8)+parseInt(_0x12b374(0x9c))/0x9+-parseInt(_0x12b374(0x93))/0xa;if(_0x414a7b===_0xc2a927)break;else _0x551278['push'](_0x551278['shift']());}catch(_0x1fc360){_0x551278['push'](_0x551278['shift']());}}}(_0x52f4,0xc44c1));const e={'docs-chart-ui':{'insertChart':_0x3ba9e6(0x70),'editChart':_0x3ba9e6(0x84),'chartType':_0x3ba9e6(0x9d),'inlineData':'Встроенные\x20данные','cancel':'Отмена','insert':_0x3ba9e6(0x6b),'save':'Сохранить','apply':_0x3ba9e6(0x97),'close':_0x3ba9e6(0x6f),'duplicate':_0x3ba9e6(0x95),'delete':'Удалить','chartPreview':_0x3ba9e6(0x89),'previewRenderFailed':_0x3ba9e6(0xa1),'setupChart':_0x3ba9e6(0x80),'customizeChart':_0x3ba9e6(0x8a),'data':_0x3ba9e6(0x94),'editData':_0x3ba9e6(0x8e),'rows':_0x3ba9e6(0x85),'columns':_0x3ba9e6(0x6d),'sharedData':'Общие\x20диаграммы','backgroundColor':_0x3ba9e6(0x7e),'chartStyle':'Стиль\x20диаграммы','chartAndAxisTitles':_0x3ba9e6(0x7d),'fill':_0x3ba9e6(0x81),'border':'Граница','title':_0x3ba9e6(0x86),'subtitle':'Подзаголовок','horizontalAxisTitle':_0x3ba9e6(0x92),'verticalAxisTitle':_0x3ba9e6(0x6e),'series':_0x3ba9e6(0x79),'showDataLabels':'Показать\x20метки\x20данных','legend':'Легенда','horizontalAxis':_0x3ba9e6(0x91),'verticalAxis':'Вертикальная\x20ось','visible':_0x3ba9e6(0x98),'showLabels':_0x3ba9e6(0x6c),'reverseAxis':_0x3ba9e6(0x9a),'gridlinesAndTicks':_0x3ba9e6(0x88),'indicatorLine':_0x3ba9e6(0x78),'useAbsoluteValue':_0x3ba9e6(0x8f),'tableDataEmpty':_0x3ba9e6(0x9e),'insertChartFailed':_0x3ba9e6(0x7a),'updateChartFailed':_0x3ba9e6(0x72),'chartNotFound':_0x3ba9e6(0x99),'chartTypes':{'line':_0x3ba9e6(0x73),'area':_0x3ba9e6(0x96),'areaStacked':_0x3ba9e6(0x7f),'areaPercentStacked':_0x3ba9e6(0x90),'column':'Столбчатая\x20диаграмма','bar':_0x3ba9e6(0x71),'barStacked':_0x3ba9e6(0x8c),'barPercentStacked':'Процентная\x20сложенная\x20гистограмма','pie':'Круговая\x20диаграмма','scatter':_0x3ba9e6(0xa2),'radar':'Радар','combination':_0x3ba9e6(0x87),'wordCloud':_0x3ba9e6(0x7c),'funnel':_0x3ba9e6(0x8d),'bubble':_0x3ba9e6(0x7b),'relation':'Граф\x20отношений','waterfall':_0x3ba9e6(0x9b),'pareto':'Парето','sankey':'Диаграмма\x20Санки','heatmap':_0x3ba9e6(0x77),'boxplot':_0x3ba9e6(0x75)}}};export{e as default};function _0x530f(_0xc98b7,_0x591b04){_0xc98b7=_0xc98b7-0x6b;const _0x52f480=_0x52f4();let _0x530f13=_0x52f480[_0xc98b7];return _0x530f13;}function _0x52f4(){const _0x258234=['Линия\x20индикатора','Серии','Не\x20удалось\x20вставить\x20диаграмму','Пузырьковая\x20диаграмма','Облако\x20слов','Заголовки\x20диаграммы\x20и\x20осей','Фон','Сложенный\x20областной\x20график','Настройка','Заливка','56zQdRXo','4sczRkR','Редактор\x20диаграмм','Строки','Название\x20диаграммы','Комбинированная\x20диаграмма','Линии\x20сетки\x20и\x20метки','Предварительный\x20просмотр','Настроить','3461511nzhzTe','Сложенная\x20гистограмма','Воронка','Изменить\x20данные','Использовать\x20абсолютные\x20значения','Процентный\x20сложенный\x20областной\x20график','Горизонтальная\x20ось','Название\x20горизонтальной\x20оси','2100540aEGWIc','Данные','Дублировать','Областной\x20график','Применить','Видимый','Диаграмма\x20недоступна.','Обратить\x20ось','Водопад','13190175yYqcYI','Тип\x20диаграммы','Данные\x20таблицы\x20пусты','2921465DUJHNV','3986ZtVmFn','Не\x20удалось\x20отобразить\x20предварительный\x20просмотр\x20диаграммы.','Точечная\x20диаграмма','7148790FyUsCq','Вставить','Показать\x20метки','Столбцы','Название\x20вертикальной\x20оси','Закрыть','Вставить\x20диаграмму','Гистограмма','Не\x20удалось\x20обновить\x20диаграмму.','Линейный\x20график','735077SmNJsm','коробочный\x20сюжет','132MPEded','Тепловая\x20карта'];_0x52f4=function(){return _0x258234;};return _0x52f4();}
@@ -0,0 +1 @@
1
+ function _0x1b19(_0x2de369,_0x250362){_0x2de369=_0x2de369-0xca;const _0x2e0227=_0x2e02();let _0x1b1961=_0x2e0227[_0x2de369];return _0x1b1961;}function _0x2e02(){const _0x26a859=['Upraviť\x20údaje','12123SswTfa','Údaje','Štýl\x20grafu','1432xTwkDU','Editor\x20grafu','35186ojJmex','Použiť','Stohovaný\x20pruhový\x20graf','237809KTZBZP','Typ\x20grafu','41BNqVMT','Percentuálne\x20stohovaný\x20plošný\x20graf','Ukážku\x20grafu\x20sa\x20nepodarilo\x20vykresliť.','Percentuálne\x20stohovaný\x20pruhový\x20graf','Výplň','Vložiť','3443013xTxhET','Zobraziť\x20popisky','Graf\x20nie\x20je\x20dostupný.','Kombinovaný\x20graf','265ArFzay','Pruhový\x20graf','Plošný\x20graf','Duplikovať','Odstrániť','380OYLHvv','Vloženie\x20grafu\x20zlyhalo','Stĺpce','Graf\x20vzťahov','Bublinový\x20graf','Graf\x20sa\x20nepodarilo\x20aktualizovať.','Použiť\x20absolútne\x20hodnoty','Názvy\x20grafu\x20a\x20osí','Názov\x20grafu','Zrušiť','Ohraničenie','Prispôsobiť','Náhľad','Uložiť','Sankeyho\x20graf','Paretov\x20graf','Zdieľané\x20grafy','Zvislá\x20os','Indikačná\x20čiara','Podnadpis','Čiarový\x20graf','Zobraziť\x20popisky\x20údajov','Názov\x20vodorovnej\x20osi','1170080cxgWxH','Vložiť\x20graf','2346978NNVKLm','Séria','28998ZAdGOE','Bodový\x20graf','Údaje\x20tabuľky\x20sú\x20prázdne','Koláčový\x20graf','Vodorovná\x20os'];_0x2e02=function(){return _0x26a859;};return _0x2e02();}const _0x456364=_0x1b19;(function(_0x50a47a,_0x12d6fb){const _0x1f03f2=_0x1b19,_0x1745e3=_0x50a47a();while(!![]){try{const _0x3d04d4=-parseInt(_0x1f03f2(0xd4))/0x1*(-parseInt(_0x1f03f2(0xcf))/0x2)+parseInt(_0x1f03f2(0xfc))/0x3+-parseInt(_0x1f03f2(0xfa))/0x4+-parseInt(_0x1f03f2(0xde))/0x5*(-parseInt(_0x1f03f2(0xfe))/0x6)+-parseInt(_0x1f03f2(0xda))/0x7+parseInt(_0x1f03f2(0xcd))/0x8*(parseInt(_0x1f03f2(0xca))/0x9)+-parseInt(_0x1f03f2(0xe3))/0xa*(parseInt(_0x1f03f2(0xd2))/0xb);if(_0x3d04d4===_0x12d6fb)break;else _0x1745e3['push'](_0x1745e3['shift']());}catch(_0x3753de){_0x1745e3['push'](_0x1745e3['shift']());}}}(_0x2e02,0x606f8));const e={'docs-chart-ui':{'insertChart':_0x456364(0xfb),'editChart':_0x456364(0xce),'chartType':_0x456364(0xd3),'inlineData':'Vnorené\x20údaje','cancel':_0x456364(0xec),'insert':_0x456364(0xd9),'save':_0x456364(0xf0),'apply':_0x456364(0xd0),'close':'Zavrieť','duplicate':_0x456364(0xe1),'delete':_0x456364(0xe2),'chartPreview':_0x456364(0xef),'previewRenderFailed':_0x456364(0xd6),'setupChart':'Nastavenie','customizeChart':_0x456364(0xee),'data':_0x456364(0xcb),'editData':_0x456364(0x103),'rows':'Riadky','columns':_0x456364(0xe5),'sharedData':_0x456364(0xf3),'backgroundColor':'Pozadie','chartStyle':_0x456364(0xcc),'chartAndAxisTitles':_0x456364(0xea),'fill':_0x456364(0xd8),'border':_0x456364(0xed),'title':_0x456364(0xeb),'subtitle':_0x456364(0xf6),'horizontalAxisTitle':_0x456364(0xf9),'verticalAxisTitle':'Názov\x20zvislej\x20osi','series':_0x456364(0xfd),'showDataLabels':_0x456364(0xf8),'legend':'Legenda','horizontalAxis':_0x456364(0x102),'verticalAxis':_0x456364(0xf4),'visible':'Viditeľné','showLabels':_0x456364(0xdb),'reverseAxis':'Obrátiť\x20os','gridlinesAndTicks':'Mriežka\x20a\x20značky','indicatorLine':_0x456364(0xf5),'useAbsoluteValue':_0x456364(0xe9),'tableDataEmpty':_0x456364(0x100),'insertChartFailed':_0x456364(0xe4),'updateChartFailed':_0x456364(0xe8),'chartNotFound':_0x456364(0xdc),'chartTypes':{'line':_0x456364(0xf7),'area':_0x456364(0xe0),'areaStacked':'Stohovaný\x20plošný\x20graf','areaPercentStacked':_0x456364(0xd5),'column':'Stĺpcový\x20graf','bar':_0x456364(0xdf),'barStacked':_0x456364(0xd1),'barPercentStacked':_0x456364(0xd7),'pie':_0x456364(0x101),'scatter':_0x456364(0xff),'radar':'Radarový\x20graf','combination':_0x456364(0xdd),'wordCloud':'Graf\x20oblaku\x20slov','funnel':'Lievikový\x20graf','bubble':_0x456364(0xe7),'relation':_0x456364(0xe6),'waterfall':'Vodopádový\x20graf','pareto':_0x456364(0xf2),'sankey':_0x456364(0xf1),'heatmap':'Tepelná\x20mapa','boxplot':'Krabicový\x20graf'}}};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x386bf9=_0x1f4d;function _0x1da8(){const _0x2abfe6=['Biểu\x20đồ\x20thanh\x20chồng','345001SJbwLp','Chú\x20giải','Nền','2AgHkEG','Kiểu\x20biểu\x20đồ','Dữ\x20liệu\x20nội\x20tuyến','Biểu\x20đồ\x20diện\x20tích\x20chồng\x20phần\x20trăm','Biểu\x20đồ\x20đường','Hiển\x20thị\x20nhãn\x20dữ\x20liệu','Dữ\x20liệu','Biểu\x20đồ\x20tròn','3277308fydSzM','Biểu\x20đồ\x20thanh\x20chồng\x20phần\x20trăm','1705WKLgZX','chèn','Loại\x20biểu\x20đồ','Biểu\x20đồ\x20diện\x20tích\x20chồng','Biểu\x20đồ\x20radar','2276582WQlwcO','Áp\x20dụng','Biểu\x20đồ\x20hộp','Trục\x20ngang','Trục\x20đứng','Xem\x20trước','872wEJWnU','Biểu\x20đồ\x20word\x20cloud','12mlLoIt','Biểu\x20đồ\x20không\x20khả\x20dụng.','Biểu\x20đồ\x20được\x20chia\x20sẻ','Biểu\x20đồ\x20kết\x20hợp','Tùy\x20chỉnh','4750711QutqPG','Cột','Biểu\x20đồ\x20quan\x20hệ','10908590vCLXCz','Biên\x20tập\x20biểu\x20đồ','Biểu\x20đồ\x20bong\x20bóng','Tiêu\x20đề\x20biểu\x20đồ','Đường\x20chỉ\x20số','Tiêu\x20đề\x20phụ','Biểu\x20đồ\x20thanh','Lưu','Đóng','Biểu\x20đồ\x20thác\x20nước','526584PBuzrM','81NyZNpJ','Hàng','Tiêu\x20đề\x20trục\x20dọc','Loạt','Biểu\x20đồ\x20Pareto','Nhân\x20bản','Chỉnh\x20sửa\x20dữ\x20liệu','Viền','Biểu\x20đồ\x20Sankey','Biểu\x20đồ\x20phân\x20tán','Hủy','Biểu\x20đồ\x20phễu','Biểu\x20đồ\x20cột','Thiết\x20lập','Biểu\x20đồ\x20nhiệt','Hiển\x20thị\x20nhãn'];_0x1da8=function(){return _0x2abfe6;};return _0x1da8();}(function(_0x257e07,_0x2a41dd){const _0x1bce83=_0x1f4d,_0x189bc3=_0x257e07();while(!![]){try{const _0xae25=-parseInt(_0x1bce83(0xbe))/0x1*(parseInt(_0x1bce83(0xc1))/0x2)+parseInt(_0x1bce83(0xc9))/0x3+-parseInt(_0x1bce83(0xd6))/0x4*(-parseInt(_0x1bce83(0xcb))/0x5)+parseInt(_0x1bce83(0xd8))/0x6*(parseInt(_0x1bce83(0xdd))/0x7)+parseInt(_0x1bce83(0xea))/0x8*(-parseInt(_0x1bce83(0xeb))/0x9)+-parseInt(_0x1bce83(0xe0))/0xa+parseInt(_0x1bce83(0xd0))/0xb;if(_0xae25===_0x2a41dd)break;else _0x189bc3['push'](_0x189bc3['shift']());}catch(_0x5709e9){_0x189bc3['push'](_0x189bc3['shift']());}}}(_0x1da8,0xab95f));function _0x1f4d(_0x3a81c2,_0x53619e){_0x3a81c2=_0x3a81c2-0xb6;const _0x1da894=_0x1da8();let _0x1f4df2=_0x1da894[_0x3a81c2];return _0x1f4df2;}const e={'docs-chart-ui':{'insertChart':'Chèn\x20biểu\x20đồ','editChart':_0x386bf9(0xe1),'chartType':_0x386bf9(0xcd),'inlineData':_0x386bf9(0xc3),'cancel':_0x386bf9(0xb7),'insert':_0x386bf9(0xcc),'save':_0x386bf9(0xe7),'apply':_0x386bf9(0xd1),'close':_0x386bf9(0xe8),'duplicate':_0x386bf9(0xf0),'delete':'Xóa','chartPreview':_0x386bf9(0xd5),'previewRenderFailed':'Không\x20thể\x20hiển\x20thị\x20bản\x20xem\x20trước\x20biểu\x20đồ.','setupChart':_0x386bf9(0xba),'customizeChart':_0x386bf9(0xdc),'data':_0x386bf9(0xc7),'editData':_0x386bf9(0xf1),'rows':_0x386bf9(0xec),'columns':_0x386bf9(0xde),'sharedData':_0x386bf9(0xda),'backgroundColor':_0x386bf9(0xc0),'chartStyle':_0x386bf9(0xc2),'chartAndAxisTitles':'Tiêu\x20đề\x20biểu\x20đồ\x20và\x20trục','fill':'Đổ\x20màu','border':_0x386bf9(0xf2),'title':_0x386bf9(0xe3),'subtitle':_0x386bf9(0xe5),'horizontalAxisTitle':'Tiêu\x20đề\x20trục\x20ngang','verticalAxisTitle':_0x386bf9(0xed),'series':_0x386bf9(0xee),'showDataLabels':_0x386bf9(0xc6),'legend':_0x386bf9(0xbf),'horizontalAxis':_0x386bf9(0xd3),'verticalAxis':_0x386bf9(0xd4),'visible':'Hiển\x20thị','showLabels':_0x386bf9(0xbc),'reverseAxis':'Đảo\x20ngược\x20trục','gridlinesAndTicks':'Đường\x20lưới\x20và\x20dấu','indicatorLine':_0x386bf9(0xe4),'useAbsoluteValue':'Sử\x20dụng\x20giá\x20trị\x20tuyệt\x20đối','tableDataEmpty':'Dữ\x20liệu\x20bảng\x20trống','insertChartFailed':'Chèn\x20biểu\x20đồ\x20thất\x20bại','updateChartFailed':'Không\x20thể\x20cập\x20nhật\x20biểu\x20đồ.','chartNotFound':_0x386bf9(0xd9),'chartTypes':{'line':_0x386bf9(0xc5),'area':'Biểu\x20đồ\x20diện\x20tích','areaStacked':_0x386bf9(0xce),'areaPercentStacked':_0x386bf9(0xc4),'column':_0x386bf9(0xb9),'bar':_0x386bf9(0xe6),'barStacked':_0x386bf9(0xbd),'barPercentStacked':_0x386bf9(0xca),'pie':_0x386bf9(0xc8),'scatter':_0x386bf9(0xb6),'radar':_0x386bf9(0xcf),'combination':_0x386bf9(0xdb),'wordCloud':_0x386bf9(0xd7),'funnel':_0x386bf9(0xb8),'bubble':_0x386bf9(0xe2),'relation':_0x386bf9(0xdf),'waterfall':_0x386bf9(0xe9),'pareto':_0x386bf9(0xef),'sankey':_0x386bf9(0xf3),'heatmap':_0x386bf9(0xbb),'boxplot':_0x386bf9(0xd2)}}};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x4ebcb3=_0x5bda;(function(_0x4f4a70,_0x2c8236){const _0x367583=_0x5bda,_0x4af1cb=_0x4f4a70();while(!![]){try{const _0x4a95c4=parseInt(_0x367583(0x155))/0x1*(parseInt(_0x367583(0x13a))/0x2)+parseInt(_0x367583(0x162))/0x3*(-parseInt(_0x367583(0x14f))/0x4)+-parseInt(_0x367583(0x144))/0x5*(parseInt(_0x367583(0x141))/0x6)+-parseInt(_0x367583(0x157))/0x7*(parseInt(_0x367583(0x156))/0x8)+-parseInt(_0x367583(0x15c))/0x9*(-parseInt(_0x367583(0x143))/0xa)+-parseInt(_0x367583(0x160))/0xb+-parseInt(_0x367583(0x15e))/0xc;if(_0x4a95c4===_0x2c8236)break;else _0x4af1cb['push'](_0x4af1cb['shift']());}catch(_0x186ec2){_0x4af1cb['push'](_0x4af1cb['shift']());}}}(_0x4fc7,0xb64f6));function _0x5bda(_0x2d1744,_0x13f959){_0x2d1744=_0x2d1744-0x138;const _0x4fc7a3=_0x4fc7();let _0x5bdaed=_0x4fc7a3[_0x2d1744];return _0x5bdaed;}const e={'docs-chart-ui':{'insertChart':'插入图表','editChart':'图表','chartType':_0x4ebcb3(0x15d),'inlineData':_0x4ebcb3(0x139),'cancel':'取消','insert':'插入','save':'保存','apply':'应用','close':'关闭','duplicate':'复制数据源','delete':'删除','chartPreview':'预览','previewRenderFailed':_0x4ebcb3(0x15b),'setupChart':_0x4ebcb3(0x163),'customizeChart':_0x4ebcb3(0x145),'data':'数据','editData':_0x4ebcb3(0x14e),'rows':'行数','columns':'列数','sharedData':_0x4ebcb3(0x153),'backgroundColor':'背景','chartStyle':_0x4ebcb3(0x151),'chartAndAxisTitles':_0x4ebcb3(0x165),'fill':'填充','border':'边框','title':_0x4ebcb3(0x154),'subtitle':_0x4ebcb3(0x158),'horizontalAxisTitle':_0x4ebcb3(0x13b),'verticalAxisTitle':_0x4ebcb3(0x147),'series':'系列','showDataLabels':_0x4ebcb3(0x14b),'legend':'图例','horizontalAxis':'横轴','verticalAxis':'纵轴','visible':'显示','showLabels':_0x4ebcb3(0x149),'reverseAxis':_0x4ebcb3(0x15a),'gridlinesAndTicks':_0x4ebcb3(0x15f),'indicatorLine':_0x4ebcb3(0x142),'useAbsoluteValue':_0x4ebcb3(0x152),'tableDataEmpty':'表格数据为空。','insertChartFailed':'无法插入图表。','updateChartFailed':_0x4ebcb3(0x13e),'chartNotFound':_0x4ebcb3(0x14d),'chartTypes':{'line':_0x4ebcb3(0x164),'area':_0x4ebcb3(0x13f),'areaStacked':'堆叠面积图','areaPercentStacked':_0x4ebcb3(0x14a),'column':_0x4ebcb3(0x150),'bar':'条形图','barStacked':_0x4ebcb3(0x13d),'barPercentStacked':_0x4ebcb3(0x161),'pie':'饼图','scatter':_0x4ebcb3(0x146),'radar':_0x4ebcb3(0x13c),'combination':_0x4ebcb3(0x166),'wordCloud':'词云图','funnel':_0x4ebcb3(0x138),'bubble':'气泡图','relation':_0x4ebcb3(0x140),'waterfall':_0x4ebcb3(0x14c),'pareto':_0x4ebcb3(0x159),'sankey':_0x4ebcb3(0x148),'heatmap':'热力图','boxplot':'箱线图'}}};export{e as default};function _0x4fc7(){const _0x289764=['散点图','垂直轴标题','桑基图','显示标签','百分比堆叠面积图','显示数据标签','瀑布图','图表不可用。','修改数据','4CNTdYu','柱状图','图表样式','使用绝对值','共享图表','图表标题','134277xjsNPg','4714288RzwkfT','7tJoeCe','副标题','排列图','反转坐标轴','无法呈现图表预览。','9hanVbM','图表类型','1584744wjvjNG','网格线和刻度线','1396879XfBnbW','百分比堆叠条形图','1113093yJsqCm','类型与数据','折线图','图表和轴标题','组合图','漏斗图','内联数据','20aqlYTr','水平轴标题','雷达图','堆叠条形图','无法更新图表。','面积图','关系图','6DzgRXH','指示线','9757220sZuirZ','1761910pfeDIh','自定义样式'];_0x4fc7=function(){return _0x289764;};return _0x4fc7();}
@@ -0,0 +1 @@
1
+ function _0x424d(){const _0x42e602=['水平軸','面積圖','1230Ovvuqc','副標題','百分比堆疊條形圖','百分比堆疊面積圖','9979ArkvNK','指示線','垂直軸標題','375220OMabYt','318894jPDQjX','氣泡圖','編輯資料','內嵌資料','共用圖表','設置圖表','插入圖表','插入圖表失敗','瀑布圖','漏斗圖','詞雲圖','96numIHh','顯示數據標籤','17894124dVmcXs','熱力圖','7845dwZOSg','圖表無法使用。','圖表樣式','表格資料為空','4247467gFguMW','網格線和刻度線','11xaGHxI','22311vqVeut','桑基圖','無法更新圖表。','堆疊面積圖','關係圖','條形圖','無法呈現圖表預覽。','20ZvZiCw','488DxiWnW','組合圖','柱狀圖','反轉座標軸','排列圖','圖表標題','折線圖'];_0x424d=function(){return _0x42e602;};return _0x424d();}function _0x2f1a(_0x3e8fb1,_0x51d36b){_0x3e8fb1=_0x3e8fb1-0x1eb;const _0x424d04=_0x424d();let _0x2f1a7c=_0x424d04[_0x3e8fb1];return _0x2f1a7c;}const _0xa19745=_0x2f1a;(function(_0xfa1611,_0x2466f9){const _0x3e9d23=_0x2f1a,_0x5ecae2=_0xfa1611();while(!![]){try{const _0x1a4752=-parseInt(_0x3e9d23(0x201))/0x1*(-parseInt(_0x3e9d23(0x210))/0x2)+parseInt(_0x3e9d23(0x205))/0x3*(-parseInt(_0x3e9d23(0x1f3))/0x4)+parseInt(_0x3e9d23(0x214))/0x5*(-parseInt(_0x3e9d23(0x1fd))/0x6)+-parseInt(_0x3e9d23(0x218))/0x7+parseInt(_0x3e9d23(0x1f4))/0x8*(-parseInt(_0x3e9d23(0x1ec))/0x9)+-parseInt(_0x3e9d23(0x204))/0xa+parseInt(_0x3e9d23(0x1eb))/0xb*(parseInt(_0x3e9d23(0x212))/0xc);if(_0x1a4752===_0x2466f9)break;else _0x5ecae2['push'](_0x5ecae2['shift']());}catch(_0x5c8317){_0x5ecae2['push'](_0x5ecae2['shift']());}}}(_0x424d,0x4e7e8));const e={'docs-chart-ui':{'insertChart':_0xa19745(0x20b),'editChart':'編輯圖表','chartType':'圖表類型','inlineData':_0xa19745(0x208),'cancel':'取消','insert':'插入','save':'儲存','apply':'套用','close':'關閉','duplicate':'複製','delete':'刪除','chartPreview':'預覽','previewRenderFailed':_0xa19745(0x1f2),'setupChart':_0xa19745(0x20a),'customizeChart':'自定義圖表','data':'資料','editData':_0xa19745(0x207),'rows':'列數','columns':'欄數','sharedData':_0xa19745(0x209),'backgroundColor':'背景','chartStyle':_0xa19745(0x216),'chartAndAxisTitles':'圖表和軸標題','fill':'填充','border':'邊框','title':_0xa19745(0x1f9),'subtitle':_0xa19745(0x1fe),'horizontalAxisTitle':'水平軸標題','verticalAxisTitle':_0xa19745(0x203),'series':'系列','showDataLabels':_0xa19745(0x211),'legend':'圖例','horizontalAxis':_0xa19745(0x1fb),'verticalAxis':'垂直軸','visible':'顯示','showLabels':'顯示標籤','reverseAxis':_0xa19745(0x1f7),'gridlinesAndTicks':_0xa19745(0x219),'indicatorLine':_0xa19745(0x202),'useAbsoluteValue':'使用絕對值','tableDataEmpty':_0xa19745(0x217),'insertChartFailed':_0xa19745(0x20c),'updateChartFailed':_0xa19745(0x1ee),'chartNotFound':_0xa19745(0x215),'chartTypes':{'line':_0xa19745(0x1fa),'area':_0xa19745(0x1fc),'areaStacked':_0xa19745(0x1ef),'areaPercentStacked':_0xa19745(0x200),'column':_0xa19745(0x1f6),'bar':_0xa19745(0x1f1),'barStacked':'堆疊條形圖','barPercentStacked':_0xa19745(0x1ff),'pie':'餅圖','scatter':'散點圖','radar':'雷達圖','combination':_0xa19745(0x1f5),'wordCloud':_0xa19745(0x20f),'funnel':_0xa19745(0x20e),'bubble':_0xa19745(0x206),'relation':_0xa19745(0x1f0),'waterfall':_0xa19745(0x20d),'pareto':_0xa19745(0x1f8),'sankey':_0xa19745(0x1ed),'heatmap':_0xa19745(0x213),'boxplot':'箱型圖'}}};export{e as default};
package/lib/index.css ADDED
@@ -0,0 +1,261 @@
1
+ .univer-absolute {
2
+ position: absolute;
3
+ }
4
+
5
+ .univer-relative {
6
+ position: relative;
7
+ }
8
+
9
+ .univer-inset-0 {
10
+ top: 0;
11
+ bottom: 0;
12
+ left: 0;
13
+ right: 0;
14
+ }
15
+
16
+ .univer-bottom-3 {
17
+ bottom: .75rem;
18
+ }
19
+
20
+ .univer-left-3 {
21
+ left: .75rem;
22
+ }
23
+
24
+ .univer-mx-0 {
25
+ margin-left: 0;
26
+ margin-right: 0;
27
+ }
28
+
29
+ .univer-mb-2 {
30
+ margin-bottom: .5rem;
31
+ }
32
+
33
+ .univer-ml-2 {
34
+ margin-left: .5rem;
35
+ }
36
+
37
+ .univer-mt-0 {
38
+ margin-top: 0;
39
+ }
40
+
41
+ .univer-mt-2 {
42
+ margin-top: .5rem;
43
+ }
44
+
45
+ .univer-mt-auto {
46
+ margin-top: auto;
47
+ }
48
+
49
+ .univer-box-border {
50
+ box-sizing: border-box;
51
+ }
52
+
53
+ .univer-flex {
54
+ display: flex;
55
+ }
56
+
57
+ .univer-size-6 {
58
+ width: 1.5rem;
59
+ height: 1.5rem;
60
+ }
61
+
62
+ .univer-h-full {
63
+ height: 100%;
64
+ }
65
+
66
+ .univer-min-h-0 {
67
+ min-height: 0;
68
+ }
69
+
70
+ .univer-min-h-full {
71
+ min-height: 100%;
72
+ }
73
+
74
+ .univer-w-\[--radix-popper-anchor-width\] {
75
+ width: var(--radix-popper-anchor-width);
76
+ }
77
+
78
+ .univer-w-\[388px\] {
79
+ width: 388px;
80
+ }
81
+
82
+ .univer-w-full {
83
+ width: 100%;
84
+ }
85
+
86
+ .\!univer-min-w-0 {
87
+ min-width: 0 !important;
88
+ }
89
+
90
+ .univer-min-w-0 {
91
+ min-width: 0;
92
+ }
93
+
94
+ .univer-flex-1 {
95
+ flex: 1;
96
+ }
97
+
98
+ .univer-shrink-0 {
99
+ flex-shrink: 0;
100
+ }
101
+
102
+ .univer-cursor-pointer {
103
+ cursor: pointer;
104
+ }
105
+
106
+ .univer-flex-col {
107
+ flex-direction: column;
108
+ }
109
+
110
+ .univer-flex-wrap {
111
+ flex-wrap: wrap;
112
+ }
113
+
114
+ .univer-items-center {
115
+ align-items: center;
116
+ }
117
+
118
+ .univer-justify-end {
119
+ justify-content: flex-end;
120
+ }
121
+
122
+ .univer-justify-center {
123
+ justify-content: center;
124
+ }
125
+
126
+ .univer-gap-2 {
127
+ gap: .5rem;
128
+ }
129
+
130
+ .univer-gap-3 {
131
+ gap: .75rem;
132
+ }
133
+
134
+ .univer-gap-4 {
135
+ gap: 1rem;
136
+ }
137
+
138
+ .univer-gap-5 {
139
+ gap: 1.25rem;
140
+ }
141
+
142
+ .univer-overflow-auto {
143
+ overflow: auto;
144
+ }
145
+
146
+ .univer-overflow-hidden {
147
+ overflow: hidden;
148
+ }
149
+
150
+ .univer-overscroll-contain {
151
+ overscroll-behavior: contain;
152
+ }
153
+
154
+ .univer-rounded {
155
+ border-radius: .25rem;
156
+ }
157
+
158
+ .univer-rounded-lg {
159
+ border-radius: .5rem;
160
+ }
161
+
162
+ .univer-rounded-sm {
163
+ border-radius: .125rem;
164
+ }
165
+
166
+ .univer-border {
167
+ border-width: 1px;
168
+ }
169
+
170
+ .univer-border-solid {
171
+ border-style: solid;
172
+ }
173
+
174
+ .univer-border-gray-200 {
175
+ border-color: var(--univer-gray-200);
176
+ }
177
+
178
+ .univer-bg-white {
179
+ background-color: var(--univer-white);
180
+ }
181
+
182
+ .univer-p-4 {
183
+ padding: 1rem;
184
+ }
185
+
186
+ .univer-px-1 {
187
+ padding-left: .25rem;
188
+ padding-right: .25rem;
189
+ }
190
+
191
+ .univer-px-2 {
192
+ padding-left: .5rem;
193
+ padding-right: .5rem;
194
+ }
195
+
196
+ .univer-py-1 {
197
+ padding-top: .25rem;
198
+ padding-bottom: .25rem;
199
+ }
200
+
201
+ .univer-pb-3 {
202
+ padding-bottom: .75rem;
203
+ }
204
+
205
+ .univer-pr-1 {
206
+ padding-right: .25rem;
207
+ }
208
+
209
+ .univer-text-sm {
210
+ font-size: .875rem;
211
+ line-height: 1.25rem;
212
+ }
213
+
214
+ .univer-text-xs {
215
+ font-size: .75rem;
216
+ line-height: 1rem;
217
+ }
218
+
219
+ .univer-leading-4 {
220
+ line-height: 1rem;
221
+ }
222
+
223
+ .univer-text-gray-500 {
224
+ color: var(--univer-gray-500);
225
+ }
226
+
227
+ .univer-text-gray-900 {
228
+ color: var(--univer-gray-900);
229
+ }
230
+
231
+ .univer-text-primary-600 {
232
+ color: var(--univer-primary-600);
233
+ }
234
+
235
+ .univer-text-red-600 {
236
+ color: var(--univer-red-600);
237
+ }
238
+
239
+ .hover\:univer-bg-gray-100:hover {
240
+ background-color: var(--univer-gray-100);
241
+ }
242
+
243
+ .dark\:\!univer-border-gray-700:where(.univer-dark, .univer-dark *) {
244
+ border-color: var(--univer-gray-700) !important;
245
+ }
246
+
247
+ .dark\:\!univer-bg-gray-900:where(.univer-dark, .univer-dark *) {
248
+ background-color: var(--univer-gray-900) !important;
249
+ }
250
+
251
+ .dark\:\!univer-text-gray-400:where(.univer-dark, .univer-dark *) {
252
+ color: var(--univer-gray-400) !important;
253
+ }
254
+
255
+ .dark\:\!univer-text-white:where(.univer-dark, .univer-dark *) {
256
+ color: var(--univer-white) !important;
257
+ }
258
+
259
+ .dark\:hover\:\!univer-bg-gray-700:hover:where(.univer-dark, .univer-dark *) {
260
+ background-color: var(--univer-gray-700) !important;
261
+ }