@pautena/react-design-system 0.4.3 → 0.4.5
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.
- package/dist/cjs/index.js +23 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/app-bars/index.d.ts +1 -0
- package/dist/cjs/types/components/containers/index.d.ts +2 -0
- package/dist/cjs/types/components/{header → data-display/header}/header.types.d.ts +19 -0
- package/dist/cjs/types/components/data-display/index.d.ts +3 -0
- package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.types.d.ts +10 -3
- package/dist/cjs/types/components/drawers/drawer-collapsable-item/drawer-collapsable-item.d.ts +26 -0
- package/dist/cjs/types/components/drawers/drawer-collapsable-item/index.d.ts +1 -0
- package/dist/cjs/types/components/{drawer-item → drawers/drawer-item}/drawer-item.d.ts +10 -1
- package/dist/{esm/types/components → cjs/types/components/drawers}/drawer-section/drawer-section.d.ts +5 -1
- package/dist/cjs/types/components/drawers/index.d.ts +4 -0
- package/dist/cjs/types/components/feedback/index.d.ts +2 -0
- package/dist/cjs/types/components/index.d.ts +9 -18
- package/dist/cjs/types/components/inputs/index.d.ts +2 -0
- package/dist/cjs/types/components/navigation/index.d.ts +1 -0
- package/dist/cjs/types/components/placeholders/content-placeholder/content-placeholder.d.ts +6 -0
- package/dist/cjs/types/components/placeholders/content-placeholder/index.d.ts +1 -0
- package/dist/cjs/types/components/placeholders/index.d.ts +5 -0
- package/dist/cjs/types/components/placeholders/lorem-ipsum-placeholder/index.d.ts +1 -0
- package/dist/cjs/types/components/placeholders/lorem-ipsum-placeholder/lorem-ipsum-placeholder.d.ts +8 -0
- package/dist/cjs/types/components/placeholders/skeleton-card/index.d.ts +1 -0
- package/dist/cjs/types/components/placeholders/skeleton-card/skeleton-card.d.ts +5 -0
- package/dist/cjs/types/components/placeholders/skeleton-grid/index.d.ts +1 -0
- package/dist/cjs/types/components/placeholders/skeleton-grid/skeleton-grid.d.ts +4 -0
- package/dist/cjs/types/generators/index.d.ts +1 -0
- package/dist/cjs/types/{components → generators}/table-list/table-list.d.ts +2 -2
- package/dist/cjs/types/layouts/app-bar-with-drawer-layout/app-bar-with-drawer-layout.d.ts +2 -2
- package/dist/esm/index.js +23 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/app-bars/index.d.ts +1 -0
- package/dist/esm/types/components/containers/index.d.ts +2 -0
- package/dist/esm/types/components/{header → data-display/header}/header.types.d.ts +19 -0
- package/dist/esm/types/components/data-display/index.d.ts +3 -0
- package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.types.d.ts +10 -3
- package/dist/esm/types/components/drawers/drawer-collapsable-item/drawer-collapsable-item.d.ts +26 -0
- package/dist/esm/types/components/drawers/drawer-collapsable-item/index.d.ts +1 -0
- package/dist/esm/types/components/{drawer-item → drawers/drawer-item}/drawer-item.d.ts +10 -1
- package/dist/{cjs/types/components → esm/types/components/drawers}/drawer-section/drawer-section.d.ts +5 -1
- package/dist/esm/types/components/drawers/index.d.ts +4 -0
- package/dist/esm/types/components/feedback/index.d.ts +2 -0
- package/dist/esm/types/components/index.d.ts +9 -18
- package/dist/esm/types/components/inputs/index.d.ts +2 -0
- package/dist/esm/types/components/navigation/index.d.ts +1 -0
- package/dist/esm/types/components/placeholders/content-placeholder/content-placeholder.d.ts +6 -0
- package/dist/esm/types/components/placeholders/content-placeholder/index.d.ts +1 -0
- package/dist/esm/types/components/placeholders/index.d.ts +5 -0
- package/dist/esm/types/components/placeholders/lorem-ipsum-placeholder/index.d.ts +1 -0
- package/dist/esm/types/components/placeholders/lorem-ipsum-placeholder/lorem-ipsum-placeholder.d.ts +8 -0
- package/dist/esm/types/components/placeholders/skeleton-card/index.d.ts +1 -0
- package/dist/esm/types/components/placeholders/skeleton-card/skeleton-card.d.ts +5 -0
- package/dist/esm/types/components/placeholders/skeleton-grid/index.d.ts +1 -0
- package/dist/esm/types/components/placeholders/skeleton-grid/skeleton-grid.d.ts +4 -0
- package/dist/esm/types/generators/index.d.ts +1 -0
- package/dist/esm/types/{components → generators}/table-list/table-list.d.ts +2 -2
- package/dist/esm/types/layouts/app-bar-with-drawer-layout/app-bar-with-drawer-layout.d.ts +2 -2
- package/dist/index.d.ts +393 -329
- package/package.json +15 -14
- package/src/components/{app-bar → app-bars/app-bar}/app-bar.stories.tsx +3 -3
- package/src/components/{app-bar → app-bars/app-bar}/app-bar.test.tsx +1 -1
- package/src/components/{app-bar → app-bars/app-bar}/app-bar.tsx +1 -1
- package/src/components/{app-bar → app-bars/app-bar}/mini-app-bar/mini-app-bar.tsx +2 -2
- package/src/components/app-bars/app-bars.stories.mdx +10 -0
- package/src/components/app-bars/index.ts +1 -0
- package/src/components/components.stories.mdx +19 -0
- package/src/components/{center-container → containers/center-container}/center-container.stories.tsx +3 -3
- package/src/components/containers/containers.stories.mdx +11 -0
- package/src/components/{content → containers/content}/content.stories.tsx +3 -3
- package/src/components/containers/index.ts +2 -0
- package/src/components/{bullet → data-display/bullet}/bullet.stories.tsx +2 -2
- package/src/components/data-display/data-display.stories.mdx +12 -0
- package/src/components/{header → data-display/header}/header.stories.tsx +16 -2
- package/src/components/{header → data-display/header}/header.test.tsx +37 -12
- package/src/components/{header → data-display/header}/header.tsx +15 -2
- package/src/components/{header → data-display/header}/header.types.ts +20 -0
- package/src/components/data-display/index.ts +3 -0
- package/src/components/{label → data-display/label}/label.stories.tsx +2 -2
- package/src/components/{drawer → drawers/drawer}/drawer.mock.tsx +27 -0
- package/src/components/{drawer → drawers/drawer}/drawer.types.ts +12 -3
- package/src/components/{drawer → drawers/drawer}/mini-drawer/mini-drawer.stories.tsx +3 -3
- package/src/components/{drawer → drawers/drawer}/mini-drawer/mini-drawer.tsx +1 -2
- package/src/components/drawers/drawer-collapsable-item/drawer-collapsable-item.test.tsx +62 -0
- package/src/components/drawers/drawer-collapsable-item/drawer-collapsable-item.tsx +78 -0
- package/src/components/drawers/drawer-collapsable-item/index.ts +1 -0
- package/src/components/{drawer-content → drawers/drawer-content}/drawer-content.stories.tsx +3 -2
- package/src/components/{drawer-content → drawers/drawer-content}/drawer-content.test.tsx +25 -0
- package/src/components/{drawer-content → drawers/drawer-content}/drawer-content.tsx +5 -4
- package/src/components/{drawer-item → drawers/drawer-item}/drawer-item.stories.tsx +2 -3
- package/src/components/{drawer-item → drawers/drawer-item}/drawer-item.tsx +23 -5
- package/src/components/{drawer-section → drawers/drawer-section}/drawer-section.stories.tsx +3 -3
- package/src/components/drawers/drawer-section/drawer-section.tsx +65 -0
- package/src/components/drawers/drawers.stories.mdx +13 -0
- package/src/components/drawers/index.ts +4 -0
- package/src/components/feedback/feedback.stories.mdx +12 -0
- package/src/components/feedback/index.ts +2 -0
- package/src/components/{loading-area → feedback/loading-area}/loading-area.stories.tsx +2 -2
- package/src/components/{query-container → feedback/query-container}/query-container.stories.tsx +2 -2
- package/src/components/index.ts +9 -18
- package/src/components/{enhanced-select → inputs/enhanced-select}/enhanced-select.stories.tsx +2 -2
- package/src/components/{enhanced-select → inputs/enhanced-select}/enhanced-select.tsx +1 -1
- package/src/components/inputs/index.ts +2 -0
- package/src/components/inputs/inputs.stories.mdx +11 -0
- package/src/components/{sign-in → inputs/sign-in}/sign-in.stories.tsx +2 -2
- package/src/components/navigation/index.ts +1 -0
- package/src/components/navigation/navigation.stories.mdx +10 -0
- package/src/components/{tab → navigation/tab}/tab-card/tab-card.dummy.tsx +1 -1
- package/src/components/{tab → navigation/tab}/tab-card/tab-card.stories.tsx +2 -2
- package/src/components/{tab → navigation/tab}/tab-panel/tab-panel.test.tsx +1 -1
- package/src/{tests → components/placeholders/content-placeholder}/content-placeholder.stories.tsx +3 -4
- package/src/components/placeholders/content-placeholder/content-placeholder.tsx +17 -0
- package/src/components/placeholders/content-placeholder/index.ts +1 -0
- package/src/components/placeholders/index.ts +5 -0
- package/src/components/placeholders/lorem-ipsum-placeholder/index.ts +1 -0
- package/src/components/placeholders/lorem-ipsum-placeholder/lorem-ipsum-placeholder.stories.tsx +15 -0
- package/src/components/placeholders/lorem-ipsum-placeholder/lorem-ipsum-placeholder.tsx +26 -0
- package/src/components/{placeholder → placeholders/placeholder}/placeholder.stories.tsx +2 -2
- package/src/components/placeholders/placeholders.stories.mdx +14 -0
- package/src/components/placeholders/skeleton-card/index.ts +1 -0
- package/src/{tests → components/placeholders/skeleton-card}/skeleton-card.stories.tsx +3 -3
- package/src/components/placeholders/skeleton-card/skeleton-card.tsx +17 -0
- package/src/components/placeholders/skeleton-grid/index.ts +1 -0
- package/src/components/placeholders/skeleton-grid/skeleton-grid.stories.tsx +15 -0
- package/src/components/placeholders/skeleton-grid/skeleton-grid.tsx +20 -0
- package/src/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.stories.tsx +1 -1
- package/src/components/{table → tables}/enhanced-table/enhanced-table.stories.tsx +1 -1
- package/src/components/tables/table.stories.mdx +11 -0
- package/src/components/value-displays/group-value-card/group-value-card.stories.tsx +2 -2
- package/src/components/value-displays/group-value-card/group-value-card.test.tsx +2 -2
- package/src/components/value-displays/value-boolean/value-boolean.stories.tsx +1 -1
- package/src/components/value-displays/value-boolean/value-boolean.tsx +1 -1
- package/src/components/value-displays/value-card/value-card.stories.tsx +1 -1
- package/src/components/value-displays/value-content/value-content.stories.tsx +1 -1
- package/src/components/value-displays/value-content/value-content.tsx +1 -2
- package/src/components/value-displays/value-datetime/value-datetime.stories.tsx +1 -1
- package/src/components/value-displays/value-datetime/value-datetime.tsx +1 -1
- package/src/components/value-displays/value-displays.stories.mdx +16 -0
- package/src/components/value-displays/value-image/value-image.stories.tsx +1 -1
- package/src/components/value-displays/value-image/value-image.test.tsx +1 -1
- package/src/components/value-displays/value-text/value-text.stories.tsx +1 -1
- package/src/generators/generators.stories.mdx +13 -0
- package/src/generators/index.ts +1 -0
- package/src/generators/model-router/screens/list-screen.tsx +2 -1
- package/src/generators/model-router/stories/model-router.stories.tsx +1 -1
- package/src/{components → generators}/table-list/table-list.stories.tsx +1 -1
- package/src/{components → generators}/table-list/table-list.test.tsx +2 -2
- package/src/{components → generators}/table-list/table-list.tsx +2 -2
- package/src/layouts/app-bar-with-drawer-layout/app-bar-with-drawer-layout.stories.tsx +3 -4
- package/src/layouts/app-bar-with-drawer-layout/app-bar-with-drawer-layout.tsx +3 -3
- package/src/layouts/header-layout/header-layout.stories.tsx +6 -5
- package/src/layouts/header-layout/header-layout.tsx +1 -1
- package/src/layouts/layouts.stories.mdx +11 -0
- package/src/providers/notification-center/notification-center.stories.tsx +2 -2
- package/src/stories/Introduction.stories.mdx +10 -185
- package/src/stories/getting-started.stories.mdx +23 -0
- package/src/tests/datatable-placeholder/datatable-placeholder.stories.tsx +15 -0
- package/src/tests/datatable-placeholder/datatable-placeholder.tsx +40 -0
- package/src/tests/datatable-placeholder/index.ts +1 -0
- package/src/types.d.ts +4 -0
- package/src/components/drawer-section/drawer-section.tsx +0 -40
- package/src/tests/components.tsx +0 -94
- /package/dist/cjs/types/components/{app-bar → app-bars/app-bar}/app-bar.d.ts +0 -0
- /package/dist/cjs/types/components/{app-bar → app-bars/app-bar}/app-bar.types.d.ts +0 -0
- /package/dist/cjs/types/components/{app-bar → app-bars/app-bar}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{app-bar → app-bars/app-bar}/mini-app-bar/index.d.ts +0 -0
- /package/dist/cjs/types/components/{app-bar → app-bars/app-bar}/mini-app-bar/mini-app-bar.d.ts +0 -0
- /package/dist/cjs/types/components/{center-container → containers/center-container}/center-container.d.ts +0 -0
- /package/dist/cjs/types/components/{center-container → containers/center-container}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{content → containers/content}/content.d.ts +0 -0
- /package/dist/cjs/types/components/{content → containers/content}/content.types.d.ts +0 -0
- /package/dist/cjs/types/components/{content → containers/content}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{bullet → data-display/bullet}/bullet.d.ts +0 -0
- /package/dist/cjs/types/components/{bullet → data-display/bullet}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{header → data-display/header}/header.d.ts +0 -0
- /package/dist/cjs/types/components/{header → data-display/header}/header.dummy.d.ts +0 -0
- /package/dist/cjs/types/components/{header → data-display/header}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{label → data-display/label}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{label → data-display/label}/label.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.context.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.mixins.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.mock.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/drawer.provider.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/mini-drawer/index.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer → drawers/drawer}/mini-drawer/mini-drawer.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer-content → drawers/drawer-content}/drawer-content.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer-content → drawers/drawer-content}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer-item → drawers/drawer-item}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer-section → drawers/drawer-section}/drawer-section.mock.d.ts +0 -0
- /package/dist/cjs/types/components/{drawer-section → drawers/drawer-section}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{loading-area → feedback/loading-area}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{loading-area → feedback/loading-area}/loading-area.d.ts +0 -0
- /package/dist/cjs/types/components/{query-container → feedback/query-container}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{query-container → feedback/query-container}/query-container.d.ts +0 -0
- /package/dist/cjs/types/components/{enhanced-select → inputs/enhanced-select}/enhanced-select.d.ts +0 -0
- /package/dist/cjs/types/components/{enhanced-select → inputs/enhanced-select}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{sign-in → inputs/sign-in}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{sign-in → inputs/sign-in}/sign-in.d.ts +0 -0
- /package/dist/cjs/types/components/{link → navigation/link}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{link → navigation/link}/link.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/tab-card/index.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/tab-card/tab-card.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/tab-card/tab-card.dummy.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/tab-panel/index.d.ts +0 -0
- /package/dist/cjs/types/components/{tab → navigation/tab}/tab-panel/tab-panel.d.ts +0 -0
- /package/dist/cjs/types/components/{placeholder → placeholders/placeholder}/index.d.ts +0 -0
- /package/dist/cjs/types/components/{placeholder → placeholders/placeholder}/placeholder.d.ts +0 -0
- /package/dist/cjs/types/components/{placeholder → placeholders/placeholder}/placeholder.mock.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.mock.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-remote-table/index.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-table/enhanced-table-head.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-table/enhanced-table.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-table/enhanced-table.mock.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/enhanced-table/index.d.ts +0 -0
- /package/dist/cjs/types/components/{table → tables}/index.d.ts +0 -0
- /package/dist/cjs/types/{components → generators}/table-list/index.d.ts +0 -0
- /package/dist/esm/types/components/{app-bar → app-bars/app-bar}/app-bar.d.ts +0 -0
- /package/dist/esm/types/components/{app-bar → app-bars/app-bar}/app-bar.types.d.ts +0 -0
- /package/dist/esm/types/components/{app-bar → app-bars/app-bar}/index.d.ts +0 -0
- /package/dist/esm/types/components/{app-bar → app-bars/app-bar}/mini-app-bar/index.d.ts +0 -0
- /package/dist/esm/types/components/{app-bar → app-bars/app-bar}/mini-app-bar/mini-app-bar.d.ts +0 -0
- /package/dist/esm/types/components/{center-container → containers/center-container}/center-container.d.ts +0 -0
- /package/dist/esm/types/components/{center-container → containers/center-container}/index.d.ts +0 -0
- /package/dist/esm/types/components/{content → containers/content}/content.d.ts +0 -0
- /package/dist/esm/types/components/{content → containers/content}/content.types.d.ts +0 -0
- /package/dist/esm/types/components/{content → containers/content}/index.d.ts +0 -0
- /package/dist/esm/types/components/{bullet → data-display/bullet}/bullet.d.ts +0 -0
- /package/dist/esm/types/components/{bullet → data-display/bullet}/index.d.ts +0 -0
- /package/dist/esm/types/components/{header → data-display/header}/header.d.ts +0 -0
- /package/dist/esm/types/components/{header → data-display/header}/header.dummy.d.ts +0 -0
- /package/dist/esm/types/components/{header → data-display/header}/index.d.ts +0 -0
- /package/dist/esm/types/components/{label → data-display/label}/index.d.ts +0 -0
- /package/dist/esm/types/components/{label → data-display/label}/label.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.context.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.mixins.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.mock.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/drawer.provider.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/index.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/mini-drawer/index.d.ts +0 -0
- /package/dist/esm/types/components/{drawer → drawers/drawer}/mini-drawer/mini-drawer.d.ts +0 -0
- /package/dist/esm/types/components/{drawer-content → drawers/drawer-content}/drawer-content.d.ts +0 -0
- /package/dist/esm/types/components/{drawer-content → drawers/drawer-content}/index.d.ts +0 -0
- /package/dist/esm/types/components/{drawer-item → drawers/drawer-item}/index.d.ts +0 -0
- /package/dist/esm/types/components/{drawer-section → drawers/drawer-section}/drawer-section.mock.d.ts +0 -0
- /package/dist/esm/types/components/{drawer-section → drawers/drawer-section}/index.d.ts +0 -0
- /package/dist/esm/types/components/{loading-area → feedback/loading-area}/index.d.ts +0 -0
- /package/dist/esm/types/components/{loading-area → feedback/loading-area}/loading-area.d.ts +0 -0
- /package/dist/esm/types/components/{query-container → feedback/query-container}/index.d.ts +0 -0
- /package/dist/esm/types/components/{query-container → feedback/query-container}/query-container.d.ts +0 -0
- /package/dist/esm/types/components/{enhanced-select → inputs/enhanced-select}/enhanced-select.d.ts +0 -0
- /package/dist/esm/types/components/{enhanced-select → inputs/enhanced-select}/index.d.ts +0 -0
- /package/dist/esm/types/components/{sign-in → inputs/sign-in}/index.d.ts +0 -0
- /package/dist/esm/types/components/{sign-in → inputs/sign-in}/sign-in.d.ts +0 -0
- /package/dist/esm/types/components/{link → navigation/link}/index.d.ts +0 -0
- /package/dist/esm/types/components/{link → navigation/link}/link.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/index.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/tab-card/index.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/tab-card/tab-card.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/tab-card/tab-card.dummy.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/tab-panel/index.d.ts +0 -0
- /package/dist/esm/types/components/{tab → navigation/tab}/tab-panel/tab-panel.d.ts +0 -0
- /package/dist/esm/types/components/{placeholder → placeholders/placeholder}/index.d.ts +0 -0
- /package/dist/esm/types/components/{placeholder → placeholders/placeholder}/placeholder.d.ts +0 -0
- /package/dist/esm/types/components/{placeholder → placeholders/placeholder}/placeholder.mock.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.mock.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-remote-table/index.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-table/enhanced-table-head.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-table/enhanced-table.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-table/enhanced-table.mock.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/enhanced-table/index.d.ts +0 -0
- /package/dist/esm/types/components/{table → tables}/index.d.ts +0 -0
- /package/dist/esm/types/{components → generators}/table-list/index.d.ts +0 -0
- /package/src/components/{app-bar → app-bars/app-bar}/app-bar.types.ts +0 -0
- /package/src/components/{app-bar → app-bars/app-bar}/index.ts +0 -0
- /package/src/components/{app-bar → app-bars/app-bar}/mini-app-bar/index.ts +0 -0
- /package/src/components/{center-container → containers/center-container}/center-container.test.tsx +0 -0
- /package/src/components/{center-container → containers/center-container}/center-container.tsx +0 -0
- /package/src/components/{center-container → containers/center-container}/index.ts +0 -0
- /package/src/components/{content → containers/content}/content.test.tsx +0 -0
- /package/src/components/{content → containers/content}/content.tsx +0 -0
- /package/src/components/{content → containers/content}/content.types.ts +0 -0
- /package/src/components/{content → containers/content}/index.ts +0 -0
- /package/src/components/{bullet → data-display/bullet}/bullet.test.tsx +0 -0
- /package/src/components/{bullet → data-display/bullet}/bullet.tsx +0 -0
- /package/src/components/{bullet → data-display/bullet}/index.ts +0 -0
- /package/src/components/{header → data-display/header}/header.dummy.ts +0 -0
- /package/src/components/{header → data-display/header}/index.ts +0 -0
- /package/src/components/{label → data-display/label}/index.ts +0 -0
- /package/src/components/{label → data-display/label}/label.test.tsx +0 -0
- /package/src/components/{label → data-display/label}/label.tsx +0 -0
- /package/src/components/{drawer → drawers/drawer}/__snapshots__/drawer.test.tsx.snap +0 -0
- /package/src/components/{drawer → drawers/drawer}/drawer.context.ts +0 -0
- /package/src/components/{drawer → drawers/drawer}/drawer.mixins.ts +0 -0
- /package/src/components/{drawer → drawers/drawer}/drawer.provider.tsx +0 -0
- /package/src/components/{drawer → drawers/drawer}/drawer.test.tsx +0 -0
- /package/src/components/{drawer → drawers/drawer}/drawer.tsx +0 -0
- /package/src/components/{drawer → drawers/drawer}/index.ts +0 -0
- /package/src/components/{drawer → drawers/drawer}/mini-drawer/index.ts +0 -0
- /package/src/components/{drawer-content → drawers/drawer-content}/index.ts +0 -0
- /package/src/components/{drawer-item → drawers/drawer-item}/drawer-item.test.tsx +0 -0
- /package/src/components/{drawer-item → drawers/drawer-item}/index.ts +0 -0
- /package/src/components/{drawer-section → drawers/drawer-section}/drawer-section.mock.tsx +0 -0
- /package/src/components/{drawer-section → drawers/drawer-section}/drawer-section.test.tsx +0 -0
- /package/src/components/{drawer-section → drawers/drawer-section}/index.ts +0 -0
- /package/src/components/{loading-area → feedback/loading-area}/index.ts +0 -0
- /package/src/components/{loading-area → feedback/loading-area}/loading-area.test.tsx +0 -0
- /package/src/components/{loading-area → feedback/loading-area}/loading-area.tsx +0 -0
- /package/src/components/{query-container → feedback/query-container}/index.ts +0 -0
- /package/src/components/{query-container → feedback/query-container}/query-container.test.tsx +0 -0
- /package/src/components/{query-container → feedback/query-container}/query-container.tsx +0 -0
- /package/src/components/{enhanced-select → inputs/enhanced-select}/enhanced-select.test.tsx +0 -0
- /package/src/components/{enhanced-select → inputs/enhanced-select}/index.ts +0 -0
- /package/src/components/{sign-in → inputs/sign-in}/index.ts +0 -0
- /package/src/components/{sign-in → inputs/sign-in}/sign-in.test.tsx +0 -0
- /package/src/components/{sign-in → inputs/sign-in}/sign-in.tsx +0 -0
- /package/src/components/{link → navigation/link}/index.ts +0 -0
- /package/src/components/{link → navigation/link}/link.tsx +0 -0
- /package/src/components/{tab → navigation/tab}/index.ts +0 -0
- /package/src/components/{tab → navigation/tab}/tab-card/index.ts +0 -0
- /package/src/components/{tab → navigation/tab}/tab-card/tab-card.test.tsx +0 -0
- /package/src/components/{tab → navigation/tab}/tab-card/tab-card.tsx +0 -0
- /package/src/components/{tab → navigation/tab}/tab-panel/index.ts +0 -0
- /package/src/components/{tab → navigation/tab}/tab-panel/tab-panel.tsx +0 -0
- /package/src/components/{placeholder → placeholders/placeholder}/index.ts +0 -0
- /package/src/components/{placeholder → placeholders/placeholder}/placeholder.mock.ts +0 -0
- /package/src/components/{placeholder → placeholders/placeholder}/placeholder.test.tsx +0 -0
- /package/src/components/{placeholder → placeholders/placeholder}/placeholder.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.mock.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.test.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-remote-table/enhanced-remote-table.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-remote-table/index.ts +0 -0
- /package/src/components/{table → tables}/enhanced-table/enhanced-table-head.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-table/enhanced-table.mock.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-table/enhanced-table.test.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-table/enhanced-table.tsx +0 -0
- /package/src/components/{table → tables}/enhanced-table/index.ts +0 -0
- /package/src/components/{table → tables}/index.ts +0 -0
- /package/src/{components → generators}/table-list/index.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,168 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as _mui_material from '@mui/material';
|
|
3
|
-
import { PropTypes, LinkProps as LinkProps$1, AppBarProps as AppBarProps$1, DrawerProps as DrawerProps$1, SxProps, Theme, GridProps, Color, AlertColor } from '@mui/material';
|
|
4
2
|
import * as React from 'react';
|
|
5
|
-
import React__default, { FunctionComponent, ReactElement,
|
|
6
|
-
import
|
|
3
|
+
import React__default, { PropsWithChildren, FunctionComponent, ReactElement, ReactNode, Dispatch, SetStateAction } from 'react';
|
|
4
|
+
import * as _mui_material from '@mui/material';
|
|
5
|
+
import { GridProps, AppBarProps as AppBarProps$1, PropTypes, SxProps, Theme, DrawerProps as DrawerProps$1, Color, AlertColor } from '@mui/material';
|
|
7
6
|
import * as _emotion_styled from '@emotion/styled';
|
|
8
7
|
import * as _mui_system from '@mui/system';
|
|
9
8
|
import { SelectInputProps } from '@mui/material/Select/SelectInput';
|
|
9
|
+
import { Variant } from '@mui/material/styles/createTypography';
|
|
10
|
+
import { LoremUnit } from 'lorem-ipsum/types/src/constants/units';
|
|
11
|
+
|
|
12
|
+
interface BaseValueProps<T> {
|
|
13
|
+
/**
|
|
14
|
+
* Name of the displayed value
|
|
15
|
+
*/
|
|
16
|
+
label: string;
|
|
17
|
+
/**
|
|
18
|
+
* Value displayed
|
|
19
|
+
*/
|
|
20
|
+
value?: T;
|
|
21
|
+
/**
|
|
22
|
+
* String rendered if value is undefined
|
|
23
|
+
*/
|
|
24
|
+
placeholder?: string;
|
|
25
|
+
}
|
|
26
|
+
declare const DefaultPlaceholder = "-";
|
|
27
|
+
|
|
28
|
+
type ValueTextProps = BaseValueProps<string>;
|
|
29
|
+
/**
|
|
30
|
+
* Displays a string value with a label
|
|
31
|
+
*/
|
|
32
|
+
declare const ValueText: ({ label, value: valueProp, placeholder, }: ValueTextProps) => JSX.Element;
|
|
33
|
+
|
|
34
|
+
type ValueCardProps = PropsWithChildren;
|
|
35
|
+
/**
|
|
36
|
+
* Container to show a labeled value
|
|
37
|
+
*/
|
|
38
|
+
declare const ValueCard: ({ children }: ValueCardProps) => JSX.Element;
|
|
39
|
+
|
|
40
|
+
type ValueBooleanProps = BaseValueProps<boolean>;
|
|
41
|
+
/**
|
|
42
|
+
* Displays a boolean value with a label
|
|
43
|
+
*/
|
|
44
|
+
declare const ValueBoolean: ({ label, value, placeholder, }: ValueBooleanProps) => JSX.Element;
|
|
45
|
+
|
|
46
|
+
interface ValueDatetimeProps extends BaseValueProps<Date> {
|
|
47
|
+
/**
|
|
48
|
+
* Datetime format
|
|
49
|
+
*/
|
|
50
|
+
format: string;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Displays a formated datetime with a label
|
|
54
|
+
*/
|
|
55
|
+
declare const ValueDatetime: ({ label, value: valueProp, format: fmt, placeholder, }: ValueDatetimeProps) => JSX.Element;
|
|
56
|
+
|
|
57
|
+
type GroupValueItemProps = PropsWithChildren<Omit<GridProps, "item" | "container"> & {
|
|
58
|
+
bordered?: boolean;
|
|
59
|
+
}>;
|
|
60
|
+
type GroupValueItemComponent = FunctionComponent<GroupValueItemProps>;
|
|
61
|
+
type GroupValueItemElement = ReactElement<GroupValueItemProps, GroupValueItemComponent>;
|
|
62
|
+
declare const groupValueItemClasses: {
|
|
63
|
+
root: string;
|
|
64
|
+
};
|
|
65
|
+
declare const GroupValueItem: GroupValueItemComponent;
|
|
66
|
+
interface GroupValueCardProps {
|
|
67
|
+
title: string;
|
|
68
|
+
subtitle?: string;
|
|
69
|
+
centered?: boolean;
|
|
70
|
+
children: GroupValueItemElement | GroupValueItemElement[];
|
|
71
|
+
}
|
|
72
|
+
declare const GroupValueCard: ({ title, subtitle, centered, children }: GroupValueCardProps) => JSX.Element;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Displays a centered loading indicator
|
|
76
|
+
*/
|
|
77
|
+
declare const LoadingArea: () => JSX.Element;
|
|
78
|
+
|
|
79
|
+
interface QueryContainerError {
|
|
80
|
+
/**
|
|
81
|
+
* The error title
|
|
82
|
+
*/
|
|
83
|
+
name?: string;
|
|
84
|
+
/**
|
|
85
|
+
* The description of the error
|
|
86
|
+
*/
|
|
87
|
+
message: string;
|
|
88
|
+
}
|
|
89
|
+
interface QueryContainerSuccess {
|
|
90
|
+
/**
|
|
91
|
+
* The success title
|
|
92
|
+
*/
|
|
93
|
+
name?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The success text
|
|
96
|
+
*/
|
|
97
|
+
message: string;
|
|
98
|
+
}
|
|
99
|
+
type QueryContainerProps = PropsWithChildren<{
|
|
100
|
+
/**
|
|
101
|
+
* There is a query in progress
|
|
102
|
+
*/
|
|
103
|
+
isFetching: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* The query has returned an error
|
|
106
|
+
*/
|
|
107
|
+
error?: QueryContainerError;
|
|
108
|
+
/**
|
|
109
|
+
* The query has finished successfully
|
|
110
|
+
*/
|
|
111
|
+
success?: QueryContainerSuccess;
|
|
112
|
+
}>;
|
|
113
|
+
/**
|
|
114
|
+
* Component to show different indicators based on the usual api query statuses
|
|
115
|
+
*/
|
|
116
|
+
declare function QueryContainer({ isFetching, error, success, children }: QueryContainerProps): JSX.Element;
|
|
117
|
+
|
|
118
|
+
interface AppBarProfile {
|
|
119
|
+
name: string;
|
|
120
|
+
}
|
|
121
|
+
interface AppBarProps extends AppBarProps$1 {
|
|
122
|
+
menu?: boolean;
|
|
123
|
+
title?: string;
|
|
124
|
+
search?: boolean;
|
|
125
|
+
profile?: AppBarProfile;
|
|
126
|
+
onClickSignOut: () => void;
|
|
127
|
+
}
|
|
128
|
+
type AppBarComponent = FunctionComponent<AppBarProps>;
|
|
129
|
+
type AppBarElement = ReactElement<AppBarProps, AppBarComponent>;
|
|
130
|
+
|
|
131
|
+
declare const MiniAppBar: AppBarComponent;
|
|
132
|
+
|
|
133
|
+
type BulletVariant = "primary" | "secondary" | "default" | "info" | "warning" | "error";
|
|
134
|
+
declare const bulletClasses: {
|
|
135
|
+
root: string;
|
|
136
|
+
};
|
|
137
|
+
interface BulletProps {
|
|
138
|
+
/**
|
|
139
|
+
* Color palette used to draw the component
|
|
140
|
+
*/
|
|
141
|
+
variant?: BulletVariant;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Dot to attract the user attention
|
|
145
|
+
*/
|
|
146
|
+
declare const Bullet: ({ variant }: BulletProps) => JSX.Element;
|
|
147
|
+
|
|
148
|
+
type LabelVariant = "primary" | "secondary" | "default" | "info" | "warning" | "error";
|
|
149
|
+
declare const labelClasses: {
|
|
150
|
+
root: string;
|
|
151
|
+
};
|
|
152
|
+
interface LabelProps {
|
|
153
|
+
/**
|
|
154
|
+
* Content of the component
|
|
155
|
+
*/
|
|
156
|
+
text: string;
|
|
157
|
+
/**
|
|
158
|
+
* Color palette used to draw the component
|
|
159
|
+
*/
|
|
160
|
+
variant?: LabelVariant;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Compact element to represent a text
|
|
164
|
+
*/
|
|
165
|
+
declare const Label: ({ text, variant }: LabelProps) => JSX.Element;
|
|
10
166
|
|
|
11
167
|
type HeaderPreset = PropTypes.Color | "transparent";
|
|
12
168
|
type HeaderActionVariant = "text" | "outlined" | "contained";
|
|
@@ -27,6 +183,20 @@ interface HeaderTab {
|
|
|
27
183
|
label: string;
|
|
28
184
|
disabled?: boolean;
|
|
29
185
|
}
|
|
186
|
+
interface HeaderNavigationButton {
|
|
187
|
+
/**
|
|
188
|
+
* Button text
|
|
189
|
+
*/
|
|
190
|
+
text: string;
|
|
191
|
+
/**
|
|
192
|
+
* Url where the user has to be redirected
|
|
193
|
+
*/
|
|
194
|
+
href: string;
|
|
195
|
+
/**
|
|
196
|
+
* Icon to be shown before the button
|
|
197
|
+
*/
|
|
198
|
+
icon?: ReactElement;
|
|
199
|
+
}
|
|
30
200
|
type HeaderProps = {
|
|
31
201
|
/**
|
|
32
202
|
* Title of the header
|
|
@@ -58,6 +228,11 @@ type HeaderProps = {
|
|
|
58
228
|
* If is set, a list of tabs is dispayed at the bottom
|
|
59
229
|
*/
|
|
60
230
|
tabs?: HeaderTab[];
|
|
231
|
+
/**
|
|
232
|
+
* A single button that helps the user to navigate to
|
|
233
|
+
* a screen related to the current screen
|
|
234
|
+
*/
|
|
235
|
+
navigationButton?: HeaderNavigationButton;
|
|
61
236
|
};
|
|
62
237
|
type HeaderComponent = FunctionComponent<HeaderProps>;
|
|
63
238
|
type HeaderElement = ReactElement<HeaderProps, HeaderComponent>;
|
|
@@ -68,49 +243,165 @@ type HeaderElement = ReactElement<HeaderProps, HeaderComponent>;
|
|
|
68
243
|
*/
|
|
69
244
|
declare const Header: HeaderComponent;
|
|
70
245
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
declare const Link: React__default.ForwardRefExoticComponent<Omit<LinkProps$1<"a", {}>, "ref"> & React__default.RefAttributes<any>>;
|
|
246
|
+
type ContentProps = PropsWithChildren;
|
|
247
|
+
type ContentComponent = FunctionComponent<ContentProps>;
|
|
248
|
+
type ContentElement = ReactElement<ContentElement, ContentComponent>;
|
|
75
249
|
|
|
76
|
-
|
|
250
|
+
declare const Content: ({ children }: ContentProps) => JSX.Element;
|
|
251
|
+
|
|
252
|
+
interface CenterContainerProps {
|
|
253
|
+
children: ReactNode | undefined;
|
|
254
|
+
centerVertical?: boolean;
|
|
255
|
+
centerHorizontal?: boolean;
|
|
256
|
+
sx?: SxProps<Theme>;
|
|
257
|
+
}
|
|
258
|
+
declare function CenterContainer({ children, centerVertical, centerHorizontal, sx, }: CenterContainerProps): JSX.Element;
|
|
259
|
+
|
|
260
|
+
interface NavItemAvatar {
|
|
261
|
+
src: string;
|
|
262
|
+
alt: string;
|
|
263
|
+
}
|
|
264
|
+
interface NavItemLabel {
|
|
265
|
+
text: string;
|
|
266
|
+
variant: LabelVariant;
|
|
267
|
+
}
|
|
268
|
+
interface NavItemBullet {
|
|
269
|
+
variant: BulletVariant;
|
|
270
|
+
}
|
|
271
|
+
interface NavItemLink {
|
|
272
|
+
id: string;
|
|
273
|
+
text: string;
|
|
274
|
+
href: string;
|
|
275
|
+
icon?: ReactElement;
|
|
276
|
+
avatar?: NavItemAvatar;
|
|
277
|
+
label?: NavItemLabel;
|
|
278
|
+
bullet?: NavItemBullet;
|
|
279
|
+
}
|
|
280
|
+
type NavItemCollapsable = Pick<NavItemLink, "id" | "text" | "icon"> & {
|
|
281
|
+
items: NavItemLink[];
|
|
282
|
+
};
|
|
283
|
+
type NavItem = NavItemLink | NavItemCollapsable;
|
|
284
|
+
interface NavSection {
|
|
285
|
+
title?: string;
|
|
286
|
+
items: NavItem[];
|
|
287
|
+
}
|
|
288
|
+
interface Nav {
|
|
289
|
+
items: NavSection[];
|
|
290
|
+
}
|
|
291
|
+
interface DrawerContentProps {
|
|
77
292
|
/**
|
|
78
|
-
*
|
|
293
|
+
* Item currently selected in the navigation
|
|
79
294
|
*/
|
|
80
|
-
|
|
295
|
+
selectedItem?: string;
|
|
81
296
|
/**
|
|
82
|
-
*
|
|
297
|
+
* Object with the content that has to be rendered
|
|
83
298
|
*/
|
|
84
|
-
|
|
299
|
+
nav: Nav;
|
|
85
300
|
}
|
|
86
|
-
|
|
301
|
+
type DrawerContentComponent = FunctionComponent<DrawerContentProps>;
|
|
302
|
+
type DrawerContentElement = ReactElement<DrawerContentProps, DrawerContentComponent>;
|
|
303
|
+
interface DrawerProps extends DrawerProps$1 {
|
|
304
|
+
children: DrawerContentElement;
|
|
305
|
+
}
|
|
306
|
+
type DrawerComponent = FunctionComponent<DrawerProps>;
|
|
307
|
+
type DrawerElement = ReactElement<DrawerProps, DrawerComponent>;
|
|
308
|
+
|
|
309
|
+
declare const Drawer: DrawerComponent;
|
|
310
|
+
|
|
311
|
+
declare const MiniDrawer: _emotion_styled.StyledComponent<DrawerProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
312
|
+
|
|
313
|
+
type Props$1 = PropsWithChildren<{
|
|
314
|
+
initialOpen?: boolean;
|
|
315
|
+
}>;
|
|
316
|
+
declare const DrawerProvider: ({ children, initialOpen }: Props$1) => JSX.Element;
|
|
317
|
+
|
|
318
|
+
interface DrawerContextProps {
|
|
319
|
+
isOpen: boolean;
|
|
320
|
+
close(): void;
|
|
321
|
+
open(): void;
|
|
322
|
+
}
|
|
323
|
+
declare const DrawerContext: React.Context<DrawerContextProps | undefined>;
|
|
324
|
+
declare const UndefinedProvider: Error;
|
|
325
|
+
declare const useDrawer: () => DrawerContextProps;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Content to be shown inside a navigation
|
|
329
|
+
*/
|
|
330
|
+
declare const DrawerContent: DrawerContentComponent;
|
|
331
|
+
|
|
332
|
+
interface DrawerItemProps {
|
|
87
333
|
/**
|
|
88
|
-
*
|
|
334
|
+
* Text displayed inside the item
|
|
89
335
|
*/
|
|
90
|
-
|
|
336
|
+
text: string;
|
|
91
337
|
/**
|
|
92
|
-
*
|
|
338
|
+
* Url where the user is going to be redirected
|
|
339
|
+
* if the item is clicked
|
|
93
340
|
*/
|
|
94
|
-
|
|
341
|
+
href: string;
|
|
342
|
+
/**
|
|
343
|
+
* Icon displayed to the left
|
|
344
|
+
*/
|
|
345
|
+
icon?: ReactElement;
|
|
346
|
+
/**
|
|
347
|
+
* Avatar displayed to the left
|
|
348
|
+
*/
|
|
349
|
+
avatar?: NavItemAvatar;
|
|
350
|
+
/**
|
|
351
|
+
* Label with extra info displayed to the right
|
|
352
|
+
*/
|
|
353
|
+
label?: NavItemLabel;
|
|
354
|
+
/**
|
|
355
|
+
* Bullet to attract the user attention displyed to the right
|
|
356
|
+
*/
|
|
357
|
+
bullet?: NavItemBullet;
|
|
358
|
+
/**
|
|
359
|
+
* The item has to be marked as selected
|
|
360
|
+
*/
|
|
361
|
+
selected?: boolean;
|
|
362
|
+
/**
|
|
363
|
+
* Custom styles
|
|
364
|
+
*/
|
|
365
|
+
sx?: SxProps<Theme>;
|
|
95
366
|
}
|
|
96
|
-
|
|
367
|
+
/**
|
|
368
|
+
* Clicable item inside a drawer
|
|
369
|
+
*/
|
|
370
|
+
declare const DrawerItem: ({ text, icon, avatar, label, bullet, href, selected, sx, }: DrawerItemProps) => JSX.Element;
|
|
371
|
+
|
|
372
|
+
interface DrawerSectionProps {
|
|
97
373
|
/**
|
|
98
|
-
*
|
|
374
|
+
* Section title
|
|
99
375
|
*/
|
|
100
|
-
|
|
376
|
+
title?: string;
|
|
101
377
|
/**
|
|
102
|
-
*
|
|
378
|
+
* List of items of that section
|
|
103
379
|
*/
|
|
104
|
-
|
|
380
|
+
items: NavItem[];
|
|
105
381
|
/**
|
|
106
|
-
*
|
|
382
|
+
* Id of the item that has to be marked as selected
|
|
107
383
|
*/
|
|
108
|
-
|
|
109
|
-
}
|
|
384
|
+
selectedItem?: string;
|
|
385
|
+
}
|
|
110
386
|
/**
|
|
111
|
-
*
|
|
387
|
+
* Render a group of items inside the drawer
|
|
388
|
+
* with an optional title
|
|
112
389
|
*/
|
|
113
|
-
declare
|
|
390
|
+
declare const DrawerSection: ({ title, items, selectedItem }: DrawerSectionProps) => JSX.Element;
|
|
391
|
+
|
|
392
|
+
type EnhancedSelectSize = "small" | "medium";
|
|
393
|
+
interface EnhancedSelectProps<T> {
|
|
394
|
+
label: string;
|
|
395
|
+
value: T;
|
|
396
|
+
loading?: boolean;
|
|
397
|
+
fetching?: boolean;
|
|
398
|
+
size?: EnhancedSelectSize;
|
|
399
|
+
color?: string;
|
|
400
|
+
fullWidth?: boolean;
|
|
401
|
+
children?: ReactNode;
|
|
402
|
+
onChange?: SelectInputProps<T>["onChange"];
|
|
403
|
+
}
|
|
404
|
+
declare const EnhancedSelect: <T extends React__default.ReactNode>({ label, value, loading, fetching, size, fullWidth, color, children, onChange, }: EnhancedSelectProps<T>) => JSX.Element;
|
|
114
405
|
|
|
115
406
|
interface SignInProps {
|
|
116
407
|
title: string;
|
|
@@ -148,7 +439,7 @@ interface EnhancedTableHeadProps<T> {
|
|
|
148
439
|
}
|
|
149
440
|
declare const EnhancedTableHead: <T>({ order, orderBy, headCells, onRequestSort, }: EnhancedTableHeadProps<T>) => JSX.Element;
|
|
150
441
|
|
|
151
|
-
interface Props
|
|
442
|
+
interface Props<T> {
|
|
152
443
|
readonly data: T[];
|
|
153
444
|
search?: boolean;
|
|
154
445
|
defaultSort: keyof T;
|
|
@@ -158,7 +449,7 @@ interface Props$1<T> {
|
|
|
158
449
|
children: (data: T[]) => ReactNode;
|
|
159
450
|
}
|
|
160
451
|
declare const EnhancedTable: {
|
|
161
|
-
<T>({ children, data, search, columns, defaultSort, defaultOrder, loading, }: Props
|
|
452
|
+
<T>({ children, data, search, columns, defaultSort, defaultOrder, loading, }: Props<T>): JSX.Element;
|
|
162
453
|
defaultProps: {
|
|
163
454
|
defaultOrder: string;
|
|
164
455
|
};
|
|
@@ -175,113 +466,71 @@ interface EnhancedRemoteTableProps<T> {
|
|
|
175
466
|
}
|
|
176
467
|
declare const EnhancedRemoteTable: <T>({ children, data, loading, columns, defaultSort, defaultOrder, onRequestSort, }: EnhancedRemoteTableProps<T>) => JSX.Element;
|
|
177
468
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
}
|
|
181
|
-
interface AppBarProps extends AppBarProps$1 {
|
|
182
|
-
menu?: boolean;
|
|
183
|
-
title?: string;
|
|
184
|
-
search?: boolean;
|
|
185
|
-
profile?: AppBarProfile;
|
|
186
|
-
onClickSignOut: () => void;
|
|
187
|
-
}
|
|
188
|
-
type AppBarComponent = FunctionComponent<AppBarProps>;
|
|
189
|
-
type AppBarElement = ReactElement<AppBarProps, AppBarComponent>;
|
|
190
|
-
|
|
191
|
-
declare const MiniAppBar: AppBarComponent;
|
|
192
|
-
|
|
193
|
-
type BulletVariant = "primary" | "secondary" | "default" | "info" | "warning" | "error";
|
|
194
|
-
declare const bulletClasses: {
|
|
195
|
-
root: string;
|
|
196
|
-
};
|
|
197
|
-
interface BulletProps {
|
|
198
|
-
/**
|
|
199
|
-
* Color palette used to draw the component
|
|
200
|
-
*/
|
|
201
|
-
variant?: BulletVariant;
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
* Dot to attract the user attention
|
|
205
|
-
*/
|
|
206
|
-
declare const Bullet: ({ variant }: BulletProps) => JSX.Element;
|
|
207
|
-
|
|
208
|
-
type LabelVariant = "primary" | "secondary" | "default" | "info" | "warning" | "error";
|
|
209
|
-
declare const labelClasses: {
|
|
210
|
-
root: string;
|
|
211
|
-
};
|
|
212
|
-
interface LabelProps {
|
|
213
|
-
/**
|
|
214
|
-
* Content of the component
|
|
215
|
-
*/
|
|
216
|
-
text: string;
|
|
217
|
-
/**
|
|
218
|
-
* Color palette used to draw the component
|
|
219
|
-
*/
|
|
220
|
-
variant?: LabelVariant;
|
|
221
|
-
}
|
|
222
|
-
/**
|
|
223
|
-
* Compact element to represent a text
|
|
224
|
-
*/
|
|
225
|
-
declare const Label: ({ text, variant }: LabelProps) => JSX.Element;
|
|
226
|
-
|
|
227
|
-
interface NavItemAvatar {
|
|
228
|
-
src: string;
|
|
229
|
-
alt: string;
|
|
230
|
-
}
|
|
231
|
-
interface NavItemLabel {
|
|
232
|
-
text: string;
|
|
233
|
-
variant: LabelVariant;
|
|
234
|
-
}
|
|
235
|
-
interface NavItemBullet {
|
|
236
|
-
variant: BulletVariant;
|
|
237
|
-
}
|
|
238
|
-
interface NavItem {
|
|
469
|
+
type IconColor = "inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning";
|
|
470
|
+
interface PlaceholderAction {
|
|
239
471
|
id: string;
|
|
240
472
|
text: string;
|
|
241
|
-
href
|
|
242
|
-
|
|
243
|
-
avatar?: NavItemAvatar;
|
|
244
|
-
label?: NavItemLabel;
|
|
245
|
-
bullet?: NavItemBullet;
|
|
246
|
-
}
|
|
247
|
-
interface NavSection {
|
|
248
|
-
title?: string;
|
|
249
|
-
items: NavItem[];
|
|
250
|
-
}
|
|
251
|
-
interface Nav {
|
|
252
|
-
items: NavSection[];
|
|
473
|
+
href?: string;
|
|
474
|
+
onClick?: () => void;
|
|
253
475
|
}
|
|
254
|
-
interface
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
*/
|
|
258
|
-
nav: Nav;
|
|
476
|
+
interface PlaceholderIconArgs {
|
|
477
|
+
size: number;
|
|
478
|
+
color: IconColor;
|
|
259
479
|
}
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
480
|
+
interface PlaceholderProps {
|
|
481
|
+
title: string;
|
|
482
|
+
subtitle: string;
|
|
483
|
+
iconSize?: number;
|
|
484
|
+
icon?: ({ size, color }: PlaceholderIconArgs) => ReactElement;
|
|
485
|
+
actions?: PlaceholderAction[];
|
|
264
486
|
}
|
|
265
|
-
|
|
266
|
-
type DrawerElement = ReactElement<DrawerProps, DrawerComponent>;
|
|
487
|
+
declare const Placeholder: ({ title, subtitle, icon, iconSize, actions, }: PlaceholderProps) => JSX.Element;
|
|
267
488
|
|
|
268
|
-
|
|
489
|
+
interface SkeletonGridProps {
|
|
490
|
+
size?: number;
|
|
491
|
+
}
|
|
492
|
+
declare const SkeletonGrid: ({ size }: SkeletonGridProps) => JSX.Element;
|
|
269
493
|
|
|
270
|
-
|
|
494
|
+
interface SkeletonCardProps {
|
|
495
|
+
width?: number | string;
|
|
496
|
+
animation?: "pulse" | "wave" | false;
|
|
497
|
+
}
|
|
498
|
+
declare const SkeletonCard: ({ width, animation }: SkeletonCardProps) => JSX.Element;
|
|
271
499
|
|
|
272
|
-
type
|
|
273
|
-
|
|
500
|
+
type ContentPlaceholderProps = PropsWithChildren<{
|
|
501
|
+
size?: number;
|
|
502
|
+
p?: number;
|
|
274
503
|
}>;
|
|
275
|
-
declare const
|
|
504
|
+
declare const ContentPlaceholder: ({ size, children, p }: ContentPlaceholderProps) => JSX.Element;
|
|
276
505
|
|
|
277
|
-
interface
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
506
|
+
interface LoremIpsumPlaceholderProps {
|
|
507
|
+
count?: number;
|
|
508
|
+
units?: LoremUnit;
|
|
509
|
+
variant?: Variant;
|
|
281
510
|
}
|
|
282
|
-
declare const
|
|
283
|
-
|
|
284
|
-
declare const
|
|
511
|
+
declare const LoremIpsumPlaceholder: ({ count, units, variant, }: LoremIpsumPlaceholderProps) => JSX.Element;
|
|
512
|
+
|
|
513
|
+
declare const newArrayWithSize: <T>(size: number, fillValue: T) => any[];
|
|
514
|
+
declare const getRandomItem: <T>(items: T[]) => {
|
|
515
|
+
index: number;
|
|
516
|
+
item: T;
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
declare const useGetDefaultThemeColor: ({ lightWeight, darkWeight, }?: {
|
|
520
|
+
lightWeight?: keyof Color | undefined;
|
|
521
|
+
darkWeight?: keyof Color | undefined;
|
|
522
|
+
}) => string;
|
|
523
|
+
|
|
524
|
+
interface AppBarWithDrawerLayoutProps {
|
|
525
|
+
children: [DrawerElement, AppBarElement, ReactNode];
|
|
526
|
+
}
|
|
527
|
+
declare const AppBarWithDrawerLayout: ({ children: childrenProps, }: AppBarWithDrawerLayoutProps) => JSX.Element;
|
|
528
|
+
|
|
529
|
+
interface HeaderLayoutProps {
|
|
530
|
+
loading?: boolean;
|
|
531
|
+
children: [HeaderElement, ContentElement];
|
|
532
|
+
}
|
|
533
|
+
declare const HeaderLayout: ({ loading, children }: HeaderLayoutProps) => JSX.Element;
|
|
285
534
|
|
|
286
535
|
/**
|
|
287
536
|
* MODEL TYPES
|
|
@@ -360,208 +609,6 @@ interface BasicModelInstance {
|
|
|
360
609
|
}
|
|
361
610
|
declare const newInstanceFromValuesOrZeroValue: <T extends BasicModelInstance>(model: Model, values?: T | undefined) => T;
|
|
362
611
|
|
|
363
|
-
interface TableRowOption<T extends BasicModelInstance> {
|
|
364
|
-
id: string;
|
|
365
|
-
label: string;
|
|
366
|
-
onClick: (item: T) => void;
|
|
367
|
-
}
|
|
368
|
-
interface TableListProps<T extends BasicModelInstance> {
|
|
369
|
-
columns: HeadCell<T>[];
|
|
370
|
-
data: T[];
|
|
371
|
-
search?: boolean;
|
|
372
|
-
defaultSort: string;
|
|
373
|
-
defaultOrder?: Order;
|
|
374
|
-
loading?: boolean;
|
|
375
|
-
options?: TableRowOption<T>[];
|
|
376
|
-
onClick?: (d: T) => void;
|
|
377
|
-
}
|
|
378
|
-
declare const TableList: <T extends BasicModelInstance>({ columns: columnsProp, options, data, onClick, search, defaultSort, defaultOrder, loading, }: TableListProps<T>) => JSX.Element;
|
|
379
|
-
|
|
380
|
-
type IconColor = "inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning";
|
|
381
|
-
interface PlaceholderAction {
|
|
382
|
-
id: string;
|
|
383
|
-
text: string;
|
|
384
|
-
href?: string;
|
|
385
|
-
onClick?: () => void;
|
|
386
|
-
}
|
|
387
|
-
interface PlaceholderIconArgs {
|
|
388
|
-
size: number;
|
|
389
|
-
color: IconColor;
|
|
390
|
-
}
|
|
391
|
-
interface PlaceholderProps {
|
|
392
|
-
title: string;
|
|
393
|
-
subtitle: string;
|
|
394
|
-
iconSize?: number;
|
|
395
|
-
icon?: ({ size, color }: PlaceholderIconArgs) => ReactElement;
|
|
396
|
-
actions?: PlaceholderAction[];
|
|
397
|
-
}
|
|
398
|
-
declare const Placeholder: ({ title, subtitle, icon, iconSize, actions, }: PlaceholderProps) => JSX.Element;
|
|
399
|
-
|
|
400
|
-
/**
|
|
401
|
-
* Content to be shown inside a navigation
|
|
402
|
-
*/
|
|
403
|
-
declare const DrawerContent: DrawerContentComponent;
|
|
404
|
-
|
|
405
|
-
interface DrawerSectionProps {
|
|
406
|
-
/**
|
|
407
|
-
* Section title
|
|
408
|
-
*/
|
|
409
|
-
title?: string;
|
|
410
|
-
/**
|
|
411
|
-
* List of items of that section
|
|
412
|
-
*/
|
|
413
|
-
items: NavItem[];
|
|
414
|
-
}
|
|
415
|
-
/**
|
|
416
|
-
* Render a group of items inside the drawer
|
|
417
|
-
* with an optional title
|
|
418
|
-
*/
|
|
419
|
-
declare const DrawerSection: ({ title, items }: DrawerSectionProps) => JSX.Element;
|
|
420
|
-
|
|
421
|
-
interface DrawerItemProps {
|
|
422
|
-
/**
|
|
423
|
-
* Text displayed inside the item
|
|
424
|
-
*/
|
|
425
|
-
text: string;
|
|
426
|
-
/**
|
|
427
|
-
* Url where the user is going to be redirected
|
|
428
|
-
* if the item is clicked
|
|
429
|
-
*/
|
|
430
|
-
href: string;
|
|
431
|
-
/**
|
|
432
|
-
* Icon displayed to the left
|
|
433
|
-
*/
|
|
434
|
-
icon?: ReactElement;
|
|
435
|
-
/**
|
|
436
|
-
* Avatar displayed to the left
|
|
437
|
-
*/
|
|
438
|
-
avatar?: NavItemAvatar;
|
|
439
|
-
/**
|
|
440
|
-
* Label with extra info displayed to the right
|
|
441
|
-
*/
|
|
442
|
-
label?: NavItemLabel;
|
|
443
|
-
/**
|
|
444
|
-
* Bullet to attract the user attention displyed to the right
|
|
445
|
-
*/
|
|
446
|
-
bullet?: NavItemBullet;
|
|
447
|
-
}
|
|
448
|
-
/**
|
|
449
|
-
* Clicable item inside a drawer
|
|
450
|
-
*/
|
|
451
|
-
declare const DrawerItem: ({ text, icon, avatar, label, bullet, href }: DrawerItemProps) => JSX.Element;
|
|
452
|
-
|
|
453
|
-
interface CenterContainerProps {
|
|
454
|
-
children: ReactNode | undefined;
|
|
455
|
-
centerVertical?: boolean;
|
|
456
|
-
centerHorizontal?: boolean;
|
|
457
|
-
sx?: SxProps<Theme>;
|
|
458
|
-
}
|
|
459
|
-
declare function CenterContainer({ children, centerVertical, centerHorizontal, sx, }: CenterContainerProps): JSX.Element;
|
|
460
|
-
|
|
461
|
-
interface BaseValueProps<T> {
|
|
462
|
-
/**
|
|
463
|
-
* Name of the displayed value
|
|
464
|
-
*/
|
|
465
|
-
label: string;
|
|
466
|
-
/**
|
|
467
|
-
* Value displayed
|
|
468
|
-
*/
|
|
469
|
-
value?: T;
|
|
470
|
-
/**
|
|
471
|
-
* String rendered if value is undefined
|
|
472
|
-
*/
|
|
473
|
-
placeholder?: string;
|
|
474
|
-
}
|
|
475
|
-
declare const DefaultPlaceholder = "-";
|
|
476
|
-
|
|
477
|
-
type ValueTextProps = BaseValueProps<string>;
|
|
478
|
-
/**
|
|
479
|
-
* Displays a string value with a label
|
|
480
|
-
*/
|
|
481
|
-
declare const ValueText: ({ label, value: valueProp, placeholder, }: ValueTextProps) => JSX.Element;
|
|
482
|
-
|
|
483
|
-
type ValueCardProps = PropsWithChildren;
|
|
484
|
-
/**
|
|
485
|
-
* Container to show a labeled value
|
|
486
|
-
*/
|
|
487
|
-
declare const ValueCard: ({ children }: ValueCardProps) => JSX.Element;
|
|
488
|
-
|
|
489
|
-
type ValueBooleanProps = BaseValueProps<boolean>;
|
|
490
|
-
/**
|
|
491
|
-
* Displays a boolean value with a label
|
|
492
|
-
*/
|
|
493
|
-
declare const ValueBoolean: ({ label, value, placeholder, }: ValueBooleanProps) => JSX.Element;
|
|
494
|
-
|
|
495
|
-
interface ValueDatetimeProps extends BaseValueProps<Date> {
|
|
496
|
-
/**
|
|
497
|
-
* Datetime format
|
|
498
|
-
*/
|
|
499
|
-
format: string;
|
|
500
|
-
}
|
|
501
|
-
/**
|
|
502
|
-
* Displays a formated datetime with a label
|
|
503
|
-
*/
|
|
504
|
-
declare const ValueDatetime: ({ label, value: valueProp, format: fmt, placeholder, }: ValueDatetimeProps) => JSX.Element;
|
|
505
|
-
|
|
506
|
-
type GroupValueItemProps = PropsWithChildren<Omit<GridProps, "item" | "container"> & {
|
|
507
|
-
bordered?: boolean;
|
|
508
|
-
}>;
|
|
509
|
-
type GroupValueItemComponent = FunctionComponent<GroupValueItemProps>;
|
|
510
|
-
type GroupValueItemElement = ReactElement<GroupValueItemProps, GroupValueItemComponent>;
|
|
511
|
-
declare const groupValueItemClasses: {
|
|
512
|
-
root: string;
|
|
513
|
-
};
|
|
514
|
-
declare const GroupValueItem: GroupValueItemComponent;
|
|
515
|
-
interface GroupValueCardProps {
|
|
516
|
-
title: string;
|
|
517
|
-
subtitle?: string;
|
|
518
|
-
centered?: boolean;
|
|
519
|
-
children: GroupValueItemElement | GroupValueItemElement[];
|
|
520
|
-
}
|
|
521
|
-
declare const GroupValueCard: ({ title, subtitle, centered, children }: GroupValueCardProps) => JSX.Element;
|
|
522
|
-
|
|
523
|
-
type ContentProps = PropsWithChildren;
|
|
524
|
-
type ContentComponent = FunctionComponent<ContentProps>;
|
|
525
|
-
type ContentElement = ReactElement<ContentElement, ContentComponent>;
|
|
526
|
-
|
|
527
|
-
declare const Content: ({ children }: ContentProps) => JSX.Element;
|
|
528
|
-
|
|
529
|
-
type EnhancedSelectSize = "small" | "medium";
|
|
530
|
-
interface EnhancedSelectProps<T> {
|
|
531
|
-
label: string;
|
|
532
|
-
value: T;
|
|
533
|
-
loading?: boolean;
|
|
534
|
-
fetching?: boolean;
|
|
535
|
-
size?: EnhancedSelectSize;
|
|
536
|
-
color?: string;
|
|
537
|
-
fullWidth?: boolean;
|
|
538
|
-
children?: ReactNode;
|
|
539
|
-
onChange?: SelectInputProps<T>["onChange"];
|
|
540
|
-
}
|
|
541
|
-
declare const EnhancedSelect: <T extends React__default.ReactNode>({ label, value, loading, fetching, size, fullWidth, color, children, onChange, }: EnhancedSelectProps<T>) => JSX.Element;
|
|
542
|
-
|
|
543
|
-
declare const newArrayWithSize: <T>(size: number, fillValue: T) => any[];
|
|
544
|
-
declare const getRandomItem: <T>(items: T[]) => {
|
|
545
|
-
index: number;
|
|
546
|
-
item: T;
|
|
547
|
-
};
|
|
548
|
-
|
|
549
|
-
declare const useGetDefaultThemeColor: ({ lightWeight, darkWeight, }?: {
|
|
550
|
-
lightWeight?: keyof Color | undefined;
|
|
551
|
-
darkWeight?: keyof Color | undefined;
|
|
552
|
-
}) => string;
|
|
553
|
-
|
|
554
|
-
interface AppBarWithDrawerLayoutProps {
|
|
555
|
-
children: [DrawerElement, AppBarElement, ReactNode];
|
|
556
|
-
}
|
|
557
|
-
declare const AppBarWithDrawerLayout: ({ children: childrenProps, }: AppBarWithDrawerLayoutProps) => JSX.Element;
|
|
558
|
-
|
|
559
|
-
interface HeaderLayoutProps {
|
|
560
|
-
loading?: boolean;
|
|
561
|
-
children: [HeaderElement, ContentElement];
|
|
562
|
-
}
|
|
563
|
-
declare const HeaderLayout: ({ loading, children }: HeaderLayoutProps) => JSX.Element;
|
|
564
|
-
|
|
565
612
|
interface ObjectDetailsProps<T extends BasicModelInstance> {
|
|
566
613
|
model: Model;
|
|
567
614
|
instance: T;
|
|
@@ -703,6 +750,23 @@ interface ModelFormProps<T extends BasicModelInstance> {
|
|
|
703
750
|
}
|
|
704
751
|
declare const ModelForm: <T extends BasicModelInstance>({ model, saveButtonText, onSubmit, initialValues, }: ModelFormProps<T>) => JSX.Element;
|
|
705
752
|
|
|
753
|
+
interface TableRowOption<T extends BasicModelInstance> {
|
|
754
|
+
id: string;
|
|
755
|
+
label: string;
|
|
756
|
+
onClick: (item: T) => void;
|
|
757
|
+
}
|
|
758
|
+
interface TableListProps<T extends BasicModelInstance> {
|
|
759
|
+
columns: HeadCell<T>[];
|
|
760
|
+
data: T[];
|
|
761
|
+
search?: boolean;
|
|
762
|
+
defaultSort: string;
|
|
763
|
+
defaultOrder?: Order;
|
|
764
|
+
loading?: boolean;
|
|
765
|
+
options?: TableRowOption<T>[];
|
|
766
|
+
onClick?: (d: T) => void;
|
|
767
|
+
}
|
|
768
|
+
declare const TableList: <T extends BasicModelInstance>({ columns: columnsProp, options, data, onClick, search, defaultSort, defaultOrder, loading, }: TableListProps<T>) => JSX.Element;
|
|
769
|
+
|
|
706
770
|
type NotificationCenterProviderProps = PropsWithChildren<{
|
|
707
771
|
autoHideDuration?: number;
|
|
708
772
|
}>;
|
|
@@ -736,4 +800,4 @@ type TabProviderProps = PropsWithChildren<{
|
|
|
736
800
|
}>;
|
|
737
801
|
declare const TabProvider: ({ children, initialValue }: TabProviderProps) => JSX.Element;
|
|
738
802
|
|
|
739
|
-
export { AppBarComponent, AppBarElement, AppBarProfile, AppBarProps, AppBarWithDrawerLayout, AppBarWithDrawerLayoutProps, ArrayFieldType, BaseFieldType, BaseValueProps, BasicModelInstance, Bullet, BulletProps, BulletVariant, CenterContainer, CenterContainerProps, Content, ContentComponent, ContentElement, ContentProps, DefaultPlaceholder, Drawer, DrawerComponent, DrawerContent, DrawerContentComponent, DrawerContentElement, DrawerContentProps, DrawerContext, DrawerContextProps, DrawerElement, DrawerItem, DrawerItemProps, DrawerProps, DrawerProvider, DrawerSection, DrawerSectionProps, EnhancedRemoteTable, EnhancedRemoteTableProps, EnhancedSelect, EnhancedSelectProps, EnhancedSelectSize, EnhancedTable, EnhancedTableHead, FieldType, GroupField, GroupInstanceType, GroupValueCard, GroupValueCardProps, GroupValueItem, GroupValueItemComponent, GroupValueItemElement, GroupValueItemProps, HeadCell, Header, HeaderAction, HeaderActionVariant, HeaderBreadcrumb, HeaderComponent, HeaderElement, HeaderLayout, HeaderLayoutProps, HeaderPreset, HeaderProps, HeaderTab, IdleRequest, Label, LabelProps, LabelVariant,
|
|
803
|
+
export { AppBarComponent, AppBarElement, AppBarProfile, AppBarProps, AppBarWithDrawerLayout, AppBarWithDrawerLayoutProps, ArrayFieldType, BaseFieldType, BaseValueProps, BasicModelInstance, Bullet, BulletProps, BulletVariant, CenterContainer, CenterContainerProps, Content, ContentComponent, ContentElement, ContentPlaceholder, ContentPlaceholderProps, ContentProps, DefaultPlaceholder, Drawer, DrawerComponent, DrawerContent, DrawerContentComponent, DrawerContentElement, DrawerContentProps, DrawerContext, DrawerContextProps, DrawerElement, DrawerItem, DrawerItemProps, DrawerProps, DrawerProvider, DrawerSection, DrawerSectionProps, EnhancedRemoteTable, EnhancedRemoteTableProps, EnhancedSelect, EnhancedSelectProps, EnhancedSelectSize, EnhancedTable, EnhancedTableHead, FieldType, GroupField, GroupInstanceType, GroupValueCard, GroupValueCardProps, GroupValueItem, GroupValueItemComponent, GroupValueItemElement, GroupValueItemProps, HeadCell, Header, HeaderAction, HeaderActionVariant, HeaderBreadcrumb, HeaderComponent, HeaderElement, HeaderLayout, HeaderLayoutProps, HeaderNavigationButton, HeaderPreset, HeaderProps, HeaderTab, IdleRequest, Label, LabelProps, LabelVariant, LoadingArea, LoadingRequest, LoremIpsumPlaceholder, LoremIpsumPlaceholderProps, MiniAppBar, MiniDrawer, Model, ModelField, ModelFieldTypes, ModelForm, ModelFormProps, ModelRouter, ModelRouterProps, Nav, NavItem, NavItemAvatar, NavItemBullet, NavItemCollapsable, NavItemLabel, NavItemLink, NavSection, Notification, NotificationCenterContext, NotificationCenterProps, NotificationCenterProvider, NotificationCenterProviderProps, NotificationCenterProviderUndefinedError, NotifyWhenValueChangesOptions, ObjectDetails, ObjectDetailsProps, Order, Placeholder, PlaceholderAction, PlaceholderIconArgs, PlaceholderProps, QueryContainer, QueryContainerError, QueryContainerProps, QueryContainerSuccess, RequestState, SignIn, SignInProps, SingleFieldType, SkeletonCard, SkeletonCardProps, SkeletonGrid, SkeletonGridProps, SuccessRequest, TabCard, TabCardProps, TabContext, TabContextProvider, TabPanel, TabProvider, TableList, TableListProps, TableRowOption, UndefinedProvider, ValueBoolean, ValueBooleanProps, ValueCard, ValueCardProps, ValueDatetime, ValueDatetimeProps, ValueText, ValueTextProps, bulletClasses, getRandomItem, groupValueItemClasses, labelClasses, newArrayWithSize, newInstanceFromValuesOrZeroValue, useDrawer, useGetDefaultThemeColor, useNotificationCenter, useNotifyWhenValueChanges, useTab };
|