@microsoft/teams.cards 2.0.11-preview.8 → 2.0.11

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.
@@ -1,3 +1,3 @@
1
- export * from './submit';
1
+ export * from './submit/index.mjs';
2
2
  //# sourceMappingURL=index.mjs.map
3
3
  //# sourceMappingURL=index.mjs.map
@@ -1,4 +1,4 @@
1
- import { SubmitAction, SubmitActionData, InvokeSubmitActionData, CollabStageInvokeDataValue } from '../../core';
1
+ import { SubmitAction, SubmitActionData, InvokeSubmitActionData, CollabStageInvokeDataValue } from '../../core.mjs';
2
2
 
3
3
  class CollabStageAction extends SubmitAction {
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { SubmitAction } from '../../core';
1
+ import { SubmitAction } from '../../core.mjs';
2
2
 
3
3
  class IMBackAction extends SubmitAction {
4
4
  /**
@@ -1,8 +1,8 @@
1
- export * from './im-back';
2
- export * from './invoke';
3
- export * from './message-back';
4
- export * from './sign-in';
5
- export * from './task-fetch';
6
- export * from './collab-stage';
1
+ export * from './im-back.mjs';
2
+ export * from './invoke.mjs';
3
+ export * from './message-back.mjs';
4
+ export * from './sign-in.mjs';
5
+ export * from './task-fetch.mjs';
6
+ export * from './collab-stage.mjs';
7
7
  //# sourceMappingURL=index.mjs.map
8
8
  //# sourceMappingURL=index.mjs.map
@@ -1,4 +1,4 @@
1
- import { SubmitAction } from '../../core';
1
+ import { SubmitAction } from '../../core.mjs';
2
2
 
3
3
  class InvokeAction extends SubmitAction {
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { SubmitAction } from '../../core';
1
+ import { SubmitAction } from '../../core.mjs';
2
2
 
3
3
  class MessageBackAction extends SubmitAction {
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { SubmitAction } from '../../core';
1
+ import { SubmitAction } from '../../core.mjs';
2
2
 
3
3
  class SignInAction extends SubmitAction {
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { SubmitAction } from '../../core';
1
+ import { SubmitAction } from '../../core.mjs';
2
2
 
3
3
  class TaskFetchAction extends SubmitAction {
4
4
  /**
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- export * from './core';
2
- export * from './actions';
3
- export * from './utilities';
1
+ export * from './core.mjs';
2
+ export * from './actions/index.mjs';
3
+ export * from './utilities/index.mjs';
4
4
  //# sourceMappingURL=index.mjs.map
5
5
  //# sourceMappingURL=index.mjs.map
@@ -1,4 +1,4 @@
1
- export * from './submit-data';
2
- export * from './open-dialog-data';
1
+ export * from './submit-data.mjs';
2
+ export * from './open-dialog-data.mjs';
3
3
  //# sourceMappingURL=index.mjs.map
4
4
  //# sourceMappingURL=index.mjs.map
@@ -1,4 +1,4 @@
1
- import { SubmitActionData, TaskFetchSubmitActionData } from '../core';
1
+ import { SubmitActionData, TaskFetchSubmitActionData } from '../core.mjs';
2
2
 
3
3
  const RESERVED_KEYWORD = "dialog_id";
4
4
  class OpenDialogData extends SubmitActionData {
@@ -1,4 +1,4 @@
1
- import { SubmitActionData } from '../core';
1
+ import { SubmitActionData } from '../core.mjs';
2
2
 
3
3
  const RESERVED_KEYWORD = "action";
4
4
  class SubmitData extends SubmitActionData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/teams.cards",
3
- "version": "2.0.11-preview.8",
3
+ "version": "2.0.11",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -35,7 +35,7 @@
35
35
  "test": "npx jest"
36
36
  },
37
37
  "devDependencies": {
38
- "@microsoft/teams.config": "2.0.11-preview.8",
38
+ "@microsoft/teams.config": "2.0.11",
39
39
  "@types/jest": "^29.5.12",
40
40
  "jest": "^29.7.0",
41
41
  "rimraf": "^6.0.1",