@vygruppen/spor-react 12.0.5 → 12.0.7
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/.turbo/turbo-build.log +13 -12
- package/.turbo/turbo-typegen.log +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/index.d.mts +31 -3
- package/dist/index.d.ts +31 -3
- package/dist/index.js +26 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/input/index.ts +1 -0
- package/src/theme/slot-recipes/alert-expandable.ts +24 -12
package/dist/index.mjs
CHANGED
@@ -1301,7 +1301,7 @@ var Field = React67.forwardRef(
|
|
1301
1301
|
return /* @__PURE__ */ React67.createElement(Field$1.Root, { ref, ...rest, css: styles.root }, children, helperText && /* @__PURE__ */ React67.createElement(Field$1.HelperText, null, helperText), label && /* @__PURE__ */ React67.createElement(Field$1.Label, { css: styles.label }, label), errorText && /* @__PURE__ */ React67.createElement(Field$1.ErrorText, null, errorText));
|
1302
1302
|
}
|
1303
1303
|
);
|
1304
|
-
React67.forwardRef((props, ref) => {
|
1304
|
+
var FieldErrorText = React67.forwardRef((props, ref) => {
|
1305
1305
|
return /* @__PURE__ */ React67.createElement(Field$1.ErrorText, { ref }, props.children);
|
1306
1306
|
});
|
1307
1307
|
var FieldLabel = Field$1.Label;
|
@@ -6791,12 +6791,14 @@ var alertExpandableSlotRecipe = defineSlotRecipe({
|
|
6791
6791
|
color: "alert.important.text.secondary"
|
6792
6792
|
},
|
6793
6793
|
itemTrigger: {
|
6794
|
-
|
6794
|
+
"&:hover": {
|
6795
6795
|
bg: "alert.important.surface.hover",
|
6796
|
+
outline: "1px solid",
|
6796
6797
|
outlineColor: "alert.important.outline.hover",
|
6797
|
-
|
6798
|
-
|
6799
|
-
|
6798
|
+
outlineOffset: "0px"
|
6799
|
+
},
|
6800
|
+
"&:active": {
|
6801
|
+
bg: "alert.important.surface.active"
|
6800
6802
|
}
|
6801
6803
|
},
|
6802
6804
|
root: {
|
@@ -6812,10 +6814,12 @@ var alertExpandableSlotRecipe = defineSlotRecipe({
|
|
6812
6814
|
color: "alert.success.text.secondary"
|
6813
6815
|
},
|
6814
6816
|
itemTrigger: {
|
6815
|
-
|
6817
|
+
"&:hover": {
|
6816
6818
|
bg: "alert.success.surface.hover",
|
6819
|
+
outline: "1px solid",
|
6820
|
+
outlineOffset: "0px",
|
6817
6821
|
outlineColor: "alert.success.outline.hover",
|
6818
|
-
|
6822
|
+
"&:active": {
|
6819
6823
|
bg: "alert.success.surface.active"
|
6820
6824
|
}
|
6821
6825
|
}
|
@@ -6833,10 +6837,12 @@ var alertExpandableSlotRecipe = defineSlotRecipe({
|
|
6833
6837
|
color: "alert.alt.text.secondary"
|
6834
6838
|
},
|
6835
6839
|
itemTrigger: {
|
6836
|
-
|
6840
|
+
"&:hover": {
|
6837
6841
|
bg: "alert.alt.surface.hover",
|
6842
|
+
outlineOffset: "0px",
|
6843
|
+
outline: "1px solid",
|
6838
6844
|
outlineColor: "alert.alt.outline.hover",
|
6839
|
-
|
6845
|
+
"&:active": {
|
6840
6846
|
bg: "alert.alt.surface.active"
|
6841
6847
|
}
|
6842
6848
|
}
|
@@ -6854,10 +6860,12 @@ var alertExpandableSlotRecipe = defineSlotRecipe({
|
|
6854
6860
|
color: "alert.info.text.secondary"
|
6855
6861
|
},
|
6856
6862
|
itemTrigger: {
|
6857
|
-
|
6863
|
+
"&:hover": {
|
6858
6864
|
bg: "alert.info.surface.hover",
|
6865
|
+
outlineOffset: "0px",
|
6866
|
+
outline: "1px solid",
|
6859
6867
|
outlineColor: "alert.info.outline.hover",
|
6860
|
-
|
6868
|
+
"&:active": {
|
6861
6869
|
bg: "alert.info.surface.active"
|
6862
6870
|
}
|
6863
6871
|
}
|
@@ -6875,10 +6883,12 @@ var alertExpandableSlotRecipe = defineSlotRecipe({
|
|
6875
6883
|
color: "alert.error.text.secondary"
|
6876
6884
|
},
|
6877
6885
|
itemTrigger: {
|
6878
|
-
|
6886
|
+
"&:hover": {
|
6879
6887
|
bg: "alert.error.surface.hover",
|
6888
|
+
outlineOffset: "0px",
|
6889
|
+
outline: "1px solid",
|
6880
6890
|
outlineColor: "alert.error.outline.hover",
|
6881
|
-
|
6891
|
+
"&:active": {
|
6882
6892
|
bg: "alert.error.surface.active"
|
6883
6893
|
}
|
6884
6894
|
}
|
@@ -10226,6 +10236,6 @@ var themes = {
|
|
10226
10236
|
};
|
10227
10237
|
var system = themes["VyDigital" /* VyDigital */];
|
10228
10238
|
|
10229
|
-
export { Accordion, AccordionItem, AccordionItemContent, AccordionItemTrigger, Alert, AttachedInputs, Badge, Brand, Breadcrumb, BreadcrumbCurrentLink, BreadcrumbEllipsis, BreadcrumbLink, Button, ButtonGroup, CardSelect, CardSelectContent, CardSelectTrigger, CargonetLogo, Checkbox, CheckboxGroup, ChoiceChip, Clipboard, ClipboardButton, CloseButton, CloseDrawerLine, Code, ColorInlineLoader, ColorModeButton, ColorModeIcon, ColorModeProvider, ColorSpinner, Combobox, ContentLoader, DarkFullScreenLoader, DarkInlineLoader, DarkSpinner, DatePicker, DateRangePicker, DialogActionTrigger, DialogBackdrop, DialogBody, DialogCloseTrigger, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger, Drawer, DrawerActionTrigger, DrawerBackTrigger, DrawerBackdrop, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerFooter, DrawerFullScreenHeader, DrawerHeader, DrawerTitle, DrawerTrigger, Expandable, ExpandableAlert, ExpandableItem, Fieldset, FieldsetContent, FieldsetErrorText, FieldsetHelperText, FieldsetLegend, FloatingActionButton, Heading, IconButton, InfoTag, Input, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightSpinner, LineIcon, List, ListBox, ListIndicator, ListItem2 as ListItem, NativeSelect, Nudge, NudgeActions, NudgeCloseTrigger, NudgeContent, NudgeTrigger, NudgeWizardStep, NumericStepper, Pagination, PaginationEllipsis, PaginationItem, PaginationItems, PaginationNextTrigger, PaginationPrevTrigger, PasswordInput, PhoneNumberInput, PlayPauseButton, Popover2 as Popover, PopoverContent, PopoverTrigger, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardLabel, RadioGroup, SearchInput, Select, SelectContent, SelectItem, SelectItemGroup, SelectItemText, SelectLabel, SelectRoot, SelectTrigger, SelectValueText, Separator, ServiceAlert, Skeleton, SkeletonCircle, SkeletonText, SkipButton, SporProvider, StaticCard, Stepper, StepperStep, SvgBox, Switch, Table, Tabs, TabsContent, TabsIndicator, TabsList, TabsTrigger, Text3 as Text, TextLink, Textarea, TimePicker, TravelTag, VyLogo, VyLogoPride, createTexts, createToast, fontFaces, slugify, system, themes, useColorMode, useColorModeValue, useTranslation };
|
10239
|
+
export { Accordion, AccordionItem, AccordionItemContent, AccordionItemTrigger, Alert, AttachedInputs, Badge, Brand, Breadcrumb, BreadcrumbCurrentLink, BreadcrumbEllipsis, BreadcrumbLink, Button, ButtonGroup, CardSelect, CardSelectContent, CardSelectTrigger, CargonetLogo, Checkbox, CheckboxGroup, ChoiceChip, Clipboard, ClipboardButton, CloseButton, CloseDrawerLine, Code, ColorInlineLoader, ColorModeButton, ColorModeIcon, ColorModeProvider, ColorSpinner, Combobox, ContentLoader, DarkFullScreenLoader, DarkInlineLoader, DarkSpinner, DatePicker, DateRangePicker, DialogActionTrigger, DialogBackdrop, DialogBody, DialogCloseTrigger, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger, Drawer, DrawerActionTrigger, DrawerBackTrigger, DrawerBackdrop, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerFooter, DrawerFullScreenHeader, DrawerHeader, DrawerTitle, DrawerTrigger, Expandable, ExpandableAlert, ExpandableItem, Field, FieldErrorText, FieldLabel, Fieldset, FieldsetContent, FieldsetErrorText, FieldsetHelperText, FieldsetLegend, FloatingActionButton, Heading, IconButton, InfoTag, Input, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightSpinner, LineIcon, List, ListBox, ListIndicator, ListItem2 as ListItem, NativeSelect, Nudge, NudgeActions, NudgeCloseTrigger, NudgeContent, NudgeTrigger, NudgeWizardStep, NumericStepper, Pagination, PaginationEllipsis, PaginationItem, PaginationItems, PaginationNextTrigger, PaginationPrevTrigger, PasswordInput, PhoneNumberInput, PlayPauseButton, Popover2 as Popover, PopoverContent, PopoverTrigger, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardLabel, RadioGroup, SearchInput, Select, SelectContent, SelectItem, SelectItemGroup, SelectItemText, SelectLabel, SelectRoot, SelectTrigger, SelectValueText, Separator, ServiceAlert, Skeleton, SkeletonCircle, SkeletonText, SkipButton, SporProvider, StaticCard, Stepper, StepperStep, SvgBox, Switch, Table, Tabs, TabsContent, TabsIndicator, TabsList, TabsTrigger, Text3 as Text, TextLink, Textarea, TimePicker, TravelTag, VyLogo, VyLogoPride, createTexts, createToast, fontFaces, slugify, system, themes, useColorMode, useColorModeValue, useTranslation };
|
10230
10240
|
//# sourceMappingURL=out.js.map
|
10231
10241
|
//# sourceMappingURL=index.mjs.map
|