abdul-react 0.0.26 → 0.0.28
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/lib/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/_virtual/index9.js +2 -2
- package/lib/assets/icons/fireflink_platform_product.svg.js +6 -0
- package/lib/assets/icons/fireflink_platform_product.svg.js.map +1 -0
- package/lib/assets/icons/salesforce_product.svg.js +6 -0
- package/lib/assets/icons/salesforce_product.svg.js.map +1 -0
- package/lib/components/AppHeader/AppHeader.js +11 -15
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AppHeader/types.d.ts +2 -1
- package/lib/components/CreateVariable/CreateVariableSlider.js +15 -7
- package/lib/components/CreateVariable/CreateVariableSlider.js.map +1 -1
- package/lib/components/Editor/Editor.js +3 -0
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +5 -0
- package/lib/components/Excel/ExcelFile/ExcelFile.js +4 -2
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +5 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +7 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +4 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +3 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js +24 -16
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js.map +1 -1
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js +5 -1
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js.map +1 -1
- package/lib/components/FileDropzone/FileDropzone.js +3 -2
- package/lib/components/FileDropzone/FileDropzone.js.map +1 -1
- package/lib/components/Icon/Icon.js +2 -1
- package/lib/components/Icon/Icon.js.map +1 -1
- package/lib/components/Icon/iconList.js +4 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Icon/types.d.ts +1 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.js +14 -1
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.js +7 -2
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/NLPInput/NlpInput.js +2 -2
- package/lib/components/NLPInput/NlpInput.js.map +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js +2 -2
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js.map +1 -1
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js +6 -2
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js.map +1 -1
- package/lib/components/ScriptGenerationLoader/types.d.ts +1 -0
- package/lib/components/Select/Select.js +4 -2
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/components/Dropdown.js +3 -3
- package/lib/components/Select/components/Dropdown.js.map +1 -1
- package/lib/components/Select/components/types.d.ts +1 -0
- package/lib/components/Select/components/types.js.map +1 -1
- package/lib/components/Select/types.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +2 -2
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/Tabs/Tabs.d.ts +1 -1
- package/lib/components/Tabs/Tabs.js +10 -3
- package/lib/components/Tabs/Tabs.js.map +1 -1
- package/lib/components/Tabs/types.d.ts +12 -0
- package/lib/components/TextEditor/TextEditor.js +38 -35
- package/lib/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/components/Tooltip/Tooltip.js +7 -3
- package/lib/components/Tooltip/Tooltip.js.map +1 -1
- package/lib/index.cjs +173 -98
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +33 -2
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -389,6 +389,7 @@ interface IconProps$2 {
|
|
|
389
389
|
chartIcon?: boolean;
|
|
390
390
|
tabIndex?: number;
|
|
391
391
|
toolTipTitle?: string;
|
|
392
|
+
cursorType?: string;
|
|
392
393
|
}
|
|
393
394
|
|
|
394
395
|
declare const Icon: React$1.ForwardRefExoticComponent<IconProps$2 & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -997,6 +998,10 @@ interface SelectProps$1 {
|
|
|
997
998
|
* Ref for select option dropdown
|
|
998
999
|
*/
|
|
999
1000
|
dropDownRef?: RefObject<HTMLDivElement>;
|
|
1001
|
+
/**
|
|
1002
|
+
* handling dropdownDown height
|
|
1003
|
+
*/
|
|
1004
|
+
dropDownHeight?: number;
|
|
1000
1005
|
}
|
|
1001
1006
|
type OptionValue$3 = any;
|
|
1002
1007
|
interface Option$5 {
|
|
@@ -2298,13 +2303,25 @@ interface TabsProps$1 {
|
|
|
2298
2303
|
* titleSize is to accpect dynamic font size
|
|
2299
2304
|
*/
|
|
2300
2305
|
titleSize?: number | string;
|
|
2306
|
+
/**
|
|
2307
|
+
* to add borderBottom line
|
|
2308
|
+
*/
|
|
2309
|
+
isBorderBottomLine?: boolean;
|
|
2310
|
+
/**
|
|
2311
|
+
* to change background on hover
|
|
2312
|
+
*/
|
|
2313
|
+
isHoverBackground?: boolean;
|
|
2314
|
+
/**
|
|
2315
|
+
* to add border-radius to tabs
|
|
2316
|
+
*/
|
|
2317
|
+
isBorderRadius?: boolean;
|
|
2301
2318
|
/**
|
|
2302
2319
|
* tabFlexSpacing : Defines the flex spacing for the tab row.
|
|
2303
2320
|
*/
|
|
2304
2321
|
tabFlexSpacing?: 'space-between' | 'space-around' | 'flex-start' | 'flex-end' | 'center';
|
|
2305
2322
|
}
|
|
2306
2323
|
|
|
2307
|
-
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, tabFlexSpacing, }: TabsProps$1) => react_jsx_runtime.JSX.Element;
|
|
2324
|
+
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, isBorderBottomLine, isHoverBackground, isBorderRadius, tabFlexSpacing, }: TabsProps$1) => react_jsx_runtime.JSX.Element;
|
|
2308
2325
|
|
|
2309
2326
|
/**
|
|
2310
2327
|
* Represents a single tab in the BrowserTabs component.
|
|
@@ -2693,7 +2710,7 @@ interface AppHeaderProps {
|
|
|
2693
2710
|
scriptId?: string | undefined | null;
|
|
2694
2711
|
width?: string;
|
|
2695
2712
|
borderRadius?: string;
|
|
2696
|
-
|
|
2713
|
+
logo: ReactNode;
|
|
2697
2714
|
leftContent?: ReactNode;
|
|
2698
2715
|
rightContent?: ReactNode;
|
|
2699
2716
|
projectsList?: optionsType$1[];
|
|
@@ -2712,6 +2729,7 @@ interface AppHeaderProps {
|
|
|
2712
2729
|
disabled?: boolean;
|
|
2713
2730
|
isClient?: boolean;
|
|
2714
2731
|
hideNavbar?: boolean;
|
|
2732
|
+
profileContent?: ReactNode;
|
|
2715
2733
|
}
|
|
2716
2734
|
interface appHeaderMenuItemProps {
|
|
2717
2735
|
iconName?: string;
|
|
@@ -3255,6 +3273,14 @@ interface LabelEditTextFieldTypes {
|
|
|
3255
3273
|
|
|
3256
3274
|
declare const EditTextField: FC<LabelEditTextFieldTypes>;
|
|
3257
3275
|
|
|
3276
|
+
/** A cell coordinates in the spreadsheet */
|
|
3277
|
+
type Point = {
|
|
3278
|
+
/** The cell's column */
|
|
3279
|
+
column: number;
|
|
3280
|
+
/** The cell's row */
|
|
3281
|
+
row: number;
|
|
3282
|
+
};
|
|
3283
|
+
|
|
3258
3284
|
type ContextMenuState = {
|
|
3259
3285
|
open: boolean;
|
|
3260
3286
|
contextType: 'sheet' | 'column' | 'row' | 'cell' | null;
|
|
@@ -3362,6 +3388,10 @@ interface ExcelFileProps {
|
|
|
3362
3388
|
maxRowLimit?: number;
|
|
3363
3389
|
maxColLimit?: number;
|
|
3364
3390
|
maxSheetLimit?: number;
|
|
3391
|
+
getActiveCell?: (cell: {
|
|
3392
|
+
value: string;
|
|
3393
|
+
active: Point;
|
|
3394
|
+
}) => void;
|
|
3365
3395
|
}
|
|
3366
3396
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|
|
3367
3397
|
|
|
@@ -5553,6 +5583,7 @@ interface ScriptGenerationLoaderProps {
|
|
|
5553
5583
|
*/
|
|
5554
5584
|
height?: number;
|
|
5555
5585
|
path?: string;
|
|
5586
|
+
DynamicHeight?: number;
|
|
5556
5587
|
}
|
|
5557
5588
|
|
|
5558
5589
|
declare const ScriptGenerationLoader: React__default.FC<ScriptGenerationLoaderProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier3.js';
|
|
2
2
|
import { __require as requireOptions } from './options.js';
|
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
|
4
4
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as css } from '../../../../../_virtual/
|
|
1
|
+
import { __module as css } from '../../../../../_virtual/index11.js';
|
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
|
3
3
|
import { __require as requireOptions } from './options.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier2.js';
|
|
2
2
|
import { __require as requireOptions } from './options.js';
|
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
|
4
4
|
import { __require as requireTokenizer } from './tokenizer.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as html } from '../../../../../_virtual/
|
|
1
|
+
import { __module as html } from '../../../../../_virtual/index9.js';
|
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
|
3
3
|
import { __require as requireOptions } from './options.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as javascript } from '../../../../../_virtual/
|
|
1
|
+
import { __module as javascript } from '../../../../../_virtual/index10.js';
|
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
|
3
3
|
import { __require as requireOptions } from './options.js';
|
|
4
4
|
|