@conveyorhq/arrow-ds 1.193.0 → 1.195.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/package.json +1 -1
- package/public/components/Chip/Chip.d.ts +1 -1
- package/public/components/Chip/Chip.js +5 -1
- package/public/components/Icon/Icon.d.ts +4 -1
- package/public/components/Icon/Icon.js +10 -6
- package/public/components/Icon/svg/BrandFront.d.ts +3 -0
- package/public/components/Icon/svg/BrandFront.js +14 -0
- package/public/components/Icon/svg/BrandSlack.d.ts +3 -0
- package/public/components/Icon/svg/BrandSlack.js +20 -0
- package/public/components/Icon/svg/BrandZendesk.js +2 -2
- package/public/components/Icon/svg/ShieldCheck.d.ts +1 -1
- package/public/components/Icon/svg/ShieldCheck.js +3 -3
- package/public/components/Icon/svg/index.d.ts +4 -0
- package/public/components/Icon/svg/index.js +4 -0
- package/public/components/IntegrationLogo/IntegrationLogo.d.ts +1 -1
- package/public/components/IntegrationLogo/IntegrationLogo.js +1 -0
- package/public/components/IntegrationLogo/IntegrationLogoSvg.js +2 -0
- package/public/components/IntegrationLogo/svg/front.d.ts +3 -0
- package/public/components/IntegrationLogo/svg/front.js +20 -0
- package/public/components/IntegrationLogo/svg/index.d.ts +1 -0
- package/public/components/IntegrationLogo/svg/index.js +3 -1
- package/public/components/LoadingDots/LoadingDots.d.ts +3 -0
- package/public/components/LoadingDots/LoadingDots.js +11 -7
- package/public/components/Markdown/directives/chip.d.ts +6 -0
- package/public/components/Markdown/directives/chip.js +9 -1
- package/public/css/styles.css +86 -11
- package/public/css/styles.min.css +1 -1
- package/public/css/styles.min.css.map +1 -1
- package/src/components/Chip/Chip.stories.mdx +9 -1
- package/src/components/Chip/Chip.tsx +5 -1
- package/src/components/Icon/Icon.tsx +13 -4
- package/src/components/Icon/svg/BrandFront.tsx +17 -0
- package/src/components/Icon/svg/BrandSlack.tsx +41 -0
- package/src/components/Icon/svg/BrandZendesk.tsx +5 -2
- package/src/components/Icon/svg/ShieldCheck.tsx +1 -1
- package/src/components/Icon/svg/index.ts +4 -0
- package/src/components/IntegrationLogo/IntegrationLogo.stories.mdx +1 -0
- package/src/components/IntegrationLogo/IntegrationLogo.tsx +1 -0
- package/src/components/IntegrationLogo/IntegrationLogoSvg.tsx +3 -0
- package/src/components/IntegrationLogo/svg/front.tsx +45 -0
- package/src/components/IntegrationLogo/svg/index.ts +1 -0
- package/src/components/LoadingDots/LoadingDots.stories.mdx +22 -0
- package/src/components/LoadingDots/LoadingDots.tsx +18 -7
- package/src/components/LoadingDots/index.css +41 -7
- package/src/components/Markdown/Markdown.stories.mdx +4 -0
- package/src/components/Markdown/directives/chip.tsx +32 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ export interface ChipProps {
|
|
|
5
5
|
style?: React.CSSProperties;
|
|
6
6
|
}
|
|
7
7
|
export declare const ChipDefault: React.ForwardRefExoticComponent<ChipProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
declare const integrationNames: readonly ["jira", "salesforce", "service_now", "zendesk"];
|
|
8
|
+
declare const integrationNames: readonly ["front", "jira", "salesforce", "service_now", "slack", "zendesk"];
|
|
9
9
|
export declare const ChipIntegration: React.ForwardRefExoticComponent<ChipProps & {
|
|
10
10
|
integration: (typeof integrationNames)[number];
|
|
11
11
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -37,16 +37,20 @@ exports.ChipDefault = (0, react_1.forwardRef)(function Chip({ children, classNam
|
|
|
37
37
|
return (react_1.default.createElement(Box_1.Box, { as: "span", ref: ref, style: style, className: (0, classnames_1.default)(cn(), cn({ m: "default" }), className) }, children));
|
|
38
38
|
});
|
|
39
39
|
const integrationNames = [
|
|
40
|
+
"front",
|
|
40
41
|
"jira",
|
|
41
42
|
"salesforce",
|
|
42
43
|
"service_now",
|
|
44
|
+
"slack",
|
|
43
45
|
"zendesk",
|
|
44
46
|
];
|
|
45
47
|
exports.ChipIntegration = (0, react_1.forwardRef)(function ChipIntegration({ children, integration, className, style }, ref) {
|
|
46
48
|
const integrationClassNames = {
|
|
49
|
+
front: "text-[#a857f1] bg-[#a857f1]/15",
|
|
47
50
|
jira: "text-[#2684ff] bg-[#2684ff]/15",
|
|
48
51
|
salesforce: "text-blue-400 bg-blue-300/15",
|
|
49
|
-
service_now: "text-[#62d84e] bg-[#62d84e]/
|
|
52
|
+
service_now: "text-[#62d84e] bg-[#62d84e]/10",
|
|
53
|
+
slack: "text-[#4a154b] bg-[#4a154b]/15",
|
|
50
54
|
zendesk: "text-[#04363d] bg-[#04363d]/5",
|
|
51
55
|
};
|
|
52
56
|
return (react_1.default.createElement(Box_1.Box, { as: "span", ref: ref, style: style, className: (0, classnames_1.default)(cn(), integrationClassNames[integration], className) },
|
|
@@ -7,11 +7,13 @@ export declare enum CUSTOM_ICON_TYPE {
|
|
|
7
7
|
ARROW_TO_RIGHT = "arrow-to-right",
|
|
8
8
|
BADGE_CHECK = "badge-check",
|
|
9
9
|
BRAND_CONFLUENCE = "brand-confluence",
|
|
10
|
+
BRAND_FRONT = "brand-front",
|
|
10
11
|
BRAND_GOOGLE_DRIVE = "brand-google-drive",
|
|
11
12
|
BRAND_JIRA = "brand-jira",
|
|
12
13
|
BRAND_MICROSOFT_TEAMS = "brand-microsoft-teams",
|
|
13
|
-
BRAND_ZENDESK = "brand-zendesk",
|
|
14
14
|
BRAND_SALESFORCE = "brand-salesforce",
|
|
15
|
+
BRAND_SLACK = "brand-slack",
|
|
16
|
+
BRAND_ZENDESK = "brand-zendesk",
|
|
15
17
|
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
16
18
|
CONVEYOR_LOGO = "conveyor-logo",
|
|
17
19
|
DIALOG_CHECK = "dialog-check",
|
|
@@ -193,6 +195,7 @@ export declare enum ICON_TYPE {
|
|
|
193
195
|
SQUARE = "square",
|
|
194
196
|
STAMP = "stamp",
|
|
195
197
|
STAR = "star",
|
|
198
|
+
STOPWATCH = "stopwatch",
|
|
196
199
|
SUITCASE_ROLLING = "suitcase-rolling",
|
|
197
200
|
SYNC = "sync",
|
|
198
201
|
TABLE = "table",
|
|
@@ -213,6 +213,7 @@ const faSpinner_1 = require("@fortawesome/free-solid-svg-icons/faSpinner");
|
|
|
213
213
|
const faSquare_1 = require("@fortawesome/free-solid-svg-icons/faSquare");
|
|
214
214
|
const faStamp_1 = require("@fortawesome/free-solid-svg-icons/faStamp");
|
|
215
215
|
const faStar_2 = require("@fortawesome/free-solid-svg-icons/faStar");
|
|
216
|
+
const faStopwatch_1 = require("@fortawesome/free-solid-svg-icons/faStopwatch");
|
|
216
217
|
const faSuitcaseRolling_1 = require("@fortawesome/free-solid-svg-icons/faSuitcaseRolling");
|
|
217
218
|
const faSync_1 = require("@fortawesome/free-solid-svg-icons/faSync");
|
|
218
219
|
const faTable_1 = require("@fortawesome/free-solid-svg-icons/faTable");
|
|
@@ -247,10 +248,8 @@ const svg_1 = require("./svg");
|
|
|
247
248
|
const status_1 = require("../../contexts/status");
|
|
248
249
|
const types_1 = require("../../types");
|
|
249
250
|
const utilities_1 = require("../../utilities");
|
|
250
|
-
const ShieldCheck_1 = require("./svg/ShieldCheck");
|
|
251
|
-
const BrandZendesk_1 = require("./svg/BrandZendesk");
|
|
252
251
|
const cn = (0, utilities_1.bemHOF)("Icon");
|
|
253
|
-
fontawesome_svg_core_1.library.add(faArchive_1.faArchive, faArrowDown_1.faArrowDown, faArrowLeft_1.faArrowLeft, faArrowRight_1.faArrowRight, faArrowsAlt_1.faArrowsAlt, faArrowUp_1.faArrowUp, faBackward_1.faBackward, faBalanceScale_1.faBalanceScale, faBan_1.faBan, faBandAid_1.faBandAid, faBars_1.faBars, faBatteryHalf_1.faBatteryHalf, faBed_1.faBed, faBell_1.faBell, faBell_2.faBell, faBellSlash_1.faBellSlash, faBellSlash_2.faBellSlash, faBiohazard_1.faBiohazard, faBirthdayCake_1.faBirthdayCake, faBolt_1.faBolt, faBook_1.faBook, faBroom_1.faBroom, faBug_1.faBug, faBullhorn_1.faBullhorn, faBullseye_1.faBullseye, faCalculator_1.faCalculator, faCalendar_1.faCalendar, faCamera_1.faCamera, faCaretDown_1.faCaretDown, faCaretLeft_1.faCaretLeft, faCaretRight_1.faCaretRight, faCaretUp_1.faCaretUp, faChartBar_1.faChartBar, faChartLine_1.faChartLine, faCheck_1.faCheck, faCheckCircle_2.faCheckCircle, faCheckCircle_1.faCheckCircle, faCheckSquare_1.faCheckSquare, faChevronDown_1.faChevronDown, faChevronLeft_1.faChevronLeft, faChevronRight_1.faChevronRight, faChevronUp_1.faChevronUp, faCircle_2.faCircle, faCircleNotch_1.faCircleNotch, faCircle_1.faCircle, faClipboard_1.faClipboard, faClipboardCheck_1.faClipboardCheck, faClock_1.faClock, faClock_2.faClock, faClone_1.faClone, faCloudDownloadAlt_1.faCloudDownloadAlt, faCloudShowersHeavy_1.faCloudShowersHeavy, faCloudUploadAlt_1.faCloudUploadAlt, faCodeBranch_1.faCodeBranch, faCog_1.faCog, faCoins_1.faCoins, faColumns_1.faColumns, faCommentAlt_1.faCommentAlt, faCompass_1.faCompass, faCompress_1.faCompress, faCompressArrowsAlt_1.faCompressArrowsAlt, faCopy_1.faCopy, faCrosshairs_1.faCrosshairs, faCrown_1.faCrown, faDoorClosed_1.faDoorClosed, faDoorOpen_1.faDoorOpen, faDownload_1.faDownload, faDungeon_1.faDungeon, faEdit_1.faEdit, faEllipsisH_1.faEllipsisH, faEllipsisV_1.faEllipsisV, faEnvelope_2.faEnvelope, faEnvelope_1.faEnvelope, faEnvelopeOpenText_1.faEnvelopeOpenText, faEraser_1.faEraser, faExchangeAlt_1.faExchangeAlt, faExclamation_1.faExclamation, faExclamationCircle_1.faExclamationCircle, faExclamationTriangle_1.faExclamationTriangle, faExpand_1.faExpand, faExpandArrowsAlt_1.faExpandArrowsAlt, faExternalLinkAlt_1.faExternalLinkAlt, faExternalLinkSquareAlt_1.faExternalLinkSquareAlt, faEye_1.faEye, faEyeSlash_1.faEyeSlash, faFastBackward_1.faFastBackward, faFastForward_1.faFastForward, faFeatherAlt_1.faFeatherAlt, faFile_1.faFile, faFileAlt_1.faFileAlt, faFileAlt_2.faFileAlt, faFileExport_1.faFileExport, faFileImport_1.faFileImport, faFileSignature_1.faFileSignature, faFillDrip_1.faFillDrip, faFilter_1.faFilter, faFlag_1.faFlag, faFlask_1.faFlask, faFolder_1.faFolder, faFolderOpen_1.faFolderOpen, faForward_1.faForward, faGavel_1.faGavel, faGlobeAmericas_1.faGlobeAmericas, faGlobeEurope_1.faGlobeEurope, faGripLines_1.faGripLines, faGripLinesVertical_1.faGripLinesVertical, faHandshake_1.faHandshake, faHashtag_1.faHashtag, faHeartBroken_1.faHeartBroken, faHighlighter_1.faHighlighter, faHistory_1.faHistory, faIdBadge_1.faIdBadge, faImage_1.faImage, faInfoCircle_1.faInfoCircle, faKey_1.faKey, faKeyboard_1.faKeyboard, faLaptop_1.faLaptop, faLayerGroup_1.faLayerGroup, faLevelUpAlt_1.faLevelUpAlt, faLifeRing_1.faLifeRing, faLink_1.faLink, faListOl_1.faListOl, faListUl_1.faListUl, faLock_1.faLock, faLongArrowAltRight_1.faLongArrowAltRight, faMagic_1.faMagic, faMapMarkerAlt_1.faMapMarkerAlt, faMapSigns_1.faMapSigns, faMeteor_1.faMeteor, faMinus_1.faMinus, faMinusCircle_1.faMinusCircle, faMoneyBill_1.faMoneyBill, faMoneyBillWave_1.faMoneyBillWave, faMoneyCheckAlt_1.faMoneyCheckAlt, faMousePointer_1.faMousePointer, faPalette_1.faPalette, faPaperclip_1.faPaperclip, faPaperPlane_1.faPaperPlane, faPaste_1.faPaste, faPause_1.faPause, faPen_1.faPen, faPencilRuler_1.faPencilRuler, faPlay_1.faPlay, faPlug_1.faPlug, faPlus_1.faPlus, faPlusCircle_1.faPlusCircle, faPooStorm_1.faPooStorm, faQuestion_1.faQuestion, faQuestionCircle_2.faQuestionCircle, faQuestionCircle_1.faQuestionCircle, faRandom_1.faRandom, faRedo_1.faRedo, faReply_1.faReply, faRobot_1.faRobot, faRocket_1.faRocket, faSave_1.faSave, faScroll_1.faScroll, faSearch_1.faSearch, faSearchPlus_1.faSearchPlus, faSeedling_1.faSeedling, faServer_1.faServer, faShare_1.faShare, faShareAlt_1.faShareAlt, faShieldAlt_1.faShieldAlt, faSignal_1.faSignal, faSignature_1.faSignature, faSignOutAlt_1.faSignOutAlt, faSitemap_1.faSitemap, faSkull_1.faSkull, faSlidersH_1.faSlidersH, faSort_1.faSort, faSortDown_1.faSortDown, faSortUp_1.faSortUp, faSpinner_1.faSpinner, faSquare_1.faSquare, faStamp_1.faStamp, faStar_1.faStar, faStar_2.faStar, faSuitcaseRolling_1.faSuitcaseRolling, faSync_1.faSync, faTable_1.faTable, faTag_1.faTag, faTasks_1.faTasks, faThLarge_1.faThLarge, faThumbsDown_1.faThumbsDown, faThumbsDown_2.faThumbsDown, faThumbsUp_1.faThumbsUp, faThumbsUp_2.faThumbsUp, faTicketAlt_1.faTicketAlt, faTimes_1.faTimes, faTimesCircle_1.faTimesCircle, faTimesCircle_2.faTimesCircle, faTools_1.faTools, faTrash_1.faTrash, faUndo_1.faUndo, faUniversalAccess_1.faUniversalAccess, faUnlink_1.faUnlink, faUnlock_1.faUnlock, faUser_2.faUser, faUserAstronaut_1.faUserAstronaut, faUserClock_1.faUserClock, faUserFriends_1.faUserFriends, faUserLock_1.faUserLock, faUserPlus_1.faUserPlus, faUser_1.faUser, faUsers_1.faUsers, faUserSecret_1.faUserSecret, faUserShield_1.faUserShield, faVial_1.faVial, faVideo_1.faVideo, faWrench_1.faWrench, faAward_1.faAward);
|
|
252
|
+
fontawesome_svg_core_1.library.add(faArchive_1.faArchive, faArrowDown_1.faArrowDown, faArrowLeft_1.faArrowLeft, faArrowRight_1.faArrowRight, faArrowsAlt_1.faArrowsAlt, faArrowUp_1.faArrowUp, faBackward_1.faBackward, faBalanceScale_1.faBalanceScale, faBan_1.faBan, faBandAid_1.faBandAid, faBars_1.faBars, faBatteryHalf_1.faBatteryHalf, faBed_1.faBed, faBell_1.faBell, faBell_2.faBell, faBellSlash_1.faBellSlash, faBellSlash_2.faBellSlash, faBiohazard_1.faBiohazard, faBirthdayCake_1.faBirthdayCake, faBolt_1.faBolt, faBook_1.faBook, faBroom_1.faBroom, faBug_1.faBug, faBullhorn_1.faBullhorn, faBullseye_1.faBullseye, faCalculator_1.faCalculator, faCalendar_1.faCalendar, faCamera_1.faCamera, faCaretDown_1.faCaretDown, faCaretLeft_1.faCaretLeft, faCaretRight_1.faCaretRight, faCaretUp_1.faCaretUp, faChartBar_1.faChartBar, faChartLine_1.faChartLine, faCheck_1.faCheck, faCheckCircle_2.faCheckCircle, faCheckCircle_1.faCheckCircle, faCheckSquare_1.faCheckSquare, faChevronDown_1.faChevronDown, faChevronLeft_1.faChevronLeft, faChevronRight_1.faChevronRight, faChevronUp_1.faChevronUp, faCircle_2.faCircle, faCircleNotch_1.faCircleNotch, faCircle_1.faCircle, faClipboard_1.faClipboard, faClipboardCheck_1.faClipboardCheck, faClock_1.faClock, faClock_2.faClock, faClone_1.faClone, faCloudDownloadAlt_1.faCloudDownloadAlt, faCloudShowersHeavy_1.faCloudShowersHeavy, faCloudUploadAlt_1.faCloudUploadAlt, faCodeBranch_1.faCodeBranch, faCog_1.faCog, faCoins_1.faCoins, faColumns_1.faColumns, faCommentAlt_1.faCommentAlt, faCompass_1.faCompass, faCompress_1.faCompress, faCompressArrowsAlt_1.faCompressArrowsAlt, faCopy_1.faCopy, faCrosshairs_1.faCrosshairs, faCrown_1.faCrown, faDoorClosed_1.faDoorClosed, faDoorOpen_1.faDoorOpen, faDownload_1.faDownload, faDungeon_1.faDungeon, faEdit_1.faEdit, faEllipsisH_1.faEllipsisH, faEllipsisV_1.faEllipsisV, faEnvelope_2.faEnvelope, faEnvelope_1.faEnvelope, faEnvelopeOpenText_1.faEnvelopeOpenText, faEraser_1.faEraser, faExchangeAlt_1.faExchangeAlt, faExclamation_1.faExclamation, faExclamationCircle_1.faExclamationCircle, faExclamationTriangle_1.faExclamationTriangle, faExpand_1.faExpand, faExpandArrowsAlt_1.faExpandArrowsAlt, faExternalLinkAlt_1.faExternalLinkAlt, faExternalLinkSquareAlt_1.faExternalLinkSquareAlt, faEye_1.faEye, faEyeSlash_1.faEyeSlash, faFastBackward_1.faFastBackward, faFastForward_1.faFastForward, faFeatherAlt_1.faFeatherAlt, faFile_1.faFile, faFileAlt_1.faFileAlt, faFileAlt_2.faFileAlt, faFileExport_1.faFileExport, faFileImport_1.faFileImport, faFileSignature_1.faFileSignature, faFillDrip_1.faFillDrip, faFilter_1.faFilter, faFlag_1.faFlag, faFlask_1.faFlask, faFolder_1.faFolder, faFolderOpen_1.faFolderOpen, faForward_1.faForward, faGavel_1.faGavel, faGlobeAmericas_1.faGlobeAmericas, faGlobeEurope_1.faGlobeEurope, faGripLines_1.faGripLines, faGripLinesVertical_1.faGripLinesVertical, faHandshake_1.faHandshake, faHashtag_1.faHashtag, faHeartBroken_1.faHeartBroken, faHighlighter_1.faHighlighter, faHistory_1.faHistory, faIdBadge_1.faIdBadge, faImage_1.faImage, faInfoCircle_1.faInfoCircle, faKey_1.faKey, faKeyboard_1.faKeyboard, faLaptop_1.faLaptop, faLayerGroup_1.faLayerGroup, faLevelUpAlt_1.faLevelUpAlt, faLifeRing_1.faLifeRing, faLink_1.faLink, faListOl_1.faListOl, faListUl_1.faListUl, faLock_1.faLock, faLongArrowAltRight_1.faLongArrowAltRight, faMagic_1.faMagic, faMapMarkerAlt_1.faMapMarkerAlt, faMapSigns_1.faMapSigns, faMeteor_1.faMeteor, faMinus_1.faMinus, faMinusCircle_1.faMinusCircle, faMoneyBill_1.faMoneyBill, faMoneyBillWave_1.faMoneyBillWave, faMoneyCheckAlt_1.faMoneyCheckAlt, faMousePointer_1.faMousePointer, faPalette_1.faPalette, faPaperclip_1.faPaperclip, faPaperPlane_1.faPaperPlane, faPaste_1.faPaste, faPause_1.faPause, faPen_1.faPen, faPencilRuler_1.faPencilRuler, faPlay_1.faPlay, faPlug_1.faPlug, faPlus_1.faPlus, faPlusCircle_1.faPlusCircle, faPooStorm_1.faPooStorm, faQuestion_1.faQuestion, faQuestionCircle_2.faQuestionCircle, faQuestionCircle_1.faQuestionCircle, faRandom_1.faRandom, faRedo_1.faRedo, faReply_1.faReply, faRobot_1.faRobot, faRocket_1.faRocket, faSave_1.faSave, faScroll_1.faScroll, faSearch_1.faSearch, faSearchPlus_1.faSearchPlus, faSeedling_1.faSeedling, faServer_1.faServer, faShare_1.faShare, faShareAlt_1.faShareAlt, faShieldAlt_1.faShieldAlt, faSignal_1.faSignal, faSignature_1.faSignature, faSignOutAlt_1.faSignOutAlt, faSitemap_1.faSitemap, faSkull_1.faSkull, faSlidersH_1.faSlidersH, faSort_1.faSort, faSortDown_1.faSortDown, faSortUp_1.faSortUp, faSpinner_1.faSpinner, faSquare_1.faSquare, faStamp_1.faStamp, faStar_1.faStar, faStar_2.faStar, faStopwatch_1.faStopwatch, faSuitcaseRolling_1.faSuitcaseRolling, faSync_1.faSync, faTable_1.faTable, faTag_1.faTag, faTasks_1.faTasks, faThLarge_1.faThLarge, faThumbsDown_1.faThumbsDown, faThumbsDown_2.faThumbsDown, faThumbsUp_1.faThumbsUp, faThumbsUp_2.faThumbsUp, faTicketAlt_1.faTicketAlt, faTimes_1.faTimes, faTimesCircle_1.faTimesCircle, faTimesCircle_2.faTimesCircle, faTools_1.faTools, faTrash_1.faTrash, faUndo_1.faUndo, faUniversalAccess_1.faUniversalAccess, faUnlink_1.faUnlink, faUnlock_1.faUnlock, faUser_2.faUser, faUserAstronaut_1.faUserAstronaut, faUserClock_1.faUserClock, faUserFriends_1.faUserFriends, faUserLock_1.faUserLock, faUserPlus_1.faUserPlus, faUser_1.faUser, faUsers_1.faUsers, faUserSecret_1.faUserSecret, faUserShield_1.faUserShield, faVial_1.faVial, faVideo_1.faVideo, faWrench_1.faWrench, faAward_1.faAward);
|
|
254
253
|
var CUSTOM_ICON_TYPE;
|
|
255
254
|
(function (CUSTOM_ICON_TYPE) {
|
|
256
255
|
CUSTOM_ICON_TYPE["ARROW_TO_BOTTOM"] = "arrow-to-bottom";
|
|
@@ -258,11 +257,13 @@ var CUSTOM_ICON_TYPE;
|
|
|
258
257
|
CUSTOM_ICON_TYPE["ARROW_TO_RIGHT"] = "arrow-to-right";
|
|
259
258
|
CUSTOM_ICON_TYPE["BADGE_CHECK"] = "badge-check";
|
|
260
259
|
CUSTOM_ICON_TYPE["BRAND_CONFLUENCE"] = "brand-confluence";
|
|
260
|
+
CUSTOM_ICON_TYPE["BRAND_FRONT"] = "brand-front";
|
|
261
261
|
CUSTOM_ICON_TYPE["BRAND_GOOGLE_DRIVE"] = "brand-google-drive";
|
|
262
262
|
CUSTOM_ICON_TYPE["BRAND_JIRA"] = "brand-jira";
|
|
263
263
|
CUSTOM_ICON_TYPE["BRAND_MICROSOFT_TEAMS"] = "brand-microsoft-teams";
|
|
264
|
-
CUSTOM_ICON_TYPE["BRAND_ZENDESK"] = "brand-zendesk";
|
|
265
264
|
CUSTOM_ICON_TYPE["BRAND_SALESFORCE"] = "brand-salesforce";
|
|
265
|
+
CUSTOM_ICON_TYPE["BRAND_SLACK"] = "brand-slack";
|
|
266
|
+
CUSTOM_ICON_TYPE["BRAND_ZENDESK"] = "brand-zendesk";
|
|
266
267
|
CUSTOM_ICON_TYPE["COMMENT_ALT_CHECK"] = "comment-alt-check";
|
|
267
268
|
CUSTOM_ICON_TYPE["CONVEYOR_LOGO"] = "conveyor-logo";
|
|
268
269
|
CUSTOM_ICON_TYPE["DIALOG_CHECK"] = "dialog-check";
|
|
@@ -284,11 +285,13 @@ const CustomIcons = {
|
|
|
284
285
|
[CUSTOM_ICON_TYPE.ARROW_TO_RIGHT]: svg_1.ArrowToRight,
|
|
285
286
|
[CUSTOM_ICON_TYPE.BADGE_CHECK]: svg_1.BadgeCheck,
|
|
286
287
|
[CUSTOM_ICON_TYPE.BRAND_CONFLUENCE]: svg_1.BrandConfluenceIcon,
|
|
288
|
+
[CUSTOM_ICON_TYPE.BRAND_FRONT]: svg_1.BrandFront,
|
|
287
289
|
[CUSTOM_ICON_TYPE.BRAND_GOOGLE_DRIVE]: svg_1.BrandGoogleDriveIcon,
|
|
288
290
|
[CUSTOM_ICON_TYPE.BRAND_JIRA]: svg_1.BrandJira,
|
|
289
291
|
[CUSTOM_ICON_TYPE.BRAND_MICROSOFT_TEAMS]: svg_1.BrandMicrosoftTeams,
|
|
290
292
|
[CUSTOM_ICON_TYPE.BRAND_SALESFORCE]: svg_1.BrandSalesforce,
|
|
291
|
-
[CUSTOM_ICON_TYPE.
|
|
293
|
+
[CUSTOM_ICON_TYPE.BRAND_SLACK]: svg_1.BrandSlack,
|
|
294
|
+
[CUSTOM_ICON_TYPE.BRAND_ZENDESK]: svg_1.BrandZendesk,
|
|
292
295
|
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: svg_1.CommentAltCheck,
|
|
293
296
|
[CUSTOM_ICON_TYPE.CONVEYOR_LOGO]: svg_1.ConveyorLogoIcon,
|
|
294
297
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: svg_1.DialogCheck,
|
|
@@ -299,7 +302,7 @@ const CustomIcons = {
|
|
|
299
302
|
[CUSTOM_ICON_TYPE.INSERT_MIDDLE]: svg_1.InsertMiddle,
|
|
300
303
|
[CUSTOM_ICON_TYPE.INSERT_START]: svg_1.InsertStart,
|
|
301
304
|
[CUSTOM_ICON_TYPE.SCROLL]: svg_1.Scroll,
|
|
302
|
-
[CUSTOM_ICON_TYPE.SHIELD_CHECK]:
|
|
305
|
+
[CUSTOM_ICON_TYPE.SHIELD_CHECK]: svg_1.ShieldCheck,
|
|
303
306
|
[CUSTOM_ICON_TYPE.SPARKLE]: svg_1.Sparkle,
|
|
304
307
|
[CUSTOM_ICON_TYPE.TRIANGLE_DOWN]: svg_1.TriangleDown,
|
|
305
308
|
[CUSTOM_ICON_TYPE.TRIANGLE_UP]: svg_1.TriangleUp,
|
|
@@ -471,6 +474,7 @@ var ICON_TYPE;
|
|
|
471
474
|
ICON_TYPE["SQUARE"] = "square";
|
|
472
475
|
ICON_TYPE["STAMP"] = "stamp";
|
|
473
476
|
ICON_TYPE["STAR"] = "star";
|
|
477
|
+
ICON_TYPE["STOPWATCH"] = "stopwatch";
|
|
474
478
|
ICON_TYPE["SUITCASE_ROLLING"] = "suitcase-rolling";
|
|
475
479
|
ICON_TYPE["SYNC"] = "sync";
|
|
476
480
|
ICON_TYPE["TABLE"] = "table";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BrandFront = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const BrandFront = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "32", height: "32", viewBox: "0 0 65 65", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M0 63.6152H21.3918V21.3008H64.0428V-0.00341797H0V63.6152Z" }),
|
|
12
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M45.5945 64.8878C56.2523 64.8878 64.8922 56.2479 64.8922 45.5901C64.8922 34.9323 56.2523 26.2925 45.5945 26.2925C34.9367 26.2925 26.2969 34.9323 26.2969 45.5901C26.2969 56.2479 34.9367 64.8878 45.5945 64.8878Z" })));
|
|
13
|
+
};
|
|
14
|
+
exports.BrandFront = BrandFront;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BrandSlack = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const BrandSlack = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "32", height: "32", viewBox: "0 0 32 32", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M6.813 20.181c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329c0-1.832 1.497-3.329 3.329-3.329h3.329v3.329z" }),
|
|
12
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M8.49 20.181c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329v8.335c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329v-8.335z" }),
|
|
13
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M11.819 6.813c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329c1.832 0 3.329 1.497 3.329 3.329v3.329h-3.329z" }),
|
|
14
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M11.819 8.49c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329h-8.335c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329h8.335z" }),
|
|
15
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M25.187 11.819c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329c0 1.832-1.497 3.329-3.329 3.329h-3.329v-3.329z" }),
|
|
16
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M23.51 11.819c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329v-8.335c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329v8.335z" }),
|
|
17
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M20.181 25.187c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329c-1.832 0-3.329-1.497-3.329-3.329v-3.329h3.329z" }),
|
|
18
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M20.181 23.51c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329h8.335c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329h-8.335z" })));
|
|
19
|
+
};
|
|
20
|
+
exports.BrandSlack = BrandSlack;
|
|
@@ -7,7 +7,7 @@ exports.BrandZendesk = void 0;
|
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const Svg_1 = require("../../Svg");
|
|
9
9
|
const BrandZendesk = (props) => {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "32", height: "32", viewBox: "0 0 32 32", fill: "
|
|
11
|
-
react_1.default.createElement("path", { d: "M24.068 20.44c-0.001 0-0.002 0-0.003 0-3.823 0-6.923 3.1-6.923 6.923 0 0.001 0 0.003 0 0.004v-0h13.854c0-0 0-0 0-0 0-3.825-3.101-6.926-6.926-6.926-0 0-0 0-0 0h0zM14.858 10.643l-13.854 16.724h13.854zM1.004 4.636c0 3.826 3.101 6.927 6.927 6.927s6.927-3.101 6.927-6.927v0zM17.142 4.633v16.728l13.854-16.726h-13.854z" })));
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "32", height: "32", viewBox: "0 0 32 32", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M24.068 20.44c-0.001 0-0.002 0-0.003 0-3.823 0-6.923 3.1-6.923 6.923 0 0.001 0 0.003 0 0.004v-0h13.854c0-0 0-0 0-0 0-3.825-3.101-6.926-6.926-6.926-0 0-0 0-0 0h0zM14.858 10.643l-13.854 16.724h13.854zM1.004 4.636c0 3.826 3.101 6.927 6.927 6.927s6.927-3.101 6.927-6.927v0zM17.142 4.633v16.728l13.854-16.726h-13.854z" })));
|
|
12
12
|
};
|
|
13
13
|
exports.BrandZendesk = BrandZendesk;
|
|
@@ -3,11 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.ShieldCheck = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const Svg_1 = require("../../Svg");
|
|
9
|
-
const
|
|
9
|
+
const ShieldCheck = (props) => {
|
|
10
10
|
return (react_1.default.createElement(Svg_1.Svg, { width: "30", height: "32", viewBox: "0 0 30 32", ...props },
|
|
11
11
|
react_1.default.createElement("path", { fill: "currentColor", d: "M26.885 4.846l-11.077-4.615c-0.288-0.115-0.75-0.173-1.038-0.173-0.346 0-0.808 0.058-1.096 0.173l-11.077 4.615c-1.038 0.462-1.673 1.442-1.673 2.538 0 11.481 6.577 19.385 12.75 21.981 0.692 0.288 1.442 0.288 2.135 0 4.962-2.077 12.808-9.173 12.808-21.981 0-1.096-0.692-2.077-1.731-2.538zM24.173 11.423l-10.615 10.615c-0.346 0.404-0.981 0.404-1.327 0l-6-6c-0.346-0.346-0.346-0.923 0-1.269l1.327-1.327c0.346-0.346 0.923-0.346 1.269 0l4.096 4.038 8.654-8.654c0.346-0.346 0.923-0.346 1.269 0l1.327 1.327c0.346 0.346 0.346 0.923 0 1.269z" })));
|
|
12
12
|
};
|
|
13
|
-
exports.
|
|
13
|
+
exports.ShieldCheck = ShieldCheck;
|
|
@@ -3,10 +3,13 @@ export * from "./ArrowToLeft";
|
|
|
3
3
|
export * from "./ArrowToRight";
|
|
4
4
|
export * from "./BadgeCheck";
|
|
5
5
|
export * from "./BrandConfluenceIcon";
|
|
6
|
+
export * from "./BrandFront";
|
|
6
7
|
export * from "./BrandGoogleDriveIcon";
|
|
7
8
|
export * from "./BrandJira";
|
|
8
9
|
export * from "./BrandMicrosoftTeams";
|
|
9
10
|
export * from "./BrandSalesforce";
|
|
11
|
+
export * from "./BrandSlack";
|
|
12
|
+
export * from "./BrandZendesk";
|
|
10
13
|
export * from "./CommentAltCheck";
|
|
11
14
|
export * from "./ConveyorLogoIcon";
|
|
12
15
|
export * from "./DialogCheck";
|
|
@@ -17,5 +20,6 @@ export * from "./InsertEnd";
|
|
|
17
20
|
export * from "./InsertMiddle";
|
|
18
21
|
export * from "./InsertStart";
|
|
19
22
|
export * from "./Scroll";
|
|
23
|
+
export * from "./ShieldCheck";
|
|
20
24
|
export * from "./Sparkle";
|
|
21
25
|
export * from "./Triangle";
|
|
@@ -19,10 +19,13 @@ __exportStar(require("./ArrowToLeft"), exports);
|
|
|
19
19
|
__exportStar(require("./ArrowToRight"), exports);
|
|
20
20
|
__exportStar(require("./BadgeCheck"), exports);
|
|
21
21
|
__exportStar(require("./BrandConfluenceIcon"), exports);
|
|
22
|
+
__exportStar(require("./BrandFront"), exports);
|
|
22
23
|
__exportStar(require("./BrandGoogleDriveIcon"), exports);
|
|
23
24
|
__exportStar(require("./BrandJira"), exports);
|
|
24
25
|
__exportStar(require("./BrandMicrosoftTeams"), exports);
|
|
25
26
|
__exportStar(require("./BrandSalesforce"), exports);
|
|
27
|
+
__exportStar(require("./BrandSlack"), exports);
|
|
28
|
+
__exportStar(require("./BrandZendesk"), exports);
|
|
26
29
|
__exportStar(require("./CommentAltCheck"), exports);
|
|
27
30
|
__exportStar(require("./ConveyorLogoIcon"), exports);
|
|
28
31
|
__exportStar(require("./DialogCheck"), exports);
|
|
@@ -33,5 +36,6 @@ __exportStar(require("./InsertEnd"), exports);
|
|
|
33
36
|
__exportStar(require("./InsertMiddle"), exports);
|
|
34
37
|
__exportStar(require("./InsertStart"), exports);
|
|
35
38
|
__exportStar(require("./Scroll"), exports);
|
|
39
|
+
__exportStar(require("./ShieldCheck"), exports);
|
|
36
40
|
__exportStar(require("./Sparkle"), exports);
|
|
37
41
|
__exportStar(require("./Triangle"), exports);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { SvgProps } from "../Svg";
|
|
3
|
-
export declare const integrationLogoNames: readonly ["addigy", "aws", "bamboohr", "bitbucket", "conveyor", "deploy", "docusign", "events-api", "gcp", "github", "gitlab", "google_drive", "gsuite", "hubspot", "jamf", "jira", "jumpcloud", "microsoft_teams", "okta", "onelogin", "service_now", "salesforce", "slack", "zendesk", "zoom"];
|
|
3
|
+
export declare const integrationLogoNames: readonly ["addigy", "aws", "bamboohr", "bitbucket", "conveyor", "deploy", "docusign", "events-api", "front", "gcp", "github", "gitlab", "google_drive", "gsuite", "hubspot", "jamf", "jira", "jumpcloud", "microsoft_teams", "okta", "onelogin", "service_now", "salesforce", "slack", "zendesk", "zoom"];
|
|
4
4
|
export type IntegrationLogoName = typeof integrationLogoNames[number];
|
|
5
5
|
export interface IntegrationLogoProps extends SvgProps {
|
|
6
6
|
logo?: IntegrationLogoName | string;
|
|
@@ -23,6 +23,8 @@ const IntegrationLogoSvg = ({ logo, ...rest }) => {
|
|
|
23
23
|
return react_1.default.createElement(svg_1.DocuSignSvg, { ...rest });
|
|
24
24
|
case "events-api":
|
|
25
25
|
return react_1.default.createElement(svg_1.EventsAPI, { ...rest });
|
|
26
|
+
case "front":
|
|
27
|
+
return react_1.default.createElement(svg_1.FrontSvg, { ...rest });
|
|
26
28
|
case "gcp":
|
|
27
29
|
return react_1.default.createElement(svg_1.GcpSvg, { ...rest });
|
|
28
30
|
case "github":
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.FrontSvg = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const wrapper_1 = require("./wrapper");
|
|
9
|
+
const FrontSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, { viewBox: square ? "0 0 65 65" : "0 0 283 65", ...rest },
|
|
10
|
+
react_1.default.createElement("title", null, "Front integration logo"),
|
|
11
|
+
react_1.default.createElement("g", null,
|
|
12
|
+
react_1.default.createElement("path", { d: "M0 63.6152H21.3918V21.3008H64.0428V-0.00341797H0V63.6152Z", fill: color || "#a857f1" }),
|
|
13
|
+
react_1.default.createElement("path", { d: "M45.5945 64.8878C56.2523 64.8878 64.8922 56.2479 64.8922 45.5901C64.8922 34.9323 56.2523 26.2925 45.5945 26.2925C34.9367 26.2925 26.2969 34.9323 26.2969 45.5901C26.2969 56.2479 34.9367 64.8878 45.5945 64.8878Z", fill: color || "#a857f1" })),
|
|
14
|
+
!square && (react_1.default.createElement("g", null,
|
|
15
|
+
react_1.default.createElement("path", { d: "M259.657 62.7285C255.717 62.7285 252.686 61.6893 250.564 59.6108C248.485 57.5323 247.446 54.5012 247.446 50.5174V31.6812H239.457V20.7041H247.446V6.41455H260.762V20.7041H272.128V31.6812H260.762V47.7245C260.762 49.0668 261.108 50.0844 261.801 50.7773C262.494 51.4701 263.511 51.8165 264.854 51.8165H272.128V62.7285H259.657Z", fill: color || "#300c41" }),
|
|
16
|
+
react_1.default.createElement("path", { d: "M195.352 20.7035H207.433V24.211C208.818 22.6954 210.507 21.5263 212.499 20.7035C214.534 19.8375 216.786 19.3828 219.254 19.3395C221.679 19.2962 223.952 19.7076 226.074 20.5736C228.196 21.4397 230.036 22.6521 231.595 24.211C233.154 25.8131 234.345 27.7834 235.168 30.1217C236.034 32.4167 236.467 35.2313 236.467 38.5655V62.7279H223.086V39.9295C223.086 38.1975 222.913 36.8551 222.567 35.9025C222.264 34.9065 221.766 34.0621 221.073 33.3693C219.817 32.1569 218.107 31.5506 215.942 31.5506C213.776 31.5506 212.066 32.1569 210.81 33.3693C210.074 34.0621 209.533 34.9065 209.186 35.9025C208.883 36.8551 208.732 38.1975 208.732 39.9295V62.7279H195.352V20.7035Z", fill: color || "#300c41" }),
|
|
17
|
+
react_1.default.createElement("path", { d: "M167.21 63.8325C162.836 63.8325 158.852 62.8582 155.258 60.9096C151.708 59.0043 148.893 56.3412 146.814 52.9204C144.779 49.5429 143.762 45.7972 143.762 41.6836C143.762 37.5699 144.779 33.8026 146.814 30.3818C148.893 26.961 151.708 24.2762 155.258 22.3277C158.852 20.3358 162.836 19.3398 167.21 19.3398C171.583 19.3398 175.545 20.3358 179.096 22.3277C182.69 24.2762 185.505 26.961 187.54 30.3818C189.575 33.8026 190.593 37.5699 190.593 41.6836C190.593 45.7972 189.575 49.5429 187.54 52.9204C185.505 56.3412 182.69 59.0043 179.096 60.9096C175.545 62.8582 171.583 63.8325 167.21 63.8325ZM167.21 52.0111C169.028 52.0111 170.652 51.5564 172.081 50.6471C173.553 49.7377 174.701 48.5036 175.524 46.9447C176.346 45.3859 176.758 43.6322 176.758 41.6836C176.758 39.735 176.346 37.9813 175.524 36.4224C174.701 34.8635 173.553 33.6511 172.081 32.7851C170.652 31.8757 169.028 31.421 167.21 31.421C165.348 31.421 163.681 31.8757 162.208 32.7851C160.779 33.6511 159.653 34.8635 158.831 36.4224C158.008 37.9813 157.597 39.735 157.597 41.6836C157.597 43.6322 158.008 45.3859 158.831 46.9447C159.653 48.5036 160.801 49.7377 162.273 50.6471C163.746 51.5564 165.391 52.0111 167.21 52.0111Z", fill: color || "#300c41" }),
|
|
18
|
+
react_1.default.createElement("path", { d: "M114.129 20.7037H126.145V25.7051C127.574 23.9297 129.285 22.5657 131.276 21.613C133.312 20.6604 135.498 20.1841 137.837 20.1841C139.352 20.1841 140.824 20.314 142.253 20.5738V33.1746C141.214 32.7849 139.785 32.59 137.967 32.59C134.762 32.59 132.229 33.5643 130.367 35.5129C129.371 36.5089 128.613 37.7213 128.094 39.1503C127.617 40.5792 127.379 42.4196 127.379 44.6713V62.7281H114.129V20.7037Z", fill: color || "#300c41" }),
|
|
19
|
+
react_1.default.createElement("path", { d: "M75.8164 -0.665527H109.852V12.0002H89.5214V24.4062H109.462V36.6173H89.5214V62.7283H75.8164V-0.665527Z", fill: color || "#300c41" })))));
|
|
20
|
+
exports.FrontSvg = FrontSvg;
|
|
@@ -7,6 +7,7 @@ export { DefaultSvg } from "./default";
|
|
|
7
7
|
export { DeploySvg } from "./deploy";
|
|
8
8
|
export { DocuSignSvg } from "./docusign";
|
|
9
9
|
export { EventsAPI } from "./events-api";
|
|
10
|
+
export { FrontSvg } from "./front";
|
|
10
11
|
export { GcpSvg } from "./gcp";
|
|
11
12
|
export { GithubSvg } from "./github";
|
|
12
13
|
export { GitlabSvg } from "./gitlab";
|
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.ZoomSvg = exports.ZendeskSvg = exports.SlackSvg = exports.SalesforceSvg = exports.ServiceNowSvg = exports.OneLoginSvg = exports.OktaSvg = exports.MicrosoftTeamsSvg = exports.JumpcloudSvg = exports.JiraSvg = exports.JamfSvg = exports.HubspotSvg = exports.GsuiteSvg = exports.GoogleDriveSvg = exports.GitlabSvg = exports.GithubSvg = exports.GcpSvg = exports.EventsAPI = exports.DocuSignSvg = exports.DeploySvg = exports.DefaultSvg = exports.ConveyorSvg = exports.BitbucketSvg = exports.BambooHrSvg = exports.AwsSvg = exports.AddigySvg = void 0;
|
|
17
|
+
exports.ZoomSvg = exports.ZendeskSvg = exports.SlackSvg = exports.SalesforceSvg = exports.ServiceNowSvg = exports.OneLoginSvg = exports.OktaSvg = exports.MicrosoftTeamsSvg = exports.JumpcloudSvg = exports.JiraSvg = exports.JamfSvg = exports.HubspotSvg = exports.GsuiteSvg = exports.GoogleDriveSvg = exports.GitlabSvg = exports.GithubSvg = exports.GcpSvg = exports.FrontSvg = exports.EventsAPI = exports.DocuSignSvg = exports.DeploySvg = exports.DefaultSvg = exports.ConveyorSvg = exports.BitbucketSvg = exports.BambooHrSvg = exports.AwsSvg = exports.AddigySvg = void 0;
|
|
18
18
|
var addigy_1 = require("./addigy");
|
|
19
19
|
Object.defineProperty(exports, "AddigySvg", { enumerable: true, get: function () { return addigy_1.AddigySvg; } });
|
|
20
20
|
var aws_1 = require("./aws");
|
|
@@ -33,6 +33,8 @@ var docusign_1 = require("./docusign");
|
|
|
33
33
|
Object.defineProperty(exports, "DocuSignSvg", { enumerable: true, get: function () { return docusign_1.DocuSignSvg; } });
|
|
34
34
|
var events_api_1 = require("./events-api");
|
|
35
35
|
Object.defineProperty(exports, "EventsAPI", { enumerable: true, get: function () { return events_api_1.EventsAPI; } });
|
|
36
|
+
var front_1 = require("./front");
|
|
37
|
+
Object.defineProperty(exports, "FrontSvg", { enumerable: true, get: function () { return front_1.FrontSvg; } });
|
|
36
38
|
var gcp_1 = require("./gcp");
|
|
37
39
|
Object.defineProperty(exports, "GcpSvg", { enumerable: true, get: function () { return gcp_1.GcpSvg; } });
|
|
38
40
|
var github_1 = require("./github");
|
|
@@ -32,12 +32,16 @@ const classnames_1 = __importDefault(require("classnames"));
|
|
|
32
32
|
const utilities_1 = require("../../utilities");
|
|
33
33
|
const Box_1 = require("../Box");
|
|
34
34
|
const cn = (0, utilities_1.bemHOF)("LoadingDots");
|
|
35
|
-
const LoadingDot = ({
|
|
36
|
-
|
|
35
|
+
const LoadingDot = ({ size = 4 }) => (react_1.default.createElement(Box_1.Box, { as: "span", className: cn({ e: "dot" }), style: {
|
|
36
|
+
height: `${size}px`,
|
|
37
|
+
width: `${size}px`,
|
|
37
38
|
} }));
|
|
38
|
-
exports.LoadingDots = (0, react_1.forwardRef)(({ className, style }, ref) => {
|
|
39
|
-
return (react_1.default.createElement(Box_1.Box, { ref: ref, className: (0, classnames_1.default)(cn(), className), style:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
exports.LoadingDots = (0, react_1.forwardRef)(({ size = 4, spacing = 2, bounce = false, className, style }, ref) => {
|
|
40
|
+
return (react_1.default.createElement(Box_1.Box, { ref: ref, className: (0, classnames_1.default)(cn(), bounce && cn({ m: "bounce" }), className), style: {
|
|
41
|
+
...style,
|
|
42
|
+
gap: `${spacing}px`,
|
|
43
|
+
} },
|
|
44
|
+
react_1.default.createElement(LoadingDot, { size: size }),
|
|
45
|
+
react_1.default.createElement(LoadingDot, { size: size }),
|
|
46
|
+
react_1.default.createElement(LoadingDot, { size: size })));
|
|
43
47
|
});
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
export declare const MarkdownDirectiveChipFront: ({ children, }: {
|
|
3
|
+
children: string;
|
|
4
|
+
}) => React.JSX.Element;
|
|
2
5
|
export declare const MarkdownDirectiveChipJira: ({ children, }: {
|
|
3
6
|
children: string;
|
|
4
7
|
}) => React.JSX.Element;
|
|
@@ -8,6 +11,9 @@ export declare const MarkdownDirectiveChipSalesforce: ({ children, }: {
|
|
|
8
11
|
export declare const MarkdownDirectiveChipServiceNow: ({ children, }: {
|
|
9
12
|
children: string;
|
|
10
13
|
}) => React.JSX.Element;
|
|
14
|
+
export declare const MarkdownDirectiveChipSlack: ({ children, }: {
|
|
15
|
+
children: string;
|
|
16
|
+
}) => React.JSX.Element;
|
|
11
17
|
export declare const MarkdownDirectiveChipZendesk: ({ children, }: {
|
|
12
18
|
children: string;
|
|
13
19
|
}) => React.JSX.Element;
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.MarkdownDirectiveChipInfo = exports.MarkdownDirectiveChipConveyor = exports.MarkdownDirectiveChipZendesk = exports.MarkdownDirectiveChipServiceNow = exports.MarkdownDirectiveChipSalesforce = exports.MarkdownDirectiveChipJira = void 0;
|
|
6
|
+
exports.MarkdownDirectiveChipInfo = exports.MarkdownDirectiveChipConveyor = exports.MarkdownDirectiveChipZendesk = exports.MarkdownDirectiveChipSlack = exports.MarkdownDirectiveChipServiceNow = exports.MarkdownDirectiveChipSalesforce = exports.MarkdownDirectiveChipJira = exports.MarkdownDirectiveChipFront = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const classnames_1 = __importDefault(require("classnames"));
|
|
9
9
|
const tokens_1 = require("../../../style-dictionary/dist/tokens");
|
|
@@ -15,6 +15,10 @@ const sharedProps = {
|
|
|
15
15
|
verticalAlign: "text-bottom",
|
|
16
16
|
},
|
|
17
17
|
};
|
|
18
|
+
const MarkdownDirectiveChipFront = ({ children, }) => {
|
|
19
|
+
return (react_1.default.createElement(Chip_1.Chip.Integration, { integration: "front", className: (0, classnames_1.default)("uppercase", sharedProps.className), style: sharedProps.style }, children));
|
|
20
|
+
};
|
|
21
|
+
exports.MarkdownDirectiveChipFront = MarkdownDirectiveChipFront;
|
|
18
22
|
const MarkdownDirectiveChipJira = ({ children, }) => {
|
|
19
23
|
return (react_1.default.createElement(Chip_1.Chip.Integration, { integration: "jira", className: (0, classnames_1.default)("uppercase", sharedProps.className), style: sharedProps.style }, children));
|
|
20
24
|
};
|
|
@@ -27,6 +31,10 @@ const MarkdownDirectiveChipServiceNow = ({ children, }) => {
|
|
|
27
31
|
return (react_1.default.createElement(Chip_1.Chip.Integration, { integration: "service_now", className: (0, classnames_1.default)("uppercase", sharedProps.className), style: sharedProps.style }, children));
|
|
28
32
|
};
|
|
29
33
|
exports.MarkdownDirectiveChipServiceNow = MarkdownDirectiveChipServiceNow;
|
|
34
|
+
const MarkdownDirectiveChipSlack = ({ children, }) => {
|
|
35
|
+
return (react_1.default.createElement(Chip_1.Chip.Integration, { integration: "slack", className: (0, classnames_1.default)("uppercase", sharedProps.className), style: sharedProps.style }, children));
|
|
36
|
+
};
|
|
37
|
+
exports.MarkdownDirectiveChipSlack = MarkdownDirectiveChipSlack;
|
|
30
38
|
const MarkdownDirectiveChipZendesk = ({ children, }) => {
|
|
31
39
|
return (react_1.default.createElement(Chip_1.Chip.Integration, { integration: "zendesk", className: (0, classnames_1.default)("uppercase", sharedProps.className), style: sharedProps.style }, children));
|
|
32
40
|
};
|
package/public/css/styles.css
CHANGED
|
@@ -4483,12 +4483,46 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
4483
4483
|
}
|
|
4484
4484
|
}
|
|
4485
4485
|
|
|
4486
|
+
@-webkit-keyframes loadingDotBounce {
|
|
4487
|
+
0%,
|
|
4488
|
+
80%,
|
|
4489
|
+
100% {
|
|
4490
|
+
-webkit-transform: translateY(0);
|
|
4491
|
+
transform: translateY(0);
|
|
4492
|
+
opacity: 1;
|
|
4493
|
+
}
|
|
4494
|
+
40% {
|
|
4495
|
+
-webkit-transform: translateY(-4px);
|
|
4496
|
+
transform: translateY(-4px);
|
|
4497
|
+
opacity: 0.4;
|
|
4498
|
+
}
|
|
4499
|
+
60% {
|
|
4500
|
+
opacity: 0.6;
|
|
4501
|
+
}
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
@keyframes loadingDotBounce {
|
|
4505
|
+
0%,
|
|
4506
|
+
80%,
|
|
4507
|
+
100% {
|
|
4508
|
+
-webkit-transform: translateY(0);
|
|
4509
|
+
transform: translateY(0);
|
|
4510
|
+
opacity: 1;
|
|
4511
|
+
}
|
|
4512
|
+
40% {
|
|
4513
|
+
-webkit-transform: translateY(-4px);
|
|
4514
|
+
transform: translateY(-4px);
|
|
4515
|
+
opacity: 0.4;
|
|
4516
|
+
}
|
|
4517
|
+
60% {
|
|
4518
|
+
opacity: 0.6;
|
|
4519
|
+
}
|
|
4520
|
+
}
|
|
4521
|
+
|
|
4486
4522
|
.ads-LoadingDots {
|
|
4487
4523
|
display: inline-flex;
|
|
4488
|
-
width: 24px;
|
|
4489
4524
|
justify-content: space-between;
|
|
4490
4525
|
align-self: center;
|
|
4491
|
-
padding: 4px;
|
|
4492
4526
|
text-align: center;
|
|
4493
4527
|
vertical-align: middle;
|
|
4494
4528
|
|
|
@@ -4497,12 +4531,39 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
4497
4531
|
|
|
4498
4532
|
.ads-LoadingDots-dot {
|
|
4499
4533
|
display: inline-block;
|
|
4500
|
-
height: 4px;
|
|
4501
|
-
width: 4px;
|
|
4502
4534
|
border-radius: 9999px;
|
|
4503
4535
|
--tw-bg-opacity: 1;
|
|
4504
|
-
background-color: rgb(
|
|
4536
|
+
background-color: rgb(185 200 210 / var(--tw-bg-opacity));
|
|
4505
4537
|
vertical-align: top;
|
|
4538
|
+
|
|
4539
|
+
-webkit-animation: loadingDot 1.2s infinite ease-in-out;
|
|
4540
|
+
|
|
4541
|
+
animation: loadingDot 1.2s infinite ease-in-out;
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4544
|
+
.ads-LoadingDots-dot:nth-child(2) {
|
|
4545
|
+
-webkit-animation-delay: 160ms;
|
|
4546
|
+
animation-delay: 160ms;
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
.ads-LoadingDots-dot:nth-child(3) {
|
|
4550
|
+
-webkit-animation-delay: 320ms;
|
|
4551
|
+
animation-delay: 320ms;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
.ads-LoadingDots--bounce .ads-LoadingDots-dot {
|
|
4555
|
+
-webkit-animation-name: loadingDotBounce;
|
|
4556
|
+
animation-name: loadingDotBounce;
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
.ads-LoadingDots--bounce .ads-LoadingDots-dot:nth-child(1) {
|
|
4560
|
+
-webkit-animation-delay: -320ms;
|
|
4561
|
+
animation-delay: -320ms;
|
|
4562
|
+
}
|
|
4563
|
+
|
|
4564
|
+
.ads-LoadingDots--bounce .ads-LoadingDots-dot:nth-child(2) {
|
|
4565
|
+
-webkit-animation-delay: -160ms;
|
|
4566
|
+
animation-delay: -160ms;
|
|
4506
4567
|
}
|
|
4507
4568
|
|
|
4508
4569
|
.ads-Markdown {
|
|
@@ -8700,6 +8761,10 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
8700
8761
|
background-color: rgb(222 231 238 / var(--tw-bg-opacity));
|
|
8701
8762
|
}
|
|
8702
8763
|
|
|
8764
|
+
.bg-\[\#a857f1\]\/15 {
|
|
8765
|
+
background-color: rgb(168 87 241 / 0.15);
|
|
8766
|
+
}
|
|
8767
|
+
|
|
8703
8768
|
.bg-\[\#2684ff\]\/15 {
|
|
8704
8769
|
background-color: rgb(38 132 255 / 0.15);
|
|
8705
8770
|
}
|
|
@@ -8708,8 +8773,12 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
8708
8773
|
background-color: rgb(62 158 245 / 0.15);
|
|
8709
8774
|
}
|
|
8710
8775
|
|
|
8711
|
-
.bg-\[\#62d84e\]\/
|
|
8712
|
-
background-color: rgb(98 216 78 / 0.
|
|
8776
|
+
.bg-\[\#62d84e\]\/10 {
|
|
8777
|
+
background-color: rgb(98 216 78 / 0.1);
|
|
8778
|
+
}
|
|
8779
|
+
|
|
8780
|
+
.bg-\[\#4a154b\]\/15 {
|
|
8781
|
+
background-color: rgb(74 21 75 / 0.15);
|
|
8713
8782
|
}
|
|
8714
8783
|
|
|
8715
8784
|
.bg-\[\#04363d\]\/5 {
|
|
@@ -8881,6 +8950,11 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
8881
8950
|
color: rgb(32 65 86 / var(--tw-text-opacity));
|
|
8882
8951
|
}
|
|
8883
8952
|
|
|
8953
|
+
.text-\[\#a857f1\] {
|
|
8954
|
+
--tw-text-opacity: 1;
|
|
8955
|
+
color: rgb(168 87 241 / var(--tw-text-opacity));
|
|
8956
|
+
}
|
|
8957
|
+
|
|
8884
8958
|
.text-\[\#2684ff\] {
|
|
8885
8959
|
--tw-text-opacity: 1;
|
|
8886
8960
|
color: rgb(38 132 255 / var(--tw-text-opacity));
|
|
@@ -8896,6 +8970,11 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
8896
8970
|
color: rgb(98 216 78 / var(--tw-text-opacity));
|
|
8897
8971
|
}
|
|
8898
8972
|
|
|
8973
|
+
.text-\[\#4a154b\] {
|
|
8974
|
+
--tw-text-opacity: 1;
|
|
8975
|
+
color: rgb(74 21 75 / var(--tw-text-opacity));
|
|
8976
|
+
}
|
|
8977
|
+
|
|
8899
8978
|
.text-\[\#04363d\] {
|
|
8900
8979
|
--tw-text-opacity: 1;
|
|
8901
8980
|
color: rgb(4 54 61 / var(--tw-text-opacity));
|
|
@@ -8992,10 +9071,6 @@ button.ads-DateRangePicker-preset--isSelected:hover {
|
|
|
8992
9071
|
transition-duration: 150ms;
|
|
8993
9072
|
}
|
|
8994
9073
|
|
|
8995
|
-
.ease-in-out {
|
|
8996
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
8997
|
-
}
|
|
8998
|
-
|
|
8999
9074
|
@-webkit-keyframes fadeIn {
|
|
9000
9075
|
from {
|
|
9001
9076
|
opacity: 0;
|