@fuf-stack/pixels 0.43.6 → 0.43.8

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.
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk77THLTVPcjs = require('../chunk-77THLTVP.cjs');
4
+ var _chunkPYXJNORHcjs = require('../chunk-PYXJNORH.cjs');
5
5
  require('../chunk-AN7A66NS.cjs');
6
6
  require('../chunk-D4TLDLEX.cjs');
7
7
 
8
8
 
9
9
 
10
- exports.Json = _chunk77THLTVPcjs.Json_default; exports.default = _chunk77THLTVPcjs.Json_default2;
10
+ exports.Json = _chunkPYXJNORHcjs.Json_default; exports.default = _chunkPYXJNORHcjs.Json_default2;
11
11
  //# sourceMappingURL=index.cjs.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  Json_default,
3
3
  Json_default2
4
- } from "../chunk-Q3WI7NPI.js";
4
+ } from "../chunk-5BUCFDWR.js";
5
5
  import "../chunk-RELR2OCI.js";
6
6
  import "../chunk-J7N2552D.js";
7
7
  export {
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkD5BXY6EGcjs = require('../chunk-D5BXY6EG.cjs');
5
+ var _chunkDIPW4WVJcjs = require('../chunk-DIPW4WVJ.cjs');
6
6
  require('../chunk-D4TLDLEX.cjs');
7
7
 
8
8
 
9
9
 
10
10
 
11
- exports.Tabs = _chunkD5BXY6EGcjs.Tabs_default; exports.default = _chunkD5BXY6EGcjs.Tabs_default2; exports.tabsVariants = _chunkD5BXY6EGcjs.tabsVariants;
11
+ exports.Tabs = _chunkDIPW4WVJcjs.Tabs_default; exports.default = _chunkDIPW4WVJcjs.Tabs_default2; exports.tabsVariants = _chunkDIPW4WVJcjs.tabsVariants;
12
12
  //# sourceMappingURL=index.cjs.map
@@ -1,5 +1,5 @@
1
- import { T as Tabs } from '../Tabs-C1UEkvSr.cjs';
2
- export { b as TabProps, a as TabsProps, t as tabsVariants } from '../Tabs-C1UEkvSr.cjs';
1
+ import { T as Tabs } from '../Tabs-Tvg39S6a.cjs';
2
+ export { b as TabProps, a as TabsProps, t as tabsVariants } from '../Tabs-Tvg39S6a.cjs';
3
3
  import 'react/jsx-runtime';
4
4
  import 'tailwind-variants/dist/config.js';
5
5
  import 'tailwind-variants';
@@ -1,5 +1,5 @@
1
- import { T as Tabs } from '../Tabs-C1UEkvSr.js';
2
- export { b as TabProps, a as TabsProps, t as tabsVariants } from '../Tabs-C1UEkvSr.js';
1
+ import { T as Tabs } from '../Tabs-Tvg39S6a.js';
2
+ export { b as TabProps, a as TabsProps, t as tabsVariants } from '../Tabs-Tvg39S6a.js';
3
3
  import 'react/jsx-runtime';
4
4
  import 'tailwind-variants/dist/config.js';
5
5
  import 'tailwind-variants';
@@ -2,7 +2,7 @@ import {
2
2
  Tabs_default,
3
3
  Tabs_default2,
4
4
  tabsVariants
5
- } from "../chunk-IAX4ZSZU.js";
5
+ } from "../chunk-DA4KEWJM.js";
6
6
  import "../chunk-J7N2552D.js";
7
7
  export {
8
8
  Tabs_default as Tabs,
@@ -91,13 +91,14 @@ declare const tabsVariants: tailwind_variants.TVReturnType<{
91
91
  } | {}>, unknown, unknown, undefined>>;
92
92
  type VariantProps = TVProps<typeof tabsVariants>;
93
93
  type ClassName = TVClassName<typeof tabsVariants>;
94
+ type Key = string | number;
94
95
  interface TabProps {
95
96
  /** Content to be displayed in the tab panel */
96
97
  content: ReactNode;
97
98
  /** Disables the tab so it can not be selected */
98
99
  disabled?: boolean;
99
100
  /** Unique identifier for the tab */
100
- key: React.Key;
101
+ key: Key;
101
102
  /** Label content displayed in the tab button */
102
103
  label: ReactNode;
103
104
  /** HTML data-testid attribute used in e2e tests */
@@ -119,13 +120,13 @@ interface TabsProps extends VariantProps {
119
120
  /** Whether tabs should take up full container width */
120
121
  fullWidth?: boolean;
121
122
  /** Callback fired when tab selection changes */
122
- onSelectionChange?: (key: React.Key) => void;
123
+ onSelectionChange?: (key: Key) => void;
123
124
  /** Position of the tab list relative to the content */
124
125
  placement?: 'top' | 'bottom' | 'start' | 'end' | undefined;
125
126
  /** Radius of the tabs */
126
127
  radius?: 'none' | 'sm' | 'md' | 'lg' | 'full';
127
128
  /** Selected tab key (controlled) */
128
- selectedKey?: string | number | null;
129
+ selectedKey?: Key;
129
130
  /** Size of the tabs */
130
131
  size?: 'sm' | 'md' | 'lg';
131
132
  /** Array of tab configurations */
@@ -91,13 +91,14 @@ declare const tabsVariants: tailwind_variants.TVReturnType<{
91
91
  } | {}>, unknown, unknown, undefined>>;
92
92
  type VariantProps = TVProps<typeof tabsVariants>;
93
93
  type ClassName = TVClassName<typeof tabsVariants>;
94
+ type Key = string | number;
94
95
  interface TabProps {
95
96
  /** Content to be displayed in the tab panel */
96
97
  content: ReactNode;
97
98
  /** Disables the tab so it can not be selected */
98
99
  disabled?: boolean;
99
100
  /** Unique identifier for the tab */
100
- key: React.Key;
101
+ key: Key;
101
102
  /** Label content displayed in the tab button */
102
103
  label: ReactNode;
103
104
  /** HTML data-testid attribute used in e2e tests */
@@ -119,13 +120,13 @@ interface TabsProps extends VariantProps {
119
120
  /** Whether tabs should take up full container width */
120
121
  fullWidth?: boolean;
121
122
  /** Callback fired when tab selection changes */
122
- onSelectionChange?: (key: React.Key) => void;
123
+ onSelectionChange?: (key: Key) => void;
123
124
  /** Position of the tab list relative to the content */
124
125
  placement?: 'top' | 'bottom' | 'start' | 'end' | undefined;
125
126
  /** Radius of the tabs */
126
127
  radius?: 'none' | 'sm' | 'md' | 'lg' | 'full';
127
128
  /** Selected tab key (controlled) */
128
- selectedKey?: string | number | null;
129
+ selectedKey?: Key;
129
130
  /** Size of the tabs */
130
131
  size?: 'sm' | 'md' | 'lg';
131
132
  /** Array of tab configurations */