@redsift/products 11.5.0 → 11.6.0-alpha.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.
@@ -0,0 +1,97 @@
1
+ import { _ as _extends, a as _objectWithoutProperties } from './_rollupPluginBabelHelpers.js';
2
+ import React__default, { forwardRef } from 'react';
3
+ import { Flexbox, Icon, Text } from '@redsift/design-system';
4
+ import { rsiSparkleGradient } from '@redsift/icons';
5
+ import { MenuButton, MenuButtonTrigger, MenuButtonContent, MenuButtonContentHeader, MenuButtonContentMenu, MenuButtonContentFooter } from '@redsift/pickers';
6
+ import styled from 'styled-components';
7
+ import { R as RadarButton } from './RadarButton.js';
8
+
9
+ /**
10
+ * The RadarMenuButton component.
11
+ */
12
+
13
+ const BaseRadarMenuButton = props => {
14
+ return /*#__PURE__*/React__default.createElement(MenuButton, _extends({
15
+ offset: 0,
16
+ minWidth: 545,
17
+ color: "radar"
18
+ }, props));
19
+ };
20
+ BaseRadarMenuButton.displayName = 'MenuButton';
21
+ const RadarMenuButtonTrigger = MenuButtonTrigger;
22
+ RadarMenuButtonTrigger.displayName = 'MenuButtonTrigger';
23
+ const StyledMenuButtonContent = styled(MenuButtonContent)`
24
+ background: transparent;
25
+ background-image: linear-gradient(90deg, white, white), linear-gradient(90deg, #51b7a4, #0081c3);
26
+ background-clip: padding-box, border-box;
27
+ background-origin: border-box;
28
+ border: 2px solid transparent;
29
+ border-radius: 4px;
30
+ `;
31
+ const BaseRadarMenuButtonContent = /*#__PURE__*/forwardRef((props, ref) => /*#__PURE__*/React__default.createElement(StyledMenuButtonContent, _extends({}, props, {
32
+ ref: ref
33
+ })));
34
+ BaseRadarMenuButtonContent.displayName = 'MenuButtonContent';
35
+ const RadarMenuButtonContentHeader = /*#__PURE__*/forwardRef((props, ref) => /*#__PURE__*/React__default.createElement(MenuButtonContentHeader, _extends({
36
+ margin: "24px 16px 8px",
37
+ display: "flex",
38
+ flexDirection: "column",
39
+ gap: "8px"
40
+ }, props, {
41
+ ref: ref
42
+ })));
43
+ RadarMenuButtonContentHeader.displayName = 'MenuButtonContentHeader';
44
+ const RadarMenuButtonContentMenu = /*#__PURE__*/forwardRef((props, ref) => /*#__PURE__*/React__default.createElement(MenuButtonContentMenu, _extends({
45
+ margin: "0 16px 20px 49px",
46
+ width: "calc(100% - 64px)"
47
+ }, props, {
48
+ ref: ref
49
+ })));
50
+ RadarMenuButtonContentMenu.displayName = 'MenuButtonContentMenu';
51
+ const RadarMenuButtonContentFooter = MenuButtonContentFooter;
52
+ RadarMenuButtonContentFooter.displayName = 'MenuButtonContentFooter';
53
+ const RadarMenuButtonContent = Object.assign(BaseRadarMenuButtonContent, {
54
+ Header: RadarMenuButtonContentHeader,
55
+ Menu: RadarMenuButtonContentMenu,
56
+ Footer: RadarMenuButtonContentFooter
57
+ });
58
+ const RadarMenuButton = Object.assign(BaseRadarMenuButton, {
59
+ Trigger: RadarMenuButtonTrigger,
60
+ Content: RadarMenuButtonContent
61
+ });
62
+
63
+ const _excluded = ["icon", "children", "title", "subtitle"];
64
+
65
+ /**
66
+ * The RadarSimpleMenuButton component.
67
+ */
68
+
69
+ const RadarSimpleMenuButton = props => {
70
+ const {
71
+ icon,
72
+ children,
73
+ title,
74
+ subtitle
75
+ } = props,
76
+ forwardedProps = _objectWithoutProperties(props, _excluded);
77
+ return /*#__PURE__*/React__default.createElement(RadarMenuButton, forwardedProps, /*#__PURE__*/React__default.createElement(RadarMenuButton.Trigger, null, /*#__PURE__*/React__default.createElement(RadarButton, null)), /*#__PURE__*/React__default.createElement(RadarMenuButton.Content, null, /*#__PURE__*/React__default.createElement(RadarMenuButton.Content.Header, null, /*#__PURE__*/React__default.createElement(Flexbox, {
78
+ flexDirection: "row",
79
+ gap: "0"
80
+ }, /*#__PURE__*/React__default.createElement(Icon, _extends({
81
+ icon: rsiSparkleGradient,
82
+ size: "medium",
83
+ marginRight: "8px"
84
+ }, icon)), /*#__PURE__*/React__default.createElement(Text, {
85
+ fontSize: "20px",
86
+ fontWeight: "500"
87
+ }, title)), subtitle ? /*#__PURE__*/React__default.createElement(Flexbox, {
88
+ marginLeft: "32px",
89
+ marginRight: "16px"
90
+ }, /*#__PURE__*/React__default.createElement(Text, {
91
+ fontSize: "12px"
92
+ }, subtitle)) : null), /*#__PURE__*/React__default.createElement(RadarMenuButton.Content.Menu, null, children)));
93
+ };
94
+ RadarSimpleMenuButton.displayName = 'MenuButton';
95
+
96
+ export { BaseRadarMenuButton as B, RadarMenuButtonTrigger as R, BaseRadarMenuButtonContent as a, RadarMenuButtonContentHeader as b, RadarMenuButtonContentMenu as c, RadarMenuButtonContentFooter as d, RadarMenuButtonContent as e, RadarMenuButton as f, RadarSimpleMenuButton as g };
97
+ //# sourceMappingURL=RadarSimpleMenuButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadarSimpleMenuButton.js","sources":["../../src/components/radar-menu-button/RadarMenuButton.tsx","../../src/components/radar-menu-button/RadarSimpleMenuButton.tsx"],"sourcesContent":["import React from 'react';\nimport {\n MenuButton,\n MenuButtonContent,\n MenuButtonContentProps,\n MenuButtonTrigger,\n MenuButtonContentFooter,\n MenuButtonContentHeaderProps,\n MenuButtonContentHeader,\n MenuButtonContentMenuProps,\n MenuButtonContentMenu,\n MenuButtonProps,\n} from '@redsift/pickers';\nimport { Comp } from '@redsift/design-system';\nimport { forwardRef } from 'react';\nimport styled from 'styled-components';\n\n/**\n * The RadarMenuButton component.\n */\n\nexport const BaseRadarMenuButton: React.FC<MenuButtonProps> & {\n displayName?: string;\n className?: string;\n} = (props) => {\n return <MenuButton offset={0} minWidth={545} color=\"radar\" {...props} />;\n};\nBaseRadarMenuButton.displayName = 'MenuButton';\n\nexport const RadarMenuButtonTrigger = MenuButtonTrigger;\nRadarMenuButtonTrigger.displayName = 'MenuButtonTrigger';\n\nconst StyledMenuButtonContent = styled(MenuButtonContent)`\n background: transparent;\n background-image: linear-gradient(90deg, white, white), linear-gradient(90deg, #51b7a4, #0081c3);\n background-clip: padding-box, border-box;\n background-origin: border-box;\n border: 2px solid transparent;\n border-radius: 4px;\n`;\n\nexport const BaseRadarMenuButtonContent: Comp<MenuButtonContentProps, HTMLDivElement> = forwardRef((props, ref) => (\n <StyledMenuButtonContent {...props} ref={ref} />\n));\nBaseRadarMenuButtonContent.displayName = 'MenuButtonContent';\n\nexport const RadarMenuButtonContentHeader: Comp<MenuButtonContentHeaderProps, HTMLDivElement> = forwardRef(\n (props, ref) => (\n <MenuButtonContentHeader\n margin=\"24px 16px 8px\"\n display=\"flex\"\n flexDirection=\"column\"\n gap=\"8px\"\n {...props}\n ref={ref}\n />\n )\n);\nRadarMenuButtonContentHeader.displayName = 'MenuButtonContentHeader';\n\nexport const RadarMenuButtonContentMenu: Comp<MenuButtonContentMenuProps, HTMLDivElement> = forwardRef((props, ref) => (\n <MenuButtonContentMenu margin=\"0 16px 20px 49px\" width=\"calc(100% - 64px)\" {...props} ref={ref} />\n));\nRadarMenuButtonContentMenu.displayName = 'MenuButtonContentMenu';\n\nexport const RadarMenuButtonContentFooter = MenuButtonContentFooter;\nRadarMenuButtonContentFooter.displayName = 'MenuButtonContentFooter';\n\nexport const RadarMenuButtonContent = Object.assign(BaseRadarMenuButtonContent, {\n Header: RadarMenuButtonContentHeader,\n Menu: RadarMenuButtonContentMenu,\n Footer: RadarMenuButtonContentFooter,\n});\n\nexport const RadarMenuButton = Object.assign(BaseRadarMenuButton, {\n Trigger: RadarMenuButtonTrigger,\n Content: RadarMenuButtonContent,\n});\n","import React from 'react';\nimport { MenuButtonContentMenuProps, MenuButtonProps } from '@redsift/pickers';\nimport { Comp, Flexbox, Icon, IconProps, Text } from '@redsift/design-system';\nimport { rsiSparkleGradient } from '@redsift/icons';\nimport { RadarButton } from '../radar-button';\nimport { RadarMenuButton } from './RadarMenuButton';\n\n/**\n * The RadarSimpleMenuButton component.\n */\n\nexport const RadarSimpleMenuButton: Comp<\n Omit<MenuButtonProps, 'children'> & { title: string; subtitle?: string; icon?: Omit<IconProps, 'ref'> } & Pick<\n MenuButtonContentMenuProps,\n 'children'\n >,\n HTMLDivElement\n> = (props) => {\n const { icon, children, title, subtitle, ...forwardedProps } = props;\n\n return (\n <RadarMenuButton {...forwardedProps}>\n <RadarMenuButton.Trigger>\n <RadarButton />\n </RadarMenuButton.Trigger>\n <RadarMenuButton.Content>\n <RadarMenuButton.Content.Header>\n <Flexbox flexDirection=\"row\" gap=\"0\">\n <Icon icon={rsiSparkleGradient} size=\"medium\" marginRight=\"8px\" {...icon} />\n <Text fontSize=\"20px\" fontWeight=\"500\">\n {title}\n </Text>\n </Flexbox>\n {subtitle ? (\n <Flexbox marginLeft=\"32px\" marginRight=\"16px\">\n <Text fontSize=\"12px\">{subtitle}</Text>\n </Flexbox>\n ) : null}\n </RadarMenuButton.Content.Header>\n <RadarMenuButton.Content.Menu>{children}</RadarMenuButton.Content.Menu>\n </RadarMenuButton.Content>\n </RadarMenuButton>\n );\n};\nRadarSimpleMenuButton.displayName = 'MenuButton';\n"],"names":["BaseRadarMenuButton","props","React","createElement","MenuButton","_extends","offset","minWidth","color","displayName","RadarMenuButtonTrigger","MenuButtonTrigger","StyledMenuButtonContent","styled","MenuButtonContent","BaseRadarMenuButtonContent","forwardRef","ref","RadarMenuButtonContentHeader","MenuButtonContentHeader","margin","display","flexDirection","gap","RadarMenuButtonContentMenu","MenuButtonContentMenu","width","RadarMenuButtonContentFooter","MenuButtonContentFooter","RadarMenuButtonContent","Object","assign","Header","Menu","Footer","RadarMenuButton","Trigger","Content","RadarSimpleMenuButton","icon","children","title","subtitle","forwardedProps","_objectWithoutProperties","_excluded","RadarButton","Flexbox","Icon","rsiSparkleGradient","size","marginRight","Text","fontSize","fontWeight","marginLeft"],"mappings":"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"}
@@ -0,0 +1,93 @@
1
+ function ownKeys(object, enumerableOnly) {
2
+ var keys = Object.keys(object);
3
+ if (Object.getOwnPropertySymbols) {
4
+ var symbols = Object.getOwnPropertySymbols(object);
5
+ enumerableOnly && (symbols = symbols.filter(function (sym) {
6
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
7
+ })), keys.push.apply(keys, symbols);
8
+ }
9
+ return keys;
10
+ }
11
+ function _objectSpread2(target) {
12
+ for (var i = 1; i < arguments.length; i++) {
13
+ var source = null != arguments[i] ? arguments[i] : {};
14
+ i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
15
+ _defineProperty(target, key, source[key]);
16
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
17
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
18
+ });
19
+ }
20
+ return target;
21
+ }
22
+ function _defineProperty(obj, key, value) {
23
+ key = _toPropertyKey(key);
24
+ if (key in obj) {
25
+ Object.defineProperty(obj, key, {
26
+ value: value,
27
+ enumerable: true,
28
+ configurable: true,
29
+ writable: true
30
+ });
31
+ } else {
32
+ obj[key] = value;
33
+ }
34
+ return obj;
35
+ }
36
+ function _extends() {
37
+ _extends = Object.assign ? Object.assign.bind() : function (target) {
38
+ for (var i = 1; i < arguments.length; i++) {
39
+ var source = arguments[i];
40
+ for (var key in source) {
41
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
42
+ target[key] = source[key];
43
+ }
44
+ }
45
+ }
46
+ return target;
47
+ };
48
+ return _extends.apply(this, arguments);
49
+ }
50
+ function _objectWithoutPropertiesLoose(source, excluded) {
51
+ if (source == null) return {};
52
+ var target = {};
53
+ var sourceKeys = Object.keys(source);
54
+ var key, i;
55
+ for (i = 0; i < sourceKeys.length; i++) {
56
+ key = sourceKeys[i];
57
+ if (excluded.indexOf(key) >= 0) continue;
58
+ target[key] = source[key];
59
+ }
60
+ return target;
61
+ }
62
+ function _objectWithoutProperties(source, excluded) {
63
+ if (source == null) return {};
64
+ var target = _objectWithoutPropertiesLoose(source, excluded);
65
+ var key, i;
66
+ if (Object.getOwnPropertySymbols) {
67
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
68
+ for (i = 0; i < sourceSymbolKeys.length; i++) {
69
+ key = sourceSymbolKeys[i];
70
+ if (excluded.indexOf(key) >= 0) continue;
71
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
72
+ target[key] = source[key];
73
+ }
74
+ }
75
+ return target;
76
+ }
77
+ function _toPrimitive(input, hint) {
78
+ if (typeof input !== "object" || input === null) return input;
79
+ var prim = input[Symbol.toPrimitive];
80
+ if (prim !== undefined) {
81
+ var res = prim.call(input, hint || "default");
82
+ if (typeof res !== "object") return res;
83
+ throw new TypeError("@@toPrimitive must return a primitive value.");
84
+ }
85
+ return (hint === "string" ? String : Number)(input);
86
+ }
87
+ function _toPropertyKey(arg) {
88
+ var key = _toPrimitive(arg, "string");
89
+ return typeof key === "symbol" ? key : String(key);
90
+ }
91
+
92
+ export { _extends as _, _objectWithoutProperties as a, _objectSpread2 as b };
93
+ //# sourceMappingURL=_rollupPluginBabelHelpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_rollupPluginBabelHelpers.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,2 @@
1
+ export { R as RadarButton } from './RadarButton.js';
2
+ //# sourceMappingURL=radar-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radar-button.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export { B as BaseRadarDialog, e as BaseRadarDialogContent, a as RadarDialog, f as RadarDialogContent, c as RadarDialogContentBody, b as RadarDialogContentHeader, d as RadarDialogTrigger, R as RadarSimpleDialog } from './RadarSimpleDialog.js';
2
+ //# sourceMappingURL=radar-dialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radar-dialog.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export { R as RadarItem } from './RadarItem.js';
2
+ //# sourceMappingURL=radar-item.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radar-item.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export { B as BaseRadarMenuButton, a as BaseRadarMenuButtonContent, f as RadarMenuButton, e as RadarMenuButtonContent, d as RadarMenuButtonContentFooter, b as RadarMenuButtonContentHeader, c as RadarMenuButtonContentMenu, R as RadarMenuButtonTrigger, g as RadarSimpleMenuButton } from './RadarSimpleMenuButton.js';
2
+ //# sourceMappingURL=radar-menu-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radar-menu-button.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,23 @@
1
+ import { R as RadarItem } from './RadarItem.js';
2
+ import { f as RadarMenuButton, g as RadarSimpleMenuButton } from './RadarSimpleMenuButton.js';
3
+ import { R as RadarSimpleDialog, a as RadarDialog } from './RadarSimpleDialog.js';
4
+ import { R as RadarButton } from './RadarButton.js';
5
+
6
+ RadarButton.displayName = 'Button';
7
+ RadarItem.displayName = 'Item';
8
+ RadarMenuButton.displayName = 'MenuButton';
9
+ RadarSimpleMenuButton.displayName = 'MenuButton';
10
+ const RadarSimple = {
11
+ Dialog: RadarSimpleDialog,
12
+ MenuButton: RadarSimpleMenuButton
13
+ };
14
+ const Radar = {
15
+ Button: RadarButton,
16
+ Dialog: RadarDialog,
17
+ Item: RadarItem,
18
+ MenuButton: RadarMenuButton,
19
+ Simple: RadarSimple
20
+ };
21
+
22
+ export { Radar, RadarSimple };
23
+ //# sourceMappingURL=radar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radar.js","sources":["../../src/components/radar/index.ts"],"sourcesContent":["import { RadarButton } from '../radar-button';\nimport { RadarSimpleDialog, RadarDialog } from '../radar-dialog';\nimport { RadarItem } from '../radar-item';\nimport { RadarMenuButton, RadarSimpleMenuButton } from '../radar-menu-button';\n\nRadarButton.displayName = 'Button';\nRadarItem.displayName = 'Item';\nRadarMenuButton.displayName = 'MenuButton';\nRadarSimpleMenuButton.displayName = 'MenuButton';\n\nexport const RadarSimple = {\n Dialog: RadarSimpleDialog,\n MenuButton: RadarSimpleMenuButton,\n};\n\nexport const Radar = {\n Button: RadarButton,\n Dialog: RadarDialog,\n Item: RadarItem,\n MenuButton: RadarMenuButton,\n Simple: RadarSimple,\n};\n"],"names":["RadarButton","displayName","RadarItem","RadarMenuButton","RadarSimpleMenuButton","RadarSimple","Dialog","RadarSimpleDialog","MenuButton","Radar","Button","RadarDialog","Item","Simple"],"mappings":";;;;;AAKAA,WAAW,CAACC,WAAW,GAAG,QAAQ,CAAA;AAClCC,SAAS,CAACD,WAAW,GAAG,MAAM,CAAA;AAC9BE,eAAe,CAACF,WAAW,GAAG,YAAY,CAAA;AAC1CG,qBAAqB,CAACH,WAAW,GAAG,YAAY,CAAA;AAEzC,MAAMI,WAAW,GAAG;AACzBC,EAAAA,MAAM,EAAEC,iBAAiB;AACzBC,EAAAA,UAAU,EAAEJ,qBAAAA;AACd,EAAC;AAEM,MAAMK,KAAK,GAAG;AACnBC,EAAAA,MAAM,EAAEV,WAAW;AACnBM,EAAAA,MAAM,EAAEK,WAAW;AACnBC,EAAAA,IAAI,EAAEV,SAAS;AACfM,EAAAA,UAAU,EAAEL,eAAe;AAC3BU,EAAAA,MAAM,EAAER,WAAAA;AACV;;;;"}