@appcorp/kismaa-web-ui 0.1.66 → 0.1.69

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.
@@ -10,23 +10,22 @@ interface BaseProps {
10
10
  btnType: ONBOARDING_BTN_TYPES;
11
11
  }
12
12
  interface ButtonProps extends BaseProps {
13
- btnType: ONBOARDING_BTN_TYPES.BUTTON;
14
- buttonText: string;
15
- onButtonClick: () => void;
13
+ buttonText?: string;
14
+ onButtonClick?: () => void;
16
15
  }
17
16
  interface ComboBoxProps extends BaseProps {
18
- btnType: ONBOARDING_BTN_TYPES.COMBO_BOX;
19
- comboInputOnChange: (k: string, v: string) => void;
20
- comboOnBlur: (k: string, v: string) => void;
21
- comboOnChange: (k: string, v: string) => void;
22
- comboLabel: string;
23
- comboSelectedItem: any;
24
- comboListItems: any[];
25
- nodeQueryKey: string;
26
- nodeSelectKey: string;
27
- comboQuery: string;
28
- comboSelectKey1: string;
17
+ comboInputOnChange?: (k: string, v: string) => void;
18
+ comboOnBlur?: (k: string, v: string) => void;
19
+ comboOnChange?: (k: string, v: string) => void;
20
+ comboLabel?: string;
21
+ comboSelectedItem?: any;
22
+ comboListItems?: any[];
23
+ nodeQueryKey?: string;
24
+ nodeSelectKey?: string;
25
+ comboQuery?: string;
26
+ comboSelectKey1?: string;
29
27
  placeholder?: string;
30
28
  }
31
- export type OnboardingStepCardProps = ButtonProps | ComboBoxProps;
29
+ export interface OnboardingStepCardProps extends ButtonProps, ComboBoxProps {
30
+ }
32
31
  export {};
@@ -14,16 +14,16 @@ exports.onboardingStepsData = {
14
14
  subheading: 'Getting started with Kismaa is quick, easy, and free. Start with a 14 day free trial, and end with countless happy patients. ',
15
15
  stepsData: [
16
16
  {
17
- title: 'Creating an Account',
18
- description: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
17
+ title: 'Sign Up for Free',
18
+ description: 'Create your account in seconds and unlock your 14-day free trial. No hidden fees, just instant access to expert psychics.',
19
19
  buttonText: 'Create an Account',
20
20
  onButtonClick: function () { return console.log('Button Clicked - Step 1'); },
21
21
  headerIcon: react_1.default.createElement(user_icon_1.UserIcon, { className: "size-12 lg:size-20" }),
22
22
  btnType: type_1.ONBOARDING_BTN_TYPES.BUTTON,
23
23
  },
24
24
  {
25
- title: 'Finding Psychic',
26
- description: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
25
+ title: 'Choose Your Psychic',
26
+ description: 'Browse profiles, read reviews, and connect with the perfect psychic for your needs. Love, career, or life—guidance is just a click away.',
27
27
  headerIcon: react_1.default.createElement(gear_icon_1.GearIcon, { className: "size-12 lg:size-20" }),
28
28
  btnType: type_1.ONBOARDING_BTN_TYPES.COMBO_BOX,
29
29
  comboInputOnChange: function (k, v) {
@@ -46,8 +46,8 @@ exports.onboardingStepsData = {
46
46
  placeholder: 'Type 3 letters to search',
47
47
  },
48
48
  {
49
- title: 'Connect with Psychic',
50
- description: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
49
+ title: 'Start Your Journey',
50
+ description: 'Chat with your psychic and get personalized insights. Discover clarity and confidence with every session.',
51
51
  buttonText: 'View All',
52
52
  onButtonClick: function () { return console.log('Button Clicked - Step 3'); },
53
53
  headerIcon: react_1.default.createElement(lightning_icon_1.LightningIcon, { className: "size-12 lg:size-20" }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/kismaa-web-ui",
3
- "version": "0.1.66",
3
+ "version": "0.1.69",
4
4
  "source": "src/index.ts",
5
5
  "main": "lib/main.js",
6
6
  "module": "lib/module.js",
@@ -15,8 +15,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.HomePage = void 0;
18
- var organisms_1 = require("../../organisms");
19
18
  var react_1 = __importDefault(require("react"));
19
+ var organisms_1 = require("../../organisms");
20
20
  var disclaimer_1 = require("../../molecules/disclaimer/disclaimer");
21
21
  var HomePage = function (_a) {
22
22
  var advisorSection = _a.advisorSection, ctaBanner = _a.ctaBanner, customerReview = _a.customerReview, faq = _a.faq, footer = _a.footer, getAppBanner = _a.getAppBanner, heroBanner = _a.heroBanner, highlightBanner = _a.highlightBanner, navbar = _a.navbar, onboardingSteps = _a.onboardingSteps;