@taiv/ui 1.10.5 → 1.10.6

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.
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { CollapsibleText } from './CollapsibleText';
3
+ declare const meta: Meta<typeof CollapsibleText>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithContent: Story;
8
+ export declare const OpenAndClosed: Story;
9
+ //# sourceMappingURL=CollapsibleText.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapsibleText.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Typography/CollapsibleText/CollapsibleText.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAKpD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,eAAe,CAuCtC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAgBnC,eAAO,MAAM,OAAO,EAAE,KAerB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KASzB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KA4B3B,CAAC"}
@@ -0,0 +1,73 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState } from 'react';
3
+ import { CollapsibleText } from './CollapsibleText';
4
+ import { Stack } from '../../Layout/Stack/Stack';
5
+ import { Text } from '../Text/Text';
6
+ const meta = {
7
+ title: 'Components/Typography/CollapsibleText',
8
+ component: CollapsibleText,
9
+ parameters: {
10
+ layout: 'centered',
11
+ docs: {
12
+ description: {
13
+ component: 'CollapsibleText shows a single line of text with a caret; clicking toggles the expanded state and reveals optional children. Use it for simple expand/collapse toggles (e.g. "Show more", inline details).',
14
+ },
15
+ },
16
+ },
17
+ argTypes: {
18
+ text: {
19
+ control: { type: 'text' },
20
+ description: 'The label text',
21
+ table: { type: { summary: 'string' } },
22
+ },
23
+ variant: {
24
+ control: { type: 'select' },
25
+ options: ['body', 'subtle', 'label', 'caption'],
26
+ description: 'Text variant for the label',
27
+ table: { type: { summary: 'keyof textStyle' }, defaultValue: { summary: "'body'" } },
28
+ },
29
+ opened: {
30
+ control: { type: 'boolean' },
31
+ description: 'Whether the content is expanded',
32
+ table: { type: { summary: 'boolean' } },
33
+ },
34
+ setOpened: {
35
+ description: 'Called when the label is clicked to toggle open state',
36
+ table: { type: { summary: '(opened: boolean) => void' } },
37
+ },
38
+ children: {
39
+ description: 'Content shown when expanded',
40
+ control: false,
41
+ table: { type: { summary: 'ReactNode' }, disable: true },
42
+ },
43
+ },
44
+ };
45
+ export default meta;
46
+ const CollapsibleTextWithState = (props) => {
47
+ var _a;
48
+ const [opened, setOpened] = useState((_a = props.initialOpened) !== null && _a !== void 0 ? _a : false);
49
+ return (_jsx(CollapsibleText, { text: props.text, variant: props.variant, opened: opened, setOpened: setOpened, children: props.children }));
50
+ };
51
+ export const Default = {
52
+ render: (args) => {
53
+ const [opened, setOpened] = useState(false);
54
+ return (_jsx(CollapsibleText, { text: args.text, variant: args.variant, opened: opened, setOpened: setOpened, children: _jsx(Stack, { gap: "0.8rem", style: { paddingTop: '0.4rem' }, children: _jsx(Text, { variant: "body", children: "Expanded content goes here. You can put forms, lists, or any other content." }) }) }));
55
+ },
56
+ args: {
57
+ text: 'Show more',
58
+ variant: 'body',
59
+ },
60
+ };
61
+ export const WithContent = {
62
+ render: () => (_jsx(CollapsibleTextWithState, { text: "Section with content", children: _jsxs(Stack, { gap: "0.4rem", style: { paddingTop: '0.4rem' }, children: [_jsx(Text, { variant: "body", children: "First paragraph of expanded content." }), _jsx(Text, { variant: "body", children: "Second paragraph. Use CollapsibleText for a single-line label that expands." })] }) })),
63
+ };
64
+ export const OpenAndClosed = {
65
+ render: () => (_jsxs(Stack, { gap: "2rem", children: [_jsxs("div", { children: [_jsx(Text, { variant: "label", style: { marginBottom: '0.4rem', display: 'block' }, children: "Closed" }), _jsx(CollapsibleTextWithState, { text: "Closed state (click to expand)" })] }), _jsxs("div", { children: [_jsx(Text, { variant: "label", style: { marginBottom: '0.4rem', display: 'block' }, children: "Open" }), _jsx(CollapsibleTextWithState, { text: "Open state (click to collapse)", initialOpened: true, children: _jsx(Stack, { gap: "0.4rem", style: { paddingTop: '0.4rem' }, children: _jsx(Text, { variant: "body", children: "Content is visible when opened." }) }) })] })] })),
66
+ parameters: {
67
+ docs: {
68
+ description: {
69
+ story: 'Controlled by opened/setOpened. The caret rotates when expanded.',
70
+ },
71
+ },
72
+ },
73
+ };
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface CollapsibleTitleProps {
3
+ title: string;
4
+ subText: string;
5
+ className?: string;
6
+ opened: boolean;
7
+ setOpened: (opened: boolean) => void;
8
+ children?: React.ReactNode;
9
+ }
10
+ declare const CollapsibleTitle: ({ title, subText, className, opened, setOpened, children }: CollapsibleTitleProps) => import("react/jsx-runtime").JSX.Element;
11
+ export { CollapsibleTitle };
12
+ //# sourceMappingURL=CollapsibleTitle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapsibleTitle.d.ts","sourceRoot":"","sources":["../../../../src/components/Typography/CollapsibleTitle/CollapsibleTitle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,UAAU,qBAAqB;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IACrC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,QAAA,MAAM,gBAAgB,GAAI,4DAA4D,qBAAqB,4CA4B1G,CAAC;AAEF,OAAO,EAAE,gBAAgB,EAAE,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { IconCaretDownFilled } from '@tabler/icons-react';
3
+ import { neutral } from '../../../constants/colors';
4
+ import { Box } from '../../Layout/Box/Box';
5
+ import { Group } from '../../Layout/Group/Group';
6
+ import { Stack } from '../../Layout/Stack/Stack';
7
+ import { Text } from '../Text/Text';
8
+ import { Title } from '../Title/Title';
9
+ import { Transition } from '../../Misc/Transition/Transition';
10
+ import { UnstyledButton } from '../../Inputs/Buttons/UnstyledButton/UnstyledButton';
11
+ const CollapsibleTitle = ({ title, subText, className, opened, setOpened, children }) => {
12
+ return (_jsxs(_Fragment, { children: [_jsx(UnstyledButton, { className: className, onClick: () => setOpened(!opened), children: _jsxs(Stack, { gap: "0.2rem", children: [_jsxs(Group, { gap: "0.4rem", align: "center", children: [_jsx(Title, { variant: "sectionSubheader", size: "md", weight: "medium", children: title }), _jsx(IconCaretDownFilled, { size: 18, style: {
13
+ color: neutral[200],
14
+ transform: opened ? 'rotate(180deg)' : 'none',
15
+ transition: 'transform 200ms ease',
16
+ } })] }), _jsx(Text, { variant: "caption", children: subText })] }) }), _jsx(Transition, { mounted: opened, transition: "scale-y", duration: 300, children: (styles) => _jsx(Box, { style: { overflow: 'hidden' }, children: children }) })] }));
17
+ };
18
+ export { CollapsibleTitle };
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { CollapsibleTitle } from './CollapsibleTitle';
3
+ declare const meta: Meta<typeof CollapsibleTitle>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithContent: Story;
8
+ export declare const OpenAndClosed: Story;
9
+ //# sourceMappingURL=CollapsibleTitle.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapsibleTitle.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Typography/CollapsibleTitle/CollapsibleTitle.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAItD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,gBAAgB,CAsCvC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAgBnC,eAAO,MAAM,OAAO,EAAE,KAoBrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAazB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KA4B3B,CAAC"}
@@ -0,0 +1,72 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState } from 'react';
3
+ import { CollapsibleTitle } from './CollapsibleTitle';
4
+ import { Stack } from '../../Layout/Stack/Stack';
5
+ import { Text } from '../Text/Text';
6
+ const meta = {
7
+ title: 'Components/Typography/CollapsibleTitle',
8
+ component: CollapsibleTitle,
9
+ parameters: {
10
+ layout: 'centered',
11
+ docs: {
12
+ description: {
13
+ component: 'CollapsibleTitle shows a title and subtext with a caret; clicking toggles the expanded state and reveals optional children. Use it for section headers that expand to show more content.',
14
+ },
15
+ },
16
+ },
17
+ argTypes: {
18
+ title: {
19
+ control: { type: 'text' },
20
+ description: 'Main heading text',
21
+ table: { type: { summary: 'string' } },
22
+ },
23
+ subText: {
24
+ control: { type: 'text' },
25
+ description: 'Secondary text shown below the title',
26
+ table: { type: { summary: 'string' } },
27
+ },
28
+ opened: {
29
+ control: { type: 'boolean' },
30
+ description: 'Whether the content is expanded',
31
+ table: { type: { summary: 'boolean' } },
32
+ },
33
+ setOpened: {
34
+ description: 'Called when the header is clicked to toggle open state',
35
+ table: { type: { summary: '(opened: boolean) => void' } },
36
+ },
37
+ children: {
38
+ description: 'Content shown when expanded',
39
+ control: false,
40
+ table: { type: { summary: 'ReactNode' }, disable: true },
41
+ },
42
+ },
43
+ };
44
+ export default meta;
45
+ const CollapsibleTitleWithState = (props) => {
46
+ var _a;
47
+ const [opened, setOpened] = useState((_a = props.initialOpened) !== null && _a !== void 0 ? _a : false);
48
+ return (_jsx(CollapsibleTitle, { title: props.title, subText: props.subText, opened: opened, setOpened: setOpened, children: props.children }));
49
+ };
50
+ export const Default = {
51
+ render: (args) => {
52
+ const [opened, setOpened] = useState(false);
53
+ return (_jsx(CollapsibleTitle, { title: args.title, subText: args.subText, opened: opened, setOpened: setOpened, children: _jsx(Stack, { gap: "0.8rem", style: { paddingTop: '0.4rem' }, children: _jsx(Text, { variant: "body", children: "Expanded content goes here. You can put forms, lists, or any other content." }) }) }));
54
+ },
55
+ args: {
56
+ title: 'Title',
57
+ subText: 'Subtext',
58
+ },
59
+ };
60
+ export const WithContent = {
61
+ render: () => (_jsx(CollapsibleTitleWithState, { title: "Section with content", subText: "Click to expand", children: _jsxs(Stack, { gap: "0.4rem", style: { paddingTop: '0.4rem' }, children: [_jsx(Text, { variant: "body", children: "First paragraph of expanded content." }), _jsx(Text, { variant: "body", children: "Second paragraph. The header uses a medium-weight title and caption subtext by default." })] }) })),
62
+ };
63
+ export const OpenAndClosed = {
64
+ render: () => (_jsxs(Stack, { gap: "2rem", children: [_jsxs("div", { children: [_jsx(Text, { variant: "label", style: { marginBottom: '0.4rem', display: 'block' }, children: "Closed" }), _jsx(CollapsibleTitleWithState, { title: "Closed state", subText: "(click to expand)" })] }), _jsxs("div", { children: [_jsx(Text, { variant: "label", style: { marginBottom: '0.4rem', display: 'block' }, children: "Open" }), _jsx(CollapsibleTitleWithState, { title: "Open state", subText: "(click to collapse)", initialOpened: true, children: _jsx(Stack, { gap: "0.4rem", style: { paddingTop: '0.4rem' }, children: _jsx(Text, { variant: "body", children: "Content is visible when opened." }) }) })] })] })),
65
+ parameters: {
66
+ docs: {
67
+ description: {
68
+ story: 'Controlled by opened/setOpened. The caret rotates when expanded.',
69
+ },
70
+ },
71
+ },
72
+ };
@@ -50,6 +50,7 @@ export { Table } from './Layout/Table/Table';
50
50
  export type { ColumnConfig } from './Layout/Table/Table';
51
51
  export { Tabs } from './Layout/Tabs/Tabs';
52
52
  export { CollapsibleText } from './Typography/CollapsibleText/CollapsibleText';
53
+ export { CollapsibleTitle } from './Typography/CollapsibleTitle/CollapsibleTitle';
53
54
  export { Text } from './Typography/Text/Text';
54
55
  export { Title } from './Typography/Title/Title';
55
56
  export { Fraction } from './Typography/Fraction/Fraction';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
@@ -54,6 +54,7 @@ export { Table } from './Layout/Table/Table';
54
54
  export { Tabs } from './Layout/Tabs/Tabs';
55
55
  //Typography
56
56
  export { CollapsibleText } from './Typography/CollapsibleText/CollapsibleText';
57
+ export { CollapsibleTitle } from './Typography/CollapsibleTitle/CollapsibleTitle';
57
58
  export { Text } from './Typography/Text/Text';
58
59
  export { Title } from './Typography/Title/Title';
59
60
  export { Fraction } from './Typography/Fraction/Fraction';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiv/ui",
3
- "version": "1.10.5",
3
+ "version": "1.10.6",
4
4
  "author": "Taiv",
5
5
  "description": "Taiv's web UI Toolkit built on Mantine v6",
6
6
  "main": "dist/index.js",