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

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 +15 -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 +90 -89
  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,15 @@
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
+ declare const Description: ({ label, value, isLoading, "data-testid": dataTestId, inline, }: DescriptionProps) => import("react/jsx-runtime").JSX.Element;
15
+ export default Description;
@@ -0,0 +1,54 @@
1
+ import '../../assets/Description.css';
2
+ import { jsxs as s, jsx as t } from "react/jsx-runtime";
3
+ import { c as n } 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__ */ s(
32
+ "div",
33
+ {
34
+ className: n([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 default
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
@@ -1,92 +1,93 @@
1
- import { Adornment as t } from "./components/Adornment/Adornment.js";
2
- import { Advice as a } from "./components/Advice/Advice.js";
3
- import { Autocomplete as m } from "./components/Autocomplete/Autocomplete.js";
1
+ import { Adornment as p } from "./components/Adornment/Adornment.js";
2
+ import { Advice as m } from "./components/Advice/Advice.js";
3
+ import { Autocomplete as x } from "./components/Autocomplete/Autocomplete.js";
4
4
  import "./components/Avatar/Avatar.js";
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";
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";
5
+ import { Button as i } from "./components/Button/Button.js";
6
+ import { Checkbox as T } from "./components/Checkbox/Checkbox.js";
7
+ import { C as g, R as c, T as u } from "./Toggle-MfR7l8Wn.js";
8
+ import { ConfirmationDialog as d } from "./components/ConfirmationDialog/ConfirmationDialog.js";
9
+ import "react/jsx-runtime";
10
+ import { Skeleton as k, SkeletonCircle as C, SkeletonTable as h } from "./components/Skeleton/Skeleton.js";
11
+ import { Text as I, Typography as P } from "./components/Typography/Typography.js";
12
+ import { Dialog as y } from "./components/Dialog/Dialog.js";
13
+ import { EllipsisTooltip as B } from "./components/EllipsisTooltip/EllipsisTooltip.js";
14
+ import { Icon as R } from "./components/Icon/Icon.js";
15
+ import { IconButton as w } from "./components/IconButton/IconButton.js";
16
+ import { Input as L } from "./components/Input/Input.js";
17
+ import { InputSearch as O } from "./components/InputSearch/InputSearch.js";
18
+ import { LoadingSpinner as j } from "./components/LoadingSpinner/LoadingSpinner.js";
19
+ import { PageHeader as z } from "./components/PageHeader/PageHeader.js";
20
+ import { Pagination as J, paginationDefaultTranslations as K } from "./components/Pagination/Pagination.js";
21
+ import { Popover as Q } from "./components/Popover/Popover.js";
22
+ import { ResultWithChips as V } from "./components/ResultWithChips/ResultWithChips.js";
23
+ import { Select as Y, SelectOption as Z } from "./components/Select/Select.js";
24
+ import { Snackbar as $ } from "./components/Snackbar/Snackbar.js";
25
+ import { SortTooltip as ro, sortTooltipDefaultTranslations as eo } from "./components/SortTooltip/SortTooltip.js";
26
+ import { Stepper as po } from "./components/Stepper/Stepper.js";
27
+ import { StepperNavigator as mo } from "./components/StepperNavigator/StepperNavigator.js";
28
+ import { TBody as xo, THead as no, Table as io, Td as lo, Th as To, Tr as so } from "./components/Table/Table.js";
29
+ import { Tabs as co } from "./components/Tabs/Tabs.js";
30
+ import { TextDisplay as So } from "./components/TextDisplay/TextDisplay.js";
31
+ import { Toggle as ko } from "./components/Toggle/Toggle.js";
32
+ import { G as ho } from "./Group-DspH8hyO.js";
33
+ import { Tooltip as Io } from "./components/Tooltip/Tooltip.js";
34
+ import { SnackbarContext as vo, SnackbarProvider as yo, useSnackbar as Ao } from "./contexts/SnackbarProvider/SnackbarProvider.js";
35
+ import { default as Go } from "./components/Dialog/DialogTitle.js";
36
+ import { default as Ho } from "./components/Dialog/Content.js";
37
+ import { default as Eo } from "./components/Dialog/Actions.js";
38
+ import { Tab as No } from "./components/Tabs/Tab.js";
39
+ import { TabPanel as Wo } from "./components/Tabs/TabPanel.js";
39
40
  export {
40
- wo as Actions,
41
- t as Adornment,
42
- a as Advice,
43
- m as Autocomplete,
44
- n as Button,
45
- i as Checkbox,
46
- s as Chip,
47
- 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
41
+ Eo as Actions,
42
+ p as Adornment,
43
+ m as Advice,
44
+ x as Autocomplete,
45
+ i as Button,
46
+ T as Checkbox,
47
+ g as Chip,
48
+ d as ConfirmationDialog,
49
+ Ho as Content,
50
+ y as Dialog,
51
+ Go as DialogTitle,
52
+ B as EllipsisTooltip,
53
+ R as Icon,
54
+ w as IconButton,
55
+ L as Input,
56
+ O as InputSearch,
57
+ j as LoadingSpinner,
58
+ z as PageHeader,
59
+ J as Pagination,
60
+ Q as Popover,
61
+ V as ResultWithChips,
62
+ c as RowItem,
63
+ Y as Select,
64
+ Z as SelectOption,
65
+ k as Skeleton,
66
+ C as SkeletonCircle,
67
+ h as SkeletonTable,
68
+ $ as Snackbar,
69
+ vo as SnackbarContext,
70
+ yo as SnackbarProvider,
71
+ ro as SortTooltip,
72
+ po as Stepper,
73
+ mo as StepperNavigator,
74
+ xo as TBody,
75
+ no as THead,
76
+ No as Tab,
77
+ Wo as TabPanel,
78
+ io as Table,
79
+ co as Tabs,
80
+ lo as Td,
81
+ I as Text,
82
+ So as TextDisplay,
83
+ To as Th,
84
+ ko as Toggle,
85
+ ho as ToggleGroup,
86
+ u as ToggleGroupItem,
87
+ Io as Tooltip,
88
+ so as Tr,
89
+ P as Typography,
90
+ K as paginationDefaultTranslations,
91
+ eo as sortTooltipDefaultTranslations,
92
+ Ao as useSnackbar
92
93
  };
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.62",
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",