This is an automated email from the ASF dual-hosted git repository.
hugh pushed a change to branch pexdax/db-connection-ui
in repository https://gitbox.apache.org/repos/asf/superset.git.
omit 0457bfe fix conflicts
omit ef63e3c feat(db-connection-ui): Allow users to pick engine (#14884)
omit 271c6e9 use new validation component
omit b57d090 hook up available databases
omit e7f0dbb split db modal file
add 06945cc feat: Icon Button (#14818)
add b6f00e6 chore: Improves the native filters UI/UX - iteration 6
(#14932)
add f4de0dc fix: is_temporal should overwrite is_dttm (#14894)
add 723a671 fix: time parser truncate to first day of year/month (#14945)
add 4b35eec hook up available databases
add 5b82a30 use new validation component
add 4cf8a35 feat(db-connection-ui): Allow users to pick engine (#14884)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (0457bfe)
\
N -- N -- N refs/heads/pexdax/db-connection-ui (4cf8a35)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../IconButton.stories.tsx} | 63 +++-----
.../IconButton.test.jsx} | 30 ++--
.../src/components/IconButton/index.tsx | 123 +++++++++++++++
.../FiltersConfigModal/FilterTabs.tsx | 20 ++-
.../FiltersConfigForm/FiltersConfigForm.tsx | 172 ++++++++++++---------
.../FiltersConfigForm/getControlItemsMap.test.tsx | 8 +-
.../FiltersConfigForm/getControlItemsMap.tsx | 15 +-
.../FiltersConfigModal/FiltersConfigModal.tsx | 6 +-
superset/connectors/sqla/models.py | 2 +
superset/utils/date_parser.py | 3 +-
tests/sqla_models_tests.py | 4 +
tests/utils/date_parser_tests.py | 12 ++
12 files changed, 320 insertions(+), 138 deletions(-)
copy superset-frontend/src/components/{Timer/Timer.stories.tsx =>
IconButton/IconButton.stories.tsx} (55%)
copy superset-frontend/src/components/{OmniContainer/Omnibar.test.tsx =>
IconButton/IconButton.test.jsx} (66%)
create mode 100644 superset-frontend/src/components/IconButton/index.tsx