@fpkit/acss 1.0.0 → 2.0.0
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/README.md +60 -0
- package/libs/{chunk-7XPFW7CB.js → chunk-43TK2ICH.js} +2 -2
- package/libs/chunk-5PJYLVFY.cjs +17 -0
- package/libs/chunk-5PJYLVFY.cjs.map +1 -0
- package/libs/chunk-E4OSROCA.cjs +17 -0
- package/libs/chunk-E4OSROCA.cjs.map +1 -0
- package/libs/chunk-KVKQLRJG.js +10 -0
- package/libs/chunk-KVKQLRJG.js.map +1 -0
- package/libs/{chunk-QVW6W76L.cjs → chunk-MGPWZRBX.cjs} +3 -3
- package/libs/chunk-NNTBIHSD.js +8 -0
- package/libs/chunk-NNTBIHSD.js.map +1 -0
- package/libs/{chunk-X3JCTEPD.js → chunk-QKHPHMG2.js} +2 -2
- package/libs/{chunk-T4T6GWYQ.cjs → chunk-R7NLLZU2.cjs} +3 -3
- package/libs/{chunk-X5LGFCWG.js → chunk-UJAQVHWC.js} +3 -3
- package/libs/{chunk-DKTHCQ5P.cjs → chunk-X5RKCLDC.cjs} +3 -3
- package/libs/components/breadcrumbs/breadcrumb.cjs +5 -5
- package/libs/components/breadcrumbs/breadcrumb.d.cts +1 -1
- package/libs/components/breadcrumbs/breadcrumb.d.ts +1 -1
- package/libs/components/breadcrumbs/breadcrumb.js +2 -2
- package/libs/components/button.cjs +3 -3
- package/libs/components/button.d.cts +1 -1
- package/libs/components/button.d.ts +1 -1
- package/libs/components/button.js +1 -1
- package/libs/components/dialog/dialog.cjs +4 -4
- package/libs/components/dialog/dialog.js +2 -2
- package/libs/components/link/link.cjs +11 -3
- package/libs/components/link/link.d.cts +131 -3
- package/libs/components/link/link.d.ts +131 -3
- package/libs/components/link/link.js +1 -1
- package/libs/components/modal.cjs +3 -3
- package/libs/components/modal.js +2 -2
- package/libs/hooks.cjs +3 -3
- package/libs/hooks.d.cts +1 -1
- package/libs/hooks.d.ts +1 -1
- package/libs/hooks.js +2 -2
- package/libs/index.cjs +12 -12
- package/libs/index.d.cts +237 -2
- package/libs/index.d.ts +237 -2
- package/libs/index.js +5 -5
- package/package.json +2 -2
- package/src/components/breadcrumbs/breadcrumb.test.tsx +1 -2
- package/src/components/buttons/README.mdx +19 -9
- package/src/components/buttons/button.tsx +19 -15
- package/src/components/link/link.stories.tsx +205 -8
- package/src/components/link/link.test.tsx +1 -1
- package/src/components/link/link.tsx +22 -0
- package/src/components/link/link.types.ts +11 -3
- package/src/docs/fpkit-developer.mdx +131 -53
- package/libs/chunk-33PNJ4LO.cjs +0 -15
- package/libs/chunk-33PNJ4LO.cjs.map +0 -1
- package/libs/chunk-GT77BX4L.cjs +0 -17
- package/libs/chunk-GT77BX4L.cjs.map +0 -1
- package/libs/chunk-OVWLQYMK.js +0 -10
- package/libs/chunk-OVWLQYMK.js.map +0 -1
- package/libs/chunk-UEPAWMDF.js +0 -8
- package/libs/chunk-UEPAWMDF.js.map +0 -1
- package/libs/link-5192f411.d.ts +0 -323
- /package/libs/{chunk-7XPFW7CB.js.map → chunk-43TK2ICH.js.map} +0 -0
- /package/libs/{chunk-QVW6W76L.cjs.map → chunk-MGPWZRBX.cjs.map} +0 -0
- /package/libs/{chunk-X3JCTEPD.js.map → chunk-QKHPHMG2.js.map} +0 -0
- /package/libs/{chunk-T4T6GWYQ.cjs.map → chunk-R7NLLZU2.cjs.map} +0 -0
- /package/libs/{chunk-X5LGFCWG.js.map → chunk-UJAQVHWC.js.map} +0 -0
- /package/libs/{chunk-DKTHCQ5P.cjs.map → chunk-X5RKCLDC.cjs.map} +0 -0
|
@@ -1,3 +1,131 @@
|
|
|
1
|
-
import 'react';
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Link - A semantic, accessible anchor component with enhanced security and styling.
|
|
5
|
+
*
|
|
6
|
+
* The Link component renders accessible `<a>` elements with automatic security
|
|
7
|
+
* attributes for external links, customizable styling variants, and full WCAG 2.1
|
|
8
|
+
* AA compliance. It supports traditional text links, button-styled links, and
|
|
9
|
+
* programmatic focus management via ref forwarding.
|
|
10
|
+
*
|
|
11
|
+
* ## Features
|
|
12
|
+
*
|
|
13
|
+
* - 🔒 **Automatic Security**: External links get `rel="noopener noreferrer"`
|
|
14
|
+
* - ♿ **WCAG 2.1 AA Compliant**: Accessible focus indicators and semantic HTML
|
|
15
|
+
* - 🎨 **Flexible Styling**: Text links, button links, and pill variants
|
|
16
|
+
* - ⚡ **Performance**: Optional prefetch hints for faster navigation
|
|
17
|
+
* - 🎯 **Ref Forwarding**: Direct DOM access for focus management and scroll
|
|
18
|
+
* - 🧪 **Type-Safe**: Full TypeScript support with comprehensive prop types
|
|
19
|
+
*
|
|
20
|
+
* ## Accessibility
|
|
21
|
+
*
|
|
22
|
+
* - ✅ Semantic `<a>` element for proper keyboard navigation
|
|
23
|
+
* - ✅ Focus indicators meet WCAG 2.4.7 (3:1 contrast ratio)
|
|
24
|
+
* - ✅ Screen readers announce link purpose and destination
|
|
25
|
+
* - ✅ External links include security attributes automatically
|
|
26
|
+
* - ✅ Supports `aria-label` for icon-only or ambiguous links
|
|
27
|
+
* - ✅ Ref forwarding enables skip-link patterns
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* // Basic internal link
|
|
31
|
+
* <Link href="/about">About Us</Link>
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* // External link with automatic security
|
|
35
|
+
* <Link href="https://example.com" target="_blank">
|
|
36
|
+
* Visit Example
|
|
37
|
+
* </Link>
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* // Button-styled call-to-action link
|
|
41
|
+
* <Link href="/signup">
|
|
42
|
+
* <b>Get Started</b>
|
|
43
|
+
* </Link>
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* // Icon-only link with accessible label
|
|
47
|
+
* <Link href="/settings" aria-label="Open settings">
|
|
48
|
+
* <SettingsIcon aria-hidden="true" />
|
|
49
|
+
* </Link>
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* // Analytics tracking with onClick (includes keyboard users)
|
|
53
|
+
* <Link
|
|
54
|
+
* href="/products"
|
|
55
|
+
* onClick={(e) => trackEvent('link_click', { href: '/products' })}
|
|
56
|
+
* >
|
|
57
|
+
* Browse Products
|
|
58
|
+
* </Link>
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* // Skip link with ref forwarding for focus management
|
|
62
|
+
* const mainRef = useRef<HTMLAnchorElement>(null);
|
|
63
|
+
*
|
|
64
|
+
* <Link ref={mainRef} href="#main-content">
|
|
65
|
+
* Skip to main content
|
|
66
|
+
* </Link>
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* // Custom styled link with CSS variables
|
|
70
|
+
* <Link
|
|
71
|
+
* href="/products"
|
|
72
|
+
* styles={{
|
|
73
|
+
* '--link-color': '#0066cc',
|
|
74
|
+
* '--link-decoration': 'underline',
|
|
75
|
+
* }}
|
|
76
|
+
* >
|
|
77
|
+
* Browse Products
|
|
78
|
+
* </Link>
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* // ✅ GOOD: Descriptive link text
|
|
82
|
+
* <Link href="/docs/installation">
|
|
83
|
+
* Read installation guide
|
|
84
|
+
* </Link>
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* // ❌ BAD: Generic link text (poor for screen readers)
|
|
88
|
+
* <Link href="/docs/installation">
|
|
89
|
+
* Click here
|
|
90
|
+
* </Link>
|
|
91
|
+
*
|
|
92
|
+
* @see {@link LinkProps} for complete prop documentation
|
|
93
|
+
*/
|
|
94
|
+
declare const Link: React.ForwardRefExoticComponent<{
|
|
95
|
+
href?: string | undefined;
|
|
96
|
+
target?: string | undefined;
|
|
97
|
+
rel?: string | undefined;
|
|
98
|
+
children: React.ReactNode;
|
|
99
|
+
styles?: React.CSSProperties | undefined;
|
|
100
|
+
prefetch?: boolean | undefined;
|
|
101
|
+
btnStyle?: string | undefined;
|
|
102
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
103
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
104
|
+
icon?: React.ReactNode;
|
|
105
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
106
|
+
declare const IconLink: React.ForwardRefExoticComponent<{
|
|
107
|
+
href?: string | undefined;
|
|
108
|
+
target?: string | undefined;
|
|
109
|
+
rel?: string | undefined;
|
|
110
|
+
children: React.ReactNode;
|
|
111
|
+
styles?: React.CSSProperties | undefined;
|
|
112
|
+
prefetch?: boolean | undefined;
|
|
113
|
+
btnStyle?: string | undefined;
|
|
114
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
115
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
116
|
+
icon?: React.ReactNode;
|
|
117
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
118
|
+
declare const LinkButton: React.ForwardRefExoticComponent<{
|
|
119
|
+
href?: string | undefined;
|
|
120
|
+
target?: string | undefined;
|
|
121
|
+
rel?: string | undefined;
|
|
122
|
+
children: React.ReactNode;
|
|
123
|
+
styles?: React.CSSProperties | undefined;
|
|
124
|
+
prefetch?: boolean | undefined;
|
|
125
|
+
btnStyle?: string | undefined;
|
|
126
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
127
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
128
|
+
icon?: React.ReactNode;
|
|
129
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
130
|
+
|
|
131
|
+
export { IconLink, Link, LinkButton, Link as default };
|
|
@@ -1,3 +1,131 @@
|
|
|
1
|
-
import 'react';
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Link - A semantic, accessible anchor component with enhanced security and styling.
|
|
5
|
+
*
|
|
6
|
+
* The Link component renders accessible `<a>` elements with automatic security
|
|
7
|
+
* attributes for external links, customizable styling variants, and full WCAG 2.1
|
|
8
|
+
* AA compliance. It supports traditional text links, button-styled links, and
|
|
9
|
+
* programmatic focus management via ref forwarding.
|
|
10
|
+
*
|
|
11
|
+
* ## Features
|
|
12
|
+
*
|
|
13
|
+
* - 🔒 **Automatic Security**: External links get `rel="noopener noreferrer"`
|
|
14
|
+
* - ♿ **WCAG 2.1 AA Compliant**: Accessible focus indicators and semantic HTML
|
|
15
|
+
* - 🎨 **Flexible Styling**: Text links, button links, and pill variants
|
|
16
|
+
* - ⚡ **Performance**: Optional prefetch hints for faster navigation
|
|
17
|
+
* - 🎯 **Ref Forwarding**: Direct DOM access for focus management and scroll
|
|
18
|
+
* - 🧪 **Type-Safe**: Full TypeScript support with comprehensive prop types
|
|
19
|
+
*
|
|
20
|
+
* ## Accessibility
|
|
21
|
+
*
|
|
22
|
+
* - ✅ Semantic `<a>` element for proper keyboard navigation
|
|
23
|
+
* - ✅ Focus indicators meet WCAG 2.4.7 (3:1 contrast ratio)
|
|
24
|
+
* - ✅ Screen readers announce link purpose and destination
|
|
25
|
+
* - ✅ External links include security attributes automatically
|
|
26
|
+
* - ✅ Supports `aria-label` for icon-only or ambiguous links
|
|
27
|
+
* - ✅ Ref forwarding enables skip-link patterns
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* // Basic internal link
|
|
31
|
+
* <Link href="/about">About Us</Link>
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* // External link with automatic security
|
|
35
|
+
* <Link href="https://example.com" target="_blank">
|
|
36
|
+
* Visit Example
|
|
37
|
+
* </Link>
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* // Button-styled call-to-action link
|
|
41
|
+
* <Link href="/signup">
|
|
42
|
+
* <b>Get Started</b>
|
|
43
|
+
* </Link>
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* // Icon-only link with accessible label
|
|
47
|
+
* <Link href="/settings" aria-label="Open settings">
|
|
48
|
+
* <SettingsIcon aria-hidden="true" />
|
|
49
|
+
* </Link>
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* // Analytics tracking with onClick (includes keyboard users)
|
|
53
|
+
* <Link
|
|
54
|
+
* href="/products"
|
|
55
|
+
* onClick={(e) => trackEvent('link_click', { href: '/products' })}
|
|
56
|
+
* >
|
|
57
|
+
* Browse Products
|
|
58
|
+
* </Link>
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* // Skip link with ref forwarding for focus management
|
|
62
|
+
* const mainRef = useRef<HTMLAnchorElement>(null);
|
|
63
|
+
*
|
|
64
|
+
* <Link ref={mainRef} href="#main-content">
|
|
65
|
+
* Skip to main content
|
|
66
|
+
* </Link>
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* // Custom styled link with CSS variables
|
|
70
|
+
* <Link
|
|
71
|
+
* href="/products"
|
|
72
|
+
* styles={{
|
|
73
|
+
* '--link-color': '#0066cc',
|
|
74
|
+
* '--link-decoration': 'underline',
|
|
75
|
+
* }}
|
|
76
|
+
* >
|
|
77
|
+
* Browse Products
|
|
78
|
+
* </Link>
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* // ✅ GOOD: Descriptive link text
|
|
82
|
+
* <Link href="/docs/installation">
|
|
83
|
+
* Read installation guide
|
|
84
|
+
* </Link>
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* // ❌ BAD: Generic link text (poor for screen readers)
|
|
88
|
+
* <Link href="/docs/installation">
|
|
89
|
+
* Click here
|
|
90
|
+
* </Link>
|
|
91
|
+
*
|
|
92
|
+
* @see {@link LinkProps} for complete prop documentation
|
|
93
|
+
*/
|
|
94
|
+
declare const Link: React.ForwardRefExoticComponent<{
|
|
95
|
+
href?: string | undefined;
|
|
96
|
+
target?: string | undefined;
|
|
97
|
+
rel?: string | undefined;
|
|
98
|
+
children: React.ReactNode;
|
|
99
|
+
styles?: React.CSSProperties | undefined;
|
|
100
|
+
prefetch?: boolean | undefined;
|
|
101
|
+
btnStyle?: string | undefined;
|
|
102
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
103
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
104
|
+
icon?: React.ReactNode;
|
|
105
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
106
|
+
declare const IconLink: React.ForwardRefExoticComponent<{
|
|
107
|
+
href?: string | undefined;
|
|
108
|
+
target?: string | undefined;
|
|
109
|
+
rel?: string | undefined;
|
|
110
|
+
children: React.ReactNode;
|
|
111
|
+
styles?: React.CSSProperties | undefined;
|
|
112
|
+
prefetch?: boolean | undefined;
|
|
113
|
+
btnStyle?: string | undefined;
|
|
114
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
115
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
116
|
+
icon?: React.ReactNode;
|
|
117
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
118
|
+
declare const LinkButton: React.ForwardRefExoticComponent<{
|
|
119
|
+
href?: string | undefined;
|
|
120
|
+
target?: string | undefined;
|
|
121
|
+
rel?: string | undefined;
|
|
122
|
+
children: React.ReactNode;
|
|
123
|
+
styles?: React.CSSProperties | undefined;
|
|
124
|
+
prefetch?: boolean | undefined;
|
|
125
|
+
btnStyle?: string | undefined;
|
|
126
|
+
onClick?: ((event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void) | undefined;
|
|
127
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLAnchorElement>) => void) | undefined;
|
|
128
|
+
icon?: React.ReactNode;
|
|
129
|
+
} & Omit<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "style"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
130
|
+
|
|
131
|
+
export { IconLink, Link, LinkButton, Link as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as Link,
|
|
1
|
+
export { b as IconLink, a as Link, c as LinkButton, d as default } from '../../chunk-NNTBIHSD.js';
|
|
2
2
|
import '../../chunk-HHLNOC5T.js';
|
|
3
3
|
//# sourceMappingURL=out.js.map
|
|
4
4
|
//# sourceMappingURL=link.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var chunkX5RKCLDC_cjs = require('../chunk-X5RKCLDC.cjs');
|
|
4
|
+
require('../chunk-E4OSROCA.cjs');
|
|
5
5
|
require('../chunk-PNWIRCG3.cjs');
|
|
6
6
|
require('../chunk-TON2YGMD.cjs');
|
|
7
7
|
require('../chunk-ENTCUJ3A.cjs');
|
|
@@ -10,7 +10,7 @@ require('../chunk-ENTCUJ3A.cjs');
|
|
|
10
10
|
|
|
11
11
|
Object.defineProperty(exports, 'Modal', {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkX5RKCLDC_cjs.a; }
|
|
14
14
|
});
|
|
15
15
|
//# sourceMappingURL=out.js.map
|
|
16
16
|
//# sourceMappingURL=modal.cjs.map
|
package/libs/components/modal.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { a as Modal } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
1
|
+
export { a as Modal } from '../chunk-43TK2ICH.js';
|
|
2
|
+
import '../chunk-KVKQLRJG.js';
|
|
3
3
|
import '../chunk-BFK62VX5.js';
|
|
4
4
|
import '../chunk-75QHTLFO.js';
|
|
5
5
|
import '../chunk-HHLNOC5T.js';
|
package/libs/hooks.cjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkR7NLLZU2_cjs = require('./chunk-R7NLLZU2.cjs');
|
|
4
4
|
var chunkPDD4N5P5_cjs = require('./chunk-PDD4N5P5.cjs');
|
|
5
5
|
var chunkTON2YGMD_cjs = require('./chunk-TON2YGMD.cjs');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-5PJYLVFY.cjs');
|
|
7
7
|
require('./chunk-ENTCUJ3A.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
Object.defineProperty(exports, 'useBreadcrumbSegments', {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkR7NLLZU2_cjs.a; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, 'usePopover', {
|
|
16
16
|
enumerable: true,
|
package/libs/hooks.d.cts
CHANGED
package/libs/hooks.d.ts
CHANGED
package/libs/hooks.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { a as useBreadcrumbSegments } from './chunk-
|
|
1
|
+
export { a as useBreadcrumbSegments } from './chunk-UJAQVHWC.js';
|
|
2
2
|
export { a as usePopover } from './chunk-GCGKYLDG.js';
|
|
3
3
|
export { a as useDisabledState } from './chunk-75QHTLFO.js';
|
|
4
|
-
import './chunk-
|
|
4
|
+
import './chunk-NNTBIHSD.js';
|
|
5
5
|
import './chunk-HHLNOC5T.js';
|
|
6
6
|
//# sourceMappingURL=out.js.map
|
|
7
7
|
//# sourceMappingURL=hooks.js.map
|
package/libs/index.cjs
CHANGED
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
var chunkWXBFBWYF_cjs = require('./chunk-WXBFBWYF.cjs');
|
|
4
4
|
var chunkO3JIHC5M_cjs = require('./chunk-O3JIHC5M.cjs');
|
|
5
5
|
var chunkUS2I5GI7_cjs = require('./chunk-US2I5GI7.cjs');
|
|
6
|
-
var
|
|
6
|
+
var chunkMGPWZRBX_cjs = require('./chunk-MGPWZRBX.cjs');
|
|
7
7
|
var chunkO5XAJ7BY_cjs = require('./chunk-O5XAJ7BY.cjs');
|
|
8
8
|
var chunkGUJSMQ3V_cjs = require('./chunk-GUJSMQ3V.cjs');
|
|
9
9
|
var chunkG55UJ53G_cjs = require('./chunk-G55UJ53G.cjs');
|
|
10
10
|
var chunkW2UIN7EV_cjs = require('./chunk-W2UIN7EV.cjs');
|
|
11
11
|
var chunk2NRIP6RB_cjs = require('./chunk-2NRIP6RB.cjs');
|
|
12
|
-
var
|
|
12
|
+
var chunkR7NLLZU2_cjs = require('./chunk-R7NLLZU2.cjs');
|
|
13
13
|
require('./chunk-PDD4N5P5.cjs');
|
|
14
14
|
var chunk6WTC4JXH_cjs = require('./chunk-6WTC4JXH.cjs');
|
|
15
15
|
var chunkW5TKWBFC_cjs = require('./chunk-W5TKWBFC.cjs');
|
|
16
|
-
var
|
|
17
|
-
var
|
|
16
|
+
var chunkX5RKCLDC_cjs = require('./chunk-X5RKCLDC.cjs');
|
|
17
|
+
var chunkE4OSROCA_cjs = require('./chunk-E4OSROCA.cjs');
|
|
18
18
|
var chunk4BZKFPEC_cjs = require('./chunk-4BZKFPEC.cjs');
|
|
19
19
|
var chunkE2AJURUW_cjs = require('./chunk-E2AJURUW.cjs');
|
|
20
20
|
require('./chunk-PNWIRCG3.cjs');
|
|
21
21
|
require('./chunk-TON2YGMD.cjs');
|
|
22
|
-
var
|
|
22
|
+
var chunk5PJYLVFY_cjs = require('./chunk-5PJYLVFY.cjs');
|
|
23
23
|
var chunkENTCUJ3A_cjs = require('./chunk-ENTCUJ3A.cjs');
|
|
24
24
|
var u = require('react');
|
|
25
25
|
|
|
@@ -79,7 +79,7 @@ Object.defineProperty(exports, 'Tr', {
|
|
|
79
79
|
});
|
|
80
80
|
Object.defineProperty(exports, 'Dialog', {
|
|
81
81
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkMGPWZRBX_cjs.a; }
|
|
83
83
|
});
|
|
84
84
|
Object.defineProperty(exports, 'Nav', {
|
|
85
85
|
enumerable: true,
|
|
@@ -115,11 +115,11 @@ Object.defineProperty(exports, 'Title', {
|
|
|
115
115
|
});
|
|
116
116
|
Object.defineProperty(exports, 'Breadcrumb', {
|
|
117
117
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkR7NLLZU2_cjs.b; }
|
|
119
119
|
});
|
|
120
120
|
Object.defineProperty(exports, 'useBreadcrumbSegments', {
|
|
121
121
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
122
|
+
get: function () { return chunkR7NLLZU2_cjs.a; }
|
|
123
123
|
});
|
|
124
124
|
Object.defineProperty(exports, 'Icon', {
|
|
125
125
|
enumerable: true,
|
|
@@ -143,11 +143,11 @@ Object.defineProperty(exports, 'CardTitle', {
|
|
|
143
143
|
});
|
|
144
144
|
Object.defineProperty(exports, 'Modal', {
|
|
145
145
|
enumerable: true,
|
|
146
|
-
get: function () { return
|
|
146
|
+
get: function () { return chunkX5RKCLDC_cjs.a; }
|
|
147
147
|
});
|
|
148
148
|
Object.defineProperty(exports, 'Button', {
|
|
149
149
|
enumerable: true,
|
|
150
|
-
get: function () { return
|
|
150
|
+
get: function () { return chunkE4OSROCA_cjs.a; }
|
|
151
151
|
});
|
|
152
152
|
Object.defineProperty(exports, 'Input', {
|
|
153
153
|
enumerable: true,
|
|
@@ -163,11 +163,11 @@ Object.defineProperty(exports, 'FP', {
|
|
|
163
163
|
});
|
|
164
164
|
Object.defineProperty(exports, 'Link', {
|
|
165
165
|
enumerable: true,
|
|
166
|
-
get: function () { return
|
|
166
|
+
get: function () { return chunk5PJYLVFY_cjs.a; }
|
|
167
167
|
});
|
|
168
168
|
Object.defineProperty(exports, 'To', {
|
|
169
169
|
enumerable: true,
|
|
170
|
-
get: function () { return
|
|
170
|
+
get: function () { return chunk5PJYLVFY_cjs.d; }
|
|
171
171
|
});
|
|
172
172
|
exports.Article = ge;
|
|
173
173
|
exports.Aside = fe;
|