@saas-ui/react 2.11.2 → 3.0.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +13 -148
- package/dist/chunk-32JGENDB.js +19 -0
- package/dist/chunk-FZW2DYK3.js +19 -0
- package/dist/chunk-KHRLZUV4.js +35 -0
- package/dist/chunk-KTLWEUNW.js +1 -0
- package/dist/chunk-PKI6YH2V.js +31 -0
- package/dist/chunk-RTMS5TJN.js +10 -0
- package/dist/chunk-VBIVLREP.js +45 -0
- package/dist/chunk-VDXTEASE.js +117 -0
- package/dist/components/app-shell/index.cjs +68 -0
- package/dist/components/app-shell/index.d.cts +30 -0
- package/dist/components/app-shell/index.d.ts +30 -0
- package/dist/components/app-shell/index.js +45 -0
- package/dist/components/breadcrumbs/index.cjs +60 -0
- package/dist/components/breadcrumbs/index.d.cts +18 -0
- package/dist/components/breadcrumbs/index.d.ts +18 -0
- package/dist/components/breadcrumbs/index.js +37 -0
- package/dist/components/button/index.cjs +65 -0
- package/dist/components/button/index.d.cts +12 -0
- package/dist/components/button/index.d.ts +12 -0
- package/dist/components/button/index.js +45 -0
- package/dist/components/checkbox/index.cjs +45 -0
- package/dist/components/checkbox/index.d.cts +11 -0
- package/dist/components/checkbox/index.d.ts +11 -0
- package/dist/components/checkbox/index.js +20 -0
- package/dist/components/close-button/index.cjs +142 -0
- package/dist/components/close-button/index.d.cts +8 -0
- package/dist/components/close-button/index.d.ts +8 -0
- package/dist/components/close-button/index.js +9 -0
- package/dist/components/command/index.cjs +56 -0
- package/dist/components/command/index.d.cts +6 -0
- package/dist/components/command/index.d.ts +6 -0
- package/dist/components/command/index.js +33 -0
- package/dist/components/dialog/index.cjs +243 -0
- package/dist/components/dialog/index.d.cts +27 -0
- package/dist/components/dialog/index.d.ts +27 -0
- package/dist/components/dialog/index.js +73 -0
- package/dist/components/drawer/index.cjs +237 -0
- package/dist/components/drawer/index.d.cts +28 -0
- package/dist/components/drawer/index.d.ts +28 -0
- package/dist/components/drawer/index.js +65 -0
- package/dist/components/icon-badge/index.cjs +70 -0
- package/dist/components/icon-badge/index.d.cts +16 -0
- package/dist/components/icon-badge/index.d.ts +16 -0
- package/dist/components/icon-badge/index.js +38 -0
- package/dist/components/icons/index.cjs +155 -0
- package/dist/components/icons/index.d.cts +19 -0
- package/dist/components/icons/index.d.ts +19 -0
- package/dist/components/icons/index.js +35 -0
- package/dist/components/input-group/index.cjs +56 -0
- package/dist/components/input-group/index.d.cts +13 -0
- package/dist/components/input-group/index.d.ts +13 -0
- package/dist/components/input-group/index.js +8 -0
- package/dist/components/link/index.cjs +71 -0
- package/dist/components/link/index.d.cts +13 -0
- package/dist/components/link/index.d.ts +13 -0
- package/dist/components/link/index.js +20 -0
- package/dist/components/loading-overlay/index.cjs +1921 -0
- package/dist/components/loading-overlay/index.d.cts +13 -0
- package/dist/components/loading-overlay/index.d.ts +13 -0
- package/dist/components/loading-overlay/index.js +1878 -0
- package/dist/components/navbar/index.cjs +65 -0
- package/dist/components/navbar/index.d.cts +18 -0
- package/dist/components/navbar/index.d.ts +18 -0
- package/dist/components/navbar/index.js +42 -0
- package/dist/components/number-input/index.cjs +82 -0
- package/dist/components/number-input/index.d.cts +13 -0
- package/dist/components/number-input/index.d.ts +13 -0
- package/dist/components/number-input/index.js +32 -0
- package/dist/components/password-input/index.cjs +284 -0
- package/dist/components/password-input/index.d.cts +18 -0
- package/dist/components/password-input/index.d.ts +18 -0
- package/dist/components/password-input/index.js +231 -0
- package/dist/components/persona/index.cjs +181 -0
- package/dist/components/persona/index.d.cts +93 -0
- package/dist/components/persona/index.d.ts +93 -0
- package/dist/components/persona/index.js +149 -0
- package/dist/components/pin-input/index.cjs +51 -0
- package/dist/components/pin-input/index.d.cts +12 -0
- package/dist/components/pin-input/index.d.ts +12 -0
- package/dist/components/pin-input/index.js +26 -0
- package/dist/components/radio/index.cjs +48 -0
- package/dist/components/radio/index.d.cts +12 -0
- package/dist/components/radio/index.d.ts +12 -0
- package/dist/components/radio/index.js +22 -0
- package/dist/components/search-input/index.cjs +244 -0
- package/dist/components/search-input/index.d.cts +15 -0
- package/dist/components/search-input/index.d.ts +15 -0
- package/dist/components/search-input/index.js +120 -0
- package/dist/components/select/index.cjs +233 -0
- package/dist/components/select/index.d.cts +32 -0
- package/dist/components/select/index.d.ts +32 -0
- package/dist/components/select/index.js +100 -0
- package/dist/components/sidebar/index.cjs +134 -0
- package/dist/components/sidebar/index.d.cts +85 -0
- package/dist/components/sidebar/index.d.ts +85 -0
- package/dist/components/sidebar/index.js +108 -0
- package/dist/components/spinner/index.cjs +44 -0
- package/dist/components/spinner/index.d.cts +10 -0
- package/dist/components/spinner/index.d.ts +10 -0
- package/dist/components/spinner/index.js +8 -0
- package/dist/components/steps/index.cjs +191 -0
- package/dist/components/steps/index.d.cts +31 -0
- package/dist/components/steps/index.d.ts +31 -0
- package/dist/components/steps/index.js +71 -0
- package/dist/components/switch/index.cjs +48 -0
- package/dist/components/switch/index.d.cts +18 -0
- package/dist/components/switch/index.d.ts +18 -0
- package/dist/components/switch/index.js +23 -0
- package/dist/index.cjs +8460 -0
- package/dist/index.d.cts +26 -0
- package/dist/index.d.ts +25 -7
- package/dist/index.js +8395 -36
- package/package.json +26 -22
- package/src/components/app-shell/app-shell.recipe.ts +52 -0
- package/src/components/app-shell/app-shell.stories.tsx +51 -0
- package/src/components/app-shell/app-shell.tsx +94 -0
- package/src/components/app-shell/index.ts +3 -0
- package/src/components/breadcrumbs/breadcrumb.stories.tsx +17 -0
- package/src/components/breadcrumbs/breadcrumb.tsx +36 -0
- package/src/components/breadcrumbs/index.ts +1 -0
- package/src/components/breadcrumbs/namespace.ts +8 -0
- package/src/components/button/button.recipe.ts +182 -0
- package/src/components/button/button.stories.tsx +99 -0
- package/src/components/button/button.tsx +55 -0
- package/src/components/button/index.ts +2 -0
- package/src/components/checkbox/checkbox.tsx +26 -0
- package/src/components/checkbox/index.ts +2 -0
- package/src/components/close-button/close-button.stories.tsx +12 -0
- package/src/components/close-button/close-button.tsx +18 -0
- package/src/components/close-button/index.ts +2 -0
- package/src/components/command/command.recipe.ts +17 -0
- package/src/components/command/command.stories.tsx +47 -0
- package/src/components/command/command.tsx +50 -0
- package/src/components/command/index.ts +1 -0
- package/src/components/dialog/dialog.tsx +67 -0
- package/src/components/dialog/index.ts +1 -0
- package/src/components/dialog/namespace.ts +18 -0
- package/src/components/drawer/drawer.tsx +57 -0
- package/src/components/drawer/index.ts +3 -0
- package/src/components/drawer/namespace.ts +19 -0
- package/src/components/grid-list/grid-list.recipe.ts +113 -0
- package/src/components/icon-badge/icon-badge.recipe.ts +57 -0
- package/src/components/icon-badge/icon-badge.stories.tsx +38 -0
- package/src/components/icon-badge/icon-badge.tsx +59 -0
- package/src/components/icon-badge/index.ts +2 -0
- package/src/components/icons/create-icon.tsx +41 -0
- package/src/components/icons/icons.tsx +119 -0
- package/src/components/icons/index.ts +1 -0
- package/src/components/input-group/index.ts +1 -0
- package/src/components/input-group/input-group.tsx +46 -0
- package/src/components/link/index.ts +2 -0
- package/src/components/link/link.stories.tsx +17 -0
- package/src/components/link/link.test.tsx +33 -0
- package/src/components/link/link.tsx +27 -0
- package/src/components/loading-overlay/index.ts +1 -0
- package/src/components/loading-overlay/loading-overlay.recipe.ts +61 -0
- package/src/components/loading-overlay/loading-overlay.stories.tsx +68 -0
- package/src/components/loading-overlay/loading-overlay.tsx +54 -0
- package/src/components/loading-overlay/namespace.ts +7 -0
- package/src/components/navbar/index.ts +1 -0
- package/src/components/navbar/namespace.ts +9 -0
- package/src/components/navbar/navbar.recipe.ts +109 -0
- package/src/components/navbar/navbar.stories.tsx +435 -0
- package/src/components/navbar/navbar.test.tsx +49 -0
- package/src/components/navbar/navbar.tsx +39 -0
- package/src/components/number-input/index.ts +2 -0
- package/src/components/number-input/number-input.tsx +41 -0
- package/src/components/password-input/index.ts +2 -0
- package/src/components/password-input/password-input.tsx +93 -0
- package/src/components/persona/index.ts +2 -0
- package/src/components/persona/namespace.ts +18 -0
- package/src/components/persona/persona-primitive.tsx +220 -0
- package/src/components/persona/persona.recipe.ts +94 -0
- package/src/components/persona/persona.stories.tsx +101 -0
- package/src/components/persona/persona.tsx +142 -0
- package/src/components/pin-input/index.ts +2 -0
- package/src/components/pin-input/pin-input.tsx +36 -0
- package/src/components/radio/index.ts +2 -0
- package/src/components/radio/radio.tsx +27 -0
- package/src/components/search-input/index.ts +2 -0
- package/src/components/search-input/search-input.stories.tsx +63 -0
- package/src/components/search-input/search-input.tsx +134 -0
- package/src/components/select/index.ts +1 -0
- package/src/components/select/namespace.ts +18 -0
- package/src/components/select/select.tsx +135 -0
- package/src/components/sidebar/index.ts +7 -0
- package/src/components/sidebar/namespace.ts +27 -0
- package/src/components/sidebar/sidebar-item.recipe.ts +65 -0
- package/src/components/sidebar/sidebar.recipe.ts +237 -0
- package/src/components/sidebar/sidebar.stories.tsx +903 -0
- package/src/components/sidebar/sidebar.tsx +208 -0
- package/src/components/spinner/index.ts +2 -0
- package/src/components/spinner/spinner.stories.tsx +19 -0
- package/src/components/spinner/spinner.tsx +21 -0
- package/src/components/steps/index.ts +1 -0
- package/src/components/steps/namespace.ts +16 -0
- package/src/components/steps/steps.tsx +82 -0
- package/src/components/switch/index.ts +3 -0
- package/src/components/switch/switch.tsx +39 -0
- package/src/compositions/accordion.tsx +47 -0
- package/src/compositions/action-bar.tsx +40 -0
- package/src/compositions/alert.tsx +51 -0
- package/src/compositions/avatar.tsx +74 -0
- package/src/compositions/blockquote.tsx +31 -0
- package/src/compositions/checkbox-card.tsx +57 -0
- package/src/compositions/checkbox.tsx +25 -0
- package/src/compositions/clipboard.tsx +107 -0
- package/src/compositions/color-mode.tsx +65 -0
- package/src/compositions/data-list.tsx +37 -0
- package/src/compositions/empty-state.tsx +34 -0
- package/src/compositions/field.tsx +33 -0
- package/src/compositions/file-button.tsx +166 -0
- package/src/compositions/hover-card.tsx +35 -0
- package/src/compositions/link-button.tsx +12 -0
- package/src/compositions/menu.tsx +108 -0
- package/src/compositions/native-select.tsx +57 -0
- package/src/compositions/pagination.tsx +207 -0
- package/src/compositions/popover.tsx +58 -0
- package/src/compositions/progress-circle.tsx +37 -0
- package/src/compositions/progress.tsx +40 -0
- package/src/compositions/prose.tsx +264 -0
- package/src/compositions/provider.tsx +12 -0
- package/src/compositions/radio-card.tsx +57 -0
- package/src/compositions/radio.tsx +24 -0
- package/src/compositions/rating.tsx +27 -0
- package/src/compositions/segmented-control.tsx +47 -0
- package/src/compositions/skeleton.tsx +44 -0
- package/src/compositions/slider.tsx +53 -0
- package/src/compositions/stat.tsx +75 -0
- package/src/compositions/status.tsx +29 -0
- package/src/compositions/stepper-input.tsx +49 -0
- package/src/compositions/tag.tsx +39 -0
- package/src/compositions/timeline.tsx +17 -0
- package/src/compositions/toaster.tsx +43 -0
- package/src/compositions/toggle-tip.tsx +62 -0
- package/src/compositions/tooltip.tsx +46 -0
- package/src/index.ts +6 -7
- package/src/preset.ts +9 -0
- package/src/provider/index.ts +4 -0
- package/src/provider/sui-provider.tsx +34 -0
- package/src/provider/use-link.test.tsx +60 -0
- package/src/provider/use-link.tsx +13 -0
- package/src/styled-system/create-recipe-context.tsx +91 -0
- package/src/styled-system/create-slot-recipe-context.tsx +188 -0
- package/src/styled-system/empty.ts +7 -0
- package/src/styled-system/factory.types.ts +11 -0
- package/src/theme/animation-styles.ts +53 -0
- package/src/theme/breakpoints.ts +11 -0
- package/src/theme/conditions.ts +26 -0
- package/src/theme/fluid-font-sizes.ts +65 -0
- package/src/theme/global-css.ts +94 -0
- package/src/theme/index.ts +72 -0
- package/src/theme/layer-styles.ts +116 -0
- package/src/theme/recipes/chakra/accordion.ts +145 -0
- package/src/theme/recipes/chakra/action-bar.ts +62 -0
- package/src/theme/recipes/chakra/alert.ts +157 -0
- package/src/theme/recipes/chakra/avatar.ts +141 -0
- package/src/theme/recipes/chakra/badge.ts +67 -0
- package/src/theme/recipes/chakra/blockquote.ts +83 -0
- package/src/theme/recipes/chakra/breadcrumb.ts +94 -0
- package/src/theme/recipes/chakra/card.ts +99 -0
- package/src/theme/recipes/chakra/checkbox-card.ts +212 -0
- package/src/theme/recipes/chakra/checkbox.ts +70 -0
- package/src/theme/recipes/chakra/checkmark.ts +83 -0
- package/src/theme/recipes/chakra/code.ts +17 -0
- package/src/theme/recipes/chakra/collapsible.ts +20 -0
- package/src/theme/recipes/chakra/container.ts +26 -0
- package/src/theme/recipes/chakra/data-list.ts +80 -0
- package/src/theme/recipes/chakra/dialog.ts +225 -0
- package/src/theme/recipes/chakra/drawer.ts +201 -0
- package/src/theme/recipes/chakra/editable.ts +88 -0
- package/src/theme/recipes/chakra/empty-state.ts +88 -0
- package/src/theme/recipes/chakra/field.ts +68 -0
- package/src/theme/recipes/chakra/fieldset.ts +62 -0
- package/src/theme/recipes/chakra/file-upload.ts +96 -0
- package/src/theme/recipes/chakra/heading.ts +27 -0
- package/src/theme/recipes/chakra/hover-card.ts +68 -0
- package/src/theme/recipes/chakra/icon.ts +30 -0
- package/src/theme/recipes/chakra/input-addon.ts +40 -0
- package/src/theme/recipes/chakra/input.ts +96 -0
- package/src/theme/recipes/chakra/kbd.ts +60 -0
- package/src/theme/recipes/chakra/link.ts +37 -0
- package/src/theme/recipes/chakra/list.ts +67 -0
- package/src/theme/recipes/chakra/mark.ts +27 -0
- package/src/theme/recipes/chakra/menu.ts +124 -0
- package/src/theme/recipes/chakra/native-select.ts +140 -0
- package/src/theme/recipes/chakra/number-input.ts +115 -0
- package/src/theme/recipes/chakra/pin-input.ts +27 -0
- package/src/theme/recipes/chakra/popover.ts +86 -0
- package/src/theme/recipes/chakra/progress-circle.ts +94 -0
- package/src/theme/recipes/chakra/progress.ts +127 -0
- package/src/theme/recipes/chakra/radio-card.ts +220 -0
- package/src/theme/recipes/chakra/radio-group.ts +72 -0
- package/src/theme/recipes/chakra/radiomark.ts +107 -0
- package/src/theme/recipes/chakra/rating-group.ts +94 -0
- package/src/theme/recipes/chakra/segment-group.ts +117 -0
- package/src/theme/recipes/chakra/select.ts +282 -0
- package/src/theme/recipes/chakra/separator.ts +51 -0
- package/src/theme/recipes/chakra/skeleton.ts +53 -0
- package/src/theme/recipes/chakra/skip-nav-link.ts +34 -0
- package/src/theme/recipes/chakra/slider.ts +178 -0
- package/src/theme/recipes/chakra/spinner.ts +32 -0
- package/src/theme/recipes/chakra/stat.ts +79 -0
- package/src/theme/recipes/chakra/status.ts +48 -0
- package/src/theme/recipes/chakra/steps.ts +218 -0
- package/src/theme/recipes/chakra/switch.ts +167 -0
- package/src/theme/recipes/chakra/table.ts +172 -0
- package/src/theme/recipes/chakra/tabs.ts +280 -0
- package/src/theme/recipes/chakra/tag.ts +131 -0
- package/src/theme/recipes/chakra/textarea.ts +88 -0
- package/src/theme/recipes/chakra/timeline.ts +138 -0
- package/src/theme/recipes/chakra/toast.ts +96 -0
- package/src/theme/recipes/chakra/tooltip.ts +40 -0
- package/src/theme/recipes.ts +46 -0
- package/src/theme/semantic-tokens/colors.ts +403 -0
- package/src/theme/semantic-tokens/radii.ts +7 -0
- package/src/theme/semantic-tokens/shadows.ts +52 -0
- package/src/theme/slot-recipes.ts +104 -0
- package/src/theme/text-styles.ts +39 -0
- package/src/theme/tokens/animations.ts +8 -0
- package/src/theme/tokens/aspect-ratios.ts +10 -0
- package/src/theme/tokens/blurs.ts +12 -0
- package/src/theme/tokens/borders.ts +9 -0
- package/src/theme/tokens/colors.ts +177 -0
- package/src/theme/tokens/cursor.ts +12 -0
- package/src/theme/tokens/durations.ts +11 -0
- package/src/theme/tokens/easings.ts +10 -0
- package/src/theme/tokens/font-sizes.ts +20 -0
- package/src/theme/tokens/font-weights.ts +13 -0
- package/src/theme/tokens/fonts.ts +15 -0
- package/src/theme/tokens/keyframes.ts +173 -0
- package/src/theme/tokens/letter-spacing.ts +9 -0
- package/src/theme/tokens/line-heights.ts +19 -0
- package/src/theme/tokens/radius.ts +18 -0
- package/src/theme/tokens/sizes.ts +71 -0
- package/src/theme/tokens/spacing.ts +38 -0
- package/src/theme/tokens/z-indices.ts +34 -0
- package/src/theme/utils.ts +46 -0
- package/dist/index.d.mts +0 -8
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -11
- package/dist/index.mjs.map +0 -1
@@ -0,0 +1,12 @@
|
|
1
|
+
import * as react from 'react';
|
2
|
+
import { RadioGroup as RadioGroup$1 } from '@chakra-ui/react';
|
3
|
+
|
4
|
+
interface RadioProps extends RadioGroup$1.ItemProps {
|
5
|
+
rootRef?: React.Ref<HTMLDivElement>;
|
6
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
7
|
+
}
|
8
|
+
declare const Radio: react.ForwardRefExoticComponent<RadioProps & react.RefAttributes<HTMLInputElement>>;
|
9
|
+
type RadioGroupProps = RadioGroup$1.RootProps;
|
10
|
+
declare const RadioGroup: react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>;
|
11
|
+
|
12
|
+
export { Radio, RadioGroup, type RadioGroupProps, type RadioProps };
|
@@ -0,0 +1,22 @@
|
|
1
|
+
'use client'
|
2
|
+
import "../../chunk-RTMS5TJN.js";
|
3
|
+
|
4
|
+
// src/components/radio/radio.tsx
|
5
|
+
import { forwardRef } from "react";
|
6
|
+
import { RadioGroup as ChakraRadioGroup } from "@chakra-ui/react";
|
7
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
8
|
+
var Radio = forwardRef(
|
9
|
+
function Radio2(props, ref) {
|
10
|
+
const { children, inputProps, rootRef, ...rest } = props;
|
11
|
+
return /* @__PURE__ */ jsxs(ChakraRadioGroup.Item, { ref: rootRef, ...rest, children: [
|
12
|
+
/* @__PURE__ */ jsx(ChakraRadioGroup.ItemHiddenInput, { ref, ...inputProps }),
|
13
|
+
/* @__PURE__ */ jsx(ChakraRadioGroup.ItemIndicator, {}),
|
14
|
+
children && /* @__PURE__ */ jsx(ChakraRadioGroup.ItemText, { children })
|
15
|
+
] });
|
16
|
+
}
|
17
|
+
);
|
18
|
+
var RadioGroup = ChakraRadioGroup.Root;
|
19
|
+
export {
|
20
|
+
Radio,
|
21
|
+
RadioGroup
|
22
|
+
};
|
@@ -0,0 +1,244 @@
|
|
1
|
+
'use client'
|
2
|
+
"use strict";
|
3
|
+
var __create = Object.create;
|
4
|
+
var __defProp = Object.defineProperty;
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
9
|
+
var __export = (target, all) => {
|
10
|
+
for (var name in all)
|
11
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
12
|
+
};
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
15
|
+
for (let key of __getOwnPropNames(from))
|
16
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
17
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
18
|
+
}
|
19
|
+
return to;
|
20
|
+
};
|
21
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
22
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
23
|
+
// file that has been converted to a CommonJS file using a Babel-
|
24
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
25
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
26
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
27
|
+
mod
|
28
|
+
));
|
29
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
30
|
+
|
31
|
+
// src/components/search-input/index.ts
|
32
|
+
var search_input_exports = {};
|
33
|
+
__export(search_input_exports, {
|
34
|
+
SearchInput: () => SearchInput
|
35
|
+
});
|
36
|
+
module.exports = __toCommonJS(search_input_exports);
|
37
|
+
|
38
|
+
// src/components/search-input/search-input.tsx
|
39
|
+
var import_react2 = __toESM(require("react"), 1);
|
40
|
+
var import_react3 = require("@chakra-ui/react");
|
41
|
+
var import_utils = require("@saas-ui/core/utils");
|
42
|
+
|
43
|
+
// src/components/icons/create-icon.tsx
|
44
|
+
var import_react = require("@chakra-ui/react");
|
45
|
+
var createIcon = (props) => {
|
46
|
+
return (0, import_react.createIcon)({
|
47
|
+
viewBox: "0 0 24 24",
|
48
|
+
defaultProps: {
|
49
|
+
fill: "none",
|
50
|
+
stroke: "currentColor",
|
51
|
+
strokeWidth: "2",
|
52
|
+
strokeLinecap: "round",
|
53
|
+
strokeLinejoin: "round"
|
54
|
+
},
|
55
|
+
...props
|
56
|
+
});
|
57
|
+
};
|
58
|
+
|
59
|
+
// src/components/icons/icons.tsx
|
60
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
61
|
+
var ChevronUpIcon = createIcon({
|
62
|
+
displayName: "ChevronUpIcon",
|
63
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "18 15 12 9 6 15" })
|
64
|
+
});
|
65
|
+
var ChevronDownIcon = createIcon({
|
66
|
+
displayName: "ChevronDownIcon",
|
67
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "6 9 12 15 18 9" })
|
68
|
+
});
|
69
|
+
var ChevronLeftIcon = createIcon({
|
70
|
+
displayName: "ChevronLeftIcon",
|
71
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "15 18 9 12 15 6" })
|
72
|
+
});
|
73
|
+
var ChevronRightIcon = createIcon({
|
74
|
+
displayName: "ChevronRightIcon",
|
75
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "9 18 15 12 9 6" })
|
76
|
+
});
|
77
|
+
var HamburgerIcon = createIcon({
|
78
|
+
displayName: "ChevronDownIcon",
|
79
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { fill: "none", children: [
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "12", x2: "21", y2: "12" }),
|
81
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
|
82
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "18", x2: "21", y2: "18" })
|
83
|
+
] })
|
84
|
+
});
|
85
|
+
var CloseIcon = createIcon({
|
86
|
+
displayName: "CloseIcon",
|
87
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
88
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
89
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
90
|
+
] })
|
91
|
+
});
|
92
|
+
var FilterIcon = createIcon({
|
93
|
+
displayName: "FilterIcon",
|
94
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
95
|
+
});
|
96
|
+
var CalendarIcon = createIcon({
|
97
|
+
displayName: "CalendarIcon",
|
98
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
99
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", ry: "2" }),
|
100
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "16", y1: "2", x2: "16", y2: "6" }),
|
101
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "8", y1: "2", x2: "8", y2: "6" }),
|
102
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "10", x2: "21", y2: "10" })
|
103
|
+
] })
|
104
|
+
});
|
105
|
+
var PlusIcon = createIcon({
|
106
|
+
displayName: "PlusIcon",
|
107
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
108
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
|
109
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", y1: "12", x2: "19", y2: "12" })
|
110
|
+
] })
|
111
|
+
});
|
112
|
+
var MinusIcon = createIcon({
|
113
|
+
displayName: "MinusIcon",
|
114
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", y1: "12", x2: "19", y2: "12" }) })
|
115
|
+
});
|
116
|
+
var ViewOffIcon = createIcon({
|
117
|
+
displayName: "ViewOffIcon",
|
118
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
119
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }),
|
120
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
121
|
+
] })
|
122
|
+
});
|
123
|
+
var ViewIcon = createIcon({
|
124
|
+
displayName: "ViewOffIcon",
|
125
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
126
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }),
|
127
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
128
|
+
] })
|
129
|
+
});
|
130
|
+
var SearchIcon = createIcon({
|
131
|
+
displayName: "SearchIcon",
|
132
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
133
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
|
134
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
|
135
|
+
] })
|
136
|
+
});
|
137
|
+
var CheckIcon = createIcon({
|
138
|
+
displayName: "CheckIcon",
|
139
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "20 6 9 17 4 12" }) })
|
140
|
+
});
|
141
|
+
|
142
|
+
// src/components/search-input/search-input.tsx
|
143
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
144
|
+
var SearchInput = (0, import_react2.forwardRef)(
|
145
|
+
(props, ref) => {
|
146
|
+
const {
|
147
|
+
placeholder = "Search",
|
148
|
+
value: valueProp,
|
149
|
+
defaultValue: defaultValueProp,
|
150
|
+
size,
|
151
|
+
variant,
|
152
|
+
width = "full",
|
153
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(SearchIcon, {}),
|
154
|
+
resetIcon,
|
155
|
+
endElement: endElementProp,
|
156
|
+
onChange: onChangeProp,
|
157
|
+
onReset: onResetProp,
|
158
|
+
onKeyDown: onKeyDownProp,
|
159
|
+
disabled,
|
160
|
+
...inputProps
|
161
|
+
} = props;
|
162
|
+
const inputRef = import_react2.default.useRef(null);
|
163
|
+
const [value, setValue] = (0, import_react3.useControllableState)({
|
164
|
+
value: valueProp,
|
165
|
+
defaultValue: defaultValueProp
|
166
|
+
});
|
167
|
+
const onChange = import_react2.default.useCallback(
|
168
|
+
(e) => {
|
169
|
+
setValue(e.target.value);
|
170
|
+
},
|
171
|
+
[setValue]
|
172
|
+
);
|
173
|
+
const onKeyDown = import_react2.default.useCallback(
|
174
|
+
(event) => {
|
175
|
+
if (event.key === "Escape") {
|
176
|
+
setValue("");
|
177
|
+
onReset();
|
178
|
+
}
|
179
|
+
},
|
180
|
+
[onResetProp, setValue]
|
181
|
+
);
|
182
|
+
const onReset = () => {
|
183
|
+
var _a;
|
184
|
+
setValue("");
|
185
|
+
onResetProp == null ? void 0 : onResetProp();
|
186
|
+
(_a = inputRef.current) == null ? void 0 : _a.focus();
|
187
|
+
};
|
188
|
+
const showReset = value && !props.disabled;
|
189
|
+
const endElement = showReset ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(SearchInputResetButton, { size, children: resetIcon }) : endElementProp;
|
190
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_react3.Group, { width, children: [
|
191
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
192
|
+
import_react3.InputElement,
|
193
|
+
{
|
194
|
+
placement: "start",
|
195
|
+
px: "0",
|
196
|
+
aspectRatio: "9/10",
|
197
|
+
fontSize: size,
|
198
|
+
children: icon
|
199
|
+
}
|
200
|
+
),
|
201
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
202
|
+
import_react3.Input,
|
203
|
+
{
|
204
|
+
type: "text",
|
205
|
+
placeholder,
|
206
|
+
variant,
|
207
|
+
size,
|
208
|
+
value,
|
209
|
+
disabled,
|
210
|
+
ref: (0, import_react3.mergeRefs)(ref, inputRef),
|
211
|
+
onChange: (0, import_utils.callAll)(onChange, onChangeProp),
|
212
|
+
onKeyDown: (0, import_utils.callAll)(onKeyDown, onKeyDownProp),
|
213
|
+
ps: "calc(var(--input-height) - var(--input-height) / 10)",
|
214
|
+
pe: "calc(var(--input-height) - var(--input-height) / 10)",
|
215
|
+
...inputProps
|
216
|
+
}
|
217
|
+
),
|
218
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_react3.InputElement, { placement: "end", children: endElement })
|
219
|
+
] });
|
220
|
+
}
|
221
|
+
);
|
222
|
+
var SearchInputResetButton = (0, import_react2.forwardRef)(
|
223
|
+
(props, ref) => {
|
224
|
+
const { children = /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(CloseIcon, {}), ...rest } = props;
|
225
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
226
|
+
import_react3.IconButton,
|
227
|
+
{
|
228
|
+
ref,
|
229
|
+
variant: "ghost",
|
230
|
+
"aria-label": "Reset search",
|
231
|
+
me: "-2",
|
232
|
+
aspectRatio: "square",
|
233
|
+
height: "calc(100% - {spacing.2})",
|
234
|
+
...rest,
|
235
|
+
children
|
236
|
+
}
|
237
|
+
);
|
238
|
+
}
|
239
|
+
);
|
240
|
+
SearchInput.displayName = "SearchInput";
|
241
|
+
// Annotate the CommonJS export names for ESM import in node:
|
242
|
+
0 && (module.exports = {
|
243
|
+
SearchInput
|
244
|
+
});
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import react__default from 'react';
|
2
|
+
import { InputProps } from '@chakra-ui/react';
|
3
|
+
|
4
|
+
interface SearchInputProps extends InputProps {
|
5
|
+
value?: string;
|
6
|
+
defaultValue?: string;
|
7
|
+
placeholder?: string;
|
8
|
+
icon?: react__default.ReactElement;
|
9
|
+
resetIcon?: react__default.ReactElement;
|
10
|
+
endElement?: react__default.ReactElement;
|
11
|
+
onReset?: () => void;
|
12
|
+
}
|
13
|
+
declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
14
|
+
|
15
|
+
export { SearchInput, type SearchInputProps };
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import react__default from 'react';
|
2
|
+
import { InputProps } from '@chakra-ui/react';
|
3
|
+
|
4
|
+
interface SearchInputProps extends InputProps {
|
5
|
+
value?: string;
|
6
|
+
defaultValue?: string;
|
7
|
+
placeholder?: string;
|
8
|
+
icon?: react__default.ReactElement;
|
9
|
+
resetIcon?: react__default.ReactElement;
|
10
|
+
endElement?: react__default.ReactElement;
|
11
|
+
onReset?: () => void;
|
12
|
+
}
|
13
|
+
declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
14
|
+
|
15
|
+
export { SearchInput, type SearchInputProps };
|
@@ -0,0 +1,120 @@
|
|
1
|
+
'use client'
|
2
|
+
import "../../chunk-KTLWEUNW.js";
|
3
|
+
import {
|
4
|
+
CloseIcon,
|
5
|
+
SearchIcon
|
6
|
+
} from "../../chunk-VDXTEASE.js";
|
7
|
+
import "../../chunk-RTMS5TJN.js";
|
8
|
+
|
9
|
+
// src/components/search-input/search-input.tsx
|
10
|
+
import React, { forwardRef } from "react";
|
11
|
+
import {
|
12
|
+
Group,
|
13
|
+
IconButton,
|
14
|
+
Input,
|
15
|
+
InputElement,
|
16
|
+
mergeRefs,
|
17
|
+
useControllableState
|
18
|
+
} from "@chakra-ui/react";
|
19
|
+
import { callAll } from "@saas-ui/core/utils";
|
20
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
21
|
+
var SearchInput = forwardRef(
|
22
|
+
(props, ref) => {
|
23
|
+
const {
|
24
|
+
placeholder = "Search",
|
25
|
+
value: valueProp,
|
26
|
+
defaultValue: defaultValueProp,
|
27
|
+
size,
|
28
|
+
variant,
|
29
|
+
width = "full",
|
30
|
+
icon = /* @__PURE__ */ jsx(SearchIcon, {}),
|
31
|
+
resetIcon,
|
32
|
+
endElement: endElementProp,
|
33
|
+
onChange: onChangeProp,
|
34
|
+
onReset: onResetProp,
|
35
|
+
onKeyDown: onKeyDownProp,
|
36
|
+
disabled,
|
37
|
+
...inputProps
|
38
|
+
} = props;
|
39
|
+
const inputRef = React.useRef(null);
|
40
|
+
const [value, setValue] = useControllableState({
|
41
|
+
value: valueProp,
|
42
|
+
defaultValue: defaultValueProp
|
43
|
+
});
|
44
|
+
const onChange = React.useCallback(
|
45
|
+
(e) => {
|
46
|
+
setValue(e.target.value);
|
47
|
+
},
|
48
|
+
[setValue]
|
49
|
+
);
|
50
|
+
const onKeyDown = React.useCallback(
|
51
|
+
(event) => {
|
52
|
+
if (event.key === "Escape") {
|
53
|
+
setValue("");
|
54
|
+
onReset();
|
55
|
+
}
|
56
|
+
},
|
57
|
+
[onResetProp, setValue]
|
58
|
+
);
|
59
|
+
const onReset = () => {
|
60
|
+
var _a;
|
61
|
+
setValue("");
|
62
|
+
onResetProp == null ? void 0 : onResetProp();
|
63
|
+
(_a = inputRef.current) == null ? void 0 : _a.focus();
|
64
|
+
};
|
65
|
+
const showReset = value && !props.disabled;
|
66
|
+
const endElement = showReset ? /* @__PURE__ */ jsx(SearchInputResetButton, { size, children: resetIcon }) : endElementProp;
|
67
|
+
return /* @__PURE__ */ jsxs(Group, { width, children: [
|
68
|
+
/* @__PURE__ */ jsx(
|
69
|
+
InputElement,
|
70
|
+
{
|
71
|
+
placement: "start",
|
72
|
+
px: "0",
|
73
|
+
aspectRatio: "9/10",
|
74
|
+
fontSize: size,
|
75
|
+
children: icon
|
76
|
+
}
|
77
|
+
),
|
78
|
+
/* @__PURE__ */ jsx(
|
79
|
+
Input,
|
80
|
+
{
|
81
|
+
type: "text",
|
82
|
+
placeholder,
|
83
|
+
variant,
|
84
|
+
size,
|
85
|
+
value,
|
86
|
+
disabled,
|
87
|
+
ref: mergeRefs(ref, inputRef),
|
88
|
+
onChange: callAll(onChange, onChangeProp),
|
89
|
+
onKeyDown: callAll(onKeyDown, onKeyDownProp),
|
90
|
+
ps: "calc(var(--input-height) - var(--input-height) / 10)",
|
91
|
+
pe: "calc(var(--input-height) - var(--input-height) / 10)",
|
92
|
+
...inputProps
|
93
|
+
}
|
94
|
+
),
|
95
|
+
/* @__PURE__ */ jsx(InputElement, { placement: "end", children: endElement })
|
96
|
+
] });
|
97
|
+
}
|
98
|
+
);
|
99
|
+
var SearchInputResetButton = forwardRef(
|
100
|
+
(props, ref) => {
|
101
|
+
const { children = /* @__PURE__ */ jsx(CloseIcon, {}), ...rest } = props;
|
102
|
+
return /* @__PURE__ */ jsx(
|
103
|
+
IconButton,
|
104
|
+
{
|
105
|
+
ref,
|
106
|
+
variant: "ghost",
|
107
|
+
"aria-label": "Reset search",
|
108
|
+
me: "-2",
|
109
|
+
aspectRatio: "square",
|
110
|
+
height: "calc(100% - {spacing.2})",
|
111
|
+
...rest,
|
112
|
+
children
|
113
|
+
}
|
114
|
+
);
|
115
|
+
}
|
116
|
+
);
|
117
|
+
SearchInput.displayName = "SearchInput";
|
118
|
+
export {
|
119
|
+
SearchInput
|
120
|
+
};
|
@@ -0,0 +1,233 @@
|
|
1
|
+
'use client'
|
2
|
+
"use strict";
|
3
|
+
var __defProp = Object.defineProperty;
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
7
|
+
var __export = (target, all) => {
|
8
|
+
for (var name in all)
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
10
|
+
};
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
13
|
+
for (let key of __getOwnPropNames(from))
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
16
|
+
}
|
17
|
+
return to;
|
18
|
+
};
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
20
|
+
|
21
|
+
// src/components/select/index.ts
|
22
|
+
var select_exports = {};
|
23
|
+
__export(select_exports, {
|
24
|
+
Select: () => namespace_exports
|
25
|
+
});
|
26
|
+
module.exports = __toCommonJS(select_exports);
|
27
|
+
|
28
|
+
// src/components/select/namespace.ts
|
29
|
+
var namespace_exports = {};
|
30
|
+
__export(namespace_exports, {
|
31
|
+
Content: () => SelectContent,
|
32
|
+
Item: () => SelectItem,
|
33
|
+
ItemGroup: () => SelectItemGroup,
|
34
|
+
ItemText: () => SelectItemText,
|
35
|
+
Label: () => SelectLabel,
|
36
|
+
Root: () => SelectRoot,
|
37
|
+
Trigger: () => SelectTrigger,
|
38
|
+
ValueText: () => SelectValueText
|
39
|
+
});
|
40
|
+
|
41
|
+
// src/components/select/select.tsx
|
42
|
+
var import_react4 = require("react");
|
43
|
+
var import_react5 = require("@chakra-ui/react");
|
44
|
+
|
45
|
+
// src/components/close-button/close-button.tsx
|
46
|
+
var import_react2 = require("react");
|
47
|
+
var import_react3 = require("@chakra-ui/react");
|
48
|
+
|
49
|
+
// src/components/icons/create-icon.tsx
|
50
|
+
var import_react = require("@chakra-ui/react");
|
51
|
+
var createIcon = (props) => {
|
52
|
+
return (0, import_react.createIcon)({
|
53
|
+
viewBox: "0 0 24 24",
|
54
|
+
defaultProps: {
|
55
|
+
fill: "none",
|
56
|
+
stroke: "currentColor",
|
57
|
+
strokeWidth: "2",
|
58
|
+
strokeLinecap: "round",
|
59
|
+
strokeLinejoin: "round"
|
60
|
+
},
|
61
|
+
...props
|
62
|
+
});
|
63
|
+
};
|
64
|
+
|
65
|
+
// src/components/icons/icons.tsx
|
66
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
67
|
+
var ChevronUpIcon = createIcon({
|
68
|
+
displayName: "ChevronUpIcon",
|
69
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "18 15 12 9 6 15" })
|
70
|
+
});
|
71
|
+
var ChevronDownIcon = createIcon({
|
72
|
+
displayName: "ChevronDownIcon",
|
73
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "6 9 12 15 18 9" })
|
74
|
+
});
|
75
|
+
var ChevronLeftIcon = createIcon({
|
76
|
+
displayName: "ChevronLeftIcon",
|
77
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "15 18 9 12 15 6" })
|
78
|
+
});
|
79
|
+
var ChevronRightIcon = createIcon({
|
80
|
+
displayName: "ChevronRightIcon",
|
81
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "9 18 15 12 9 6" })
|
82
|
+
});
|
83
|
+
var HamburgerIcon = createIcon({
|
84
|
+
displayName: "ChevronDownIcon",
|
85
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { fill: "none", children: [
|
86
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "12", x2: "21", y2: "12" }),
|
87
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
|
88
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "18", x2: "21", y2: "18" })
|
89
|
+
] })
|
90
|
+
});
|
91
|
+
var CloseIcon = createIcon({
|
92
|
+
displayName: "CloseIcon",
|
93
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
94
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
95
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
96
|
+
] })
|
97
|
+
});
|
98
|
+
var FilterIcon = createIcon({
|
99
|
+
displayName: "FilterIcon",
|
100
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
101
|
+
});
|
102
|
+
var CalendarIcon = createIcon({
|
103
|
+
displayName: "CalendarIcon",
|
104
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
105
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", ry: "2" }),
|
106
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "16", y1: "2", x2: "16", y2: "6" }),
|
107
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "8", y1: "2", x2: "8", y2: "6" }),
|
108
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", y1: "10", x2: "21", y2: "10" })
|
109
|
+
] })
|
110
|
+
});
|
111
|
+
var PlusIcon = createIcon({
|
112
|
+
displayName: "PlusIcon",
|
113
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
114
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
|
115
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", y1: "12", x2: "19", y2: "12" })
|
116
|
+
] })
|
117
|
+
});
|
118
|
+
var MinusIcon = createIcon({
|
119
|
+
displayName: "MinusIcon",
|
120
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", y1: "12", x2: "19", y2: "12" }) })
|
121
|
+
});
|
122
|
+
var ViewOffIcon = createIcon({
|
123
|
+
displayName: "ViewOffIcon",
|
124
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
125
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }),
|
126
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
127
|
+
] })
|
128
|
+
});
|
129
|
+
var ViewIcon = createIcon({
|
130
|
+
displayName: "ViewOffIcon",
|
131
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
132
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }),
|
133
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
134
|
+
] })
|
135
|
+
});
|
136
|
+
var SearchIcon = createIcon({
|
137
|
+
displayName: "SearchIcon",
|
138
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
139
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
|
140
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
|
141
|
+
] })
|
142
|
+
});
|
143
|
+
var CheckIcon = createIcon({
|
144
|
+
displayName: "CheckIcon",
|
145
|
+
path: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polyline", { points: "20 6 9 17 4 12" }) })
|
146
|
+
});
|
147
|
+
|
148
|
+
// src/components/close-button/close-button.tsx
|
149
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
150
|
+
var CloseButton = (0, import_react2.forwardRef)(
|
151
|
+
function CloseButton2(props, ref) {
|
152
|
+
var _a;
|
153
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_react3.IconButton, { variant: "ghost", "aria-label": "Close", ref, ...props, children: (_a = props.children) != null ? _a : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(CloseIcon, {}) });
|
154
|
+
}
|
155
|
+
);
|
156
|
+
|
157
|
+
// src/components/select/select.tsx
|
158
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
159
|
+
var SelectTrigger = (0, import_react4.forwardRef)(
|
160
|
+
function SelectTrigger2(props, ref) {
|
161
|
+
const { children, clearable, ...rest } = props;
|
162
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react5.Select.Control, { ...rest, children: [
|
163
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.Trigger, { ref, children }),
|
164
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react5.Select.IndicatorGroup, { children: [
|
165
|
+
clearable && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SelectClearTrigger, {}),
|
166
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.Indicator, {})
|
167
|
+
] })
|
168
|
+
] });
|
169
|
+
}
|
170
|
+
);
|
171
|
+
var SelectClearTrigger = (0, import_react4.forwardRef)(function SelectClearTrigger2(props, ref) {
|
172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.ClearTrigger, { asChild: true, ...props, ref, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
173
|
+
CloseButton,
|
174
|
+
{
|
175
|
+
size: "xs",
|
176
|
+
variant: "plain",
|
177
|
+
focusVisibleRing: "inside",
|
178
|
+
focusRingWidth: "2px",
|
179
|
+
pointerEvents: "auto"
|
180
|
+
}
|
181
|
+
) });
|
182
|
+
});
|
183
|
+
var SelectContent = (0, import_react4.forwardRef)(
|
184
|
+
function SelectContent2(props, ref) {
|
185
|
+
const { portalled = true, portalRef, ...rest } = props;
|
186
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.Content, { ...rest, ref }) }) });
|
187
|
+
}
|
188
|
+
);
|
189
|
+
var SelectItem = (0, import_react4.forwardRef)(
|
190
|
+
function SelectItem2(props, ref) {
|
191
|
+
const { item, children, ...rest } = props;
|
192
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react5.Select.Item, { item, ...rest, ref, children: [
|
193
|
+
children,
|
194
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.ItemIndicator, {})
|
195
|
+
] }, item.value);
|
196
|
+
}
|
197
|
+
);
|
198
|
+
var SelectValueText = (0, import_react4.forwardRef)(function SelectValueText2(props, ref) {
|
199
|
+
const { children, ...rest } = props;
|
200
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.ValueText, { ...rest, ref, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.Context, { children: (select) => {
|
201
|
+
const items = select.selectedItems;
|
202
|
+
if (items.length === 0) return props.placeholder;
|
203
|
+
if (children) return children(items);
|
204
|
+
if (items.length === 1)
|
205
|
+
return select.collection.stringifyItem(items[0]);
|
206
|
+
return `${items.length} selected`;
|
207
|
+
} }) });
|
208
|
+
});
|
209
|
+
var SelectRoot = (0, import_react4.forwardRef)(function SelectRoot2(props, ref) {
|
210
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
211
|
+
import_react5.Select.Root,
|
212
|
+
{
|
213
|
+
...props,
|
214
|
+
ref,
|
215
|
+
positioning: { sameWidth: true, ...props.positioning }
|
216
|
+
}
|
217
|
+
);
|
218
|
+
});
|
219
|
+
var SelectItemGroup = (0, import_react4.forwardRef)(
|
220
|
+
function SelectItemGroup2(props, ref) {
|
221
|
+
const { children, label, ...rest } = props;
|
222
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react5.Select.ItemGroup, { ...rest, ref, children: [
|
223
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react5.Select.ItemGroupLabel, { children: label }),
|
224
|
+
children
|
225
|
+
] });
|
226
|
+
}
|
227
|
+
);
|
228
|
+
var SelectLabel = import_react5.Select.Label;
|
229
|
+
var SelectItemText = import_react5.Select.ItemText;
|
230
|
+
// Annotate the CommonJS export names for ESM import in node:
|
231
|
+
0 && (module.exports = {
|
232
|
+
Select
|
233
|
+
});
|