mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-30 09:57:19 +00:00
* init kanban board widget * kanban board * reverts to beautifully * kanban UI updates and dnd fixes * bugfix: when dropped outside the col, should return back to it inital position * updates min-width of the column * container and widget styles * style fixes: column container onDrag * adds button for new group * fixes new card overflow * add btn for adding cards * groups and cards updated * add property definition * improves draggable card position while drag is active * handle delete group/col * handle col/group title updates * handles editing card title * style fixes for input cursor * cleanup * card popover with codehinter fields * minor card fixes * updates exposed variable * simplify boardData into cols and cards * adds width and min-width style definations * build board from queries * handle draggable rbd-id * removes add group card and delete group option * fixes typos * show empty state message * fixes typos * removes card extra border color * fixes column typi and cards updates issue * adds enableAddCard property defination * adds accent color options * default style accent color * accent color fix * revets popover with hinter * fixes card drag and drop * removes hook * fixes: state synced with property defination updates(col and cards data) * fixes: on re-arranging the card via dnd, update the card content * handles if card columnId is updated * adds card container layer * clean up * dark theme * fixes card onDrop issue * renamed the exposed variable data --> lists * adds custom resolvers to the popover * handle widget crash when non iterables are passed * updates default card and col value * fixes dnd issues for dynamic card values * refactor: cleanup * handles empty and undefined cardData * fixes Height of widget is changing when popover thing is displayed. * fixes: updating card data in widget inspector * fixes: updating column data in widget inspector * fixes adding cards for newly created groups/columns * clean up * Add kanban event onCardAdded and expose lastAddedCard * Add onCardRemoved action and expsed lastRemovedCard variable * Add events and variables for card movement and selection * Add card edit feature for kanban widget * Rename lastAddedRemoved to lastRemovedCard in kanban * Rename lists to columns on kanban board * Set max height of kanban column to respond to widget height * Have "Add description" link if there is no description for Kanban cards * kanban docs * Change text from "add +" to "Add card" on kanban * Validate card data before update * Add tip about card id type on kanban documentation * Add default min width and width for kanban Co-authored-by: Sherfin Shamsudeen <[email protected]> Co-authored-by: Shubhendra <[email protected]>
260 lines
6.8 KiB
JavaScript
260 lines
6.8 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docs: [
|
|
'introduction',
|
|
{
|
|
type: 'category',
|
|
label: 'Setup',
|
|
link: {type: 'doc', id: 'setup/index'},
|
|
items: [
|
|
'setup/introduction',
|
|
'setup/docker',
|
|
'setup/docker-local',
|
|
'setup/heroku',
|
|
'setup/ec2',
|
|
'setup/kubernetes',
|
|
'setup/kubernetes-gke',
|
|
'setup/kubernetes-aks',
|
|
'setup/google-cloud-run',
|
|
'setup/client',
|
|
'setup/env-vars',
|
|
],
|
|
},
|
|
'security',
|
|
'tracking',
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorial',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Getting Started with ToolJet',
|
|
description:
|
|
"A primer on getting started with building an application with ToolJet!",
|
|
keywords: ['tutorial'],
|
|
},
|
|
items: [
|
|
'tutorial/creating-app',
|
|
'tutorial/adding-a-datasource',
|
|
'tutorial/building-queries',
|
|
'tutorial/transformations',
|
|
'tutorial/adding-widget',
|
|
'tutorial/actions',
|
|
'tutorial/debugger',
|
|
'tutorial/mobile-layout',
|
|
'tutorial/versioning-and-release',
|
|
'tutorial/sharing-and-deploying',
|
|
'tutorial/manage-users-groups',
|
|
'tutorial/keyboard-shortcuts',
|
|
'tutorial/multiworkspace',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Datasource Reference',
|
|
items: [
|
|
'data-sources/airtable',
|
|
'data-sources/s3',
|
|
'data-sources/appwrite',
|
|
'data-sources/baserow',
|
|
'data-sources/bigquery',
|
|
'data-sources/firestore',
|
|
'data-sources/couchdb',
|
|
'data-sources/custom-js',
|
|
'data-sources/dynamodb',
|
|
'data-sources/elasticsearch',
|
|
'data-sources/gcs',
|
|
'data-sources/google.sheets',
|
|
'data-sources/graphql',
|
|
'data-sources/influxdb',
|
|
'data-sources/mailgun',
|
|
'data-sources/minio',
|
|
'data-sources/mongodb',
|
|
'data-sources/mssql',
|
|
'data-sources/mysql',
|
|
'data-sources/n8n',
|
|
'data-sources/notion',
|
|
'data-sources/openapi',
|
|
'data-sources/oracledb',
|
|
'data-sources/postgresql',
|
|
'data-sources/redis',
|
|
'data-sources/restapi',
|
|
'data-sources/saphana',
|
|
'data-sources/sendgrid',
|
|
'data-sources/smtp',
|
|
'data-sources/snowflake',
|
|
'data-sources/rethinkdb',
|
|
'data-sources/typesense',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Widget Reference',
|
|
items: [
|
|
'widgets/button',
|
|
'widgets/button-group',
|
|
'widgets/calendar',
|
|
'widgets/chart',
|
|
'widgets/checkbox',
|
|
'widgets/circular-progress-bar',
|
|
'widgets/code-editor',
|
|
'widgets/container',
|
|
'widgets/custom-component',
|
|
'widgets/date-range-picker',
|
|
'widgets/datepicker',
|
|
'widgets/divider',
|
|
'widgets/dropdown',
|
|
'widgets/file-picker',
|
|
'widgets/iframe',
|
|
'widgets/image',
|
|
'widgets/kanban',
|
|
'widgets/listview',
|
|
'widgets/map',
|
|
'widgets/modal',
|
|
'widgets/multiselect',
|
|
'widgets/number-input',
|
|
'widgets/password-input',
|
|
'widgets/pdf',
|
|
'widgets/qr-scanner',
|
|
'widgets/radio-button',
|
|
'widgets/range-slider',
|
|
'widgets/rich-text-editor',
|
|
'widgets/spinner',
|
|
'widgets/star',
|
|
'widgets/statistics',
|
|
'widgets/steps',
|
|
'widgets/table',
|
|
'widgets/tabs',
|
|
'widgets/tags',
|
|
'widgets/text-input',
|
|
'widgets/text',
|
|
'widgets/textarea',
|
|
'widgets/timeline',
|
|
'widgets/timer',
|
|
'widgets/toggle-switch',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Actions Reference',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Actions Reference',
|
|
description:
|
|
"All the actions that can be performed through event handlers",
|
|
keywords: ['actions','events'],
|
|
},
|
|
items: [
|
|
'actions/generate-file',
|
|
'actions/set-localstorage',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'How To',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'How To Guides',
|
|
description:
|
|
"How To Guides for all the things ToolJet",
|
|
keywords: ['how to'],
|
|
},
|
|
items: [
|
|
'how-to/bulk-update-multiple-rows',
|
|
'how-to/oauth2-authorization',
|
|
'how-to/upload-files-aws',
|
|
'how-to/upload-files-gcs',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Enterprise',
|
|
items: [
|
|
'Enterprise/audit_logs',
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'User Authentication',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'User Authentication',
|
|
description:
|
|
"Guides for setting up User Authentication and managing Single Sign-On",
|
|
keywords: ['SSO','authentication'],
|
|
},
|
|
collapsed: true,
|
|
items: [
|
|
'user-authentication/general-settings',
|
|
'user-authentication/password-login',
|
|
{
|
|
type: 'category',
|
|
label: 'SSO',
|
|
items: [
|
|
'user-authentication/sso/github',
|
|
'user-authentication/sso/google',
|
|
{
|
|
type: 'category',
|
|
label: 'OpenId Connect',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'OpenId Connect',
|
|
description:" ",
|
|
keywords: ['okta','openid','azureAD'],
|
|
},
|
|
collapsed: false,
|
|
items: [
|
|
'user-authentication/sso/setup',
|
|
'user-authentication/sso/okta',
|
|
'user-authentication/sso/azuread',
|
|
],
|
|
}
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Contributing Guide',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Contributing Guide',
|
|
description:
|
|
"Guides for contributing to ToolJet",
|
|
keywords: ['contribute','contributing'],
|
|
},
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Setup',
|
|
items: [
|
|
'contributing-guide/setup/macos',
|
|
'contributing-guide/setup/docker',
|
|
'contributing-guide/setup/ubuntu',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorials',
|
|
items: [
|
|
'contributing-guide/tutorials/creating-widget',
|
|
'contributing-guide/tutorials/creating-a-plugin',
|
|
],
|
|
},
|
|
'contributing-guide/code-of-conduct',
|
|
'contributing-guide/slackcoc',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|