@rufous/ui 0.3.53 → 0.3.54
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/main.cjs +165 -45
- package/dist/main.css +132 -0
- package/dist/main.d.cts +37 -1
- package/dist/main.d.ts +37 -1
- package/dist/main.js +488 -375
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -243,6 +243,13 @@ __export(main_exports, {
|
|
|
243
243
|
TextField: () => TextField,
|
|
244
244
|
TextFieldsIcon: () => textFieldsIcon_default,
|
|
245
245
|
TickIcon: () => tickIcon_default,
|
|
246
|
+
Timeline: () => Timeline,
|
|
247
|
+
TimelineConnector: () => TimelineConnector,
|
|
248
|
+
TimelineContent: () => TimelineContent,
|
|
249
|
+
TimelineDot: () => TimelineDot,
|
|
250
|
+
TimelineItem: () => TimelineItem,
|
|
251
|
+
TimelineOppositeContent: () => TimelineOppositeContent,
|
|
252
|
+
TimelineSeparator: () => TimelineSeparator,
|
|
246
253
|
TimerIcon: () => timerIcon_default,
|
|
247
254
|
ToggleButton: () => ToggleButton,
|
|
248
255
|
ToggleButtonGroup: () => ToggleButtonGroup,
|
|
@@ -9706,8 +9713,114 @@ var Alert = React172.forwardRef(
|
|
|
9706
9713
|
);
|
|
9707
9714
|
Alert.displayName = "Alert";
|
|
9708
9715
|
|
|
9709
|
-
// lib/
|
|
9716
|
+
// lib/Timeline/Timeline.tsx
|
|
9710
9717
|
var React173 = __toESM(require("react"), 1);
|
|
9718
|
+
var TimelineContext = React173.createContext({ position: "right" });
|
|
9719
|
+
var TimelineItemContext = React173.createContext({
|
|
9720
|
+
effectivePosition: "right"
|
|
9721
|
+
});
|
|
9722
|
+
var Timeline = React173.forwardRef(
|
|
9723
|
+
({ position = "right", sx, className, children, ...rest }, ref) => {
|
|
9724
|
+
const sxClass = useSx(sx);
|
|
9725
|
+
const classes = [
|
|
9726
|
+
"rf-timeline",
|
|
9727
|
+
`rf-timeline--${position}`,
|
|
9728
|
+
sxClass,
|
|
9729
|
+
className
|
|
9730
|
+
].filter(Boolean).join(" ");
|
|
9731
|
+
const indexed = React173.Children.map(children, (child, idx) => {
|
|
9732
|
+
if (!React173.isValidElement(child)) return child;
|
|
9733
|
+
return React173.cloneElement(child, {
|
|
9734
|
+
"data-rf-timeline-index": idx
|
|
9735
|
+
});
|
|
9736
|
+
});
|
|
9737
|
+
return /* @__PURE__ */ React173.createElement(TimelineContext.Provider, { value: { position } }, /* @__PURE__ */ React173.createElement("ul", { ref, className: classes, ...rest }, indexed));
|
|
9738
|
+
}
|
|
9739
|
+
);
|
|
9740
|
+
Timeline.displayName = "Timeline";
|
|
9741
|
+
var TimelineItem = React173.forwardRef(
|
|
9742
|
+
(props, ref) => {
|
|
9743
|
+
const {
|
|
9744
|
+
position: positionProp,
|
|
9745
|
+
sx,
|
|
9746
|
+
className,
|
|
9747
|
+
children,
|
|
9748
|
+
...rest
|
|
9749
|
+
} = props;
|
|
9750
|
+
const { position: parentPosition } = React173.useContext(TimelineContext);
|
|
9751
|
+
const idx = rest["data-rf-timeline-index"];
|
|
9752
|
+
let effectivePosition;
|
|
9753
|
+
if (positionProp) {
|
|
9754
|
+
effectivePosition = positionProp;
|
|
9755
|
+
} else if (parentPosition === "right") {
|
|
9756
|
+
effectivePosition = "right";
|
|
9757
|
+
} else if (parentPosition === "left") {
|
|
9758
|
+
effectivePosition = "left";
|
|
9759
|
+
} else if (parentPosition === "alternate") {
|
|
9760
|
+
effectivePosition = (idx ?? 0) % 2 === 0 ? "right" : "left";
|
|
9761
|
+
} else {
|
|
9762
|
+
effectivePosition = (idx ?? 0) % 2 === 0 ? "left" : "right";
|
|
9763
|
+
}
|
|
9764
|
+
let hasOpposite = false;
|
|
9765
|
+
React173.Children.forEach(children, (child) => {
|
|
9766
|
+
if (React173.isValidElement(child) && child.type?.displayName === "TimelineOppositeContent") {
|
|
9767
|
+
hasOpposite = true;
|
|
9768
|
+
}
|
|
9769
|
+
});
|
|
9770
|
+
const sxClass = useSx(sx);
|
|
9771
|
+
const classes = [
|
|
9772
|
+
"rf-timeline-item",
|
|
9773
|
+
`rf-timeline-item--${effectivePosition}`,
|
|
9774
|
+
hasOpposite ? "rf-timeline-item--has-opposite" : "rf-timeline-item--no-opposite",
|
|
9775
|
+
sxClass,
|
|
9776
|
+
className
|
|
9777
|
+
].filter(Boolean).join(" ");
|
|
9778
|
+
return /* @__PURE__ */ React173.createElement(TimelineItemContext.Provider, { value: { effectivePosition } }, /* @__PURE__ */ React173.createElement("li", { ref, className: classes, ...rest }, children));
|
|
9779
|
+
}
|
|
9780
|
+
);
|
|
9781
|
+
TimelineItem.displayName = "TimelineItem";
|
|
9782
|
+
var TimelineSeparator = React173.forwardRef(({ sx, className, children, ...rest }, ref) => {
|
|
9783
|
+
const sxClass = useSx(sx);
|
|
9784
|
+
const classes = ["rf-timeline-separator", sxClass, className].filter(Boolean).join(" ");
|
|
9785
|
+
return /* @__PURE__ */ React173.createElement("div", { ref, className: classes, ...rest }, children);
|
|
9786
|
+
});
|
|
9787
|
+
TimelineSeparator.displayName = "TimelineSeparator";
|
|
9788
|
+
var TimelineDot = React173.forwardRef(
|
|
9789
|
+
({ color = "grey", variant = "filled", sx, className, children, ...rest }, ref) => {
|
|
9790
|
+
const sxClass = useSx(sx);
|
|
9791
|
+
const classes = [
|
|
9792
|
+
"rf-timeline-dot",
|
|
9793
|
+
`rf-timeline-dot--${variant}`,
|
|
9794
|
+
`rf-timeline-dot--${color}`,
|
|
9795
|
+
children ? "rf-timeline-dot--has-content" : "",
|
|
9796
|
+
sxClass,
|
|
9797
|
+
className
|
|
9798
|
+
].filter(Boolean).join(" ");
|
|
9799
|
+
return /* @__PURE__ */ React173.createElement("span", { ref, className: classes, ...rest }, children);
|
|
9800
|
+
}
|
|
9801
|
+
);
|
|
9802
|
+
TimelineDot.displayName = "TimelineDot";
|
|
9803
|
+
var TimelineConnector = React173.forwardRef(({ sx, className, ...rest }, ref) => {
|
|
9804
|
+
const sxClass = useSx(sx);
|
|
9805
|
+
const classes = ["rf-timeline-connector", sxClass, className].filter(Boolean).join(" ");
|
|
9806
|
+
return /* @__PURE__ */ React173.createElement("span", { ref, className: classes, ...rest });
|
|
9807
|
+
});
|
|
9808
|
+
TimelineConnector.displayName = "TimelineConnector";
|
|
9809
|
+
var TimelineContent = React173.forwardRef(({ sx, className, children, ...rest }, ref) => {
|
|
9810
|
+
const sxClass = useSx(sx);
|
|
9811
|
+
const classes = ["rf-timeline-content", sxClass, className].filter(Boolean).join(" ");
|
|
9812
|
+
return /* @__PURE__ */ React173.createElement("div", { ref, className: classes, ...rest }, children);
|
|
9813
|
+
});
|
|
9814
|
+
TimelineContent.displayName = "TimelineContent";
|
|
9815
|
+
var TimelineOppositeContent = React173.forwardRef(({ sx, className, children, ...rest }, ref) => {
|
|
9816
|
+
const sxClass = useSx(sx);
|
|
9817
|
+
const classes = ["rf-timeline-opposite-content", sxClass, className].filter(Boolean).join(" ");
|
|
9818
|
+
return /* @__PURE__ */ React173.createElement("div", { ref, className: classes, ...rest }, children);
|
|
9819
|
+
});
|
|
9820
|
+
TimelineOppositeContent.displayName = "TimelineOppositeContent";
|
|
9821
|
+
|
|
9822
|
+
// lib/ClickAwayListener/ClickAwayListener.tsx
|
|
9823
|
+
var React174 = __toESM(require("react"), 1);
|
|
9711
9824
|
function mapEventPropToEvent(eventProp) {
|
|
9712
9825
|
return eventProp.substring(2).toLowerCase();
|
|
9713
9826
|
}
|
|
@@ -9725,7 +9838,7 @@ function setRef(ref, value) {
|
|
|
9725
9838
|
}
|
|
9726
9839
|
}
|
|
9727
9840
|
function useForkRef(refA, refB) {
|
|
9728
|
-
return
|
|
9841
|
+
return React174.useMemo(() => {
|
|
9729
9842
|
if (refA == null && refB == null) {
|
|
9730
9843
|
return null;
|
|
9731
9844
|
}
|
|
@@ -9736,14 +9849,14 @@ function useForkRef(refA, refB) {
|
|
|
9736
9849
|
}, [refA, refB]);
|
|
9737
9850
|
}
|
|
9738
9851
|
function useEventCallback(fn) {
|
|
9739
|
-
const ref =
|
|
9740
|
-
|
|
9852
|
+
const ref = React174.useRef(fn);
|
|
9853
|
+
React174.useEffect(() => {
|
|
9741
9854
|
ref.current = fn;
|
|
9742
9855
|
});
|
|
9743
|
-
return
|
|
9856
|
+
return React174.useCallback((...args) => ref.current(...args), []);
|
|
9744
9857
|
}
|
|
9745
9858
|
function getReactElementRef(element) {
|
|
9746
|
-
const major = parseInt(
|
|
9859
|
+
const major = parseInt(React174.version, 10);
|
|
9747
9860
|
if (major >= 19) {
|
|
9748
9861
|
return element.props?.ref ?? null;
|
|
9749
9862
|
}
|
|
@@ -9757,11 +9870,11 @@ function ClickAwayListener(props) {
|
|
|
9757
9870
|
onClickAway,
|
|
9758
9871
|
touchEvent = "onTouchEnd"
|
|
9759
9872
|
} = props;
|
|
9760
|
-
const movedRef =
|
|
9761
|
-
const nodeRef =
|
|
9762
|
-
const activatedRef =
|
|
9763
|
-
const syntheticEventRef =
|
|
9764
|
-
|
|
9873
|
+
const movedRef = React174.useRef(false);
|
|
9874
|
+
const nodeRef = React174.useRef(null);
|
|
9875
|
+
const activatedRef = React174.useRef(false);
|
|
9876
|
+
const syntheticEventRef = React174.useRef(false);
|
|
9877
|
+
React174.useEffect(() => {
|
|
9765
9878
|
const id = setTimeout(() => {
|
|
9766
9879
|
activatedRef.current = true;
|
|
9767
9880
|
}, 0);
|
|
@@ -9810,7 +9923,7 @@ function ClickAwayListener(props) {
|
|
|
9810
9923
|
if (touchEvent !== false) {
|
|
9811
9924
|
childrenProps[touchEvent] = createHandleSynthetic(touchEvent);
|
|
9812
9925
|
}
|
|
9813
|
-
|
|
9926
|
+
React174.useEffect(() => {
|
|
9814
9927
|
if (touchEvent === false) {
|
|
9815
9928
|
return void 0;
|
|
9816
9929
|
}
|
|
@@ -9829,7 +9942,7 @@ function ClickAwayListener(props) {
|
|
|
9829
9942
|
if (mouseEvent !== false) {
|
|
9830
9943
|
childrenProps[mouseEvent] = createHandleSynthetic(mouseEvent);
|
|
9831
9944
|
}
|
|
9832
|
-
|
|
9945
|
+
React174.useEffect(() => {
|
|
9833
9946
|
if (mouseEvent === false) {
|
|
9834
9947
|
return void 0;
|
|
9835
9948
|
}
|
|
@@ -9840,7 +9953,7 @@ function ClickAwayListener(props) {
|
|
|
9840
9953
|
doc.removeEventListener(mappedMouseEvent, handleClickAway);
|
|
9841
9954
|
};
|
|
9842
9955
|
}, [handleClickAway, mouseEvent]);
|
|
9843
|
-
return
|
|
9956
|
+
return React174.cloneElement(children, childrenProps);
|
|
9844
9957
|
}
|
|
9845
9958
|
|
|
9846
9959
|
// lib/Link/Link.tsx
|
|
@@ -13191,38 +13304,38 @@ var CustomTaskItem = import_extension_task_item.default.extend({
|
|
|
13191
13304
|
});
|
|
13192
13305
|
|
|
13193
13306
|
// lib/RufousTextEditor/icons.tsx
|
|
13194
|
-
var
|
|
13307
|
+
var React189 = __toESM(require("react"), 1);
|
|
13195
13308
|
var s = { width: 20, height: 20, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg" };
|
|
13196
|
-
var IconUndo = () => /* @__PURE__ */
|
|
13197
|
-
var IconRedo = () => /* @__PURE__ */
|
|
13198
|
-
var IconBold = () => /* @__PURE__ */
|
|
13199
|
-
var IconItalic = () => /* @__PURE__ */
|
|
13200
|
-
var IconLink = () => /* @__PURE__ */
|
|
13201
|
-
var IconStrike = () => /* @__PURE__ */
|
|
13202
|
-
var IconHeading = () => /* @__PURE__ */
|
|
13203
|
-
var IconFontSize = () => /* @__PURE__ */
|
|
13204
|
-
var IconColor = () => /* @__PURE__ */
|
|
13205
|
-
var IconFont = () => /* @__PURE__ */
|
|
13206
|
-
var IconLineHeight = () => /* @__PURE__ */
|
|
13207
|
-
var IconBulletList = () => /* @__PURE__ */
|
|
13208
|
-
var IconOrderedList = () => /* @__PURE__ */
|
|
13209
|
-
var IconAlignLeft = () => /* @__PURE__ */
|
|
13210
|
-
var IconAlignCenter = () => /* @__PURE__ */
|
|
13211
|
-
var IconAlignRight = () => /* @__PURE__ */
|
|
13212
|
-
var IconAlignJustify = () => /* @__PURE__ */
|
|
13213
|
-
var IconIndentIncrease = () => /* @__PURE__ */
|
|
13214
|
-
var IconIndentDecrease = () => /* @__PURE__ */
|
|
13215
|
-
var IconTable = () => /* @__PURE__ */
|
|
13216
|
-
var IconImage = () => /* @__PURE__ */
|
|
13217
|
-
var IconVideo = () => /* @__PURE__ */
|
|
13218
|
-
var IconCut = () => /* @__PURE__ */
|
|
13219
|
-
var IconCopy = () => /* @__PURE__ */
|
|
13220
|
-
var IconCode = () => /* @__PURE__ */
|
|
13221
|
-
var IconFullscreen = () => /* @__PURE__ */
|
|
13222
|
-
var IconTranslate = () => /* @__PURE__ */
|
|
13223
|
-
var IconTaskList = () => /* @__PURE__ */
|
|
13224
|
-
var IconCheck = () => /* @__PURE__ */
|
|
13225
|
-
var IconPaste = () => /* @__PURE__ */
|
|
13309
|
+
var IconUndo = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M12.5 8C9.85 8 7.45 9 5.6 10.6L2 7v9h9l-3.62-3.62C8.93 11.01 10.63 10.2 12.5 10.2c3.03 0 5.6 1.93 6.55 4.63l2.15-.72C19.93 10.68 16.5 8 12.5 8z" }));
|
|
13310
|
+
var IconRedo = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M18.4 10.6C16.55 9 14.15 8 11.5 8c-4 0-7.43 2.68-8.7 6.11l2.15.72c.95-2.7 3.52-4.63 6.55-4.63 1.87 0 3.57.81 5.12 2.18L13 16h9V7l-3.6 3.6z" }));
|
|
13311
|
+
var IconBold = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" }));
|
|
13312
|
+
var IconItalic = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z" }));
|
|
13313
|
+
var IconLink = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" }));
|
|
13314
|
+
var IconStrike = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M7.24 11h2.01c-.13-.42-.2-.88-.2-1.37 0-.89.32-1.58.96-2.08.64-.49 1.46-.74 2.47-.74.99 0 1.81.24 2.46.71.64.47.97 1.1.97 1.88h2.04c0-1.27-.55-2.33-1.64-3.18C15.21 5.37 13.83 4.95 12.2 4.95c-1.69 0-3.09.43-4.2 1.3C6.9 7.1 6.35 8.23 6.35 9.63c0 .47.06.92.18 1.37H3v2h18v-2H7.24zM12.2 17.05c-1.03 0-1.89-.28-2.56-.84-.67-.56-1-1.27-1-2.13h-2.1c0 1.36.58 2.5 1.75 3.44 1.16.93 2.56 1.4 4.19 1.4 1.69 0 3.09-.43 4.2-1.3 1.1-.86 1.65-1.99 1.65-3.38h-2.1c0 .85-.33 1.56-1 2.13-.66.56-1.52.84-2.56.84l-.47-.16z" }));
|
|
13315
|
+
var IconHeading = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M5 4v3h5.5v12h3V7H19V4z" }));
|
|
13316
|
+
var IconFontSize = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M9 4v3h5v12h2V7h5V4H9zm-6 8h3v7h2v-7h3v-2H3v2z" }));
|
|
13317
|
+
var IconColor = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M11 2L5.5 16h2.25l1.12-3h6.25l1.12 3h2.25L13 2h-2zm-1.38 9L12 4.67 14.38 11H9.62z" }), /* @__PURE__ */ React189.createElement("path", { d: "M3 20h18v3H3z", opacity: "0.8" }));
|
|
13318
|
+
var IconFont = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" }));
|
|
13319
|
+
var IconLineHeight = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm16-3h-8v2h8V4zm0 4h-8v2h8V8zm0 4h-8v2h8v-2zm0 4h-8v2h8v-2z" }));
|
|
13320
|
+
var IconBulletList = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" }));
|
|
13321
|
+
var IconOrderedList = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" }));
|
|
13322
|
+
var IconAlignLeft = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zM3 21h18v-2H3v2zM3 3v2h18V3H3z" }));
|
|
13323
|
+
var IconAlignCenter = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" }));
|
|
13324
|
+
var IconAlignRight = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" }));
|
|
13325
|
+
var IconAlignJustify = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zM3 3v2h18V3H3z" }));
|
|
13326
|
+
var IconIndentIncrease = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" }));
|
|
13327
|
+
var IconIndentDecrease = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" }));
|
|
13328
|
+
var IconTable = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 19V5h4v14H5zm6 0V5h4v14h-4zm6 0V5h3v14h-3z", fillRule: "evenodd" }));
|
|
13329
|
+
var IconImage = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" }));
|
|
13330
|
+
var IconVideo = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" }));
|
|
13331
|
+
var IconCut = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" }));
|
|
13332
|
+
var IconCopy = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" }));
|
|
13333
|
+
var IconCode = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" }));
|
|
13334
|
+
var IconFullscreen = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" }));
|
|
13335
|
+
var IconTranslate = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M12.87 15.07l-2.54-2.51.03-.03A17.52 17.52 0 0014.07 6H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2.02c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z" }));
|
|
13336
|
+
var IconTaskList = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M22 8c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1zm0 8c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1zM5.54 11L2 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 11zm0 8L2 15.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 19z" }));
|
|
13337
|
+
var IconCheck = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" }));
|
|
13338
|
+
var IconPaste = () => /* @__PURE__ */ React189.createElement("svg", { ...s }, /* @__PURE__ */ React189.createElement("path", { d: "M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" }));
|
|
13226
13339
|
|
|
13227
13340
|
// lib/RufousTextEditor/Toolbar.tsx
|
|
13228
13341
|
var COLOR_PALETTE = [
|
|
@@ -15925,6 +16038,13 @@ function useCitiesSearch(debounceMs = 300) {
|
|
|
15925
16038
|
TextField,
|
|
15926
16039
|
TextFieldsIcon,
|
|
15927
16040
|
TickIcon,
|
|
16041
|
+
Timeline,
|
|
16042
|
+
TimelineConnector,
|
|
16043
|
+
TimelineContent,
|
|
16044
|
+
TimelineDot,
|
|
16045
|
+
TimelineItem,
|
|
16046
|
+
TimelineOppositeContent,
|
|
16047
|
+
TimelineSeparator,
|
|
15928
16048
|
TimerIcon,
|
|
15929
16049
|
ToggleButton,
|
|
15930
16050
|
ToggleButtonGroup,
|
package/dist/main.css
CHANGED
|
@@ -6998,6 +6998,138 @@ pre {
|
|
|
6998
6998
|
border-color: #d32f2f;
|
|
6999
6999
|
}
|
|
7000
7000
|
|
|
7001
|
+
/* lib/styles/timeline.css */
|
|
7002
|
+
.rf-timeline {
|
|
7003
|
+
list-style: none;
|
|
7004
|
+
margin: 0;
|
|
7005
|
+
padding: 6px 16px;
|
|
7006
|
+
display: flex;
|
|
7007
|
+
flex-direction: column;
|
|
7008
|
+
}
|
|
7009
|
+
.rf-timeline-item {
|
|
7010
|
+
display: flex;
|
|
7011
|
+
position: relative;
|
|
7012
|
+
list-style: none;
|
|
7013
|
+
min-height: 70px;
|
|
7014
|
+
}
|
|
7015
|
+
.rf-timeline-item--right {
|
|
7016
|
+
flex-direction: row;
|
|
7017
|
+
}
|
|
7018
|
+
.rf-timeline-item--left {
|
|
7019
|
+
flex-direction: row-reverse;
|
|
7020
|
+
}
|
|
7021
|
+
.rf-timeline-item--no-opposite::before {
|
|
7022
|
+
content: "";
|
|
7023
|
+
flex: 1;
|
|
7024
|
+
padding: 6px 16px;
|
|
7025
|
+
}
|
|
7026
|
+
.rf-timeline-separator {
|
|
7027
|
+
display: flex;
|
|
7028
|
+
flex-direction: column;
|
|
7029
|
+
flex: 0;
|
|
7030
|
+
align-items: center;
|
|
7031
|
+
}
|
|
7032
|
+
.rf-timeline-dot {
|
|
7033
|
+
display: flex;
|
|
7034
|
+
align-items: center;
|
|
7035
|
+
justify-content: center;
|
|
7036
|
+
align-self: baseline;
|
|
7037
|
+
width: 12px;
|
|
7038
|
+
height: 12px;
|
|
7039
|
+
margin: 11.5px 0;
|
|
7040
|
+
border-radius: 50%;
|
|
7041
|
+
box-shadow:
|
|
7042
|
+
0 1px 1px -1px rgba(0, 0, 0, 0.2),
|
|
7043
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
7044
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
7045
|
+
box-sizing: border-box;
|
|
7046
|
+
flex-shrink: 0;
|
|
7047
|
+
}
|
|
7048
|
+
.rf-timeline-dot--has-content {
|
|
7049
|
+
width: 28px;
|
|
7050
|
+
height: 28px;
|
|
7051
|
+
padding: 4px;
|
|
7052
|
+
color: #fff;
|
|
7053
|
+
}
|
|
7054
|
+
.rf-timeline-dot--outlined {
|
|
7055
|
+
background-color: transparent;
|
|
7056
|
+
border-style: solid;
|
|
7057
|
+
border-width: 2px;
|
|
7058
|
+
box-shadow: none;
|
|
7059
|
+
}
|
|
7060
|
+
.rf-timeline-dot--filled.rf-timeline-dot--grey {
|
|
7061
|
+
background-color: #bdbdbd;
|
|
7062
|
+
}
|
|
7063
|
+
.rf-timeline-dot--filled.rf-timeline-dot--inherit {
|
|
7064
|
+
background-color: currentColor;
|
|
7065
|
+
}
|
|
7066
|
+
.rf-timeline-dot--filled.rf-timeline-dot--primary {
|
|
7067
|
+
background-color: var(--primary-color, #a81c08);
|
|
7068
|
+
}
|
|
7069
|
+
.rf-timeline-dot--filled.rf-timeline-dot--secondary {
|
|
7070
|
+
background-color: var(--secondary-color, #9c27b0);
|
|
7071
|
+
}
|
|
7072
|
+
.rf-timeline-dot--filled.rf-timeline-dot--success {
|
|
7073
|
+
background-color: #2e7d32;
|
|
7074
|
+
}
|
|
7075
|
+
.rf-timeline-dot--filled.rf-timeline-dot--error {
|
|
7076
|
+
background-color: #d32f2f;
|
|
7077
|
+
}
|
|
7078
|
+
.rf-timeline-dot--filled.rf-timeline-dot--info {
|
|
7079
|
+
background-color: #0288d1;
|
|
7080
|
+
}
|
|
7081
|
+
.rf-timeline-dot--filled.rf-timeline-dot--warning {
|
|
7082
|
+
background-color: #ed6c02;
|
|
7083
|
+
}
|
|
7084
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--grey {
|
|
7085
|
+
border-color: #bdbdbd;
|
|
7086
|
+
color: #bdbdbd;
|
|
7087
|
+
}
|
|
7088
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--inherit {
|
|
7089
|
+
border-color: currentColor;
|
|
7090
|
+
}
|
|
7091
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--primary {
|
|
7092
|
+
border-color: var(--primary-color, #a81c08);
|
|
7093
|
+
color: var(--primary-color, #a81c08);
|
|
7094
|
+
}
|
|
7095
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--secondary {
|
|
7096
|
+
border-color: var(--secondary-color, #9c27b0);
|
|
7097
|
+
color: var(--secondary-color, #9c27b0);
|
|
7098
|
+
}
|
|
7099
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--success {
|
|
7100
|
+
border-color: #2e7d32;
|
|
7101
|
+
color: #2e7d32;
|
|
7102
|
+
}
|
|
7103
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--error {
|
|
7104
|
+
border-color: #d32f2f;
|
|
7105
|
+
color: #d32f2f;
|
|
7106
|
+
}
|
|
7107
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--info {
|
|
7108
|
+
border-color: #0288d1;
|
|
7109
|
+
color: #0288d1;
|
|
7110
|
+
}
|
|
7111
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--warning {
|
|
7112
|
+
border-color: #ed6c02;
|
|
7113
|
+
color: #ed6c02;
|
|
7114
|
+
}
|
|
7115
|
+
.rf-timeline-connector {
|
|
7116
|
+
width: 2px;
|
|
7117
|
+
flex-grow: 1;
|
|
7118
|
+
background-color: #bdbdbd;
|
|
7119
|
+
}
|
|
7120
|
+
.rf-timeline-content,
|
|
7121
|
+
.rf-timeline-opposite-content {
|
|
7122
|
+
flex: 1;
|
|
7123
|
+
padding: 6px 16px;
|
|
7124
|
+
text-align: left;
|
|
7125
|
+
}
|
|
7126
|
+
.rf-timeline-item--right .rf-timeline-opposite-content {
|
|
7127
|
+
text-align: right;
|
|
7128
|
+
}
|
|
7129
|
+
.rf-timeline-item--left .rf-timeline-content {
|
|
7130
|
+
text-align: right;
|
|
7131
|
+
}
|
|
7132
|
+
|
|
7001
7133
|
/* lib/styles/button.css */
|
|
7002
7134
|
.btn {
|
|
7003
7135
|
padding: 10px 20px;
|
package/dist/main.d.cts
CHANGED
|
@@ -2415,6 +2415,42 @@ interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">
|
|
|
2415
2415
|
}
|
|
2416
2416
|
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
2417
|
|
|
2418
|
+
type TimelinePosition = "right" | "left" | "alternate" | "alternate-reverse";
|
|
2419
|
+
type TimelineDotColor = "inherit" | "grey" | "primary" | "secondary" | "success" | "error" | "info" | "warning";
|
|
2420
|
+
type TimelineDotVariant = "filled" | "outlined";
|
|
2421
|
+
interface TimelineProps extends Omit<React.HTMLAttributes<HTMLUListElement>, "color"> {
|
|
2422
|
+
position?: TimelinePosition;
|
|
2423
|
+
sx?: SxProp;
|
|
2424
|
+
}
|
|
2425
|
+
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
2426
|
+
interface TimelineItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
2427
|
+
position?: "right" | "left";
|
|
2428
|
+
sx?: SxProp;
|
|
2429
|
+
}
|
|
2430
|
+
declare const TimelineItem: React.ForwardRefExoticComponent<TimelineItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
2431
|
+
interface TimelineSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2432
|
+
sx?: SxProp;
|
|
2433
|
+
}
|
|
2434
|
+
declare const TimelineSeparator: React.ForwardRefExoticComponent<TimelineSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
2435
|
+
interface TimelineDotProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color"> {
|
|
2436
|
+
color?: TimelineDotColor;
|
|
2437
|
+
variant?: TimelineDotVariant;
|
|
2438
|
+
sx?: SxProp;
|
|
2439
|
+
}
|
|
2440
|
+
declare const TimelineDot: React.ForwardRefExoticComponent<TimelineDotProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2441
|
+
interface TimelineConnectorProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
2442
|
+
sx?: SxProp;
|
|
2443
|
+
}
|
|
2444
|
+
declare const TimelineConnector: React.ForwardRefExoticComponent<TimelineConnectorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2445
|
+
interface TimelineContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2446
|
+
sx?: SxProp;
|
|
2447
|
+
}
|
|
2448
|
+
declare const TimelineContent: React.ForwardRefExoticComponent<TimelineContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2449
|
+
interface TimelineOppositeContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2450
|
+
sx?: SxProp;
|
|
2451
|
+
}
|
|
2452
|
+
declare const TimelineOppositeContent: React.ForwardRefExoticComponent<TimelineOppositeContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2453
|
+
|
|
2418
2454
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2419
2455
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2420
2456
|
interface ClickAwayListenerProps {
|
|
@@ -3066,4 +3102,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
3066
3102
|
*/
|
|
3067
3103
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
3068
3104
|
|
|
3069
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
|
3105
|
+
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDot, type TimelineDotColor, type TimelineDotProps, type TimelineDotVariant, TimelineItem, type TimelineItemProps, TimelineOppositeContent, type TimelineOppositeContentProps, type TimelinePosition, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
package/dist/main.d.ts
CHANGED
|
@@ -2415,6 +2415,42 @@ interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">
|
|
|
2415
2415
|
}
|
|
2416
2416
|
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
2417
|
|
|
2418
|
+
type TimelinePosition = "right" | "left" | "alternate" | "alternate-reverse";
|
|
2419
|
+
type TimelineDotColor = "inherit" | "grey" | "primary" | "secondary" | "success" | "error" | "info" | "warning";
|
|
2420
|
+
type TimelineDotVariant = "filled" | "outlined";
|
|
2421
|
+
interface TimelineProps extends Omit<React.HTMLAttributes<HTMLUListElement>, "color"> {
|
|
2422
|
+
position?: TimelinePosition;
|
|
2423
|
+
sx?: SxProp;
|
|
2424
|
+
}
|
|
2425
|
+
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
2426
|
+
interface TimelineItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
2427
|
+
position?: "right" | "left";
|
|
2428
|
+
sx?: SxProp;
|
|
2429
|
+
}
|
|
2430
|
+
declare const TimelineItem: React.ForwardRefExoticComponent<TimelineItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
2431
|
+
interface TimelineSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2432
|
+
sx?: SxProp;
|
|
2433
|
+
}
|
|
2434
|
+
declare const TimelineSeparator: React.ForwardRefExoticComponent<TimelineSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
2435
|
+
interface TimelineDotProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color"> {
|
|
2436
|
+
color?: TimelineDotColor;
|
|
2437
|
+
variant?: TimelineDotVariant;
|
|
2438
|
+
sx?: SxProp;
|
|
2439
|
+
}
|
|
2440
|
+
declare const TimelineDot: React.ForwardRefExoticComponent<TimelineDotProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2441
|
+
interface TimelineConnectorProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
2442
|
+
sx?: SxProp;
|
|
2443
|
+
}
|
|
2444
|
+
declare const TimelineConnector: React.ForwardRefExoticComponent<TimelineConnectorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2445
|
+
interface TimelineContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2446
|
+
sx?: SxProp;
|
|
2447
|
+
}
|
|
2448
|
+
declare const TimelineContent: React.ForwardRefExoticComponent<TimelineContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2449
|
+
interface TimelineOppositeContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2450
|
+
sx?: SxProp;
|
|
2451
|
+
}
|
|
2452
|
+
declare const TimelineOppositeContent: React.ForwardRefExoticComponent<TimelineOppositeContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2453
|
+
|
|
2418
2454
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2419
2455
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2420
2456
|
interface ClickAwayListenerProps {
|
|
@@ -3066,4 +3102,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
3066
3102
|
*/
|
|
3067
3103
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
3068
3104
|
|
|
3069
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
|
3105
|
+
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDot, type TimelineDotColor, type TimelineDotProps, type TimelineDotVariant, TimelineItem, type TimelineItemProps, TimelineOppositeContent, type TimelineOppositeContentProps, type TimelinePosition, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|