@deepdesk/deepdesk-sdk 11.0.0 → 11.0.1-beta.1
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/dialogs.css +1 -1
- package/dist/index.cjs.js +7 -7
- package/dist/index.d.mts +10 -8
- package/dist/index.d.ts +10 -8
- package/dist/index.esm.js +7 -7
- package/dist/index.iife.js +18 -14
- package/input.css +1 -1
- package/package.json +5 -3
- package/styles/index.js +1 -1
- package/styles.css +1 -1
- package/widget.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12,7 +12,6 @@ declare const styles$l: {
|
|
|
12
12
|
readonly "title": string;
|
|
13
13
|
readonly "contentIsCropped": string;
|
|
14
14
|
readonly "lineClamp": string;
|
|
15
|
-
readonly "closeIcon": string;
|
|
16
15
|
};
|
|
17
16
|
|
|
18
17
|
type ImageProps = {
|
|
@@ -29,14 +28,10 @@ interface TitleProps extends React.HTMLProps<HTMLHeadingElement> {
|
|
|
29
28
|
className?: string;
|
|
30
29
|
as?: string;
|
|
31
30
|
}
|
|
32
|
-
interface CloseIconProps extends React.HTMLProps<HTMLDivElement> {
|
|
33
|
-
className?: string;
|
|
34
|
-
}
|
|
35
31
|
interface CardComposition {
|
|
36
32
|
Image: FC<ImageProps>;
|
|
37
33
|
Content: FC<ContentProps>;
|
|
38
34
|
Title: FC<TitleProps>;
|
|
39
|
-
CloseIcon: FC<CloseIconProps>;
|
|
40
35
|
}
|
|
41
36
|
type CardStyles = typeof styles$l;
|
|
42
37
|
declare const Card: FC & CardComposition;
|
|
@@ -108,11 +103,15 @@ declare const styles$g: {
|
|
|
108
103
|
readonly "actionButtonIsDisabled": string;
|
|
109
104
|
readonly "labels": string;
|
|
110
105
|
readonly "label": string;
|
|
106
|
+
readonly "closeIcon": string;
|
|
111
107
|
};
|
|
112
108
|
|
|
113
109
|
interface ActionsProps extends HTMLAttributes<HTMLElement> {
|
|
114
110
|
fixed?: boolean;
|
|
115
111
|
}
|
|
112
|
+
interface CloseIconProps extends React.HTMLProps<HTMLDivElement> {
|
|
113
|
+
className?: string;
|
|
114
|
+
}
|
|
116
115
|
interface ActionButtonProps extends HTMLAttributes<HTMLElement> {
|
|
117
116
|
primary?: boolean;
|
|
118
117
|
disabled?: boolean;
|
|
@@ -136,6 +135,7 @@ interface SuggestionComposition {
|
|
|
136
135
|
DropdownButton: FC<ActionButtonProps>;
|
|
137
136
|
DropdownItem: FC<DropdownItemProps>;
|
|
138
137
|
Labels: FC<LabelProps>;
|
|
138
|
+
CloseIcon: FC<CloseIconProps>;
|
|
139
139
|
}
|
|
140
140
|
type SuggestionStyles = typeof styles$g;
|
|
141
141
|
declare const Suggestion: ForwardRefExoticComponent<Props$2 & RefAttributes<any>> & SuggestionComposition;
|
|
@@ -1520,7 +1520,9 @@ declare const styles$c: {
|
|
|
1520
1520
|
readonly "pageNav": string;
|
|
1521
1521
|
readonly "pageTitle": string;
|
|
1522
1522
|
readonly "pageBackButton": string;
|
|
1523
|
+
readonly "listHeader": string;
|
|
1523
1524
|
readonly "listHeading": string;
|
|
1525
|
+
readonly "listMoreButton": string;
|
|
1524
1526
|
readonly "listItem": string;
|
|
1525
1527
|
readonly "listItemContent": string;
|
|
1526
1528
|
readonly "listItemText": string;
|
|
@@ -1550,8 +1552,8 @@ declare const styles$c: {
|
|
|
1550
1552
|
readonly "actions": string;
|
|
1551
1553
|
readonly "actionsWrapper": string;
|
|
1552
1554
|
readonly "actionsBar": string;
|
|
1553
|
-
readonly "hasShortKeys": string;
|
|
1554
1555
|
readonly "actionButton": string;
|
|
1556
|
+
readonly "hasShortKeys": string;
|
|
1555
1557
|
readonly "actionShortcut": string;
|
|
1556
1558
|
readonly "actionShortcutFixKerning": string;
|
|
1557
1559
|
};
|
|
@@ -1575,10 +1577,10 @@ type EntitiesListStyles = typeof styles$a;
|
|
|
1575
1577
|
declare const styles$9: {
|
|
1576
1578
|
readonly "root": string;
|
|
1577
1579
|
readonly "text": string;
|
|
1578
|
-
readonly "icon": string;
|
|
1579
|
-
readonly "logo": string;
|
|
1580
1580
|
readonly "isLoggedIn": string;
|
|
1581
1581
|
readonly "isLoggedOut": string;
|
|
1582
|
+
readonly "icon": string;
|
|
1583
|
+
readonly "logo": string;
|
|
1582
1584
|
readonly "lock": string;
|
|
1583
1585
|
};
|
|
1584
1586
|
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ declare const styles$l: {
|
|
|
12
12
|
readonly "title": string;
|
|
13
13
|
readonly "contentIsCropped": string;
|
|
14
14
|
readonly "lineClamp": string;
|
|
15
|
-
readonly "closeIcon": string;
|
|
16
15
|
};
|
|
17
16
|
|
|
18
17
|
type ImageProps = {
|
|
@@ -29,14 +28,10 @@ interface TitleProps extends React.HTMLProps<HTMLHeadingElement> {
|
|
|
29
28
|
className?: string;
|
|
30
29
|
as?: string;
|
|
31
30
|
}
|
|
32
|
-
interface CloseIconProps extends React.HTMLProps<HTMLDivElement> {
|
|
33
|
-
className?: string;
|
|
34
|
-
}
|
|
35
31
|
interface CardComposition {
|
|
36
32
|
Image: FC<ImageProps>;
|
|
37
33
|
Content: FC<ContentProps>;
|
|
38
34
|
Title: FC<TitleProps>;
|
|
39
|
-
CloseIcon: FC<CloseIconProps>;
|
|
40
35
|
}
|
|
41
36
|
type CardStyles = typeof styles$l;
|
|
42
37
|
declare const Card: FC & CardComposition;
|
|
@@ -108,11 +103,15 @@ declare const styles$g: {
|
|
|
108
103
|
readonly "actionButtonIsDisabled": string;
|
|
109
104
|
readonly "labels": string;
|
|
110
105
|
readonly "label": string;
|
|
106
|
+
readonly "closeIcon": string;
|
|
111
107
|
};
|
|
112
108
|
|
|
113
109
|
interface ActionsProps extends HTMLAttributes<HTMLElement> {
|
|
114
110
|
fixed?: boolean;
|
|
115
111
|
}
|
|
112
|
+
interface CloseIconProps extends React.HTMLProps<HTMLDivElement> {
|
|
113
|
+
className?: string;
|
|
114
|
+
}
|
|
116
115
|
interface ActionButtonProps extends HTMLAttributes<HTMLElement> {
|
|
117
116
|
primary?: boolean;
|
|
118
117
|
disabled?: boolean;
|
|
@@ -136,6 +135,7 @@ interface SuggestionComposition {
|
|
|
136
135
|
DropdownButton: FC<ActionButtonProps>;
|
|
137
136
|
DropdownItem: FC<DropdownItemProps>;
|
|
138
137
|
Labels: FC<LabelProps>;
|
|
138
|
+
CloseIcon: FC<CloseIconProps>;
|
|
139
139
|
}
|
|
140
140
|
type SuggestionStyles = typeof styles$g;
|
|
141
141
|
declare const Suggestion: ForwardRefExoticComponent<Props$2 & RefAttributes<any>> & SuggestionComposition;
|
|
@@ -1520,7 +1520,9 @@ declare const styles$c: {
|
|
|
1520
1520
|
readonly "pageNav": string;
|
|
1521
1521
|
readonly "pageTitle": string;
|
|
1522
1522
|
readonly "pageBackButton": string;
|
|
1523
|
+
readonly "listHeader": string;
|
|
1523
1524
|
readonly "listHeading": string;
|
|
1525
|
+
readonly "listMoreButton": string;
|
|
1524
1526
|
readonly "listItem": string;
|
|
1525
1527
|
readonly "listItemContent": string;
|
|
1526
1528
|
readonly "listItemText": string;
|
|
@@ -1550,8 +1552,8 @@ declare const styles$c: {
|
|
|
1550
1552
|
readonly "actions": string;
|
|
1551
1553
|
readonly "actionsWrapper": string;
|
|
1552
1554
|
readonly "actionsBar": string;
|
|
1553
|
-
readonly "hasShortKeys": string;
|
|
1554
1555
|
readonly "actionButton": string;
|
|
1556
|
+
readonly "hasShortKeys": string;
|
|
1555
1557
|
readonly "actionShortcut": string;
|
|
1556
1558
|
readonly "actionShortcutFixKerning": string;
|
|
1557
1559
|
};
|
|
@@ -1575,10 +1577,10 @@ type EntitiesListStyles = typeof styles$a;
|
|
|
1575
1577
|
declare const styles$9: {
|
|
1576
1578
|
readonly "root": string;
|
|
1577
1579
|
readonly "text": string;
|
|
1578
|
-
readonly "icon": string;
|
|
1579
|
-
readonly "logo": string;
|
|
1580
1580
|
readonly "isLoggedIn": string;
|
|
1581
1581
|
readonly "isLoggedOut": string;
|
|
1582
|
+
readonly "icon": string;
|
|
1583
|
+
readonly "logo": string;
|
|
1582
1584
|
readonly "lock": string;
|
|
1583
1585
|
};
|
|
1584
1586
|
|