@dbx-tools/ui-teams 0.4.1 → 0.5.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/index.ts +12 -12
- package/package.json +4 -4
- package/src/react/adaptive-card-gallery.tsx +2 -2
- package/src/react/index.ts +4 -4
- package/src/react/teams-chat.tsx +1 -1
package/index.ts
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
// Regenerated from the exporting modules in ./src.
|
|
3
3
|
// Hand edits are overwritten on the next watch; this file is read-only.
|
|
4
4
|
|
|
5
|
-
export * as reactAdaptiveCard from "./src/react/adaptive-card";
|
|
6
|
-
export * as reactAdaptiveCardGallery from "./src/react/adaptive-card-gallery";
|
|
7
|
-
export * as reactSamples from "./src/react/samples";
|
|
8
|
-
export * as reactTeamsChat from "./src/react/teams-chat";
|
|
9
|
-
export { AdaptiveCardView } from "./src/react/adaptive-card";
|
|
10
|
-
export type { AdaptiveCardViewProps } from "./src/react/adaptive-card";
|
|
11
|
-
export { AdaptiveCardGallery } from "./src/react/adaptive-card-gallery";
|
|
12
|
-
export type { AdaptiveCardGalleryProps } from "./src/react/adaptive-card-gallery";
|
|
13
|
-
export { CARD_SAMPLES } from "./src/react/samples";
|
|
14
|
-
export type { CardSample } from "./src/react/samples";
|
|
15
|
-
export { DEFAULT_STARTERS, TeamsChat } from "./src/react/teams-chat";
|
|
16
|
-
export type { TeamsChatProps } from "./src/react/teams-chat";
|
|
5
|
+
export * as reactAdaptiveCard from "./src/react/adaptive-card.tsx";
|
|
6
|
+
export * as reactAdaptiveCardGallery from "./src/react/adaptive-card-gallery.tsx";
|
|
7
|
+
export * as reactSamples from "./src/react/samples.ts";
|
|
8
|
+
export * as reactTeamsChat from "./src/react/teams-chat.tsx";
|
|
9
|
+
export { AdaptiveCardView } from "./src/react/adaptive-card.tsx";
|
|
10
|
+
export type { AdaptiveCardViewProps } from "./src/react/adaptive-card.tsx";
|
|
11
|
+
export { AdaptiveCardGallery } from "./src/react/adaptive-card-gallery.tsx";
|
|
12
|
+
export type { AdaptiveCardGalleryProps } from "./src/react/adaptive-card-gallery.tsx";
|
|
13
|
+
export { CARD_SAMPLES } from "./src/react/samples.ts";
|
|
14
|
+
export type { CardSample } from "./src/react/samples.ts";
|
|
15
|
+
export { DEFAULT_STARTERS, TeamsChat } from "./src/react/teams-chat.tsx";
|
|
16
|
+
export type { TeamsChatProps } from "./src/react/teams-chat.tsx";
|
package/package.json
CHANGED
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"marked": "^18.0.5",
|
|
18
18
|
"react": "^19.2.4",
|
|
19
19
|
"react-dom": "^19.2.4",
|
|
20
|
-
"@dbx-tools/shared-
|
|
21
|
-
"@dbx-tools/shared-
|
|
22
|
-
"@dbx-tools/ui-appkit": "0.
|
|
20
|
+
"@dbx-tools/shared-teams": "0.5.1",
|
|
21
|
+
"@dbx-tools/shared-core": "0.5.1",
|
|
22
|
+
"@dbx-tools/ui-appkit": "0.5.1"
|
|
23
23
|
},
|
|
24
24
|
"license": "UNLICENSED",
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"version": "0.
|
|
28
|
+
"version": "0.5.1",
|
|
29
29
|
"type": "module",
|
|
30
30
|
"exports": {
|
|
31
31
|
"./react": "./src/react/index.ts",
|
|
@@ -23,8 +23,8 @@ import {
|
|
|
23
23
|
cn,
|
|
24
24
|
} from "@dbx-tools/ui-appkit/react";
|
|
25
25
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
26
|
-
import { AdaptiveCardView } from "./adaptive-card";
|
|
27
|
-
import { CARD_SAMPLES } from "./samples";
|
|
26
|
+
import { AdaptiveCardView } from "./adaptive-card.tsx";
|
|
27
|
+
import { CARD_SAMPLES } from "./samples.ts";
|
|
28
28
|
|
|
29
29
|
/** Props for {@link AdaptiveCardGallery}. */
|
|
30
30
|
export interface AdaptiveCardGalleryProps {
|
package/src/react/index.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// with AppKit tokens.
|
|
8
8
|
|
|
9
9
|
export type { Activity, AdaptiveCard, CardResult, CardSpec } from "@dbx-tools/shared-teams";
|
|
10
|
-
export { TeamsChat, DEFAULT_STARTERS, type TeamsChatProps } from "./teams-chat";
|
|
11
|
-
export { AdaptiveCardView, type AdaptiveCardViewProps } from "./adaptive-card";
|
|
12
|
-
export { AdaptiveCardGallery, type AdaptiveCardGalleryProps } from "./adaptive-card-gallery";
|
|
13
|
-
export { CARD_SAMPLES, type CardSample } from "./samples";
|
|
10
|
+
export { TeamsChat, DEFAULT_STARTERS, type TeamsChatProps } from "./teams-chat.tsx";
|
|
11
|
+
export { AdaptiveCardView, type AdaptiveCardViewProps } from "./adaptive-card.tsx";
|
|
12
|
+
export { AdaptiveCardGallery, type AdaptiveCardGalleryProps } from "./adaptive-card-gallery.tsx";
|
|
13
|
+
export { CARD_SAMPLES, type CardSample } from "./samples.ts";
|
package/src/react/teams-chat.tsx
CHANGED
|
@@ -8,7 +8,7 @@ import { hash, json, string } from "@dbx-tools/shared-core";
|
|
|
8
8
|
import { activity as activityContract, type Activity } from "@dbx-tools/shared-teams";
|
|
9
9
|
import { Avatar, AvatarFallback, Button, Input, Spinner, cn } from "@dbx-tools/ui-appkit/react";
|
|
10
10
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
11
|
-
import { AdaptiveCardView } from "./adaptive-card";
|
|
11
|
+
import { AdaptiveCardView } from "./adaptive-card.tsx";
|
|
12
12
|
|
|
13
13
|
/** Props for {@link TeamsChat}. */
|
|
14
14
|
export interface TeamsChatProps {
|