UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

29 lines (27 loc) 1.74 kB
"use strict"; exports.__esModule = true; exports.dateRenderer = dateRenderer; var _autocompleteRenderer = require("../autocompleteRenderer"); var _console = require("../../helpers/console"); const RENDERER_TYPE = exports.RENDERER_TYPE = 'date'; const deprecatedMessageShown = new WeakSet(); /** * Handsontable renderer. * * @private * @param {Core} hotInstance The Handsontable instance. * @param {HTMLTableCellElement} TD The rendered cell element. * @param {number} row The visual row index. * @param {number} col The visual column index. * @param {number|string} prop The column property (passed when datasource is an array of objects). * @param {*} value The rendered value. * @param {object} cellProperties The cell meta object (see {@link Core#getCellMeta}). */ function dateRenderer(hotInstance, TD, row, col, prop, value, cellProperties) { if (!deprecatedMessageShown.has(cellProperties.instance) && typeof cellProperties.dateFormat === 'string') { deprecatedMessageShown.add(cellProperties.instance); (0, _console.deprecatedWarn)('The `date` cell type with string-based `dateFormat` (moment.js) is deprecated. ' + 'In the next major release, `date` will accept only Intl.DateTimeFormat options (object). ' + 'To start migrating, use the `intl-date` cell type now; it will become the `date` cell type ' + 'after the next major release (the `intl-date` will become an alias for `date`).\n\n' + 'Migration guide: https://handsontable.com/docs/migration-from-16.2-to-17.0/\n' + '`date` cell type: https://handsontable.com/docs/date-cell-type/'); } _autocompleteRenderer.autocompleteRenderer.apply(this, [hotInstance, TD, row, col, prop, value, cellProperties]); } dateRenderer.RENDERER_TYPE = RENDERER_TYPE;