@vygruppen/spor-react 11.0.4 → 11.1.0
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 +9 -9
- package/CHANGELOG.md +12 -0
- package/dist/{CountryCodeSelect-RDPS7H5L.mjs → CountryCodeSelect-YB3M3566.mjs} +1 -1
- package/dist/{chunk-GJ4NLUDN.mjs → chunk-FBD6IXFW.mjs} +13 -9
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +12 -8
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/button/Button.tsx +3 -6
- package/src/theme/components/alert-service.ts +12 -8
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@11.0
|
2
|
+
> @vygruppen/spor-react@11.1.0 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -9,12 +9,12 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mDTS[39m Build start
|
12
|
-
[32mCJS[39m [1mdist/index.js [22m[32m542.17 KB[39m
|
13
|
-
[32mCJS[39m ⚡️ Build success in 2253ms
|
14
|
-
[32mESM[39m [1mdist/CountryCodeSelect-RDPS7H5L.mjs [22m[32m1.22 KB[39m
|
15
12
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
16
|
-
[32mESM[39m [1mdist/
|
17
|
-
[32mESM[39m
|
18
|
-
[
|
19
|
-
[
|
20
|
-
[
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-YB3M3566.mjs [22m[32m1.22 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-FBD6IXFW.mjs [22m[32m428.46 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2283ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m542.28 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2283ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 15944ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m343.31 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m343.31 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 11.1.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- c0a8332: Button: Update props to support margins
|
8
|
+
|
9
|
+
## 11.0.5
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- 793e13f: Changed color of the ServiceAlert varient global-deviation to be the same as a regular service alert
|
14
|
+
|
3
15
|
## 11.0.4
|
4
16
|
|
5
17
|
### Patch Changes
|
@@ -1844,7 +1844,7 @@ var texts4 = createTexts({
|
|
1844
1844
|
sv: "Landskod"
|
1845
1845
|
}
|
1846
1846
|
});
|
1847
|
-
var LazyCountryCodeSelect = React85__default.lazy(() => import('./CountryCodeSelect-
|
1847
|
+
var LazyCountryCodeSelect = React85__default.lazy(() => import('./CountryCodeSelect-YB3M3566.mjs'));
|
1848
1848
|
var Radio = forwardRef((props, ref) => {
|
1849
1849
|
return /* @__PURE__ */ React85__default.createElement(Radio$1, { ...props, ref });
|
1850
1850
|
});
|
@@ -10976,23 +10976,27 @@ var config5 = helpers4.defineMultiStyleConfig({
|
|
10976
10976
|
"global-deviation": {
|
10977
10977
|
container: {
|
10978
10978
|
_hover: {
|
10979
|
-
|
10979
|
+
backgroundColor: "teal.600",
|
10980
|
+
outlineColor: "teal.600"
|
10981
|
+
},
|
10982
|
+
_focus: {
|
10983
|
+
outlineColor: "green.500"
|
10980
10984
|
},
|
10981
10985
|
_active: {
|
10982
|
-
backgroundColor: "
|
10983
|
-
outlineColor: "
|
10986
|
+
backgroundColor: "teal.400",
|
10987
|
+
outlineColor: "pine"
|
10984
10988
|
},
|
10985
|
-
color: "
|
10989
|
+
color: "white"
|
10986
10990
|
},
|
10987
10991
|
outerBox: {
|
10988
|
-
outlineColor: "
|
10989
|
-
backgroundColor: "
|
10992
|
+
outlineColor: "blueGreen",
|
10993
|
+
backgroundColor: "darkTeal"
|
10990
10994
|
},
|
10991
10995
|
notificationText: {
|
10992
|
-
color: "
|
10996
|
+
color: "white"
|
10993
10997
|
},
|
10994
10998
|
serviceMessageContent: {
|
10995
|
-
color: "
|
10999
|
+
color: "white"
|
10996
11000
|
}
|
10997
11001
|
},
|
10998
11002
|
service: {
|
package/dist/index.d.mts
CHANGED
@@ -2,7 +2,7 @@ import tokens__default from '@vygruppen/spor-design-tokens';
|
|
2
2
|
import * as tokens from '@vygruppen/spor-design-tokens';
|
3
3
|
export { tokens };
|
4
4
|
import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types';
|
5
|
-
import { DividerProps as DividerProps$1, As, BoxProps, StackProps as StackProps$1, AccordionProps as AccordionProps$1, AccordionItemProps, BreadcrumbProps as BreadcrumbProps$1, ButtonProps as ButtonProps$1,
|
5
|
+
import { DividerProps as DividerProps$1, As, BoxProps, StackProps as StackProps$1, AccordionProps as AccordionProps$1, AccordionItemProps, BreadcrumbProps as BreadcrumbProps$1, ButtonProps as ButtonProps$1, ButtonGroupProps as ButtonGroupProps$1, IconButtonProps as IconButtonProps$1, ComponentWithAs, ResponsiveValue, FlexProps, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, StackDirection, FormControlProps as FormControlProps$1, FormLabelProps as FormLabelProps$1, InputProps as InputProps$1, InputElementProps as InputElementProps$1, SelectProps, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SwitchProps as SwitchProps$1, TextareaProps as TextareaProps$1, LinkProps as LinkProps$1, SkeletonTextProps as SkeletonTextProps$1, ModalHeaderProps as ModalHeaderProps$1, DrawerContentProps, DrawerProps as DrawerProps$1, PopoverProps, ChakraProviderProps, TabsProps as TabsProps$1, TableProps as TableProps$1, BadgeProps as BadgeProps$1, CodeProps as CodeProps$1, HeadingProps as HeadingProps$1, TextProps as TextProps$1, useMediaQuery as useMediaQuery$1 } from '@chakra-ui/react';
|
6
6
|
export { AccordionButton, AccordionButtonProps, AccordionIcon, AccordionItem, AccordionItemProps, AccordionPanel, AccordionPanelProps, Box, BoxProps, CSSWithMultiValues, Center, CenterProps, Collapse, CollapseProps, ComponentStyleConfig, Container, ContainerProps, DarkMode, DrawerBody, DrawerCloseButton, DrawerFooter, DrawerOverlay, DrawerProps, Fade, FadeProps, Flex, FlexProps, FormHelperText, Grid, GridItem, GridItemProps, GridProps, HStack, Image, ImageProps, Img, ImgProps, InputGroup, InputGroupProps, LightMode, ListItem, ListItemProps, ListProps, Modal, ModalBody, ModalBodyProps, ModalCloseButton, ModalContent, ModalContentProps, ModalFooter, ModalFooterProps, ModalOverlay, ModalOverlayProps, ModalProps, OrderedList, Portal, PortalProps, ScaleFade, ScaleFadeProps, SimpleGrid, SimpleGridProps, Slide, SlideFade, SlideFadeProps, SlideProps, Spacer, SpacerProps, Tab, TabList, TabListProps, TabPanel, TabPanelProps, TabPanels, TabPanelsProps, TabProps, TableBodyProps, TableCaption, TableCaptionProps, TableCellProps, TableColumnHeaderProps, TableFooterProps, TableHeadProps, TableRowProps, Tbody, Td, Tfoot, Th, Thead, Tr, UnorderedList, UseClipboardOptions, UseDisclosureProps, UseOutsideClickProps, VStack, Wrap, WrapItem, WrapItemProps, WrapProps, defineStyleConfig, extendTheme, useBreakpointValue, useClipboard, useColorMode, useColorModePreference, useColorModeValue, useControllableProp, useDisclosure, useMergeRefs, useOutsideClick, usePrefersReducedMotion, useTheme, useToken } from '@chakra-ui/react';
|
7
7
|
import React, { ChangeEvent } from 'react';
|
8
8
|
import * as _chakra_ui_breadcrumb_dist_breadcrumb_link from '@chakra-ui/breadcrumb/dist/breadcrumb-link';
|
@@ -428,7 +428,7 @@ declare const Breadcrumb: (props: BreadcrumbProps) => React.JSX.Element;
|
|
428
428
|
declare const BreadcrumbItem: _chakra_ui_system_dist_system_types.ComponentWithAs<"li", _chakra_ui_breadcrumb_dist_breadcrumb_item.BreadcrumbItemProps>;
|
429
429
|
declare const BreadcrumbLink: _chakra_ui_system_dist_system_types.ComponentWithAs<"a", _chakra_ui_breadcrumb_dist_breadcrumb_link.BreadcrumbLinkProps>;
|
430
430
|
|
431
|
-
type ButtonProps =
|
431
|
+
type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "size" | "variant"> & {
|
432
432
|
/**
|
433
433
|
* The size of the button.
|
434
434
|
*
|
@@ -2727,6 +2727,10 @@ declare const theme: {
|
|
2727
2727
|
"global-deviation": {
|
2728
2728
|
container: {
|
2729
2729
|
_hover: {
|
2730
|
+
backgroundColor: string;
|
2731
|
+
outlineColor: string;
|
2732
|
+
};
|
2733
|
+
_focus: {
|
2730
2734
|
outlineColor: string;
|
2731
2735
|
};
|
2732
2736
|
_active: {
|
package/dist/index.d.ts
CHANGED
@@ -2,7 +2,7 @@ import tokens__default from '@vygruppen/spor-design-tokens';
|
|
2
2
|
import * as tokens from '@vygruppen/spor-design-tokens';
|
3
3
|
export { tokens };
|
4
4
|
import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types';
|
5
|
-
import { DividerProps as DividerProps$1, As, BoxProps, StackProps as StackProps$1, AccordionProps as AccordionProps$1, AccordionItemProps, BreadcrumbProps as BreadcrumbProps$1, ButtonProps as ButtonProps$1,
|
5
|
+
import { DividerProps as DividerProps$1, As, BoxProps, StackProps as StackProps$1, AccordionProps as AccordionProps$1, AccordionItemProps, BreadcrumbProps as BreadcrumbProps$1, ButtonProps as ButtonProps$1, ButtonGroupProps as ButtonGroupProps$1, IconButtonProps as IconButtonProps$1, ComponentWithAs, ResponsiveValue, FlexProps, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, StackDirection, FormControlProps as FormControlProps$1, FormLabelProps as FormLabelProps$1, InputProps as InputProps$1, InputElementProps as InputElementProps$1, SelectProps, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SwitchProps as SwitchProps$1, TextareaProps as TextareaProps$1, LinkProps as LinkProps$1, SkeletonTextProps as SkeletonTextProps$1, ModalHeaderProps as ModalHeaderProps$1, DrawerContentProps, DrawerProps as DrawerProps$1, PopoverProps, ChakraProviderProps, TabsProps as TabsProps$1, TableProps as TableProps$1, BadgeProps as BadgeProps$1, CodeProps as CodeProps$1, HeadingProps as HeadingProps$1, TextProps as TextProps$1, useMediaQuery as useMediaQuery$1 } from '@chakra-ui/react';
|
6
6
|
export { AccordionButton, AccordionButtonProps, AccordionIcon, AccordionItem, AccordionItemProps, AccordionPanel, AccordionPanelProps, Box, BoxProps, CSSWithMultiValues, Center, CenterProps, Collapse, CollapseProps, ComponentStyleConfig, Container, ContainerProps, DarkMode, DrawerBody, DrawerCloseButton, DrawerFooter, DrawerOverlay, DrawerProps, Fade, FadeProps, Flex, FlexProps, FormHelperText, Grid, GridItem, GridItemProps, GridProps, HStack, Image, ImageProps, Img, ImgProps, InputGroup, InputGroupProps, LightMode, ListItem, ListItemProps, ListProps, Modal, ModalBody, ModalBodyProps, ModalCloseButton, ModalContent, ModalContentProps, ModalFooter, ModalFooterProps, ModalOverlay, ModalOverlayProps, ModalProps, OrderedList, Portal, PortalProps, ScaleFade, ScaleFadeProps, SimpleGrid, SimpleGridProps, Slide, SlideFade, SlideFadeProps, SlideProps, Spacer, SpacerProps, Tab, TabList, TabListProps, TabPanel, TabPanelProps, TabPanels, TabPanelsProps, TabProps, TableBodyProps, TableCaption, TableCaptionProps, TableCellProps, TableColumnHeaderProps, TableFooterProps, TableHeadProps, TableRowProps, Tbody, Td, Tfoot, Th, Thead, Tr, UnorderedList, UseClipboardOptions, UseDisclosureProps, UseOutsideClickProps, VStack, Wrap, WrapItem, WrapItemProps, WrapProps, defineStyleConfig, extendTheme, useBreakpointValue, useClipboard, useColorMode, useColorModePreference, useColorModeValue, useControllableProp, useDisclosure, useMergeRefs, useOutsideClick, usePrefersReducedMotion, useTheme, useToken } from '@chakra-ui/react';
|
7
7
|
import React, { ChangeEvent } from 'react';
|
8
8
|
import * as _chakra_ui_breadcrumb_dist_breadcrumb_link from '@chakra-ui/breadcrumb/dist/breadcrumb-link';
|
@@ -428,7 +428,7 @@ declare const Breadcrumb: (props: BreadcrumbProps) => React.JSX.Element;
|
|
428
428
|
declare const BreadcrumbItem: _chakra_ui_system_dist_system_types.ComponentWithAs<"li", _chakra_ui_breadcrumb_dist_breadcrumb_item.BreadcrumbItemProps>;
|
429
429
|
declare const BreadcrumbLink: _chakra_ui_system_dist_system_types.ComponentWithAs<"a", _chakra_ui_breadcrumb_dist_breadcrumb_link.BreadcrumbLinkProps>;
|
430
430
|
|
431
|
-
type ButtonProps =
|
431
|
+
type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "size" | "variant"> & {
|
432
432
|
/**
|
433
433
|
* The size of the button.
|
434
434
|
*
|
@@ -2727,6 +2727,10 @@ declare const theme: {
|
|
2727
2727
|
"global-deviation": {
|
2728
2728
|
container: {
|
2729
2729
|
_hover: {
|
2730
|
+
backgroundColor: string;
|
2731
|
+
outlineColor: string;
|
2732
|
+
};
|
2733
|
+
_focus: {
|
2730
2734
|
outlineColor: string;
|
2731
2735
|
};
|
2732
2736
|
_active: {
|
package/dist/index.js
CHANGED
@@ -12366,23 +12366,27 @@ var init_alert_service = __esm({
|
|
12366
12366
|
"global-deviation": {
|
12367
12367
|
container: {
|
12368
12368
|
_hover: {
|
12369
|
-
|
12369
|
+
backgroundColor: "teal.600",
|
12370
|
+
outlineColor: "teal.600"
|
12371
|
+
},
|
12372
|
+
_focus: {
|
12373
|
+
outlineColor: "green.500"
|
12370
12374
|
},
|
12371
12375
|
_active: {
|
12372
|
-
backgroundColor: "
|
12373
|
-
outlineColor: "
|
12376
|
+
backgroundColor: "teal.400",
|
12377
|
+
outlineColor: "pine"
|
12374
12378
|
},
|
12375
|
-
color: "
|
12379
|
+
color: "white"
|
12376
12380
|
},
|
12377
12381
|
outerBox: {
|
12378
|
-
outlineColor: "
|
12379
|
-
backgroundColor: "
|
12382
|
+
outlineColor: "blueGreen",
|
12383
|
+
backgroundColor: "darkTeal"
|
12380
12384
|
},
|
12381
12385
|
notificationText: {
|
12382
|
-
color: "
|
12386
|
+
color: "white"
|
12383
12387
|
},
|
12384
12388
|
serviceMessageContent: {
|
12385
|
-
color: "
|
12389
|
+
color: "white"
|
12386
12390
|
}
|
12387
12391
|
},
|
12388
12392
|
service: {
|
package/dist/index.mjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { Accordion, AccordionButton, AccordionIcon, AccordionItem, AccordionPanel, AttachedInputs, Badge, Box, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, CardSelect, CargonetLogo, Center, Checkbox, CheckboxGroup, ChoiceChip, ClosableAlert, CloseButton, Code, Collapse, ColorInlineLoader, ColorSpinner, Combobox, Container, ContentLoader, DarkFullScreenLoader, DarkInlineLoader, DarkMode, DarkSpinner, DatePicker, DateRangePicker, Divider, Drawer, DrawerBody, DrawerCloseButton, DrawerContent, DrawerFooter, ModalHeader as DrawerHeader, DrawerOverlay, Expandable, ExpandableAlert, ExpandableItem, Fade, Flex, FloatingActionButton, FormControl, FormErrorMessage, FormHelperText, FormLabel, FullScreenDrawer, Grid, GridItem, HStack, Heading, IconButton, Image, Img, InfoSelect, InfoTag, Input, InputGroup, InputLeftElement, InputRightElement, Item, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightMode, LightSpinner, LineIcon, ListBox, ListItem, Modal, ModalBody, ModalCloseButton, ModalContent, ModalFooter, ModalHeader, ModalOverlay, NativeSelect, Nudge, NumericStepper, OrderedList, Pagination, PasswordInput, PhoneNumberInput, PlayPauseButton, Portal, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioGroup, ScaleFade, SearchInput, Section, ServiceAlert, SimpleDrawer, SimpleGrid, Skeleton, SkeletonCircle, SkeletonText, SkipButton, Slide, SlideFade, Spacer, SporProvider, Stack, StaticAlert, StaticCard, Stepper, StepperStep, Switch, Tab, TabList, TabPanel, TabPanels, Table, TableCaption, Tabs, Tbody, Td, Text, TextLink, Textarea, Tfoot, Th, Thead, Time, TimePicker, Tooltip, Tr, TravelTag, UnorderedList, VStack, VyLogo, VyLogoPride, WizardNudge, Wrap, WrapItem, brandTheme, createTexts, defineStyleConfig, extendTheme, fontFaces, slugify, theme, tokens, useBreakpointValue, useClipboard, useColorMode, useColorModePreference, useColorModeValue, useControllableProp, useDisclosure, useMediaQuery, useMergeRefs, useOutsideClick, usePrefersReducedMotion, useSize, useTheme, useToast, useToken, useTranslation } from './chunk-
|
1
|
+
export { Accordion, AccordionButton, AccordionIcon, AccordionItem, AccordionPanel, AttachedInputs, Badge, Box, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, CardSelect, CargonetLogo, Center, Checkbox, CheckboxGroup, ChoiceChip, ClosableAlert, CloseButton, Code, Collapse, ColorInlineLoader, ColorSpinner, Combobox, Container, ContentLoader, DarkFullScreenLoader, DarkInlineLoader, DarkMode, DarkSpinner, DatePicker, DateRangePicker, Divider, Drawer, DrawerBody, DrawerCloseButton, DrawerContent, DrawerFooter, ModalHeader as DrawerHeader, DrawerOverlay, Expandable, ExpandableAlert, ExpandableItem, Fade, Flex, FloatingActionButton, FormControl, FormErrorMessage, FormHelperText, FormLabel, FullScreenDrawer, Grid, GridItem, HStack, Heading, IconButton, Image, Img, InfoSelect, InfoTag, Input, InputGroup, InputLeftElement, InputRightElement, Item, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightMode, LightSpinner, LineIcon, ListBox, ListItem, Modal, ModalBody, ModalCloseButton, ModalContent, ModalFooter, ModalHeader, ModalOverlay, NativeSelect, Nudge, NumericStepper, OrderedList, Pagination, PasswordInput, PhoneNumberInput, PlayPauseButton, Portal, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioGroup, ScaleFade, SearchInput, Section, ServiceAlert, SimpleDrawer, SimpleGrid, Skeleton, SkeletonCircle, SkeletonText, SkipButton, Slide, SlideFade, Spacer, SporProvider, Stack, StaticAlert, StaticCard, Stepper, StepperStep, Switch, Tab, TabList, TabPanel, TabPanels, Table, TableCaption, Tabs, Tbody, Td, Text, TextLink, Textarea, Tfoot, Th, Thead, Time, TimePicker, Tooltip, Tr, TravelTag, UnorderedList, VStack, VyLogo, VyLogoPride, WizardNudge, Wrap, WrapItem, brandTheme, createTexts, defineStyleConfig, extendTheme, fontFaces, slugify, theme, tokens, useBreakpointValue, useClipboard, useColorMode, useColorModePreference, useColorModeValue, useControllableProp, useDisclosure, useMediaQuery, useMergeRefs, useOutsideClick, usePrefersReducedMotion, useSize, useTheme, useToast, useToken, useTranslation } from './chunk-FBD6IXFW.mjs';
|
package/package.json
CHANGED
package/src/button/Button.tsx
CHANGED
@@ -12,12 +12,9 @@ import React from "react";
|
|
12
12
|
import { createTexts, useTranslation } from "../i18n";
|
13
13
|
import { ColorInlineLoader } from "../loader";
|
14
14
|
|
15
|
-
export type ButtonProps =
|
16
|
-
|
17
|
-
|
18
|
-
"colorScheme" | "loadingText" | "size" | "variant"
|
19
|
-
>,
|
20
|
-
keyof SpaceProps
|
15
|
+
export type ButtonProps = Exclude<
|
16
|
+
ChakraButtonProps,
|
17
|
+
"colorScheme" | "size" | "variant"
|
21
18
|
> & {
|
22
19
|
/**
|
23
20
|
* The size of the button.
|
@@ -43,23 +43,27 @@ const config = helpers.defineMultiStyleConfig({
|
|
43
43
|
"global-deviation": {
|
44
44
|
container: {
|
45
45
|
_hover: {
|
46
|
-
|
46
|
+
backgroundColor: "teal.600",
|
47
|
+
outlineColor: "teal.600",
|
48
|
+
},
|
49
|
+
_focus: {
|
50
|
+
outlineColor: "green.500",
|
47
51
|
},
|
48
52
|
_active: {
|
49
|
-
backgroundColor: "
|
50
|
-
outlineColor: "
|
53
|
+
backgroundColor: "teal.400",
|
54
|
+
outlineColor: "pine",
|
51
55
|
},
|
52
|
-
color: "
|
56
|
+
color: "white",
|
53
57
|
},
|
54
58
|
outerBox: {
|
55
|
-
outlineColor: "
|
56
|
-
backgroundColor: "
|
59
|
+
outlineColor: "blueGreen",
|
60
|
+
backgroundColor: "darkTeal",
|
57
61
|
},
|
58
62
|
notificationText: {
|
59
|
-
color: "
|
63
|
+
color: "white",
|
60
64
|
},
|
61
65
|
serviceMessageContent: {
|
62
|
-
color: "
|
66
|
+
color: "white",
|
63
67
|
},
|
64
68
|
},
|
65
69
|
service: {
|