@viraui/react 0.0.26 → 0.0.27
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/dist/catalog.json +102 -84
- package/dist/components/accordion/accordion-item.js +1 -1
- package/dist/components/accordion/accordion.module.js +14 -7
- package/dist/components/avatar/avatar.module.js +8 -4
- package/dist/components/avatar-group/avatar-group.js +1 -1
- package/dist/components/avatar-group/avatar-group.module.js +12 -6
- package/dist/components/basic-input/basic-input.module.js +4 -2
- package/dist/components/basic-input/field-label.module.js +4 -2
- package/dist/components/bleed/bleed.module.js +4 -2
- package/dist/components/button/button.css +1 -1
- package/dist/components/button/button.js +1 -1
- package/dist/components/button/button.module.js +8 -4
- package/dist/components/checkbox/checkbox.js +1 -1
- package/dist/components/checkbox/checkbox.module.js +16 -8
- package/dist/components/chip/chip.module.js +10 -5
- package/dist/components/clamp-text/clamp-text.module.js +4 -2
- package/dist/components/dialog/dialog-sheet.js +2 -2
- package/dist/components/dialog/dialog.module.js +24 -12
- package/dist/components/elevator/elevator.js +2 -2
- package/dist/components/fieldset/fieldset.js +1 -1
- package/dist/components/icon/icon.module.js +4 -2
- package/dist/components/index.d.ts +18 -15
- package/dist/components/linear-progress/linear-progress.js +1 -1
- package/dist/components/linear-progress/linear-progress.module.js +8 -4
- package/dist/components/masonry/masonry.module.js +6 -3
- package/dist/components/meter/meter.js +1 -1
- package/dist/components/meter/meter.module.js +8 -4
- package/dist/components/popover/popover-sheet.js +2 -2
- package/dist/components/popover/popover.module.js +10 -5
- package/dist/components/progressive-blur/progressive-blur.module.js +6 -3
- package/dist/components/radio/radio.js +1 -1
- package/dist/components/radio/radio.module.js +8 -4
- package/dist/components/select/select-group.js +1 -1
- package/dist/components/select/select-option.js +2 -2
- package/dist/components/select/select.js +4 -4
- package/dist/components/select/select.module.js +36 -18
- package/dist/components/separator/separator.module.js +4 -2
- package/dist/components/shimmer/shimmer.module.js +4 -2
- package/dist/components/skeleton/skeleton.module.js +4 -2
- package/dist/components/slider/slider.js +1 -1
- package/dist/components/slider/slider.module.js +20 -10
- package/dist/components/spinner/spinner.module.js +6 -3
- package/dist/components/stack/stack.module.js +4 -2
- package/dist/components/static-noise/static-noise.module.js +6 -3
- package/dist/components/surface/surface-radius-context.js +1 -1
- package/dist/components/surface/surface.module.js +4 -2
- package/dist/components/switch/switch.js +1 -1
- package/dist/components/switch/switch.module.js +10 -5
- package/dist/components/tabs/tabs.module.js +16 -8
- package/dist/components/text/text.module.js +4 -2
- package/dist/components/textarea/textarea.js +1 -1
- package/dist/components/textarea/textarea.module.js +10 -5
- package/dist/components/textfield/textfield.js +1 -1
- package/dist/components/textfield/textfield.module.js +14 -7
- package/dist/components/title/title.module.js +4 -2
- package/dist/components/toast/toast-banner.js +1 -1
- package/dist/components/toast/toast.css +1 -1
- package/dist/components/toast/toast.module.js +8 -4
- package/dist/components/toggle-button/index.d.ts +2 -0
- package/dist/components/toggle-button/toggle-button.d.ts +39 -0
- package/dist/components/toggle-button/toggle-button.guide.json +25 -0
- package/dist/components/toggle-button/toggle-button.js +25 -0
- package/dist/components/toggle-group/index.d.ts +2 -0
- package/dist/components/toggle-group/toggle-group.d.ts +11 -0
- package/dist/components/toggle-group/toggle-group.guide.json +26 -0
- package/dist/components/toggle-group/toggle-group.js +15 -0
- package/dist/components/tooltip/index.d.ts +6 -0
- package/dist/components/tooltip/tooltip-content.d.ts +15 -0
- package/dist/components/tooltip/tooltip-content.js +32 -0
- package/dist/components/tooltip/tooltip.css +1 -0
- package/dist/components/tooltip/tooltip.d.ts +13 -0
- package/dist/components/tooltip/tooltip.guide.json +25 -0
- package/dist/components/tooltip/tooltip.js +20 -0
- package/dist/components/tooltip/tooltip.module.js +11 -0
- package/dist/components/typewriter/index.d.ts +3 -0
- package/dist/components/typewriter/typewriter.css +1 -0
- package/dist/components/typewriter/typewriter.d.ts +68 -0
- package/dist/components/typewriter/typewriter.guide.json +39 -0
- package/dist/components/typewriter/typewriter.js +105 -0
- package/dist/components/typewriter/typewriter.module.js +18 -0
- package/dist/components/typewriter/typewriter.utils.d.ts +23 -0
- package/dist/components/typewriter/typewriter.utils.js +100 -0
- package/dist/index.js +22 -17
- package/dist/preflight.css +1 -1
- package/package.json +6 -6
|
@@ -1,36 +1,39 @@
|
|
|
1
1
|
export * from './accordion';
|
|
2
2
|
export * from './avatar';
|
|
3
3
|
export * from './avatar-group';
|
|
4
|
-
export * from './accordion';
|
|
5
4
|
export * from './bleed';
|
|
5
|
+
export * from './button';
|
|
6
|
+
export * from './checkbox';
|
|
6
7
|
export * from './chip';
|
|
7
|
-
export * from './dialog';
|
|
8
8
|
export * from './clamp-text';
|
|
9
|
+
export * from './dialog';
|
|
9
10
|
export * from './elevator';
|
|
10
|
-
export * from './
|
|
11
|
+
export * from './fieldset';
|
|
12
|
+
export * from './icon';
|
|
11
13
|
export * from './icon-button';
|
|
12
14
|
export * from './linear-progress';
|
|
13
|
-
export * from './meter';
|
|
14
15
|
export * from './masonry';
|
|
16
|
+
export * from './meter';
|
|
15
17
|
export * from './popover';
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './textarea';
|
|
18
|
-
export * from './slider';
|
|
19
|
-
export * from './switch';
|
|
20
|
-
export * from './checkbox';
|
|
21
|
-
export * from './fieldset';
|
|
18
|
+
export * from './progressive-blur';
|
|
22
19
|
export * from './radio';
|
|
23
20
|
export * from './select';
|
|
24
21
|
export * from './separator';
|
|
25
22
|
export * from './shimmer';
|
|
26
|
-
export * from './icon';
|
|
27
23
|
export * from './skeleton';
|
|
24
|
+
export * from './slider';
|
|
25
|
+
export * from './spinner';
|
|
28
26
|
export * from './stack';
|
|
27
|
+
export * from './static-noise';
|
|
29
28
|
export * from './surface';
|
|
29
|
+
export * from './switch';
|
|
30
30
|
export * from './tabs';
|
|
31
|
-
export * from './toast';
|
|
32
|
-
export * from './spinner';
|
|
33
|
-
export * from './static-noise';
|
|
34
|
-
export * from './progressive-blur';
|
|
35
31
|
export * from './text';
|
|
32
|
+
export * from './textarea';
|
|
33
|
+
export * from './textfield';
|
|
36
34
|
export * from './title';
|
|
35
|
+
export * from './toast';
|
|
36
|
+
export * from './toggle-button';
|
|
37
|
+
export * from './toggle-group';
|
|
38
|
+
export * from './typewriter';
|
|
39
|
+
export * from './tooltip';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import './linear-progress.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { Text } from "../text/text.js";
|
|
6
5
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
6
|
+
import { Stack } from "../stack/stack.js";
|
|
7
7
|
import linear_progress_module_default from "./linear-progress.module.js";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
9
|
import { Progress } from "@base-ui/react/progress";
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
//#region src/components/linear-progress/linear-progress.module.css
|
|
2
|
+
var LinearProgress = "viraui__linear-progress-module__LinearProgress_-KN0j";
|
|
3
|
+
var Track = "viraui__linear-progress-module__Track_qUz8P";
|
|
4
|
+
var Indicator = "viraui__linear-progress-module__Indicator_maaZF";
|
|
1
5
|
var linear_progress_module_default = {
|
|
2
|
-
LinearProgress
|
|
6
|
+
LinearProgress,
|
|
3
7
|
"linear-progress-indeterminate": "viraui__linear-progress-module__linear-progress-indeterminate_g0cSO",
|
|
4
|
-
Track
|
|
5
|
-
Indicator
|
|
8
|
+
Track,
|
|
9
|
+
Indicator
|
|
6
10
|
};
|
|
7
11
|
//#endregion
|
|
8
|
-
export { linear_progress_module_default as default };
|
|
12
|
+
export { Indicator, LinearProgress, Track, linear_progress_module_default as default };
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
//#region src/components/masonry/masonry.module.css
|
|
2
|
+
var Masonry = "viraui__masonry-module__Masonry_l7c8U";
|
|
3
|
+
var Item = "viraui__masonry-module__Item_ywXwo";
|
|
1
4
|
var masonry_module_default = {
|
|
2
|
-
Masonry
|
|
3
|
-
Item
|
|
5
|
+
Masonry,
|
|
6
|
+
Item
|
|
4
7
|
};
|
|
5
8
|
//#endregion
|
|
6
|
-
export { masonry_module_default as default };
|
|
9
|
+
export { Item, Masonry, masonry_module_default as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import './meter.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { Text } from "../text/text.js";
|
|
6
5
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
6
|
+
import { Stack } from "../stack/stack.js";
|
|
7
7
|
import meter_module_default from "./meter.module.js";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
9
|
import { Meter } from "@base-ui/react";
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
//#region src/components/meter/meter.module.css
|
|
2
|
+
var Meter = "viraui__meter-module__Meter_YRI7d";
|
|
3
|
+
var Track = "viraui__meter-module__Track_uF9wy";
|
|
4
|
+
var Indicator = "viraui__meter-module__Indicator_dNjqU";
|
|
1
5
|
var meter_module_default = {
|
|
2
|
-
Meter
|
|
3
|
-
Track
|
|
4
|
-
Indicator
|
|
6
|
+
Meter,
|
|
7
|
+
Track,
|
|
8
|
+
Indicator
|
|
5
9
|
};
|
|
6
10
|
//#endregion
|
|
7
|
-
export { meter_module_default as default };
|
|
11
|
+
export { Indicator, Meter, Track, meter_module_default as default };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { Text } from "../text/text.js";
|
|
1
2
|
import { Stack } from "../stack/stack.js";
|
|
3
|
+
import { Icon } from "../icon/icon.js";
|
|
2
4
|
import { IconButton } from "../icon-button/icon-button.js";
|
|
3
|
-
import { Text } from "../text/text.js";
|
|
4
5
|
import popover_module_default from "./popover.module.js";
|
|
5
|
-
import { Icon } from "../icon/icon.js";
|
|
6
6
|
import { Surface } from "../surface/surface.js";
|
|
7
7
|
import { Title } from "../title/title.js";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
//#region src/components/popover/popover.module.css
|
|
2
|
+
var Sheet = "viraui__popover-module__Sheet_4x-7H";
|
|
3
|
+
var Popup = "viraui__popover-module__Popup_pJyIh";
|
|
4
|
+
var Viewport = "viraui__popover-module__Viewport_KrjBC";
|
|
5
|
+
var CloseButton = "viraui__popover-module__CloseButton_YOe2L";
|
|
1
6
|
var popover_module_default = {
|
|
2
|
-
Sheet
|
|
3
|
-
Popup
|
|
4
|
-
Viewport
|
|
5
|
-
CloseButton
|
|
7
|
+
Sheet,
|
|
8
|
+
Popup,
|
|
9
|
+
Viewport,
|
|
10
|
+
CloseButton
|
|
6
11
|
};
|
|
7
12
|
//#endregion
|
|
8
|
-
export { popover_module_default as default };
|
|
13
|
+
export { CloseButton, Popup, Sheet, Viewport, popover_module_default as default };
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
//#region src/components/progressive-blur/progressive-blur.module.css
|
|
2
|
+
var ProgressiveBlur = "viraui__progressive-blur-module__ProgressiveBlur_eIxTK";
|
|
3
|
+
var Layer = "viraui__progressive-blur-module__Layer_zbzMS";
|
|
1
4
|
var progressive_blur_module_default = {
|
|
2
|
-
ProgressiveBlur
|
|
3
|
-
Layer
|
|
5
|
+
ProgressiveBlur,
|
|
6
|
+
Layer
|
|
4
7
|
};
|
|
5
8
|
//#endregion
|
|
6
|
-
export { progressive_blur_module_default as default };
|
|
9
|
+
export { Layer, ProgressiveBlur, progressive_blur_module_default as default };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import './radio.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
|
-
import { Stack } from "../stack/stack.js";
|
|
4
3
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
5
4
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
5
|
+
import { Stack } from "../stack/stack.js";
|
|
6
6
|
import radio_module_default from "./radio.module.js";
|
|
7
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
8
8
|
import { Field } from "@base-ui/react/field";
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
//#region src/components/radio/radio.module.css
|
|
2
|
+
var RadioRoot = "viraui__radio-module__RadioRoot_3uvvn";
|
|
3
|
+
var Indicator = "viraui__radio-module__Indicator_Ecavw";
|
|
4
|
+
var Disk = "viraui__radio-module__Disk_pV-Q1";
|
|
1
5
|
var radio_module_default = {
|
|
2
|
-
RadioRoot
|
|
3
|
-
Indicator
|
|
4
|
-
Disk
|
|
6
|
+
RadioRoot,
|
|
7
|
+
Indicator,
|
|
8
|
+
Disk
|
|
5
9
|
};
|
|
6
10
|
//#endregion
|
|
7
|
-
export { radio_module_default as default };
|
|
11
|
+
export { Disk, Indicator, RadioRoot, radio_module_default as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { clsx } from "../../core/clsx.js";
|
|
2
|
-
import { Stack } from "../stack/stack.js";
|
|
3
2
|
import { Text } from "../text/text.js";
|
|
3
|
+
import { Stack } from "../stack/stack.js";
|
|
4
4
|
import select_module_default from "./select.module.js";
|
|
5
5
|
import { SelectIndicatorSlot } from "./select-indicator-slot.js";
|
|
6
6
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { clsx } from "../../core/clsx.js";
|
|
2
|
-
import { Stack } from "../stack/stack.js";
|
|
3
2
|
import { Text } from "../text/text.js";
|
|
3
|
+
import { Stack } from "../stack/stack.js";
|
|
4
|
+
import { Icon } from "../icon/icon.js";
|
|
4
5
|
import select_module_default from "./select.module.js";
|
|
5
6
|
import { SelectIndicatorSlot } from "./select-indicator-slot.js";
|
|
6
|
-
import { Icon } from "../icon/icon.js";
|
|
7
7
|
import { Surface } from "../surface/surface.js";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
9
|
import { Select } from "@base-ui/react";
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
import './select.css';
|
|
3
3
|
import { clsx } from "../../core/clsx.js";
|
|
4
4
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
5
|
-
import { Stack } from "../stack/stack.js";
|
|
6
|
-
import { Elevator } from "../elevator/elevator.js";
|
|
7
|
-
import { IconButton } from "../icon-button/icon-button.js";
|
|
8
5
|
import { Text } from "../text/text.js";
|
|
9
6
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
10
7
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
8
|
+
import { Stack } from "../stack/stack.js";
|
|
9
|
+
import { Elevator } from "../elevator/elevator.js";
|
|
10
|
+
import { Icon } from "../icon/icon.js";
|
|
11
|
+
import { IconButton } from "../icon-button/icon-button.js";
|
|
11
12
|
import select_module_default from "./select.module.js";
|
|
12
13
|
import { SelectGroup } from "./select-group.js";
|
|
13
14
|
import { SelectOption } from "./select-option.js";
|
|
14
15
|
import { SelectSeparator } from "./select-separator.js";
|
|
15
|
-
import { Icon } from "../icon/icon.js";
|
|
16
16
|
import { Surface } from "../surface/surface.js";
|
|
17
17
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
18
18
|
import { useId } from "react";
|
|
@@ -1,21 +1,39 @@
|
|
|
1
|
+
//#region src/components/select/select.module.css
|
|
2
|
+
var Select = "viraui__select-module__Select_eXv4Y";
|
|
3
|
+
var Label = "viraui__select-module__Label_-Y1fR";
|
|
4
|
+
var Trigger = "viraui__select-module__Trigger_-wBsg";
|
|
5
|
+
var Value = "viraui__select-module__Value_uWHPX";
|
|
6
|
+
var Icon = "viraui__select-module__Icon_EOwki";
|
|
7
|
+
var Description = "viraui__select-module__Description_OmwmV";
|
|
8
|
+
var SelectPopup = "viraui__select-module__SelectPopup_UzGXL";
|
|
9
|
+
var ScrollArrow = "viraui__select-module__ScrollArrow_kHlEi";
|
|
10
|
+
var ScrollButton = "viraui__select-module__ScrollButton_sHBOa";
|
|
11
|
+
var ScrollArrowUp = "viraui__select-module__ScrollArrowUp_DGXS-";
|
|
12
|
+
var ScrollArrowDown = "viraui__select-module__ScrollArrowDown_vhJy0";
|
|
13
|
+
var List = "viraui__select-module__List_jdUWx";
|
|
14
|
+
var OptionText = "viraui__select-module__OptionText_UynBD";
|
|
15
|
+
var Option = "viraui__select-module__Option_KgYqz";
|
|
16
|
+
var Indicator = "viraui__select-module__Indicator_YNUuz";
|
|
17
|
+
var Group = "viraui__select-module__Group_xzkuA";
|
|
18
|
+
var Separator = "viraui__select-module__Separator_Q-ri9";
|
|
1
19
|
var select_module_default = {
|
|
2
|
-
Select
|
|
3
|
-
Label
|
|
4
|
-
Trigger
|
|
5
|
-
Value
|
|
6
|
-
Icon
|
|
7
|
-
Description
|
|
8
|
-
SelectPopup
|
|
9
|
-
ScrollArrow
|
|
10
|
-
ScrollButton
|
|
11
|
-
ScrollArrowUp
|
|
12
|
-
ScrollArrowDown
|
|
13
|
-
List
|
|
14
|
-
OptionText
|
|
15
|
-
Option
|
|
16
|
-
Indicator
|
|
17
|
-
Group
|
|
18
|
-
Separator
|
|
20
|
+
Select,
|
|
21
|
+
Label,
|
|
22
|
+
Trigger,
|
|
23
|
+
Value,
|
|
24
|
+
Icon,
|
|
25
|
+
Description,
|
|
26
|
+
SelectPopup,
|
|
27
|
+
ScrollArrow,
|
|
28
|
+
ScrollButton,
|
|
29
|
+
ScrollArrowUp,
|
|
30
|
+
ScrollArrowDown,
|
|
31
|
+
List,
|
|
32
|
+
OptionText,
|
|
33
|
+
Option,
|
|
34
|
+
Indicator,
|
|
35
|
+
Group,
|
|
36
|
+
Separator
|
|
19
37
|
};
|
|
20
38
|
//#endregion
|
|
21
|
-
export { select_module_default as default };
|
|
39
|
+
export { Description, Group, Icon, Indicator, Label, List, Option, OptionText, ScrollArrow, ScrollArrowDown, ScrollArrowUp, ScrollButton, Select, SelectPopup, Separator, Trigger, Value, select_module_default as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/components/separator/separator.module.css
|
|
2
|
+
var Line = "viraui__separator-module__Line_xXOe9";
|
|
3
|
+
var separator_module_default = { Line };
|
|
2
4
|
//#endregion
|
|
3
|
-
export { separator_module_default as default };
|
|
5
|
+
export { Line, separator_module_default as default };
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
//#region src/components/shimmer/shimmer.module.css
|
|
2
|
+
var Shimmer = "viraui__shimmer-module__Shimmer_1k-ZM";
|
|
1
3
|
var shimmer_module_default = {
|
|
2
|
-
Shimmer
|
|
4
|
+
Shimmer,
|
|
3
5
|
"shimmer-slide": "viraui__shimmer-module__shimmer-slide_V1znC"
|
|
4
6
|
};
|
|
5
7
|
//#endregion
|
|
6
|
-
export { shimmer_module_default as default };
|
|
8
|
+
export { Shimmer, shimmer_module_default as default };
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
//#region src/components/skeleton/skeleton.module.css
|
|
2
|
+
var Skeleton = "viraui__skeleton-module__Skeleton_pn7Xk";
|
|
1
3
|
var skeleton_module_default = {
|
|
2
|
-
Skeleton
|
|
4
|
+
Skeleton,
|
|
3
5
|
"skeleton-fade": "viraui__skeleton-module__skeleton-fade_XHkG4"
|
|
4
6
|
};
|
|
5
7
|
//#endregion
|
|
6
|
-
export { skeleton_module_default as default };
|
|
8
|
+
export { Skeleton, skeleton_module_default as default };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import './slider.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { Text } from "../text/text.js";
|
|
6
5
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
7
6
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
7
|
+
import { Stack } from "../stack/stack.js";
|
|
8
8
|
import slider_module_default from "./slider.module.js";
|
|
9
9
|
import { SliderControl } from "./slider-control.js";
|
|
10
10
|
import { isRangeSlider } from "./slider-utils.js";
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
+
//#region src/components/slider/slider.module.css
|
|
2
|
+
var Slider = "viraui__slider-module__Slider_vDNlm";
|
|
3
|
+
var Label = "viraui__slider-module__Label_eQQHf";
|
|
4
|
+
var SliderRoot = "viraui__slider-module__SliderRoot_4JScw";
|
|
5
|
+
var SliderHeader = "viraui__slider-module__SliderHeader_gOy9k";
|
|
6
|
+
var Value = "viraui__slider-module__Value_FaY9i";
|
|
7
|
+
var SliderControl = "viraui__slider-module__SliderControl_FQd5-";
|
|
8
|
+
var Track = "viraui__slider-module__Track_wvLEH";
|
|
9
|
+
var Indicator = "viraui__slider-module__Indicator_y3JyJ";
|
|
10
|
+
var Thumb = "viraui__slider-module__Thumb_S-uLF";
|
|
1
11
|
var slider_module_default = {
|
|
2
|
-
Slider
|
|
3
|
-
Label
|
|
4
|
-
SliderRoot
|
|
5
|
-
SliderHeader
|
|
6
|
-
Value
|
|
7
|
-
SliderControl
|
|
8
|
-
Track
|
|
9
|
-
Indicator
|
|
10
|
-
Thumb
|
|
12
|
+
Slider,
|
|
13
|
+
Label,
|
|
14
|
+
SliderRoot,
|
|
15
|
+
SliderHeader,
|
|
16
|
+
Value,
|
|
17
|
+
SliderControl,
|
|
18
|
+
Track,
|
|
19
|
+
Indicator,
|
|
20
|
+
Thumb
|
|
11
21
|
};
|
|
12
22
|
//#endregion
|
|
13
|
-
export { slider_module_default as default };
|
|
23
|
+
export { Indicator, Label, Slider, SliderControl, SliderHeader, SliderRoot, Thumb, Track, Value, slider_module_default as default };
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
//#region src/components/spinner/spinner.module.css
|
|
2
|
+
var Spinner = "viraui__spinner-module__Spinner_qCQzj";
|
|
3
|
+
var Glyph = "viraui__spinner-module__Glyph_OV-cy";
|
|
1
4
|
var spinner_module_default = {
|
|
2
|
-
Spinner
|
|
3
|
-
Glyph
|
|
5
|
+
Spinner,
|
|
6
|
+
Glyph,
|
|
4
7
|
"spinner-bars": "viraui__spinner-module__spinner-bars_jDmaB"
|
|
5
8
|
};
|
|
6
9
|
//#endregion
|
|
7
|
-
export { spinner_module_default as default };
|
|
10
|
+
export { Glyph, Spinner, spinner_module_default as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/components/stack/stack.module.css
|
|
2
|
+
var Stack = "viraui__stack-module__Stack_NR-Ey";
|
|
3
|
+
var stack_module_default = { Stack };
|
|
2
4
|
//#endregion
|
|
3
|
-
export { stack_module_default as default };
|
|
5
|
+
export { Stack, stack_module_default as default };
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
//#region src/components/static-noise/static-noise.module.css
|
|
2
|
+
var StaticNoise = "viraui__static-noise-module__StaticNoise_ZhNxO";
|
|
3
|
+
var FilterSvg = "viraui__static-noise-module__FilterSvg_0CP2y";
|
|
1
4
|
var static_noise_module_default = {
|
|
2
|
-
StaticNoise
|
|
3
|
-
FilterSvg
|
|
5
|
+
StaticNoise,
|
|
6
|
+
FilterSvg
|
|
4
7
|
};
|
|
5
8
|
//#endregion
|
|
6
|
-
export { static_noise_module_default as default };
|
|
9
|
+
export { FilterSvg, StaticNoise, static_noise_module_default as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/components/surface/surface.module.css
|
|
2
|
+
var Surface = "viraui__surface-module__Surface_slEYq";
|
|
3
|
+
var surface_module_default = { Surface };
|
|
2
4
|
//#endregion
|
|
3
|
-
export { surface_module_default as default };
|
|
5
|
+
export { Surface, surface_module_default as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import './switch.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
6
5
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
6
|
+
import { Stack } from "../stack/stack.js";
|
|
7
7
|
import switch_module_default from "./switch.module.js";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
9
|
import { Field } from "@base-ui/react/field";
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
//#region src/components/switch/switch.module.css
|
|
2
|
+
var Switch = "viraui__switch-module__Switch_L86y7";
|
|
3
|
+
var Label = "viraui__switch-module__Label_9R-rv";
|
|
4
|
+
var SwitchRoot = "viraui__switch-module__SwitchRoot_Zv9An";
|
|
5
|
+
var Thumb = "viraui__switch-module__Thumb_ldwJw";
|
|
1
6
|
var switch_module_default = {
|
|
2
|
-
Switch
|
|
3
|
-
Label
|
|
4
|
-
SwitchRoot
|
|
5
|
-
Thumb
|
|
7
|
+
Switch,
|
|
8
|
+
Label,
|
|
9
|
+
SwitchRoot,
|
|
10
|
+
Thumb
|
|
6
11
|
};
|
|
7
12
|
//#endregion
|
|
8
|
-
export { switch_module_default as default };
|
|
13
|
+
export { Label, Switch, SwitchRoot, Thumb, switch_module_default as default };
|
|
@@ -1,11 +1,19 @@
|
|
|
1
|
+
//#region src/components/tabs/tabs.module.css
|
|
2
|
+
var Tabs = "viraui__tabs-module__Tabs_AwbZZ";
|
|
3
|
+
var Viewport = "viraui__tabs-module__Viewport_15X1I";
|
|
4
|
+
var List = "viraui__tabs-module__List_XJorr";
|
|
5
|
+
var Indicator = "viraui__tabs-module__Indicator_UyNUn";
|
|
6
|
+
var Item = "viraui__tabs-module__Item_XZ86Z";
|
|
7
|
+
var Label = "viraui__tabs-module__Label_5-8-Y";
|
|
8
|
+
var Panel = "viraui__tabs-module__Panel_vkCFI";
|
|
1
9
|
var tabs_module_default = {
|
|
2
|
-
Tabs
|
|
3
|
-
Viewport
|
|
4
|
-
List
|
|
5
|
-
Indicator
|
|
6
|
-
Item
|
|
7
|
-
Label
|
|
8
|
-
Panel
|
|
10
|
+
Tabs,
|
|
11
|
+
Viewport,
|
|
12
|
+
List,
|
|
13
|
+
Indicator,
|
|
14
|
+
Item,
|
|
15
|
+
Label,
|
|
16
|
+
Panel
|
|
9
17
|
};
|
|
10
18
|
//#endregion
|
|
11
|
-
export { tabs_module_default as default };
|
|
19
|
+
export { Indicator, Item, Label, List, Panel, Tabs, Viewport, tabs_module_default as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/components/text/text.module.css
|
|
2
|
+
var Text = "viraui__text-module__Text_bS8kv";
|
|
3
|
+
var text_module_default = { Text };
|
|
2
4
|
//#endregion
|
|
3
|
-
export { text_module_default as default };
|
|
5
|
+
export { Text, text_module_default as default };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import './textarea.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { BasicInput } from "../basic-input/basic-input.js";
|
|
6
5
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
7
6
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
7
|
+
import { Stack } from "../stack/stack.js";
|
|
8
8
|
import textarea_module_default from "./textarea.module.js";
|
|
9
9
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
10
10
|
import { Field } from "@base-ui/react/field";
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
//#region src/components/textarea/textarea.module.css
|
|
2
|
+
var Textarea = "viraui__textarea-module__Textarea_mtOUG";
|
|
3
|
+
var Label = "viraui__textarea-module__Label_5dOso";
|
|
4
|
+
var CustomBasicInput = "viraui__textarea-module__CustomBasicInput_Ce7yA";
|
|
5
|
+
var Description = "viraui__textarea-module__Description_er3zI";
|
|
1
6
|
var textarea_module_default = {
|
|
2
|
-
Textarea
|
|
3
|
-
Label
|
|
4
|
-
CustomBasicInput
|
|
5
|
-
Description
|
|
7
|
+
Textarea,
|
|
8
|
+
Label,
|
|
9
|
+
CustomBasicInput,
|
|
10
|
+
Description
|
|
6
11
|
};
|
|
7
12
|
//#endregion
|
|
8
|
-
export { textarea_module_default as default };
|
|
13
|
+
export { CustomBasicInput, Description, Label, Textarea, textarea_module_default as default };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import './textfield.css';
|
|
2
2
|
import { clsx } from "../../core/clsx.js";
|
|
3
3
|
import { extractIntrinsicViraProps } from "../../core/props/intrinsic-vira-props.js";
|
|
4
|
-
import { Stack } from "../stack/stack.js";
|
|
5
4
|
import { BasicInput } from "../basic-input/basic-input.js";
|
|
6
5
|
import { FieldHelperCopy } from "../basic-input/field-helper-copy.js";
|
|
7
6
|
import { FieldLabel } from "../basic-input/field-label.js";
|
|
8
7
|
import { InputControlGroup } from "../basic-input/input-control-group.js";
|
|
8
|
+
import { Stack } from "../stack/stack.js";
|
|
9
9
|
import textfield_module_default from "./textfield.module.js";
|
|
10
10
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
11
11
|
import { Field } from "@base-ui/react/field";
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
+
//#region src/components/textfield/textfield.module.css
|
|
2
|
+
var Textfield = "viraui__textfield-module__Textfield_o-70A";
|
|
3
|
+
var Label = "viraui__textfield-module__Label_5rjr0";
|
|
4
|
+
var ControlGroup = "viraui__textfield-module__ControlGroup_2W-OC";
|
|
5
|
+
var CustomBasicInput = "viraui__textfield-module__CustomBasicInput_oHgtd";
|
|
6
|
+
var Addon = "viraui__textfield-module__Addon_kK1ef";
|
|
7
|
+
var Description = "viraui__textfield-module__Description_8Qxot";
|
|
1
8
|
var textfield_module_default = {
|
|
2
|
-
Textfield
|
|
3
|
-
Label
|
|
4
|
-
ControlGroup
|
|
5
|
-
CustomBasicInput
|
|
6
|
-
Addon
|
|
7
|
-
Description
|
|
9
|
+
Textfield,
|
|
10
|
+
Label,
|
|
11
|
+
ControlGroup,
|
|
12
|
+
CustomBasicInput,
|
|
13
|
+
Addon,
|
|
14
|
+
Description
|
|
8
15
|
};
|
|
9
16
|
//#endregion
|
|
10
|
-
export { textfield_module_default as default };
|
|
17
|
+
export { Addon, ControlGroup, CustomBasicInput, Description, Label, Textfield, textfield_module_default as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/components/title/title.module.css
|
|
2
|
+
var Title = "viraui__title-module__Title_CXMUX";
|
|
3
|
+
var title_module_default = { Title };
|
|
2
4
|
//#endregion
|
|
3
|
-
export { title_module_default as default };
|
|
5
|
+
export { Title, title_module_default as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { clsx } from "../../core/clsx.js";
|
|
2
|
-
import { Stack } from "../stack/stack.js";
|
|
3
2
|
import { Button } from "../button/button.js";
|
|
4
3
|
import { Text } from "../text/text.js";
|
|
4
|
+
import { Stack } from "../stack/stack.js";
|
|
5
5
|
import { Surface } from "../surface/surface.js";
|
|
6
6
|
import toast_module_default from "./toast.module.js";
|
|
7
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|