@fluentui-copilot/react-chat-input-plugins 0.3.3 → 0.3.4
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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +10 -1
- package/lib/BasicFunctionality.js +1 -1
- package/lib/BasicFunctionality.js.map +1 -1
- package/lib/ChatInputEntity.js +2 -2
- package/lib/ChatInputEntity.js.map +1 -1
- package/lib/ChatInputToken.js +1 -1
- package/lib/ChatInputToken.js.map +1 -1
- package/lib/GhostText.js +3 -3
- package/lib/GhostText.js.map +1 -1
- package/lib/ImperativeControl.js +1 -1
- package/lib/ImperativeControl.js.map +1 -1
- package/lib/PasteUnfurling.js +1 -1
- package/lib/PasteUnfurling.js.map +1 -1
- package/lib/components/ChatInputEntity/index.js +4 -5
- package/lib/components/ChatInputEntity/index.js.map +1 -1
- package/lib/components/ChatInputToken/index.js +5 -6
- package/lib/components/ChatInputToken/index.js.map +1 -1
- package/lib/components/GhostText/index.js +4 -5
- package/lib/components/GhostText/index.js.map +1 -1
- package/lib/plugins/BasicFunctionality/index.js +1 -1
- package/lib/plugins/BasicFunctionality/index.js.map +1 -1
- package/lib/plugins/ChatInputEntity/index.js +2 -3
- package/lib/plugins/ChatInputEntity/index.js.map +1 -1
- package/lib/plugins/GhostText/index.js +2 -2
- package/lib/plugins/GhostText/index.js.map +1 -1
- package/lib/plugins/ImperativeControl/index.js +1 -1
- package/lib/plugins/ImperativeControl/index.js.map +1 -1
- package/lib/plugins/ManualGhostText/index.js +1 -1
- package/lib/plugins/ManualGhostText/index.js.map +1 -1
- package/lib/plugins/PasteUnfurling/index.js +1 -1
- package/lib/plugins/PasteUnfurling/index.js.map +1 -1
- package/lib-commonjs/BasicFunctionality.js +7 -2
- package/lib-commonjs/BasicFunctionality.js.map +1 -1
- package/lib-commonjs/ChatInputEntity.js +37 -3
- package/lib-commonjs/ChatInputEntity.js.map +1 -1
- package/lib-commonjs/ChatInputToken.js +33 -2
- package/lib-commonjs/ChatInputToken.js.map +1 -1
- package/lib-commonjs/GhostText.js +41 -4
- package/lib-commonjs/GhostText.js.map +1 -1
- package/lib-commonjs/ImperativeControl.js +7 -2
- package/lib-commonjs/ImperativeControl.js.map +1 -1
- package/lib-commonjs/PasteUnfurling.js +7 -2
- package/lib-commonjs/PasteUnfurling.js.map +1 -1
- package/lib-commonjs/components/ChatInputEntity/index.js +27 -6
- package/lib-commonjs/components/ChatInputEntity/index.js.map +1 -1
- package/lib-commonjs/components/ChatInputToken/index.js +37 -7
- package/lib-commonjs/components/ChatInputToken/index.js.map +1 -1
- package/lib-commonjs/components/GhostText/index.js +27 -6
- package/lib-commonjs/components/GhostText/index.js.map +1 -1
- package/lib-commonjs/plugins/BasicFunctionality/index.js +7 -2
- package/lib-commonjs/plugins/BasicFunctionality/index.js.map +1 -1
- package/lib-commonjs/plugins/ChatInputEntity/index.js +22 -4
- package/lib-commonjs/plugins/ChatInputEntity/index.js.map +1 -1
- package/lib-commonjs/plugins/GhostText/index.js +22 -3
- package/lib-commonjs/plugins/GhostText/index.js.map +1 -1
- package/lib-commonjs/plugins/ImperativeControl/index.js +7 -2
- package/lib-commonjs/plugins/ImperativeControl/index.js.map +1 -1
- package/lib-commonjs/plugins/ManualGhostText/index.js +7 -2
- package/lib-commonjs/plugins/ManualGhostText/index.js.map +1 -1
- package/lib-commonjs/plugins/PasteUnfurling/index.js +7 -2
- package/lib-commonjs/plugins/PasteUnfurling/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@fluentui-copilot/react-chat-input-plugins",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Wed, 18 Dec 2024 08:54:34 GMT",
|
|
6
|
+
"tag": "@fluentui-copilot/react-chat-input-plugins_v0.3.4",
|
|
7
|
+
"version": "0.3.4",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "makotom@microsoft.com",
|
|
12
|
+
"package": "@fluentui-copilot/react-chat-input-plugins",
|
|
13
|
+
"commit": "cc179462507d13546b93c6330be325014286998c",
|
|
14
|
+
"comment": "chore: Banning * exports."
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 10 Dec 2024 20:22:06 GMT",
|
|
6
21
|
"tag": "@fluentui-copilot/react-chat-input-plugins_v0.3.3",
|
|
7
22
|
"version": "0.3.3",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
# Change Log - @fluentui-copilot/react-chat-input-plugins
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 18 Dec 2024 08:54:34 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [0.3.4](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-chat-input-plugins_v0.3.4)
|
|
8
|
+
|
|
9
|
+
Wed, 18 Dec 2024 08:54:34 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-chat-input-plugins_v0.3.3..@fluentui-copilot/react-chat-input-plugins_v0.3.4)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- chore: Banning * exports. ([PR #2477](https://github.com/microsoft/fluentai/pull/2477) by makotom@microsoft.com)
|
|
15
|
+
|
|
7
16
|
## [0.3.1](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-chat-input-plugins_v0.3.1)
|
|
8
17
|
|
|
9
18
|
Thu, 31 Oct 2024 17:41:08 GMT
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { BasicFunctionalityPlugin } from './plugins/BasicFunctionality/index';
|
|
2
2
|
//# sourceMappingURL=BasicFunctionality.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["BasicFunctionality.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["BasicFunctionality.ts"],"sourcesContent":["export type { BasicFunctionalityPluginProps, BasicFunctionalityPluginRef } from './plugins/BasicFunctionality/index';\nexport { BasicFunctionalityPlugin } from './plugins/BasicFunctionality/index';\n"],"names":["BasicFunctionalityPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,wBAAwB,QAAQ,qCAAqC"}
|
package/lib/ChatInputEntity.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export { ChatInputEntity, chatInputEntityClassNames, renderChatInputEntity_unstable, useChatInputEntityStyles_unstable, useChatInputEntity_unstable } from './components/ChatInputEntity/index';
|
|
2
|
+
export { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode, ChatInputEntityPlugin } from './plugins/ChatInputEntity/index';
|
|
3
3
|
//# sourceMappingURL=ChatInputEntity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ChatInputEntity.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ChatInputEntity.ts"],"sourcesContent":["export type { ChatInputEntityProps, ChatInputEntitySlots, ChatInputEntityState } from './components/ChatInputEntity/index';\nexport { ChatInputEntity, chatInputEntityClassNames, renderChatInputEntity_unstable, useChatInputEntityStyles_unstable, useChatInputEntity_unstable } from './components/ChatInputEntity/index';\nexport type { ChatInputEntityPluginRef, SerializedChatInputEntityNode } from './plugins/ChatInputEntity/index';\nexport { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode, ChatInputEntityPlugin } from './plugins/ChatInputEntity/index';\n"],"names":["ChatInputEntity","chatInputEntityClassNames","renderChatInputEntity_unstable","useChatInputEntityStyles_unstable","useChatInputEntity_unstable","$createChatInputEntityNode","$isChatInputEntityNode","ChatInputEntityNode","ChatInputEntityPlugin"],"rangeMappings":";","mappings":"AACA,SAASA,eAAe,EAAEC,yBAAyB,EAAEC,8BAA8B,EAAEC,iCAAiC,EAAEC,2BAA2B,QAAQ,qCAAqC;AAEhM,SAASC,0BAA0B,EAAEC,sBAAsB,EAAEC,mBAAmB,EAAEC,qBAAqB,QAAQ,kCAAkC"}
|
package/lib/ChatInputToken.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputToken, ChatInputTokenNode, chatInputTokenClassNames, renderChatInputToken_unstable, useChatInputTokenStyles_unstable, useChatInputToken_unstable } from './components/ChatInputToken/index';
|
|
2
2
|
//# sourceMappingURL=ChatInputToken.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ChatInputToken.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ChatInputToken.ts"],"sourcesContent":["export type { ChatInputTokenProps, ChatInputTokenSlots, ChatInputTokenState, SerializedChatInputTokenNode } from './components/ChatInputToken/index';\nexport { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputToken, ChatInputTokenNode, chatInputTokenClassNames, renderChatInputToken_unstable, useChatInputTokenStyles_unstable, useChatInputToken_unstable } from './components/ChatInputToken/index';\n"],"names":["$createChatInputTokenNode","$isChatInputTokenNode","ChatInputToken","ChatInputTokenNode","chatInputTokenClassNames","renderChatInputToken_unstable","useChatInputTokenStyles_unstable","useChatInputToken_unstable"],"rangeMappings":"","mappings":"AACA,SAASA,yBAAyB,EAAEC,qBAAqB,EAAEC,cAAc,EAAEC,kBAAkB,EAAEC,wBAAwB,EAAEC,6BAA6B,EAAEC,gCAAgC,EAAEC,0BAA0B,QAAQ,oCAAoC"}
|
package/lib/GhostText.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { GhostText, ghostTextClassNames, renderGhostText_unstable, useGhostTextStyles_unstable, useGhostText_unstable } from './components/GhostText/index';
|
|
2
|
+
export { $createGhostTextNode, $isGhostTextNode, GhostTextNode, GhostTextPlugin } from './plugins/GhostText/index';
|
|
3
|
+
export { ManualGhostTextPlugin } from './plugins/ManualGhostText/index';
|
|
4
4
|
//# sourceMappingURL=GhostText.js.map
|
package/lib/GhostText.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["GhostText.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["GhostText.ts"],"sourcesContent":["export type { GhostTextProps, GhostTextSlots, GhostTextState } from './components/GhostText/index';\nexport { GhostText, ghostTextClassNames, renderGhostText_unstable, useGhostTextStyles_unstable, useGhostText_unstable } from './components/GhostText/index';\nexport type { GhostTextPluginProps, SerializedGhostTextNode } from './plugins/GhostText/index';\nexport { $createGhostTextNode, $isGhostTextNode, GhostTextNode, GhostTextPlugin } from './plugins/GhostText/index';\nexport type { ManualGhostTextProps, ManualGhostTextRef } from './plugins/ManualGhostText/index';\nexport { ManualGhostTextPlugin } from './plugins/ManualGhostText/index';\n"],"names":["GhostText","ghostTextClassNames","renderGhostText_unstable","useGhostTextStyles_unstable","useGhostText_unstable","$createGhostTextNode","$isGhostTextNode","GhostTextNode","GhostTextPlugin","ManualGhostTextPlugin"],"rangeMappings":";;","mappings":"AACA,SAASA,SAAS,EAAEC,mBAAmB,EAAEC,wBAAwB,EAAEC,2BAA2B,EAAEC,qBAAqB,QAAQ,+BAA+B;AAE5J,SAASC,oBAAoB,EAAEC,gBAAgB,EAAEC,aAAa,EAAEC,eAAe,QAAQ,4BAA4B;AAEnH,SAASC,qBAAqB,QAAQ,kCAAkC"}
|
package/lib/ImperativeControl.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { ImperativeControlPlugin } from './plugins/ImperativeControl/index';
|
|
2
2
|
//# sourceMappingURL=ImperativeControl.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ImperativeControl.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ImperativeControl.ts"],"sourcesContent":["export type { ImperativeControlPluginProps, ImperativeControlPluginRef } from './plugins/ImperativeControl/index';\nexport { ImperativeControlPlugin } from './plugins/ImperativeControl/index';\n"],"names":["ImperativeControlPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,uBAAuB,QAAQ,oCAAoC"}
|
package/lib/PasteUnfurling.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { PasteUnfurlingPlugin } from './plugins/PasteUnfurling/index';
|
|
2
2
|
//# sourceMappingURL=PasteUnfurling.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["PasteUnfurling.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["PasteUnfurling.ts"],"sourcesContent":["export type { PasteUnfurlingPluginProps } from './plugins/PasteUnfurling/index';\nexport { PasteUnfurlingPlugin } from './plugins/PasteUnfurling/index';\n"],"names":["PasteUnfurlingPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,oBAAoB,QAAQ,iCAAiC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export * from './useChatInputEntityStyles.styles';
|
|
1
|
+
export { ChatInputEntity } from './ChatInputEntity';
|
|
2
|
+
export { renderChatInputEntity_unstable } from './renderChatInputEntity';
|
|
3
|
+
export { useChatInputEntity_unstable } from './useChatInputEntity';
|
|
4
|
+
export { chatInputEntityClassNames, useChatInputEntityStyles_unstable } from './useChatInputEntityStyles.styles';
|
|
6
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { ChatInputEntity } from './ChatInputEntity';\nexport type { ChatInputEntityProps, ChatInputEntitySlots, ChatInputEntityState } from './ChatInputEntity.types';\nexport { renderChatInputEntity_unstable } from './renderChatInputEntity';\nexport { useChatInputEntity_unstable } from './useChatInputEntity';\nexport { chatInputEntityClassNames, useChatInputEntityStyles_unstable } from './useChatInputEntityStyles.styles';\n"],"names":["ChatInputEntity","renderChatInputEntity_unstable","useChatInputEntity_unstable","chatInputEntityClassNames","useChatInputEntityStyles_unstable"],"rangeMappings":";;;","mappings":"AAAA,SAASA,eAAe,QAAQ,oBAAoB;AAEpD,SAASC,8BAA8B,QAAQ,0BAA0B;AACzE,SAASC,2BAA2B,QAAQ,uBAAuB;AACnE,SAASC,yBAAyB,EAAEC,iCAAiC,QAAQ,oCAAoC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export * from './ChatInputToken.node';
|
|
1
|
+
export { ChatInputToken } from './ChatInputToken';
|
|
2
|
+
export { renderChatInputToken_unstable } from './renderChatInputToken';
|
|
3
|
+
export { useChatInputToken_unstable } from './useChatInputToken';
|
|
4
|
+
export { chatInputTokenClassNames, useChatInputTokenStyles_unstable } from './useChatInputTokenStyles.styles';
|
|
5
|
+
export { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputTokenNode } from './ChatInputToken.node';
|
|
7
6
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { ChatInputToken } from './ChatInputToken';\nexport type { ChatInputTokenProps, ChatInputTokenSlots, ChatInputTokenState } from './ChatInputToken.types';\nexport { renderChatInputToken_unstable } from './renderChatInputToken';\nexport { useChatInputToken_unstable } from './useChatInputToken';\nexport { chatInputTokenClassNames, useChatInputTokenStyles_unstable } from './useChatInputTokenStyles.styles';\nexport type { SerializedChatInputTokenNode } from './ChatInputToken.node';\nexport { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputTokenNode } from './ChatInputToken.node';\n"],"names":["ChatInputToken","renderChatInputToken_unstable","useChatInputToken_unstable","chatInputTokenClassNames","useChatInputTokenStyles_unstable","$createChatInputTokenNode","$isChatInputTokenNode","ChatInputTokenNode"],"rangeMappings":";;;;","mappings":"AAAA,SAASA,cAAc,QAAQ,mBAAmB;AAElD,SAASC,6BAA6B,QAAQ,yBAAyB;AACvE,SAASC,0BAA0B,QAAQ,sBAAsB;AACjE,SAASC,wBAAwB,EAAEC,gCAAgC,QAAQ,mCAAmC;AAE9G,SAASC,yBAAyB,EAAEC,qBAAqB,EAAEC,kBAAkB,QAAQ,wBAAwB"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export * from './useGhostTextStyles.styles';
|
|
1
|
+
export { GhostText } from './GhostText';
|
|
2
|
+
export { renderGhostText_unstable } from './renderGhostText';
|
|
3
|
+
export { useGhostText_unstable } from './useGhostText';
|
|
4
|
+
export { ghostTextClassNames, useGhostTextStyles_unstable } from './useGhostTextStyles.styles';
|
|
6
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { GhostText } from './GhostText';\nexport type { GhostTextProps, GhostTextSlots, GhostTextState } from './GhostText.types';\nexport { renderGhostText_unstable } from './renderGhostText';\nexport { useGhostText_unstable } from './useGhostText';\nexport { ghostTextClassNames, useGhostTextStyles_unstable } from './useGhostTextStyles.styles';\n"],"names":["GhostText","renderGhostText_unstable","useGhostText_unstable","ghostTextClassNames","useGhostTextStyles_unstable"],"rangeMappings":";;;","mappings":"AAAA,SAASA,SAAS,QAAQ,cAAc;AAExC,SAASC,wBAAwB,QAAQ,oBAAoB;AAC7D,SAASC,qBAAqB,QAAQ,iBAAiB;AACvD,SAASC,mBAAmB,EAAEC,2BAA2B,QAAQ,8BAA8B"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { BasicFunctionalityPlugin } from './BasicFunctionality';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { BasicFunctionalityPluginProps, BasicFunctionalityPluginRef } from './BasicFunctionality';\nexport { BasicFunctionalityPlugin } from './BasicFunctionality';\n"],"names":["BasicFunctionalityPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,wBAAwB,QAAQ,uBAAuB"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export * from './ChatInputEntityPlugin.types';
|
|
1
|
+
export { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode } from './ChatInputEntity.node';
|
|
2
|
+
export { ChatInputEntityPlugin } from './ChatInputEntityPlugin';
|
|
4
3
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { SerializedChatInputEntityNode } from './ChatInputEntity.node';\nexport { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode } from './ChatInputEntity.node';\nexport { ChatInputEntityPlugin } from './ChatInputEntityPlugin';\nexport type { ChatInputEntityPluginRef } from './ChatInputEntityPlugin.types';\n"],"names":["$createChatInputEntityNode","$isChatInputEntityNode","ChatInputEntityNode","ChatInputEntityPlugin"],"rangeMappings":";","mappings":"AACA,SAASA,0BAA0B,EAAEC,sBAAsB,EAAEC,mBAAmB,QAAQ,yBAAyB;AACjH,SAASC,qBAAqB,QAAQ,0BAA0B"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export { GhostTextPlugin } from './GhostText';
|
|
2
|
+
export { $createGhostTextNode, $isGhostTextNode, GhostTextNode } from './GhostText.node';
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { GhostTextPluginProps } from './GhostText';\nexport { GhostTextPlugin } from './GhostText';\nexport type { SerializedGhostTextNode } from './GhostText.node';\nexport { $createGhostTextNode, $isGhostTextNode, GhostTextNode } from './GhostText.node';\n"],"names":["GhostTextPlugin","$createGhostTextNode","$isGhostTextNode","GhostTextNode"],"rangeMappings":";","mappings":"AACA,SAASA,eAAe,QAAQ,cAAc;AAE9C,SAASC,oBAAoB,EAAEC,gBAAgB,EAAEC,aAAa,QAAQ,mBAAmB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { ImperativeControlPlugin } from './ImperativeControl';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { ImperativeControlPluginProps, ImperativeControlPluginRef } from './ImperativeControl';\nexport { ImperativeControlPlugin } from './ImperativeControl';\n"],"names":["ImperativeControlPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,uBAAuB,QAAQ,sBAAsB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { ManualGhostTextPlugin } from './ManualGhostText';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { ManualGhostTextProps, ManualGhostTextRef } from './ManualGhostText';\nexport { ManualGhostTextPlugin } from './ManualGhostText';\n"],"names":["ManualGhostTextPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,qBAAqB,QAAQ,oBAAoB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { PasteUnfurlingPlugin } from './PasteUnfurling';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { PasteUnfurlingPluginProps } from './PasteUnfurling';\nexport { PasteUnfurlingPlugin } from './PasteUnfurling';\n"],"names":["PasteUnfurlingPlugin"],"rangeMappings":"","mappings":"AACA,SAASA,oBAAoB,QAAQ,mBAAmB"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "BasicFunctionalityPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _index.BasicFunctionalityPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _index = require("./plugins/BasicFunctionality/index");
|
|
7
12
|
//# sourceMappingURL=BasicFunctionality.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["BasicFunctionality.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["BasicFunctionality.ts"],"sourcesContent":["export type { BasicFunctionalityPluginProps, BasicFunctionalityPluginRef } from './plugins/BasicFunctionality/index';\nexport { BasicFunctionalityPlugin } from './plugins/BasicFunctionality/index';\n"],"names":["BasicFunctionalityPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,+BAAwB;;;uBAAQ"}
|
|
@@ -2,7 +2,41 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createChatInputEntityNode: function() {
|
|
13
|
+
return _index1.$createChatInputEntityNode;
|
|
14
|
+
},
|
|
15
|
+
$isChatInputEntityNode: function() {
|
|
16
|
+
return _index1.$isChatInputEntityNode;
|
|
17
|
+
},
|
|
18
|
+
ChatInputEntity: function() {
|
|
19
|
+
return _index.ChatInputEntity;
|
|
20
|
+
},
|
|
21
|
+
ChatInputEntityNode: function() {
|
|
22
|
+
return _index1.ChatInputEntityNode;
|
|
23
|
+
},
|
|
24
|
+
ChatInputEntityPlugin: function() {
|
|
25
|
+
return _index1.ChatInputEntityPlugin;
|
|
26
|
+
},
|
|
27
|
+
chatInputEntityClassNames: function() {
|
|
28
|
+
return _index.chatInputEntityClassNames;
|
|
29
|
+
},
|
|
30
|
+
renderChatInputEntity_unstable: function() {
|
|
31
|
+
return _index.renderChatInputEntity_unstable;
|
|
32
|
+
},
|
|
33
|
+
useChatInputEntityStyles_unstable: function() {
|
|
34
|
+
return _index.useChatInputEntityStyles_unstable;
|
|
35
|
+
},
|
|
36
|
+
useChatInputEntity_unstable: function() {
|
|
37
|
+
return _index.useChatInputEntity_unstable;
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
const _index = require("./components/ChatInputEntity/index");
|
|
41
|
+
const _index1 = require("./plugins/ChatInputEntity/index");
|
|
8
42
|
//# sourceMappingURL=ChatInputEntity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ChatInputEntity.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ChatInputEntity.ts"],"sourcesContent":["export type { ChatInputEntityProps, ChatInputEntitySlots, ChatInputEntityState } from './components/ChatInputEntity/index';\nexport { ChatInputEntity, chatInputEntityClassNames, renderChatInputEntity_unstable, useChatInputEntityStyles_unstable, useChatInputEntity_unstable } from './components/ChatInputEntity/index';\nexport type { ChatInputEntityPluginRef, SerializedChatInputEntityNode } from './plugins/ChatInputEntity/index';\nexport { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode, ChatInputEntityPlugin } from './plugins/ChatInputEntity/index';\n"],"names":["$createChatInputEntityNode","$isChatInputEntityNode","ChatInputEntity","ChatInputEntityNode","ChatInputEntityPlugin","chatInputEntityClassNames","renderChatInputEntity_unstable","useChatInputEntityStyles_unstable","useChatInputEntity_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAGSA,0BAA0B;eAA1BA,kCAA0B;;IAAEC,sBAAsB;eAAtBA,8BAAsB;;IAFlDC,eAAe;eAAfA,sBAAe;;IAEqCC,mBAAmB;eAAnBA,2BAAmB;;IAAEC,qBAAqB;eAArBA,6BAAqB;;IAF7EC,yBAAyB;eAAzBA,gCAAyB;;IAAEC,8BAA8B;eAA9BA,qCAA8B;;IAAEC,iCAAiC;eAAjCA,wCAAiC;;IAAEC,2BAA2B;eAA3BA,kCAA2B;;;uBAAQ;wBAE5C"}
|
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createChatInputTokenNode: function() {
|
|
13
|
+
return _index.$createChatInputTokenNode;
|
|
14
|
+
},
|
|
15
|
+
$isChatInputTokenNode: function() {
|
|
16
|
+
return _index.$isChatInputTokenNode;
|
|
17
|
+
},
|
|
18
|
+
ChatInputToken: function() {
|
|
19
|
+
return _index.ChatInputToken;
|
|
20
|
+
},
|
|
21
|
+
ChatInputTokenNode: function() {
|
|
22
|
+
return _index.ChatInputTokenNode;
|
|
23
|
+
},
|
|
24
|
+
chatInputTokenClassNames: function() {
|
|
25
|
+
return _index.chatInputTokenClassNames;
|
|
26
|
+
},
|
|
27
|
+
renderChatInputToken_unstable: function() {
|
|
28
|
+
return _index.renderChatInputToken_unstable;
|
|
29
|
+
},
|
|
30
|
+
useChatInputTokenStyles_unstable: function() {
|
|
31
|
+
return _index.useChatInputTokenStyles_unstable;
|
|
32
|
+
},
|
|
33
|
+
useChatInputToken_unstable: function() {
|
|
34
|
+
return _index.useChatInputToken_unstable;
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
const _index = require("./components/ChatInputToken/index");
|
|
7
38
|
//# sourceMappingURL=ChatInputToken.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ChatInputToken.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ChatInputToken.ts"],"sourcesContent":["export type { ChatInputTokenProps, ChatInputTokenSlots, ChatInputTokenState, SerializedChatInputTokenNode } from './components/ChatInputToken/index';\nexport { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputToken, ChatInputTokenNode, chatInputTokenClassNames, renderChatInputToken_unstable, useChatInputTokenStyles_unstable, useChatInputToken_unstable } from './components/ChatInputToken/index';\n"],"names":["$createChatInputTokenNode","$isChatInputTokenNode","ChatInputToken","ChatInputTokenNode","chatInputTokenClassNames","renderChatInputToken_unstable","useChatInputTokenStyles_unstable","useChatInputToken_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IACSA,yBAAyB;eAAzBA,gCAAyB;;IAAEC,qBAAqB;eAArBA,4BAAqB;;IAAEC,cAAc;eAAdA,qBAAc;;IAAEC,kBAAkB;eAAlBA,yBAAkB;;IAAEC,wBAAwB;eAAxBA,+BAAwB;;IAAEC,6BAA6B;eAA7BA,oCAA6B;;IAAEC,gCAAgC;eAAhCA,uCAAgC;;IAAEC,0BAA0B;eAA1BA,iCAA0B;;;uBAAQ"}
|
|
@@ -2,8 +2,45 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createGhostTextNode: function() {
|
|
13
|
+
return _index1.$createGhostTextNode;
|
|
14
|
+
},
|
|
15
|
+
$isGhostTextNode: function() {
|
|
16
|
+
return _index1.$isGhostTextNode;
|
|
17
|
+
},
|
|
18
|
+
GhostText: function() {
|
|
19
|
+
return _index.GhostText;
|
|
20
|
+
},
|
|
21
|
+
GhostTextNode: function() {
|
|
22
|
+
return _index1.GhostTextNode;
|
|
23
|
+
},
|
|
24
|
+
GhostTextPlugin: function() {
|
|
25
|
+
return _index1.GhostTextPlugin;
|
|
26
|
+
},
|
|
27
|
+
ManualGhostTextPlugin: function() {
|
|
28
|
+
return _index2.ManualGhostTextPlugin;
|
|
29
|
+
},
|
|
30
|
+
ghostTextClassNames: function() {
|
|
31
|
+
return _index.ghostTextClassNames;
|
|
32
|
+
},
|
|
33
|
+
renderGhostText_unstable: function() {
|
|
34
|
+
return _index.renderGhostText_unstable;
|
|
35
|
+
},
|
|
36
|
+
useGhostTextStyles_unstable: function() {
|
|
37
|
+
return _index.useGhostTextStyles_unstable;
|
|
38
|
+
},
|
|
39
|
+
useGhostText_unstable: function() {
|
|
40
|
+
return _index.useGhostText_unstable;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
const _index = require("./components/GhostText/index");
|
|
44
|
+
const _index1 = require("./plugins/GhostText/index");
|
|
45
|
+
const _index2 = require("./plugins/ManualGhostText/index");
|
|
9
46
|
//# sourceMappingURL=GhostText.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["GhostText.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["GhostText.ts"],"sourcesContent":["export type { GhostTextProps, GhostTextSlots, GhostTextState } from './components/GhostText/index';\nexport { GhostText, ghostTextClassNames, renderGhostText_unstable, useGhostTextStyles_unstable, useGhostText_unstable } from './components/GhostText/index';\nexport type { GhostTextPluginProps, SerializedGhostTextNode } from './plugins/GhostText/index';\nexport { $createGhostTextNode, $isGhostTextNode, GhostTextNode, GhostTextPlugin } from './plugins/GhostText/index';\nexport type { ManualGhostTextProps, ManualGhostTextRef } from './plugins/ManualGhostText/index';\nexport { ManualGhostTextPlugin } from './plugins/ManualGhostText/index';\n"],"names":["$createGhostTextNode","$isGhostTextNode","GhostText","GhostTextNode","GhostTextPlugin","ManualGhostTextPlugin","ghostTextClassNames","renderGhostText_unstable","useGhostTextStyles_unstable","useGhostText_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAGSA,oBAAoB;eAApBA,4BAAoB;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAFtCC,SAAS;eAATA,gBAAS;;IAE+BC,aAAa;eAAbA,qBAAa;;IAAEC,eAAe;eAAfA,uBAAe;;IAEtEC,qBAAqB;eAArBA,6BAAqB;;IAJVC,mBAAmB;eAAnBA,0BAAmB;;IAAEC,wBAAwB;eAAxBA,+BAAwB;;IAAEC,2BAA2B;eAA3BA,kCAA2B;;IAAEC,qBAAqB;eAArBA,4BAAqB;;;uBAAQ;wBAEtC;wBAEjD"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "ImperativeControlPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _index.ImperativeControlPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _index = require("./plugins/ImperativeControl/index");
|
|
7
12
|
//# sourceMappingURL=ImperativeControl.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ImperativeControl.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["ImperativeControl.ts"],"sourcesContent":["export type { ImperativeControlPluginProps, ImperativeControlPluginRef } from './plugins/ImperativeControl/index';\nexport { ImperativeControlPlugin } from './plugins/ImperativeControl/index';\n"],"names":["ImperativeControlPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,8BAAuB;;;uBAAQ"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "PasteUnfurlingPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _index.PasteUnfurlingPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _index = require("./plugins/PasteUnfurling/index");
|
|
7
12
|
//# sourceMappingURL=PasteUnfurling.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["PasteUnfurling.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["PasteUnfurling.ts"],"sourcesContent":["export type { PasteUnfurlingPluginProps } from './plugins/PasteUnfurling/index';\nexport { PasteUnfurlingPlugin } from './plugins/PasteUnfurling/index';\n"],"names":["PasteUnfurlingPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,2BAAoB;;;uBAAQ"}
|
|
@@ -2,10 +2,31 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
ChatInputEntity: function() {
|
|
13
|
+
return _ChatInputEntity.ChatInputEntity;
|
|
14
|
+
},
|
|
15
|
+
chatInputEntityClassNames: function() {
|
|
16
|
+
return _useChatInputEntityStylesstyles.chatInputEntityClassNames;
|
|
17
|
+
},
|
|
18
|
+
renderChatInputEntity_unstable: function() {
|
|
19
|
+
return _renderChatInputEntity.renderChatInputEntity_unstable;
|
|
20
|
+
},
|
|
21
|
+
useChatInputEntityStyles_unstable: function() {
|
|
22
|
+
return _useChatInputEntityStylesstyles.useChatInputEntityStyles_unstable;
|
|
23
|
+
},
|
|
24
|
+
useChatInputEntity_unstable: function() {
|
|
25
|
+
return _useChatInputEntity.useChatInputEntity_unstable;
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const _ChatInputEntity = require("./ChatInputEntity");
|
|
29
|
+
const _renderChatInputEntity = require("./renderChatInputEntity");
|
|
30
|
+
const _useChatInputEntity = require("./useChatInputEntity");
|
|
31
|
+
const _useChatInputEntityStylesstyles = require("./useChatInputEntityStyles.styles");
|
|
11
32
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { ChatInputEntity } from './ChatInputEntity';\nexport type { ChatInputEntityProps, ChatInputEntitySlots, ChatInputEntityState } from './ChatInputEntity.types';\nexport { renderChatInputEntity_unstable } from './renderChatInputEntity';\nexport { useChatInputEntity_unstable } from './useChatInputEntity';\nexport { chatInputEntityClassNames, useChatInputEntityStyles_unstable } from './useChatInputEntityStyles.styles';\n"],"names":["ChatInputEntity","chatInputEntityClassNames","renderChatInputEntity_unstable","useChatInputEntityStyles_unstable","useChatInputEntity_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAASA,eAAe;eAAfA,gCAAe;;IAIfC,yBAAyB;eAAzBA,yDAAyB;;IAFzBC,8BAA8B;eAA9BA,qDAA8B;;IAEHC,iCAAiC;eAAjCA,iEAAiC;;IAD5DC,2BAA2B;eAA3BA,+CAA2B;;;iCAHJ;uCAEe;oCACH;gDACiC"}
|
|
@@ -2,11 +2,41 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createChatInputTokenNode: function() {
|
|
13
|
+
return _ChatInputTokennode.$createChatInputTokenNode;
|
|
14
|
+
},
|
|
15
|
+
$isChatInputTokenNode: function() {
|
|
16
|
+
return _ChatInputTokennode.$isChatInputTokenNode;
|
|
17
|
+
},
|
|
18
|
+
ChatInputToken: function() {
|
|
19
|
+
return _ChatInputToken.ChatInputToken;
|
|
20
|
+
},
|
|
21
|
+
ChatInputTokenNode: function() {
|
|
22
|
+
return _ChatInputTokennode.ChatInputTokenNode;
|
|
23
|
+
},
|
|
24
|
+
chatInputTokenClassNames: function() {
|
|
25
|
+
return _useChatInputTokenStylesstyles.chatInputTokenClassNames;
|
|
26
|
+
},
|
|
27
|
+
renderChatInputToken_unstable: function() {
|
|
28
|
+
return _renderChatInputToken.renderChatInputToken_unstable;
|
|
29
|
+
},
|
|
30
|
+
useChatInputTokenStyles_unstable: function() {
|
|
31
|
+
return _useChatInputTokenStylesstyles.useChatInputTokenStyles_unstable;
|
|
32
|
+
},
|
|
33
|
+
useChatInputToken_unstable: function() {
|
|
34
|
+
return _useChatInputToken.useChatInputToken_unstable;
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
const _ChatInputToken = require("./ChatInputToken");
|
|
38
|
+
const _renderChatInputToken = require("./renderChatInputToken");
|
|
39
|
+
const _useChatInputToken = require("./useChatInputToken");
|
|
40
|
+
const _useChatInputTokenStylesstyles = require("./useChatInputTokenStyles.styles");
|
|
41
|
+
const _ChatInputTokennode = require("./ChatInputToken.node");
|
|
12
42
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { ChatInputToken } from './ChatInputToken';\nexport type { ChatInputTokenProps, ChatInputTokenSlots, ChatInputTokenState } from './ChatInputToken.types';\nexport { renderChatInputToken_unstable } from './renderChatInputToken';\nexport { useChatInputToken_unstable } from './useChatInputToken';\nexport { chatInputTokenClassNames, useChatInputTokenStyles_unstable } from './useChatInputTokenStyles.styles';\nexport type { SerializedChatInputTokenNode } from './ChatInputToken.node';\nexport { $createChatInputTokenNode, $isChatInputTokenNode, ChatInputTokenNode } from './ChatInputToken.node';\n"],"names":["$createChatInputTokenNode","$isChatInputTokenNode","ChatInputToken","ChatInputTokenNode","chatInputTokenClassNames","renderChatInputToken_unstable","useChatInputTokenStyles_unstable","useChatInputToken_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAMSA,yBAAyB;eAAzBA,6CAAyB;;IAAEC,qBAAqB;eAArBA,yCAAqB;;IANhDC,cAAc;eAAdA,8BAAc;;IAMoCC,kBAAkB;eAAlBA,sCAAkB;;IAFpEC,wBAAwB;eAAxBA,uDAAwB;;IAFxBC,6BAA6B;eAA7BA,mDAA6B;;IAEHC,gCAAgC;eAAhCA,+DAAgC;;IAD1DC,0BAA0B;eAA1BA,6CAA0B;;;gCAHJ;sCAEe;mCACH;+CACgC;oCAEU"}
|
|
@@ -2,10 +2,31 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
GhostText: function() {
|
|
13
|
+
return _GhostText.GhostText;
|
|
14
|
+
},
|
|
15
|
+
ghostTextClassNames: function() {
|
|
16
|
+
return _useGhostTextStylesstyles.ghostTextClassNames;
|
|
17
|
+
},
|
|
18
|
+
renderGhostText_unstable: function() {
|
|
19
|
+
return _renderGhostText.renderGhostText_unstable;
|
|
20
|
+
},
|
|
21
|
+
useGhostTextStyles_unstable: function() {
|
|
22
|
+
return _useGhostTextStylesstyles.useGhostTextStyles_unstable;
|
|
23
|
+
},
|
|
24
|
+
useGhostText_unstable: function() {
|
|
25
|
+
return _useGhostText.useGhostText_unstable;
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const _GhostText = require("./GhostText");
|
|
29
|
+
const _renderGhostText = require("./renderGhostText");
|
|
30
|
+
const _useGhostText = require("./useGhostText");
|
|
31
|
+
const _useGhostTextStylesstyles = require("./useGhostTextStyles.styles");
|
|
11
32
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export { GhostText } from './GhostText';\nexport type { GhostTextProps, GhostTextSlots, GhostTextState } from './GhostText.types';\nexport { renderGhostText_unstable } from './renderGhostText';\nexport { useGhostText_unstable } from './useGhostText';\nexport { ghostTextClassNames, useGhostTextStyles_unstable } from './useGhostTextStyles.styles';\n"],"names":["GhostText","ghostTextClassNames","renderGhostText_unstable","useGhostTextStyles_unstable","useGhostText_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAASA,SAAS;eAATA,oBAAS;;IAITC,mBAAmB;eAAnBA,6CAAmB;;IAFnBC,wBAAwB;eAAxBA,yCAAwB;;IAEHC,2BAA2B;eAA3BA,qDAA2B;;IADhDC,qBAAqB;eAArBA,mCAAqB;;;2BAHJ;iCAEe;8BACH;0CAC2B"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "BasicFunctionalityPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _BasicFunctionality.BasicFunctionalityPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _BasicFunctionality = require("./BasicFunctionality");
|
|
7
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { BasicFunctionalityPluginProps, BasicFunctionalityPluginRef } from './BasicFunctionality';\nexport { BasicFunctionalityPlugin } from './BasicFunctionality';\n"],"names":["BasicFunctionalityPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,4CAAwB;;;oCAAQ"}
|
|
@@ -2,8 +2,26 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createChatInputEntityNode: function() {
|
|
13
|
+
return _ChatInputEntitynode.$createChatInputEntityNode;
|
|
14
|
+
},
|
|
15
|
+
$isChatInputEntityNode: function() {
|
|
16
|
+
return _ChatInputEntitynode.$isChatInputEntityNode;
|
|
17
|
+
},
|
|
18
|
+
ChatInputEntityNode: function() {
|
|
19
|
+
return _ChatInputEntitynode.ChatInputEntityNode;
|
|
20
|
+
},
|
|
21
|
+
ChatInputEntityPlugin: function() {
|
|
22
|
+
return _ChatInputEntityPlugin.ChatInputEntityPlugin;
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
const _ChatInputEntitynode = require("./ChatInputEntity.node");
|
|
26
|
+
const _ChatInputEntityPlugin = require("./ChatInputEntityPlugin");
|
|
9
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { SerializedChatInputEntityNode } from './ChatInputEntity.node';\nexport { $createChatInputEntityNode, $isChatInputEntityNode, ChatInputEntityNode } from './ChatInputEntity.node';\nexport { ChatInputEntityPlugin } from './ChatInputEntityPlugin';\nexport type { ChatInputEntityPluginRef } from './ChatInputEntityPlugin.types';\n"],"names":["$createChatInputEntityNode","$isChatInputEntityNode","ChatInputEntityNode","ChatInputEntityPlugin"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IACSA,0BAA0B;eAA1BA,+CAA0B;;IAAEC,sBAAsB;eAAtBA,2CAAsB;;IAAEC,mBAAmB;eAAnBA,wCAAmB;;IACvEC,qBAAqB;eAArBA,4CAAqB;;;qCAD0D;uCAClD"}
|
|
@@ -2,7 +2,26 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
$createGhostTextNode: function() {
|
|
13
|
+
return _GhostTextnode.$createGhostTextNode;
|
|
14
|
+
},
|
|
15
|
+
$isGhostTextNode: function() {
|
|
16
|
+
return _GhostTextnode.$isGhostTextNode;
|
|
17
|
+
},
|
|
18
|
+
GhostTextNode: function() {
|
|
19
|
+
return _GhostTextnode.GhostTextNode;
|
|
20
|
+
},
|
|
21
|
+
GhostTextPlugin: function() {
|
|
22
|
+
return _GhostText.GhostTextPlugin;
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
const _GhostText = require("./GhostText");
|
|
26
|
+
const _GhostTextnode = require("./GhostText.node");
|
|
8
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { GhostTextPluginProps } from './GhostText';\nexport { GhostTextPlugin } from './GhostText';\nexport type { SerializedGhostTextNode } from './GhostText.node';\nexport { $createGhostTextNode, $isGhostTextNode, GhostTextNode } from './GhostText.node';\n"],"names":["$createGhostTextNode","$isGhostTextNode","GhostTextNode","GhostTextPlugin"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAGSA,oBAAoB;eAApBA,mCAAoB;;IAAEC,gBAAgB;eAAhBA,+BAAgB;;IAAEC,aAAa;eAAbA,4BAAa;;IAFrDC,eAAe;eAAfA,0BAAe;;;2BAAQ;+BAEsC"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "ImperativeControlPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _ImperativeControl.ImperativeControlPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _ImperativeControl = require("./ImperativeControl");
|
|
7
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { ImperativeControlPluginProps, ImperativeControlPluginRef } from './ImperativeControl';\nexport { ImperativeControlPlugin } from './ImperativeControl';\n"],"names":["ImperativeControlPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,0CAAuB;;;mCAAQ"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "ManualGhostTextPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _ManualGhostText.ManualGhostTextPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _ManualGhostText = require("./ManualGhostText");
|
|
7
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { ManualGhostTextProps, ManualGhostTextRef } from './ManualGhostText';\nexport { ManualGhostTextPlugin } from './ManualGhostText';\n"],"names":["ManualGhostTextPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,sCAAqB;;;iCAAQ"}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Object.defineProperty(exports, "PasteUnfurlingPlugin", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _PasteUnfurling.PasteUnfurlingPlugin;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _PasteUnfurling = require("./PasteUnfurling");
|
|
7
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["index.ts"],"sourcesContent":["export type { PasteUnfurlingPluginProps } from './PasteUnfurling';\nexport { PasteUnfurlingPlugin } from './PasteUnfurling';\n"],"names":["PasteUnfurlingPlugin"],"rangeMappings":";;;;;;;;;;","mappings":";;;;+BACSA;;;eAAAA,oCAAoB;;;gCAAQ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-copilot/react-chat-input-plugins",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "A Fluent AI package for React-based ChatInput plugins.",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@fluentui-copilot/chat-input-plugins": "^0.3.
|
|
15
|
+
"@fluentui-copilot/chat-input-plugins": "^0.3.4",
|
|
16
16
|
"@fluentui-copilot/react-text-editor": "^0.3.2",
|
|
17
17
|
"@fluentui-copilot/text-editor": "^0.2.1",
|
|
18
18
|
"@swc/helpers": "^0.5.1"
|