@nextui-org/react 1.0.2-alpha.1 → 1.0.2-alpha.2

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/umd/nextui.js CHANGED
@@ -1857,7 +1857,7 @@ const usePagination = ({
1857
1857
  // EXTERNAL MODULE: ../../node_modules/react/jsx-dev-runtime.js
1858
1858
  var jsx_dev_runtime = __webpack_require__(194);
1859
1859
  ;// CONCATENATED MODULE: ./src/css-baseline/css-baseline.tsx
1860
- var _jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/css-baseline/css-baseline.tsx";
1860
+ var _jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/css-baseline/css-baseline.tsx";
1861
1861
 
1862
1862
 
1863
1863
 
@@ -2133,7 +2133,7 @@ const omitObject = (obj, omitKeys) => {
2133
2133
  return newObj;
2134
2134
  };
2135
2135
  ;// CONCATENATED MODULE: ./src/theme/ssr-provider.tsx
2136
- var ssr_provider_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/theme/ssr-provider.tsx";
2136
+ var ssr_provider_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/theme/ssr-provider.tsx";
2137
2137
  // Code based on the code from mantine SsrProvider https://github.dev/mantinedev/mantine
2138
2138
 
2139
2139
 
@@ -2298,6 +2298,13 @@ const getDocumentTheme = el => {
2298
2298
  const documentTheme = el == null ? void 0 : el.getAttribute('data-theme');
2299
2299
  return documentTheme || colorScheme;
2300
2300
  };
2301
+ const getThemeName = theme => {
2302
+ if (typeof theme === 'string') {
2303
+ return theme != null && theme.includes('-theme') ? theme == null ? void 0 : theme.replace('-theme', '') : theme;
2304
+ }
2305
+
2306
+ return theme;
2307
+ };
2301
2308
  const changeTheme = theme => {
2302
2309
  var _el$getAttribute2, _el$getAttribute3;
2303
2310
 
@@ -2305,11 +2312,11 @@ const changeTheme = theme => {
2305
2312
  const el = document.documentElement;
2306
2313
  const prevClasses = (el == null ? void 0 : (_el$getAttribute2 = el.getAttribute('class')) == null ? void 0 : _el$getAttribute2.split(' ').filter(cls => !cls.includes('theme') && !cls.includes('light') && !cls.includes('dark'))) || [];
2307
2314
  const prevStyles = (el == null ? void 0 : (_el$getAttribute3 = el.getAttribute('style')) == null ? void 0 : _el$getAttribute3.split(';').filter(stl => !stl.includes('color-scheme')).map(el => `${el};`)) || [];
2308
- el == null ? void 0 : el.setAttribute('class', clsx(prevClasses, `${theme}-theme`));
2315
+ el == null ? void 0 : el.setAttribute('class', clsx(prevClasses, `${getThemeName(theme)}-theme`));
2309
2316
  el == null ? void 0 : el.setAttribute('style', clsx(prevStyles, `color-scheme: ${theme};`));
2310
2317
  };
2311
2318
  ;// CONCATENATED MODULE: ./src/theme/theme-provider.tsx
2312
- var theme_provider_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/theme/theme-provider.tsx";
2319
+ var theme_provider_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/theme/theme-provider.tsx";
2313
2320
 
2314
2321
 
2315
2322
 
@@ -2346,10 +2353,11 @@ const ThemeProvider = ({
2346
2353
  const providerValue = (0,external_root_React_commonjs2_react_commonjs_react_amd_react_.useMemo)(() => {
2347
2354
  const themeTokens = isBrowser ? getDocumentCSSTokens() : {};
2348
2355
  const theme = deep_merge_deepMerge(copyObject(defaultContext.theme), themeTokens);
2356
+ const themeName = getThemeName(currentTheme);
2349
2357
  return {
2350
2358
  theme,
2351
- type: currentTheme,
2352
- isDark: currentTheme === 'dark'
2359
+ type: themeName,
2360
+ isDark: themeName === 'dark'
2353
2361
  };
2354
2362
  }, [currentTheme, isBrowser]);
2355
2363
  (0,external_root_React_commonjs2_react_commonjs_react_amd_react_.useEffect)(() => {
@@ -2381,30 +2389,32 @@ const ThemeProvider = ({
2381
2389
  });
2382
2390
  return () => observer.disconnect();
2383
2391
  }, []);
2392
+ (0,external_root_React_commonjs2_react_commonjs_react_amd_react_.useEffect)(() => {
2393
+ if (!isBrowser || !userTheme) {
2394
+ return;
2395
+ }
2396
+
2397
+ if (userTheme != null && userTheme.className) {
2398
+ changeTheme(userTheme.className);
2399
+ changeCurrentTheme(getThemeName(userTheme.className));
2400
+ }
2401
+ }, [isBrowser, userTheme]);
2384
2402
  return /*#__PURE__*/(0,jsx_dev_runtime.jsxDEV)(SsrProvider, {
2385
2403
  children: /*#__PURE__*/(0,jsx_dev_runtime.jsxDEV)(theme_context.Provider, {
2386
2404
  value: providerValue,
2387
2405
  children: [!disableBaseline && /*#__PURE__*/(0,jsx_dev_runtime.jsxDEV)(css_baseline, {}, void 0, false, {
2388
2406
  fileName: theme_provider_jsxFileName,
2389
- lineNumber: 86,
2407
+ lineNumber: 102,
2390
2408
  columnNumber: 30
2391
- }, undefined), userTheme ? /*#__PURE__*/(0,jsx_dev_runtime.jsxDEV)("div", {
2392
- id: "__nextui",
2393
- className: userTheme,
2394
- children: children
2395
- }, void 0, false, {
2396
- fileName: theme_provider_jsxFileName,
2397
- lineNumber: 88,
2398
- columnNumber: 11
2399
- }, undefined) : children]
2409
+ }, undefined), children]
2400
2410
  }, void 0, true, {
2401
2411
  fileName: theme_provider_jsxFileName,
2402
- lineNumber: 85,
2412
+ lineNumber: 101,
2403
2413
  columnNumber: 7
2404
2414
  }, undefined)
2405
2415
  }, void 0, false, {
2406
2416
  fileName: theme_provider_jsxFileName,
2407
- lineNumber: 84,
2417
+ lineNumber: 100,
2408
2418
  columnNumber: 5
2409
2419
  }, undefined);
2410
2420
  };
@@ -2738,7 +2748,7 @@ const StyledAvatar = styled('span', {
2738
2748
  });
2739
2749
  /* harmony default export */ const avatar_styles = (StyledAvatar);
2740
2750
  ;// CONCATENATED MODULE: ./src/avatar/avatar.tsx
2741
- var avatar_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/avatar/avatar.tsx";
2751
+ var avatar_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/avatar/avatar.tsx";
2742
2752
 
2743
2753
 
2744
2754
 
@@ -2860,7 +2870,7 @@ const StyledAvatarGroup = styled('div', {
2860
2870
  });
2861
2871
  /* harmony default export */ const avatar_group_styles = (StyledAvatarGroup);
2862
2872
  ;// CONCATENATED MODULE: ./src/avatar/avatar-group.tsx
2863
- var avatar_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/avatar/avatar-group.tsx";
2873
+ var avatar_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/avatar/avatar-group.tsx";
2864
2874
 
2865
2875
 
2866
2876
 
@@ -2898,7 +2908,7 @@ AvatarGroup.toString = () => '.nextui-avatar-group';
2898
2908
  avatar.Group = avatar_group;
2899
2909
  /* harmony default export */ const src_avatar = (avatar);
2900
2910
  ;// CONCATENATED MODULE: ./src/utils/drip.tsx
2901
- var drip_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/utils/drip.tsx";
2911
+ var drip_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/utils/drip.tsx";
2902
2912
 
2903
2913
 
2904
2914
 
@@ -3045,7 +3055,7 @@ const button_group_context_defaultContext = {
3045
3055
  const ButtonGroupContext = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(button_group_context_defaultContext);
3046
3056
  const useButtonGroupContext = () => external_root_React_commonjs2_react_commonjs_react_amd_react_default().useContext(ButtonGroupContext);
3047
3057
  ;// CONCATENATED MODULE: ./src/button/button-icon.tsx
3048
- var button_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/button/button-icon.tsx";
3058
+ var button_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/button/button-icon.tsx";
3049
3059
 
3050
3060
 
3051
3061
 
@@ -3974,7 +3984,7 @@ const StyledButton = styled('button', {
3974
3984
  }, sharedFocus);
3975
3985
  /* harmony default export */ const button_styles = (StyledButton);
3976
3986
  ;// CONCATENATED MODULE: ./src/button/button.tsx
3977
- var button_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/button/button.tsx";
3987
+ var button_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/button/button.tsx";
3978
3988
 
3979
3989
 
3980
3990
 
@@ -4248,7 +4258,7 @@ const StyledButtonGroup = styled('div', {
4248
4258
  });
4249
4259
  /* harmony default export */ const button_group_styles = (StyledButtonGroup);
4250
4260
  ;// CONCATENATED MODULE: ./src/button/button-group.tsx
4251
- var button_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/button/button-group.tsx";
4261
+ var button_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/button/button-group.tsx";
4252
4262
 
4253
4263
 
4254
4264
 
@@ -4376,7 +4386,7 @@ const StyledImageSkeleton = styled('div', {
4376
4386
  transition: 'opacity 300ms ease-out'
4377
4387
  });
4378
4388
  ;// CONCATENATED MODULE: ./src/image/image.skeleton.tsx
4379
- var image_skeleton_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/image/image.skeleton.tsx";
4389
+ var image_skeleton_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/image/image.skeleton.tsx";
4380
4390
 
4381
4391
 
4382
4392
 
@@ -4415,7 +4425,7 @@ ImageSkeleton.toString = () => '.nextui-image-skeleton';
4415
4425
 
4416
4426
  /* harmony default export */ const image_skeleton = (with_defaults(ImageSkeleton, image_skeleton_defaultProps));
4417
4427
  ;// CONCATENATED MODULE: ./src/image/image.tsx
4418
- var image_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/image/image.tsx";
4428
+ var image_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/image/image.tsx";
4419
4429
 
4420
4430
 
4421
4431
 
@@ -4816,7 +4826,7 @@ const StyledCardFooter = styled('div', {
4816
4826
  }
4817
4827
  }); // types
4818
4828
  ;// CONCATENATED MODULE: ./src/card/card.tsx
4819
- var card_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/card/card.tsx";
4829
+ var card_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/card/card.tsx";
4820
4830
 
4821
4831
 
4822
4832
 
@@ -5492,7 +5502,7 @@ const StyledCheckboxGroup = styled('div', {
5492
5502
  }
5493
5503
  }); // types
5494
5504
  ;// CONCATENATED MODULE: ./src/checkbox/checkbox.tsx
5495
- var checkbox_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/checkbox/checkbox.tsx";
5505
+ var checkbox_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/checkbox/checkbox.tsx";
5496
5506
 
5497
5507
 
5498
5508
 
@@ -5697,7 +5707,7 @@ if (__DEV__) {
5697
5707
 
5698
5708
  /* harmony default export */ const checkbox_checkbox = (Checkbox);
5699
5709
  ;// CONCATENATED MODULE: ./src/checkbox/checkbox-group.tsx
5700
- var checkbox_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/checkbox/checkbox-group.tsx";
5710
+ var checkbox_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/checkbox/checkbox-group.tsx";
5701
5711
 
5702
5712
 
5703
5713
 
@@ -5789,7 +5799,7 @@ const StyledPre = styled('pre', {
5789
5799
  mw: '100'
5790
5800
  });
5791
5801
  ;// CONCATENATED MODULE: ./src/code/code.tsx
5792
- var code_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/code/code.tsx";
5802
+ var code_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/code/code.tsx";
5793
5803
 
5794
5804
 
5795
5805
 
@@ -5843,7 +5853,7 @@ const StyledCol = styled('div', {
5843
5853
  });
5844
5854
  /* harmony default export */ const col_styles = (StyledCol);
5845
5855
  ;// CONCATENATED MODULE: ./src/col/col.tsx
5846
- var col_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/col/col.tsx";
5856
+ var col_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/col/col.tsx";
5847
5857
 
5848
5858
 
5849
5859
 
@@ -6128,7 +6138,7 @@ const StyledCollapseGroup = styled('div', {
6128
6138
  }]
6129
6139
  });
6130
6140
  ;// CONCATENATED MODULE: ./src/collapse/collapse-icon.tsx
6131
- var collapse_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/collapse/collapse-icon.tsx";
6141
+ var collapse_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/collapse/collapse-icon.tsx";
6132
6142
 
6133
6143
 
6134
6144
 
@@ -6167,7 +6177,7 @@ CollapseIcon.toString = () => '.nextui-collapse-icon';
6167
6177
  const MemoCollapseIcon = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(CollapseIcon);
6168
6178
  /* harmony default export */ const collapse_icon = (MemoCollapseIcon);
6169
6179
  ;// CONCATENATED MODULE: ./src/utils/expand.tsx
6170
- var expand_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/utils/expand.tsx";
6180
+ var expand_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/utils/expand.tsx";
6171
6181
 
6172
6182
 
6173
6183
 
@@ -6274,7 +6284,7 @@ const collapse_context_defaultContext = {
6274
6284
  const CollapseContext = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(collapse_context_defaultContext);
6275
6285
  const useCollapseContext = () => external_root_React_commonjs2_react_commonjs_react_amd_react_default().useContext(CollapseContext);
6276
6286
  ;// CONCATENATED MODULE: ./src/collapse/collapse.tsx
6277
- var collapse_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/collapse/collapse.tsx";
6287
+ var collapse_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/collapse/collapse.tsx";
6278
6288
 
6279
6289
 
6280
6290
 
@@ -6483,7 +6493,7 @@ Collapse.toString = () => '.nextui-collapse';
6483
6493
 
6484
6494
  /* harmony default export */ const collapse = (with_defaults(Collapse, collapse_defaultProps));
6485
6495
  ;// CONCATENATED MODULE: ./src/collapse/collapse-group.tsx
6486
- var collapse_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/collapse/collapse-group.tsx";
6496
+ var collapse_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/collapse/collapse-group.tsx";
6487
6497
 
6488
6498
 
6489
6499
 
@@ -6605,7 +6615,7 @@ const StyledContainer = styled('div', {
6605
6615
  });
6606
6616
  /* harmony default export */ const container_styles = (StyledContainer);
6607
6617
  ;// CONCATENATED MODULE: ./src/container/container.tsx
6608
- var container_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/container/container.tsx";
6618
+ var container_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/container/container.tsx";
6609
6619
 
6610
6620
 
6611
6621
 
@@ -6762,7 +6772,7 @@ const StyledDividerText = styled('span', {
6762
6772
  }
6763
6773
  });
6764
6774
  ;// CONCATENATED MODULE: ./src/divider/divider.tsx
6765
- var divider_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/divider/divider.tsx";
6775
+ var divider_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/divider/divider.tsx";
6766
6776
 
6767
6777
 
6768
6778
 
@@ -6846,7 +6856,7 @@ const StyledGridItem = styled('div', {
6846
6856
  padding: '$$gridGapUnit'
6847
6857
  });
6848
6858
  ;// CONCATENATED MODULE: ./src/grid/grid-item.tsx
6849
- var grid_item_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/grid/grid-item.tsx";
6859
+ var grid_item_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/grid/grid-item.tsx";
6850
6860
 
6851
6861
 
6852
6862
 
@@ -6956,7 +6966,7 @@ GridItem.toString = () => '.nextui-grid-item';
6956
6966
 
6957
6967
  /* harmony default export */ const grid_item = (with_defaults(GridItem, grid_item_defaultProps));
6958
6968
  ;// CONCATENATED MODULE: ./src/grid/grid.tsx
6959
- var grid_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/grid/grid.tsx";
6969
+ var grid_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/grid/grid.tsx";
6960
6970
 
6961
6971
 
6962
6972
 
@@ -6980,7 +6990,7 @@ const Grid = ({
6980
6990
 
6981
6991
  /* harmony default export */ const grid = (Grid);
6982
6992
  ;// CONCATENATED MODULE: ./src/grid/grid-container.tsx
6983
- var grid_container_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/grid/grid-container.tsx";
6993
+ var grid_container_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/grid/grid-container.tsx";
6984
6994
 
6985
6995
 
6986
6996
 
@@ -7051,7 +7061,7 @@ const StyledSpacer = styled('span', {
7051
7061
  }
7052
7062
  });
7053
7063
  ;// CONCATENATED MODULE: ./src/spacer/spacer.tsx
7054
- var spacer_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/spacer/spacer.tsx";
7064
+ var spacer_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/spacer/spacer.tsx";
7055
7065
 
7056
7066
 
7057
7067
 
@@ -7402,6 +7412,7 @@ const StyledTooltipContent = styled('div', {
7402
7412
  },
7403
7413
  invert: {
7404
7414
  $$tooltipColor: '$colors$foreground',
7415
+ $$tooltipTextColor: '$colors$background',
7405
7416
  bg: '$$tooltipColor'
7406
7417
  }
7407
7418
  },
@@ -7450,14 +7461,7 @@ const StyledTooltipContent = styled('div', {
7450
7461
  }
7451
7462
  }
7452
7463
  },
7453
- compoundVariants: [// color='invert' && contentColor='default'
7454
- {
7455
- color: 'invert',
7456
- contentColor: 'default',
7457
- css: {
7458
- $$tooltipTextColor: '$colors$white'
7459
- }
7460
- }, // color='primary' && contentColor='default'
7464
+ compoundVariants: [// color='primary' && contentColor='default'
7461
7465
  {
7462
7466
  color: 'primary',
7463
7467
  contentColor: 'default',
@@ -7492,7 +7496,7 @@ const StyledTooltipContent = styled('div', {
7492
7496
  }
7493
7497
  });
7494
7498
  ;// CONCATENATED MODULE: ./src/tooltip/tooltip-content.tsx
7495
- var tooltip_content_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/tooltip/tooltip-content.tsx";
7499
+ var tooltip_content_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/tooltip/tooltip-content.tsx";
7496
7500
 
7497
7501
 
7498
7502
 
@@ -7620,7 +7624,7 @@ TooltipContent.toString = () => '.nextui-tooltip-content';
7620
7624
 
7621
7625
  /* harmony default export */ const tooltip_content = (with_defaults(TooltipContent, tooltip_content_defaultProps));
7622
7626
  ;// CONCATENATED MODULE: ./src/tooltip/tooltip.tsx
7623
- var tooltip_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/tooltip/tooltip.tsx";
7627
+ var tooltip_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/tooltip/tooltip.tsx";
7624
7628
 
7625
7629
 
7626
7630
 
@@ -7887,7 +7891,7 @@ const StyledSnippetCopyButton = styled('button', {
7887
7891
  }
7888
7892
  }, sharedFocus);
7889
7893
  ;// CONCATENATED MODULE: ./src/snippet/snippet-icon.tsx
7890
- var snippet_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/snippet/snippet-icon.tsx";
7894
+ var snippet_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/snippet/snippet-icon.tsx";
7891
7895
 
7892
7896
 
7893
7897
 
@@ -7930,7 +7934,7 @@ Copy.toString = () => '.nextui-snippet-copy-icon';
7930
7934
  const MemoCopy = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.memo(Copy);
7931
7935
  /* harmony default export */ const snippet_icon = (with_defaults(MemoCopy, snippet_icon_defaultProps));
7932
7936
  ;// CONCATENATED MODULE: ./src/snippet/snippet.tsx
7933
- var snippet_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/snippet/snippet.tsx";
7937
+ var snippet_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/snippet/snippet.tsx";
7934
7938
 
7935
7939
 
7936
7940
 
@@ -8100,7 +8104,7 @@ const StyledRow = styled('div', {
8100
8104
  });
8101
8105
  /* harmony default export */ const row_styles = (StyledRow);
8102
8106
  ;// CONCATENATED MODULE: ./src/row/row.tsx
8103
- var row_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/row/row.tsx";
8107
+ var row_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/row/row.tsx";
8104
8108
 
8105
8109
 
8106
8110
 
@@ -8275,7 +8279,7 @@ const StyledLink = styled('a', {
8275
8279
  });
8276
8280
  /* harmony default export */ const link_styles = (StyledLink);
8277
8281
  ;// CONCATENATED MODULE: ./src/link/icon.tsx
8278
- var icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/link/icon.tsx";
8282
+ var icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/link/icon.tsx";
8279
8283
 
8280
8284
 
8281
8285
 
@@ -8321,7 +8325,7 @@ LinkIcon.toString = () => '.nextui-link-icon';
8321
8325
 
8322
8326
  /* harmony default export */ const link_icon = (/*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(LinkIcon));
8323
8327
  ;// CONCATENATED MODULE: ./src/link/link.tsx
8324
- var link_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/link/link.tsx";
8328
+ var link_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/link/link.tsx";
8325
8329
 
8326
8330
 
8327
8331
 
@@ -8787,7 +8791,7 @@ const StyledLoadingLabel = styled('label', {
8787
8791
  }
8788
8792
  });
8789
8793
  ;// CONCATENATED MODULE: ./src/loading/spinner.tsx
8790
- var spinner_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/loading/spinner.tsx";
8794
+ var spinner_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/loading/spinner.tsx";
8791
8795
 
8792
8796
 
8793
8797
 
@@ -8840,7 +8844,7 @@ Spinner.toString = () => '.nextui-spinner';
8840
8844
 
8841
8845
  /* harmony default export */ const loading_spinner = (Spinner);
8842
8846
  ;// CONCATENATED MODULE: ./src/loading/loading.tsx
8843
- var loading_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/loading/loading.tsx";
8847
+ var loading_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/loading/loading.tsx";
8844
8848
 
8845
8849
 
8846
8850
 
@@ -9176,7 +9180,7 @@ const StyledRadioDescription = styled('span', {
9176
9180
  paddingLeft: 'calc($$radioSize + $$radioSize * 0.375)'
9177
9181
  }); // types
9178
9182
  ;// CONCATENATED MODULE: ./src/radio/radio.tsx
9179
- var radio_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/radio/radio.tsx";
9183
+ var radio_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/radio/radio.tsx";
9180
9184
 
9181
9185
 
9182
9186
 
@@ -9326,7 +9330,7 @@ Radio.toString = () => '.nextui-radio';
9326
9330
 
9327
9331
  /* harmony default export */ const radio_radio = (with_defaults(Radio, radio_defaultProps));
9328
9332
  ;// CONCATENATED MODULE: ./src/radio/radio-group.tsx
9329
- var radio_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/radio/radio-group.tsx";
9333
+ var radio_group_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/radio/radio-group.tsx";
9330
9334
 
9331
9335
 
9332
9336
 
@@ -9439,7 +9443,7 @@ const StyledText = styled('p', {
9439
9443
  }
9440
9444
  });
9441
9445
  ;// CONCATENATED MODULE: ./src/text/child.tsx
9442
- var child_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/text/child.tsx";
9446
+ var child_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/text/child.tsx";
9443
9447
 
9444
9448
 
9445
9449
 
@@ -9512,7 +9516,7 @@ TextChild.toString = () => '.nextui-text-child';
9512
9516
  const MemoTextChild = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(TextChild);
9513
9517
  /* harmony default export */ const child = (with_defaults(MemoTextChild, child_defaultProps));
9514
9518
  ;// CONCATENATED MODULE: ./src/text/text.tsx
9515
- var text_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/text/text.tsx";
9519
+ var text_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/text/text.tsx";
9516
9520
 
9517
9521
 
9518
9522
 
@@ -9904,7 +9908,7 @@ const StyledSwitch = styled('div', {
9904
9908
  }]
9905
9909
  }, sharedFocus); // types
9906
9910
  ;// CONCATENATED MODULE: ./src/switch/switch.tsx
9907
- var switch_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/switch/switch.tsx";
9911
+ var switch_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/switch/switch.tsx";
9908
9912
 
9909
9913
 
9910
9914
 
@@ -10156,7 +10160,7 @@ const StyledBackdrop = styled('div', {
10156
10160
  }
10157
10161
  });
10158
10162
  ;// CONCATENATED MODULE: ./src/backdrop/backdrop.tsx
10159
- var backdrop_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/backdrop/backdrop.tsx";
10163
+ var backdrop_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/backdrop/backdrop.tsx";
10160
10164
 
10161
10165
  /* eslint-disable @typescript-eslint/no-explicit-any */
10162
10166
 
@@ -10338,7 +10342,7 @@ const StyledUserLink = styled('a', {
10338
10342
  }
10339
10343
  }); // types
10340
10344
  ;// CONCATENATED MODULE: ./src/user/user.tsx
10341
- var user_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/user/user.tsx";
10345
+ var user_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/user/user.tsx";
10342
10346
 
10343
10347
 
10344
10348
 
@@ -10409,7 +10413,7 @@ User.toString = () => '.nextui-user';
10409
10413
 
10410
10414
  /* harmony default export */ const user = (/*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(User));
10411
10415
  ;// CONCATENATED MODULE: ./src/user/user-link.tsx
10412
- var user_link_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/user/user-link.tsx";
10416
+ var user_link_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/user/user-link.tsx";
10413
10417
 
10414
10418
 
10415
10419
 
@@ -10613,7 +10617,7 @@ const StyledProgressBar = styled('div', {
10613
10617
  }
10614
10618
  });
10615
10619
  ;// CONCATENATED MODULE: ./src/progress/progress.tsx
10616
- var progress_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/progress/progress.tsx";
10620
+ var progress_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/progress/progress.tsx";
10617
10621
 
10618
10622
 
10619
10623
 
@@ -10709,7 +10713,7 @@ const MemoProgress = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_r
10709
10713
 
10710
10714
  /* harmony default export */ const src_progress = (progress);
10711
10715
  ;// CONCATENATED MODULE: ./src/utils/clear-icon.tsx
10712
- var clear_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/utils/clear-icon.tsx";
10716
+ var clear_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/utils/clear-icon.tsx";
10713
10717
 
10714
10718
 
10715
10719
 
@@ -11011,7 +11015,7 @@ const StyledModal = styled('section', {
11011
11015
  }]
11012
11016
  });
11013
11017
  ;// CONCATENATED MODULE: ./src/modal/modal-close-button.tsx
11014
- var modal_close_button_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal-close-button.tsx";
11018
+ var modal_close_button_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal-close-button.tsx";
11015
11019
 
11016
11020
 
11017
11021
 
@@ -11057,7 +11061,7 @@ ModalCloseButton.toString = () => '.nextui-modal-close-icon';
11057
11061
  const MemoModalCloseButton = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(ModalCloseButton);
11058
11062
  /* harmony default export */ const modal_close_button = (MemoModalCloseButton);
11059
11063
  ;// CONCATENATED MODULE: ./src/modal/modal-wrapper.tsx
11060
- var modal_wrapper_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal-wrapper.tsx";
11064
+ var modal_wrapper_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal-wrapper.tsx";
11061
11065
 
11062
11066
 
11063
11067
 
@@ -11214,7 +11218,7 @@ const modal_context_defaultContext = {};
11214
11218
  const ModalContext = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(modal_context_defaultContext);
11215
11219
  const useModalContext = () => React.useContext(ModalContext);
11216
11220
  ;// CONCATENATED MODULE: ./src/modal/modal.tsx
11217
- var modal_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal.tsx";
11221
+ var modal_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal.tsx";
11218
11222
 
11219
11223
 
11220
11224
 
@@ -11363,7 +11367,7 @@ Modal.toString = () => '.nextui-modal';
11363
11367
  Modal.defaultProps = modal_defaultProps;
11364
11368
  /* harmony default export */ const modal = (Modal);
11365
11369
  ;// CONCATENATED MODULE: ./src/modal/modal-header.tsx
11366
- var modal_header_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal-header.tsx";
11370
+ var modal_header_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal-header.tsx";
11367
11371
 
11368
11372
 
11369
11373
 
@@ -11417,7 +11421,7 @@ ModalHeader.toString = () => '.nextui-modal-header';
11417
11421
  const MemoModalHeader = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(ModalHeader);
11418
11422
  /* harmony default export */ const modal_header = (with_defaults(MemoModalHeader, modal_header_defaultProps));
11419
11423
  ;// CONCATENATED MODULE: ./src/modal/modal-body.tsx
11420
- var modal_body_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal-body.tsx";
11424
+ var modal_body_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal-body.tsx";
11421
11425
 
11422
11426
 
11423
11427
 
@@ -11464,7 +11468,7 @@ ModalBody.toString = () => '.nextui-modal-body';
11464
11468
  const MemoModalBody = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(ModalBody);
11465
11469
  /* harmony default export */ const modal_body = (with_defaults(MemoModalBody, modal_body_defaultProps));
11466
11470
  ;// CONCATENATED MODULE: ./src/modal/modal-footer.tsx
11467
- var modal_footer_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/modal/modal-footer.tsx";
11471
+ var modal_footer_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/modal/modal-footer.tsx";
11468
11472
 
11469
11473
 
11470
11474
 
@@ -11894,7 +11898,7 @@ const StyledPagination = styled('nav', {
11894
11898
  }
11895
11899
  });
11896
11900
  ;// CONCATENATED MODULE: ./src/pagination/pagination-item.tsx
11897
- var pagination_item_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/pagination/pagination-item.tsx";
11901
+ var pagination_item_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/pagination/pagination-item.tsx";
11898
11902
 
11899
11903
 
11900
11904
 
@@ -11988,7 +11992,7 @@ PaginationItem.toString = () => '.nextui-pagination-item';
11988
11992
 
11989
11993
  /* harmony default export */ const pagination_item = (with_defaults(PaginationItem, pagination_item_defaultProps));
11990
11994
  ;// CONCATENATED MODULE: ./src/pagination/pagination-ellipsis.tsx
11991
- var pagination_ellipsis_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/pagination/pagination-ellipsis.tsx";
11995
+ var pagination_ellipsis_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/pagination/pagination-ellipsis.tsx";
11992
11996
 
11993
11997
 
11994
11998
 
@@ -12092,7 +12096,7 @@ const PaginationEllipsis = ({
12092
12096
 
12093
12097
  /* harmony default export */ const pagination_ellipsis = (PaginationEllipsis);
12094
12098
  ;// CONCATENATED MODULE: ./src/pagination/pagination-icon.tsx
12095
- var pagination_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/pagination/pagination-icon.tsx";
12099
+ var pagination_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/pagination/pagination-icon.tsx";
12096
12100
 
12097
12101
 
12098
12102
 
@@ -12152,7 +12156,7 @@ PaginationIcon.toString = () => '.nextui-pagination-icon';
12152
12156
  const MemoPaginationIcon = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(PaginationIcon);
12153
12157
  /* harmony default export */ const pagination_icon = (MemoPaginationIcon);
12154
12158
  ;// CONCATENATED MODULE: ./src/pagination/pagination-highlight.tsx
12155
- var pagination_highlight_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/pagination/pagination-highlight.tsx";
12159
+ var pagination_highlight_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/pagination/pagination-highlight.tsx";
12156
12160
 
12157
12161
 
12158
12162
 
@@ -12194,7 +12198,7 @@ PaginationHighlight.toString = () => '.nextui-pagination-highlight';
12194
12198
 
12195
12199
  /* harmony default export */ const pagination_highlight = (PaginationHighlight);
12196
12200
  ;// CONCATENATED MODULE: ./src/pagination/pagination.tsx
12197
- var pagination_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/pagination/pagination.tsx";
12201
+ var pagination_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/pagination/pagination.tsx";
12198
12202
 
12199
12203
 
12200
12204
 
@@ -13255,7 +13259,7 @@ const StyledInputClearButton = styled('button', {
13255
13259
  }
13256
13260
  }); // types
13257
13261
  ;// CONCATENATED MODULE: ./src/input/input.tsx
13258
- var input_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/input/input.tsx";
13262
+ var input_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/input/input.tsx";
13259
13263
 
13260
13264
 
13261
13265
 
@@ -13720,7 +13724,7 @@ const calculateNodeHeight = (sizingData, value, minRows = 1, maxRows = Infinity)
13720
13724
  return [height, rowHeight];
13721
13725
  };
13722
13726
  ;// CONCATENATED MODULE: ./src/textarea/textarea.tsx
13723
- var textarea_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/textarea/textarea.tsx";
13727
+ var textarea_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/textarea/textarea.tsx";
13724
13728
 
13725
13729
 
13726
13730
 
@@ -13828,7 +13832,7 @@ Textarea.toString = () => '.nextui-textarea';
13828
13832
 
13829
13833
  /* harmony default export */ const src_textarea = (textarea_textarea);
13830
13834
  ;// CONCATENATED MODULE: ./src/input/password-icon.tsx
13831
- var password_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/input/password-icon.tsx";
13835
+ var password_icon_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/input/password-icon.tsx";
13832
13836
 
13833
13837
 
13834
13838
 
@@ -13891,7 +13895,7 @@ const PasswordIcon = ({
13891
13895
  const MemoPasswordIcon = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().memo(PasswordIcon);
13892
13896
  /* harmony default export */ const password_icon = (MemoPasswordIcon);
13893
13897
  ;// CONCATENATED MODULE: ./src/input/input-password.tsx
13894
- var input_password_jsxFileName = "/home/runner/work/nextui/nextui/packages/nextui/src/input/input-password.tsx";
13898
+ var input_password_jsxFileName = "/home/runner/work/nextui/nextui/packages/react/src/input/input-password.tsx";
13895
13899
 
13896
13900
 
13897
13901