@saas-ui/react 3.0.0-alpha.4 → 3.0.0-alpha.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.
- package/CHANGELOG.md +19 -0
- package/dist/chunk-2EUACKRH.js +26 -0
- package/dist/chunk-3Z2C27LI.js +51 -0
- package/dist/chunk-4TR3AOMG.js +33 -0
- package/dist/chunk-6LOMIKR5.js +69 -0
- package/dist/chunk-6ZNR6N2K.js +45 -0
- package/dist/chunk-7C3IZBNJ.js +38 -0
- package/dist/chunk-BCNPBZZK.js +45 -0
- package/dist/{chunk-KHRLZUV4.js → chunk-BFA5FCA2.js} +16 -1
- package/dist/chunk-CTOVNZVS.js +1 -0
- package/dist/chunk-DPMEXCSG.js +137 -0
- package/dist/chunk-F3CVOMG5.js +160 -0
- package/dist/chunk-FJFNGSPL.js +23 -0
- package/dist/chunk-GEPWRHHH.js +65 -0
- package/dist/chunk-HELHPHIQ.js +35 -0
- package/dist/chunk-I2RXEKTB.js +38 -0
- package/dist/chunk-L356FPLY.js +20 -0
- package/dist/chunk-LIYUBUOP.js +119 -0
- package/dist/chunk-M7FOBCOV.js +184 -0
- package/dist/chunk-NSD5HRIP.js +46 -0
- package/dist/chunk-QMG6HP7Z.js +87 -0
- package/dist/chunk-QSNSWCTM.js +32 -0
- package/dist/chunk-S3CQW7GD.js +100 -0
- package/dist/chunk-SA3OGTOO.js +23 -0
- package/dist/chunk-UCQ3LZIE.js +43 -0
- package/dist/chunk-ULAJ3JEO.js +32 -0
- package/dist/chunk-VF3BV2BY.js +87 -0
- package/dist/chunk-WYLMBMAH.js +22 -0
- package/dist/chunk-YWJZWB6I.js +1892 -0
- package/dist/chunk-ZWSZQZ5G.js +73 -0
- package/dist/components/app-shell/index.js +3 -40
- package/dist/components/avatar/index.cjs +69 -0
- package/dist/components/avatar/index.d.cts +18 -0
- package/dist/components/avatar/index.d.ts +18 -0
- package/dist/components/avatar/index.js +10 -0
- package/dist/components/breadcrumbs/index.js +3 -32
- package/dist/components/button/index.js +3 -40
- package/dist/components/checkbox/index.js +3 -15
- package/dist/components/command/index.js +3 -28
- package/dist/components/dialog/index.js +5 -67
- package/dist/components/drawer/index.d.cts +2 -2
- package/dist/components/drawer/index.d.ts +2 -2
- package/dist/components/drawer/index.js +5 -59
- package/dist/components/empty-state/index.js +3 -18
- package/dist/components/grid-list/index.js +3 -40
- package/dist/components/icon-badge/index.js +3 -33
- package/dist/components/link/index.js +2 -14
- package/dist/components/loading-overlay/index.js +5 -1885
- package/dist/components/menu/index.cjs +263 -0
- package/dist/components/menu/index.d.cts +30 -0
- package/dist/components/menu/index.d.ts +30 -0
- package/dist/components/menu/index.js +9 -0
- package/dist/components/navbar/index.d.cts +4 -4
- package/dist/components/navbar/index.d.ts +4 -4
- package/dist/components/navbar/index.js +3 -45
- package/dist/components/number-input/index.js +3 -26
- package/dist/components/password-input/index.js +4 -225
- package/dist/components/persona/index.js +6 -178
- package/dist/components/pin-input/index.js +3 -21
- package/dist/components/radio/index.js +4 -16
- package/dist/components/search-input/index.js +4 -114
- package/dist/components/segmented-control/index.cjs +2 -0
- package/dist/components/segmented-control/index.d.cts +2 -0
- package/dist/components/segmented-control/index.d.ts +2 -0
- package/dist/components/segmented-control/index.js +2 -0
- package/dist/components/select/index.js +4 -94
- package/dist/components/sidebar/index.d.cts +11 -11
- package/dist/components/sidebar/index.d.ts +11 -11
- package/dist/components/sidebar/index.js +7 -129
- package/dist/components/steps/index.js +5 -64
- package/dist/components/switch/index.js +3 -18
- package/dist/components/toaster/index.cjs +54 -0
- package/dist/components/toaster/index.d.cts +10 -0
- package/dist/components/toaster/index.d.ts +10 -0
- package/dist/components/toaster/index.js +10 -0
- package/dist/components/tooltip/index.cjs +57 -0
- package/dist/components/tooltip/index.d.cts +14 -0
- package/dist/components/tooltip/index.d.ts +14 -0
- package/dist/components/tooltip/index.js +8 -0
- package/dist/index.cjs +3707 -8
- package/dist/index.d.cts +37 -2
- package/dist/index.d.ts +37 -2
- package/dist/index.js +285 -4
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
@@ -1,10 +1,45 @@
|
|
1
|
-
export * from '@saas-ui/core';
|
2
1
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
3
2
|
import { ChakraProviderProps } from '@chakra-ui/react';
|
4
|
-
export { createSystem } from '@chakra-ui/react';
|
3
|
+
export { LinkProps, createSystem } from '@chakra-ui/react';
|
5
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
6
5
|
import * as react from 'react';
|
7
6
|
import react__default from 'react';
|
7
|
+
export { AppShell, AppShellProps } from './components/app-shell/index.cjs';
|
8
|
+
export { Avatar, AvatarGroup, AvatarProps } from './components/avatar/index.cjs';
|
9
|
+
export { Breadcrumb } from './components/breadcrumbs/index.cjs';
|
10
|
+
export { Button, ButtonProps } from './components/button/index.cjs';
|
11
|
+
export { Checkbox, CheckboxProps } from './components/checkbox/index.cjs';
|
12
|
+
export { CloseButton, CloseButtonProps } from './components/close-button/index.cjs';
|
13
|
+
export { Command } from './components/command/index.cjs';
|
14
|
+
export { Dialog } from './components/dialog/index.cjs';
|
15
|
+
export { Drawer } from './components/drawer/index.cjs';
|
16
|
+
export { EmptyState, EmptyStateProps } from './components/empty-state/index.cjs';
|
17
|
+
export { GridList } from './components/grid-list/index.cjs';
|
18
|
+
export { IconBadge, IconBadgeProps } from './components/icon-badge/index.cjs';
|
19
|
+
export { InputGroup, InputGroupProps } from './components/input-group/index.cjs';
|
20
|
+
export { Link } from './components/link/index.cjs';
|
21
|
+
export { LoadingOverlay, useLoadingOverlayStyles } from './components/loading-overlay/index.cjs';
|
22
|
+
export { Navbar } from './components/navbar/index.cjs';
|
23
|
+
export { NumberInput, NumberInputProps } from './components/number-input/index.cjs';
|
24
|
+
export { Menu } from './components/menu/index.cjs';
|
25
|
+
export { PasswordInput, PasswordInputProps } from './components/password-input/index.cjs';
|
26
|
+
export { Persona, PersonaAvatar, PersonaAvatarProps, PersonaProps, Presence, PresenceConfig, defaultPresenceOptions } from './components/persona/index.cjs';
|
27
|
+
export { PinInput, PinInputProps } from './components/pin-input/index.cjs';
|
28
|
+
export { Radio, RadioGroup, RadioGroupProps, RadioProps } from './components/radio/index.cjs';
|
29
|
+
export { SearchInput, SearchInputProps } from './components/search-input/index.cjs';
|
30
|
+
export { Select } from './components/select/index.cjs';
|
31
|
+
export { Sidebar, useSidebarItemStyles, useSidebarStyles } from './components/sidebar/index.cjs';
|
32
|
+
export { useSidebar } from '@saas-ui/core/sidebar';
|
33
|
+
export { Toaster, ToasterProps, toast } from './components/toaster/index.cjs';
|
34
|
+
export { Spinner, SpinnerProps } from './components/spinner/index.cjs';
|
35
|
+
export { Steps } from './components/steps/index.cjs';
|
36
|
+
export { Switch, SwitchProps } from './components/switch/index.cjs';
|
37
|
+
export { Tooltip, TooltipProps } from './components/tooltip/index.cjs';
|
38
|
+
import '@ark-ui/react/dialog';
|
39
|
+
import '@ark-ui/react';
|
40
|
+
import '@saas-ui/core/grid-list';
|
41
|
+
import '@ark-ui/react/presence';
|
42
|
+
import '@saas-ui/core/navbar';
|
8
43
|
|
9
44
|
declare const defaultConfig: _chakra_ui_react.SystemConfig;
|
10
45
|
declare const defaultSystem: _chakra_ui_react.SystemContext;
|
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,45 @@
|
|
1
|
-
export * from '@saas-ui/core';
|
2
1
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
3
2
|
import { ChakraProviderProps } from '@chakra-ui/react';
|
4
|
-
export { createSystem } from '@chakra-ui/react';
|
3
|
+
export { LinkProps, createSystem } from '@chakra-ui/react';
|
5
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
6
5
|
import * as react from 'react';
|
7
6
|
import react__default from 'react';
|
7
|
+
export { AppShell, AppShellProps } from './components/app-shell/index.js';
|
8
|
+
export { Avatar, AvatarGroup, AvatarProps } from './components/avatar/index.js';
|
9
|
+
export { Breadcrumb } from './components/breadcrumbs/index.js';
|
10
|
+
export { Button, ButtonProps } from './components/button/index.js';
|
11
|
+
export { Checkbox, CheckboxProps } from './components/checkbox/index.js';
|
12
|
+
export { CloseButton, CloseButtonProps } from './components/close-button/index.js';
|
13
|
+
export { Command } from './components/command/index.js';
|
14
|
+
export { Dialog } from './components/dialog/index.js';
|
15
|
+
export { Drawer } from './components/drawer/index.js';
|
16
|
+
export { EmptyState, EmptyStateProps } from './components/empty-state/index.js';
|
17
|
+
export { GridList } from './components/grid-list/index.js';
|
18
|
+
export { IconBadge, IconBadgeProps } from './components/icon-badge/index.js';
|
19
|
+
export { InputGroup, InputGroupProps } from './components/input-group/index.js';
|
20
|
+
export { Link } from './components/link/index.js';
|
21
|
+
export { LoadingOverlay, useLoadingOverlayStyles } from './components/loading-overlay/index.js';
|
22
|
+
export { Navbar } from './components/navbar/index.js';
|
23
|
+
export { NumberInput, NumberInputProps } from './components/number-input/index.js';
|
24
|
+
export { Menu } from './components/menu/index.js';
|
25
|
+
export { PasswordInput, PasswordInputProps } from './components/password-input/index.js';
|
26
|
+
export { Persona, PersonaAvatar, PersonaAvatarProps, PersonaProps, Presence, PresenceConfig, defaultPresenceOptions } from './components/persona/index.js';
|
27
|
+
export { PinInput, PinInputProps } from './components/pin-input/index.js';
|
28
|
+
export { Radio, RadioGroup, RadioGroupProps, RadioProps } from './components/radio/index.js';
|
29
|
+
export { SearchInput, SearchInputProps } from './components/search-input/index.js';
|
30
|
+
export { Select } from './components/select/index.js';
|
31
|
+
export { Sidebar, useSidebarItemStyles, useSidebarStyles } from './components/sidebar/index.js';
|
32
|
+
export { useSidebar } from '@saas-ui/core/sidebar';
|
33
|
+
export { Toaster, ToasterProps, toast } from './components/toaster/index.js';
|
34
|
+
export { Spinner, SpinnerProps } from './components/spinner/index.js';
|
35
|
+
export { Steps } from './components/steps/index.js';
|
36
|
+
export { Switch, SwitchProps } from './components/switch/index.js';
|
37
|
+
export { Tooltip, TooltipProps } from './components/tooltip/index.js';
|
38
|
+
import '@ark-ui/react/dialog';
|
39
|
+
import '@ark-ui/react';
|
40
|
+
import '@saas-ui/core/grid-list';
|
41
|
+
import '@ark-ui/react/presence';
|
42
|
+
import '@saas-ui/core/navbar';
|
8
43
|
|
9
44
|
declare const defaultConfig: _chakra_ui_react.SystemConfig;
|
10
45
|
declare const defaultSystem: _chakra_ui_react.SystemContext;
|
package/dist/index.js
CHANGED
@@ -1,14 +1,113 @@
|
|
1
1
|
import {
|
2
|
+
Tooltip
|
3
|
+
} from "./chunk-QSNSWCTM.js";
|
4
|
+
import {
|
5
|
+
SearchInput
|
6
|
+
} from "./chunk-LIYUBUOP.js";
|
7
|
+
import "./chunk-CTOVNZVS.js";
|
8
|
+
import {
|
9
|
+
namespace_exports as namespace_exports4
|
10
|
+
} from "./chunk-S3CQW7GD.js";
|
11
|
+
import {
|
12
|
+
sidebar_exports,
|
13
|
+
useSidebar,
|
14
|
+
useSidebarItemStyles,
|
15
|
+
useSidebarStyles
|
16
|
+
} from "./chunk-DPMEXCSG.js";
|
17
|
+
import {
|
18
|
+
steps_exports
|
19
|
+
} from "./chunk-6LOMIKR5.js";
|
20
|
+
import {
|
21
|
+
Switch
|
22
|
+
} from "./chunk-SA3OGTOO.js";
|
23
|
+
import {
|
24
|
+
Toaster,
|
25
|
+
toast
|
26
|
+
} from "./chunk-HELHPHIQ.js";
|
27
|
+
import {
|
28
|
+
loading_overlay_exports,
|
29
|
+
useLoadingOverlayStyles
|
30
|
+
} from "./chunk-YWJZWB6I.js";
|
31
|
+
import {
|
32
|
+
Spinner
|
33
|
+
} from "./chunk-32JGENDB.js";
|
34
|
+
import {
|
35
|
+
menu_exports
|
36
|
+
} from "./chunk-VF3BV2BY.js";
|
37
|
+
import {
|
38
|
+
navbar_exports
|
39
|
+
} from "./chunk-3Z2C27LI.js";
|
40
|
+
import {
|
41
|
+
PasswordInput
|
42
|
+
} from "./chunk-QMG6HP7Z.js";
|
43
|
+
import "./chunk-F3CVOMG5.js";
|
44
|
+
import {
|
45
|
+
NumberInput
|
46
|
+
} from "./chunk-ULAJ3JEO.js";
|
47
|
+
import {
|
48
|
+
Persona,
|
49
|
+
PersonaAvatar,
|
50
|
+
defaultPresenceOptions
|
51
|
+
} from "./chunk-M7FOBCOV.js";
|
52
|
+
import {
|
53
|
+
PinInput
|
54
|
+
} from "./chunk-2EUACKRH.js";
|
55
|
+
import {
|
56
|
+
Radio,
|
57
|
+
RadioGroup
|
58
|
+
} from "./chunk-WYLMBMAH.js";
|
59
|
+
import {
|
60
|
+
namespace_exports as namespace_exports2
|
61
|
+
} from "./chunk-ZWSZQZ5G.js";
|
62
|
+
import {
|
63
|
+
namespace_exports as namespace_exports3
|
64
|
+
} from "./chunk-GEPWRHHH.js";
|
65
|
+
import "./chunk-VBIVLREP.js";
|
66
|
+
import {
|
67
|
+
EmptyState
|
68
|
+
} from "./chunk-FJFNGSPL.js";
|
69
|
+
import {
|
70
|
+
grid_list_exports
|
71
|
+
} from "./chunk-NSD5HRIP.js";
|
72
|
+
import {
|
73
|
+
IconBadge
|
74
|
+
} from "./chunk-I2RXEKTB.js";
|
75
|
+
import "./chunk-KTLWEUNW.js";
|
76
|
+
import {
|
77
|
+
InputGroup
|
78
|
+
} from "./chunk-PKI6YH2V.js";
|
79
|
+
import {
|
80
|
+
Link,
|
2
81
|
SuiContext,
|
3
82
|
SuiProvider,
|
4
83
|
useLink,
|
5
84
|
useSui
|
6
|
-
} from "./chunk-
|
85
|
+
} from "./chunk-BFA5FCA2.js";
|
86
|
+
import {
|
87
|
+
AppShell
|
88
|
+
} from "./chunk-6ZNR6N2K.js";
|
89
|
+
import {
|
90
|
+
Avatar,
|
91
|
+
AvatarGroup
|
92
|
+
} from "./chunk-UCQ3LZIE.js";
|
93
|
+
import {
|
94
|
+
namespace_exports
|
95
|
+
} from "./chunk-7C3IZBNJ.js";
|
96
|
+
import {
|
97
|
+
Button
|
98
|
+
} from "./chunk-BCNPBZZK.js";
|
99
|
+
import {
|
100
|
+
Checkbox
|
101
|
+
} from "./chunk-L356FPLY.js";
|
102
|
+
import {
|
103
|
+
CloseButton
|
104
|
+
} from "./chunk-FZW2DYK3.js";
|
105
|
+
import "./chunk-VDXTEASE.js";
|
106
|
+
import {
|
107
|
+
Command
|
108
|
+
} from "./chunk-4TR3AOMG.js";
|
7
109
|
import "./chunk-RTMS5TJN.js";
|
8
110
|
|
9
|
-
// src/index.ts
|
10
|
-
export * from "@saas-ui/core";
|
11
|
-
|
12
111
|
// src/preset.ts
|
13
112
|
import { createSystem, defaultBaseConfig, mergeConfigs } from "@chakra-ui/react";
|
14
113
|
|
@@ -7898,6 +7997,149 @@ var colors = defineTokens5.colors({
|
|
7898
7997
|
800: { value: "#6d0e34" },
|
7899
7998
|
900: { value: "#45061f" },
|
7900
7999
|
950: { value: "#2c0514" }
|
8000
|
+
},
|
8001
|
+
slate: {
|
8002
|
+
50: { value: "#f8fafc" },
|
8003
|
+
100: { value: "#f1f5f9" },
|
8004
|
+
200: { value: "#e2e8f0" },
|
8005
|
+
300: { value: "#cbd5e1" },
|
8006
|
+
400: { value: "#94a3b8" },
|
8007
|
+
500: { value: "#64748b" },
|
8008
|
+
600: { value: "#475569" },
|
8009
|
+
700: { value: "#334155" },
|
8010
|
+
800: { value: "#1e293b" },
|
8011
|
+
900: { value: "#0f172a" },
|
8012
|
+
950: { value: "#020617" }
|
8013
|
+
},
|
8014
|
+
zinc: {
|
8015
|
+
50: { value: "#fafafa" },
|
8016
|
+
100: { value: "#f4f4f5" },
|
8017
|
+
200: { value: "#e4e4e7" },
|
8018
|
+
300: { value: "#d4d4d8" },
|
8019
|
+
400: { value: "#a1a1aa" },
|
8020
|
+
500: { value: "#71717a" },
|
8021
|
+
600: { value: "#52525b" },
|
8022
|
+
700: { value: "#3f3f46" },
|
8023
|
+
800: { value: "#27272a" },
|
8024
|
+
900: { value: "#18181b" },
|
8025
|
+
950: { value: "#09090b" }
|
8026
|
+
},
|
8027
|
+
neutral: {
|
8028
|
+
50: { value: "#fafafa" },
|
8029
|
+
100: { value: "#f5f5f5" },
|
8030
|
+
200: { value: "#e5e5e5" },
|
8031
|
+
300: { value: "#d4d4d4" },
|
8032
|
+
400: { value: "#a3a3a3" },
|
8033
|
+
500: { value: "#737373" },
|
8034
|
+
600: { value: "#525252" },
|
8035
|
+
700: { value: "#404040" },
|
8036
|
+
800: { value: "#262626" },
|
8037
|
+
900: { value: "#171717" },
|
8038
|
+
950: { value: "#0a0a0a" }
|
8039
|
+
},
|
8040
|
+
stone: {
|
8041
|
+
50: { value: "#fafaf9" },
|
8042
|
+
100: { value: "#f5f5f4" },
|
8043
|
+
200: { value: "#e7e5e4" },
|
8044
|
+
300: { value: "#d6d3d1" },
|
8045
|
+
400: { value: "#a8a29e" },
|
8046
|
+
500: { value: "#78716c" },
|
8047
|
+
600: { value: "#57534e" },
|
8048
|
+
700: { value: "#44403c" },
|
8049
|
+
800: { value: "#292524" },
|
8050
|
+
900: { value: "#1c1917" },
|
8051
|
+
950: { value: "#0c0a09" }
|
8052
|
+
},
|
8053
|
+
amber: {
|
8054
|
+
50: { value: "#fffbeb" },
|
8055
|
+
100: { value: "#fef3c7" },
|
8056
|
+
200: { value: "#fde68a" },
|
8057
|
+
300: { value: "#fcd34d" },
|
8058
|
+
400: { value: "#fbbf24" },
|
8059
|
+
500: { value: "#f59e0b" },
|
8060
|
+
600: { value: "#d97706" },
|
8061
|
+
700: { value: "#b45309" },
|
8062
|
+
800: { value: "#92400e" },
|
8063
|
+
900: { value: "#78350f" },
|
8064
|
+
950: { value: "#451a03" }
|
8065
|
+
},
|
8066
|
+
lime: {
|
8067
|
+
50: { value: "#f7fee7" },
|
8068
|
+
100: { value: "#ecfccb" },
|
8069
|
+
200: { value: "#d9f99d" },
|
8070
|
+
300: { value: "#bef264" },
|
8071
|
+
400: { value: "#a3e635" },
|
8072
|
+
500: { value: "#84cc16" },
|
8073
|
+
600: { value: "#65a30d" },
|
8074
|
+
700: { value: "#4d7c0f" },
|
8075
|
+
800: { value: "#3f6212" },
|
8076
|
+
900: { value: "#365314" },
|
8077
|
+
950: { value: "#1a2e05" }
|
8078
|
+
},
|
8079
|
+
emerald: {
|
8080
|
+
50: { value: "#ecfdf5" },
|
8081
|
+
100: { value: "#d1fae5" },
|
8082
|
+
200: { value: "#a7f3d0" },
|
8083
|
+
300: { value: "#6ee7b7" },
|
8084
|
+
400: { value: "#34d399" },
|
8085
|
+
500: { value: "#10b981" },
|
8086
|
+
600: { value: "#059669" },
|
8087
|
+
700: { value: "#047857" },
|
8088
|
+
800: { value: "#065f46" },
|
8089
|
+
900: { value: "#064e3b" },
|
8090
|
+
950: { value: "#022c22" }
|
8091
|
+
},
|
8092
|
+
sky: {
|
8093
|
+
50: { value: "#f0f9ff" },
|
8094
|
+
100: { value: "#e0f2fe" },
|
8095
|
+
200: { value: "#bae6fd" },
|
8096
|
+
300: { value: "#7dd3fc" },
|
8097
|
+
400: { value: "#38bdf8" },
|
8098
|
+
500: { value: "#0ea5e9" },
|
8099
|
+
600: { value: "#0284c7" },
|
8100
|
+
700: { value: "#0369a1" },
|
8101
|
+
800: { value: "#075985" },
|
8102
|
+
900: { value: "#0c4a6e" },
|
8103
|
+
950: { value: "#082f49" }
|
8104
|
+
},
|
8105
|
+
violet: {
|
8106
|
+
50: { value: "#f5f3ff" },
|
8107
|
+
100: { value: "#ede9fe" },
|
8108
|
+
200: { value: "#ddd6fe" },
|
8109
|
+
300: { value: "#c4b5fd" },
|
8110
|
+
400: { value: "#a78bfa" },
|
8111
|
+
500: { value: "#8b5cf6" },
|
8112
|
+
600: { value: "#7c3aed" },
|
8113
|
+
700: { value: "#6d28d9" },
|
8114
|
+
800: { value: "#5b21b6" },
|
8115
|
+
900: { value: "#4c1d95" },
|
8116
|
+
950: { value: "#2e1065" }
|
8117
|
+
},
|
8118
|
+
fuchsia: {
|
8119
|
+
50: { value: "#fdf4ff" },
|
8120
|
+
100: { value: "#fae8ff" },
|
8121
|
+
200: { value: "#f5d0fe" },
|
8122
|
+
300: { value: "#f0abfc" },
|
8123
|
+
400: { value: "#e879f9" },
|
8124
|
+
500: { value: "#d946ef" },
|
8125
|
+
600: { value: "#c026d3" },
|
8126
|
+
700: { value: "#a21caf" },
|
8127
|
+
800: { value: "#86198f" },
|
8128
|
+
900: { value: "#701a75" },
|
8129
|
+
950: { value: "#4a044e" }
|
8130
|
+
},
|
8131
|
+
rose: {
|
8132
|
+
50: { value: "#fff1f2" },
|
8133
|
+
100: { value: "#ffe4e6" },
|
8134
|
+
200: { value: "#fecdd3" },
|
8135
|
+
300: { value: "#fda4af" },
|
8136
|
+
400: { value: "#fb7185" },
|
8137
|
+
500: { value: "#f43f5e" },
|
8138
|
+
600: { value: "#e11d48" },
|
8139
|
+
700: { value: "#be123c" },
|
8140
|
+
800: { value: "#9f1239" },
|
8141
|
+
900: { value: "#881337" },
|
8142
|
+
950: { value: "#4c0519" }
|
7901
8143
|
}
|
7902
8144
|
});
|
7903
8145
|
|
@@ -8378,11 +8620,50 @@ var defaultSystem = createSystem(defaultConfig);
|
|
8378
8620
|
// src/index.ts
|
8379
8621
|
import { createSystem as createSystem2 } from "@chakra-ui/react";
|
8380
8622
|
export {
|
8623
|
+
AppShell,
|
8624
|
+
Avatar,
|
8625
|
+
AvatarGroup,
|
8626
|
+
namespace_exports as Breadcrumb,
|
8627
|
+
Button,
|
8628
|
+
Checkbox,
|
8629
|
+
CloseButton,
|
8630
|
+
Command,
|
8631
|
+
namespace_exports2 as Dialog,
|
8632
|
+
namespace_exports3 as Drawer,
|
8633
|
+
EmptyState,
|
8634
|
+
grid_list_exports as GridList,
|
8635
|
+
IconBadge,
|
8636
|
+
InputGroup,
|
8637
|
+
Link,
|
8638
|
+
loading_overlay_exports as LoadingOverlay,
|
8639
|
+
menu_exports as Menu,
|
8640
|
+
navbar_exports as Navbar,
|
8641
|
+
NumberInput,
|
8642
|
+
PasswordInput,
|
8643
|
+
Persona,
|
8644
|
+
PersonaAvatar,
|
8645
|
+
PinInput,
|
8646
|
+
Radio,
|
8647
|
+
RadioGroup,
|
8648
|
+
SearchInput,
|
8649
|
+
namespace_exports4 as Select,
|
8650
|
+
sidebar_exports as Sidebar,
|
8651
|
+
Spinner,
|
8652
|
+
steps_exports as Steps,
|
8381
8653
|
SuiContext,
|
8382
8654
|
SuiProvider,
|
8655
|
+
Switch,
|
8656
|
+
Toaster,
|
8657
|
+
Tooltip,
|
8383
8658
|
createSystem2 as createSystem,
|
8384
8659
|
defaultConfig,
|
8660
|
+
defaultPresenceOptions,
|
8385
8661
|
defaultSystem,
|
8662
|
+
toast,
|
8386
8663
|
useLink,
|
8664
|
+
useLoadingOverlayStyles,
|
8665
|
+
useSidebar,
|
8666
|
+
useSidebarItemStyles,
|
8667
|
+
useSidebarStyles,
|
8387
8668
|
useSui
|
8388
8669
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/react",
|
3
|
-
"version": "3.0.0-alpha.
|
3
|
+
"version": "3.0.0-alpha.6",
|
4
4
|
"description": "Saas UI - The React component library for startups.",
|
5
5
|
"type": "module",
|
6
6
|
"exports": {
|
@@ -63,11 +63,11 @@
|
|
63
63
|
"url": "https://storybook.saas-ui.dev"
|
64
64
|
},
|
65
65
|
"dependencies": {
|
66
|
-
"@saas-ui/core": "3.0.0-alpha.
|
67
|
-
"@saas-ui/hooks": "3.0.0-alpha.
|
66
|
+
"@saas-ui/core": "3.0.0-alpha.4",
|
67
|
+
"@saas-ui/hooks": "3.0.0-alpha.4"
|
68
68
|
},
|
69
69
|
"peerDependencies": {
|
70
|
-
"@chakra-ui/react": "^3.
|
70
|
+
"@chakra-ui/react": "^3.2.1",
|
71
71
|
"@emotion/react": "^11",
|
72
72
|
"react": ">=18",
|
73
73
|
"react-dom": ">=18"
|