@pismo/marola 1.0.0-beta.60 → 1.0.0-beta.63

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 (26) hide show
  1. package/dist/assets/Description.css +1 -0
  2. package/dist/components/Chip/Chip.js +2 -2
  3. package/dist/components/Chip/Chip.stories.d.ts +1 -1
  4. package/dist/components/ConfirmationDialog/ConfirmationDialog.stories.d.ts +1 -1
  5. package/dist/components/Description/Description.d.ts +14 -0
  6. package/dist/components/Description/Description.js +54 -0
  7. package/dist/components/Description/Description.stories.d.ts +18 -0
  8. package/dist/components/Description/Description.test.d.ts +1 -0
  9. package/dist/components/Dialog/Dialog.stories.d.ts +1 -1
  10. package/dist/components/EllipsisTooltip/EllipsisTooltip.stories.d.ts +1 -1
  11. package/dist/components/LoadingSpinner/LoadingSpinner.stories.d.ts +1 -1
  12. package/dist/components/Popover/Popover.stories.d.ts +1 -1
  13. package/dist/components/ResultWithChips/ResultWithChips.js +1 -1
  14. package/dist/components/RowItem/RowItem.js +1 -1
  15. package/dist/components/Select/Select.d.ts +1 -0
  16. package/dist/components/Snackbar/Snackbar.stories.d.ts +1 -1
  17. package/dist/components/ToggleGroup/Toggle.js +1 -1
  18. package/dist/components/ToggleGroup/ToggleGroup.js +1 -1
  19. package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts +1 -1
  20. package/dist/components/Tooltip/Tooltip.stories.d.ts +1 -1
  21. package/dist/components/Typography/Typography.stories.d.ts +1 -1
  22. package/dist/contexts/SnackbarProvider/SnackbarProvider.stories.d.ts +1 -1
  23. package/dist/main.d.ts +1 -0
  24. package/dist/main.js +80 -78
  25. package/package.json +2 -2
  26. package/dist/{Toggle-2kIaSHMl.js → Toggle-MfR7l8Wn.js} +1 -1
@@ -0,0 +1 @@
1
+ ._u-typography-h1_he0z3_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_he0z3_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_he0z3_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_he0z3_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_he0z3_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_he0z3_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_he0z3_43{margin:0;font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_he0z3_49{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_he0z3_53{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_he0z3_57{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_he0z3_61{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_he0z3_65{font-weight:var(--base-bold)}._u-typography-base--strikethrough_he0z3_68{text-decoration:line-through}._u-typography-base--underlined_he0z3_71{text-decoration:underline}._u-typography-base--strikethrough-underlined_he0z3_74{text-decoration:underline line-through}._container_he0z3_78{display:flex;flex-direction:column}._container--text_he0z3_82{opacity:88%}._container--inline_he0z3_85{flex-direction:row;gap:.5rem}
@@ -7,13 +7,13 @@ import "../Typography/Typography.js";
7
7
  import "../Input/Input.js";
8
8
  import "../Avatar/Avatar.js";
9
9
  import "../Button/Button.js";
10
- import { C as u } from "../../Toggle-2kIaSHMl.js";
10
+ import { C as u } from "../../Toggle-MfR7l8Wn.js";
11
11
  import "../Dialog/Dialog.js";
12
+ import "../Skeleton/Skeleton.js";
12
13
  import "../IconButton/IconButton.js";
13
14
  import "../InputSearch/InputSearch.js";
14
15
  import "../Select/Select.js";
15
16
  import "../Popover/Popover.js";
16
- import "../Skeleton/Skeleton.js";
17
17
  import "../Table/Table.js";
18
18
  import "../Tabs/Tabs.js";
19
19
  import "../../Group-DspH8hyO.js";
@@ -4,7 +4,7 @@ declare const meta: {
4
4
  title: string;
5
5
  component: import('react').ForwardRefExoticComponent<import('./Chip').ChipProps & import('react').RefAttributes<unknown>>;
6
6
  tags: string[];
7
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
7
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
8
8
  label: import('react').ReactNode;
9
9
  loading?: boolean | undefined;
10
10
  leftAdornment?: import('../Adornment/Adornment').AdornmentProps | undefined;
@@ -5,7 +5,7 @@ declare const meta: {
5
5
  title: string;
6
6
  component: ({ open, onClose, title, subtitle, content, cancelAction, confirmAction, confirmLabel, cancelLabel, }: ConfirmationDialogProps) => import("react/jsx-runtime").JSX.Element;
7
7
  tags: string[];
8
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
8
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
9
9
  open: boolean;
10
10
  onClose: () => void;
11
11
  title?: import('react').ReactNode;
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ export interface DescriptionProps {
3
+ /** Description label */
4
+ label: string;
5
+ /** Description value */
6
+ value: React.ReactNode;
7
+ /** Renders skeleton when true */
8
+ isLoading?: boolean;
9
+ /** Sets the data-testid prefix for label, value and skeletons */
10
+ 'data-testid'?: string;
11
+ /** Sets the label and value onto the same line */
12
+ inline?: boolean;
13
+ }
14
+ export declare const Description: ({ label, value, isLoading, "data-testid": dataTestId, inline, }: DescriptionProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,54 @@
1
+ import '../../assets/Description.css';
2
+ import { jsxs as n, jsx as t } from "react/jsx-runtime";
3
+ import { c as s } from "../../clsx-DB4S2d7J.js";
4
+ import { Skeleton as o } from "../Skeleton/Skeleton.js";
5
+ import { Typography as p } from "../Typography/Typography.js";
6
+ const i = "_container_he0z3_78", a = {
7
+ "u-typography-h1": "_u-typography-h1_he0z3_1",
8
+ "u-typography-h2": "_u-typography-h2_he0z3_8",
9
+ "u-typography-h3": "_u-typography-h3_he0z3_15",
10
+ "u-typography-h4": "_u-typography-h4_he0z3_22",
11
+ "u-typography-h5": "_u-typography-h5_he0z3_29",
12
+ "u-typography-h6": "_u-typography-h6_he0z3_36",
13
+ "u-typography-base": "_u-typography-base_he0z3_43",
14
+ "u-typography-base--xxl": "_u-typography-base--xxl_he0z3_49",
15
+ "u-typography-base--xl": "_u-typography-base--xl_he0z3_53",
16
+ "u-typography-base--lg": "_u-typography-base--lg_he0z3_57",
17
+ "u-typography-base--sm": "_u-typography-base--sm_he0z3_61",
18
+ "u-typography-base--bold": "_u-typography-base--bold_he0z3_65",
19
+ "u-typography-base--strikethrough": "_u-typography-base--strikethrough_he0z3_68",
20
+ "u-typography-base--underlined": "_u-typography-base--underlined_he0z3_71",
21
+ "u-typography-base--strikethrough-underlined": "_u-typography-base--strikethrough-underlined_he0z3_74",
22
+ container: i,
23
+ "container--text": "_container--text_he0z3_82",
24
+ "container--inline": "_container--inline_he0z3_85"
25
+ }, c = ({
26
+ label: y,
27
+ value: _,
28
+ isLoading: r,
29
+ "data-testid": e = "Description",
30
+ inline: h
31
+ }) => /* @__PURE__ */ n(
32
+ "div",
33
+ {
34
+ className: s([a.container, { [a["container--inline"]]: h }]),
35
+ "data-testid": `${e}-container`,
36
+ children: [
37
+ /* @__PURE__ */ t(p, { className: a["container--text"], variant: "base", "data-testid": `${e}-label`, children: r ? /* @__PURE__ */ t(o, { style: { width: 70, marginBottom: 2 }, "data-testid": `${e}-skeletonLabel` }) : y }),
38
+ /* @__PURE__ */ t(
39
+ p,
40
+ {
41
+ className: a["container--text"],
42
+ bold: !0,
43
+ color: "var(--gray-95)",
44
+ variant: h ? "base" : "base-lg",
45
+ "data-testid": `${e}-value`,
46
+ children: r ? /* @__PURE__ */ t(o, { style: { width: 100 }, "data-testid": `${e}-skeletonValue` }) : _ || "-"
47
+ }
48
+ )
49
+ ]
50
+ }
51
+ );
52
+ export {
53
+ c as Description
54
+ };
@@ -0,0 +1,18 @@
1
+ import { StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ label, value, isLoading, "data-testid": dataTestId, inline, }: import('./Description').DescriptionProps) => import("react/jsx-runtime").JSX.Element;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const Simple: Story;
14
+ export declare const InLine: Story;
15
+ export declare const Loading: Story;
16
+ export declare const LoadingInline: Story;
17
+ export declare const InLineWithButton: Story;
18
+ export declare const WithButton: Story;
@@ -0,0 +1 @@
1
+ export {};
@@ -10,7 +10,7 @@ declare const meta: {
10
10
  Actions: import('react').FunctionComponent<import('./Actions').DialogActionProps>;
11
11
  };
12
12
  tags: string[];
13
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
13
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
14
14
  color?: string | undefined;
15
15
  ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
16
16
  children: import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> & import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<unknown>>;
@@ -8,7 +8,7 @@ declare const meta: {
8
8
  parameters: {
9
9
  layout: string;
10
10
  };
11
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
11
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
12
12
  children: import('react').ReactNode;
13
13
  title: import('react').ReactNode;
14
14
  style?: import('react').CSSProperties | undefined;
@@ -4,7 +4,7 @@ declare const meta: {
4
4
  title: string;
5
5
  component: ({ invert, classNames }: import('./LoadingSpinner').LoadingSpinnerProps) => import("react/jsx-runtime").JSX.Element;
6
6
  tags: string[];
7
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
7
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
8
8
  invert?: boolean | undefined;
9
9
  classNames?: string | undefined;
10
10
  }>) => import("react/jsx-runtime").JSX.Element)[];
@@ -25,7 +25,7 @@ declare const meta: {
25
25
  };
26
26
  };
27
27
  tags: string[];
28
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
28
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
29
29
  [x: string]: any;
30
30
  }>) => import("react/jsx-runtime").JSX.Element)[];
31
31
  };
@@ -1,6 +1,6 @@
1
1
  import '../../assets/ResultWithChips.css';
2
2
  import { jsxs as i, jsx as e } from "react/jsx-runtime";
3
- import { C as t } from "../../Toggle-2kIaSHMl.js";
3
+ import { C as t } from "../../Toggle-MfR7l8Wn.js";
4
4
  const r = "_container_hgp0p_1", o = "_label_hgp0p_17", a = {
5
5
  container: r,
6
6
  "chip-item-wrapper": "_chip-item-wrapper_hgp0p_8",
@@ -7,7 +7,7 @@ import "../Typography/Typography.js";
7
7
  import "../Input/Input.js";
8
8
  import "../Avatar/Avatar.js";
9
9
  import "../Button/Button.js";
10
- import { R as h, R as j } from "../../Toggle-2kIaSHMl.js";
10
+ import { R as h, R as j } from "../../Toggle-MfR7l8Wn.js";
11
11
  import "../Dialog/Dialog.js";
12
12
  import "../IconButton/IconButton.js";
13
13
  import "../InputSearch/InputSearch.js";
@@ -15,6 +15,7 @@ export type SelectProps = {
15
15
  placeholder?: string;
16
16
  prefix?: string;
17
17
  className?: string;
18
+ name?: string;
18
19
  id?: string;
19
20
  value?: string;
20
21
  label?: string;
@@ -5,7 +5,7 @@ declare const meta: {
5
5
  title: string;
6
6
  component: ({ snackbarMessage, variant, autoHideDuration, open, onClose, onClosed, classNameWrapper, "data-testid": dataTestId, }: SnackbarProps) => import("react/jsx-runtime").JSX.Element;
7
7
  tags: string[];
8
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
8
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
9
9
  accept?: string | undefined;
10
10
  alt?: string | undefined;
11
11
  autoComplete?: import('react').HTMLInputAutoCompleteAttribute | undefined;
@@ -6,7 +6,7 @@ import "../Typography/Typography.js";
6
6
  import "../Input/Input.js";
7
7
  import "../Avatar/Avatar.js";
8
8
  import "../Button/Button.js";
9
- import { T as j } from "../../Toggle-2kIaSHMl.js";
9
+ import { T as j } from "../../Toggle-MfR7l8Wn.js";
10
10
  import "../Dialog/Dialog.js";
11
11
  import "../IconButton/IconButton.js";
12
12
  import "../InputSearch/InputSearch.js";
@@ -1,4 +1,4 @@
1
- import { T as e } from "../../Toggle-2kIaSHMl.js";
1
+ import { T as e } from "../../Toggle-MfR7l8Wn.js";
2
2
  import { G as p } from "../../Group-DspH8hyO.js";
3
3
  export {
4
4
  p as ToggleGroup,
@@ -6,7 +6,7 @@ declare const meta: {
6
6
  title: string;
7
7
  component: import('react').ForwardRefExoticComponent<ToggleGroupProps & import('react').RefAttributes<HTMLFieldSetElement>>;
8
8
  tags: string[];
9
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
9
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
10
10
  legend?: import('react').ReactNode;
11
11
  error?: import('react').ReactNode;
12
12
  children: import('react').ReactElement<import('./Toggle.tsx').ToggleGroupItemProps<string | number>, string | import('react').JSXElementConstructor<any>>[];
@@ -8,7 +8,7 @@ declare const meta: {
8
8
  parameters: {
9
9
  layout: string;
10
10
  };
11
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
11
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
12
12
  children: import('react').ReactNode;
13
13
  title: import('react').ReactNode;
14
14
  open?: boolean | undefined;
@@ -12,7 +12,7 @@ declare const meta: {
12
12
  };
13
13
  };
14
14
  };
15
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
15
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
16
16
  children: import('react').ReactNode;
17
17
  element?: import('react').ElementType | undefined;
18
18
  variant?: import('./Typography').VariantType | undefined;
@@ -12,7 +12,7 @@ declare const meta: {
12
12
  };
13
13
  };
14
14
  tags: string[];
15
- decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
15
+ decorators: ((Story: import('@storybook/types').PartialStoryFn<import('@storybook/react').ReactRenderer, {
16
16
  [x: string]: any;
17
17
  }>) => import("react/jsx-runtime").JSX.Element)[];
18
18
  };
package/dist/main.d.ts CHANGED
@@ -10,6 +10,7 @@ export * from './components/Button/Button';
10
10
  export * from './components/Checkbox/Checkbox';
11
11
  export * from './components/Chip/Chip';
12
12
  export * from './components/ConfirmationDialog/ConfirmationDialog';
13
+ export * from './components/Description/Description';
13
14
  export * from './components/Dialog/Dialog';
14
15
  export * from './components/EllipsisTooltip/EllipsisTooltip';
15
16
  export * from './components/Icon/Icon';
package/dist/main.js CHANGED
@@ -3,90 +3,92 @@ import { Advice as a } from "./components/Advice/Advice.js";
3
3
  import { Autocomplete as m } from "./components/Autocomplete/Autocomplete.js";
4
4
  import "./components/Avatar/Avatar.js";
5
5
  import { Button as n } from "./components/Button/Button.js";
6
- import { Checkbox as i } from "./components/Checkbox/Checkbox.js";
7
- import { C as s, R as g, T as c } from "./Toggle-2kIaSHMl.js";
6
+ import { Checkbox as l } from "./components/Checkbox/Checkbox.js";
7
+ import { C as s, R as c, T as g } from "./Toggle-MfR7l8Wn.js";
8
8
  import { ConfirmationDialog as S } from "./components/ConfirmationDialog/ConfirmationDialog.js";
9
- import { Dialog as b } from "./components/Dialog/Dialog.js";
10
- import { EllipsisTooltip as C } from "./components/EllipsisTooltip/EllipsisTooltip.js";
11
- import { Icon as D } from "./components/Icon/Icon.js";
12
- import { IconButton as P } from "./components/IconButton/IconButton.js";
13
- import { Input as y } from "./components/Input/Input.js";
14
- import { InputSearch as B } from "./components/InputSearch/InputSearch.js";
15
- import { LoadingSpinner as R } from "./components/LoadingSpinner/LoadingSpinner.js";
16
- import { PageHeader as w } from "./components/PageHeader/PageHeader.js";
17
- import { Pagination as L, paginationDefaultTranslations as N } from "./components/Pagination/Pagination.js";
18
- import { Popover as W } from "./components/Popover/Popover.js";
19
- import { ResultWithChips as q } from "./components/ResultWithChips/ResultWithChips.js";
20
- import { Select as F, SelectOption as J } from "./components/Select/Select.js";
21
- import { Skeleton as M, SkeletonCircle as Q, SkeletonTable as U } from "./components/Skeleton/Skeleton.js";
22
- import { Snackbar as X } from "./components/Snackbar/Snackbar.js";
23
- import { SortTooltip as Z, sortTooltipDefaultTranslations as _ } from "./components/SortTooltip/SortTooltip.js";
24
- import { Stepper as oo } from "./components/Stepper/Stepper.js";
25
- import { StepperNavigator as eo } from "./components/StepperNavigator/StepperNavigator.js";
26
- import { TBody as po, THead as ao, Table as fo, Td as mo, Th as xo, Tr as no } from "./components/Table/Table.js";
27
- import { Tabs as io } from "./components/Tabs/Tabs.js";
28
- import { TextDisplay as so } from "./components/TextDisplay/TextDisplay.js";
29
- import { Toggle as co } from "./components/Toggle/Toggle.js";
30
- import { G as So } from "./Group-DspH8hyO.js";
31
- import { Tooltip as ko } from "./components/Tooltip/Tooltip.js";
32
- import { Text as ho, Typography as Do } from "./components/Typography/Typography.js";
33
- import { SnackbarContext as Po, SnackbarProvider as vo, useSnackbar as yo } from "./contexts/SnackbarProvider/SnackbarProvider.js";
34
- import { default as Bo } from "./components/Dialog/DialogTitle.js";
35
- import { default as Ro } from "./components/Dialog/Content.js";
36
- import { default as wo } from "./components/Dialog/Actions.js";
37
- import { Tab as Lo } from "./components/Tabs/Tab.js";
38
- import { TabPanel as Oo } from "./components/Tabs/TabPanel.js";
9
+ import { Description as b } from "./components/Description/Description.js";
10
+ import { Dialog as C } from "./components/Dialog/Dialog.js";
11
+ import { EllipsisTooltip as D } from "./components/EllipsisTooltip/EllipsisTooltip.js";
12
+ import { Icon as P } from "./components/Icon/Icon.js";
13
+ import { IconButton as y } from "./components/IconButton/IconButton.js";
14
+ import { Input as B } from "./components/Input/Input.js";
15
+ import { InputSearch as R } from "./components/InputSearch/InputSearch.js";
16
+ import { LoadingSpinner as w } from "./components/LoadingSpinner/LoadingSpinner.js";
17
+ import { PageHeader as L } from "./components/PageHeader/PageHeader.js";
18
+ import { Pagination as O, paginationDefaultTranslations as W } from "./components/Pagination/Pagination.js";
19
+ import { Popover as q } from "./components/Popover/Popover.js";
20
+ import { ResultWithChips as F } from "./components/ResultWithChips/ResultWithChips.js";
21
+ import { Select as K, SelectOption as M } from "./components/Select/Select.js";
22
+ import { Skeleton as U, SkeletonCircle as V, SkeletonTable as X } from "./components/Skeleton/Skeleton.js";
23
+ import { Snackbar as Z } from "./components/Snackbar/Snackbar.js";
24
+ import { SortTooltip as $, sortTooltipDefaultTranslations as oo } from "./components/SortTooltip/SortTooltip.js";
25
+ import { Stepper as eo } from "./components/Stepper/Stepper.js";
26
+ import { StepperNavigator as po } from "./components/StepperNavigator/StepperNavigator.js";
27
+ import { TBody as fo, THead as mo, Table as xo, Td as no, Th as io, Tr as lo } from "./components/Table/Table.js";
28
+ import { Tabs as so } from "./components/Tabs/Tabs.js";
29
+ import { TextDisplay as go } from "./components/TextDisplay/TextDisplay.js";
30
+ import { Toggle as So } from "./components/Toggle/Toggle.js";
31
+ import { G as ko } from "./Group-DspH8hyO.js";
32
+ import { Tooltip as ho } from "./components/Tooltip/Tooltip.js";
33
+ import { Text as Io, Typography as Po } from "./components/Typography/Typography.js";
34
+ import { SnackbarContext as yo, SnackbarProvider as Ao, useSnackbar as Bo } from "./contexts/SnackbarProvider/SnackbarProvider.js";
35
+ import { default as Ro } from "./components/Dialog/DialogTitle.js";
36
+ import { default as wo } from "./components/Dialog/Content.js";
37
+ import { default as Lo } from "./components/Dialog/Actions.js";
38
+ import { Tab as Oo } from "./components/Tabs/Tab.js";
39
+ import { TabPanel as jo } from "./components/Tabs/TabPanel.js";
39
40
  export {
40
- wo as Actions,
41
+ Lo as Actions,
41
42
  t as Adornment,
42
43
  a as Advice,
43
44
  m as Autocomplete,
44
45
  n as Button,
45
- i as Checkbox,
46
+ l as Checkbox,
46
47
  s as Chip,
47
48
  S as ConfirmationDialog,
48
- Ro as Content,
49
- b as Dialog,
50
- Bo as DialogTitle,
51
- C as EllipsisTooltip,
52
- D as Icon,
53
- P as IconButton,
54
- y as Input,
55
- B as InputSearch,
56
- R as LoadingSpinner,
57
- w as PageHeader,
58
- L as Pagination,
59
- W as Popover,
60
- q as ResultWithChips,
61
- g as RowItem,
62
- F as Select,
63
- J as SelectOption,
64
- M as Skeleton,
65
- Q as SkeletonCircle,
66
- U as SkeletonTable,
67
- X as Snackbar,
68
- Po as SnackbarContext,
69
- vo as SnackbarProvider,
70
- Z as SortTooltip,
71
- oo as Stepper,
72
- eo as StepperNavigator,
73
- po as TBody,
74
- ao as THead,
75
- Lo as Tab,
76
- Oo as TabPanel,
77
- fo as Table,
78
- io as Tabs,
79
- mo as Td,
80
- ho as Text,
81
- so as TextDisplay,
82
- xo as Th,
83
- co as Toggle,
84
- So as ToggleGroup,
85
- c as ToggleGroupItem,
86
- ko as Tooltip,
87
- no as Tr,
88
- Do as Typography,
89
- N as paginationDefaultTranslations,
90
- _ as sortTooltipDefaultTranslations,
91
- yo as useSnackbar
49
+ wo as Content,
50
+ b as Description,
51
+ C as Dialog,
52
+ Ro as DialogTitle,
53
+ D as EllipsisTooltip,
54
+ P as Icon,
55
+ y as IconButton,
56
+ B as Input,
57
+ R as InputSearch,
58
+ w as LoadingSpinner,
59
+ L as PageHeader,
60
+ O as Pagination,
61
+ q as Popover,
62
+ F as ResultWithChips,
63
+ c as RowItem,
64
+ K as Select,
65
+ M as SelectOption,
66
+ U as Skeleton,
67
+ V as SkeletonCircle,
68
+ X as SkeletonTable,
69
+ Z as Snackbar,
70
+ yo as SnackbarContext,
71
+ Ao as SnackbarProvider,
72
+ $ as SortTooltip,
73
+ eo as Stepper,
74
+ po as StepperNavigator,
75
+ fo as TBody,
76
+ mo as THead,
77
+ Oo as Tab,
78
+ jo as TabPanel,
79
+ xo as Table,
80
+ so as Tabs,
81
+ no as Td,
82
+ Io as Text,
83
+ go as TextDisplay,
84
+ io as Th,
85
+ So as Toggle,
86
+ ko as ToggleGroup,
87
+ g as ToggleGroupItem,
88
+ ho as Tooltip,
89
+ lo as Tr,
90
+ Po as Typography,
91
+ W as paginationDefaultTranslations,
92
+ oo as sortTooltipDefaultTranslations,
93
+ Bo as useSnackbar
92
94
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pismo/marola",
3
3
  "description": "CDX tribe component library",
4
- "version": "1.0.0-beta.60",
4
+ "version": "1.0.0-beta.63",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
7
7
  "types": "dist/main.d.ts",
@@ -100,4 +100,4 @@
100
100
  "@mui/base": "^5.0.0-beta.40",
101
101
  "@mui/material": "^5.15.15"
102
102
  }
103
- }
103
+ }
@@ -9,6 +9,7 @@ import "./components/Avatar/Avatar.js";
9
9
  import "./components/Button/Button.js";
10
10
  import { Adornment as v } from "./components/Adornment/Adornment.js";
11
11
  import "./components/Dialog/Dialog.js";
12
+ import { Skeleton as f } from "./components/Skeleton/Skeleton.js";
12
13
  import "./components/IconButton/IconButton.js";
13
14
  import "./components/InputSearch/InputSearch.js";
14
15
  import "./components/Select/Select.js";
@@ -17,7 +18,6 @@ import "./components/Table/Table.js";
17
18
  import "./components/Tabs/Tabs.js";
18
19
  import { s as y } from "./Group-DspH8hyO.js";
19
20
  import "./contexts/SnackbarProvider/SnackbarProvider.js";
20
- import { Skeleton as f } from "./components/Skeleton/Skeleton.js";
21
21
  import { B as x } from "./Button-BAljjMv3.js";
22
22
  const I = "_chip_1wvod_61", P = "_chip__adornment_1wvod_116", z = "_chip__remove_1wvod_121", n = {
23
23
  "u-typography-h1": "_u-typography-h1_1wvod_1",