@conveyorhq/arrow-ds 2.0.0-beta.7 → 2.0.0-beta.9
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/package.json +15 -14
- package/public/components/Accordion/Accordion.js +8 -10
- package/public/components/Avatar/Avatar.js +20 -19
- package/public/components/Button/Button.js +2 -2
- package/public/components/ConveyorLogo/ConveyorLogo.js +6 -6
- package/public/components/Drawer/Drawer.js +7 -7
- package/public/components/Frame/Frame.d.ts +1 -1
- package/public/components/Icon/Icon.d.ts +1 -0
- package/public/components/Icon/Icon.js +3 -1
- package/public/components/MenuRenderer/MenuRenderer.js +4 -7
- package/public/components/Modal/Modal.js +1 -1
- package/public/components/OptionButton/OptionButton.js +18 -13
- package/public/components/Select/Select.js +4 -4
- package/public/components/Select/SelectPopover.js +6 -6
- package/public/components/Select/index.d.ts +2 -0
- package/public/components/Select/index.js +3 -0
- package/public/components/Select/theme.js +22 -22
- package/public/components/Svg/Svg.d.ts +3 -3
- package/public/components/Svg/Svg.js +1 -2
- package/public/components/Tooltip/Tooltip.js +11 -19
- package/public/components/VisuallyHidden/VisuallyHidden.d.ts +2 -1
- package/public/components/VisuallyHidden/VisuallyHidden.js +3 -5
- package/public/css/styles.css +139 -59
- package/public/css/styles.min.css +1 -1
- package/public/css/styles.min.css.map +1 -1
- package/public/hooks/index.d.ts +3 -0
- package/public/hooks/index.js +7 -1
- package/public/hooks/useMatchMedia.d.ts +1 -0
- package/public/hooks/useMatchMedia.js +27 -0
- package/public/hooks/usePrefersReducedMotion.d.ts +1 -0
- package/public/hooks/usePrefersReducedMotion.js +9 -0
- package/public/hooks/useScreenOrientation.d.ts +1 -0
- package/public/hooks/useScreenOrientation.js +24 -0
- package/public/{style-dictionary → src/style-dictionary}/dist/tokens.css +1 -0
- package/public/src/style-dictionary/dist/tokens.d.ts +428 -0
- package/public/src/style-dictionary/dist/tokens.js +428 -0
- package/public/src/style-dictionary/dist/tokens.module.js +428 -0
- package/public/src/style-dictionary/tailwind.config.js +87 -0
- package/public/storybook-components/EnumTable.js +2 -1
- package/public/storybook-components/Story.d.ts +2 -1
- package/public/storybook-components/Story.js +4 -1
- package/public/style-dictionary/dist/tokens.d.ts +428 -422
- package/public/style-dictionary/dist/tokens.js +415 -416
- package/public/style-dictionary/dist/tokens.module.d.ts +431 -0
- package/public/style-dictionary/dist/tokens.module.js +412 -415
- package/public/style-dictionary/src/border-radius.d.ts +31 -0
- package/public/style-dictionary/src/border-radius.js +10 -9
- package/public/style-dictionary/src/border-width.d.ts +21 -0
- package/public/style-dictionary/src/border-width.js +9 -8
- package/public/style-dictionary/src/color.d.ts +249 -0
- package/public/style-dictionary/src/color.js +97 -95
- package/public/style-dictionary/src/font-size.d.ts +45 -0
- package/public/style-dictionary/src/font-size.js +14 -13
- package/public/style-dictionary/src/font-weight.d.ts +13 -0
- package/public/style-dictionary/src/font-weight.js +6 -5
- package/public/style-dictionary/src/height.d.ts +215 -0
- package/public/style-dictionary/src/height.js +10 -10
- package/public/style-dictionary/src/leading.d.ts +17 -0
- package/public/style-dictionary/src/leading.js +7 -6
- package/public/style-dictionary/src/screen-width.d.ts +17 -0
- package/public/style-dictionary/src/screen-width.js +7 -6
- package/public/style-dictionary/src/shadow.d.ts +63 -0
- package/public/style-dictionary/src/shadow.js +19 -18
- package/public/style-dictionary/src/spacing.d.ts +197 -0
- package/public/style-dictionary/src/spacing.js +68 -67
- package/public/style-dictionary/src/tracking.d.ts +13 -0
- package/public/style-dictionary/src/tracking.js +6 -5
- package/public/style-dictionary/src/type.d.ts +13 -0
- package/public/style-dictionary/src/type.js +32 -31
- package/public/style-dictionary/src/width.d.ts +287 -0
- package/public/style-dictionary/src/width.js +29 -29
- package/public/style-dictionary/src/z-index.d.ts +53 -0
- package/public/style-dictionary/src/z-index.js +20 -19
- package/public/style-dictionary/tailwind.config.d.ts +392 -0
- package/public/style-dictionary/tailwind.config.js +51 -72
- package/src/components/Accordion/Accordion.tsx +39 -27
- package/src/components/Avatar/Avatar.tsx +20 -19
- package/src/components/Button/Button.tsx +3 -3
- package/src/components/Button/index.css +12 -1
- package/src/components/Card/Card.story.mdx +45 -37
- package/src/components/ConveyorLogo/ConveyorLogo.tsx +6 -6
- package/src/components/Drawer/Drawer.tsx +1 -1
- package/src/components/Frame/Frame.story.mdx +140 -5
- package/src/components/Frame/Frame.tsx +1 -1
- package/src/components/Frame/index.css +8 -13
- package/src/components/Icon/Icon.tsx +3 -0
- package/src/components/MenuRenderer/MenuRenderer.tsx +7 -9
- package/src/components/Modal/Modal.tsx +1 -1
- package/src/components/Modal/index.css +8 -3
- package/src/components/OptionButton/OptionButton.story.mdx +91 -36
- package/src/components/OptionButton/OptionButton.tsx +19 -18
- package/src/components/OptionButton/index.css +13 -0
- package/src/components/Overlay/Overlay.story.mdx +26 -0
- package/src/components/Select/Select.tsx +4 -4
- package/src/components/Select/SelectPopover.tsx +6 -6
- package/src/components/Select/index.ts +14 -0
- package/src/components/Select/theme.ts +22 -22
- package/src/components/Svg/Svg.story.mdx +36 -0
- package/src/components/Svg/Svg.tsx +6 -4
- package/src/components/Text/Text.story.mdx +34 -0
- package/src/components/Tooltip/Tooltip.story.mdx +21 -0
- package/src/components/Tooltip/Tooltip.tsx +23 -27
- package/src/components/Tooltip/index.css +31 -0
- package/src/components/VisuallyHidden/VisuallyHidden.story.mdx +54 -0
- package/src/components/VisuallyHidden/VisuallyHidden.tsx +10 -5
- package/src/components/VisuallyHidden/index.css +3 -0
- package/src/css/components.css +2 -0
- package/src/docs/Colors.story.mdx +13 -13
- package/src/docs/Spacing.story.mdx +4 -20
- package/src/docs/Tokens.story.mdx +230 -0
- package/src/docs/Typography.story.mdx +17 -94
- package/src/docs/hooks/useDisclosureHook.story.mdx +58 -0
- package/src/docs/hooks/useKeyPressHook.story.mdx +54 -0
- package/src/docs/hooks/useMatchMediaHook.story.mdx +42 -0
- package/src/docs/hooks/useOutsideClickHook.story.mdx +56 -0
- package/src/docs/hooks/usePrefersReducedMotion.story.mdx +61 -0
- package/src/docs/hooks/useScreenOrientationHook.story.mdx +56 -0
- package/src/docs/hooks/useStepHook.story.mdx +102 -0
- package/src/hooks/index.ts +3 -0
- package/src/hooks/useMatchMedia.ts +40 -0
- package/src/hooks/usePrefersReducedMotion.ts +9 -0
- package/src/hooks/useScreenOrientation.ts +27 -0
- package/src/storybook-components/EnumTable.tsx +3 -2
- package/src/storybook-components/Story.tsx +13 -1
- package/src/style-dictionary/dist/tokens.css +378 -0
- package/src/style-dictionary/dist/tokens.d.ts +428 -0
- package/src/style-dictionary/dist/tokens.js +428 -0
- package/src/style-dictionary/dist/tokens.module.js +428 -0
- package/src/style-dictionary/src/border-radius.js +11 -0
- package/src/style-dictionary/src/border-width.js +10 -0
- package/src/style-dictionary/src/color.js +98 -0
- package/src/style-dictionary/src/font-size.js +15 -0
- package/src/style-dictionary/src/font-weight.js +7 -0
- package/src/style-dictionary/src/height.js +13 -0
- package/src/style-dictionary/src/leading.js +8 -0
- package/src/style-dictionary/src/screen-width.js +8 -0
- package/src/style-dictionary/src/shadow.js +19 -0
- package/src/style-dictionary/src/spacing.js +69 -0
- package/src/style-dictionary/src/tracking.js +7 -0
- package/src/style-dictionary/src/type.js +34 -0
- package/src/style-dictionary/src/width.js +32 -0
- package/src/style-dictionary/src/z-index.js +21 -0
- package/src/style-dictionary/tailwind.config.js +87 -0
- package/src/tokens/borders.ts +6 -0
- package/src/tokens/box-shadow.ts +3 -0
- package/src/tokens/colors.ts +6 -0
- package/src/tokens/font-family.ts +3 -0
- package/src/tokens/font-size.ts +3 -0
- package/src/tokens/font-weight.ts +3 -0
- package/src/tokens/height.ts +3 -0
- package/src/tokens/index.ts +3 -2
- package/src/tokens/letter-spacing.ts +3 -0
- package/src/tokens/line-height.ts +3 -0
- package/src/tokens/margin.ts +3 -0
- package/src/tokens/padding.ts +3 -0
- package/src/tokens/screens.ts +3 -0
- package/src/tokens/sizing-scale.ts +6 -0
- package/src/tokens/width.ts +9 -0
- package/src/tokens/will-change.ts +3 -0
- package/src/tokens/z-index.ts +3 -0
- package/src/types/index.ts +3 -0
- package/public/components/Overlay/Overlay.story.d.ts +0 -1
- package/public/components/Overlay/Overlay.story.js +0 -12
- package/public/components/Svg/Svg.story.d.ts +0 -1
- package/public/components/Svg/Svg.story.js +0 -14
- package/public/components/Text/Text.story.d.ts +0 -1
- package/public/components/Text/Text.story.js +0 -31
- package/public/components/VisuallyHidden/VisuallyHidden.story.d.ts +0 -1
- package/public/components/VisuallyHidden/VisuallyHidden.story.js +0 -36
- package/public/components/useStep/ExampleSetupWizard.d.ts +0 -4
- package/public/components/useStep/ExampleSetupWizard.js +0 -33
- package/src/components/Overlay/Overlay.md +0 -14
- package/src/components/Overlay/Overlay.story.tsx +0 -12
- package/src/components/Svg/Svg.md +0 -14
- package/src/components/Svg/Svg.story.tsx +0 -15
- package/src/components/Text/Text.md +0 -14
- package/src/components/Text/Text.story.tsx +0 -12
- package/src/components/VisuallyHidden/VisuallyHidden.md +0 -23
- package/src/components/VisuallyHidden/VisuallyHidden.story.tsx +0 -19
- package/src/components/useStep/ExampleSetupWizard.tsx +0 -63
- package/src/components/useStep/useStep.story.mdx +0 -76
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare type SvgProps = SVGAttributes<SVGElement>;
|
|
3
|
-
export declare const Svg:
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type SvgProps = React.SVGAttributes<SVGElement>;
|
|
3
|
+
export declare const Svg: React.ForwardRefExoticComponent<SvgProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -5,5 +5,4 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Svg = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
|
|
9
|
-
exports.Svg = Svg;
|
|
8
|
+
exports.Svg = react_1.default.forwardRef((props, forwardedRef) => (react_1.default.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", ref: forwardedRef }, props))));
|
|
@@ -5,37 +5,36 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Tooltip = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const classnames_1 = __importDefault(require("classnames"));
|
|
9
8
|
const Overlay_1 = __importDefault(require("react-overlays/Overlay"));
|
|
10
9
|
const auto_id_1 = require("@reach/auto-id");
|
|
11
10
|
const types_1 = require("../../types");
|
|
12
11
|
const hooks_1 = require("../../hooks");
|
|
13
12
|
const utilities_1 = require("../../utilities");
|
|
13
|
+
const tokens_1 = require("../../style-dictionary/dist/tokens");
|
|
14
14
|
const Box_1 = require("../Box");
|
|
15
|
+
const cn = utilities_1.bemHOF("Tooltip");
|
|
15
16
|
const TooltipArrow = react_1.default.forwardRef(({ placement, style }, forwaredRef) => {
|
|
16
17
|
const generatePositionStyles = () => {
|
|
17
18
|
if (placement.startsWith("top")) {
|
|
18
|
-
return { bottom:
|
|
19
|
+
return { bottom: `-${tokens_1.tokens.spacing[1]}`, left: 0 };
|
|
19
20
|
}
|
|
20
21
|
if (placement.startsWith("right")) {
|
|
21
|
-
return { left:
|
|
22
|
+
return { left: `-${tokens_1.tokens.spacing[1]}`, top: 0 };
|
|
22
23
|
}
|
|
23
24
|
if (placement.startsWith("bottom")) {
|
|
24
|
-
return { top:
|
|
25
|
+
return { top: `-${tokens_1.tokens.spacing[1]}`, left: 0 };
|
|
25
26
|
}
|
|
26
27
|
if (placement.startsWith("left")) {
|
|
27
|
-
return { right:
|
|
28
|
+
return { right: `-${tokens_1.tokens.spacing[1]}`, top: 0 };
|
|
28
29
|
}
|
|
29
30
|
return {};
|
|
30
31
|
};
|
|
31
32
|
const positionStyles = generatePositionStyles();
|
|
32
|
-
return (react_1.default.createElement(Box_1.Box, { ref: forwaredRef, className:
|
|
33
|
+
return (react_1.default.createElement(Box_1.Box, { ref: forwaredRef, className: cn({ e: "arrow" }), style: {
|
|
33
34
|
...style,
|
|
34
35
|
...positionStyles,
|
|
35
36
|
} },
|
|
36
|
-
react_1.default.createElement(Box_1.Box,
|
|
37
|
-
transform: "rotate(45deg)",
|
|
38
|
-
} })));
|
|
37
|
+
react_1.default.createElement(Box_1.Box, null)));
|
|
39
38
|
});
|
|
40
39
|
const Tooltip = ({ children, content, placement = "auto", delay = 200, }) => {
|
|
41
40
|
const { isOpen, onOpen, onClose } = hooks_1.useDisclosure();
|
|
@@ -118,21 +117,14 @@ const Tooltip = ({ children, content, placement = "auto", delay = 200, }) => {
|
|
|
118
117
|
popoverTimoutRef.current = popoverTimeout;
|
|
119
118
|
}
|
|
120
119
|
};
|
|
121
|
-
return (react_1.default.createElement(Box_1.Box, { ref: rootRef },
|
|
120
|
+
return content ? (react_1.default.createElement(Box_1.Box, { ref: rootRef },
|
|
122
121
|
react_1.default.cloneElement(react_1.default.Children.only(children), {
|
|
123
122
|
...triggerProps(children.props),
|
|
124
123
|
}),
|
|
125
124
|
content && (react_1.default.createElement(Overlay_1.default, { rootClose: true, show: isOpen, offset: [0, 8], onHide: onHide, container: rootRef, target: triggerRef, placement: placement, flip: placement && placement.indexOf("auto") !== -1 }, ({ props: contentProps, arrowProps, placement: overlayPlacement, }) => {
|
|
126
|
-
return (react_1.default.createElement(Box_1.Box, Object.assign({ id: id, className:
|
|
127
|
-
"bg-gray-900 text-white",
|
|
128
|
-
"text-bodySm leading-normal",
|
|
129
|
-
"inline-flex items-center",
|
|
130
|
-
"rounded shadow-popover",
|
|
131
|
-
"px-3 py-2",
|
|
132
|
-
"relative z-popup",
|
|
133
|
-
]), onMouseEnter: handlePopoverMouseEnter, onMouseLeave: handlePopoverMouseLeave }, contentProps),
|
|
125
|
+
return (react_1.default.createElement(Box_1.Box, Object.assign({ id: id, className: cn(), "data-component": "tooltip", onMouseEnter: handlePopoverMouseEnter, onMouseLeave: handlePopoverMouseLeave }, contentProps),
|
|
134
126
|
react_1.default.createElement(TooltipArrow, { ref: arrowProps.ref, placement: overlayPlacement, style: arrowProps.style }),
|
|
135
127
|
content));
|
|
136
|
-
}))));
|
|
128
|
+
})))) : (children);
|
|
137
129
|
};
|
|
138
130
|
exports.Tooltip = Tooltip;
|
|
@@ -7,8 +7,6 @@ exports.VisuallyHidden = void 0;
|
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const classnames_1 = __importDefault(require("classnames"));
|
|
9
9
|
const Box_1 = require("../Box");
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
exports.VisuallyHidden = VisuallyHidden;
|
|
10
|
+
const utilities_1 = require("../../utilities");
|
|
11
|
+
const cn = utilities_1.bemHOF("VisuallyHidden");
|
|
12
|
+
exports.VisuallyHidden = react_1.default.forwardRef(({ className, ...rest }, forwardedRef) => (react_1.default.createElement(Box_1.Box, Object.assign({ ref: forwardedRef, className: classnames_1.default(cn(), className) }, rest))));
|
package/public/css/styles.css
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
/*
|
|
41
|
-
! tailwindcss v3.0.
|
|
41
|
+
! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com
|
|
42
42
|
*/
|
|
43
43
|
|
|
44
44
|
/*
|
|
@@ -1386,6 +1386,7 @@ override built-in Image component classes */
|
|
|
1386
1386
|
|
|
1387
1387
|
.ads-Button {
|
|
1388
1388
|
position: relative;
|
|
1389
|
+
display: inline-flex;
|
|
1389
1390
|
align-items: center;
|
|
1390
1391
|
justify-content: center;
|
|
1391
1392
|
border-width: 1px;
|
|
@@ -1422,6 +1423,16 @@ override built-in Image component classes */
|
|
|
1422
1423
|
margin: auto;
|
|
1423
1424
|
}
|
|
1424
1425
|
|
|
1426
|
+
.ads-Button--block {
|
|
1427
|
+
display: flex;
|
|
1428
|
+
width: 100%;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.ads-Button--disabled {
|
|
1432
|
+
pointer-events: none;
|
|
1433
|
+
opacity: 0.5;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1425
1436
|
/* Button.Group */
|
|
1426
1437
|
|
|
1427
1438
|
.ads-ButtonGroup {
|
|
@@ -3146,27 +3157,22 @@ override built-in Image component classes */
|
|
|
3146
3157
|
|
|
3147
3158
|
.ads-Frame {
|
|
3148
3159
|
height: 100vh;
|
|
3149
|
-
--tw-bg-opacity: 1;
|
|
3150
|
-
background-color: rgb(249 251 252 / var(--tw-bg-opacity));
|
|
3151
3160
|
|
|
3152
|
-
grid-template-columns: [full] 1fr;
|
|
3153
|
-
grid-template-rows: [appbar] auto [topbar] auto [main] 1fr [bottombar] auto;
|
|
3161
|
+
grid-template-columns: [navbar] auto [full] 1fr [column-end];
|
|
3162
|
+
grid-template-rows: [appbar] auto [topbar] auto [main] 1fr [bottombar] auto [row-end];
|
|
3154
3163
|
}
|
|
3155
3164
|
|
|
3156
|
-
.ads-Frame-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3165
|
+
.ads-Frame-navbar {
|
|
3166
|
+
grid-column: navbar;
|
|
3167
|
+
grid-row: appbar / row-end;
|
|
3168
|
+
}
|
|
3160
3169
|
|
|
3170
|
+
.ads-Frame-appbar {
|
|
3161
3171
|
grid-column: full;
|
|
3162
3172
|
grid-row: appbar;
|
|
3163
3173
|
}
|
|
3164
3174
|
|
|
3165
3175
|
.ads-Frame-topbar {
|
|
3166
|
-
height: 100%;
|
|
3167
|
-
--tw-bg-opacity: 1;
|
|
3168
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
3169
|
-
|
|
3170
3176
|
grid-column: full;
|
|
3171
3177
|
grid-row: topbar;
|
|
3172
3178
|
}
|
|
@@ -3180,10 +3186,6 @@ override built-in Image component classes */
|
|
|
3180
3186
|
}
|
|
3181
3187
|
|
|
3182
3188
|
.ads-Frame-bottombar {
|
|
3183
|
-
height: 100%;
|
|
3184
|
-
--tw-bg-opacity: 1;
|
|
3185
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
3186
|
-
|
|
3187
3189
|
grid-column: full;
|
|
3188
3190
|
grid-row: bottombar;
|
|
3189
3191
|
}
|
|
@@ -4022,11 +4024,11 @@ override built-in Image component classes */
|
|
|
4022
4024
|
display: flex;
|
|
4023
4025
|
flex-direction: column;
|
|
4024
4026
|
justify-content: space-between;
|
|
4027
|
+
overflow-y: auto;
|
|
4025
4028
|
|
|
4026
4029
|
max-height: calc(
|
|
4027
4030
|
var(--modal-max-height) - 60px - 80px
|
|
4028
4031
|
);
|
|
4029
|
-
overflow-y: auto;
|
|
4030
4032
|
}
|
|
4031
4033
|
|
|
4032
4034
|
.ads-Modal-body--padded {
|
|
@@ -4036,6 +4038,10 @@ override built-in Image component classes */
|
|
|
4036
4038
|
padding-bottom: 16px;
|
|
4037
4039
|
}
|
|
4038
4040
|
|
|
4041
|
+
.ads-Modal-progressDots-container {
|
|
4042
|
+
position: relative;
|
|
4043
|
+
}
|
|
4044
|
+
|
|
4039
4045
|
.ads-Modal-progressDots {
|
|
4040
4046
|
pointer-events: none;
|
|
4041
4047
|
position: absolute;
|
|
@@ -4095,6 +4101,10 @@ override built-in Image component classes */
|
|
|
4095
4101
|
flex: 1 1 0;
|
|
4096
4102
|
}
|
|
4097
4103
|
|
|
4104
|
+
.ads-OptionButton--disabled {
|
|
4105
|
+
cursor: not-allowed;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4098
4108
|
.ads-OptionButton-content {
|
|
4099
4109
|
position: relative;
|
|
4100
4110
|
z-index: 1;
|
|
@@ -4118,6 +4128,11 @@ override built-in Image component classes */
|
|
|
4118
4128
|
color: rgb(71 104 125 / var(--tw-text-opacity));
|
|
4119
4129
|
}
|
|
4120
4130
|
|
|
4131
|
+
.ads-OptionButton--disabled .ads-OptionButton-heading, .ads-OptionButton--disabled .ads-OptionButton-description {
|
|
4132
|
+
--tw-text-opacity: 1;
|
|
4133
|
+
color: rgb(134 163 181 / var(--tw-text-opacity));
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4121
4136
|
.ads-OptionButton-input {
|
|
4122
4137
|
border: 0;
|
|
4123
4138
|
clip: rect(1px, 1px, 1px, 1px);
|
|
@@ -4165,6 +4180,11 @@ override built-in Image component classes */
|
|
|
4165
4180
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
4166
4181
|
}
|
|
4167
4182
|
|
|
4183
|
+
.ads-OptionButton--disabled .ads-OptionButton-backdrop {
|
|
4184
|
+
--tw-bg-opacity: 1;
|
|
4185
|
+
background-color: rgb(237 243 247 / var(--tw-bg-opacity));
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4168
4188
|
.ads-OptionButton-selected {
|
|
4169
4189
|
position: absolute;
|
|
4170
4190
|
left: 0;
|
|
@@ -6125,6 +6145,47 @@ override built-in Image component classes */
|
|
|
6125
6145
|
margin-right: 8px;
|
|
6126
6146
|
}
|
|
6127
6147
|
|
|
6148
|
+
.ads-Tooltip {
|
|
6149
|
+
z-index: 400;
|
|
6150
|
+
display: inline-flex;
|
|
6151
|
+
max-width: 256px;
|
|
6152
|
+
align-items: center;
|
|
6153
|
+
border-radius: 4px;
|
|
6154
|
+
--tw-bg-opacity: 1;
|
|
6155
|
+
background-color: rgb(0 27 40 / var(--tw-bg-opacity));
|
|
6156
|
+
padding-left: 12px;
|
|
6157
|
+
padding-right: 12px;
|
|
6158
|
+
padding-top: 8px;
|
|
6159
|
+
padding-bottom: 8px;
|
|
6160
|
+
font-size: 12px;
|
|
6161
|
+
line-height: 1.5;
|
|
6162
|
+
--tw-text-opacity: 1;
|
|
6163
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
6164
|
+
--tw-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
6165
|
+
--tw-shadow-colored: 0 0 3px var(--tw-shadow-color), 0 10px 20px var(--tw-shadow-color);
|
|
6166
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
6167
|
+
}
|
|
6168
|
+
|
|
6169
|
+
.ads-Tooltip-arrow {
|
|
6170
|
+
z-index: -1;
|
|
6171
|
+
height: 8px;
|
|
6172
|
+
width: 8px;
|
|
6173
|
+
}
|
|
6174
|
+
|
|
6175
|
+
.ads-Tooltip-arrow > div {
|
|
6176
|
+
position: absolute;
|
|
6177
|
+
top: 0;
|
|
6178
|
+
left: 0;
|
|
6179
|
+
height: 8px;
|
|
6180
|
+
width: 8px;
|
|
6181
|
+
--tw-bg-opacity: 1;
|
|
6182
|
+
background-color: rgb(0 27 40 / var(--tw-bg-opacity));
|
|
6183
|
+
|
|
6184
|
+
-webkit-transform: rotate(45deg);
|
|
6185
|
+
|
|
6186
|
+
transform: rotate(45deg);
|
|
6187
|
+
}
|
|
6188
|
+
|
|
6128
6189
|
.ads-Truncate {
|
|
6129
6190
|
display: table;
|
|
6130
6191
|
width: 100%;
|
|
@@ -6140,6 +6201,18 @@ override built-in Image component classes */
|
|
|
6140
6201
|
overflow: hidden;
|
|
6141
6202
|
}
|
|
6142
6203
|
|
|
6204
|
+
.ads-VisuallyHidden {
|
|
6205
|
+
border: 0;
|
|
6206
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
6207
|
+
height: 1px;
|
|
6208
|
+
margin: -1px;
|
|
6209
|
+
overflow: hidden;
|
|
6210
|
+
padding: 0;
|
|
6211
|
+
position: absolute;
|
|
6212
|
+
top: 0;
|
|
6213
|
+
width: 1px;
|
|
6214
|
+
}
|
|
6215
|
+
|
|
6143
6216
|
.pointer-events-none {
|
|
6144
6217
|
pointer-events: none;
|
|
6145
6218
|
}
|
|
@@ -6197,12 +6270,8 @@ override built-in Image component classes */
|
|
|
6197
6270
|
z-index: 800;
|
|
6198
6271
|
}
|
|
6199
6272
|
|
|
6200
|
-
.z-
|
|
6201
|
-
z-index:
|
|
6202
|
-
}
|
|
6203
|
-
|
|
6204
|
-
.z-popup {
|
|
6205
|
-
z-index: 400;
|
|
6273
|
+
.z-modal {
|
|
6274
|
+
z-index: 900;
|
|
6206
6275
|
}
|
|
6207
6276
|
|
|
6208
6277
|
.z-10 {
|
|
@@ -6381,6 +6450,10 @@ override built-in Image component classes */
|
|
|
6381
6450
|
display: grid;
|
|
6382
6451
|
}
|
|
6383
6452
|
|
|
6453
|
+
.contents {
|
|
6454
|
+
display: contents;
|
|
6455
|
+
}
|
|
6456
|
+
|
|
6384
6457
|
.hidden {
|
|
6385
6458
|
display: none;
|
|
6386
6459
|
}
|
|
@@ -6433,10 +6506,6 @@ override built-in Image component classes */
|
|
|
6433
6506
|
height: auto;
|
|
6434
6507
|
}
|
|
6435
6508
|
|
|
6436
|
-
.h-2 {
|
|
6437
|
-
height: 8px;
|
|
6438
|
-
}
|
|
6439
|
-
|
|
6440
6509
|
.h-5 {
|
|
6441
6510
|
height: 20px;
|
|
6442
6511
|
}
|
|
@@ -6461,6 +6530,10 @@ override built-in Image component classes */
|
|
|
6461
6530
|
width: 100vw;
|
|
6462
6531
|
}
|
|
6463
6532
|
|
|
6533
|
+
.w-15 {
|
|
6534
|
+
width: 60px;
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6464
6537
|
.w-56 {
|
|
6465
6538
|
width: 224px;
|
|
6466
6539
|
}
|
|
@@ -6489,10 +6562,6 @@ override built-in Image component classes */
|
|
|
6489
6562
|
width: 40px;
|
|
6490
6563
|
}
|
|
6491
6564
|
|
|
6492
|
-
.w-2 {
|
|
6493
|
-
width: 8px;
|
|
6494
|
-
}
|
|
6495
|
-
|
|
6496
6565
|
.w-5 {
|
|
6497
6566
|
width: 20px;
|
|
6498
6567
|
}
|
|
@@ -6574,10 +6643,6 @@ override built-in Image component classes */
|
|
|
6574
6643
|
justify-content: flex-start;
|
|
6575
6644
|
}
|
|
6576
6645
|
|
|
6577
|
-
.justify-end {
|
|
6578
|
-
justify-content: flex-end;
|
|
6579
|
-
}
|
|
6580
|
-
|
|
6581
6646
|
.justify-center {
|
|
6582
6647
|
justify-content: center;
|
|
6583
6648
|
}
|
|
@@ -6620,6 +6685,10 @@ override built-in Image component classes */
|
|
|
6620
6685
|
overflow-y: auto;
|
|
6621
6686
|
}
|
|
6622
6687
|
|
|
6688
|
+
.overflow-y-scroll {
|
|
6689
|
+
overflow-y: scroll;
|
|
6690
|
+
}
|
|
6691
|
+
|
|
6623
6692
|
.truncate {
|
|
6624
6693
|
overflow: hidden;
|
|
6625
6694
|
text-overflow: ellipsis;
|
|
@@ -6677,6 +6746,22 @@ override built-in Image component classes */
|
|
|
6677
6746
|
border-bottom-right-radius: 0;
|
|
6678
6747
|
}
|
|
6679
6748
|
|
|
6749
|
+
.rounded-tr {
|
|
6750
|
+
border-top-right-radius: 4px;
|
|
6751
|
+
}
|
|
6752
|
+
|
|
6753
|
+
.rounded-tl {
|
|
6754
|
+
border-top-left-radius: 4px;
|
|
6755
|
+
}
|
|
6756
|
+
|
|
6757
|
+
.rounded-br {
|
|
6758
|
+
border-bottom-right-radius: 4px;
|
|
6759
|
+
}
|
|
6760
|
+
|
|
6761
|
+
.rounded-bl {
|
|
6762
|
+
border-bottom-left-radius: 4px;
|
|
6763
|
+
}
|
|
6764
|
+
|
|
6680
6765
|
.border {
|
|
6681
6766
|
border-width: 1px;
|
|
6682
6767
|
}
|
|
@@ -6693,6 +6778,10 @@ override built-in Image component classes */
|
|
|
6693
6778
|
border-bottom-width: 1px;
|
|
6694
6779
|
}
|
|
6695
6780
|
|
|
6781
|
+
.border-r {
|
|
6782
|
+
border-right-width: 1px;
|
|
6783
|
+
}
|
|
6784
|
+
|
|
6696
6785
|
.border-l-0 {
|
|
6697
6786
|
border-left-width: 0;
|
|
6698
6787
|
}
|
|
@@ -6701,10 +6790,6 @@ override built-in Image component classes */
|
|
|
6701
6790
|
border-left-width: 1px;
|
|
6702
6791
|
}
|
|
6703
6792
|
|
|
6704
|
-
.border-r {
|
|
6705
|
-
border-right-width: 1px;
|
|
6706
|
-
}
|
|
6707
|
-
|
|
6708
6793
|
.border-gray-300 {
|
|
6709
6794
|
--tw-border-opacity: 1;
|
|
6710
6795
|
border-color: rgb(237 243 247 / var(--tw-border-opacity));
|
|
@@ -6750,6 +6835,11 @@ override built-in Image component classes */
|
|
|
6750
6835
|
background-color: rgb(222 231 238 / var(--tw-bg-opacity));
|
|
6751
6836
|
}
|
|
6752
6837
|
|
|
6838
|
+
.bg-gray-900 {
|
|
6839
|
+
--tw-bg-opacity: 1;
|
|
6840
|
+
background-color: rgb(0 27 40 / var(--tw-bg-opacity));
|
|
6841
|
+
}
|
|
6842
|
+
|
|
6753
6843
|
.bg-red-200 {
|
|
6754
6844
|
--tw-bg-opacity: 1;
|
|
6755
6845
|
background-color: rgb(255 167 161 / var(--tw-bg-opacity));
|
|
@@ -6775,11 +6865,6 @@ override built-in Image component classes */
|
|
|
6775
6865
|
background-color: rgb(237 243 247 / var(--tw-bg-opacity));
|
|
6776
6866
|
}
|
|
6777
6867
|
|
|
6778
|
-
.bg-gray-900 {
|
|
6779
|
-
--tw-bg-opacity: 1;
|
|
6780
|
-
background-color: rgb(0 27 40 / var(--tw-bg-opacity));
|
|
6781
|
-
}
|
|
6782
|
-
|
|
6783
6868
|
.bg-screen {
|
|
6784
6869
|
background-color: rgba(0, 0, 0, 0.25);
|
|
6785
6870
|
}
|
|
@@ -6825,10 +6910,6 @@ override built-in Image component classes */
|
|
|
6825
6910
|
padding: 20px;
|
|
6826
6911
|
}
|
|
6827
6912
|
|
|
6828
|
-
.p-12 {
|
|
6829
|
-
padding: 48px;
|
|
6830
|
-
}
|
|
6831
|
-
|
|
6832
6913
|
.p-1 {
|
|
6833
6914
|
padding: 4px;
|
|
6834
6915
|
}
|
|
@@ -6975,14 +7056,14 @@ override built-in Image component classes */
|
|
|
6975
7056
|
line-height: 1;
|
|
6976
7057
|
}
|
|
6977
7058
|
|
|
6978
|
-
.text-gray-
|
|
7059
|
+
.text-gray-800 {
|
|
6979
7060
|
--tw-text-opacity: 1;
|
|
6980
|
-
color: rgb(
|
|
7061
|
+
color: rgb(32 65 86 / var(--tw-text-opacity));
|
|
6981
7062
|
}
|
|
6982
7063
|
|
|
6983
|
-
.text-gray-
|
|
7064
|
+
.text-gray-400 {
|
|
6984
7065
|
--tw-text-opacity: 1;
|
|
6985
|
-
color: rgb(
|
|
7066
|
+
color: rgb(222 231 238 / var(--tw-text-opacity));
|
|
6986
7067
|
}
|
|
6987
7068
|
|
|
6988
7069
|
.text-gray-700 {
|
|
@@ -7055,12 +7136,6 @@ override built-in Image component classes */
|
|
|
7055
7136
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
7056
7137
|
}
|
|
7057
7138
|
|
|
7058
|
-
.shadow-popover {
|
|
7059
|
-
--tw-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
7060
|
-
--tw-shadow-colored: 0 0 3px var(--tw-shadow-color), 0 10px 20px var(--tw-shadow-color);
|
|
7061
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
7062
|
-
}
|
|
7063
|
-
|
|
7064
7139
|
.outline-none {
|
|
7065
7140
|
outline: 2px solid transparent;
|
|
7066
7141
|
outline-offset: 2px;
|
|
@@ -7435,6 +7510,11 @@ override built-in Image component classes */
|
|
|
7435
7510
|
background-color: rgb(222 231 238 / var(--tw-bg-opacity));
|
|
7436
7511
|
}
|
|
7437
7512
|
|
|
7513
|
+
.hover\:bg-gray-100:hover {
|
|
7514
|
+
--tw-bg-opacity: 1;
|
|
7515
|
+
background-color: rgb(249 251 252 / var(--tw-bg-opacity));
|
|
7516
|
+
}
|
|
7517
|
+
|
|
7438
7518
|
.hover\:text-gray-600:hover {
|
|
7439
7519
|
--tw-text-opacity: 1;
|
|
7440
7520
|
color: rgb(134 163 181 / var(--tw-text-opacity));
|