@streamoid/ui 0.2.4 → 0.2.5

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/dist/index.mjs CHANGED
@@ -4365,7 +4365,7 @@ var ScWorkspaceCard = ({
4365
4365
 
4366
4366
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4367
4367
  import { useState as useState3 } from "react";
4368
- import { SiconSwitch as SiconSwitch3, SiconSettings as SiconSettings3 } from "@streamoid/icons";
4368
+ import { SiconSwitch as SiconSwitch3, SiconSettings as SiconSettings3, SiconLogout as SiconLogout3 } from "@streamoid/icons";
4369
4369
 
4370
4370
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
4371
4371
  var ScWorkspaceSwitchCard_default = {
@@ -4385,12 +4385,13 @@ var ScWorkspaceSwitchCard_default = {
4385
4385
  detailValueInfo: "ScWorkspaceSwitchCard_detailValueInfo",
4386
4386
  detailValueSecondary: "ScWorkspaceSwitchCard_detailValueSecondary",
4387
4387
  vDivider: "ScWorkspaceSwitchCard_vDivider",
4388
- btnIcon: "ScWorkspaceSwitchCard_btnIcon"
4388
+ btnIcon: "ScWorkspaceSwitchCard_btnIcon",
4389
+ leaveBtn: "ScWorkspaceSwitchCard_leaveBtn"
4389
4390
  };
4390
4391
 
4391
4392
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4392
4393
  import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
4393
- function NscWorkspaceSwitch({
4394
+ function ScWorkspaceSwitchCard({
4394
4395
  wsName = "Workspace name is kepler",
4395
4396
  role = "Admin",
4396
4397
  plan = "Free",
@@ -4401,7 +4402,8 @@ function NscWorkspaceSwitch({
4401
4402
  hover,
4402
4403
  className,
4403
4404
  onSwitch,
4404
- onSettings
4405
+ onSettings,
4406
+ onLeave
4405
4407
  }) {
4406
4408
  const [internalHover, setInternalHover] = useState3(false);
4407
4409
  const isHover = hover !== void 0 ? hover : internalHover;
@@ -4496,12 +4498,619 @@ function NscWorkspaceSwitch({
4496
4498
  }
4497
4499
  )
4498
4500
  }
4501
+ ),
4502
+ isHover && isOther && !isAdmin && /* @__PURE__ */ jsx62(
4503
+ "div",
4504
+ {
4505
+ className: ScWorkspaceSwitchCard_default.leaveBtn,
4506
+ onClick: (e) => {
4507
+ e.stopPropagation();
4508
+ onLeave?.();
4509
+ },
4510
+ children: /* @__PURE__ */ jsx62(SiconLogout3, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
4511
+ }
4499
4512
  )
4500
4513
  ] })
4501
4514
  }
4502
4515
  );
4503
4516
  }
4504
- var ScWorkspaceSwitchCard = NscWorkspaceSwitch;
4517
+ var NscWorkspaceSwitch = ScWorkspaceSwitchCard;
4518
+
4519
+ // src/SC-Role-Mobile/ScRoleMobile.module.css
4520
+ var ScRoleMobile_default = {
4521
+ scRoleMobile: "ScRoleMobile_scRoleMobile",
4522
+ "role-admin": "ScRoleMobile_role-admin",
4523
+ "role-member": "ScRoleMobile_role-member",
4524
+ text: "ScRoleMobile_text"
4525
+ };
4526
+
4527
+ // src/SC-Role-Mobile/ScRoleMobile.tsx
4528
+ import { jsx as jsx63 } from "react/jsx-runtime";
4529
+ var ScRoleMobile = ({
4530
+ role = "admin",
4531
+ className,
4532
+ ...props
4533
+ }) => {
4534
+ return /* @__PURE__ */ jsx63(
4535
+ "div",
4536
+ {
4537
+ className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
4538
+ ...props,
4539
+ children: /* @__PURE__ */ jsx63("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
4540
+ }
4541
+ );
4542
+ };
4543
+
4544
+ // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.module.css
4545
+ var ScProfileV2Mobile_default = {
4546
+ scProfileV2Mobile: "ScProfileV2Mobile_scProfileV2Mobile",
4547
+ profileImage: "ScProfileV2Mobile_profileImage",
4548
+ image: "ScProfileV2Mobile_image",
4549
+ initials: "ScProfileV2Mobile_initials",
4550
+ userInfo: "ScProfileV2Mobile_userInfo",
4551
+ userName: "ScProfileV2Mobile_userName",
4552
+ userEmail: "ScProfileV2Mobile_userEmail"
4553
+ };
4554
+
4555
+ // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
4556
+ import { jsx as jsx64, jsxs as jsxs54 } from "react/jsx-runtime";
4557
+ var ScProfileV2Mobile = ({
4558
+ name = "Chris Hemsworth",
4559
+ email = "chris@kepler.com",
4560
+ imageUrl,
4561
+ dpPosition = "left",
4562
+ className,
4563
+ ...props
4564
+ }) => {
4565
+ const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4566
+ const profileImage = /* @__PURE__ */ jsx64("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx64("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ jsx64("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
4567
+ return /* @__PURE__ */ jsxs54(
4568
+ "div",
4569
+ {
4570
+ className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
4571
+ ...props,
4572
+ children: [
4573
+ dpPosition === "left" && profileImage,
4574
+ /* @__PURE__ */ jsxs54("div", { className: ScProfileV2Mobile_default.userInfo, children: [
4575
+ /* @__PURE__ */ jsx64("p", { className: ScProfileV2Mobile_default.userName, children: name }),
4576
+ /* @__PURE__ */ jsx64("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
4577
+ ] }),
4578
+ dpPosition === "right" && profileImage
4579
+ ]
4580
+ }
4581
+ );
4582
+ };
4583
+
4584
+ // src/SC-tableList-mobile/ScTableListMobile.module.css
4585
+ var ScTableListMobile_default = {
4586
+ scTableListMobile: "ScTableListMobile_scTableListMobile",
4587
+ profileRow: "ScTableListMobile_profileRow",
4588
+ userInfo: "ScTableListMobile_userInfo",
4589
+ userName: "ScTableListMobile_userName",
4590
+ userEmail: "ScTableListMobile_userEmail",
4591
+ profileImage: "ScTableListMobile_profileImage",
4592
+ image: "ScTableListMobile_image",
4593
+ initials: "ScTableListMobile_initials",
4594
+ detailsRow: "ScTableListMobile_detailsRow",
4595
+ roleBadge: "ScTableListMobile_roleBadge",
4596
+ roleText: "ScTableListMobile_roleText",
4597
+ accessInfo: "ScTableListMobile_accessInfo",
4598
+ accessGroup: "ScTableListMobile_accessGroup",
4599
+ accessIcon: "ScTableListMobile_accessIcon"
4600
+ };
4601
+
4602
+ // src/SC-tableList-mobile/ScTableListMobile.tsx
4603
+ import { jsx as jsx65, jsxs as jsxs55 } from "react/jsx-runtime";
4604
+ var ScTableListMobile = ({
4605
+ name = "Chris Hemsworth",
4606
+ email = "chris@kepler.com",
4607
+ imageUrl,
4608
+ role = "Admin",
4609
+ accessIcons,
4610
+ permissionIcons,
4611
+ onRowClick,
4612
+ className,
4613
+ ...props
4614
+ }) => {
4615
+ const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4616
+ return /* @__PURE__ */ jsxs55(
4617
+ "div",
4618
+ {
4619
+ className: ScTableListMobile_default.scTableListMobile + " " + className,
4620
+ onClick: onRowClick,
4621
+ ...props,
4622
+ children: [
4623
+ /* @__PURE__ */ jsxs55("div", { className: ScTableListMobile_default.profileRow, children: [
4624
+ /* @__PURE__ */ jsxs55("div", { className: ScTableListMobile_default.userInfo, children: [
4625
+ /* @__PURE__ */ jsx65("p", { className: ScTableListMobile_default.userName, children: name }),
4626
+ /* @__PURE__ */ jsx65("p", { className: ScTableListMobile_default.userEmail, children: email })
4627
+ ] }),
4628
+ /* @__PURE__ */ jsx65("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx65("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ jsx65("div", { className: ScTableListMobile_default.initials, children: initials }) })
4629
+ ] }),
4630
+ /* @__PURE__ */ jsxs55("div", { className: ScTableListMobile_default.detailsRow, children: [
4631
+ /* @__PURE__ */ jsx65("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx65("p", { className: ScTableListMobile_default.roleText, children: role }) }),
4632
+ /* @__PURE__ */ jsxs55("div", { className: ScTableListMobile_default.accessInfo, children: [
4633
+ accessIcons && accessIcons.length > 0 && /* @__PURE__ */ jsx65("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ jsx65("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
4634
+ permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ jsx65("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ jsx65("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
4635
+ ] })
4636
+ ] })
4637
+ ]
4638
+ }
4639
+ );
4640
+ };
4641
+
4642
+ // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.module.css
4643
+ var ScWorkspaceSwitchMobile_default = {
4644
+ scWorkspaceSwitchMobile: "ScWorkspaceSwitchMobile_scWorkspaceSwitchMobile",
4645
+ "variant-current": "ScWorkspaceSwitchMobile_variant-current",
4646
+ "variant-other": "ScWorkspaceSwitchMobile_variant-other",
4647
+ workspaceInfo: "ScWorkspaceSwitchMobile_workspaceInfo",
4648
+ wsNameRow: "ScWorkspaceSwitchMobile_wsNameRow",
4649
+ initialsBox: "ScWorkspaceSwitchMobile_initialsBox",
4650
+ initialsText: "ScWorkspaceSwitchMobile_initialsText",
4651
+ storeName: "ScWorkspaceSwitchMobile_storeName",
4652
+ roleBadge: "ScWorkspaceSwitchMobile_roleBadge",
4653
+ roleText: "ScWorkspaceSwitchMobile_roleText",
4654
+ divider: "ScWorkspaceSwitchMobile_divider",
4655
+ ownerRow: "ScWorkspaceSwitchMobile_ownerRow",
4656
+ ownerIconContainer: "ScWorkspaceSwitchMobile_ownerIconContainer",
4657
+ ownerIcon: "ScWorkspaceSwitchMobile_ownerIcon",
4658
+ ownerText: "ScWorkspaceSwitchMobile_ownerText"
4659
+ };
4660
+
4661
+ // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
4662
+ import { jsx as jsx66, jsxs as jsxs56 } from "react/jsx-runtime";
4663
+ var ScWorkspaceSwitchMobile = ({
4664
+ storeName = "Stores",
4665
+ initials = "WS",
4666
+ role = "Admin",
4667
+ ownerId = "rohan@streamoid.com",
4668
+ currentWs = true,
4669
+ ownerIcon,
4670
+ className,
4671
+ onClick,
4672
+ ...props
4673
+ }) => {
4674
+ const variant = currentWs ? "current" : "other";
4675
+ return /* @__PURE__ */ jsxs56(
4676
+ "div",
4677
+ {
4678
+ className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
4679
+ onClick,
4680
+ ...props,
4681
+ children: [
4682
+ /* @__PURE__ */ jsxs56("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
4683
+ /* @__PURE__ */ jsxs56("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
4684
+ /* @__PURE__ */ jsx66("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx66("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
4685
+ /* @__PURE__ */ jsx66("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
4686
+ ] }),
4687
+ /* @__PURE__ */ jsx66("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ jsx66("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
4688
+ ] }),
4689
+ /* @__PURE__ */ jsx66("div", { className: ScWorkspaceSwitchMobile_default.divider }),
4690
+ /* @__PURE__ */ jsxs56("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
4691
+ /* @__PURE__ */ jsx66("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx66("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
4692
+ /* @__PURE__ */ jsx66("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
4693
+ ] })
4694
+ ]
4695
+ }
4696
+ );
4697
+ };
4698
+
4699
+ // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.module.css
4700
+ var ScWorkspaceSettingsMobile_default = {
4701
+ scWorkspaceSettingsMobile: "ScWorkspaceSettingsMobile_scWorkspaceSettingsMobile",
4702
+ "variant-current": "ScWorkspaceSettingsMobile_variant-current",
4703
+ "variant-other": "ScWorkspaceSettingsMobile_variant-other",
4704
+ workspaceInfo: "ScWorkspaceSettingsMobile_workspaceInfo",
4705
+ wsNameRow: "ScWorkspaceSettingsMobile_wsNameRow",
4706
+ initialsBox: "ScWorkspaceSettingsMobile_initialsBox",
4707
+ initialsText: "ScWorkspaceSettingsMobile_initialsText",
4708
+ storeName: "ScWorkspaceSettingsMobile_storeName",
4709
+ roleBadge: "ScWorkspaceSettingsMobile_roleBadge",
4710
+ roleText: "ScWorkspaceSettingsMobile_roleText",
4711
+ divider: "ScWorkspaceSettingsMobile_divider",
4712
+ infoRow: "ScWorkspaceSettingsMobile_infoRow",
4713
+ iconContainer: "ScWorkspaceSettingsMobile_iconContainer",
4714
+ icon: "ScWorkspaceSettingsMobile_icon",
4715
+ infoText: "ScWorkspaceSettingsMobile_infoText"
4716
+ };
4717
+
4718
+ // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
4719
+ import { jsx as jsx67, jsxs as jsxs57 } from "react/jsx-runtime";
4720
+ var ScWorkspaceSettingsMobile = ({
4721
+ storeName = "Stores",
4722
+ initials = "WS",
4723
+ role = "Admin",
4724
+ ownerId = "rohan@streamoid.com",
4725
+ teamCount = "12 Users",
4726
+ currentWs = true,
4727
+ ownerIcon,
4728
+ teamIcon,
4729
+ className,
4730
+ onClick,
4731
+ ...props
4732
+ }) => {
4733
+ const variant = currentWs ? "current" : "other";
4734
+ return /* @__PURE__ */ jsxs57(
4735
+ "div",
4736
+ {
4737
+ className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
4738
+ onClick,
4739
+ ...props,
4740
+ children: [
4741
+ /* @__PURE__ */ jsxs57("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
4742
+ /* @__PURE__ */ jsxs57("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
4743
+ /* @__PURE__ */ jsx67("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx67("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
4744
+ /* @__PURE__ */ jsx67("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
4745
+ ] }),
4746
+ /* @__PURE__ */ jsx67("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ jsx67("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
4747
+ ] }),
4748
+ /* @__PURE__ */ jsx67("div", { className: ScWorkspaceSettingsMobile_default.divider }),
4749
+ /* @__PURE__ */ jsxs57("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
4750
+ /* @__PURE__ */ jsx67("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx67("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
4751
+ /* @__PURE__ */ jsx67("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
4752
+ ] }),
4753
+ /* @__PURE__ */ jsxs57("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
4754
+ /* @__PURE__ */ jsx67("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx67("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
4755
+ /* @__PURE__ */ jsx67("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
4756
+ ] })
4757
+ ]
4758
+ }
4759
+ );
4760
+ };
4761
+
4762
+ // src/SC-MobileTopNav/ScMobileTopNav.module.css
4763
+ var ScMobileTopNav_default = {
4764
+ scMobileTopNav: "ScMobileTopNav_scMobileTopNav",
4765
+ withBorder: "ScMobileTopNav_withBorder",
4766
+ iconContainer: "ScMobileTopNav_iconContainer",
4767
+ iconPlaceholder: "ScMobileTopNav_iconPlaceholder",
4768
+ hidden: "ScMobileTopNav_hidden",
4769
+ chatTitle: "ScMobileTopNav_chatTitle",
4770
+ heading: "ScMobileTopNav_heading",
4771
+ searchRow: "ScMobileTopNav_searchRow",
4772
+ searchInputContainer: "ScMobileTopNav_searchInputContainer",
4773
+ searchInput: "ScMobileTopNav_searchInput",
4774
+ searchField: "ScMobileTopNav_searchField"
4775
+ };
4776
+
4777
+ // src/SC-MobileTopNav/ScMobileTopNav.tsx
4778
+ import { Fragment as Fragment20, jsx as jsx68, jsxs as jsxs58 } from "react/jsx-runtime";
4779
+ var ScMobileTopNav = ({
4780
+ type = "home",
4781
+ searchIcon = false,
4782
+ search = false,
4783
+ heading = "Heading",
4784
+ chatTitle = "Chat title comes here...",
4785
+ searchPlaceholder = "Search...",
4786
+ searchValue,
4787
+ menuIcon,
4788
+ searchIconElement,
4789
+ closeIcon,
4790
+ moreIcon,
4791
+ onMenuClick,
4792
+ onSearchClick,
4793
+ onCloseClick,
4794
+ onMoreClick,
4795
+ onSearchChange,
4796
+ className,
4797
+ ...props
4798
+ }) => {
4799
+ const hasBorder = type === "chat" || type === "inApp";
4800
+ const showSearch = type === "inApp" && searchIcon && search;
4801
+ return /* @__PURE__ */ jsxs58(
4802
+ "div",
4803
+ {
4804
+ className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
4805
+ ...props,
4806
+ children: [
4807
+ type === "home" && /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
4808
+ type === "chat" && /* @__PURE__ */ jsxs58(Fragment20, { children: [
4809
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
4810
+ /* @__PURE__ */ jsx68("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
4811
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
4812
+ ] }),
4813
+ showSearch && /* @__PURE__ */ jsxs58(Fragment20, { children: [
4814
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs58("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
4815
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
4816
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ jsx68(
4817
+ "input",
4818
+ {
4819
+ type: "text",
4820
+ className: ScMobileTopNav_default.searchField,
4821
+ placeholder: searchPlaceholder,
4822
+ value: searchValue,
4823
+ onChange: (e) => onSearchChange?.(e.target.value)
4824
+ }
4825
+ ) })
4826
+ ] }) }),
4827
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
4828
+ ] }),
4829
+ type === "inApp" && !search && /* @__PURE__ */ jsxs58(Fragment20, { children: [
4830
+ /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
4831
+ /* @__PURE__ */ jsx68("p", { className: ScMobileTopNav_default.heading, children: heading }),
4832
+ /* @__PURE__ */ jsx68(
4833
+ "div",
4834
+ {
4835
+ className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
4836
+ onClick: onSearchClick,
4837
+ children: searchIcon ? searchIconElement || /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ jsx68("div", { className: ScMobileTopNav_default.iconPlaceholder })
4838
+ }
4839
+ )
4840
+ ] })
4841
+ ]
4842
+ }
4843
+ );
4844
+ };
4845
+
4846
+ // src/SC-MobileBottomAction/ScMobileBottomAction.module.css
4847
+ var ScMobileBottomAction_default = {
4848
+ scMobileBottomAction: "ScMobileBottomAction_scMobileBottomAction",
4849
+ button: "ScMobileBottomAction_button",
4850
+ disabled: "ScMobileBottomAction_disabled",
4851
+ buttonText: "ScMobileBottomAction_buttonText"
4852
+ };
4853
+
4854
+ // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
4855
+ import { jsx as jsx69 } from "react/jsx-runtime";
4856
+ var ScMobileBottomAction = ({
4857
+ text = "Save Changes",
4858
+ disabled = false,
4859
+ onClick,
4860
+ className,
4861
+ ...props
4862
+ }) => {
4863
+ return /* @__PURE__ */ jsx69(
4864
+ "div",
4865
+ {
4866
+ className: ScMobileBottomAction_default.scMobileBottomAction + " " + className,
4867
+ ...props,
4868
+ children: /* @__PURE__ */ jsx69(
4869
+ "button",
4870
+ {
4871
+ className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
4872
+ onClick,
4873
+ disabled,
4874
+ children: /* @__PURE__ */ jsx69("span", { className: ScMobileBottomAction_default.buttonText, children: text })
4875
+ }
4876
+ )
4877
+ }
4878
+ );
4879
+ };
4880
+
4881
+ // src/SC-PopUpMenu/ScPopUpMenu.module.css
4882
+ var ScPopUpMenu_default = {
4883
+ scPopUpMenu: "ScPopUpMenu_scPopUpMenu",
4884
+ "state-default": "ScPopUpMenu_state-default",
4885
+ "state-clicked": "ScPopUpMenu_state-clicked",
4886
+ icon: "ScPopUpMenu_icon",
4887
+ menuText: "ScPopUpMenu_menuText"
4888
+ };
4889
+
4890
+ // src/SC-PopUpMenu/ScPopUpMenu.tsx
4891
+ import { jsx as jsx70, jsxs as jsxs59 } from "react/jsx-runtime";
4892
+ var ScPopUpMenu = ({
4893
+ menu = "Options",
4894
+ state = "default",
4895
+ icon,
4896
+ onClick,
4897
+ className,
4898
+ ...props
4899
+ }) => {
4900
+ return /* @__PURE__ */ jsxs59(
4901
+ "div",
4902
+ {
4903
+ className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
4904
+ onClick,
4905
+ ...props,
4906
+ children: [
4907
+ icon && /* @__PURE__ */ jsx70("span", { className: ScPopUpMenu_default.icon, children: icon }),
4908
+ /* @__PURE__ */ jsx70("p", { className: ScPopUpMenu_default.menuText, children: menu })
4909
+ ]
4910
+ }
4911
+ );
4912
+ };
4913
+
4914
+ // src/SC-referralCard-Mobile/ScReferralCardMobile.module.css
4915
+ var ScReferralCardMobile_default = {
4916
+ scReferralCardMobile: "ScReferralCardMobile_scReferralCardMobile",
4917
+ userRow: "ScReferralCardMobile_userRow",
4918
+ profileSection: "ScReferralCardMobile_profileSection",
4919
+ profileImage: "ScReferralCardMobile_profileImage",
4920
+ image: "ScReferralCardMobile_image",
4921
+ initials: "ScReferralCardMobile_initials",
4922
+ userInfo: "ScReferralCardMobile_userInfo",
4923
+ userName: "ScReferralCardMobile_userName",
4924
+ userEmail: "ScReferralCardMobile_userEmail",
4925
+ badge: "ScReferralCardMobile_badge",
4926
+ badgeText: "ScReferralCardMobile_badgeText",
4927
+ divider: "ScReferralCardMobile_divider",
4928
+ detailsRow: "ScReferralCardMobile_detailsRow",
4929
+ dateText: "ScReferralCardMobile_dateText",
4930
+ creditsText: "ScReferralCardMobile_creditsText"
4931
+ };
4932
+
4933
+ // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
4934
+ import { jsx as jsx71, jsxs as jsxs60 } from "react/jsx-runtime";
4935
+ var ScReferralCardMobile = ({
4936
+ name = "Chris Hemsworth",
4937
+ email = "chris@kepler.com",
4938
+ imageUrl,
4939
+ badge = "Confirmed",
4940
+ date = "Nov 9th, 2025",
4941
+ credits = "+ 500",
4942
+ onClick,
4943
+ className,
4944
+ ...props
4945
+ }) => {
4946
+ const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4947
+ return /* @__PURE__ */ jsxs60(
4948
+ "div",
4949
+ {
4950
+ className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
4951
+ onClick,
4952
+ ...props,
4953
+ children: [
4954
+ /* @__PURE__ */ jsxs60("div", { className: ScReferralCardMobile_default.userRow, children: [
4955
+ /* @__PURE__ */ jsxs60("div", { className: ScReferralCardMobile_default.profileSection, children: [
4956
+ /* @__PURE__ */ jsx71("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx71("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ jsx71("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
4957
+ /* @__PURE__ */ jsxs60("div", { className: ScReferralCardMobile_default.userInfo, children: [
4958
+ /* @__PURE__ */ jsx71("p", { className: ScReferralCardMobile_default.userName, children: name }),
4959
+ /* @__PURE__ */ jsx71("p", { className: ScReferralCardMobile_default.userEmail, children: email })
4960
+ ] })
4961
+ ] }),
4962
+ /* @__PURE__ */ jsx71("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ jsx71("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
4963
+ ] }),
4964
+ /* @__PURE__ */ jsx71("div", { className: ScReferralCardMobile_default.divider }),
4965
+ /* @__PURE__ */ jsxs60("div", { className: ScReferralCardMobile_default.detailsRow, children: [
4966
+ /* @__PURE__ */ jsx71("p", { className: ScReferralCardMobile_default.dateText, children: date }),
4967
+ /* @__PURE__ */ jsx71("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
4968
+ ] })
4969
+ ]
4970
+ }
4971
+ );
4972
+ };
4973
+
4974
+ // src/SC-InvoiceHistory-Mobile/ScInvoiceHistoryMobile.module.css
4975
+ var ScInvoiceHistoryMobile_default = {
4976
+ scInvoiceHistoryMobile: "ScInvoiceHistoryMobile_scInvoiceHistoryMobile",
4977
+ invoiceInfo: "ScInvoiceHistoryMobile_invoiceInfo",
4978
+ invoiceNumber: "ScInvoiceHistoryMobile_invoiceNumber",
4979
+ date: "ScInvoiceHistoryMobile_date",
4980
+ amount: "ScInvoiceHistoryMobile_amount"
4981
+ };
4982
+
4983
+ // src/SC-InvoiceHistory-Mobile/ScInvoiceHistoryMobile.tsx
4984
+ import { jsx as jsx72, jsxs as jsxs61 } from "react/jsx-runtime";
4985
+ var ScInvoiceHistoryMobile = ({
4986
+ invoiceNumber = "# INV-2800-2026",
4987
+ date = "Nov 9th, 2025",
4988
+ amount = "$320.89",
4989
+ onClick,
4990
+ className,
4991
+ ...props
4992
+ }) => {
4993
+ return /* @__PURE__ */ jsxs61(
4994
+ "div",
4995
+ {
4996
+ className: ScInvoiceHistoryMobile_default.scInvoiceHistoryMobile + " " + className,
4997
+ onClick,
4998
+ ...props,
4999
+ children: [
5000
+ /* @__PURE__ */ jsxs61("div", { className: ScInvoiceHistoryMobile_default.invoiceInfo, children: [
5001
+ /* @__PURE__ */ jsx72("p", { className: ScInvoiceHistoryMobile_default.invoiceNumber, children: invoiceNumber }),
5002
+ /* @__PURE__ */ jsx72("p", { className: ScInvoiceHistoryMobile_default.date, children: date })
5003
+ ] }),
5004
+ /* @__PURE__ */ jsx72("p", { className: ScInvoiceHistoryMobile_default.amount, children: amount })
5005
+ ]
5006
+ }
5007
+ );
5008
+ };
5009
+
5010
+ // src/SC-UsageHistory-Mobile/ScUsageHistoryMobile.module.css
5011
+ var ScUsageHistoryMobile_default = {
5012
+ scUsageHistoryMobile: "ScUsageHistoryMobile_scUsageHistoryMobile",
5013
+ topRow: "ScUsageHistoryMobile_topRow",
5014
+ title: "ScUsageHistoryMobile_title",
5015
+ usageCount: "ScUsageHistoryMobile_usageCount",
5016
+ bottomRow: "ScUsageHistoryMobile_bottomRow",
5017
+ metaInfo: "ScUsageHistoryMobile_metaInfo",
5018
+ metaText: "ScUsageHistoryMobile_metaText",
5019
+ vDivider: "ScUsageHistoryMobile_vDivider",
5020
+ totalCount: "ScUsageHistoryMobile_totalCount"
5021
+ };
5022
+
5023
+ // src/SC-UsageHistory-Mobile/ScUsageHistoryMobile.tsx
5024
+ import { jsx as jsx73, jsxs as jsxs62 } from "react/jsx-runtime";
5025
+ var ScUsageHistoryMobile = ({
5026
+ title = "Artifax Generation",
5027
+ usageCount = "50",
5028
+ userName = "Rohan",
5029
+ date = "Nov 9th, 2025",
5030
+ totalCount = "84,902",
5031
+ onClick,
5032
+ className,
5033
+ ...props
5034
+ }) => {
5035
+ return /* @__PURE__ */ jsxs62(
5036
+ "div",
5037
+ {
5038
+ className: ScUsageHistoryMobile_default.scUsageHistoryMobile + " " + className,
5039
+ onClick,
5040
+ ...props,
5041
+ children: [
5042
+ /* @__PURE__ */ jsxs62("div", { className: ScUsageHistoryMobile_default.topRow, children: [
5043
+ /* @__PURE__ */ jsx73("p", { className: ScUsageHistoryMobile_default.title, children: title }),
5044
+ /* @__PURE__ */ jsx73("p", { className: ScUsageHistoryMobile_default.usageCount, children: usageCount })
5045
+ ] }),
5046
+ /* @__PURE__ */ jsxs62("div", { className: ScUsageHistoryMobile_default.bottomRow, children: [
5047
+ /* @__PURE__ */ jsxs62("div", { className: ScUsageHistoryMobile_default.metaInfo, children: [
5048
+ /* @__PURE__ */ jsx73("p", { className: ScUsageHistoryMobile_default.metaText, children: userName }),
5049
+ /* @__PURE__ */ jsx73("div", { className: ScUsageHistoryMobile_default.vDivider }),
5050
+ /* @__PURE__ */ jsx73("p", { className: ScUsageHistoryMobile_default.metaText, children: date })
5051
+ ] }),
5052
+ /* @__PURE__ */ jsx73("p", { className: ScUsageHistoryMobile_default.totalCount, children: totalCount })
5053
+ ] })
5054
+ ]
5055
+ }
5056
+ );
5057
+ };
5058
+
5059
+ // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.module.css
5060
+ var ScWorkspaceSwitchMobileV2_default = {
5061
+ scWorkspaceSwitchMobileV2: "ScWorkspaceSwitchMobileV2_scWorkspaceSwitchMobileV2",
5062
+ "type-currentWS": "ScWorkspaceSwitchMobileV2_type-currentWS",
5063
+ "type-otherWS": "ScWorkspaceSwitchMobileV2_type-otherWS",
5064
+ workspaceInfo: "ScWorkspaceSwitchMobileV2_workspaceInfo",
5065
+ dpContainer: "ScWorkspaceSwitchMobileV2_dpContainer",
5066
+ dp: "ScWorkspaceSwitchMobileV2_dp",
5067
+ "dp-currentWS": "ScWorkspaceSwitchMobileV2_dp-currentWS",
5068
+ "dp-otherWS": "ScWorkspaceSwitchMobileV2_dp-otherWS",
5069
+ dpText: "ScWorkspaceSwitchMobileV2_dpText",
5070
+ textContainer: "ScWorkspaceSwitchMobileV2_textContainer",
5071
+ wsName: "ScWorkspaceSwitchMobileV2_wsName",
5072
+ userDetails: "ScWorkspaceSwitchMobileV2_userDetails",
5073
+ roleText: "ScWorkspaceSwitchMobileV2_roleText",
5074
+ dot: "ScWorkspaceSwitchMobileV2_dot",
5075
+ planText: "ScWorkspaceSwitchMobileV2_planText",
5076
+ ownerText: "ScWorkspaceSwitchMobileV2_ownerText"
5077
+ };
5078
+
5079
+ // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
5080
+ import { jsx as jsx74, jsxs as jsxs63 } from "react/jsx-runtime";
5081
+ var ScWorkspaceSwitchMobileV2 = ({
5082
+ wsName = "Workspace name is kepler",
5083
+ initials = "WS",
5084
+ role = "Admin",
5085
+ plan = "Free",
5086
+ ownerId = "rohan@streamoid.com",
5087
+ type = "currentWS",
5088
+ onClick,
5089
+ className,
5090
+ ...props
5091
+ }) => {
5092
+ return /* @__PURE__ */ jsx74(
5093
+ "div",
5094
+ {
5095
+ className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
5096
+ onClick,
5097
+ ...props,
5098
+ children: /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
5099
+ /* @__PURE__ */ jsx74("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ jsx74("div", { className: ScWorkspaceSwitchMobileV2_default.dp + " " + ScWorkspaceSwitchMobileV2_default["dp-" + type], children: /* @__PURE__ */ jsx74("span", { className: ScWorkspaceSwitchMobileV2_default.dpText, children: initials }) }) }),
5100
+ /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
5101
+ /* @__PURE__ */ jsx74("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
5102
+ /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
5103
+ /* @__PURE__ */ jsx74("span", { className: ScWorkspaceSwitchMobileV2_default.roleText, children: role }),
5104
+ /* @__PURE__ */ jsx74("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5105
+ /* @__PURE__ */ jsx74("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
5106
+ /* @__PURE__ */ jsx74("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5107
+ /* @__PURE__ */ jsx74("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
5108
+ ] })
5109
+ ] })
5110
+ ] })
5111
+ }
5112
+ );
5113
+ };
4505
5114
  export {
4506
5115
  NscWorkspaceSwitch,
4507
5116
  ScAccess,
@@ -4527,8 +5136,11 @@ export {
4527
5136
  ScHDivider,
4528
5137
  ScHeader,
4529
5138
  ScIntialProfileCover,
5139
+ ScInvoiceHistoryMobile,
4530
5140
  ScLogoUnit,
4531
5141
  ScMenuOptions,
5142
+ ScMobileBottomAction,
5143
+ ScMobileTopNav,
4532
5144
  ScOnlyField,
4533
5145
  ScOnlyIcon,
4534
5146
  ScPairtext,
@@ -4536,16 +5148,20 @@ export {
4536
5148
  ScPhtogenixInvite,
4537
5149
  ScPlanCard,
4538
5150
  ScPlanDetailsCard,
5151
+ ScPopUpMenu,
4539
5152
  ScProfile,
4540
5153
  ScProfileImageUpdate,
4541
5154
  ScProfileOptions,
4542
5155
  ScProfileSettingsComp,
5156
+ ScProfileV2Mobile,
4543
5157
  ScProgressBar,
4544
5158
  ScQuickPrompt,
4545
5159
  ScRadio,
5160
+ ScReferralCardMobile,
4546
5161
  ScReferralTableHeader,
4547
5162
  ScReferralTableList,
4548
5163
  ScRole,
5164
+ ScRoleMobile,
4549
5165
  ScSettingsNav,
4550
5166
  ScSidebar,
4551
5167
  ScSidebarIcons,
@@ -4558,12 +5174,17 @@ export {
4558
5174
  ScTabSwitcher,
4559
5175
  ScTableHeader,
4560
5176
  ScTableList,
5177
+ ScTableListMobile,
4561
5178
  ScTextField,
4562
5179
  ScToggleSwitch,
5180
+ ScUsageHistoryMobile,
4563
5181
  ScVDivider,
4564
5182
  ScVersion,
4565
5183
  ScWorkspaceCard,
5184
+ ScWorkspaceSettingsMobile,
4566
5185
  ScWorkspaceSwitchCard,
5186
+ ScWorkspaceSwitchMobile,
5187
+ ScWorkspaceSwitchMobileV2,
4567
5188
  StreamoidSidebar,
4568
5189
  StreamoidWorkspaceSwitcher
4569
5190
  };