@ssa-ui-kit/widgets 0.0.8-alpha → 0.0.9-alpha

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.
Files changed (47) hide show
  1. package/custom-shots/widgets-bots-table--no-control-orders--menu-opened_[w1920px].png +0 -0
  2. package/custom-shots/widgets-bots-table--no-control-orders--run-reason-modal_[w1920px].png +0 -0
  3. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px].png +0 -0
  4. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_side_menu_expanded.png +0 -0
  5. package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_statistics_submenu.png +0 -0
  6. package/custom-shots/widgets-filters--default__[w1920px].png +0 -0
  7. package/custom-shots/widgets-filters--filter-button-items-not-selected__[w390px].png +0 -0
  8. package/custom-shots/widgets-filters--filter-button__[w390px].png +0 -0
  9. package/custom-shots/widgets-filters--more-button-items-selected__[w390px].png +0 -0
  10. package/custom-shots/widgets-filters--more-button__[w900px].png +0 -0
  11. package/custom-shots/widgets-linkstabbar--current-focus__[w1920px].png +0 -0
  12. package/custom-shots/widgets-meal-nutrients--hint-opened__[w1440px].png +0 -0
  13. package/custom-shots/widgets-meal-nutrients--hint-opened__[w1920px].png +0 -0
  14. package/custom-shots/widgets-meal-nutrients--hint-opened__[w390px].png +0 -0
  15. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w390px].png +0 -0
  16. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w900px].png +0 -0
  17. package/custom-shots/widgets-notification-menu--is-opened__[w1440px].png +0 -0
  18. package/custom-shots/widgets-notification-menu--is-opened__[w390px].png +0 -0
  19. package/custom-shots/widgets-notification-menu--is-opened__[w900px].png +0 -0
  20. package/custom-shots/widgets-pagination--selected-hover__[w1920px].png +0 -0
  21. package/custom-shots/widgets-progressInfo__[w390px].png +0 -0
  22. package/custom-shots/widgets-progressInfo__[w900px].png +0 -0
  23. package/custom-shots/widgets-searchbox--cross-icon__[w900px].png +0 -0
  24. package/custom-shots/widgets-searchbox--search-icon__[w900px].png +0 -0
  25. package/dist/components/CollapsibleNavBar/stories/Layout.d.ts +3 -0
  26. package/dist/components/Filters/stories/StoryComponent.d.ts +3 -1
  27. package/dist/components/Filters/stories/mockData.d.ts +1 -0
  28. package/dist/components/TableFilters/TableFilterTrigger.d.ts +3 -2
  29. package/dist/index.js +1 -1
  30. package/dist/index.js.map +1 -1
  31. package/package.json +2 -2
  32. package/src/components/CollapsibleNavBar/CollapsibleNavBarBase.ts +7 -3
  33. package/src/components/CollapsibleNavBar/CollapsibleNavBarWrapper.ts +4 -3
  34. package/src/components/CollapsibleNavBar/NavBarPopover.tsx +1 -0
  35. package/src/components/CollapsibleNavBar/stories/CollapsibleNavBar.stories.tsx +2 -6
  36. package/src/components/CollapsibleNavBar/stories/Layout.tsx +53 -0
  37. package/src/components/Filters/Filters.e2e.ts +37 -4
  38. package/src/components/Filters/FiltersWrapper.tsx +16 -0
  39. package/src/components/Filters/stories/Filters.stories.tsx +7 -0
  40. package/src/components/Filters/stories/StoryComponent.tsx +2 -2
  41. package/src/components/Filters/stories/mockData.ts +209 -0
  42. package/src/components/SearchBox/SearchBoxInput.tsx +24 -2
  43. package/src/components/SearchBox/SearchBoxWrapper.tsx +5 -2
  44. package/src/components/TableFilters/TableFilterTrigger.tsx +34 -30
  45. package/src/components/TableFilters/TableFilterTriggerWithNotification.tsx +1 -1
  46. package/tsbuildcache +1 -1
  47. package/test-results/src-components-TableFilters-TableFilters.e2e.ts-Widgets-TableFilters-Opens-popover-chromium/trace.zip +0 -0
@@ -0,0 +1,3 @@
1
+ export declare const Layout: ({ children }: {
2
+ children: React.ReactNode;
3
+ }) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
@@ -1 +1,3 @@
1
- export declare const StoryComponent: () => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
1
+ export declare const StoryComponent: ({ data }: {
2
+ data?: import("../../TableFilters/types").TableFilterConfig | undefined;
3
+ }) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
@@ -1,2 +1,3 @@
1
1
  import { TableFilterConfig } from '../../TableFilters/types';
2
2
  export declare const mockData: TableFilterConfig;
3
+ export declare const mockDataEnabled: TableFilterConfig;
@@ -1,7 +1,8 @@
1
1
  import { Theme } from '@emotion/react';
2
- export declare const filterButtonStyles: (theme: Theme) => import("@emotion/react").SerializedStyles;
3
- export declare const TableFilterTrigger: ({ children, ...rest }: {
2
+ export declare const filterButtonStyles: (count?: number) => (theme: Theme) => import("@emotion/react").SerializedStyles;
3
+ export declare const TableFilterTrigger: ({ children, count, ...rest }: {
4
4
  children?: React.ReactNode;
5
+ count?: number | undefined;
5
6
  as?: string | undefined;
6
7
  className?: string | undefined;
7
8
  }) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;