d2coreui 23.0.14 → 23.0.15
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/components/clipboard/clipboardUtils.ts +53 -0
- package/components/codemirror/SyntaxHighlighter.tsx +58 -0
- package/components/collapse/expandable.tsx +48 -0
- package/components/color/colorPicker.tsx +121 -0
- package/components/color/colorSwatch.d.ts +18 -13
- package/components/color/colorSwatch.jsx +87 -0
- package/components/color/colorUtils.ts +60 -0
- package/components/date/dateRangeInput.tsx +468 -0
- package/components/date/dateRangeInputAdvancedPanel.tsx +238 -0
- package/components/date/dateRangeInputConfirm.tsx +200 -0
- package/components/date/dateTimeInput.tsx +633 -0
- package/components/date/durationInput.tsx +375 -0
- package/components/form/NiceFormItem.tsx +32 -0
- package/components/grid/cell/beanAccessor.ts +17 -0
- package/components/grid/cell/cellEditorUtils.ts +12 -0
- package/components/grid/cell/customEnumCellEditor.tsx +130 -0
- package/components/grid/cell/dataGridCellEditorComponent.tsx +61 -0
- package/components/grid/cell/dateCellEditor.tsx +83 -0
- package/components/grid/cell/durationCellEditor.tsx +105 -0
- package/components/grid/cell/hexaOctetStringCellEditor.tsx +101 -0
- package/components/grid/cell/hexaValueCellEditor.tsx +92 -0
- package/components/grid/cell/numberCellEditor.tsx +115 -0
- package/components/grid/cell/rangeSelector.d.ts +9 -78
- package/components/grid/cell/rangeSelector.js +674 -527
- package/components/grid/cell/simpleStatusTextCellEditor.tsx +168 -0
- package/components/grid/cell/statusTextCellEditor.tsx +198 -0
- package/components/grid/cell/tableDefaultRowStyleRules.ts +51 -0
- package/components/grid/cell/textCellEditor.tsx +94 -0
- package/components/grid/cell/withAgGridHooks.tsx +15 -0
- package/components/grid/columnUtils.ts +29 -0
- package/components/grid/config/columnTransfer.tsx +258 -0
- package/components/grid/config/dataGridEditor.tsx +328 -0
- package/components/grid/config/rowHeightCalculator.tsx +29 -0
- package/components/grid/config/rowStylePicker.tsx +196 -0
- package/components/grid/dataGrid.tsx +2183 -0
- package/components/grid/detail/detailHeaderPanel.tsx +59 -0
- package/components/grid/export/contextMenu.tsx +154 -0
- package/components/grid/export/progressPopup.tsx +106 -0
- package/components/grid/export/worker/clipboardExport.ts +10 -0
- package/components/grid/export/worker/csvExport.ts +10 -0
- package/components/grid/export/worker/pdfExport.ts +98 -0
- package/components/grid/export/worker/txtExport.ts +21 -0
- package/components/grid/extendedDataGrid.tsx +974 -0
- package/components/grid/filter/customColumnFilter.tsx +14 -0
- package/components/grid/filter/dataGridColumnFilter.tsx +70 -0
- package/components/grid/filter/dateColumnFilter.tsx +34 -0
- package/components/grid/filter/textColumnFilter.tsx +37 -0
- package/components/grid/filter/wildcardQuickFilterEngine.ts +50 -0
- package/components/grid/header/simpleHeader.tsx +270 -0
- package/components/grid/panel/dataGridPagination.tsx +123 -0
- package/components/grid/panel/loadingOverlay.tsx +14 -0
- package/components/grid/panel/noRecordsOverlay.tsx +16 -0
- package/components/grid/panel/tablePagination.tsx +77 -0
- package/components/icons/dropdownArrow.tsx +67 -0
- package/components/icons/undoIcon.tsx +16 -0
- package/components/input/autoCompleteInput.tsx +174 -0
- package/components/input/draftUtils.tsx +62 -0
- package/components/input/draftail.d.ts +186 -1
- package/components/input/draftail.js +1 -2
- package/components/input/hexaFormattedInput.tsx +64 -0
- package/components/input/mask/helpers.ts +154 -0
- package/components/input/mask/inputMaskCore.ts +452 -0
- package/components/input/mask/pattern.ts +122 -0
- package/components/input/maskedInput.tsx +275 -0
- package/components/input/passwordInput.tsx +62 -0
- package/components/input/simpleAutoComplete.tsx +60 -0
- package/components/input/textarea/extractSpansOfClasses.tsx +125 -0
- package/components/input/textarea/getRanges.ts +82 -0
- package/components/input/textarea/getType.ts +23 -0
- package/components/input/textarea/highlighedContents.tsx +20 -0
- package/components/input/textarea/highlightedTextarea.css +61 -0
- package/components/input/textarea/mentionsWithHighlighting.tsx +95 -0
- package/components/keyboard/keyboardUtils.ts +42 -0
- package/components/modal/draggableModalProvider.tsx +37 -0
- package/components/modal/impl/clamp.ts +4 -0
- package/components/modal/impl/draggableModal.tsx +36 -0
- package/components/modal/impl/draggableModalContext.ts +14 -0
- package/components/modal/impl/draggableModalInner.tsx +114 -0
- package/components/modal/impl/draggableModalReducer.ts +285 -0
- package/components/modal/impl/getWindowSize.ts +6 -0
- package/components/modal/impl/index.ts +5 -0
- package/components/modal/impl/resizeHandle.tsx +12 -0
- package/components/modal/impl/useDrag.ts +57 -0
- package/components/modal/impl/usePrevious.ts +11 -0
- package/components/modal/impl/useResize.ts +79 -0
- package/components/modal/modalDialog.tsx +172 -0
- package/components/picker/enumValuePicker.tsx +48 -0
- package/components/platformSpecific.ts +39 -0
- package/components/scrollTo/dom-scroll-into-view.d.ts +1 -0
- package/components/scrollTo/onlyText.ts +36 -0
- package/components/scrollTo/scrollTo.tsx +324 -0
- package/components/style/withCss.tsx +14 -0
- package/components/style/withInputNumberCss.tsx +18 -0
- package/components/svg.d.ts +1 -0
- package/components/table/dragSortingTable.tsx +123 -0
- package/components/text/impl/innerSize.ts +15 -0
- package/components/text/impl/series.ts +37 -0
- package/components/text/impl/shallowEqual.ts +19 -0
- package/components/text/impl/uniqueId.ts +5 -0
- package/components/text/impl/whilst.ts +25 -0
- package/components/text/textFit.tsx +229 -0
- package/i18n/components.cs.json +101 -101
- package/i18n/components.sk.json +101 -101
- package/i18n/components.uk.json +101 -101
- package/i18n/componentsLocaleHolder.js +24 -29
- package/i18n/componentsLocaleLoader.d.ts +9 -0
- package/lib/esm/components/color/colorSwatch.d.ts +13 -0
- package/lib/esm/components/grid/cell/rangeSelector.d.ts +78 -0
- package/lib/esm/components/grid/cell/rangeSelector.js +527 -0
- package/{components → lib/esm/components}/grid/export/contextMenu.js +4 -4
- package/lib/esm/components/input/draftail.d.ts +1 -0
- package/lib/esm/components/input/draftail.js +2 -0
- package/lib/esm/i18n/components.cs.json +101 -0
- package/lib/esm/i18n/components.sk.json +101 -0
- package/lib/esm/i18n/components.uk.json +101 -0
- package/lib/esm/i18n/componentsLocaleHolder.js +29 -0
- package/lib/esm/package.json +70 -0
- package/lib/esm/tsconfig.build.json +24 -0
- package/lib/esm/tsconfig.json +11 -0
- package/package.json +3 -3
- package/tsconfig.build.json +24 -24
- package/tsconfig.json +11 -11
- /package/{components → lib/esm/components}/clipboard/clipboardUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/clipboard/clipboardUtils.js +0 -0
- /package/{components → lib/esm/components}/clipboard/clipboardUtils.js.map +0 -0
- /package/{components → lib/esm/components}/codemirror/SyntaxHighlighter.d.ts +0 -0
- /package/{components → lib/esm/components}/codemirror/SyntaxHighlighter.js +0 -0
- /package/{components → lib/esm/components}/codemirror/SyntaxHighlighter.js.map +0 -0
- /package/{components → lib/esm/components}/collapse/expandable.d.ts +0 -0
- /package/{components → lib/esm/components}/collapse/expandable.js +0 -0
- /package/{components → lib/esm/components}/collapse/expandable.js.map +0 -0
- /package/{components → lib/esm/components}/color/colorPicker.d.ts +0 -0
- /package/{components → lib/esm/components}/color/colorPicker.js +0 -0
- /package/{components → lib/esm/components}/color/colorPicker.js.map +0 -0
- /package/{components → lib/esm/components}/color/colorSwatch.js +0 -0
- /package/{components → lib/esm/components}/color/colorSwatch.js.map +0 -0
- /package/{components → lib/esm/components}/color/colorUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/color/colorUtils.js +0 -0
- /package/{components → lib/esm/components}/color/colorUtils.js.map +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInput.d.ts +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInput.js +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInput.js.map +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputAdvancedPanel.d.ts +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputAdvancedPanel.js +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputAdvancedPanel.js.map +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputConfirm.d.ts +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputConfirm.js +0 -0
- /package/{components → lib/esm/components}/date/dateRangeInputConfirm.js.map +0 -0
- /package/{components → lib/esm/components}/date/dateTimeInput.d.ts +0 -0
- /package/{components → lib/esm/components}/date/dateTimeInput.js +0 -0
- /package/{components → lib/esm/components}/date/dateTimeInput.js.map +0 -0
- /package/{components → lib/esm/components}/date/durationInput.d.ts +0 -0
- /package/{components → lib/esm/components}/date/durationInput.js +0 -0
- /package/{components → lib/esm/components}/date/durationInput.js.map +0 -0
- /package/{components → lib/esm/components}/form/NiceFormItem.d.ts +0 -0
- /package/{components → lib/esm/components}/form/NiceFormItem.js +0 -0
- /package/{components → lib/esm/components}/form/NiceFormItem.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/beanAccessor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/beanAccessor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/beanAccessor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/cellEditorUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/cellEditorUtils.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/cellEditorUtils.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/customEnumCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/customEnumCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/customEnumCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/dataGridCellEditorComponent.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/dataGridCellEditorComponent.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/dataGridCellEditorComponent.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/dateCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/dateCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/dateCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/durationCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/durationCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/durationCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaOctetStringCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaOctetStringCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaOctetStringCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaValueCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaValueCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/hexaValueCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/numberCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/numberCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/numberCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/rangeSelector.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/simpleStatusTextCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/simpleStatusTextCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/simpleStatusTextCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/statusTextCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/statusTextCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/statusTextCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/tableDefaultRowStyleRules.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/tableDefaultRowStyleRules.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/tableDefaultRowStyleRules.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/textCellEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/textCellEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/textCellEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/cell/withAgGridHooks.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/cell/withAgGridHooks.js +0 -0
- /package/{components → lib/esm/components}/grid/cell/withAgGridHooks.js.map +0 -0
- /package/{components → lib/esm/components}/grid/columnUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/columnUtils.js +0 -0
- /package/{components → lib/esm/components}/grid/columnUtils.js.map +0 -0
- /package/{components → lib/esm/components}/grid/config/columnTransfer.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/config/columnTransfer.js +0 -0
- /package/{components → lib/esm/components}/grid/config/columnTransfer.js.map +0 -0
- /package/{components → lib/esm/components}/grid/config/dataGridEditor.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/config/dataGridEditor.js +0 -0
- /package/{components → lib/esm/components}/grid/config/dataGridEditor.js.map +0 -0
- /package/{components → lib/esm/components}/grid/config/rowHeightCalculator.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/config/rowHeightCalculator.js +0 -0
- /package/{components → lib/esm/components}/grid/config/rowHeightCalculator.js.map +0 -0
- /package/{components → lib/esm/components}/grid/config/rowStylePicker.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/config/rowStylePicker.js +0 -0
- /package/{components → lib/esm/components}/grid/config/rowStylePicker.js.map +0 -0
- /package/{components → lib/esm/components}/grid/dataGrid.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/dataGrid.js +0 -0
- /package/{components → lib/esm/components}/grid/dataGrid.js.map +0 -0
- /package/{components → lib/esm/components}/grid/detail/detailHeaderPanel.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/detail/detailHeaderPanel.js +0 -0
- /package/{components → lib/esm/components}/grid/detail/detailHeaderPanel.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/contextMenu.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/contextMenu.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/progressPopup.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/progressPopup.js +0 -0
- /package/{components → lib/esm/components}/grid/export/progressPopup.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/clipboardExport.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/clipboardExport.js +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/clipboardExport.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/csvExport.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/csvExport.js +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/csvExport.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/pdfExport.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/pdfExport.js +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/pdfExport.js.map +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/txtExport.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/txtExport.js +0 -0
- /package/{components → lib/esm/components}/grid/export/worker/txtExport.js.map +0 -0
- /package/{components → lib/esm/components}/grid/extendedDataGrid.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/extendedDataGrid.js +0 -0
- /package/{components → lib/esm/components}/grid/extendedDataGrid.js.map +0 -0
- /package/{components → lib/esm/components}/grid/filter/customColumnFilter.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/filter/customColumnFilter.js +0 -0
- /package/{components → lib/esm/components}/grid/filter/customColumnFilter.js.map +0 -0
- /package/{components → lib/esm/components}/grid/filter/dataGridColumnFilter.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/filter/dataGridColumnFilter.js +0 -0
- /package/{components → lib/esm/components}/grid/filter/dataGridColumnFilter.js.map +0 -0
- /package/{components → lib/esm/components}/grid/filter/dateColumnFilter.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/filter/dateColumnFilter.js +0 -0
- /package/{components → lib/esm/components}/grid/filter/dateColumnFilter.js.map +0 -0
- /package/{components → lib/esm/components}/grid/filter/textColumnFilter.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/filter/textColumnFilter.js +0 -0
- /package/{components → lib/esm/components}/grid/filter/textColumnFilter.js.map +0 -0
- /package/{components → lib/esm/components}/grid/filter/wildcardQuickFilterEngine.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/filter/wildcardQuickFilterEngine.js +0 -0
- /package/{components → lib/esm/components}/grid/filter/wildcardQuickFilterEngine.js.map +0 -0
- /package/{components → lib/esm/components}/grid/header/simpleHeader.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/header/simpleHeader.js +0 -0
- /package/{components → lib/esm/components}/grid/header/simpleHeader.js.map +0 -0
- /package/{components → lib/esm/components}/grid/panel/dataGridPagination.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/panel/dataGridPagination.js +0 -0
- /package/{components → lib/esm/components}/grid/panel/dataGridPagination.js.map +0 -0
- /package/{components → lib/esm/components}/grid/panel/loadingOverlay.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/panel/loadingOverlay.js +0 -0
- /package/{components → lib/esm/components}/grid/panel/loadingOverlay.js.map +0 -0
- /package/{components → lib/esm/components}/grid/panel/noRecordsOverlay.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/panel/noRecordsOverlay.js +0 -0
- /package/{components → lib/esm/components}/grid/panel/noRecordsOverlay.js.map +0 -0
- /package/{components → lib/esm/components}/grid/panel/tablePagination.d.ts +0 -0
- /package/{components → lib/esm/components}/grid/panel/tablePagination.js +0 -0
- /package/{components → lib/esm/components}/grid/panel/tablePagination.js.map +0 -0
- /package/{components → lib/esm/components}/icons/dropdownArrow.d.ts +0 -0
- /package/{components → lib/esm/components}/icons/dropdownArrow.js +0 -0
- /package/{components → lib/esm/components}/icons/dropdownArrow.js.map +0 -0
- /package/{components → lib/esm/components}/icons/undoIcon.d.ts +0 -0
- /package/{components → lib/esm/components}/icons/undoIcon.js +0 -0
- /package/{components → lib/esm/components}/icons/undoIcon.js.map +0 -0
- /package/{components → lib/esm/components}/input/autoCompleteInput.d.ts +0 -0
- /package/{components → lib/esm/components}/input/autoCompleteInput.js +0 -0
- /package/{components → lib/esm/components}/input/autoCompleteInput.js.map +0 -0
- /package/{components → lib/esm/components}/input/draftUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/input/draftUtils.js +0 -0
- /package/{components → lib/esm/components}/input/draftUtils.js.map +0 -0
- /package/{components → lib/esm/components}/input/draftail.js.map +0 -0
- /package/{components → lib/esm/components}/input/hexaFormattedInput.d.ts +0 -0
- /package/{components → lib/esm/components}/input/hexaFormattedInput.js +0 -0
- /package/{components → lib/esm/components}/input/hexaFormattedInput.js.map +0 -0
- /package/{components → lib/esm/components}/input/mask/helpers.d.ts +0 -0
- /package/{components → lib/esm/components}/input/mask/helpers.js +0 -0
- /package/{components → lib/esm/components}/input/mask/helpers.js.map +0 -0
- /package/{components → lib/esm/components}/input/mask/inputMaskCore.d.ts +0 -0
- /package/{components → lib/esm/components}/input/mask/inputMaskCore.js +0 -0
- /package/{components → lib/esm/components}/input/mask/inputMaskCore.js.map +0 -0
- /package/{components → lib/esm/components}/input/mask/pattern.d.ts +0 -0
- /package/{components → lib/esm/components}/input/mask/pattern.js +0 -0
- /package/{components → lib/esm/components}/input/mask/pattern.js.map +0 -0
- /package/{components → lib/esm/components}/input/maskedInput.d.ts +0 -0
- /package/{components → lib/esm/components}/input/maskedInput.js +0 -0
- /package/{components → lib/esm/components}/input/maskedInput.js.map +0 -0
- /package/{components → lib/esm/components}/input/passwordInput.d.ts +0 -0
- /package/{components → lib/esm/components}/input/passwordInput.js +0 -0
- /package/{components → lib/esm/components}/input/passwordInput.js.map +0 -0
- /package/{components → lib/esm/components}/input/simpleAutoComplete.d.ts +0 -0
- /package/{components → lib/esm/components}/input/simpleAutoComplete.js +0 -0
- /package/{components → lib/esm/components}/input/simpleAutoComplete.js.map +0 -0
- /package/{components → lib/esm/components}/input/textarea/extractSpansOfClasses.d.ts +0 -0
- /package/{components → lib/esm/components}/input/textarea/extractSpansOfClasses.js +0 -0
- /package/{components → lib/esm/components}/input/textarea/extractSpansOfClasses.js.map +0 -0
- /package/{components → lib/esm/components}/input/textarea/getRanges.d.ts +0 -0
- /package/{components → lib/esm/components}/input/textarea/getRanges.js +0 -0
- /package/{components → lib/esm/components}/input/textarea/getRanges.js.map +0 -0
- /package/{components → lib/esm/components}/input/textarea/getType.d.ts +0 -0
- /package/{components → lib/esm/components}/input/textarea/getType.js +0 -0
- /package/{components → lib/esm/components}/input/textarea/getType.js.map +0 -0
- /package/{components → lib/esm/components}/input/textarea/highlighedContents.d.ts +0 -0
- /package/{components → lib/esm/components}/input/textarea/highlighedContents.js +0 -0
- /package/{components → lib/esm/components}/input/textarea/highlighedContents.js.map +0 -0
- /package/{components → lib/esm/components}/input/textarea/mentionsWithHighlighting.d.ts +0 -0
- /package/{components → lib/esm/components}/input/textarea/mentionsWithHighlighting.js +0 -0
- /package/{components → lib/esm/components}/input/textarea/mentionsWithHighlighting.js.map +0 -0
- /package/{components → lib/esm/components}/keyboard/keyboardUtils.d.ts +0 -0
- /package/{components → lib/esm/components}/keyboard/keyboardUtils.js +0 -0
- /package/{components → lib/esm/components}/keyboard/keyboardUtils.js.map +0 -0
- /package/{components → lib/esm/components}/modal/draggableModalProvider.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/draggableModalProvider.js +0 -0
- /package/{components → lib/esm/components}/modal/draggableModalProvider.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/clamp.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/clamp.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/clamp.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModal.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModal.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModal.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalContext.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalContext.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalContext.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalInner.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalInner.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalInner.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalReducer.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalReducer.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/draggableModalReducer.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/getWindowSize.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/getWindowSize.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/getWindowSize.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/index.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/index.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/index.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/resizeHandle.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/resizeHandle.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/resizeHandle.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/useDrag.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/useDrag.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/useDrag.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/usePrevious.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/usePrevious.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/usePrevious.js.map +0 -0
- /package/{components → lib/esm/components}/modal/impl/useResize.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/impl/useResize.js +0 -0
- /package/{components → lib/esm/components}/modal/impl/useResize.js.map +0 -0
- /package/{components → lib/esm/components}/modal/modalDialog.d.ts +0 -0
- /package/{components → lib/esm/components}/modal/modalDialog.js +0 -0
- /package/{components → lib/esm/components}/modal/modalDialog.js.map +0 -0
- /package/{components → lib/esm/components}/picker/enumValuePicker.d.ts +0 -0
- /package/{components → lib/esm/components}/picker/enumValuePicker.js +0 -0
- /package/{components → lib/esm/components}/picker/enumValuePicker.js.map +0 -0
- /package/{components → lib/esm/components}/platformSpecific.d.ts +0 -0
- /package/{components → lib/esm/components}/platformSpecific.js +0 -0
- /package/{components → lib/esm/components}/platformSpecific.js.map +0 -0
- /package/{components → lib/esm/components}/scrollTo/onlyText.d.ts +0 -0
- /package/{components → lib/esm/components}/scrollTo/onlyText.js +0 -0
- /package/{components → lib/esm/components}/scrollTo/onlyText.js.map +0 -0
- /package/{components → lib/esm/components}/scrollTo/scrollTo.d.ts +0 -0
- /package/{components → lib/esm/components}/scrollTo/scrollTo.js +0 -0
- /package/{components → lib/esm/components}/scrollTo/scrollTo.js.map +0 -0
- /package/{components → lib/esm/components}/style/withCss.d.ts +0 -0
- /package/{components → lib/esm/components}/style/withCss.js +0 -0
- /package/{components → lib/esm/components}/style/withCss.js.map +0 -0
- /package/{components → lib/esm/components}/style/withInputNumberCss.d.ts +0 -0
- /package/{components → lib/esm/components}/style/withInputNumberCss.js +0 -0
- /package/{components → lib/esm/components}/style/withInputNumberCss.js.map +0 -0
- /package/{components → lib/esm/components}/table/dragSortingTable.d.ts +0 -0
- /package/{components → lib/esm/components}/table/dragSortingTable.js +0 -0
- /package/{components → lib/esm/components}/table/dragSortingTable.js.map +0 -0
- /package/{components → lib/esm/components}/text/impl/innerSize.d.ts +0 -0
- /package/{components → lib/esm/components}/text/impl/innerSize.js +0 -0
- /package/{components → lib/esm/components}/text/impl/innerSize.js.map +0 -0
- /package/{components → lib/esm/components}/text/impl/series.d.ts +0 -0
- /package/{components → lib/esm/components}/text/impl/series.js +0 -0
- /package/{components → lib/esm/components}/text/impl/series.js.map +0 -0
- /package/{components → lib/esm/components}/text/impl/shallowEqual.d.ts +0 -0
- /package/{components → lib/esm/components}/text/impl/shallowEqual.js +0 -0
- /package/{components → lib/esm/components}/text/impl/shallowEqual.js.map +0 -0
- /package/{components → lib/esm/components}/text/impl/uniqueId.d.ts +0 -0
- /package/{components → lib/esm/components}/text/impl/uniqueId.js +0 -0
- /package/{components → lib/esm/components}/text/impl/uniqueId.js.map +0 -0
- /package/{components → lib/esm/components}/text/impl/whilst.d.ts +0 -0
- /package/{components → lib/esm/components}/text/impl/whilst.js +0 -0
- /package/{components → lib/esm/components}/text/impl/whilst.js.map +0 -0
- /package/{components → lib/esm/components}/text/textFit.d.ts +0 -0
- /package/{components → lib/esm/components}/text/textFit.js +0 -0
- /package/{components → lib/esm/components}/text/textFit.js.map +0 -0
- /package/{i18n → lib/esm/i18n}/componentsLocaleHolder.d.ts +0 -0
- /package/{i18n → lib/esm/i18n}/componentsLocaleHolder.js.map +0 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import React, {CSSProperties} from 'react';
|
|
2
|
+
import shallowEqual from 'd2coreui/components/text/impl/shallowEqual';
|
|
3
|
+
import series from 'd2coreui/components/text/impl/series';
|
|
4
|
+
import whilst from 'd2coreui/components/text/impl/whilst';
|
|
5
|
+
import debounce from 'lodash/debounce';
|
|
6
|
+
import uniqueId from 'd2coreui/components/text/impl/uniqueId';
|
|
7
|
+
import {innerHeight, innerWidth} from 'd2coreui/components/text/impl/innerSize';
|
|
8
|
+
|
|
9
|
+
function assertElementFitsWidth(el: HTMLElement | null, width: number) {
|
|
10
|
+
// -1: temporary bugfix, will be refactored soon
|
|
11
|
+
return el && el.scrollWidth - 1 <= width;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function assertElementFitsHeight(el: HTMLElement | null, height: number) {
|
|
15
|
+
// -1: temporary bugfix, will be refactored soon
|
|
16
|
+
return el && el.scrollHeight - 1 <= height;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function noop() {
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
interface TextFitProperties extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
23
|
+
text?: string
|
|
24
|
+
min: number
|
|
25
|
+
max: number
|
|
26
|
+
mode: 'single' | 'multi'
|
|
27
|
+
forceSingleModeWidth: boolean,
|
|
28
|
+
throttle: number,
|
|
29
|
+
onReady: (mid:number) => void
|
|
30
|
+
autoResize?: boolean
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface TextFitState {
|
|
34
|
+
fontSize: number | null
|
|
35
|
+
ready: boolean
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export default class TextFit extends React.Component<TextFitProperties, TextFitState> {
|
|
39
|
+
pid?: number
|
|
40
|
+
|
|
41
|
+
static defaultProps = {
|
|
42
|
+
min: 1,
|
|
43
|
+
max: 100,
|
|
44
|
+
mode: 'multi',
|
|
45
|
+
forceSingleModeWidth: true,
|
|
46
|
+
throttle: 50,
|
|
47
|
+
autoResize: true,
|
|
48
|
+
onReady: noop
|
|
49
|
+
}
|
|
50
|
+
private _parent: HTMLDivElement | null = null;
|
|
51
|
+
private _child: HTMLDivElement | null = null;
|
|
52
|
+
|
|
53
|
+
constructor(props: Readonly<TextFitProperties>) {
|
|
54
|
+
super(props);
|
|
55
|
+
this.state = {
|
|
56
|
+
fontSize: null,
|
|
57
|
+
ready: false
|
|
58
|
+
}
|
|
59
|
+
this.handleWindowResize = debounce(this.handleWindowResize, this.props.throttle);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
componentDidMount() {
|
|
63
|
+
const {autoResize} = this.props;
|
|
64
|
+
if (autoResize) {
|
|
65
|
+
window.addEventListener('resize', this.handleWindowResize);
|
|
66
|
+
}
|
|
67
|
+
this.process();
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
componentDidUpdate(prevProps: Readonly<TextFitProperties>) {
|
|
71
|
+
const {ready} = this.state;
|
|
72
|
+
if (!ready) return;
|
|
73
|
+
if (shallowEqual(this.props, prevProps)) return;
|
|
74
|
+
this.process();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
componentWillUnmount() {
|
|
78
|
+
const {autoResize} = this.props;
|
|
79
|
+
if (autoResize) {
|
|
80
|
+
window.removeEventListener('resize', this.handleWindowResize);
|
|
81
|
+
}
|
|
82
|
+
// Setting a new pid will cancel all running processes
|
|
83
|
+
this.pid = uniqueId();
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
handleWindowResize = () => {
|
|
87
|
+
this.process();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
process() {
|
|
91
|
+
const {min, max, mode, forceSingleModeWidth, onReady} = this.props;
|
|
92
|
+
const el = this._parent;
|
|
93
|
+
const wrapper = this._child;
|
|
94
|
+
|
|
95
|
+
const originalWidth = el ? innerWidth(el) : 0;
|
|
96
|
+
const originalHeight = el ? innerHeight(el) : 0;
|
|
97
|
+
|
|
98
|
+
if (originalHeight <= 0 || isNaN(originalHeight)) {
|
|
99
|
+
console.warn('Can not process element without height. Make sure the element is displayed and has a static height.');
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (originalWidth <= 0 || isNaN(originalWidth)) {
|
|
104
|
+
console.warn('Can not process element without width. Make sure the element is displayed and has a static width.');
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const pid = uniqueId();
|
|
109
|
+
this.pid = pid;
|
|
110
|
+
|
|
111
|
+
const shouldCancelProcess = () => pid !== this.pid;
|
|
112
|
+
|
|
113
|
+
const testPrimary = mode === 'multi'
|
|
114
|
+
? () => assertElementFitsHeight(wrapper, originalHeight)
|
|
115
|
+
: () => assertElementFitsWidth(wrapper, originalWidth);
|
|
116
|
+
|
|
117
|
+
const testSecondary = mode === 'multi'
|
|
118
|
+
? () => assertElementFitsWidth(wrapper, originalWidth)
|
|
119
|
+
: () => assertElementFitsHeight(wrapper, originalHeight);
|
|
120
|
+
|
|
121
|
+
let mid: number;
|
|
122
|
+
let low = min;
|
|
123
|
+
let high = max;
|
|
124
|
+
|
|
125
|
+
this.setState({ready: false});
|
|
126
|
+
|
|
127
|
+
series([
|
|
128
|
+
// Step 1:
|
|
129
|
+
// Binary search to fit the element's height (multi line) / width (single line)
|
|
130
|
+
(stepCallback: Function) => whilst(
|
|
131
|
+
() => low <= high,
|
|
132
|
+
(whilstCallback: Function) => {
|
|
133
|
+
if (shouldCancelProcess()) return whilstCallback(true);
|
|
134
|
+
mid = parseInt("" + ((low + high) / 2), 10);
|
|
135
|
+
this.setState({fontSize: mid}, () => {
|
|
136
|
+
if (shouldCancelProcess()) return whilstCallback(true);
|
|
137
|
+
if (testPrimary()) low = mid + 1;
|
|
138
|
+
else high = mid - 1;
|
|
139
|
+
return whilstCallback();
|
|
140
|
+
});
|
|
141
|
+
},
|
|
142
|
+
stepCallback
|
|
143
|
+
),
|
|
144
|
+
// Step 2:
|
|
145
|
+
// Binary search to fit the element's width (multi line) / height (single line)
|
|
146
|
+
// If mode is single and forceSingleModeWidth is true, skip this step
|
|
147
|
+
// in order to not fit the elements height and decrease the width
|
|
148
|
+
(stepCallback: Function) => {
|
|
149
|
+
if (mode === 'single' && forceSingleModeWidth) return stepCallback();
|
|
150
|
+
if (testSecondary()) return stepCallback();
|
|
151
|
+
low = min;
|
|
152
|
+
high = mid;
|
|
153
|
+
return whilst(
|
|
154
|
+
() => low < high,
|
|
155
|
+
(whilstCallback: Function):any => {
|
|
156
|
+
if (shouldCancelProcess()) {
|
|
157
|
+
return whilstCallback(true);
|
|
158
|
+
}
|
|
159
|
+
mid = parseInt(""+((low + high) / 2), 10);
|
|
160
|
+
this.setState({fontSize: mid}, () => {
|
|
161
|
+
if (pid !== this.pid) return whilstCallback(true);
|
|
162
|
+
if (testSecondary()) low = mid + 1;
|
|
163
|
+
else high = mid - 1;
|
|
164
|
+
return whilstCallback();
|
|
165
|
+
});
|
|
166
|
+
},
|
|
167
|
+
stepCallback
|
|
168
|
+
);
|
|
169
|
+
},
|
|
170
|
+
// Step 3
|
|
171
|
+
// Limits
|
|
172
|
+
(stepCallback:Function) => {
|
|
173
|
+
// We break the previous loop without updating mid for the final time,
|
|
174
|
+
// so we do it here:
|
|
175
|
+
mid = Math.min(low, high);
|
|
176
|
+
|
|
177
|
+
// Ensure we hit the user-supplied limits
|
|
178
|
+
mid = Math.max(mid, min);
|
|
179
|
+
mid = Math.min(mid, max);
|
|
180
|
+
|
|
181
|
+
// Sanity check:
|
|
182
|
+
mid = Math.max(mid, 0);
|
|
183
|
+
|
|
184
|
+
if (shouldCancelProcess()) return stepCallback(true);
|
|
185
|
+
this.setState({fontSize: mid}, stepCallback as ()=>void);
|
|
186
|
+
}
|
|
187
|
+
], (err:Function) => {
|
|
188
|
+
// err will be true, if another process was triggered
|
|
189
|
+
if (err || shouldCancelProcess()) return;
|
|
190
|
+
this.setState({ready: true}, () => onReady(mid));
|
|
191
|
+
});
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
render() {
|
|
195
|
+
const {
|
|
196
|
+
children,
|
|
197
|
+
text,
|
|
198
|
+
style,
|
|
199
|
+
min,
|
|
200
|
+
max,
|
|
201
|
+
mode,
|
|
202
|
+
forceSingleModeWidth,
|
|
203
|
+
/* eslint-disable no-shadow */
|
|
204
|
+
throttle,
|
|
205
|
+
/* eslint-enable no-shadow */
|
|
206
|
+
autoResize,
|
|
207
|
+
onReady,
|
|
208
|
+
...props
|
|
209
|
+
} = this.props;
|
|
210
|
+
const {fontSize, ready} = this.state;
|
|
211
|
+
const finalStyle:CSSProperties = {
|
|
212
|
+
...style,
|
|
213
|
+
fontSize: fontSize ? fontSize : undefined
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
const wrapperStyle:CSSProperties = {
|
|
217
|
+
display: ready ? 'block' : 'inline-block'
|
|
218
|
+
};
|
|
219
|
+
if (mode === 'single') wrapperStyle.whiteSpace = 'nowrap';
|
|
220
|
+
|
|
221
|
+
return (
|
|
222
|
+
<div ref={c => this._parent = c} style={finalStyle} {...props}>
|
|
223
|
+
<div ref={c => this._child = c} style={wrapperStyle}>
|
|
224
|
+
{text ? text : children}
|
|
225
|
+
</div>
|
|
226
|
+
</div>
|
|
227
|
+
);
|
|
228
|
+
}
|
|
229
|
+
}
|
package/i18n/components.cs.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"langCode": "cs",
|
|
3
|
+
" (%{n} records)": " (%{n} záznamů)",
|
|
4
|
+
"%{n} records exported": "Bylo exportováno %{n} záznamů",
|
|
5
|
+
"Advanced Settings": "Rozšířená nastavení",
|
|
6
|
+
"Apply": "Nastavit",
|
|
7
|
+
"All Rows": "Všechny řádky",
|
|
8
|
+
"Automatic": "Automatická",
|
|
9
|
+
"Autosize All Columns": "Nastavit šířku všech sloupců",
|
|
10
|
+
"Autosize Column": "Nastavit šířku sloupce",
|
|
11
|
+
"Background Color": "Barva pozadí",
|
|
12
|
+
"Cancel": "Zrušit",
|
|
13
|
+
"Clipboard": "schránky",
|
|
14
|
+
"Close": "Zavřít",
|
|
15
|
+
"Column Filter": "Filtr nad sloupci",
|
|
16
|
+
"Column Name": "Jméno sloupce",
|
|
17
|
+
"Column": "Sloupec",
|
|
18
|
+
"Columns Configuration": "Konfigurace sloupců",
|
|
19
|
+
"Copy to Clipboard": "Kopírovat do schránky",
|
|
20
|
+
"Copying to Clipboard": "Kopírování do schránky",
|
|
21
|
+
"Disabled": "Vypnuto",
|
|
22
|
+
"Enabled": "Zapnuto",
|
|
23
|
+
"Export List to": "Export seznamu do",
|
|
24
|
+
"Export Window Configuration": "Exportovat nastavení okna",
|
|
25
|
+
"Export current window configuration to file": "Exportovat současnou konfiguraci okna do souboru",
|
|
26
|
+
"Export": "Export",
|
|
27
|
+
"Exporting to": "Exportování do",
|
|
28
|
+
"Extended table features": "Rozšířené možnosti tabulky",
|
|
29
|
+
"Fixed": "Fixní",
|
|
30
|
+
"Font Size": "Velikost písma",
|
|
31
|
+
"Line Indentation": "Odsazení řádku",
|
|
32
|
+
"Goto Page": "Jdi na stranu",
|
|
33
|
+
"Hidden Columns": "Skryté sloupce",
|
|
34
|
+
"Hide Column": "Skrýt sloupec",
|
|
35
|
+
"Landscape": "Na šířku",
|
|
36
|
+
"No records found.": "Nebyly nalezeny žádné záznamy.",
|
|
37
|
+
"No": "Ne",
|
|
38
|
+
"OK": "Potvrdit",
|
|
39
|
+
"Page Orientation": "Orientace stránky",
|
|
40
|
+
"Page Size": "Velikost stránky",
|
|
41
|
+
"Pagination": "Stránkování",
|
|
42
|
+
"Pin Column": "Připnout sloupec",
|
|
43
|
+
"Pin Left": "Připnout vlevo",
|
|
44
|
+
"Pin Right": "Připnout vpravo",
|
|
45
|
+
"Portrait": "Na výšku",
|
|
46
|
+
"Records has been added or removed, table need to be reloaded in order to see actual records": "Záznamy byly přidány nebo odstraněny, prosím znovu načtěte tabulku abyste viděli aktualne záznamy",
|
|
47
|
+
"Refresh": "Obnovit",
|
|
48
|
+
"Reset Columns": "Resetovat sloupce",
|
|
49
|
+
"Reset": "Resetovat",
|
|
50
|
+
"Revert": "Vrátit změny",
|
|
51
|
+
"Revert configuration to predefined state": "Vrátit konfiguraci do výchozího nastavení",
|
|
52
|
+
"Revert filter to original state": "Vrátit filtr do původního nastavení",
|
|
53
|
+
"Revert to factory configuration": "Vrátit do továrního nastavení",
|
|
54
|
+
"Save Window Configuration": "Uložit nastavení okna",
|
|
55
|
+
"Save current window configuration for current user": "Uložit nastavení okna pro aktuálního uživatele",
|
|
56
|
+
"Search": "Vyhledat",
|
|
57
|
+
"Set No Color": "Nastavit žádnou barvu",
|
|
58
|
+
"Show time with milliseconds": "Zobrazit čas s milisekundami",
|
|
59
|
+
"Show time with year": "Zobrazit čas s rokem",
|
|
60
|
+
"Show/Hide filter panel": "Zobrazit/skrýt panel s filtrem",
|
|
61
|
+
"Show/Hide panel with modified filter": "Zobrazit/skrýt panel s modifikovaným filtrem",
|
|
62
|
+
"Shown Columns": "Zobrazené sloupce",
|
|
63
|
+
"Table - Columns": "Tabulka - sloupce",
|
|
64
|
+
"Table - General Settings": "Tabulka - všeobecná nastavení",
|
|
65
|
+
"Table - Rows Styling": "Tabulka - stylování řádků",
|
|
66
|
+
"Text Color": "Barva textu",
|
|
67
|
+
"The column list is empty": "Seznam sloupců je prázdný",
|
|
68
|
+
"Simple Mode": "Jednoduchý mód",
|
|
69
|
+
"Advanced Mode": "Pokročilý mód",
|
|
70
|
+
"Interval Begin": "Začátek intervalu",
|
|
71
|
+
"Interval End": "Konec intervalu",
|
|
72
|
+
"Now": "Nyní",
|
|
73
|
+
"Today": "Dnes",
|
|
74
|
+
"This Day": "Tento den",
|
|
75
|
+
"This Month": "Tento měsíc",
|
|
76
|
+
"This Week": "Tento týden",
|
|
77
|
+
"This Quarter": "Toto čtvrtletí",
|
|
78
|
+
"This Year": "Letos",
|
|
79
|
+
"Interval Duration": "Trvání intervalu",
|
|
80
|
+
"Time Shift": "Časový posun",
|
|
81
|
+
"Hour": "Hodina",
|
|
82
|
+
"Day": "Den",
|
|
83
|
+
"Week": "Týden",
|
|
84
|
+
"Month": "Měsíc",
|
|
85
|
+
"Quarter": "Čtvrtletí",
|
|
86
|
+
"Year": "Rok",
|
|
87
|
+
"Years": "Roky",
|
|
88
|
+
"Track last added record to table": "Sledovat naposledy přidaný záznam do tabulky",
|
|
89
|
+
"Turn on/off column filter": "Zapnout/vypnout filtr nad sloupci",
|
|
90
|
+
"Turn on/off filter panel": "Zapnout/vypnout panel filtrování",
|
|
91
|
+
"Window configuration saved successfully": "Nastavení okna byla uložena",
|
|
92
|
+
"Window": "Okno",
|
|
93
|
+
"Yes": "Ano",
|
|
94
|
+
"column": "sloupec",
|
|
95
|
+
"columns": "sloupců",
|
|
96
|
+
"of": "z",
|
|
97
|
+
"First Page": "První strana",
|
|
98
|
+
"Previous Page": "Předchozí strana",
|
|
99
|
+
"Next Page": "Následující strana",
|
|
100
|
+
"Last Page": "Poslední strana"
|
|
101
|
+
}
|
package/i18n/components.sk.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"langCode": "sk",
|
|
3
|
+
" (%{n} records)": " (%{n} záznamov)",
|
|
4
|
+
"%{n} records exported": "Bolo exportovaných %{n} záznamov",
|
|
5
|
+
"Advanced Settings": "Rozširené nastavenia",
|
|
6
|
+
"Apply": "Nastaviť",
|
|
7
|
+
"All Rows": "Všetky riadky",
|
|
8
|
+
"Automatic": "Automatická",
|
|
9
|
+
"Autosize All Columns": "Nastaviť šírku všetkých stĺpcov",
|
|
10
|
+
"Autosize Column": "Nastaviť šírku stĺpca",
|
|
11
|
+
"Background Color": "Farba pozadia",
|
|
12
|
+
"Cancel": "Zrušiť",
|
|
13
|
+
"Clipboard": "schránky",
|
|
14
|
+
"Close": "Zatvoriť",
|
|
15
|
+
"Column Filter": "Filter nad stĺpcami",
|
|
16
|
+
"Column Name": "Meno stĺpca",
|
|
17
|
+
"Column": "Stĺpec",
|
|
18
|
+
"Columns Configuration": "Konfigurácia stĺpcov",
|
|
19
|
+
"Copy to Clipboard": "Kopírovať do schránky",
|
|
20
|
+
"Copying to Clipboard": "Kopírovanie do schránky",
|
|
21
|
+
"Disabled": "Vypnuté",
|
|
22
|
+
"Enabled": "Zapnuté",
|
|
23
|
+
"Export List to": "Export zoznamu do",
|
|
24
|
+
"Export Window Configuration": "Exportovať nastavenia okna",
|
|
25
|
+
"Export current window configuration to file": "Exportovať súčasnú konfiguráciu okna do súboru",
|
|
26
|
+
"Export": "Export",
|
|
27
|
+
"Exporting to": "Exportovanie do",
|
|
28
|
+
"Extended table features": "Rozšírené možnosti tabuľky",
|
|
29
|
+
"Fixed": "Fixná",
|
|
30
|
+
"Font Size": "Veľkosť písma",
|
|
31
|
+
"Line Indentation": "Odsadenie riadku",
|
|
32
|
+
"Goto Page": "Choď na stranu",
|
|
33
|
+
"Hidden Columns": "Skryté stĺpce",
|
|
34
|
+
"Hide Column": "Skryť stĺpec",
|
|
35
|
+
"Landscape": "Na šírku",
|
|
36
|
+
"No records found.": "Neboli nájdené žiadne záznamy.",
|
|
37
|
+
"No": "Nie",
|
|
38
|
+
"OK": "Potvrdiť",
|
|
39
|
+
"Page Orientation": "Orientácia stránky",
|
|
40
|
+
"Page Size": "Veľkosť stránky",
|
|
41
|
+
"Pagination": "Stránkovanie",
|
|
42
|
+
"Pin Column": "Pripnúť stĺpec",
|
|
43
|
+
"Pin Left": "Pripnúť vľavo",
|
|
44
|
+
"Pin Right": "Pripnúť vpravo",
|
|
45
|
+
"Portrait": "Na výšku",
|
|
46
|
+
"Records has been added or removed, table need to be reloaded in order to see actual records": "Záznamy boli pridané alebo odstránené, prosím znova načítajte tabuľku aby ste videli aktualne záznamy",
|
|
47
|
+
"Refresh": "Obnoviť",
|
|
48
|
+
"Reset Columns": "Resetovať stĺpce",
|
|
49
|
+
"Reset": "Resetovať",
|
|
50
|
+
"Revert": "Vrátiť zmeny",
|
|
51
|
+
"Revert configuration to predefined state": "Vrátiť konfiguráciu do predvoleného nastavenia",
|
|
52
|
+
"Revert filter to original state": "Vrátiť filter do pôvodného nastavenia",
|
|
53
|
+
"Revert to factory configuration": "Vrátiť do továrenského nastavenia",
|
|
54
|
+
"Save Window Configuration": "Uložiť nastavenia okna",
|
|
55
|
+
"Save current window configuration for current user": "Uložiť nastavenia okna pre aktuálneho používateľa",
|
|
56
|
+
"Search": "Vyhľadať",
|
|
57
|
+
"Set No Color": "Nastaviť žiadnu farbu",
|
|
58
|
+
"Show time with milliseconds": "Zobraziť čas s milisekundami",
|
|
59
|
+
"Show time with year": "Zobraziť čas s rokom",
|
|
60
|
+
"Show/Hide filter panel": "Zobraziť/skryť panel s filtrom",
|
|
61
|
+
"Show/Hide panel with modified filter": "Zobraziť/skryť panel s modifikovaným filtrom",
|
|
62
|
+
"Shown Columns": "Zobrazené stĺpce",
|
|
63
|
+
"Table - Columns": "Tabuľka - stĺpce",
|
|
64
|
+
"Table - General Settings": "Tabuľka - všeobecné nastavenia",
|
|
65
|
+
"Table - Rows Styling": "Tabuľka - štýlovanie riadkov",
|
|
66
|
+
"Text Color": "Farba textu",
|
|
67
|
+
"The column list is empty": "Zoznam stĺpcov je prázdny",
|
|
68
|
+
"Simple Mode": "Jednoduchý mód",
|
|
69
|
+
"Advanced Mode": "Pokročilý mód",
|
|
70
|
+
"Interval Begin": "Začiatok intervalu",
|
|
71
|
+
"Interval End": "Koniec intervalu",
|
|
72
|
+
"Now": "Teraz",
|
|
73
|
+
"Today": "Dnes",
|
|
74
|
+
"This Day": "Tento deň",
|
|
75
|
+
"This Month": "Tento mesiac",
|
|
76
|
+
"This Week": "Tento týždeň",
|
|
77
|
+
"This Quarter": "Tento štvrťrok",
|
|
78
|
+
"This Year": "Tento rok",
|
|
79
|
+
"Interval Duration": "Trvanie intervalu",
|
|
80
|
+
"Time Shift": "Časový posun",
|
|
81
|
+
"Hour": "Hodina",
|
|
82
|
+
"Day": "Deň",
|
|
83
|
+
"Week": "Týždeň",
|
|
84
|
+
"Month": "Mesiac",
|
|
85
|
+
"Quarter": "Štvrťrok",
|
|
86
|
+
"Year": "Rok",
|
|
87
|
+
"Years": "Roky",
|
|
88
|
+
"Track last added record to table": "Sledovať naposledy pridaný záznam do tabuľky",
|
|
89
|
+
"Turn on/off column filter": "Zapnúť/vypnúť filter nad stĺpcami",
|
|
90
|
+
"Turn on/off filter panel": "Zapnúť/vypnúť panel filtrovania",
|
|
91
|
+
"Window configuration saved successfully": "Nastavenia okna boli uložené",
|
|
92
|
+
"Window": "Okno",
|
|
93
|
+
"Yes": "Áno",
|
|
94
|
+
"column": "stĺpec",
|
|
95
|
+
"columns": "stĺpcov",
|
|
96
|
+
"of": "z",
|
|
97
|
+
"First Page": "Prvá strana",
|
|
98
|
+
"Previous Page": "Predchádzajúca strana",
|
|
99
|
+
"Next Page": "Nasledujúca strana",
|
|
100
|
+
"Last Page": "Posledná strana"
|
|
101
|
+
}
|