@ftdata/ui 0.0.16 → 0.0.17

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 (62) hide show
  1. package/dist/components/IconButton/index.d.ts +15 -0
  2. package/dist/components/IconButton/index.js +37 -0
  3. package/dist/components/IconButton/modifiers/color.d.ts +36 -0
  4. package/dist/components/IconButton/modifiers/color.js +38 -0
  5. package/dist/components/IconButton/styles.d.ts +10 -0
  6. package/dist/components/IconButton/styles.js +32 -0
  7. package/dist/components/Modal/index.d.ts +25 -0
  8. package/dist/components/Modal/index.js +69 -0
  9. package/dist/components/Modal/styles.d.ts +8 -0
  10. package/dist/components/Modal/styles.js +81 -0
  11. package/dist/components/MultiSelect/components/Badge/index.d.ts +2 -1
  12. package/dist/components/MultiSelect/components/Badge/index.js +5 -2
  13. package/dist/components/MultiSelect/components/Badge/styles.d.ts +5 -1
  14. package/dist/components/MultiSelect/components/Badge/styles.js +2 -1
  15. package/dist/components/MultiSelect/components/MultiSelectList/Row/index.d.ts +3 -2
  16. package/dist/components/MultiSelect/components/MultiSelectList/Row/index.js +21 -10
  17. package/dist/components/MultiSelect/components/MultiSelectList/Row/style.js +0 -1
  18. package/dist/components/MultiSelect/components/MultiSelectList/index.d.ts +3 -3
  19. package/dist/components/MultiSelect/components/MultiSelectList/index.js +8 -11
  20. package/dist/components/MultiSelect/components/MultiSelectList/style.d.ts +1 -1
  21. package/dist/components/MultiSelect/components/MultiSelectList/style.js +21 -3
  22. package/dist/components/MultiSelect/helpers/addOption.d.ts +3 -3
  23. package/dist/components/MultiSelect/helpers/computeUnselected.d.ts +1 -1
  24. package/dist/components/MultiSelect/helpers/computeUnselected.js +1 -1
  25. package/dist/components/MultiSelect/helpers/feedbackText.d.ts +1 -1
  26. package/dist/components/MultiSelect/helpers/feedbackText.js +9 -9
  27. package/dist/components/MultiSelect/helpers/filterOptions.d.ts +1 -1
  28. package/dist/components/MultiSelect/helpers/removeOptions.d.ts +3 -3
  29. package/dist/components/MultiSelect/index.d.ts +37 -19
  30. package/dist/components/MultiSelect/index.js +92 -135
  31. package/dist/components/MultiSelect/styles.js +8 -23
  32. package/dist/components/Texts/paragraphs.d.ts +12 -0
  33. package/dist/components/Texts/paragraphs.js +14 -0
  34. package/dist/components/Texts/text.d.ts +17 -0
  35. package/dist/components/Texts/text.js +21 -0
  36. package/dist/components/Texts/titles.d.ts +7 -0
  37. package/dist/components/Texts/titles.js +37 -0
  38. package/dist/components/fields/modifiers/selectColorModifier.d.ts +1 -1
  39. package/dist/components/fields/modifiers/selectColorModifier.js +7 -1
  40. package/dist/index.d.ts +5 -5
  41. package/dist/index.js +4 -2
  42. package/package.json +3 -3
  43. package/dist/components/MultiSelect/helpers/arraysEqual.d.ts +0 -2
  44. package/dist/components/MultiSelect/helpers/arraysEqual.js +0 -5
  45. package/dist/components/MultiSelect/helpers/computeSelected.d.ts +0 -2
  46. package/dist/components/MultiSelect/helpers/computeSelected.js +0 -2
  47. package/dist/components/MultiSelect/helpers/getChangedFieds.d.ts +0 -2
  48. package/dist/components/MultiSelect/helpers/getChangedFieds.js +0 -17
  49. package/dist/components/MultiSelect/hooks/useMultiSelect.d.ts +0 -10
  50. package/dist/components/MultiSelect/hooks/useMultiSelect.js +0 -44
  51. package/dist/components/MultiSelect/interfaces/actions.d.ts +0 -4
  52. package/dist/components/MultiSelect/interfaces/actions.js +0 -0
  53. package/dist/components/MultiSelect/interfaces/config.d.ts +0 -17
  54. package/dist/components/MultiSelect/interfaces/config.js +0 -0
  55. package/dist/components/MultiSelect/interfaces/state.d.ts +0 -10
  56. package/dist/components/MultiSelect/interfaces/state.js +0 -0
  57. package/dist/components/MultiSelect/reducers/stateReducer.d.ts +0 -21
  58. package/dist/components/MultiSelect/reducers/stateReducer.js +0 -44
  59. package/dist/components/Text/Paragraph/Paragraph.stories.d.ts +0 -29
  60. package/dist/components/Text/Paragraph/Paragraph.stories.js +0 -124
  61. package/dist/components/Text/Title/Title.stories.d.ts +0 -41
  62. package/dist/components/Text/Title/Title.stories.js +0 -106
package/dist/index.d.ts CHANGED
@@ -17,12 +17,12 @@ export type { ISelectOption } from "./components/Select";
17
17
  export type { SelectProps } from "./components/Select";
18
18
  export { default as StateAlert } from "./components/StateAlert";
19
19
  export { default as MultiSelect } from "./components/MultiSelect";
20
- export { useMultiSelect } from "./components/MultiSelect/hooks/useMultiSelect";
21
- export type { MultiSelectProps } from "./components/MultiSelect";
22
- export type { IMultiSelectActions } from "./components/MultiSelect/interfaces/actions";
23
- export type { IMultiSelectOption, IMultiSelectState, } from "./components/MultiSelect/interfaces/state";
24
- export type { IMultiSelectConfig, IMultiSelectConfigActions, IMultiSelectConfigFields, } from "./components/MultiSelect/interfaces/config";
20
+ export type { MultiSelectProps, IMultiSelectOption, } from "./components/MultiSelect";
25
21
  export { default as DoubleList } from "./components/DoubleList";
26
22
  export { default as Menu } from "./components/Menu";
27
23
  export type { MenuItem, MenuItemData, SubMenu, SubMenuData, } from "./components/Menu/types/MenuItem";
28
24
  export { Input } from "./components/Input";
25
+ export { default as IconButton } from "./components/IconButton";
26
+ export { default as Modal } from "./components/Modal";
27
+ export { ModalOverlay } from "./components/Modal/styles";
28
+ export type { ModalAction, ModalActions, ModalProps, ModalSizeCustom, ModalSizes, } from "./components/Modal";
package/dist/index.js CHANGED
@@ -13,10 +13,12 @@ import UserMenu from "./components/UserMenu/index.js";
13
13
  import Select from "./components/Select/index.js";
14
14
  import StateAlert from "./components/StateAlert/index.js";
15
15
  import MultiSelect from "./components/MultiSelect/index.js";
16
- import { useMultiSelect } from "./components/MultiSelect/hooks/useMultiSelect.js";
17
16
  import DoubleList from "./components/DoubleList/index.js";
18
17
  import Menu from "./components/Menu/index.js";
19
18
  import { Input } from "./components/Input/index.js";
19
+ import IconButton from "./components/IconButton/index.js";
20
+ import Modal from "./components/Modal/index.js";
21
+ import { ModalOverlay } from "./components/Modal/styles.js";
20
22
  export * from "./components/Grid/index.js";
21
23
  export * from "./components/Text/index.js";
22
- export { Avatar, Breadcrumb, Button, Checkbox, Collapse, DoubleList, EmptyState, Input, Loading, Menu, MultiSelect, Radio, Select, StateAlert, Switch, TextArea, Tooltips, UserMenu, useLoading, useMultiSelect };
24
+ export { Avatar, Breadcrumb, Button, Checkbox, Collapse, DoubleList, EmptyState, IconButton, Input, Loading, Menu, Modal, ModalOverlay, MultiSelect, Radio, Select, StateAlert, Switch, TextArea, Tooltips, UserMenu, useLoading };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ftdata/ui",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -31,8 +31,8 @@
31
31
  "react-input-mask-next": "3.0.0-alpha.12",
32
32
  "react-select": "^5.10.2",
33
33
  "react-window": "^2.0.2",
34
- "@ftdata/f-icons": "0.0.4",
35
- "@ftdata/f-tokens": "0.0.1"
34
+ "@ftdata/f-tokens": "0.0.1",
35
+ "@ftdata/f-icons": "0.0.6"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
@@ -1,2 +0,0 @@
1
- import { IMultiSelectOption } from "../interfaces/state";
2
- export declare function arraysEqual(a: IMultiSelectOption[], b: IMultiSelectOption[]): boolean;
@@ -1,5 +0,0 @@
1
- function arraysEqual(a, b) {
2
- if (a.length !== b.length) return false;
3
- return a.every((item, idx)=>item.value === b[idx].value);
4
- }
5
- export { arraysEqual };
@@ -1,2 +0,0 @@
1
- import { IMultiSelectOption } from "../interfaces/state";
2
- export declare const computeSelected: (options: IMultiSelectOption[], unselected: IMultiSelectOption[]) => IMultiSelectOption[];
@@ -1,2 +0,0 @@
1
- const computeSelected = (options, unselected)=>options.filter((opt)=>!unselected.some((u)=>u.value === opt.value));
2
- export { computeSelected };
@@ -1,2 +0,0 @@
1
- import { IMultiSelectState } from "../interfaces/state";
2
- export declare function getChangedFields(base: Partial<IMultiSelectState>, compare: Partial<IMultiSelectState>): (keyof IMultiSelectState)[];
@@ -1,17 +0,0 @@
1
- import { arraysEqual } from "./arraysEqual.js";
2
- const FIELDS = [
3
- "selected",
4
- "options",
5
- "filtered",
6
- "unselected"
7
- ];
8
- function getChangedFields(base, compare) {
9
- const changed = [];
10
- FIELDS.forEach((key)=>{
11
- const last = base[key] || [];
12
- const next = compare[key] || [];
13
- if (arraysEqual(last, next)) changed.push(key);
14
- });
15
- return changed;
16
- }
17
- export { getChangedFields };
@@ -1,10 +0,0 @@
1
- import { IMultiSelectState } from "../interfaces/state";
2
- import { IMultiSelectConfig } from "../interfaces/config";
3
- interface UseIMultiSelectConfig {
4
- config?: IMultiSelectConfig;
5
- }
6
- export declare function useMultiSelect({ config }: UseIMultiSelectConfig): {
7
- state: IMultiSelectState;
8
- updateState: (newPartial: Partial<IMultiSelectState>) => void;
9
- };
10
- export {};
@@ -1,44 +0,0 @@
1
- import { useEffect, useReducer } from "react";
2
- import { computeUnselected } from "../helpers/computeUnselected.js";
3
- import { stateReducer } from "../reducers/stateReducer.js";
4
- import { arraysEqual } from "../helpers/arraysEqual.js";
5
- function useMultiSelect({ config }) {
6
- const initial = {
7
- selected: config?.fields?.externalSelected ?? [],
8
- options: config?.fields?.externalOptions ?? [],
9
- filtered: config?.fields?.externalFiltered ?? [],
10
- unselected: computeUnselected(config?.fields?.externalOptions ?? [], config?.fields?.externalSelected ?? [])
11
- };
12
- const [state, dispatch] = useReducer(stateReducer, initial);
13
- useEffect(()=>{
14
- if (!config) return;
15
- const { fields, actions } = config;
16
- const payload = {};
17
- if (fields?.externalSelected && !arraysEqual(fields.externalSelected, state.selected)) payload.selected = fields.externalSelected;
18
- if (fields?.externalOptions && !arraysEqual(fields.externalOptions, state.options)) payload.options = fields.externalOptions;
19
- if (fields?.externalFiltered && !arraysEqual(fields.externalFiltered, state.filtered)) payload.filtered = fields.externalFiltered;
20
- if (fields?.externalUnselected && !arraysEqual(fields.externalUnselected, state.unselected)) payload.unselected = fields.externalUnselected;
21
- if (Object.keys(payload).length) dispatch({
22
- type: "SET_STATE",
23
- payload
24
- });
25
- if (actions?.onSelectedChange) actions.onSelectedChange(state.selected);
26
- if (actions?.onOptionsChange) actions.onOptionsChange(state.options);
27
- if (actions?.onFilteredChange) actions.onFilteredChange(state.filtered);
28
- if (actions?.onUnselectedChange) actions.onUnselectedChange(state.unselected);
29
- }, [
30
- state,
31
- config
32
- ]);
33
- const updateState = (newPartial)=>{
34
- dispatch({
35
- type: "SET_STATE",
36
- payload: newPartial
37
- });
38
- };
39
- return {
40
- state,
41
- updateState
42
- };
43
- }
44
- export { useMultiSelect };
@@ -1,4 +0,0 @@
1
- export interface IMultiSelectActions {
2
- clear: () => void;
3
- search?: (query: string) => void;
4
- }
File without changes
@@ -1,17 +0,0 @@
1
- import { IMultiSelectState, IMultiSelectOption } from "./state";
2
- export interface IMultiSelectConfigFields {
3
- externalSelected?: IMultiSelectOption[];
4
- externalOptions?: IMultiSelectOption[];
5
- externalFiltered?: IMultiSelectOption[];
6
- externalUnselected?: IMultiSelectOption[];
7
- }
8
- export interface IMultiSelectConfigActions {
9
- onSelectedChange?: (selected: IMultiSelectState["selected"]) => void;
10
- onOptionsChange?: (options: IMultiSelectState["options"]) => void;
11
- onFilteredChange?: (filtered: IMultiSelectState["filtered"]) => void;
12
- onUnselectedChange?: (unselected: IMultiSelectState["unselected"]) => void;
13
- }
14
- export interface IMultiSelectConfig {
15
- fields?: IMultiSelectConfigFields;
16
- actions?: IMultiSelectConfigActions;
17
- }
File without changes
@@ -1,10 +0,0 @@
1
- export interface IMultiSelectOption {
2
- value: string;
3
- label: string;
4
- }
5
- export interface IMultiSelectState {
6
- selected: IMultiSelectOption[];
7
- options: IMultiSelectOption[];
8
- filtered: IMultiSelectOption[];
9
- unselected: IMultiSelectOption[];
10
- }
File without changes
@@ -1,21 +0,0 @@
1
- import { IMultiSelectOption, IMultiSelectState } from "../interfaces/state";
2
- type MultiSelectAction = {
3
- type: "SET_STATE";
4
- payload: Partial<IMultiSelectState>;
5
- } | {
6
- type: "SET_OPTIONS";
7
- payload: IMultiSelectOption[];
8
- } | {
9
- type: "SET_SELECTED";
10
- payload: IMultiSelectOption[];
11
- } | {
12
- type: "SET_UNSELECTED";
13
- payload: IMultiSelectOption[];
14
- } | {
15
- type: "SET_FILTERED";
16
- payload: IMultiSelectOption[];
17
- } | {
18
- type: "CLEAR";
19
- };
20
- export declare function stateReducer(state: IMultiSelectState, action: MultiSelectAction): IMultiSelectState;
21
- export {};
@@ -1,44 +0,0 @@
1
- import { computeUnselected } from "../helpers/computeUnselected.js";
2
- import { computeSelected } from "../helpers/computeSelected.js";
3
- function stateReducer(state, action) {
4
- switch(action.type){
5
- case "SET_STATE":
6
- return {
7
- ...state,
8
- ...action.payload,
9
- unselected: computeUnselected(action.payload.options ?? state.options, action.payload.selected ?? state.selected)
10
- };
11
- case "SET_OPTIONS":
12
- return {
13
- ...state,
14
- options: action.payload,
15
- unselected: computeUnselected(action.payload, state.selected)
16
- };
17
- case "SET_SELECTED":
18
- return {
19
- ...state,
20
- selected: action.payload,
21
- unselected: computeUnselected(state.options, action.payload)
22
- };
23
- case "SET_UNSELECTED":
24
- return {
25
- ...state,
26
- selected: computeSelected(state.options, action.payload),
27
- unselected: action.payload
28
- };
29
- case "SET_FILTERED":
30
- return {
31
- ...state,
32
- filtered: action.payload
33
- };
34
- case "CLEAR":
35
- return {
36
- ...state,
37
- selected: [],
38
- unselected: state.options
39
- };
40
- default:
41
- return state;
42
- }
43
- }
44
- export { stateReducer };
@@ -1,29 +0,0 @@
1
- import { Meta, StoryObj } from "@storybook/react";
2
- import { Paragraph } from "../index";
3
- /**
4
- * Títulos são usados para mostrar textos regulares em uma página.
5
- * Este componente também funciona com os atributos nativos de um HTML paragraph element.
6
- */
7
- declare const meta: Meta<typeof Paragraph>;
8
- export default meta;
9
- type Story = StoryObj<typeof meta>;
10
- /**
11
- * Variação padrão do Paragraph quando apenas as propriedades obrigatórias são fornecidas.
12
- */
13
- export declare const Default: Story;
14
- /**
15
- * Variação de tamanho caption do Paragraph.
16
- */
17
- export declare const Caption: Story;
18
- /**
19
- * Variação de tamanho sm do Paragraph.
20
- */
21
- export declare const Sm: Story;
22
- /**
23
- * Variação de tamanho md do Paragraph.
24
- */
25
- export declare const Md: Story;
26
- /**
27
- * Todas as variações padrão de de tamanho do Paragraph.
28
- */
29
- export declare const Sizes: Story;
@@ -1,124 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Paragraph, Title } from "../index.js";
3
- const meta = {
4
- title: "DESIGN COMPONENTS/Text/Paragraph",
5
- component: Paragraph,
6
- tags: [
7
- "autodocs"
8
- ],
9
- parameters: {
10
- layout: "centered"
11
- },
12
- argTypes: {
13
- children: {
14
- description: "Define o texto que ser\xe1 renderizado.",
15
- control: {
16
- type: "text"
17
- }
18
- },
19
- size: {
20
- description: "Define o tamanho do Paragraph.",
21
- table: {
22
- type: {
23
- summary: '"caption" | "sm" | "md"'
24
- }
25
- }
26
- }
27
- }
28
- };
29
- const Paragraph_stories = meta;
30
- const loremIpsum = `Lorem ipsum dolor sit amet, consectetur adipiscing elit.
31
- Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
32
- Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
33
- Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
34
- Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`;
35
- const Default = {
36
- args: {
37
- size: "caption",
38
- children: loremIpsum
39
- }
40
- };
41
- const Caption = {
42
- args: {
43
- children: loremIpsum,
44
- size: "caption"
45
- }
46
- };
47
- const Sm = {
48
- args: {
49
- children: loremIpsum,
50
- size: "sm"
51
- }
52
- };
53
- const Md = {
54
- args: {
55
- children: loremIpsum,
56
- size: "md"
57
- }
58
- };
59
- const Sizes = {
60
- render: ()=>/*#__PURE__*/ jsxs("div", {
61
- style: {
62
- display: "flex",
63
- justifyContent: "center",
64
- alignItems: "center",
65
- flexDirection: "column",
66
- gap: "2.5rem",
67
- width: "100%"
68
- },
69
- children: [
70
- /*#__PURE__*/ jsxs("div", {
71
- style: {
72
- display: "grid",
73
- gridTemplateColumns: "10% 90%",
74
- alignItems: "center"
75
- },
76
- children: [
77
- /*#__PURE__*/ jsx(Title, {
78
- size: "md",
79
- children: "Caption"
80
- }),
81
- /*#__PURE__*/ jsx(Paragraph, {
82
- size: "caption",
83
- children: loremIpsum
84
- })
85
- ]
86
- }),
87
- /*#__PURE__*/ jsxs("div", {
88
- style: {
89
- display: "grid",
90
- gridTemplateColumns: "10% 90%",
91
- alignItems: "center"
92
- },
93
- children: [
94
- /*#__PURE__*/ jsx(Title, {
95
- size: "md",
96
- children: "md"
97
- }),
98
- /*#__PURE__*/ jsx(Paragraph, {
99
- size: "md",
100
- children: loremIpsum
101
- })
102
- ]
103
- }),
104
- /*#__PURE__*/ jsxs("div", {
105
- style: {
106
- display: "grid",
107
- gridTemplateColumns: "10% 90%",
108
- alignItems: "center"
109
- },
110
- children: [
111
- /*#__PURE__*/ jsx(Title, {
112
- size: "md",
113
- children: "sm"
114
- }),
115
- /*#__PURE__*/ jsx(Paragraph, {
116
- size: "sm",
117
- children: loremIpsum
118
- })
119
- ]
120
- })
121
- ]
122
- })
123
- };
124
- export { Caption, Default, Md, Sizes, Sm, Paragraph_stories as default };
@@ -1,41 +0,0 @@
1
- import { Meta, StoryObj } from "@storybook/react";
2
- import { Title } from "../index";
3
- /**
4
- * Títulos são usados para mostrar textos importantes em uma página.
5
- * Este componente também funciona com os atributos nativos de um HTML input element.
6
- */
7
- declare const meta: Meta<typeof Title>;
8
- export default meta;
9
- type Story = StoryObj<typeof meta>;
10
- /**
11
- * Variação padrão do Title quando apenas as propriedades obrigatórias são fornecidas.
12
- */
13
- export declare const Default: Story;
14
- /**
15
- * Variação subheading do Title.
16
- */
17
- export declare const Subheading: Story;
18
- /**
19
- * Variação sm do Title.
20
- */
21
- export declare const Sm: Story;
22
- /**
23
- * Variação md do Title.
24
- */
25
- export declare const Md: Story;
26
- /**
27
- * Variação section do Title.
28
- */
29
- export declare const Section: Story;
30
- /**
31
- * Variação standart do Title.
32
- */
33
- export declare const Standart: Story;
34
- /**
35
- * Variação huge do Title.
36
- */
37
- export declare const Huge: Story;
38
- /**
39
- * Todas as variações padrão de de tamanho do Title.
40
- */
41
- export declare const Sizes: Story;
@@ -1,106 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Title } from "../index.js";
3
- const meta = {
4
- title: "DESIGN COMPONENTS/Text/Title",
5
- component: Title,
6
- tags: [
7
- "autodocs"
8
- ],
9
- parameters: {
10
- layout: "centered"
11
- },
12
- argTypes: {
13
- size: {
14
- description: "Define o tipo e tamanho do Title de acordo com sua varia\xe7\xe3o.",
15
- table: {
16
- type: {
17
- summary: '"subheading" | "sm" | "md" | "section" | "standard" | "huge"'
18
- }
19
- }
20
- },
21
- children: {
22
- control: {
23
- type: "text"
24
- },
25
- description: "Define o texto que ser\xe1 renderizado."
26
- }
27
- }
28
- };
29
- const Title_stories = meta;
30
- const Default = {
31
- args: {
32
- children: "Default",
33
- size: "huge"
34
- }
35
- };
36
- const Subheading = {
37
- args: {
38
- children: "Subheading",
39
- size: "subheading"
40
- }
41
- };
42
- const Sm = {
43
- args: {
44
- children: "Sm",
45
- size: "sm"
46
- }
47
- };
48
- const Md = {
49
- args: {
50
- children: "Md",
51
- size: "md"
52
- }
53
- };
54
- const Section = {
55
- args: {
56
- children: "Section",
57
- size: "section"
58
- }
59
- };
60
- const Standart = {
61
- args: {
62
- children: "Standart",
63
- size: "standard"
64
- }
65
- };
66
- const Huge = {
67
- args: {
68
- children: "Huge",
69
- size: "huge"
70
- }
71
- };
72
- const Sizes = {
73
- render: ()=>/*#__PURE__*/ jsxs("div", {
74
- style: {
75
- display: "flex",
76
- flexDirection: "column"
77
- },
78
- children: [
79
- /*#__PURE__*/ jsx(Title, {
80
- size: "huge",
81
- children: "Huge - Lorem Ipsum"
82
- }),
83
- /*#__PURE__*/ jsx(Title, {
84
- size: "standard",
85
- children: "Standart - Lorem Ipsum"
86
- }),
87
- /*#__PURE__*/ jsx(Title, {
88
- size: "section",
89
- children: "Section - Lorem Ipsum"
90
- }),
91
- /*#__PURE__*/ jsx(Title, {
92
- size: "subheading",
93
- children: "Subheading - Lorem Ipsum"
94
- }),
95
- /*#__PURE__*/ jsx(Title, {
96
- size: "md",
97
- children: "Md - Lorem Ipsum"
98
- }),
99
- /*#__PURE__*/ jsx(Title, {
100
- size: "sm",
101
- children: "sm - Lorem Ipsum"
102
- })
103
- ]
104
- })
105
- };
106
- export { Default, Huge, Md, Section, Sizes, Sm, Standart, Subheading, Title_stories as default };