jamespot-react-components 1.3.38 → 1.3.39
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/jamespot-react-components.cjs +4761 -4658
- package/dist/jamespot-react-components.js +41974 -41549
- package/dist/src/components/JRCDragNDrop/JRCDndOneLevelWithStack.d.ts +3 -0
- package/dist/src/components/JRCDragNDrop/JRCDndOneLevelWithStack.stories.d.ts +19 -0
- package/dist/src/components/JRCDragNDrop/JRCDndTwoLevelWithStack.d.ts +2 -1
- package/dist/src/components/JRCDragNDrop/JRCDndTwoLevelWithStack.stories.d.ts +11 -6
- package/dist/src/components/JRCDragNDrop/OneLevelMainDraggable.d.ts +22 -0
- package/dist/src/components/JRCDragNDrop/OneLevelMainDropzone.d.ts +13 -0
- package/dist/src/components/JRCDragNDrop/OneLevelStackDraggable.d.ts +16 -0
- package/dist/src/components/JRCDragNDrop/OneLevelStyles.d.ts +58 -0
- package/dist/src/components/JRCDragNDrop/index.d.ts +6 -0
- package/dist/src/components/JRCDragNDrop/types.d.ts +140 -5
- package/dist/src/components/api/jamespot/mock_jamespot.d.ts +2 -2
- package/dist/src/components/index.d.ts +69 -69
- package/dist/src/types.d.ts +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { JSX } from 'react';
|
|
2
|
+
import { BaseDndItem, JRCDndOneLevelWithStackProps } from './types';
|
|
3
|
+
export declare const JRCDndOneLevelWithStack: <TMain extends BaseDndItem = BaseDndItem, TStack extends BaseDndItem = TMain>(props: JRCDndOneLevelWithStackProps<TMain, TStack>) => JSX.Element;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
|
+
import { BaseDndItem, JRCDndOneLevelWithStackProps } from './types';
|
|
3
|
+
interface StoryDndItem extends BaseDndItem {
|
|
4
|
+
label?: string;
|
|
5
|
+
content?: string;
|
|
6
|
+
type?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const meta: Meta<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
9
|
+
export default meta;
|
|
10
|
+
export declare const BasicUsage: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
11
|
+
export declare const EmptyMainZone: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
12
|
+
export declare const ConsumableStack: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
13
|
+
export declare const WithRemovableItems: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
14
|
+
export declare const WithDisabledStackItems: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
15
|
+
export declare const NoReordering: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
16
|
+
export declare const DragAndDropInteractions: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
17
|
+
export declare const EmptyMainZoneDropTest: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
18
|
+
export declare const ConsumableStackTest: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
19
|
+
export declare const ReorderingDisabledTest: StoryObj<JRCDndOneLevelWithStackProps<StoryDndItem, StoryDndItem>>;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import { JSX } from 'react';
|
|
1
2
|
import { BaseDndItem, JRCDndTwoLevelWithStackProps } from './types';
|
|
2
|
-
export declare const JRCDndTwoLevelWithStack:
|
|
3
|
+
export declare const JRCDndTwoLevelWithStack: <T extends BaseDndItem = BaseDndItem>(props: JRCDndTwoLevelWithStackProps<T>) => JSX.Element;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
2
|
import { BaseDndItem, JRCDndTwoLevelWithStackProps } from './types';
|
|
3
|
-
|
|
3
|
+
interface StoryDndItem extends BaseDndItem {
|
|
4
|
+
label?: string;
|
|
5
|
+
content?: string;
|
|
6
|
+
type?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const meta: Meta<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
4
9
|
export default meta;
|
|
5
|
-
export declare const LoadingState: StoryObj<JRCDndTwoLevelWithStackProps<
|
|
6
|
-
export declare const HasErrors: StoryObj<JRCDndTwoLevelWithStackProps<
|
|
7
|
-
export declare const DragAndDropInteractions: StoryObj<JRCDndTwoLevelWithStackProps<
|
|
8
|
-
export declare const IsAboveMiddleCovering: StoryObj<JRCDndTwoLevelWithStackProps<
|
|
9
|
-
export declare const AddSection: StoryObj<JRCDndTwoLevelWithStackProps<
|
|
10
|
+
export declare const LoadingState: StoryObj<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
11
|
+
export declare const HasErrors: StoryObj<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
12
|
+
export declare const DragAndDropInteractions: StoryObj<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
13
|
+
export declare const IsAboveMiddleCovering: StoryObj<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
14
|
+
export declare const AddSection: StoryObj<JRCDndTwoLevelWithStackProps<StoryDndItem>>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BaseDndItem } from './types';
|
|
2
|
+
interface OneLevelMainDraggableProps<T extends BaseDndItem = BaseDndItem> {
|
|
3
|
+
item: T;
|
|
4
|
+
index: number;
|
|
5
|
+
canReorder: boolean;
|
|
6
|
+
onMove: (dragIndex: number, hoverIndex: number) => void;
|
|
7
|
+
onDropFromStack: (stackItem: BaseDndItem, targetIndex: number, sourceIndex: number) => void;
|
|
8
|
+
onHover: (position: 'before-first' | 'between' | 'after-last' | 'empty', index?: number, dragType?: 'stack' | 'main') => void;
|
|
9
|
+
onHoverEnd: () => void;
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Draggable + Droppable component for main items in JRCDndOneLevelWithStack
|
|
14
|
+
* Supports reordering within main zone with visual drop indicators
|
|
15
|
+
*
|
|
16
|
+
* Architecture simplifiée:
|
|
17
|
+
* - Le Container gère à la fois le drag et le drop
|
|
18
|
+
* - Les éléments interactifs (inputs, buttons, etc.) ne déclenchent PAS le drag
|
|
19
|
+
* - Cela permet la sélection de texte et les clics dans les formulaires
|
|
20
|
+
*/
|
|
21
|
+
export declare const OneLevelMainDraggable: <T extends BaseDndItem = BaseDndItem>({ item, index, canReorder, onMove, onDropFromStack, onHover, onHoverEnd, children, }: OneLevelMainDraggableProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseDndItem } from './types';
|
|
2
|
+
type OneLevelMainDropzoneProps = {
|
|
3
|
+
onDropFromStack: (item: BaseDndItem, targetIndex: number, sourceIndex: number) => void;
|
|
4
|
+
onHoverEmpty?: () => void;
|
|
5
|
+
onHoverEnd?: () => void;
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Drop zone component for main area in JRCDndOneLevelWithStack
|
|
10
|
+
* Accepts stack items being dropped into the main zone
|
|
11
|
+
*/
|
|
12
|
+
export declare const OneLevelMainDropzone: ({ onDropFromStack, onHoverEmpty, onHoverEnd, children, }: OneLevelMainDropzoneProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseDndItem } from './types';
|
|
2
|
+
interface OneLevelStackDraggableProps<T extends BaseDndItem = BaseDndItem> {
|
|
3
|
+
item: T;
|
|
4
|
+
index: number;
|
|
5
|
+
isDisabled: boolean;
|
|
6
|
+
isStackFixed: boolean;
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
onKeyDown?: (e: React.KeyboardEvent) => void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Simple draggable component for stack items in JRCDndOneLevelWithStack
|
|
12
|
+
* Stack items are only draggable (source), not droppable
|
|
13
|
+
* No reordering within stack - it's a fixed ordered list
|
|
14
|
+
*/
|
|
15
|
+
export declare const OneLevelStackDraggable: <T extends BaseDndItem = BaseDndItem>({ item, index, isDisabled, isStackFixed: _isStackFixed, children, onKeyDown, }: OneLevelStackDraggableProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Styled components for JRCDndOneLevelWithStack
|
|
3
|
+
* Layout: Main zone (LEFT) + Stack (RIGHT)
|
|
4
|
+
*/
|
|
5
|
+
export declare const OneLevelContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
6
|
+
$maxHeight?: string;
|
|
7
|
+
}>> & string;
|
|
8
|
+
/**
|
|
9
|
+
* Main zone (LEFT) - contains draggable/droppable items
|
|
10
|
+
*/
|
|
11
|
+
export declare const OneLevelMainContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
+
export declare const OneLevelMainTitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('../Common/FastCss').FastCssProps & {
|
|
13
|
+
id?: string;
|
|
14
|
+
className?: string;
|
|
15
|
+
weight?: keyof import('../../styles/theme').FontWeight;
|
|
16
|
+
size?: import('../JRCTypography/JRCTypography.d').TSizes;
|
|
17
|
+
color?: import('../..').ColorsOrShades;
|
|
18
|
+
children: string | import('react').ReactNode;
|
|
19
|
+
variant?: import('../JRCTypography/JRCTypography.d').TVariants;
|
|
20
|
+
align?: "center" | "left" | "right";
|
|
21
|
+
hoverColor?: import('../..').ColorsOrShades;
|
|
22
|
+
ellipsis?: boolean;
|
|
23
|
+
maxWidth?: string | number;
|
|
24
|
+
}, never>> & string & Omit<({ variant, ellipsis, size, weight, color, align, hoverColor, maxWidth, ...props }: import('../..').JRCTypographyProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
25
|
+
export declare const OneLevelMainContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
26
|
+
/**
|
|
27
|
+
* Stack (RIGHT) - source items
|
|
28
|
+
*/
|
|
29
|
+
export declare const OneLevelStackContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
30
|
+
export declare const OneLevelStackTitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('../Common/FastCss').FastCssProps & {
|
|
31
|
+
id?: string;
|
|
32
|
+
className?: string;
|
|
33
|
+
weight?: keyof import('../../styles/theme').FontWeight;
|
|
34
|
+
size?: import('../JRCTypography/JRCTypography.d').TSizes;
|
|
35
|
+
color?: import('../..').ColorsOrShades;
|
|
36
|
+
children: string | import('react').ReactNode;
|
|
37
|
+
variant?: import('../JRCTypography/JRCTypography.d').TVariants;
|
|
38
|
+
align?: "center" | "left" | "right";
|
|
39
|
+
hoverColor?: import('../..').ColorsOrShades;
|
|
40
|
+
ellipsis?: boolean;
|
|
41
|
+
maxWidth?: string | number;
|
|
42
|
+
}, never>> & string & Omit<({ variant, ellipsis, size, weight, color, align, hoverColor, maxWidth, ...props }: import('../..').JRCTypographyProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
43
|
+
export declare const OneLevelStackContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
44
|
+
/**
|
|
45
|
+
* Empty state - Shows drop zone when no items present
|
|
46
|
+
* Changes appearance when dragging over
|
|
47
|
+
*/
|
|
48
|
+
export declare const OneLevelEmptyState: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
49
|
+
$isDraggingOver?: boolean;
|
|
50
|
+
}>> & string;
|
|
51
|
+
/**
|
|
52
|
+
* Drop spacer - Permanent spacer that expands when active
|
|
53
|
+
* Creates visual spacing between items during drag operations
|
|
54
|
+
* 40px red zone + 8px bottom margin = 48px total
|
|
55
|
+
*/
|
|
56
|
+
export declare const OneLevelDropSpacer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
57
|
+
$isActive: boolean;
|
|
58
|
+
}>> & string;
|
|
@@ -2,3 +2,9 @@ export { DndProvider } from './DndProvider';
|
|
|
2
2
|
export { Draggable } from './Draggable';
|
|
3
3
|
export { Droppable } from './Droppable';
|
|
4
4
|
export { JRCDndTwoLevelWithStack } from './JRCDndTwoLevelWithStack';
|
|
5
|
+
export { JRCDndOneLevelWithStack } from './JRCDndOneLevelWithStack';
|
|
6
|
+
export { OneLevelMainDraggable } from './OneLevelMainDraggable';
|
|
7
|
+
export { OneLevelStackDraggable } from './OneLevelStackDraggable';
|
|
8
|
+
export { OneLevelMainDropzone } from './OneLevelMainDropzone';
|
|
9
|
+
export type { OneLevelMainItemComponentProps, OneLevelStackItemComponentProps, OneLevelEmptyStateComponentProps, JRCDndOneLevelWithStackProps, } from './types';
|
|
10
|
+
export { OneLevelItemTypes } from './types';
|
|
@@ -2,16 +2,22 @@ export declare enum ItemTypes {
|
|
|
2
2
|
ITEM = "item",
|
|
3
3
|
SECTION = "section"
|
|
4
4
|
}
|
|
5
|
+
export declare enum OneLevelItemTypes {
|
|
6
|
+
MAIN_ITEM = "oneLevel_mainItem",
|
|
7
|
+
STACK_ITEM = "oneLevel_stackItem"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Interface minimale pour les items DnD.
|
|
11
|
+
* Seul `id` est requis par le composant pour les clés React.
|
|
12
|
+
* L'index signature permet d'accepter n'importe quelle structure d'item.
|
|
13
|
+
*/
|
|
5
14
|
export interface BaseDndItem {
|
|
6
|
-
id: string
|
|
7
|
-
content?: string;
|
|
8
|
-
label?: string;
|
|
9
|
-
type?: string;
|
|
15
|
+
id: string;
|
|
10
16
|
[key: string]: unknown;
|
|
11
17
|
}
|
|
12
18
|
export interface DndDragItem extends BaseDndItem {
|
|
13
19
|
index: number;
|
|
14
|
-
sectionId?: string
|
|
20
|
+
sectionId?: string;
|
|
15
21
|
lastTargetIndex?: number;
|
|
16
22
|
}
|
|
17
23
|
export interface DndSection<T extends BaseDndItem = BaseDndItem> {
|
|
@@ -63,3 +69,132 @@ export interface JRCDndTwoLevelWithStackProps<T extends BaseDndItem = BaseDndIte
|
|
|
63
69
|
sectionError?: string;
|
|
64
70
|
$maxHeight?: string;
|
|
65
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* Props for MainItemComponent in JRCDndOneLevelWithStack
|
|
74
|
+
*/
|
|
75
|
+
export interface OneLevelMainItemComponentProps<T extends BaseDndItem = BaseDndItem> {
|
|
76
|
+
item: T;
|
|
77
|
+
index: number;
|
|
78
|
+
onRemove?: () => void;
|
|
79
|
+
canRemove: boolean;
|
|
80
|
+
isDragging: boolean;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Props for StackItemComponent in JRCDndOneLevelWithStack
|
|
84
|
+
*/
|
|
85
|
+
export interface OneLevelStackItemComponentProps<T extends BaseDndItem = BaseDndItem> {
|
|
86
|
+
item: T;
|
|
87
|
+
index: number;
|
|
88
|
+
isDisabled: boolean;
|
|
89
|
+
isDragging: boolean;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Props for EmptyStateComponent in JRCDndOneLevelWithStack
|
|
93
|
+
*/
|
|
94
|
+
export interface OneLevelEmptyStateComponentProps {
|
|
95
|
+
isDraggingOver: boolean;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Main props interface for JRCDndOneLevelWithStack component
|
|
99
|
+
*/
|
|
100
|
+
export interface JRCDndOneLevelWithStackProps<TMain extends BaseDndItem = BaseDndItem, TStack extends BaseDndItem = TMain> {
|
|
101
|
+
/**
|
|
102
|
+
* Items in main zone (left) - can be reordered and receive items from stack
|
|
103
|
+
*/
|
|
104
|
+
mainItems: TMain[];
|
|
105
|
+
/**
|
|
106
|
+
* Items in stack (right) - source of items to add to main zone
|
|
107
|
+
*/
|
|
108
|
+
stackItems: TStack[];
|
|
109
|
+
/**
|
|
110
|
+
* Component to render an item in the main zone
|
|
111
|
+
*/
|
|
112
|
+
MainItemComponent: React.FC<OneLevelMainItemComponentProps<TMain>>;
|
|
113
|
+
/**
|
|
114
|
+
* Component to render an item in the stack
|
|
115
|
+
*/
|
|
116
|
+
StackItemComponent: React.FC<OneLevelStackItemComponentProps<TStack>>;
|
|
117
|
+
/**
|
|
118
|
+
* Optional component displayed when main zone is empty
|
|
119
|
+
*/
|
|
120
|
+
EmptyStateComponent?: React.FC<OneLevelEmptyStateComponentProps>;
|
|
121
|
+
/**
|
|
122
|
+
* Called when a stack item is dropped into main zone
|
|
123
|
+
* @param stackItem - The item from stack
|
|
124
|
+
* @param targetIndex - Destination index in mainItems
|
|
125
|
+
* @param sourceIndex - Source index in stackItems
|
|
126
|
+
*/
|
|
127
|
+
onItemAddFromStack: (stackItem: TStack, targetIndex: number, sourceIndex: number) => void;
|
|
128
|
+
/**
|
|
129
|
+
* Called to reorder items in main zone
|
|
130
|
+
* @param dragIndex - Source index of dragged item
|
|
131
|
+
* @param hoverIndex - Target index for the item
|
|
132
|
+
*/
|
|
133
|
+
onItemMove: (dragIndex: number, hoverIndex: number) => void;
|
|
134
|
+
/**
|
|
135
|
+
* Optional callback to remove item from main zone
|
|
136
|
+
* @param item - The item to remove
|
|
137
|
+
* @param index - Index of the item in mainItems
|
|
138
|
+
*/
|
|
139
|
+
onItemRemove?: (item: TMain, index: number) => void;
|
|
140
|
+
/**
|
|
141
|
+
* Stack mode:
|
|
142
|
+
* - true (default): "Fixed/Clone" - items remain in stack after drag
|
|
143
|
+
* - false: "Consumable/Move" - items disappear from stack after drag
|
|
144
|
+
*/
|
|
145
|
+
isStackFixed?: boolean;
|
|
146
|
+
/**
|
|
147
|
+
* Allow reordering in main zone (default: true)
|
|
148
|
+
*/
|
|
149
|
+
canReorder?: boolean;
|
|
150
|
+
/**
|
|
151
|
+
* Show remove button on main items (default: false)
|
|
152
|
+
*/
|
|
153
|
+
canRemoveItems?: boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Function to determine if a stack item is disabled
|
|
156
|
+
* @param item - Stack item to check
|
|
157
|
+
* @param stackIndex - Index of item in stackItems
|
|
158
|
+
* @returns true if item should be disabled (not draggable)
|
|
159
|
+
*/
|
|
160
|
+
isItemDisabled?: (item: TStack, stackIndex: number) => boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Keyboard event handler for stack items.
|
|
163
|
+
* Called when a keyboard event occurs on a focused stack item.
|
|
164
|
+
* Useful for implementing keyboard shortcuts (e.g., ArrowLeft to add item to main zone).
|
|
165
|
+
* @param item - The stack item that received the keyboard event
|
|
166
|
+
* @param index - Index of the item in stackItems
|
|
167
|
+
* @param isDisabled - Whether the item is currently disabled
|
|
168
|
+
* @param event - The keyboard event
|
|
169
|
+
*/
|
|
170
|
+
onStackItemKeyDown?: (item: TStack, index: number, isDisabled: boolean, event: React.KeyboardEvent) => void;
|
|
171
|
+
/**
|
|
172
|
+
* Title for main zone (optional)
|
|
173
|
+
*/
|
|
174
|
+
mainTitle?: string;
|
|
175
|
+
/**
|
|
176
|
+
* Title for stack (optional)
|
|
177
|
+
*/
|
|
178
|
+
stackTitle?: string;
|
|
179
|
+
/**
|
|
180
|
+
* Text displayed when main zone is empty (optional)
|
|
181
|
+
*/
|
|
182
|
+
emptyStateText?: string;
|
|
183
|
+
/**
|
|
184
|
+
* Maximum height for container (optional)
|
|
185
|
+
* Example: "600px", "80vh"
|
|
186
|
+
*/
|
|
187
|
+
$maxHeight?: string;
|
|
188
|
+
/**
|
|
189
|
+
* Optional content to render before the main draggable zone
|
|
190
|
+
*/
|
|
191
|
+
beforeMain?: React.ReactNode;
|
|
192
|
+
/**
|
|
193
|
+
* Optional content to render after the main draggable zone
|
|
194
|
+
*/
|
|
195
|
+
afterMain?: React.ReactNode;
|
|
196
|
+
/**
|
|
197
|
+
* Optional content to render after the stack zone
|
|
198
|
+
*/
|
|
199
|
+
afterStack?: React.ReactNode;
|
|
200
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const mock_api_network_default: Pick<import('jamespot-user-api').Network, "token" | "postFile" | "getUrl">;
|
|
2
2
|
export declare const mock_api_network_excel: Pick<import('jamespot-user-api').Network, "token" | "postFile" | "getUrl">;
|
|
3
|
-
export declare const mock_api_datasource_excel: Omit<import('jamespot-user-api').JDatasourceApi, "
|
|
4
|
-
export declare const mock_api_datasource_studio: Omit<import('jamespot-user-api').JDatasourceApi, "
|
|
3
|
+
export declare const mock_api_datasource_excel: Omit<import('jamespot-user-api').JDatasourceApi, "jApi" | "network">;
|
|
4
|
+
export declare const mock_api_datasource_studio: Omit<import('jamespot-user-api').JDatasourceApi, "jApi" | "network">;
|
|
5
5
|
export declare const mock_api_application: Pick<import('jamespot-user-api').JApplicationApi, "studioGet" | "studioList">;
|
|
@@ -1,46 +1,79 @@
|
|
|
1
|
-
export { ArticleCard } from './Common/Article/ArticleCard';
|
|
2
1
|
export { BETA_JRCDoubleClick } from './Beta/BETA_JRCDoubleClick/BETA_JRCDoubleClick';
|
|
3
2
|
export { BETA_JRCDragAndDrop } from './Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
3
|
+
export { ArticleCard } from './Common/Article/ArticleCard';
|
|
4
|
+
export { JRCConditionalWrapper } from './Common/JRCConditionalWrapper';
|
|
5
|
+
export { JRCDraggingPlaceholder } from './Common/JRCDraggingPlaceholder';
|
|
6
|
+
export { SkipToContent } from './Common/SkipToContent';
|
|
4
7
|
export { Deprecated_ClickAwayListener } from './Deprecated/Deprecated_ClickAwayListener/Deprecated_ClickAwayListener';
|
|
5
8
|
export { Deprecated_JRCEllipsis } from './Deprecated/Deprecated_JRCEllipsis/Deprecated_JRCEllipsis';
|
|
6
|
-
export {
|
|
9
|
+
export { JRCDriveDropbox } from './Drives/JRCDriveDropbox';
|
|
10
|
+
export { JRCDriveMSGraph } from './Drives/JRCDriveMSGraph';
|
|
11
|
+
export { JRCCheckbox } from './Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
12
|
+
export { JRCInputCheckbox, JRCInputCheckboxRaw } from './Form/Input/JRCInputCheckbox/JRCInputCheckbox';
|
|
13
|
+
export { JRCInputReorderCheckbox } from './Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
14
|
+
export { JRCInputToggle, JRCInputToggleRaw } from './Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
15
|
+
export { JRCInputColor } from './Form/Input/JRCInputColor/JRCInputColor';
|
|
16
|
+
export { JRCInputColorRaw } from './Form/Input/JRCInputColor/JRCInputColorRaw';
|
|
17
|
+
export { JRCInputDate } from './Form/Input/JRCInputDate/JRCInputDate';
|
|
18
|
+
export { JRCInputDateTime } from './Form/Input/JRCInputDateTime/JRCInputDateTime';
|
|
19
|
+
export { JRCInputDateTimeRaw } from './Form/Input/JRCInputDateTime/JRCInputDateTimeRaw';
|
|
20
|
+
export { JRCInputEmail } from './Form/Input/JRCInputEmail/JRCInputEmail';
|
|
21
|
+
export { JRCInputFile } from './Form/Input/JRCInputFile/JRCInputFile';
|
|
22
|
+
export { JRCInputFileAdvancedRaw } from './Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
23
|
+
export { JRCInputImage } from './Form/Input/JRCInputImage/JRCInputImage';
|
|
24
|
+
export { JRCInputSearchRaw } from './Form/Input/JRCInputSearchRaw/JRCInputSearchRaw';
|
|
25
|
+
export { JRCInputPassword } from './Form/Input/JRCInputText/JRCInputPassword';
|
|
26
|
+
export { JRCInputNumber, JRCInputText } from './Form/Input/JRCInputText/JRCInputText';
|
|
27
|
+
export { JRCInputTextIconButton } from './Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
28
|
+
export { JRCInputTextarea } from './Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
29
|
+
export { JRCInputTextareaRaw } from './Form/Input/JRCInputTextarea/JRCInputTextareaRaw';
|
|
30
|
+
export { JRCInputTextRaw } from './Form/Input/JRCInputTextRaw/JRCInputTextRaw';
|
|
31
|
+
export { JRCInputTime } from './Form/Input/JRCInputTime/JRCInputTime';
|
|
32
|
+
export { JRCInputTinyMCE } from './Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
33
|
+
export { JRCInputTinyMCERaw } from './Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
34
|
+
export { JRCTinyMCEFileUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEFileUploadModal';
|
|
35
|
+
export { JRCTinyMCEImageUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
36
|
+
export { JRCTinyMCEVideoUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
37
|
+
export { JRCInputUrl } from './Form/Input/JRCInputUrl/JRCInputUrl';
|
|
38
|
+
export { JRCInputCommunity } from './Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
39
|
+
export { JRCInputAudience } from './Form/Input/JRCSelect/JRCInputAudience';
|
|
40
|
+
export { JRCInputAutocomplete } from './Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
41
|
+
export { JRCInputSelect } from './Form/Input/JRCSelect/JRCInputSelect';
|
|
42
|
+
export { LabelDescriptionOption } from './Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
43
|
+
export { JRCInputSelectExtended } from './Form/Input/JRCSelect/JRCInputSelectExtended';
|
|
44
|
+
export { JRCInputSelectHierarchicalTree } from './Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
45
|
+
export { JRCInputSelectList } from './Form/Input/JRCSelect/JRCInputSelectList';
|
|
46
|
+
export { JRCInputSelectRaw } from './Form/Input/JRCSelect/JRCInputSelectRaw';
|
|
47
|
+
export { StyledInput } from './Form/Input/JRCStyledInput';
|
|
7
48
|
export { JRCAlbum } from './JRCAlbum/JRCAlbum';
|
|
8
49
|
export { JRCAlert } from './JRCAlert/JRCAlert';
|
|
9
|
-
export { JRCAppColumn } from './Templates/JRCAppColumn';
|
|
10
50
|
export { JRCAppContainer } from './JRCAppContainer/JRCAppContainer';
|
|
11
51
|
export { JRCAppHeader } from './JRCAppHeader/JRCAppHeader';
|
|
12
52
|
export { JRCAppLeftColumn } from './JRCAppLeftColumn/JRCAppLeftColumn';
|
|
13
53
|
export { JRCAttachments } from './JRCAttachments/JRCAttachments';
|
|
14
54
|
export { JRCAudience } from './JRCAudience/JRCAudience';
|
|
15
55
|
export { JRCAvatar } from './JRCAvatar/JRCAvatar';
|
|
16
|
-
export { JRCBaseTooltip } from './JRCTooltip/JRCBaseTooltip';
|
|
17
|
-
export { JRCBasicAutoMarginContainer } from './Templates/JRCBasicAutoMarginContainer';
|
|
18
56
|
export { JRCButton } from './JRCButton/JRCButton';
|
|
57
|
+
export { JRCValidationButton } from './JRCButton/JRCValidationButton';
|
|
19
58
|
export { JRCButtonDownload } from './JRCButtonDownload/JRCButtonDownload';
|
|
20
59
|
export { JRCButtonDropdown } from './JRCButtonDropdown/JRCButtonDropdown';
|
|
21
60
|
export { JRCButtonFile } from './JRCButtonFile/JRCButtonFile';
|
|
22
61
|
export { JRCCalendar } from './JRCCalendar/JRCCalendar';
|
|
23
62
|
export { JRCCard } from './JRCCard/JRCCard';
|
|
24
63
|
export { JRCCardImg } from './JRCCard/JRCCardImg';
|
|
25
|
-
export { JRCCheckbox } from './Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
26
64
|
export { JRCCollapse } from './JRCCollapse/JRCCollapse';
|
|
27
|
-
export { JRCColumn } from './Templates/JRCColumn';
|
|
28
65
|
export { JRCColumnCenter } from './JRCColumnCenter/JRCColumnCenter';
|
|
29
66
|
export { JRCColumnLeft } from './JRCColumnLeft/JRCColumnLeft';
|
|
30
67
|
export { JRCColumnRight } from './JRCColumnRight/JRCColumnRight';
|
|
31
68
|
export { JRCCommentsBloc } from './JRCCommentsBloc/JRCCommentsBloc';
|
|
32
|
-
export { JRCConditionalWrapper } from './Common/JRCConditionalWrapper';
|
|
33
|
-
export { JRCContainer } from './Templates/JRCContainer';
|
|
34
69
|
export { JRCCropImage } from './JRCCropImage/JRCCropImage';
|
|
35
70
|
export { JRCDate } from './JRCDate/JRCDate';
|
|
36
71
|
export { JRCDisplayCard } from './JRCDisplayCard/JRCDisplayCard';
|
|
37
|
-
export {
|
|
38
|
-
export { JRCDriveDropbox } from './Drives/JRCDriveDropbox';
|
|
39
|
-
export { JRCDriveMSGraph } from './Drives/JRCDriveMSGraph';
|
|
72
|
+
export { DndProvider, Draggable, Droppable, JRCDndOneLevelWithStack, JRCDndTwoLevelWithStack } from './JRCDragNDrop';
|
|
40
73
|
export { JRCDropDown } from './JRCDropDown/JRCDropDown';
|
|
41
74
|
export { JRCEditor } from './JRCEditor/JRCEditor';
|
|
75
|
+
export { JRCModalSchedule } from './JRCEditor/JRCModalSchedule';
|
|
42
76
|
export { JRCEmptySpace } from './JRCEmptySpace/JRCEmptySpace';
|
|
43
|
-
export { JRCFadeStepper } from './Stepper/JRCFadeStepper';
|
|
44
77
|
export { JRCFile } from './JRCFile/JRCFile';
|
|
45
78
|
export { JRCFileAvatar } from './JRCFile/JRCFileAvatar';
|
|
46
79
|
export { JRCFileOpen } from './JRCFileOpen/JRCFileOpen';
|
|
@@ -49,61 +82,25 @@ export { JRCFlexBox } from './JRCFlex/JRCFlexBox';
|
|
|
49
82
|
export { JRCFolders } from './JRCFolders/JRCFolders';
|
|
50
83
|
export { JRCGifSelector } from './JRCGifSelector/JRCGifSelector';
|
|
51
84
|
export { JRCGrid } from './JRCGrid/JRCGrid';
|
|
52
|
-
export {
|
|
85
|
+
export { JRCStyledHref } from './JRCHref/JRCHref';
|
|
53
86
|
export { JRCHtml } from './JRCHtml/JRCHtml';
|
|
54
87
|
export { JRCIcon } from './JRCIcon/JRCIcon';
|
|
55
88
|
export { JRCIconButton } from './JRCIconButton/JRCIconButton';
|
|
56
|
-
export { JRCImageStepper } from './Stepper/JRCImageStepper';
|
|
57
89
|
export { JRCImg } from './JRCImg/JRCImg';
|
|
58
|
-
export { JRCInputAudience } from './Form/Input/JRCSelect/JRCInputAudience';
|
|
59
|
-
export { JRCInputAutocomplete } from './Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
60
|
-
export { JRCInputCheckbox, JRCInputCheckboxRaw } from './Form/Input/JRCInputCheckbox/JRCInputCheckbox';
|
|
61
|
-
export { JRCInputColor } from './Form/Input/JRCInputColor/JRCInputColor';
|
|
62
|
-
export { JRCInputColorRaw } from './Form/Input/JRCInputColor/JRCInputColorRaw';
|
|
63
|
-
export { JRCInputCommunity } from './Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
64
|
-
export { JRCInputDate } from './Form/Input/JRCInputDate/JRCInputDate';
|
|
65
|
-
export { JRCInputDateTime } from './Form/Input/JRCInputDateTime/JRCInputDateTime';
|
|
66
|
-
export { JRCInputDateTimeRaw } from './Form/Input/JRCInputDateTime/JRCInputDateTimeRaw';
|
|
67
|
-
export { JRCInputEmail } from './Form/Input/JRCInputEmail/JRCInputEmail';
|
|
68
|
-
export { JRCInputFile } from './Form/Input/JRCInputFile/JRCInputFile';
|
|
69
|
-
export { JRCInputFileAdvancedRaw } from './Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
70
|
-
export { JRCInputImage } from './Form/Input/JRCInputImage/JRCInputImage';
|
|
71
|
-
export { JRCInputNumber, JRCInputText } from './Form/Input/JRCInputText/JRCInputText';
|
|
72
|
-
export { JRCInputPassword } from './Form/Input/JRCInputText/JRCInputPassword';
|
|
73
|
-
export { JRCInputReorderCheckbox } from './Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
74
|
-
export { JRCInputSearchRaw } from './Form/Input/JRCInputSearchRaw/JRCInputSearchRaw';
|
|
75
|
-
export { JRCInputSelect } from './Form/Input/JRCSelect/JRCInputSelect';
|
|
76
|
-
export { JRCInputSelectExtended } from './Form/Input/JRCSelect/JRCInputSelectExtended';
|
|
77
|
-
export { JRCInputSelectHierarchicalTree } from './Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
78
|
-
export { JRCInputSelectList } from './Form/Input/JRCSelect/JRCInputSelectList';
|
|
79
|
-
export { JRCInputSelectRaw } from './Form/Input/JRCSelect/JRCInputSelectRaw';
|
|
80
|
-
export { JRCInputTextIconButton } from './Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
81
|
-
export { JRCInputTextRaw } from './Form/Input/JRCInputTextRaw/JRCInputTextRaw';
|
|
82
|
-
export { JRCInputTextarea } from './Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
83
|
-
export { JRCInputTextareaRaw } from './Form/Input/JRCInputTextarea/JRCInputTextareaRaw';
|
|
84
|
-
export { JRCInputTime } from './Form/Input/JRCInputTime/JRCInputTime';
|
|
85
|
-
export { JRCInputTinyMCE } from './Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
86
|
-
export { JRCInputTinyMCERaw } from './Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
87
|
-
export { JRCInputToggle, JRCInputToggleRaw } from './Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
88
|
-
export { JRCInputUrl } from './Form/Input/JRCInputUrl/JRCInputUrl';
|
|
89
90
|
export { JRCList } from './JRCList/JRCList';
|
|
90
91
|
export { JRCLoader } from './JRCLoader/JRCLoader';
|
|
91
92
|
export { JRCLoadMore } from './JRCLoadMore/JRCLoadMore';
|
|
92
|
-
export { JRCMainColumn } from './Templates/JRCMainColumn';
|
|
93
93
|
export { JRCMediaLoader } from './JRCMediaLoader/JRCMediaLoader';
|
|
94
94
|
export { JRCMenu } from './JRCMenu/JRCMenu';
|
|
95
95
|
export { JRCMessage } from './JRCMessage/JRCMessage';
|
|
96
|
-
export { JRCModal } from './JRCModal/templates/JRCModal';
|
|
97
96
|
export { JRCModalContent } from './JRCModal/JRCModalContent';
|
|
98
97
|
export { JRCModalContentForm } from './JRCModal/JRCModalContentForm';
|
|
98
|
+
export { JRCModalLayout } from './JRCModal/JRCModalLayout';
|
|
99
|
+
export { JRCModal } from './JRCModal/templates/JRCModal';
|
|
99
100
|
export { JRCModalForm } from './JRCModal/templates/JRCModalForm';
|
|
100
101
|
export { JRCModalImg } from './JRCModalImg/JRCModalImg';
|
|
101
|
-
export { JRCModalLayout } from './JRCModal/JRCModalLayout';
|
|
102
|
-
export { JRCModalSchedule } from './JRCEditor/JRCModalSchedule';
|
|
103
102
|
export { JRCModalUserList } from './JRCModalUserList/JRCModalUserList';
|
|
104
|
-
export { JRCPageNotLogged } from './Pages/JRCPageNotLogged';
|
|
105
103
|
export { JRCPagination } from './JRCPagination/JRCPagination';
|
|
106
|
-
export { JRCPanel } from './Templates/JRCPanel';
|
|
107
104
|
export { JRCProgressBar } from './JRCProgressBar/JRCProgressBar';
|
|
108
105
|
export { JRCPublishButton } from './JRCPublishButton/JRCPublishButton';
|
|
109
106
|
export { JRCSidePanelModal } from './JRCSidePanelModal/JRCSidePanelModal';
|
|
@@ -111,29 +108,33 @@ export { JRCSidePanelModalForm } from './JRCSidePanelModal/JRCSidePanelModalForm
|
|
|
111
108
|
export { JRCSkeletonLine } from './JRCSkeleton/JRCSkeletonLine';
|
|
112
109
|
export { JRCSkeletonList } from './JRCSkeleton/JRCSkeletonList';
|
|
113
110
|
export { JRCSkeletonSquare } from './JRCSkeleton/JRCSkeletonSquare';
|
|
114
|
-
export { JRCStepper } from './Stepper/JRCStepper';
|
|
115
|
-
export { JRCStepperPage } from './Templates/JRCStepperPage';
|
|
116
|
-
export { JRCStyledHref } from './JRCHref/JRCHref';
|
|
117
111
|
export { JRCTabPanel, JRCTabs } from './JRCTabs/JRCTabs';
|
|
118
112
|
export { JRCTag } from './JRCTag/JRCTag';
|
|
119
|
-
export {
|
|
120
|
-
export { JRCTemplateTwoColumns } from './Templates/JRCTwoColumns.template';
|
|
121
|
-
export { JRCTinyMCEFileUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEFileUploadModal';
|
|
122
|
-
export { JRCTinyMCEImageUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
123
|
-
export { JRCTinyMCEVideoUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
113
|
+
export { JRCBaseTooltip } from './JRCTooltip/JRCBaseTooltip';
|
|
124
114
|
export { JRCTooltip } from './JRCTooltip/JRCTooltip';
|
|
115
|
+
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './JRCTypo/JRCTypo';
|
|
125
116
|
export { JRCTypography } from './JRCTypography/JRCTypography';
|
|
126
117
|
export { JRCUserPopup } from './JRCUserPopup/JRCUserPopup';
|
|
127
|
-
export {
|
|
128
|
-
export {
|
|
118
|
+
export { JRCPageNotLogged } from './Pages/JRCPageNotLogged';
|
|
119
|
+
export { JRCFadeStepper } from './Stepper/JRCFadeStepper';
|
|
120
|
+
export { JRCImageStepper } from './Stepper/JRCImageStepper';
|
|
121
|
+
export { JRCStepper } from './Stepper/JRCStepper';
|
|
122
|
+
export { JRCAppColumn } from './Templates/JRCAppColumn';
|
|
123
|
+
export { JRCTemplateBase } from './Templates/JRCBase.template';
|
|
124
|
+
export { JRCBasicAutoMarginContainer } from './Templates/JRCBasicAutoMarginContainer';
|
|
125
|
+
export { JRCColumn } from './Templates/JRCColumn';
|
|
126
|
+
export { JRCContainer } from './Templates/JRCContainer';
|
|
127
|
+
export { JRCMainColumn } from './Templates/JRCMainColumn';
|
|
128
|
+
export { JRCPanel } from './Templates/JRCPanel';
|
|
129
|
+
export { JRCStepperPage } from './Templates/JRCStepperPage';
|
|
130
|
+
export { JRCTemplateTwoColumns } from './Templates/JRCTwoColumns.template';
|
|
129
131
|
export { JRCWidgetArticleGallery } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGallery';
|
|
130
132
|
export { JRCWidgetArticleGalleryEditor } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGalleryEditor';
|
|
131
|
-
export { JRCWidgetArticleImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
132
|
-
export { JRCWidgetArticleSliderEditor } from './Widgets/JRCWidgetSlider/JRCWidgetArticleSliderEditor';
|
|
133
133
|
export { JRCWidgetArticleText } from './Widgets/JRCWidgetArticleText/JRCWidgetArticleText';
|
|
134
134
|
export { JRCWidgetArticleTextEditor } from './Widgets/JRCWidgetArticleText/JRCWidgetArticleTextEditor';
|
|
135
135
|
export { JRCWidgetArticleTitle } from './Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitle';
|
|
136
136
|
export { JRCWidgetArticleTitleEditor } from './Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitleEditor';
|
|
137
|
+
export { JRCWidgetArticleAttachmentEditor } from './Widgets/JRCWidgetAttachment/JRCWidgetArticleAttachmentEditor';
|
|
137
138
|
export { JRCWidgetAttachment } from './Widgets/JRCWidgetAttachment/JRCWidgetAttachment';
|
|
138
139
|
export { JRCWidgetButton } from './Widgets/JRCWidgetButton/JRCWidgetButton';
|
|
139
140
|
export { JRCWidgetButtonEditor } from './Widgets/JRCWidgetButton/JRCWidgetButtonEditor';
|
|
@@ -145,14 +146,13 @@ export { JRCWidgetColor } from './Widgets/JRCWidgetColor/JRCWidgetColor';
|
|
|
145
146
|
export { JRCWidgetColorEditor } from './Widgets/JRCWidgetColor/JRCWidgetColorEditor';
|
|
146
147
|
export { JRCWidgetContactCardDav } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDav';
|
|
147
148
|
export { JRCWidgetContactCardDavEditor } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDavEditor';
|
|
148
|
-
export { JRCWidgetDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetDatasourceTableEditor';
|
|
149
149
|
export { JRCWidgetEmailsImap } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImap';
|
|
150
150
|
export { JRCWidgetEmailsImapEditor } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapEditor';
|
|
151
151
|
export { JRCWidgetEmailsImapLevel2 } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapLevel2';
|
|
152
152
|
export { JRCWidgetEmptyInplace } from './Widgets/JRCWidgetEmptyInplace';
|
|
153
|
-
export { JRCWidgetExcelDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetExcelDatasourceTableEditor';
|
|
154
153
|
export { JRCWidgetExtensionEditor } from './Widgets/JRCWidgetExtension/JRCWidgetExtensionEditor';
|
|
155
154
|
export { JRCWidgetIcon } from './Widgets/JRCWidgetIcon';
|
|
155
|
+
export { JRCWidgetArticleImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
156
156
|
export { JRCWidgetImage } from './Widgets/JRCWidgetImage/JRCWidgetImage';
|
|
157
157
|
export { JRCWidgetImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetImageEditor';
|
|
158
158
|
export { JRCWidgetLuccaAbsence } from './Widgets/JRCWidgetLuccaAbsence/JRCWidgetLuccaAbsence';
|
|
@@ -161,13 +161,13 @@ export { JRCWidgetPresence } from './Widgets/JRCWidgetPresence/JRCWidgetPresence
|
|
|
161
161
|
export { JRCWidgetPresenceEditor } from './Widgets/JRCWidgetPresence/JRCWidgetPresenceEditor';
|
|
162
162
|
export { JRCWidgetQuickSurvey } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey';
|
|
163
163
|
export { JRCWidgetQuickSurveyEditor } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor';
|
|
164
|
+
export { JRCWidgetArticleSliderEditor } from './Widgets/JRCWidgetSlider/JRCWidgetArticleSliderEditor';
|
|
164
165
|
export { JRCWidgetSlider } from './Widgets/JRCWidgetSlider/JRCWidgetSlider';
|
|
166
|
+
export { JRCWidgetDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetDatasourceTableEditor';
|
|
167
|
+
export { JRCWidgetExcelDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetExcelDatasourceTableEditor';
|
|
165
168
|
export { JRCWidgetTable } from './Widgets/JRCWidgetTable/JRCWidgetTable';
|
|
166
169
|
export { JRCWidgetTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetTableEditor';
|
|
167
170
|
export { JRCWidgetUserProfile } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfile';
|
|
168
171
|
export { JRCWidgetUserProfileEditor } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfileEditor';
|
|
169
172
|
export { JRCWidgetWelcome } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcome';
|
|
170
173
|
export { JRCWidgetWelcomeEditor } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcomeEditor';
|
|
171
|
-
export { LabelDescriptionOption } from './Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
172
|
-
export { SkipToContent } from './Common/SkipToContent';
|
|
173
|
-
export { StyledInput } from './Form/Input/JRCStyledInput';
|
package/dist/src/types.d.ts
CHANGED
|
@@ -85,3 +85,5 @@ export type { JRCAppColumnProps, JRCAppTabsProps, JRCColumnProps, JRCContainerPr
|
|
|
85
85
|
export type { JRCWidgetCheckListEntries } from './components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList';
|
|
86
86
|
export type { Colors, ColorsOrShades, Shades, ThemeConfigOptions, ThemeType } from './styles/theme';
|
|
87
87
|
export type { MessageType } from './utils/utils.color';
|
|
88
|
+
export type { OneLevelMainItemComponentProps, OneLevelStackItemComponentProps, OneLevelEmptyStateComponentProps, JRCDndOneLevelWithStackProps, } from './components/JRCDragNDrop/types';
|
|
89
|
+
export { OneLevelItemTypes } from './components/JRCDragNDrop/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.39",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/jamespot-react-components.js",
|
|
6
6
|
"module": "dist/jamespot-react-components.mjs",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"globals": "^16.5.0",
|
|
79
79
|
"html2canvas": "^1.4.1",
|
|
80
80
|
"husky": "^9.1.7",
|
|
81
|
-
"jamespot-user-api": "^1.3.
|
|
81
|
+
"jamespot-user-api": "^1.3.39",
|
|
82
82
|
"jest": "^30.2.0",
|
|
83
83
|
"jest-environment-jsdom": "^30.2.0",
|
|
84
84
|
"knip": "^5.70.0",
|