@moontra/moonui-pro 3.5.3 → 3.5.4
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/cdn/index.global.js +198 -208
- package/dist/cdn/index.global.js.map +1 -1
- package/dist/index.d.ts +30 -2
- package/dist/index.mjs +1762 -912
- package/dist/next-config-plugin.cjs +1 -1
- package/dist/next-config-plugin.mjs +1 -1
- package/dist/server.mjs +1 -1
- package/dist/styles/nprogress.mjs +1 -1
- package/dist/vite-plugin.cjs +1 -1
- package/dist/vite-plugin.mjs +1 -1
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -2745,7 +2745,16 @@ interface RichTextEditorProps {
|
|
|
2745
2745
|
aiConfig?: EditorAIConfig;
|
|
2746
2746
|
persistAISettings?: boolean;
|
|
2747
2747
|
}
|
|
2748
|
-
|
|
2748
|
+
/**
|
|
2749
|
+
* Lisans kapisi. Tek isi guard yapmak — hicbir kosullu hook icermez.
|
|
2750
|
+
*
|
|
2751
|
+
* useSubscription her render'da KOSULSUZ calisir; erken donus hook'suz bir ProLockScreen
|
|
2752
|
+
* dondurur. Asil govde (ve 37 hook'u) RichTextEditorInternal'da ve ancak erisim varken
|
|
2753
|
+
* mount edilir. Boylece hook sayisi render'lar arasinda asla degismez.
|
|
2754
|
+
*
|
|
2755
|
+
* Referans desen: text-animations/shiny-text.tsx (ShinyText / ShinyTextInternal).
|
|
2756
|
+
*/
|
|
2757
|
+
declare function RichTextEditor(props: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2749
2758
|
|
|
2750
2759
|
interface MemoryConfig {
|
|
2751
2760
|
chunkSize?: number;
|
|
@@ -3774,6 +3783,15 @@ interface FileMetadata {
|
|
|
3774
3783
|
duration?: number;
|
|
3775
3784
|
bitrate?: number;
|
|
3776
3785
|
}
|
|
3786
|
+
/**
|
|
3787
|
+
* Lisans kapisi. Tek isi guard yapmak — hicbir kosullu hook icermez.
|
|
3788
|
+
*
|
|
3789
|
+
* useSubscription her render'da KOSULSUZ calisir; erken donus hook'suz bir kilit ekrani
|
|
3790
|
+
* dondurur. Asil govde (ve 28 hook'u) FileUploadInternal'da ve ancak erisim varken mount
|
|
3791
|
+
* edilir. Boylece hook sayisi render'lar arasinda asla degismez.
|
|
3792
|
+
*
|
|
3793
|
+
* forwardRef korunuyor: ref, ic component'e gecirilir — disari acilan API degismedi.
|
|
3794
|
+
*/
|
|
3777
3795
|
declare const MoonUIFileUploadPro: React__default.ForwardRefExoticComponent<FileUploadProProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3778
3796
|
|
|
3779
3797
|
interface BulkAction<T = any> {
|
|
@@ -3882,7 +3900,17 @@ interface DataTableProps<TData, TValue> {
|
|
|
3882
3900
|
filterButton?: string;
|
|
3883
3901
|
};
|
|
3884
3902
|
}
|
|
3885
|
-
|
|
3903
|
+
/**
|
|
3904
|
+
* Lisans kapisi. Tek isi guard yapmak — hicbir kosullu hook icermez.
|
|
3905
|
+
*
|
|
3906
|
+
* useSubscription her render'da KOSULSUZ calisir; erken donus yalnizca hook'suz bir
|
|
3907
|
+
* ProLockScreen dondurur. Asil govde (ve 17 hook'u) DataTableInternal'a taşındı, o da
|
|
3908
|
+
* ancak erisim varken mount edilir. Boylece hook sayisi render'lar arasinda asla
|
|
3909
|
+
* degismez.
|
|
3910
|
+
*
|
|
3911
|
+
* Referans desen: text-animations/shiny-text.tsx (ShinyText / ShinyTextInternal).
|
|
3912
|
+
*/
|
|
3913
|
+
declare function DataTable<TData, TValue>(props: DataTableProps<TData, TValue>): react_jsx_runtime.JSX.Element;
|
|
3886
3914
|
/**
|
|
3887
3915
|
* Helper function to create an expandable column
|
|
3888
3916
|
* @param expandedRows - Set of expanded row IDs
|