-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Chore]: Technical: Translate table utils #1742
Conversation
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
*/ | ||
export function createDataContainer( | ||
data: any[], | ||
options: Partial<DataContainerOptions> = defaultOptions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
both inputDataFormat
and fields
are optional, this should just be options: DataContainerOptions
@@ -18,34 +18,44 @@ | |||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |||
// THE SOFTWARE. | |||
|
|||
import {DataContainerInterface} from './data-container-interface'; | |||
|
|||
export type SharedRowOptions = DataRow | boolean | undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe move to the end of this file, after DataRow
is defined?
import {RGBColor} from 'reducers/types'; | ||
import {Layer} from 'layers'; | ||
import {Filter} from 'reducers/vis-state-updaters'; | ||
import {FieldDomain} from 'reducers/vis-state-updaters'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merge 2 imports from 'reducers/vis-state-updaters'
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
…_ts_convertion_utils_table_utils
Signed-off-by: Maksim Suslov <maksim.suslov@actionengine.com>
No description provided.