@wavv/ui 2.2.8 → 2.3.0-alpha.1
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/build/components/Checkbox.d.ts +5 -2
- package/build/components/Checkbox.js +5 -3
- package/build/components/Form.d.ts +2 -1
- package/build/components/Inputs/helpers/InputContainerStyles.js +7 -7
- package/build/components/ListHelpers/ListItemStyles.js +4 -6
- package/build/components/Menu.js +4 -6
- package/build/components/Modal.d.ts +2 -5
- package/build/components/Modal.js +12 -26
- package/build/components/OptionHelpers/Item.js +4 -6
- package/build/components/Table/contentStyles.js +3 -6
- package/build/components/helpers/getFlexPosition.d.ts +3 -0
- package/build/components/helpers/getFlexPosition.js +6 -0
- package/build/tailwind/theme.css +117 -0
- package/build/theme/index.d.ts +5 -2
- package/build/theme/index.js +23 -2
- package/build/theme/mono/colors.d.ts +224 -0
- package/build/theme/mono/colors.js +85 -0
- package/build/theme/mono/dark/dark.d.ts +3 -0
- package/build/theme/mono/dark/dark.js +562 -0
- package/build/theme/mono/dark/darkScale.d.ts +22 -0
- package/build/theme/mono/dark/darkScale.js +36 -0
- package/build/theme/mono/light/light.d.ts +3 -0
- package/build/theme/mono/light/light.js +561 -0
- package/build/theme/mono/light/lightScale.d.ts +22 -0
- package/build/theme/mono/light/lightScale.js +35 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type CheckboxProps } from 'react-aria-components';
|
|
2
|
-
import type { Margin, ThemeProp } from './types';
|
|
2
|
+
import type { FlexPosition, Margin, ThemeProp } from './types';
|
|
3
3
|
type Props = {
|
|
4
4
|
/** Id of the input element */
|
|
5
5
|
id?: string;
|
|
@@ -17,15 +17,18 @@ type Props = {
|
|
|
17
17
|
partial?: boolean;
|
|
18
18
|
/** Sets the gap between the label and the checkbox */
|
|
19
19
|
gap?: number;
|
|
20
|
+
/** Sets the flex alignment of the checkbox container */
|
|
21
|
+
align?: FlexPosition;
|
|
20
22
|
onChange?: CheckboxProps['onChange'];
|
|
21
23
|
className?: CheckboxProps['className'];
|
|
22
24
|
style?: CheckboxProps['style'];
|
|
23
25
|
} & Margin & Omit<CheckboxProps, 'value' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'isIndeterminate'>;
|
|
24
|
-
declare const Checkbox: ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
declare const Checkbox: ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, align, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
25
27
|
export declare const ControlContainer: import("@emotion/styled").StyledComponent<CheckboxProps & import("react").RefAttributes<HTMLLabelElement> & {
|
|
26
28
|
theme?: import("@emotion/react").Theme;
|
|
27
29
|
} & {
|
|
28
30
|
labelRight?: boolean;
|
|
29
31
|
gap?: number;
|
|
32
|
+
align?: FlexPosition;
|
|
30
33
|
} & Margin & ThemeProp, {}, {}>;
|
|
31
34
|
export default Checkbox;
|
|
@@ -5,13 +5,15 @@ import icons_Checkbox from "../assets/icons/Checkbox.js";
|
|
|
5
5
|
import CheckboxOff from "../assets/icons/CheckboxOff.js";
|
|
6
6
|
import CheckboxPartial from "../assets/icons/CheckboxPartial.js";
|
|
7
7
|
import { ControlLabel } from "./FormControl.js";
|
|
8
|
+
import getFlexPosition from "./helpers/getFlexPosition.js";
|
|
8
9
|
import { marginProps } from "./helpers/styledProps.js";
|
|
9
10
|
import Icon from "./Icon/index.js";
|
|
10
|
-
const Checkbox_Checkbox = ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, ...props })=>{
|
|
11
|
+
const Checkbox_Checkbox = ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, align, ...props })=>{
|
|
11
12
|
const labelRight = 'right' === labelPosition;
|
|
12
13
|
const isControlled = 'boolean' == typeof checked;
|
|
13
14
|
return /*#__PURE__*/ jsx(ControlContainer, {
|
|
14
15
|
labelRight: labelRight,
|
|
16
|
+
align: align,
|
|
15
17
|
...isControlled ? {
|
|
16
18
|
isSelected: checked
|
|
17
19
|
} : {},
|
|
@@ -43,11 +45,11 @@ const Checkbox_Checkbox = ({ label, labelPosition, checked, partial, disabled, r
|
|
|
43
45
|
}
|
|
44
46
|
});
|
|
45
47
|
};
|
|
46
|
-
const ControlContainer = styled(Checkbox)(({ theme: { accent, formControl }, labelRight, isDisabled, gap = 8 })=>({
|
|
48
|
+
const ControlContainer = styled(Checkbox)(({ theme: { accent, formControl }, labelRight, isDisabled, gap = 8, align })=>({
|
|
47
49
|
display: 'inline-flex',
|
|
48
50
|
flexDirection: labelRight ? 'row-reverse' : 'row',
|
|
49
51
|
justifyContent: labelRight ? 'flex-end' : 'flex-start',
|
|
50
|
-
alignItems: 'center',
|
|
52
|
+
alignItems: getFlexPosition(align) || 'center',
|
|
51
53
|
gap,
|
|
52
54
|
position: 'relative',
|
|
53
55
|
cursor: isDisabled ? 'not-allowed' : void 0,
|
|
@@ -34,7 +34,7 @@ declare const Form: {
|
|
|
34
34
|
className?: import("react-aria-components").SwitchProps["className"];
|
|
35
35
|
style?: import("react-aria-components").SwitchProps["style"];
|
|
36
36
|
} & Margin & Omit<import("react-aria-components").SwitchProps, "isDisabled" | "isSelected">) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
Checkbox: ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, ...props }: {
|
|
37
|
+
Checkbox: ({ label, labelPosition, checked, partial, disabled, readOnly, onChange, align, ...props }: {
|
|
38
38
|
id?: string;
|
|
39
39
|
label?: string;
|
|
40
40
|
labelPosition?: "left" | "right";
|
|
@@ -43,6 +43,7 @@ declare const Form: {
|
|
|
43
43
|
checked?: boolean;
|
|
44
44
|
partial?: boolean;
|
|
45
45
|
gap?: number;
|
|
46
|
+
align?: import("./types").FlexPosition;
|
|
46
47
|
onChange?: import("react-aria-components").CheckboxProps["onChange"];
|
|
47
48
|
className?: import("react-aria-components").CheckboxProps["className"];
|
|
48
49
|
style?: import("react-aria-components").CheckboxProps["style"];
|
|
@@ -19,8 +19,8 @@ const baseStyles = ({ theme: { input, accent }, backgroundColor, borderRadius, b
|
|
|
19
19
|
outlineOffset: -1,
|
|
20
20
|
transition: 'background-color 0.2s',
|
|
21
21
|
'&:focus-within': {
|
|
22
|
-
backgroundColor: backgroundColor || textOnly || isDisabled
|
|
23
|
-
outline:
|
|
22
|
+
backgroundColor: backgroundColor || textOnly || isDisabled ? void 0 : input.background.focused,
|
|
23
|
+
outline: isInvalid ? void 0 : `1px solid ${accent}`
|
|
24
24
|
},
|
|
25
25
|
'&:hover:not(:focus-within)': {
|
|
26
26
|
backgroundColor: isDisabled || isReadOnly || textOnly || backgroundColor ? void 0 : input.background.hover,
|
|
@@ -33,16 +33,16 @@ const disabledStyles = ({ theme: { input }, isDisabled })=>({
|
|
|
33
33
|
backgroundColor: isDisabled ? input.background.disabled : void 0,
|
|
34
34
|
pointerEvents: isDisabled ? 'none' : void 0
|
|
35
35
|
});
|
|
36
|
-
const invalidStyles = ({ theme: {
|
|
37
|
-
|
|
36
|
+
const invalidStyles = ({ theme: { color }, isInvalid })=>({
|
|
37
|
+
outline: isInvalid ? `1px solid ${color.error}` : void 0,
|
|
38
38
|
'&:hover:not(:focus-within)': {
|
|
39
|
-
|
|
39
|
+
outline: isInvalid ? `1px solid ${color.error}` : void 0
|
|
40
40
|
},
|
|
41
41
|
'&[data-invalid]': {
|
|
42
|
-
|
|
42
|
+
outline: `1px solid ${color.error}`
|
|
43
43
|
},
|
|
44
44
|
'&:hover:not(:focus-within)&[data-invalid]': {
|
|
45
|
-
|
|
45
|
+
outline: `1px solid ${color.error}`
|
|
46
46
|
}
|
|
47
47
|
});
|
|
48
48
|
const readOnlyStyles = ({ isReadOnly })=>({
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import getFlexPosition from "../helpers/getFlexPosition.js";
|
|
1
2
|
import isPropAllowed from "../helpers/isPropAllowed.js";
|
|
2
3
|
const preventProps = {
|
|
3
4
|
shouldForwardProp: (prop)=>isPropAllowed(prop, [
|
|
@@ -38,12 +39,9 @@ const baseStyles = ({ theme: { optionItem, scale4 }, color, accented, selected,
|
|
|
38
39
|
}
|
|
39
40
|
};
|
|
40
41
|
};
|
|
41
|
-
const positionStyles = ({ contentPosition })=>{
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
justifyContent: position
|
|
45
|
-
};
|
|
46
|
-
};
|
|
42
|
+
const positionStyles = ({ contentPosition })=>({
|
|
43
|
+
justifyContent: getFlexPosition(contentPosition)
|
|
44
|
+
});
|
|
47
45
|
const listItemStyles = [
|
|
48
46
|
baseStyles,
|
|
49
47
|
positionStyles
|
package/build/components/Menu.js
CHANGED
|
@@ -2,6 +2,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import styled from "@emotion/styled";
|
|
3
3
|
import react, { cloneElement, useState } from "react";
|
|
4
4
|
import react_keyed_flatten_children from "react-keyed-flatten-children";
|
|
5
|
+
import getFlexPosition from "./helpers/getFlexPosition.js";
|
|
5
6
|
import { paddingProps } from "./helpers/styledProps.js";
|
|
6
7
|
import Icon from "./Icon/index.js";
|
|
7
8
|
const Menu = ({ vertical, backgroundColor, children, ...rest })=>{
|
|
@@ -138,12 +139,9 @@ const MenuItem = styled.button({
|
|
|
138
139
|
outline: `${accent} solid 1px`,
|
|
139
140
|
outlineOffset: -1
|
|
140
141
|
}
|
|
141
|
-
}), ({ contentPosition })=>{
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
justifyContent: position
|
|
145
|
-
};
|
|
146
|
-
});
|
|
142
|
+
}), ({ contentPosition })=>({
|
|
143
|
+
justifyContent: getFlexPosition(contentPosition)
|
|
144
|
+
}));
|
|
147
145
|
const MenuGroup = styled.div(({ theme, backgroundColor })=>({
|
|
148
146
|
display: 'flex',
|
|
149
147
|
flexDirection: 'column',
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { CSSProperties, ReactNode, RefObject } from 'react';
|
|
2
2
|
import { type HeadingProps } from 'react-aria-components';
|
|
3
3
|
import type { Attributes } from './typeDefs/elementTypes';
|
|
4
4
|
import type { FlexPosition, Height, Margin, MaxWidthHeight, MinWidthHeight, Padding, PositionType, WidthHeight } from './types';
|
|
@@ -23,8 +23,6 @@ type ModalProps = {
|
|
|
23
23
|
borderRadius?: number | string;
|
|
24
24
|
/** Overrides the overflow of the modal container */
|
|
25
25
|
overflow?: CSSProperties['overflow'];
|
|
26
|
-
/** Styles the Modal as an actionable toast */
|
|
27
|
-
small?: boolean;
|
|
28
26
|
/** Removes the overlay background, and allows the modal to be positioned anywhere on the page */
|
|
29
27
|
noOverlay?: boolean;
|
|
30
28
|
/** Prevents the modal from being interacted with */
|
|
@@ -55,7 +53,7 @@ type ModalProps = {
|
|
|
55
53
|
'aria-label'?: string;
|
|
56
54
|
} & WidthHeight & MaxWidthHeight & MinWidthHeight & Padding & DivAttributes;
|
|
57
55
|
declare const Modal: {
|
|
58
|
-
({ children, visible, width, height, onClose, closeIcon, preventOverlayClose, overlayBlur, overlayColor, backgroundColor,
|
|
56
|
+
({ children, visible, width, height, onClose, closeIcon, preventOverlayClose, overlayBlur, overlayColor, backgroundColor, noOverlay, inert, drawer, drawerDirection, scopeRef, centerX, centerY, position, top, bottom, right, left, zIndex, ...props }: ModalProps): import("react/jsx-runtime").JSX.Element;
|
|
59
57
|
Header: {
|
|
60
58
|
({ children, ...props }: HeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
61
59
|
displayName: string;
|
|
@@ -88,7 +86,6 @@ type BodyProps = {
|
|
|
88
86
|
type FooterProps = {
|
|
89
87
|
children: ReactNode;
|
|
90
88
|
justify?: FlexPosition;
|
|
91
|
-
inline?: boolean;
|
|
92
89
|
gap?: number | string;
|
|
93
90
|
} & Margin & DivAttributes;
|
|
94
91
|
export default Modal;
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { keyframes } from "@emotion/react";
|
|
3
3
|
import styled from "@emotion/styled";
|
|
4
|
-
import { cloneElement } from "react";
|
|
5
4
|
import { Dialog, Heading, Modal, ModalOverlay } from "react-aria-components";
|
|
6
|
-
import react_keyed_flatten_children from "react-keyed-flatten-children";
|
|
7
5
|
import { marginProps, maxWidthHeightProps, minWidthHeightProps, paddingProps } from "./helpers/styledProps.js";
|
|
8
6
|
import Icon from "./Icon/index.js";
|
|
9
7
|
import PortalScope from "./PortalScope.js";
|
|
10
|
-
const Modal_Modal = ({ children, visible, width, height, onClose, closeIcon, preventOverlayClose, overlayBlur = true, overlayColor, backgroundColor,
|
|
8
|
+
const Modal_Modal = ({ children, visible, width, height, onClose, closeIcon, preventOverlayClose, overlayBlur = true, overlayColor, backgroundColor, noOverlay, inert, drawer, drawerDirection = 'right', scopeRef, centerX, centerY, position, top, bottom, right, left, zIndex, ...props })=>{
|
|
11
9
|
const { 'aria-label': ariaLabel, ...rest } = props;
|
|
12
|
-
const modalContent = react_keyed_flatten_children(children).map((child)=>{
|
|
13
|
-
if (child) return /*#__PURE__*/ cloneElement(child, {
|
|
14
|
-
inline: small
|
|
15
|
-
});
|
|
16
|
-
return null;
|
|
17
|
-
});
|
|
18
10
|
const handleOpenChange = (open)=>{
|
|
19
11
|
if (!open) onClose();
|
|
20
12
|
};
|
|
@@ -49,7 +41,6 @@ const Modal_Modal = ({ children, visible, width, height, onClose, closeIcon, pre
|
|
|
49
41
|
width: width,
|
|
50
42
|
height: height,
|
|
51
43
|
backgroundColor: backgroundColor,
|
|
52
|
-
small: small,
|
|
53
44
|
noOverlay: noOverlay,
|
|
54
45
|
drawer: drawer,
|
|
55
46
|
drawerDirection: drawerDirection,
|
|
@@ -57,9 +48,8 @@ const Modal_Modal = ({ children, visible, width, height, onClose, closeIcon, pre
|
|
|
57
48
|
centerY: centerY,
|
|
58
49
|
...rest,
|
|
59
50
|
children: [
|
|
60
|
-
|
|
51
|
+
children,
|
|
61
52
|
closeIcon && /*#__PURE__*/ jsx(Close, {
|
|
62
|
-
inline: small,
|
|
63
53
|
children: /*#__PURE__*/ jsx(Icon, {
|
|
64
54
|
name: "close",
|
|
65
55
|
onClick: onClose,
|
|
@@ -108,7 +98,7 @@ const Footer = ({ children, ...props })=>/*#__PURE__*/ jsx(ModalFooter, {
|
|
|
108
98
|
...props,
|
|
109
99
|
children: children
|
|
110
100
|
});
|
|
111
|
-
const ModalFooter = styled.div(({ justify = 'end',
|
|
101
|
+
const ModalFooter = styled.div(({ justify = 'end', gap })=>{
|
|
112
102
|
const justifyOptions = {
|
|
113
103
|
start: 'flex-start',
|
|
114
104
|
end: 'flex-end',
|
|
@@ -120,21 +110,20 @@ const ModalFooter = styled.div(({ justify = 'end', inline, gap })=>{
|
|
|
120
110
|
display: 'flex',
|
|
121
111
|
alignItems: 'center',
|
|
122
112
|
justifyContent: justify ? justifyOptions[justify] : void 0,
|
|
123
|
-
marginTop:
|
|
113
|
+
marginTop: 8,
|
|
124
114
|
gap
|
|
125
115
|
};
|
|
126
116
|
}, marginProps);
|
|
127
|
-
const ModalContainer = styled.div(({ theme, width, height, backgroundColor,
|
|
117
|
+
const ModalContainer = styled.div(({ theme, width, height, backgroundColor, borderRadius, overflow, drawer, drawerDirection })=>({
|
|
128
118
|
display: 'flex',
|
|
129
|
-
flexDirection:
|
|
130
|
-
alignItems: small ? 'center' : void 0,
|
|
119
|
+
flexDirection: 'column',
|
|
131
120
|
backgroundColor: backgroundColor || theme.modal.background,
|
|
132
121
|
color: theme.scale10,
|
|
133
122
|
boxShadow: drawer ? 'left' === drawerDirection ? '8px 0 20px rgba(0, 0, 0, 0.2)' : '-8px 0 20px rgba(0, 0, 0, 0.2)' : theme.elevation3,
|
|
134
123
|
width: width || 'max-content',
|
|
135
124
|
height: drawer ? height || '100%' : height || 'max-content',
|
|
136
125
|
borderRadius: drawer ? 0 : borderRadius || theme.size.sm,
|
|
137
|
-
padding:
|
|
126
|
+
padding: theme.size.lg,
|
|
138
127
|
overflow: overflow || 'hidden'
|
|
139
128
|
}), ({ noOverlay, drawer })=>!noOverlay && !drawer && {
|
|
140
129
|
position: 'absolute',
|
|
@@ -157,14 +146,11 @@ const ModalContainer = styled.div(({ theme, width, height, backgroundColor, smal
|
|
|
157
146
|
const Close = styled.div({
|
|
158
147
|
display: 'flex',
|
|
159
148
|
justifyContent: 'center',
|
|
160
|
-
alignItems: 'center'
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
top: 8,
|
|
166
|
-
right: 8
|
|
167
|
-
});
|
|
149
|
+
alignItems: 'center',
|
|
150
|
+
position: 'absolute',
|
|
151
|
+
top: 8,
|
|
152
|
+
right: 8
|
|
153
|
+
});
|
|
168
154
|
const Overlay = styled(ModalOverlay)(({ color, blur, noOverlay, centerX, centerY, position, top, bottom, right, left, zIndex, width, height })=>({
|
|
169
155
|
position: position || 'fixed',
|
|
170
156
|
top: top || (left || bottom || right ? void 0 : 0),
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import styled from "@emotion/styled";
|
|
2
|
+
import getFlexPosition from "../helpers/getFlexPosition.js";
|
|
2
3
|
import isPropAllowed from "../helpers/isPropAllowed.js";
|
|
3
4
|
const contentPreventProps = {
|
|
4
5
|
shouldForwardProp: (prop)=>isPropAllowed(prop, [
|
|
@@ -40,12 +41,9 @@ const Item = styled('div', contentPreventProps)({
|
|
|
40
41
|
cursor: 'inherit'
|
|
41
42
|
}
|
|
42
43
|
};
|
|
43
|
-
}, ({ contentPosition })=>{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
justifyContent: position
|
|
47
|
-
};
|
|
48
|
-
}, ({ theme, section })=>section && {
|
|
44
|
+
}, ({ contentPosition })=>({
|
|
45
|
+
justifyContent: getFlexPosition(contentPosition)
|
|
46
|
+
}), ({ theme, section })=>section && {
|
|
49
47
|
backgroundColor: theme.scale0,
|
|
50
48
|
padding: '0 16px',
|
|
51
49
|
color: theme.scale6,
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
+
import getFlexPosition from "../helpers/getFlexPosition.js";
|
|
1
2
|
import { paddingProps } from "../helpers/styledProps.js";
|
|
2
|
-
const getPosition = (position)=>{
|
|
3
|
-
if (!position) return;
|
|
4
|
-
return 'start' === position || 'end' === position ? `flex-${position}` : position;
|
|
5
|
-
};
|
|
6
3
|
const baseStyles = ({ direction, justify, align = 'center', gap = 8 })=>({
|
|
7
4
|
display: 'flex',
|
|
8
|
-
justifyContent:
|
|
9
|
-
alignItems:
|
|
5
|
+
justifyContent: getFlexPosition(justify),
|
|
6
|
+
alignItems: getFlexPosition(align),
|
|
10
7
|
flexDirection: direction,
|
|
11
8
|
width: '100%',
|
|
12
9
|
height: '100%',
|
package/build/tailwind/theme.css
CHANGED
|
@@ -115,6 +115,123 @@
|
|
|
115
115
|
--color-background5: #596A74;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
.mono {
|
|
119
|
+
--color-logo1: #0074F4;
|
|
120
|
+
--color-logo2: #00A9E2;
|
|
121
|
+
--color-logo3: #67C728;
|
|
122
|
+
--color-brand: #0074F4;
|
|
123
|
+
--color-brandShade1: #0068DC;
|
|
124
|
+
--color-brandShade2: #005DC3;
|
|
125
|
+
--color-brandDark: #4C9EF7;
|
|
126
|
+
--color-brandDarkShade1: #5EA8F8;
|
|
127
|
+
--color-brandTint0: rgba(0,116,244,0.05);
|
|
128
|
+
--color-brandTint1: rgba(0,116,244,0.1);
|
|
129
|
+
--color-brandTint2: rgba(0,116,244,0.2);
|
|
130
|
+
--color-brandTint3: rgba(0,116,244,0.3);
|
|
131
|
+
--color-brandTint4: rgba(0,116,244,0.4);
|
|
132
|
+
--color-brandBackground0: #121212;
|
|
133
|
+
--color-brandBackground1: #1e1e1e;
|
|
134
|
+
--color-brandBackground2: #292929;
|
|
135
|
+
--color-brandBackground3: #3a3a3a;
|
|
136
|
+
--color-brandBackground4: #4b4b4b;
|
|
137
|
+
--color-brandBackground5: #5c5c5c;
|
|
138
|
+
--color-error: #FF6068;
|
|
139
|
+
--color-errorShade1: #E6565E;
|
|
140
|
+
--color-errorShade2: #CC4D53;
|
|
141
|
+
--color-errorTint0: rgba(255,96,104,0.05);
|
|
142
|
+
--color-errorTint1: rgba(255,96,104,0.1);
|
|
143
|
+
--color-errorTint2: rgba(255,96,104,0.2);
|
|
144
|
+
--color-errorTint3: rgba(255,96,104,0.3);
|
|
145
|
+
--color-errorTint4: rgba(255,96,104,0.4);
|
|
146
|
+
--color-warning: #FF9900;
|
|
147
|
+
--color-warningShade1: #E68A00;
|
|
148
|
+
--color-warningShade2: #CC7A00;
|
|
149
|
+
--color-warningTint0: rgba(255,153,0,0.05);
|
|
150
|
+
--color-warningTint1: rgba(255,153,0,0.1);
|
|
151
|
+
--color-warningTint2: rgba(255,153,0,0.2);
|
|
152
|
+
--color-warningTint3: rgba(255,153,0,0.3);
|
|
153
|
+
--color-warningTint4: rgba(255,153,0,0.4);
|
|
154
|
+
--color-alert: #F0BB00;
|
|
155
|
+
--color-alertShade1: #E4B200;
|
|
156
|
+
--color-alertShade2: #C09600;
|
|
157
|
+
--color-alertTint0: rgba(240,187,0,0.05);
|
|
158
|
+
--color-alertTint1: rgba(240,187,0,0.1);
|
|
159
|
+
--color-alertTint2: rgba(240,187,0,0.2);
|
|
160
|
+
--color-alertTint3: rgba(240,187,0,0.3);
|
|
161
|
+
--color-alertTint4: rgba(240,187,0,0.4);
|
|
162
|
+
--color-success: #00E284;
|
|
163
|
+
--color-successShade1: #00AF3B;
|
|
164
|
+
--color-successShade2: #009B35;
|
|
165
|
+
--color-successTint0: rgba(0,226,132,0.05);
|
|
166
|
+
--color-successTint1: rgba(0,226,132,0.1);
|
|
167
|
+
--color-successTint2: rgba(0,226,132,0.2);
|
|
168
|
+
--color-successTint3: rgba(0,226,132,0.3);
|
|
169
|
+
--color-successTint4: rgba(0,226,132,0.4);
|
|
170
|
+
--color-grayscale0: rgba(18,18,18,0.05);
|
|
171
|
+
--color-grayscale1: rgba(18,18,18,0.1);
|
|
172
|
+
--color-grayscale2: rgba(18,18,18,0.2);
|
|
173
|
+
--color-grayscale3: rgba(18,18,18,0.3);
|
|
174
|
+
--color-grayscale4: rgba(18,18,18,0.4);
|
|
175
|
+
--color-grayscale5: rgba(18,18,18,0.5);
|
|
176
|
+
--color-grayscale6: rgba(18,18,18,0.6);
|
|
177
|
+
--color-grayscale7: rgba(18,18,18,0.7);
|
|
178
|
+
--color-grayscale8: rgba(18,18,18,0.8);
|
|
179
|
+
--color-grayscale9: rgba(18,18,18,0.9);
|
|
180
|
+
--color-grayscale10: #121212;
|
|
181
|
+
--color-contrast0: rgba(255,255,255,0.05);
|
|
182
|
+
--color-contrast1: rgba(255,255,255,0.1);
|
|
183
|
+
--color-contrast2: rgba(255,255,255,0.2);
|
|
184
|
+
--color-contrast3: rgba(255,255,255,0.3);
|
|
185
|
+
--color-contrast4: rgba(255,255,255,0.4);
|
|
186
|
+
--color-contrast5: rgba(255,255,255,0.5);
|
|
187
|
+
--color-contrast6: rgba(255,255,255,0.6);
|
|
188
|
+
--color-contrast7: rgba(255,255,255,0.7);
|
|
189
|
+
--color-contrast8: rgba(255,255,255,0.8);
|
|
190
|
+
--color-contrast9: rgba(255,255,255,0.9);
|
|
191
|
+
--color-contrast10: #FFFFFF;
|
|
192
|
+
--color-scale0: rgba(18,18,18,0.05);
|
|
193
|
+
--color-scale1: rgba(18,18,18,0.1);
|
|
194
|
+
--color-scale2: rgba(18,18,18,0.2);
|
|
195
|
+
--color-scale3: rgba(18,18,18,0.3);
|
|
196
|
+
--color-scale4: rgba(18,18,18,0.4);
|
|
197
|
+
--color-scale5: rgba(18,18,18,0.5);
|
|
198
|
+
--color-scale6: rgba(18,18,18,0.6);
|
|
199
|
+
--color-scale7: rgba(18,18,18,0.7);
|
|
200
|
+
--color-scale8: rgba(18,18,18,0.8);
|
|
201
|
+
--color-scale9: rgba(18,18,18,0.9);
|
|
202
|
+
--color-scale10: #121212;
|
|
203
|
+
--color-accent: #0074F4;
|
|
204
|
+
--color-accentShade: #0068DC;
|
|
205
|
+
--color-background0: #FFFFFF;
|
|
206
|
+
--color-background1: #F2F3F4;
|
|
207
|
+
--color-background2: #E6E9EB;
|
|
208
|
+
--color-background3: #CCD2D6;
|
|
209
|
+
--color-background4: #B3BCC2;
|
|
210
|
+
--color-background5: #99A5AD;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.mono.dark {
|
|
214
|
+
--color-scale0: rgba(255,255,255,0.05);
|
|
215
|
+
--color-scale1: rgba(255,255,255,0.1);
|
|
216
|
+
--color-scale2: rgba(255,255,255,0.2);
|
|
217
|
+
--color-scale3: rgba(255,255,255,0.3);
|
|
218
|
+
--color-scale4: rgba(255,255,255,0.4);
|
|
219
|
+
--color-scale5: rgba(255,255,255,0.5);
|
|
220
|
+
--color-scale6: rgba(255,255,255,0.6);
|
|
221
|
+
--color-scale7: rgba(255,255,255,0.7);
|
|
222
|
+
--color-scale8: rgba(255,255,255,0.8);
|
|
223
|
+
--color-scale9: rgba(255,255,255,0.9);
|
|
224
|
+
--color-scale10: #FFFFFF;
|
|
225
|
+
--color-accent: #4C9EF7;
|
|
226
|
+
--color-accentShade: #5EA8F8;
|
|
227
|
+
--color-background0: #121212;
|
|
228
|
+
--color-background1: #1e1e1e;
|
|
229
|
+
--color-background2: #292929;
|
|
230
|
+
--color-background3: #3a3a3a;
|
|
231
|
+
--color-background4: #4b4b4b;
|
|
232
|
+
--color-background5: #5c5c5c;
|
|
233
|
+
}
|
|
234
|
+
|
|
118
235
|
@utility head-1 {
|
|
119
236
|
font-size: 28px;
|
|
120
237
|
font-weight: 500;
|
package/build/theme/index.d.ts
CHANGED
|
@@ -2,14 +2,17 @@ import type { ITheme } from './ThemeTypes';
|
|
|
2
2
|
type Theme = {
|
|
3
3
|
light: ITheme;
|
|
4
4
|
dark: ITheme;
|
|
5
|
+
monoDark: ITheme;
|
|
6
|
+
monoLight: ITheme;
|
|
5
7
|
};
|
|
6
8
|
declare const theme: Theme;
|
|
7
9
|
export default theme;
|
|
8
10
|
export type { ButtonState, ITheme, ThemeProp } from './ThemeTypes';
|
|
9
|
-
export type ThemeClasses = 'light' | 'dark';
|
|
11
|
+
export type ThemeClasses = 'light' | 'dark' | 'mono';
|
|
12
|
+
export type ThemeOptionId = 'light' | 'dark' | 'monoDark' | 'monoLight';
|
|
10
13
|
export declare const themeClasses: ThemeClasses[];
|
|
11
14
|
export type ThemeOption = {
|
|
12
|
-
id:
|
|
15
|
+
id: ThemeOptionId;
|
|
13
16
|
value: string;
|
|
14
17
|
classes: ThemeClasses[];
|
|
15
18
|
};
|
package/build/theme/index.js
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import dark from "./core/dark/dark.js";
|
|
2
2
|
import light from "./core/light/light.js";
|
|
3
|
+
import dark_dark from "./mono/dark/dark.js";
|
|
4
|
+
import light_light from "./mono/light/light.js";
|
|
3
5
|
const theme = {
|
|
4
6
|
light: light,
|
|
5
|
-
dark: dark
|
|
7
|
+
dark: dark,
|
|
8
|
+
monoDark: dark_dark,
|
|
9
|
+
monoLight: light_light
|
|
6
10
|
};
|
|
7
11
|
const lib_theme = theme;
|
|
8
12
|
const themeClasses = [
|
|
9
13
|
'light',
|
|
10
|
-
'dark'
|
|
14
|
+
'dark',
|
|
15
|
+
'mono'
|
|
11
16
|
];
|
|
12
17
|
const themeOptions = [
|
|
13
18
|
{
|
|
@@ -23,6 +28,22 @@ const themeOptions = [
|
|
|
23
28
|
classes: [
|
|
24
29
|
'dark'
|
|
25
30
|
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: 'monoDark',
|
|
34
|
+
value: 'Mono Dark',
|
|
35
|
+
classes: [
|
|
36
|
+
'mono',
|
|
37
|
+
'dark'
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
id: 'monoLight',
|
|
42
|
+
value: 'Mono Light',
|
|
43
|
+
classes: [
|
|
44
|
+
'mono',
|
|
45
|
+
'light'
|
|
46
|
+
]
|
|
26
47
|
}
|
|
27
48
|
];
|
|
28
49
|
export { lib_theme as default, themeClasses, themeOptions };
|