@rufous/ui 0.3.52 → 0.3.53
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 +457 -117
- package/dist/main.css +313 -0
- package/dist/main.d.cts +73 -1
- package/dist/main.d.ts +73 -1
- package/dist/main.js +1297 -963
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -6685,6 +6685,319 @@ pre {
|
|
|
6685
6685
|
opacity: 1;
|
|
6686
6686
|
}
|
|
6687
6687
|
|
|
6688
|
+
/* lib/styles/linear-progress.css */
|
|
6689
|
+
.rf-linear-progress {
|
|
6690
|
+
position: relative;
|
|
6691
|
+
width: 100%;
|
|
6692
|
+
overflow: hidden;
|
|
6693
|
+
border-radius: 999px;
|
|
6694
|
+
}
|
|
6695
|
+
.rf-linear-progress__bar,
|
|
6696
|
+
.rf-linear-progress__buffer {
|
|
6697
|
+
position: absolute;
|
|
6698
|
+
top: 0;
|
|
6699
|
+
left: 0;
|
|
6700
|
+
bottom: 0;
|
|
6701
|
+
border-radius: inherit;
|
|
6702
|
+
transition: width 0.2s linear;
|
|
6703
|
+
}
|
|
6704
|
+
.rf-linear-progress--determinate .rf-linear-progress__bar,
|
|
6705
|
+
.rf-linear-progress--buffer .rf-linear-progress__bar {
|
|
6706
|
+
width: 0%;
|
|
6707
|
+
}
|
|
6708
|
+
.rf-linear-progress--indeterminate .rf-linear-progress__bar {
|
|
6709
|
+
width: auto;
|
|
6710
|
+
animation: rf-linear-indeterminate1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
|
|
6711
|
+
}
|
|
6712
|
+
.rf-linear-progress--indeterminate .rf-linear-progress__bar--secondary {
|
|
6713
|
+
animation: rf-linear-indeterminate2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
|
|
6714
|
+
}
|
|
6715
|
+
.rf-linear-progress--query .rf-linear-progress__bar {
|
|
6716
|
+
width: auto;
|
|
6717
|
+
animation: rf-linear-query1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite reverse;
|
|
6718
|
+
}
|
|
6719
|
+
@keyframes rf-linear-indeterminate1 {
|
|
6720
|
+
0% {
|
|
6721
|
+
left: -35%;
|
|
6722
|
+
right: 100%;
|
|
6723
|
+
}
|
|
6724
|
+
60% {
|
|
6725
|
+
left: 100%;
|
|
6726
|
+
right: -90%;
|
|
6727
|
+
}
|
|
6728
|
+
100% {
|
|
6729
|
+
left: 100%;
|
|
6730
|
+
right: -90%;
|
|
6731
|
+
}
|
|
6732
|
+
}
|
|
6733
|
+
@keyframes rf-linear-indeterminate2 {
|
|
6734
|
+
0% {
|
|
6735
|
+
left: -200%;
|
|
6736
|
+
right: 100%;
|
|
6737
|
+
}
|
|
6738
|
+
60% {
|
|
6739
|
+
left: 107%;
|
|
6740
|
+
right: -8%;
|
|
6741
|
+
}
|
|
6742
|
+
100% {
|
|
6743
|
+
left: 107%;
|
|
6744
|
+
right: -8%;
|
|
6745
|
+
}
|
|
6746
|
+
}
|
|
6747
|
+
@keyframes rf-linear-query1 {
|
|
6748
|
+
0% {
|
|
6749
|
+
left: -35%;
|
|
6750
|
+
right: 100%;
|
|
6751
|
+
}
|
|
6752
|
+
60% {
|
|
6753
|
+
left: 100%;
|
|
6754
|
+
right: -90%;
|
|
6755
|
+
}
|
|
6756
|
+
100% {
|
|
6757
|
+
left: 100%;
|
|
6758
|
+
right: -90%;
|
|
6759
|
+
}
|
|
6760
|
+
}
|
|
6761
|
+
|
|
6762
|
+
/* lib/styles/pagination.css */
|
|
6763
|
+
.rf-pagination {
|
|
6764
|
+
display: inline-block;
|
|
6765
|
+
}
|
|
6766
|
+
.rf-pagination__list {
|
|
6767
|
+
display: flex;
|
|
6768
|
+
flex-wrap: wrap;
|
|
6769
|
+
align-items: center;
|
|
6770
|
+
gap: 4px;
|
|
6771
|
+
list-style: none;
|
|
6772
|
+
padding: 0;
|
|
6773
|
+
margin: 0;
|
|
6774
|
+
}
|
|
6775
|
+
.rf-pagination__btn {
|
|
6776
|
+
display: inline-flex;
|
|
6777
|
+
align-items: center;
|
|
6778
|
+
justify-content: center;
|
|
6779
|
+
min-width: 32px;
|
|
6780
|
+
height: 32px;
|
|
6781
|
+
padding: 0 6px;
|
|
6782
|
+
border: 1px solid transparent;
|
|
6783
|
+
background: transparent;
|
|
6784
|
+
color: var(--text-color, #1a1a1a);
|
|
6785
|
+
font-family: inherit;
|
|
6786
|
+
font-size: 0.875rem;
|
|
6787
|
+
cursor: pointer;
|
|
6788
|
+
transition:
|
|
6789
|
+
background-color 0.15s,
|
|
6790
|
+
border-color 0.15s,
|
|
6791
|
+
color 0.15s;
|
|
6792
|
+
}
|
|
6793
|
+
.rf-pagination__btn:hover:not(:disabled) {
|
|
6794
|
+
background: var(--hover-color, rgba(0, 0, 0, 0.05));
|
|
6795
|
+
}
|
|
6796
|
+
.rf-pagination__btn:disabled {
|
|
6797
|
+
opacity: 0.4;
|
|
6798
|
+
cursor: default;
|
|
6799
|
+
}
|
|
6800
|
+
.rf-pagination__btn--active {
|
|
6801
|
+
background: var(--selection-color, rgba(168, 28, 8, 0.12));
|
|
6802
|
+
color: var(--primary-color, #a81c08);
|
|
6803
|
+
font-weight: 600;
|
|
6804
|
+
}
|
|
6805
|
+
.rf-pagination--primary .rf-pagination__btn--active {
|
|
6806
|
+
background: var(--primary-color, #a81c08);
|
|
6807
|
+
color: #fff;
|
|
6808
|
+
border-color: var(--primary-color, #a81c08);
|
|
6809
|
+
}
|
|
6810
|
+
.rf-pagination__btn--control {
|
|
6811
|
+
font-size: 1rem;
|
|
6812
|
+
line-height: 1;
|
|
6813
|
+
}
|
|
6814
|
+
.rf-pagination__ellipsis {
|
|
6815
|
+
display: inline-flex;
|
|
6816
|
+
min-width: 32px;
|
|
6817
|
+
height: 32px;
|
|
6818
|
+
align-items: center;
|
|
6819
|
+
justify-content: center;
|
|
6820
|
+
color: var(--text-secondary, #666);
|
|
6821
|
+
font-size: 0.875rem;
|
|
6822
|
+
}
|
|
6823
|
+
.rf-pagination--circular .rf-pagination__btn {
|
|
6824
|
+
border-radius: 50%;
|
|
6825
|
+
}
|
|
6826
|
+
.rf-pagination--rounded .rf-pagination__btn {
|
|
6827
|
+
border-radius: 6px;
|
|
6828
|
+
}
|
|
6829
|
+
.rf-pagination--small .rf-pagination__btn,
|
|
6830
|
+
.rf-pagination--small .rf-pagination__ellipsis {
|
|
6831
|
+
min-width: 26px;
|
|
6832
|
+
height: 26px;
|
|
6833
|
+
font-size: 0.8125rem;
|
|
6834
|
+
}
|
|
6835
|
+
.rf-pagination--large .rf-pagination__btn,
|
|
6836
|
+
.rf-pagination--large .rf-pagination__ellipsis {
|
|
6837
|
+
min-width: 40px;
|
|
6838
|
+
height: 40px;
|
|
6839
|
+
font-size: 0.9375rem;
|
|
6840
|
+
}
|
|
6841
|
+
|
|
6842
|
+
/* lib/styles/button-group.css */
|
|
6843
|
+
.rf-button-group {
|
|
6844
|
+
display: inline-flex;
|
|
6845
|
+
border-radius: 6px;
|
|
6846
|
+
}
|
|
6847
|
+
.rf-button-group--full {
|
|
6848
|
+
display: flex;
|
|
6849
|
+
width: 100%;
|
|
6850
|
+
}
|
|
6851
|
+
.rf-button-group--horizontal {
|
|
6852
|
+
flex-direction: row;
|
|
6853
|
+
}
|
|
6854
|
+
.rf-button-group--vertical {
|
|
6855
|
+
flex-direction: column;
|
|
6856
|
+
}
|
|
6857
|
+
.rf-button-group > * {
|
|
6858
|
+
border-radius: 0;
|
|
6859
|
+
}
|
|
6860
|
+
.rf-button-group--full > * {
|
|
6861
|
+
flex: 1;
|
|
6862
|
+
}
|
|
6863
|
+
.rf-button-group--horizontal > *:not(:last-child) {
|
|
6864
|
+
border-top-right-radius: 0;
|
|
6865
|
+
border-bottom-right-radius: 0;
|
|
6866
|
+
}
|
|
6867
|
+
.rf-button-group--horizontal > *:not(:first-child) {
|
|
6868
|
+
border-top-left-radius: 0;
|
|
6869
|
+
border-bottom-left-radius: 0;
|
|
6870
|
+
margin-left: -1px;
|
|
6871
|
+
}
|
|
6872
|
+
.rf-button-group--vertical > *:not(:last-child) {
|
|
6873
|
+
border-bottom-left-radius: 0;
|
|
6874
|
+
border-bottom-right-radius: 0;
|
|
6875
|
+
}
|
|
6876
|
+
.rf-button-group--vertical > *:not(:first-child) {
|
|
6877
|
+
border-top-left-radius: 0;
|
|
6878
|
+
border-top-right-radius: 0;
|
|
6879
|
+
margin-top: -1px;
|
|
6880
|
+
}
|
|
6881
|
+
.rf-button-group--horizontal > *:first-child {
|
|
6882
|
+
border-top-left-radius: 6px;
|
|
6883
|
+
border-bottom-left-radius: 6px;
|
|
6884
|
+
}
|
|
6885
|
+
.rf-button-group--horizontal > *:last-child {
|
|
6886
|
+
border-top-right-radius: 6px;
|
|
6887
|
+
border-bottom-right-radius: 6px;
|
|
6888
|
+
}
|
|
6889
|
+
.rf-button-group--vertical > *:first-child {
|
|
6890
|
+
border-top-left-radius: 6px;
|
|
6891
|
+
border-top-right-radius: 6px;
|
|
6892
|
+
}
|
|
6893
|
+
.rf-button-group--vertical > *:last-child {
|
|
6894
|
+
border-bottom-left-radius: 6px;
|
|
6895
|
+
border-bottom-right-radius: 6px;
|
|
6896
|
+
}
|
|
6897
|
+
|
|
6898
|
+
/* lib/styles/alert.css */
|
|
6899
|
+
.rf-alert {
|
|
6900
|
+
display: flex;
|
|
6901
|
+
align-items: flex-start;
|
|
6902
|
+
gap: 12px;
|
|
6903
|
+
padding: 10px 16px;
|
|
6904
|
+
border-radius: 6px;
|
|
6905
|
+
font-family: inherit;
|
|
6906
|
+
font-size: 0.875rem;
|
|
6907
|
+
line-height: 1.5;
|
|
6908
|
+
}
|
|
6909
|
+
.rf-alert__icon {
|
|
6910
|
+
display: inline-flex;
|
|
6911
|
+
align-items: center;
|
|
6912
|
+
padding-top: 1px;
|
|
6913
|
+
flex-shrink: 0;
|
|
6914
|
+
}
|
|
6915
|
+
.rf-alert__message {
|
|
6916
|
+
flex: 1;
|
|
6917
|
+
min-width: 0;
|
|
6918
|
+
}
|
|
6919
|
+
.rf-alert__title {
|
|
6920
|
+
font-weight: 600;
|
|
6921
|
+
margin-bottom: 2px;
|
|
6922
|
+
}
|
|
6923
|
+
.rf-alert__action {
|
|
6924
|
+
display: inline-flex;
|
|
6925
|
+
align-items: center;
|
|
6926
|
+
margin-left: auto;
|
|
6927
|
+
padding-left: 8px;
|
|
6928
|
+
}
|
|
6929
|
+
.rf-alert__close {
|
|
6930
|
+
background: none;
|
|
6931
|
+
border: none;
|
|
6932
|
+
font-size: 1.25rem;
|
|
6933
|
+
line-height: 1;
|
|
6934
|
+
padding: 4px 6px;
|
|
6935
|
+
cursor: pointer;
|
|
6936
|
+
color: inherit;
|
|
6937
|
+
opacity: 0.7;
|
|
6938
|
+
border-radius: 4px;
|
|
6939
|
+
}
|
|
6940
|
+
.rf-alert__close:hover {
|
|
6941
|
+
opacity: 1;
|
|
6942
|
+
background: rgba(0, 0, 0, 0.06);
|
|
6943
|
+
}
|
|
6944
|
+
.rf-alert--standard.rf-alert--success {
|
|
6945
|
+
background: #e8f5e9;
|
|
6946
|
+
color: #1e4620;
|
|
6947
|
+
}
|
|
6948
|
+
.rf-alert--standard.rf-alert--info {
|
|
6949
|
+
background: #e7f3fb;
|
|
6950
|
+
color: #0a4a6e;
|
|
6951
|
+
}
|
|
6952
|
+
.rf-alert--standard.rf-alert--warning {
|
|
6953
|
+
background: #fff4e5;
|
|
6954
|
+
color: #663c00;
|
|
6955
|
+
}
|
|
6956
|
+
.rf-alert--standard.rf-alert--error {
|
|
6957
|
+
background: #fdecea;
|
|
6958
|
+
color: #611a15;
|
|
6959
|
+
}
|
|
6960
|
+
.rf-alert--standard .rf-alert__icon {
|
|
6961
|
+
color: currentColor;
|
|
6962
|
+
opacity: 0.85;
|
|
6963
|
+
}
|
|
6964
|
+
.rf-alert--filled.rf-alert--success {
|
|
6965
|
+
background: #2e7d32;
|
|
6966
|
+
color: #fff;
|
|
6967
|
+
}
|
|
6968
|
+
.rf-alert--filled.rf-alert--info {
|
|
6969
|
+
background: #0288d1;
|
|
6970
|
+
color: #fff;
|
|
6971
|
+
}
|
|
6972
|
+
.rf-alert--filled.rf-alert--warning {
|
|
6973
|
+
background: #ed6c02;
|
|
6974
|
+
color: #fff;
|
|
6975
|
+
}
|
|
6976
|
+
.rf-alert--filled.rf-alert--error {
|
|
6977
|
+
background: #d32f2f;
|
|
6978
|
+
color: #fff;
|
|
6979
|
+
}
|
|
6980
|
+
.rf-alert--outlined {
|
|
6981
|
+
background: transparent;
|
|
6982
|
+
border: 1px solid currentColor;
|
|
6983
|
+
}
|
|
6984
|
+
.rf-alert--outlined.rf-alert--success {
|
|
6985
|
+
color: #1e4620;
|
|
6986
|
+
border-color: #2e7d32;
|
|
6987
|
+
}
|
|
6988
|
+
.rf-alert--outlined.rf-alert--info {
|
|
6989
|
+
color: #0a4a6e;
|
|
6990
|
+
border-color: #0288d1;
|
|
6991
|
+
}
|
|
6992
|
+
.rf-alert--outlined.rf-alert--warning {
|
|
6993
|
+
color: #663c00;
|
|
6994
|
+
border-color: #ed6c02;
|
|
6995
|
+
}
|
|
6996
|
+
.rf-alert--outlined.rf-alert--error {
|
|
6997
|
+
color: #611a15;
|
|
6998
|
+
border-color: #d32f2f;
|
|
6999
|
+
}
|
|
7000
|
+
|
|
6688
7001
|
/* lib/styles/button.css */
|
|
6689
7002
|
.btn {
|
|
6690
7003
|
padding: 10px 20px;
|
package/dist/main.d.cts
CHANGED
|
@@ -849,6 +849,16 @@ interface IconButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
849
849
|
}
|
|
850
850
|
declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
851
851
|
|
|
852
|
+
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
853
|
+
orientation?: "horizontal" | "vertical";
|
|
854
|
+
variant?: "contained" | "outlined" | "text";
|
|
855
|
+
size?: "small" | "medium" | "large";
|
|
856
|
+
fullWidth?: boolean;
|
|
857
|
+
disabled?: boolean;
|
|
858
|
+
sx?: SxProp;
|
|
859
|
+
}
|
|
860
|
+
declare const ButtonGroup: React.ForwardRefExoticComponent<ButtonGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
861
|
+
|
|
852
862
|
interface BaseDialogForm {
|
|
853
863
|
handleSubmit?: (e: React.FormEvent) => void;
|
|
854
864
|
[key: string]: any;
|
|
@@ -1212,6 +1222,18 @@ interface CircularProgressIconProps {
|
|
|
1212
1222
|
}
|
|
1213
1223
|
declare const CircularProgressIcon: React.FC<CircularProgressIconProps>;
|
|
1214
1224
|
|
|
1225
|
+
type LinearProgressVariant = "determinate" | "indeterminate" | "buffer" | "query";
|
|
1226
|
+
interface LinearProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
|
|
1227
|
+
variant?: LinearProgressVariant;
|
|
1228
|
+
value?: number;
|
|
1229
|
+
valueBuffer?: number;
|
|
1230
|
+
color?: string;
|
|
1231
|
+
trackColor?: string;
|
|
1232
|
+
thickness?: number;
|
|
1233
|
+
sx?: SxProp;
|
|
1234
|
+
}
|
|
1235
|
+
declare const LinearProgress: React.ForwardRefExoticComponent<LinearProgressProps & React.RefAttributes<HTMLDivElement>>;
|
|
1236
|
+
|
|
1215
1237
|
interface RufousLogoLoaderProps {
|
|
1216
1238
|
/** Width of the loader in pixels — height is proportioned automatically */
|
|
1217
1239
|
size?: number;
|
|
@@ -1626,6 +1648,13 @@ interface RadioGroupProps {
|
|
|
1626
1648
|
}
|
|
1627
1649
|
declare const RadioGroup: React__default.ForwardRefExoticComponent<RadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1628
1650
|
|
|
1651
|
+
interface FormGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1652
|
+
row?: boolean;
|
|
1653
|
+
spacing?: number | string;
|
|
1654
|
+
sx?: SxProp;
|
|
1655
|
+
}
|
|
1656
|
+
declare const FormGroup: React.ForwardRefExoticComponent<FormGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
1657
|
+
|
|
1629
1658
|
interface RatingProps {
|
|
1630
1659
|
value?: number | null;
|
|
1631
1660
|
onChange?: (value: number | null) => void;
|
|
@@ -1958,6 +1987,16 @@ interface GridProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
1958
1987
|
}
|
|
1959
1988
|
declare const Grid: React.ForwardRefExoticComponent<GridProps & React.RefAttributes<HTMLElement>>;
|
|
1960
1989
|
|
|
1990
|
+
type ContainerMaxWidth = "xs" | "sm" | "md" | "lg" | "xl" | false;
|
|
1991
|
+
interface ContainerProps extends React.HTMLAttributes<HTMLElement> {
|
|
1992
|
+
maxWidth?: ContainerMaxWidth;
|
|
1993
|
+
fixed?: boolean;
|
|
1994
|
+
disableGutters?: boolean;
|
|
1995
|
+
component?: keyof React.JSX.IntrinsicElements;
|
|
1996
|
+
sx?: SxProp;
|
|
1997
|
+
}
|
|
1998
|
+
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLElement>>;
|
|
1999
|
+
|
|
1961
2000
|
interface TableContainerProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
1962
2001
|
component?: keyof React__default.JSX.IntrinsicElements;
|
|
1963
2002
|
children?: ReactNode;
|
|
@@ -2324,6 +2363,26 @@ interface DrawerProps {
|
|
|
2324
2363
|
}
|
|
2325
2364
|
declare const Drawer: React__default.FC<DrawerProps>;
|
|
2326
2365
|
|
|
2366
|
+
type PaginationItemType = "page" | "first" | "previous" | "next" | "last" | "start-ellipsis" | "end-ellipsis";
|
|
2367
|
+
interface PaginationProps extends Omit<React.HTMLAttributes<HTMLElement>, "onChange" | "color"> {
|
|
2368
|
+
count: number;
|
|
2369
|
+
page?: number;
|
|
2370
|
+
defaultPage?: number;
|
|
2371
|
+
onChange?: (event: React.MouseEvent<HTMLButtonElement>, page: number) => void;
|
|
2372
|
+
siblingCount?: number;
|
|
2373
|
+
boundaryCount?: number;
|
|
2374
|
+
showFirstButton?: boolean;
|
|
2375
|
+
showLastButton?: boolean;
|
|
2376
|
+
hidePrevButton?: boolean;
|
|
2377
|
+
hideNextButton?: boolean;
|
|
2378
|
+
disabled?: boolean;
|
|
2379
|
+
shape?: "circular" | "rounded";
|
|
2380
|
+
size?: "small" | "medium" | "large";
|
|
2381
|
+
color?: "primary" | "standard";
|
|
2382
|
+
sx?: SxProp;
|
|
2383
|
+
}
|
|
2384
|
+
declare const Pagination: React.ForwardRefExoticComponent<PaginationProps & React.RefAttributes<HTMLElement>>;
|
|
2385
|
+
|
|
2327
2386
|
interface SnackbarProps {
|
|
2328
2387
|
open: boolean;
|
|
2329
2388
|
onClose?: (reason: "timeout" | "clickaway" | "escapeKeyDown") => void;
|
|
@@ -2343,6 +2402,19 @@ interface SnackbarProps {
|
|
|
2343
2402
|
}
|
|
2344
2403
|
declare const Snackbar: React__default.FC<SnackbarProps>;
|
|
2345
2404
|
|
|
2405
|
+
type AlertSeverity = "success" | "info" | "warning" | "error";
|
|
2406
|
+
type AlertVariant = "standard" | "filled" | "outlined";
|
|
2407
|
+
interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2408
|
+
severity?: AlertSeverity;
|
|
2409
|
+
variant?: AlertVariant;
|
|
2410
|
+
title?: React.ReactNode;
|
|
2411
|
+
icon?: React.ReactNode | false;
|
|
2412
|
+
action?: React.ReactNode;
|
|
2413
|
+
onClose?: () => void;
|
|
2414
|
+
sx?: SxProp;
|
|
2415
|
+
}
|
|
2416
|
+
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
|
+
|
|
2346
2418
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2347
2419
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2348
2420
|
interface ClickAwayListenerProps {
|
|
@@ -2994,4 +3066,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
2994
3066
|
*/
|
|
2995
3067
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
2996
3068
|
|
|
2997
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, AlertTriangleIcon, 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, 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, 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, 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, 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, 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 };
|
|
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 };
|
package/dist/main.d.ts
CHANGED
|
@@ -849,6 +849,16 @@ interface IconButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
849
849
|
}
|
|
850
850
|
declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
851
851
|
|
|
852
|
+
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
853
|
+
orientation?: "horizontal" | "vertical";
|
|
854
|
+
variant?: "contained" | "outlined" | "text";
|
|
855
|
+
size?: "small" | "medium" | "large";
|
|
856
|
+
fullWidth?: boolean;
|
|
857
|
+
disabled?: boolean;
|
|
858
|
+
sx?: SxProp;
|
|
859
|
+
}
|
|
860
|
+
declare const ButtonGroup: React.ForwardRefExoticComponent<ButtonGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
861
|
+
|
|
852
862
|
interface BaseDialogForm {
|
|
853
863
|
handleSubmit?: (e: React.FormEvent) => void;
|
|
854
864
|
[key: string]: any;
|
|
@@ -1212,6 +1222,18 @@ interface CircularProgressIconProps {
|
|
|
1212
1222
|
}
|
|
1213
1223
|
declare const CircularProgressIcon: React.FC<CircularProgressIconProps>;
|
|
1214
1224
|
|
|
1225
|
+
type LinearProgressVariant = "determinate" | "indeterminate" | "buffer" | "query";
|
|
1226
|
+
interface LinearProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
|
|
1227
|
+
variant?: LinearProgressVariant;
|
|
1228
|
+
value?: number;
|
|
1229
|
+
valueBuffer?: number;
|
|
1230
|
+
color?: string;
|
|
1231
|
+
trackColor?: string;
|
|
1232
|
+
thickness?: number;
|
|
1233
|
+
sx?: SxProp;
|
|
1234
|
+
}
|
|
1235
|
+
declare const LinearProgress: React.ForwardRefExoticComponent<LinearProgressProps & React.RefAttributes<HTMLDivElement>>;
|
|
1236
|
+
|
|
1215
1237
|
interface RufousLogoLoaderProps {
|
|
1216
1238
|
/** Width of the loader in pixels — height is proportioned automatically */
|
|
1217
1239
|
size?: number;
|
|
@@ -1626,6 +1648,13 @@ interface RadioGroupProps {
|
|
|
1626
1648
|
}
|
|
1627
1649
|
declare const RadioGroup: React__default.ForwardRefExoticComponent<RadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1628
1650
|
|
|
1651
|
+
interface FormGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1652
|
+
row?: boolean;
|
|
1653
|
+
spacing?: number | string;
|
|
1654
|
+
sx?: SxProp;
|
|
1655
|
+
}
|
|
1656
|
+
declare const FormGroup: React.ForwardRefExoticComponent<FormGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
1657
|
+
|
|
1629
1658
|
interface RatingProps {
|
|
1630
1659
|
value?: number | null;
|
|
1631
1660
|
onChange?: (value: number | null) => void;
|
|
@@ -1958,6 +1987,16 @@ interface GridProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
1958
1987
|
}
|
|
1959
1988
|
declare const Grid: React.ForwardRefExoticComponent<GridProps & React.RefAttributes<HTMLElement>>;
|
|
1960
1989
|
|
|
1990
|
+
type ContainerMaxWidth = "xs" | "sm" | "md" | "lg" | "xl" | false;
|
|
1991
|
+
interface ContainerProps extends React.HTMLAttributes<HTMLElement> {
|
|
1992
|
+
maxWidth?: ContainerMaxWidth;
|
|
1993
|
+
fixed?: boolean;
|
|
1994
|
+
disableGutters?: boolean;
|
|
1995
|
+
component?: keyof React.JSX.IntrinsicElements;
|
|
1996
|
+
sx?: SxProp;
|
|
1997
|
+
}
|
|
1998
|
+
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLElement>>;
|
|
1999
|
+
|
|
1961
2000
|
interface TableContainerProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
1962
2001
|
component?: keyof React__default.JSX.IntrinsicElements;
|
|
1963
2002
|
children?: ReactNode;
|
|
@@ -2324,6 +2363,26 @@ interface DrawerProps {
|
|
|
2324
2363
|
}
|
|
2325
2364
|
declare const Drawer: React__default.FC<DrawerProps>;
|
|
2326
2365
|
|
|
2366
|
+
type PaginationItemType = "page" | "first" | "previous" | "next" | "last" | "start-ellipsis" | "end-ellipsis";
|
|
2367
|
+
interface PaginationProps extends Omit<React.HTMLAttributes<HTMLElement>, "onChange" | "color"> {
|
|
2368
|
+
count: number;
|
|
2369
|
+
page?: number;
|
|
2370
|
+
defaultPage?: number;
|
|
2371
|
+
onChange?: (event: React.MouseEvent<HTMLButtonElement>, page: number) => void;
|
|
2372
|
+
siblingCount?: number;
|
|
2373
|
+
boundaryCount?: number;
|
|
2374
|
+
showFirstButton?: boolean;
|
|
2375
|
+
showLastButton?: boolean;
|
|
2376
|
+
hidePrevButton?: boolean;
|
|
2377
|
+
hideNextButton?: boolean;
|
|
2378
|
+
disabled?: boolean;
|
|
2379
|
+
shape?: "circular" | "rounded";
|
|
2380
|
+
size?: "small" | "medium" | "large";
|
|
2381
|
+
color?: "primary" | "standard";
|
|
2382
|
+
sx?: SxProp;
|
|
2383
|
+
}
|
|
2384
|
+
declare const Pagination: React.ForwardRefExoticComponent<PaginationProps & React.RefAttributes<HTMLElement>>;
|
|
2385
|
+
|
|
2327
2386
|
interface SnackbarProps {
|
|
2328
2387
|
open: boolean;
|
|
2329
2388
|
onClose?: (reason: "timeout" | "clickaway" | "escapeKeyDown") => void;
|
|
@@ -2343,6 +2402,19 @@ interface SnackbarProps {
|
|
|
2343
2402
|
}
|
|
2344
2403
|
declare const Snackbar: React__default.FC<SnackbarProps>;
|
|
2345
2404
|
|
|
2405
|
+
type AlertSeverity = "success" | "info" | "warning" | "error";
|
|
2406
|
+
type AlertVariant = "standard" | "filled" | "outlined";
|
|
2407
|
+
interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2408
|
+
severity?: AlertSeverity;
|
|
2409
|
+
variant?: AlertVariant;
|
|
2410
|
+
title?: React.ReactNode;
|
|
2411
|
+
icon?: React.ReactNode | false;
|
|
2412
|
+
action?: React.ReactNode;
|
|
2413
|
+
onClose?: () => void;
|
|
2414
|
+
sx?: SxProp;
|
|
2415
|
+
}
|
|
2416
|
+
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
|
+
|
|
2346
2418
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2347
2419
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2348
2420
|
interface ClickAwayListenerProps {
|
|
@@ -2994,4 +3066,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
2994
3066
|
*/
|
|
2995
3067
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
2996
3068
|
|
|
2997
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, AlertTriangleIcon, 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, 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, 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, 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, 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, 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 };
|
|
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 };
|