@juv/codego-react-ui 3.5.4 → 3.5.5
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/index.cjs +16 -0
- package/dist/index.d.cts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.global.js +11 -0
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -127,6 +127,11 @@ __export(index_exports, {
|
|
|
127
127
|
Wizard: () => Wizard,
|
|
128
128
|
api: () => api,
|
|
129
129
|
createStore: () => createStore,
|
|
130
|
+
decryptLaravelPayload: () => decryptLaravelPayload,
|
|
131
|
+
decryptResponse: () => decryptResponse,
|
|
132
|
+
getLaravelSecretKey: () => getLaravelSecretKey,
|
|
133
|
+
parseLaravelEncryptedPayload: () => parseLaravelEncryptedPayload,
|
|
134
|
+
parseLaravelKey: () => parseLaravelKey,
|
|
130
135
|
useServerBulletin: () => useServerBulletin,
|
|
131
136
|
useServerDataGrid: () => useServerDataGrid,
|
|
132
137
|
useServerTable: () => useServerTable,
|
|
@@ -13821,6 +13826,12 @@ function createStore(initialValue, sessionName, expireInterval) {
|
|
|
13821
13826
|
};
|
|
13822
13827
|
return { store, getStore };
|
|
13823
13828
|
}
|
|
13829
|
+
|
|
13830
|
+
// src/core/decryption/decode.ts
|
|
13831
|
+
function decryptResponse(response, key) {
|
|
13832
|
+
const payload = typeof response === "string" ? response : response.data;
|
|
13833
|
+
return decryptLaravelPayload(payload, key);
|
|
13834
|
+
}
|
|
13824
13835
|
// Annotate the CommonJS export names for ESM import in node:
|
|
13825
13836
|
0 && (module.exports = {
|
|
13826
13837
|
Accordion,
|
|
@@ -13921,6 +13932,11 @@ function createStore(initialValue, sessionName, expireInterval) {
|
|
|
13921
13932
|
Wizard,
|
|
13922
13933
|
api,
|
|
13923
13934
|
createStore,
|
|
13935
|
+
decryptLaravelPayload,
|
|
13936
|
+
decryptResponse,
|
|
13937
|
+
getLaravelSecretKey,
|
|
13938
|
+
parseLaravelEncryptedPayload,
|
|
13939
|
+
parseLaravelKey,
|
|
13924
13940
|
useServerBulletin,
|
|
13925
13941
|
useServerDataGrid,
|
|
13926
13942
|
useServerTable,
|
package/dist/index.d.cts
CHANGED
|
@@ -3,6 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import { AxiosRequestConfig } from 'axios';
|
|
5
5
|
import { UseBoundStore, StoreApi } from 'zustand';
|
|
6
|
+
import CryptoJS from 'crypto-js';
|
|
6
7
|
|
|
7
8
|
type AuthView = "login" | "register" | "resetPassword";
|
|
8
9
|
interface AuthField {
|
|
@@ -2561,4 +2562,29 @@ type StoreWrapper<T extends object> = {
|
|
|
2561
2562
|
*/
|
|
2562
2563
|
declare function createStore<T extends object>(initialValue: T, sessionName: string, expireInterval?: number): StoreWrapper<T>;
|
|
2563
2564
|
|
|
2564
|
-
|
|
2565
|
+
type LaravelEncryptedPayload = {
|
|
2566
|
+
iv: string;
|
|
2567
|
+
value: string;
|
|
2568
|
+
mac: string;
|
|
2569
|
+
tag?: string;
|
|
2570
|
+
};
|
|
2571
|
+
declare function getLaravelSecretKey(): string;
|
|
2572
|
+
declare function parseLaravelKey(secretKey: string): CryptoJS.lib.WordArray;
|
|
2573
|
+
declare function parseLaravelEncryptedPayload(payload: string): LaravelEncryptedPayload;
|
|
2574
|
+
declare function decryptLaravelPayload<T>(payload: string, secretKey?: string): T;
|
|
2575
|
+
|
|
2576
|
+
/**
|
|
2577
|
+
* Decrypt a Laravel-encrypted API response.
|
|
2578
|
+
*
|
|
2579
|
+
* Accepts either:
|
|
2580
|
+
* - a raw encrypted string (the full response body)
|
|
2581
|
+
* - an object with an `data` key holding the encrypted string
|
|
2582
|
+
*
|
|
2583
|
+
* @param response Raw encrypted string or `{ data: string }` object
|
|
2584
|
+
* @param key Optional Laravel APP_KEY (base64:… or raw). Falls back to VITE_LARAVEL_KEY.
|
|
2585
|
+
*/
|
|
2586
|
+
declare function decryptResponse<T = unknown>(response: string | {
|
|
2587
|
+
data: string;
|
|
2588
|
+
}, key?: string): T;
|
|
2589
|
+
|
|
2590
|
+
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, type ActionField, type ActionFieldType, type AuthField, type AuthVariant, type AuthView, Authentication, type AuthenticationProps, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BulletinAction, BulletinBoard, type BulletinBoardProps, type BulletinColumns, type BulletinEditField, type BulletinItem, type BulletinLayout, BulletinPreview, type BulletinPreviewProps, type BulletinPriority, type BulletinServerPaginationProp, type BulletinVariant, Button, type ButtonProps, COLOR_PALETTE, Calendar, CalendarDateRangePicker, type CalendarDateRangePickerProps, type CalendarDateRangeVariant, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, type ClusterVariant, CodegoApiProvider, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, type DefaultActionsConfig, DocsLayout, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, EVENT_COLORS, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FlyToOptions, type FormField, type FormFieldType, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, type LaravelEncryptedPayload, LeafletMap, type LeafletMapProps, LeftSidebar, type LeftSidebarProps, type MapLibreClusterVariant, MapLibreMap, type MapLibreMarker, type MapLibreProps, type MapLibreRoute, type MapLibreRouteType, type MapLibreStyle, type MapMarker, type MapRoute, type MarkerColor, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSettings, type PanelSettingsProps, type PanelSettingsTab, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, type RequestConfig, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, type RouteType, ScrollArea, type ScrollAreaProps, Section, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor, type ServerDataGridProp, type ServerPagination, type ServerPaginationLink, type ServerPaginationProp, type ServerTableResponse, Skeleton, Slider, type SliderProps, type SortDir, StatCard, type StatCardProps, type StatTrend, StatsWidget, type StatsWidgetProps, type Step, type StepStatus, Stepper, type StepperProps, type TabItem, type TabSize, type TabVariant, Table, TableOfContents, type TableProps, TableWidget, type TableWidgetProps, Tabs, type TabsProps, TagInput, type TagInputProps, Textarea, type TextareaProps, type ThemeColors, ThemeProvider, type ThemeSettings, Timeline, type TimelineItem, type TimelineProps, type TimelineVariant, type ToastItem, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, type TocItem, TocProvider, ToggleSwitch, type ToggleSwitchProps, Tooltip, type TooltipProps, Topbar, type TopbarProps, type TreeNode, TreeView, type TreeViewProps, type TrendDir, type UseServerBulletinOptions, type UseServerBulletinReturn, type UseServerDataGridOptions, type UseServerDataGridReturn, type UseServerTableOptions, type UseServerTableReturn, Widget, type WidgetProps, Wizard, type WizardActionProps, type WizardLayout, type WizardProps, type WizardSize, type WizardStep, type WizardVariant, api, createStore, decryptLaravelPayload, decryptResponse, getLaravelSecretKey, parseLaravelEncryptedPayload, parseLaravelKey, useServerBulletin, useServerDataGrid, useServerTable, useTheme, useToast, useToc };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import { AxiosRequestConfig } from 'axios';
|
|
5
5
|
import { UseBoundStore, StoreApi } from 'zustand';
|
|
6
|
+
import CryptoJS from 'crypto-js';
|
|
6
7
|
|
|
7
8
|
type AuthView = "login" | "register" | "resetPassword";
|
|
8
9
|
interface AuthField {
|
|
@@ -2561,4 +2562,29 @@ type StoreWrapper<T extends object> = {
|
|
|
2561
2562
|
*/
|
|
2562
2563
|
declare function createStore<T extends object>(initialValue: T, sessionName: string, expireInterval?: number): StoreWrapper<T>;
|
|
2563
2564
|
|
|
2564
|
-
|
|
2565
|
+
type LaravelEncryptedPayload = {
|
|
2566
|
+
iv: string;
|
|
2567
|
+
value: string;
|
|
2568
|
+
mac: string;
|
|
2569
|
+
tag?: string;
|
|
2570
|
+
};
|
|
2571
|
+
declare function getLaravelSecretKey(): string;
|
|
2572
|
+
declare function parseLaravelKey(secretKey: string): CryptoJS.lib.WordArray;
|
|
2573
|
+
declare function parseLaravelEncryptedPayload(payload: string): LaravelEncryptedPayload;
|
|
2574
|
+
declare function decryptLaravelPayload<T>(payload: string, secretKey?: string): T;
|
|
2575
|
+
|
|
2576
|
+
/**
|
|
2577
|
+
* Decrypt a Laravel-encrypted API response.
|
|
2578
|
+
*
|
|
2579
|
+
* Accepts either:
|
|
2580
|
+
* - a raw encrypted string (the full response body)
|
|
2581
|
+
* - an object with an `data` key holding the encrypted string
|
|
2582
|
+
*
|
|
2583
|
+
* @param response Raw encrypted string or `{ data: string }` object
|
|
2584
|
+
* @param key Optional Laravel APP_KEY (base64:… or raw). Falls back to VITE_LARAVEL_KEY.
|
|
2585
|
+
*/
|
|
2586
|
+
declare function decryptResponse<T = unknown>(response: string | {
|
|
2587
|
+
data: string;
|
|
2588
|
+
}, key?: string): T;
|
|
2589
|
+
|
|
2590
|
+
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, type ActionField, type ActionFieldType, type AuthField, type AuthVariant, type AuthView, Authentication, type AuthenticationProps, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BulletinAction, BulletinBoard, type BulletinBoardProps, type BulletinColumns, type BulletinEditField, type BulletinItem, type BulletinLayout, BulletinPreview, type BulletinPreviewProps, type BulletinPriority, type BulletinServerPaginationProp, type BulletinVariant, Button, type ButtonProps, COLOR_PALETTE, Calendar, CalendarDateRangePicker, type CalendarDateRangePickerProps, type CalendarDateRangeVariant, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, type ClusterVariant, CodegoApiProvider, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, type DefaultActionsConfig, DocsLayout, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, EVENT_COLORS, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FlyToOptions, type FormField, type FormFieldType, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, type LaravelEncryptedPayload, LeafletMap, type LeafletMapProps, LeftSidebar, type LeftSidebarProps, type MapLibreClusterVariant, MapLibreMap, type MapLibreMarker, type MapLibreProps, type MapLibreRoute, type MapLibreRouteType, type MapLibreStyle, type MapMarker, type MapRoute, type MarkerColor, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSettings, type PanelSettingsProps, type PanelSettingsTab, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, type RequestConfig, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, type RouteType, ScrollArea, type ScrollAreaProps, Section, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor, type ServerDataGridProp, type ServerPagination, type ServerPaginationLink, type ServerPaginationProp, type ServerTableResponse, Skeleton, Slider, type SliderProps, type SortDir, StatCard, type StatCardProps, type StatTrend, StatsWidget, type StatsWidgetProps, type Step, type StepStatus, Stepper, type StepperProps, type TabItem, type TabSize, type TabVariant, Table, TableOfContents, type TableProps, TableWidget, type TableWidgetProps, Tabs, type TabsProps, TagInput, type TagInputProps, Textarea, type TextareaProps, type ThemeColors, ThemeProvider, type ThemeSettings, Timeline, type TimelineItem, type TimelineProps, type TimelineVariant, type ToastItem, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, type TocItem, TocProvider, ToggleSwitch, type ToggleSwitchProps, Tooltip, type TooltipProps, Topbar, type TopbarProps, type TreeNode, TreeView, type TreeViewProps, type TrendDir, type UseServerBulletinOptions, type UseServerBulletinReturn, type UseServerDataGridOptions, type UseServerDataGridReturn, type UseServerTableOptions, type UseServerTableReturn, Widget, type WidgetProps, Wizard, type WizardActionProps, type WizardLayout, type WizardProps, type WizardSize, type WizardStep, type WizardVariant, api, createStore, decryptLaravelPayload, decryptResponse, getLaravelSecretKey, parseLaravelEncryptedPayload, parseLaravelKey, useServerBulletin, useServerDataGrid, useServerTable, useTheme, useToast, useToc };
|
package/dist/index.global.js
CHANGED
|
@@ -53730,6 +53730,11 @@ ${n2.shaderPreludeCode.vertexSource}`, define: n2.shaderDefine }, defaultProject
|
|
|
53730
53730
|
Wizard: () => Wizard,
|
|
53731
53731
|
api: () => api,
|
|
53732
53732
|
createStore: () => createStore2,
|
|
53733
|
+
decryptLaravelPayload: () => decryptLaravelPayload,
|
|
53734
|
+
decryptResponse: () => decryptResponse,
|
|
53735
|
+
getLaravelSecretKey: () => getLaravelSecretKey,
|
|
53736
|
+
parseLaravelEncryptedPayload: () => parseLaravelEncryptedPayload,
|
|
53737
|
+
parseLaravelKey: () => parseLaravelKey,
|
|
53733
53738
|
useServerBulletin: () => useServerBulletin,
|
|
53734
53739
|
useServerDataGrid: () => useServerDataGrid,
|
|
53735
53740
|
useServerTable: () => useServerTable,
|
|
@@ -77628,6 +77633,12 @@ ${n2.shaderPreludeCode.vertexSource}`, define: n2.shaderDefine }, defaultProject
|
|
|
77628
77633
|
};
|
|
77629
77634
|
return { store, getStore };
|
|
77630
77635
|
}
|
|
77636
|
+
|
|
77637
|
+
// src/core/decryption/decode.ts
|
|
77638
|
+
function decryptResponse(response, key) {
|
|
77639
|
+
const payload = typeof response === "string" ? response : response.data;
|
|
77640
|
+
return decryptLaravelPayload(payload, key);
|
|
77641
|
+
}
|
|
77631
77642
|
return __toCommonJS(index_exports);
|
|
77632
77643
|
})();
|
|
77633
77644
|
/*! Bundled license information:
|
package/dist/index.js
CHANGED
|
@@ -13700,6 +13700,12 @@ function createStore(initialValue, sessionName, expireInterval) {
|
|
|
13700
13700
|
};
|
|
13701
13701
|
return { store, getStore };
|
|
13702
13702
|
}
|
|
13703
|
+
|
|
13704
|
+
// src/core/decryption/decode.ts
|
|
13705
|
+
function decryptResponse(response, key) {
|
|
13706
|
+
const payload = typeof response === "string" ? response : response.data;
|
|
13707
|
+
return decryptLaravelPayload(payload, key);
|
|
13708
|
+
}
|
|
13703
13709
|
export {
|
|
13704
13710
|
Accordion,
|
|
13705
13711
|
Authentication,
|
|
@@ -13799,6 +13805,11 @@ export {
|
|
|
13799
13805
|
Wizard,
|
|
13800
13806
|
api,
|
|
13801
13807
|
createStore,
|
|
13808
|
+
decryptLaravelPayload,
|
|
13809
|
+
decryptResponse,
|
|
13810
|
+
getLaravelSecretKey,
|
|
13811
|
+
parseLaravelEncryptedPayload,
|
|
13812
|
+
parseLaravelKey,
|
|
13802
13813
|
useServerBulletin,
|
|
13803
13814
|
useServerDataGrid,
|
|
13804
13815
|
useServerTable,
|