@fluentui-copilot/react-attachments 0.0.0-nightly-20240404-0406-2afa9891.1 → 0.0.0-nightly-20240408-0405-7fb364f9.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.
Files changed (101) hide show
  1. package/CHANGELOG.json +5 -5
  2. package/CHANGELOG.md +5 -5
  3. package/dist/index.d.ts +137 -1
  4. package/lib/AttachmentOverflowMenu.js +2 -0
  5. package/lib/AttachmentOverflowMenu.js.map +1 -0
  6. package/lib/AttachmentOverflowMenuButton.js +2 -0
  7. package/lib/AttachmentOverflowMenuButton.js.map +1 -0
  8. package/lib/AttachmentOverflowMenuItem.js +2 -0
  9. package/lib/AttachmentOverflowMenuItem.js.map +1 -0
  10. package/lib/components/AttachmentList/AttachmentList.types.js.map +1 -1
  11. package/lib/components/AttachmentOverflowMenu/AttachmentOverflowMenu.js +15 -0
  12. package/lib/components/AttachmentOverflowMenu/AttachmentOverflowMenu.js.map +1 -0
  13. package/lib/components/AttachmentOverflowMenu/AttachmentOverflowMenu.types.js +2 -0
  14. package/lib/components/AttachmentOverflowMenu/AttachmentOverflowMenu.types.js.map +1 -0
  15. package/lib/components/AttachmentOverflowMenu/index.js +6 -0
  16. package/lib/components/AttachmentOverflowMenu/index.js.map +1 -0
  17. package/lib/components/AttachmentOverflowMenu/renderAttachmentOverflowMenu.js +18 -0
  18. package/lib/components/AttachmentOverflowMenu/renderAttachmentOverflowMenu.js.map +1 -0
  19. package/lib/components/AttachmentOverflowMenu/useAttachmentOverflowMenu.js +24 -0
  20. package/lib/components/AttachmentOverflowMenu/useAttachmentOverflowMenu.js.map +1 -0
  21. package/lib/components/AttachmentOverflowMenu/useAttachmentOverflowMenuContextValues.js +17 -0
  22. package/lib/components/AttachmentOverflowMenu/useAttachmentOverflowMenuContextValues.js.map +1 -0
  23. package/lib/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.js +11 -0
  24. package/lib/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.js.map +1 -0
  25. package/lib/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.types.js +2 -0
  26. package/lib/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.types.js.map +1 -0
  27. package/lib/components/AttachmentOverflowMenuButton/index.js +6 -0
  28. package/lib/components/AttachmentOverflowMenuButton/index.js.map +1 -0
  29. package/lib/components/AttachmentOverflowMenuButton/renderAttachmentOverflowMenuButton.js +14 -0
  30. package/lib/components/AttachmentOverflowMenuButton/renderAttachmentOverflowMenuButton.js.map +1 -0
  31. package/lib/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButton.js +32 -0
  32. package/lib/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButton.js.map +1 -0
  33. package/lib/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButtonStyles.js +17 -0
  34. package/lib/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButtonStyles.js.map +1 -0
  35. package/lib/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.js +11 -0
  36. package/lib/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.js.map +1 -0
  37. package/lib/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.types.js +2 -0
  38. package/lib/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.types.js.map +1 -0
  39. package/lib/components/AttachmentOverflowMenuItem/index.js +6 -0
  40. package/lib/components/AttachmentOverflowMenuItem/index.js.map +1 -0
  41. package/lib/components/AttachmentOverflowMenuItem/renderAttachmentOverflowMenuItem.js +10 -0
  42. package/lib/components/AttachmentOverflowMenuItem/renderAttachmentOverflowMenuItem.js.map +1 -0
  43. package/lib/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItem.js +41 -0
  44. package/lib/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItem.js.map +1 -0
  45. package/lib/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItemStyles.js +14 -0
  46. package/lib/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItemStyles.js.map +1 -0
  47. package/lib/components/index.js +3 -0
  48. package/lib/components/index.js.map +1 -1
  49. package/lib/contexts/attachmentOverflowMenuContext.js +10 -0
  50. package/lib/contexts/attachmentOverflowMenuContext.js.map +1 -0
  51. package/lib/index.js +4 -0
  52. package/lib/index.js.map +1 -1
  53. package/lib-commonjs/AttachmentOverflowMenu.js +7 -0
  54. package/lib-commonjs/AttachmentOverflowMenu.js.map +1 -0
  55. package/lib-commonjs/AttachmentOverflowMenuButton.js +7 -0
  56. package/lib-commonjs/AttachmentOverflowMenuButton.js.map +1 -0
  57. package/lib-commonjs/AttachmentOverflowMenuItem.js +7 -0
  58. package/lib-commonjs/AttachmentOverflowMenuItem.js.map +1 -0
  59. package/lib-commonjs/components/AttachmentOverflowMenu/AttachmentOverflowMenu.js +24 -0
  60. package/lib-commonjs/components/AttachmentOverflowMenu/AttachmentOverflowMenu.js.map +1 -0
  61. package/lib-commonjs/components/AttachmentOverflowMenu/AttachmentOverflowMenu.types.js +5 -0
  62. package/lib-commonjs/components/AttachmentOverflowMenu/AttachmentOverflowMenu.types.js.map +1 -0
  63. package/lib-commonjs/components/AttachmentOverflowMenu/index.js +11 -0
  64. package/lib-commonjs/components/AttachmentOverflowMenu/index.js.map +1 -0
  65. package/lib-commonjs/components/AttachmentOverflowMenu/renderAttachmentOverflowMenu.js +21 -0
  66. package/lib-commonjs/components/AttachmentOverflowMenu/renderAttachmentOverflowMenu.js.map +1 -0
  67. package/lib-commonjs/components/AttachmentOverflowMenu/useAttachmentOverflowMenu.js +21 -0
  68. package/lib-commonjs/components/AttachmentOverflowMenu/useAttachmentOverflowMenu.js.map +1 -0
  69. package/lib-commonjs/components/AttachmentOverflowMenu/useAttachmentOverflowMenuContextValues.js +22 -0
  70. package/lib-commonjs/components/AttachmentOverflowMenu/useAttachmentOverflowMenuContextValues.js.map +1 -0
  71. package/lib-commonjs/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.js +21 -0
  72. package/lib-commonjs/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.js.map +1 -0
  73. package/lib-commonjs/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.types.js +5 -0
  74. package/lib-commonjs/components/AttachmentOverflowMenuButton/AttachmentOverflowMenuButton.types.js.map +1 -0
  75. package/lib-commonjs/components/AttachmentOverflowMenuButton/index.js +11 -0
  76. package/lib-commonjs/components/AttachmentOverflowMenuButton/index.js.map +1 -0
  77. package/lib-commonjs/components/AttachmentOverflowMenuButton/renderAttachmentOverflowMenuButton.js +24 -0
  78. package/lib-commonjs/components/AttachmentOverflowMenuButton/renderAttachmentOverflowMenuButton.js.map +1 -0
  79. package/lib-commonjs/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButton.js +28 -0
  80. package/lib-commonjs/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButton.js.map +1 -0
  81. package/lib-commonjs/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButtonStyles.js +37 -0
  82. package/lib-commonjs/components/AttachmentOverflowMenuButton/useAttachmentOverflowMenuButtonStyles.js.map +1 -0
  83. package/lib-commonjs/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.js +21 -0
  84. package/lib-commonjs/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.js.map +1 -0
  85. package/lib-commonjs/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.types.js +5 -0
  86. package/lib-commonjs/components/AttachmentOverflowMenuItem/AttachmentOverflowMenuItem.types.js.map +1 -0
  87. package/lib-commonjs/components/AttachmentOverflowMenuItem/index.js +11 -0
  88. package/lib-commonjs/components/AttachmentOverflowMenuItem/index.js.map +1 -0
  89. package/lib-commonjs/components/AttachmentOverflowMenuItem/renderAttachmentOverflowMenuItem.js +16 -0
  90. package/lib-commonjs/components/AttachmentOverflowMenuItem/renderAttachmentOverflowMenuItem.js.map +1 -0
  91. package/lib-commonjs/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItem.js +39 -0
  92. package/lib-commonjs/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItem.js.map +1 -0
  93. package/lib-commonjs/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItemStyles.js +28 -0
  94. package/lib-commonjs/components/AttachmentOverflowMenuItem/useAttachmentOverflowMenuItemStyles.js.map +1 -0
  95. package/lib-commonjs/components/index.js +3 -0
  96. package/lib-commonjs/components/index.js.map +1 -1
  97. package/lib-commonjs/contexts/attachmentOverflowMenuContext.js +30 -0
  98. package/lib-commonjs/contexts/attachmentOverflowMenuContext.js.map +1 -0
  99. package/lib-commonjs/index.js +52 -0
  100. package/lib-commonjs/index.js.map +1 -1
  101. package/package.json +2 -2
package/CHANGELOG.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@fluentui-copilot/react-attachments",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 04 Apr 2024 04:11:43 GMT",
6
- "tag": "@fluentui-copilot/react-attachments_v0.0.0-nightly-20240404-0406-2afa9891.1",
7
- "version": "0.0.0-nightly-20240404-0406-2afa9891.1",
5
+ "date": "Mon, 08 Apr 2024 04:11:07 GMT",
6
+ "tag": "@fluentui-copilot/react-attachments_v0.0.0-nightly-20240408-0405-7fb364f9.1",
7
+ "version": "0.0.0-nightly-20240408-0405-7fb364f9.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
@@ -16,8 +16,8 @@
16
16
  {
17
17
  "author": "beachball",
18
18
  "package": "@fluentui-copilot/react-attachments",
19
- "comment": "Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240404-0406-2afa9891.1",
20
- "commit": "3449a8e8731e9b9dee01156614d56a496e64dd11"
19
+ "comment": "Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240408-0405-7fb364f9.1",
20
+ "commit": "5541f57e8bde950950762412ada17525adbb697b"
21
21
  }
22
22
  ]
23
23
  }
package/CHANGELOG.md CHANGED
@@ -1,18 +1,18 @@
1
1
  # Change Log - @fluentui-copilot/react-attachments
2
2
 
3
- This log was last generated on Thu, 04 Apr 2024 04:11:43 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 08 Apr 2024 04:11:07 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightly-20240404-0406-2afa9891.1](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-attachments_v0.0.0-nightly-20240404-0406-2afa9891.1)
7
+ ## [0.0.0-nightly-20240408-0405-7fb364f9.1](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-attachments_v0.0.0-nightly-20240408-0405-7fb364f9.1)
8
8
 
9
- Thu, 04 Apr 2024 04:11:43 GMT
10
- [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-attachments_v0.8.3..@fluentui-copilot/react-attachments_v0.0.0-nightly-20240404-0406-2afa9891.1)
9
+ Mon, 08 Apr 2024 04:11:07 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-attachments_v0.8.3..@fluentui-copilot/react-attachments_v0.0.0-nightly-20240408-0405-7fb364f9.1)
11
11
 
12
12
  ### Changes
13
13
 
14
14
  - Release nightly ([commit](https://github.com/microsoft/fluentai/commit/not available) by fluentui-internal@service.microsoft.com)
15
- - Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240404-0406-2afa9891.1 ([commit](https://github.com/microsoft/fluentai/commit/3449a8e8731e9b9dee01156614d56a496e64dd11) by beachball)
15
+ - Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240408-0405-7fb364f9.1 ([commit](https://github.com/microsoft/fluentai/commit/5541f57e8bde950950762412ada17525adbb697b) by beachball)
16
16
 
17
17
  ## [0.8.3](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-attachments_v0.8.3)
18
18
 
package/dist/index.d.ts CHANGED
@@ -6,6 +6,11 @@ import type { Context } from '@fluentui/react-context-selector';
6
6
  import type { ContextSelector } from '@fluentui/react-context-selector';
7
7
  import { FC } from 'react';
8
8
  import type { ForwardRefComponent } from '@fluentui/react-components';
9
+ import type { MenuContextValues } from '@fluentui/react-components';
10
+ import type { MenuItem } from '@fluentui/react-components';
11
+ import type { MenuProps } from '@fluentui/react-components';
12
+ import type { MenuSlots } from '@fluentui/react-components';
13
+ import type { MenuState } from '@fluentui/react-components';
9
14
  import { Provider } from 'react';
10
15
  import { ProviderProps } from 'react';
11
16
  import * as React_2 from 'react';
@@ -39,7 +44,7 @@ declare type AttachmentListContextValues = {
39
44
  * AttachmentList Props
40
45
  */
41
46
  export declare type AttachmentListProps = ComponentProps<Partial<AttachmentListSlots>> & {
42
- onAttachmentDismiss?: (e: React.MouseEvent<HTMLAnchorElement | HTMLButtonElement>, data: AttachmentDismissedData) => void;
47
+ onAttachmentDismiss?: (e: React.MouseEvent<HTMLAnchorElement | HTMLButtonElement | HTMLDivElement>, data: AttachmentDismissedData) => void;
43
48
  };
44
49
 
45
50
  export declare const AttachmentListProvider: Provider<AttachmentListContextValue> & FC<ProviderProps<AttachmentListContextValue>>;
@@ -53,6 +58,75 @@ export declare type AttachmentListSlots = {
53
58
  */
54
59
  export declare type AttachmentListState = ComponentState<AttachmentListSlots> & Pick<AttachmentListProps, 'onAttachmentDismiss'>;
55
60
 
61
+ export declare const AttachmentOverflowMenu: React_2.FC<AttachmentOverflowMenuProps>;
62
+
63
+ export declare const AttachmentOverflowMenuButton: ForwardRefComponent<AttachmentOverflowMenuButtonProps>;
64
+
65
+ export declare const attachmentOverflowMenuButtonClassNames: SlotClassNames<AttachmentOverflowMenuButtonSlots>;
66
+
67
+ /**
68
+ * AttachmentOverflowMenuButton Props
69
+ */
70
+ export declare type AttachmentOverflowMenuButtonProps = ComponentProps<Partial<AttachmentOverflowMenuButtonSlots>>;
71
+
72
+ export declare type AttachmentOverflowMenuButtonSlots = {
73
+ root: NonNullable<Slot<'button'>>;
74
+ };
75
+
76
+ /**
77
+ * State used in rendering AttachmentOverflowMenuButton
78
+ */
79
+ export declare type AttachmentOverflowMenuButtonState = ComponentState<AttachmentOverflowMenuButtonSlots> & Pick<AttachmentOverflowMenuState, 'isOverflowing' | 'overflowCount'>;
80
+
81
+ export declare const AttachmentOverflowMenuContext: Context<AttachmentOverflowMenuContextValue>;
82
+
83
+ /**
84
+ * Context shared between AttachmentOverflowMenu and its children components
85
+ */
86
+ export declare type AttachmentOverflowMenuContextValue = Pick<AttachmentOverflowMenuState, 'isOverflowing' | 'overflowButtonRef' | 'overflowCount'>;
87
+
88
+ declare type AttachmentOverflowMenuContextValues = {
89
+ attachmentOverflowMenu: AttachmentOverflowMenuContextValue;
90
+ };
91
+
92
+ export declare const AttachmentOverflowMenuItem: ForwardRefComponent<AttachmentOverflowMenuItemProps>;
93
+
94
+ export declare const attachmentOverflowMenuItemClassNames: SlotClassNames<AttachmentOverflowMenuItemSlots>;
95
+
96
+ /**
97
+ * AttachmentOverflowMenuItem Props
98
+ */
99
+ export declare type AttachmentOverflowMenuItemProps = ComponentProps<Partial<AttachmentOverflowMenuItemSlots>> & Pick<AttachmentProps, 'id' | 'media'>;
100
+
101
+ export declare type AttachmentOverflowMenuItemSlots = {
102
+ root: NonNullable<Slot<typeof MenuItem>>;
103
+ };
104
+
105
+ /**
106
+ * State used in rendering AttachmentOverflowMenuItem
107
+ */
108
+ export declare type AttachmentOverflowMenuItemState = ComponentState<AttachmentOverflowMenuItemSlots> & {
109
+ isVisible: boolean;
110
+ };
111
+
112
+ /**
113
+ * AttachmentOverflowMenu Props
114
+ */
115
+ export declare type AttachmentOverflowMenuProps = MenuProps;
116
+
117
+ export declare const AttachmentOverflowMenuProvider: Provider<AttachmentOverflowMenuContextValue> & FC<ProviderProps<AttachmentOverflowMenuContextValue>>;
118
+
119
+ export declare type AttachmentOverflowMenuSlots = MenuSlots;
120
+
121
+ /**
122
+ * State used in rendering AttachmentOverflowMenu
123
+ */
124
+ export declare type AttachmentOverflowMenuState = MenuState & {
125
+ isOverflowing: boolean;
126
+ overflowButtonRef?: React.RefObject<HTMLButtonElement>;
127
+ overflowCount: number;
128
+ };
129
+
56
130
  /**
57
131
  * Attachment Props
58
132
  */
@@ -160,6 +234,24 @@ export declare const renderAttachment_unstable: (state: AttachmentState) => JSX.
160
234
  */
161
235
  export declare const renderAttachmentList_unstable: (state: AttachmentListState, contextValues: AttachmentListContextValues) => JSX.Element;
162
236
 
237
+ /**
238
+ * Render the final JSX of AttachmentOverflowMenu
239
+ */
240
+ export declare const renderAttachmentOverflowMenu_unstable: (state: AttachmentOverflowMenuState, contextValues: {
241
+ menuContextValues: MenuContextValues;
242
+ attachmentOverflowMenuContextValues: AttachmentOverflowMenuContextValues;
243
+ }) => JSX.Element | null;
244
+
245
+ /**
246
+ * Render the final JSX of AttachmentOverflowMenuButton
247
+ */
248
+ export declare const renderAttachmentOverflowMenuButton_unstable: (state: AttachmentOverflowMenuButtonState) => JSX.Element | null;
249
+
250
+ /**
251
+ * Render the final JSX of AttachmentOverflowMenuItem
252
+ */
253
+ export declare const renderAttachmentOverflowMenuItem_unstable: (state: AttachmentOverflowMenuItemState) => JSX.Element | null;
254
+
163
255
  /**
164
256
  * Render the final JSX of AttachmentTag
165
257
  */
@@ -204,6 +296,50 @@ export declare const useAttachmentListContext_unstable: <T>(selector: ContextSel
204
296
  */
205
297
  export declare const useAttachmentListStyles_unstable: (state: AttachmentListState) => AttachmentListState;
206
298
 
299
+ /**
300
+ * Create the state required to render AttachmentOverflowMenu.
301
+ *
302
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuStyles_unstable,
303
+ * before being passed to renderAttachmentOverflowMenu_unstable.
304
+ *
305
+ * @param props - props from this instance of AttachmentOverflowMenu
306
+ */
307
+ export declare const useAttachmentOverflowMenu_unstable: (props: AttachmentOverflowMenuProps) => AttachmentOverflowMenuState;
308
+
309
+ /**
310
+ * Create the state required to render AttachmentOverflowMenuButton.
311
+ *
312
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuButtonStyles_unstable,
313
+ * before being passed to renderAttachmentOverflowMenuButton_unstable.
314
+ *
315
+ * @param props - props from this instance of AttachmentOverflowMenuButton
316
+ * @param ref - reference to root HTMLElement of AttachmentOverflowMenuButton
317
+ */
318
+ export declare const useAttachmentOverflowMenuButton_unstable: (props: AttachmentOverflowMenuButtonProps, ref: React.Ref<HTMLButtonElement>) => AttachmentOverflowMenuButtonState;
319
+
320
+ /**
321
+ * Apply styling to the AttachmentOverflowMenuButton slots based on the state
322
+ */
323
+ export declare const useAttachmentOverflowMenuButtonStyles_unstable: (state: AttachmentOverflowMenuButtonState) => AttachmentOverflowMenuButtonState;
324
+
325
+ export declare const useAttachmentOverflowMenuContext_unstable: <T>(selector: ContextSelector<AttachmentOverflowMenuContextValue, T>) => T;
326
+
327
+ /**
328
+ * Create the state required to render AttachmentOverflowMenuItem.
329
+ *
330
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuItemStyles_unstable,
331
+ * before being passed to renderAttachmentOverflowMenuItem_unstable.
332
+ *
333
+ * @param props - props from this instance of AttachmentOverflowMenuItem
334
+ * @param ref - reference to root HTMLElement of AttachmentOverflowMenuItem
335
+ */
336
+ export declare const useAttachmentOverflowMenuItem_unstable: (props: AttachmentOverflowMenuItemProps, ref: React_2.Ref<HTMLDivElement>) => AttachmentOverflowMenuItemState;
337
+
338
+ /**
339
+ * Apply styling to the AttachmentList slots based on the state
340
+ */
341
+ export declare const useAttachmentOverflowMenuItemStyles_unstable: (state: AttachmentOverflowMenuItemState) => AttachmentOverflowMenuItemState;
342
+
207
343
  /**
208
344
  * Apply styling to the Attachment slots based on the state
209
345
  */
@@ -0,0 +1,2 @@
1
+ export * from './components/AttachmentOverflowMenu/index';
2
+ //# sourceMappingURL=AttachmentOverflowMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenu.ts"],"sourcesContent":["export * from './components/AttachmentOverflowMenu/index';\n"],"names":[],"mappings":"AAAA,cAAc,4CAA4C"}
@@ -0,0 +1,2 @@
1
+ export * from './components/AttachmentOverflowMenuButton/index';
2
+ //# sourceMappingURL=AttachmentOverflowMenuButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuButton.ts"],"sourcesContent":["export * from './components/AttachmentOverflowMenuButton/index';\n"],"names":[],"mappings":"AAAA,cAAc,kDAAkD"}
@@ -0,0 +1,2 @@
1
+ export * from './components/AttachmentOverflowMenuItem/index';
2
+ //# sourceMappingURL=AttachmentOverflowMenuItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuItem.ts"],"sourcesContent":["export * from './components/AttachmentOverflowMenuItem/index';\n"],"names":[],"mappings":"AAAA,cAAc,gDAAgD"}
@@ -1 +1 @@
1
- {"version":3,"sources":["AttachmentList.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-components';\nimport type { AttachmentListContextValue } from '../../contexts/attachmentListContext';\n\nexport type AttachmentListSlots = {\n root: Slot<'div'>;\n};\n\nexport type AttachmentDismissedData = {\n id: string;\n};\n\n/**\n * AttachmentList Props\n */\nexport type AttachmentListProps = ComponentProps<Partial<AttachmentListSlots>> & {\n onAttachmentDismiss?: (\n e: React.MouseEvent<HTMLAnchorElement | HTMLButtonElement>,\n data: AttachmentDismissedData,\n ) => void;\n};\n\n/**\n * State used in rendering AttachmentList\n */\nexport type AttachmentListState = ComponentState<AttachmentListSlots> &\n Pick<AttachmentListProps, 'onAttachmentDismiss'>;\n\nexport type AttachmentListContextValues = {\n attachmentList: AttachmentListContextValue;\n};\n"],"names":[],"mappings":"AAAA,WA6BE"}
1
+ {"version":3,"sources":["AttachmentList.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-components';\nimport type { AttachmentListContextValue } from '../../contexts/attachmentListContext';\n\nexport type AttachmentListSlots = {\n root: Slot<'div'>;\n};\n\nexport type AttachmentDismissedData = {\n id: string;\n};\n\n/**\n * AttachmentList Props\n */\nexport type AttachmentListProps = ComponentProps<Partial<AttachmentListSlots>> & {\n onAttachmentDismiss?: (\n e: React.MouseEvent<HTMLAnchorElement | HTMLButtonElement | HTMLDivElement>,\n data: AttachmentDismissedData,\n ) => void;\n};\n\n/**\n * State used in rendering AttachmentList\n */\nexport type AttachmentListState = ComponentState<AttachmentListSlots> &\n Pick<AttachmentListProps, 'onAttachmentDismiss'>;\n\nexport type AttachmentListContextValues = {\n attachmentList: AttachmentListContextValue;\n};\n"],"names":[],"mappings":"AAAA,WA6BE"}
@@ -0,0 +1,15 @@
1
+ import { useAttachmentOverflowMenu_unstable } from './useAttachmentOverflowMenu';
2
+ import { renderAttachmentOverflowMenu_unstable } from './renderAttachmentOverflowMenu';
3
+ import { useAttachmentOverflowMenuContextValues_unstable } from './useAttachmentOverflowMenuContextValues';
4
+ import { useMenuContextValues_unstable } from '@fluentui/react-components';
5
+ export const AttachmentOverflowMenu = props => {
6
+ const state = useAttachmentOverflowMenu_unstable(props);
7
+ const menuContextValues = useMenuContextValues_unstable(state);
8
+ const attachmentOverflowMenuContextValues = useAttachmentOverflowMenuContextValues_unstable(state);
9
+ return renderAttachmentOverflowMenu_unstable(state, {
10
+ menuContextValues,
11
+ attachmentOverflowMenuContextValues
12
+ });
13
+ };
14
+ AttachmentOverflowMenu.displayName = 'AttachmentOverflowMenu';
15
+ //# sourceMappingURL=AttachmentOverflowMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenu.tsx"],"sourcesContent":["import type * as React from 'react';\nimport { useAttachmentOverflowMenu_unstable } from './useAttachmentOverflowMenu';\nimport { renderAttachmentOverflowMenu_unstable } from './renderAttachmentOverflowMenu';\nimport { useAttachmentOverflowMenuContextValues_unstable } from './useAttachmentOverflowMenuContextValues';\nimport { useMenuContextValues_unstable } from '@fluentui/react-components';\nimport type { AttachmentOverflowMenuProps } from './AttachmentOverflowMenu.types';\n\nexport const AttachmentOverflowMenu: React.FC<AttachmentOverflowMenuProps> = props => {\n const state = useAttachmentOverflowMenu_unstable(props);\n const menuContextValues = useMenuContextValues_unstable(state);\n const attachmentOverflowMenuContextValues = useAttachmentOverflowMenuContextValues_unstable(state);\n\n return renderAttachmentOverflowMenu_unstable(state, { menuContextValues, attachmentOverflowMenuContextValues });\n};\n\nAttachmentOverflowMenu.displayName = 'AttachmentOverflowMenu';\n"],"names":["useAttachmentOverflowMenu_unstable","renderAttachmentOverflowMenu_unstable","useAttachmentOverflowMenuContextValues_unstable","useMenuContextValues_unstable","AttachmentOverflowMenu","props","state","menuContextValues","attachmentOverflowMenuContextValues","displayName"],"mappings":"AACA,SAASA,kCAAkC,QAAQ,8BAA8B;AACjF,SAASC,qCAAqC,QAAQ,iCAAiC;AACvF,SAASC,+CAA+C,QAAQ,2CAA2C;AAC3G,SAASC,6BAA6B,QAAQ,6BAA6B;AAG3E,OAAO,MAAMC,yBAAgEC,CAAAA;IAC3E,MAAMC,QAAQN,mCAAmCK;IACjD,MAAME,oBAAoBJ,8BAA8BG;IACxD,MAAME,sCAAsCN,gDAAgDI;IAE5F,OAAOL,sCAAsCK,OAAO;QAAEC;QAAmBC;IAAoC;AAC/G,EAAE;AAEFJ,uBAAuBK,WAAW,GAAG"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=AttachmentOverflowMenu.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenu.types.ts"],"sourcesContent":["import type { MenuProps, MenuSlots, MenuState } from '@fluentui/react-components';\nimport type { AttachmentOverflowMenuContextValue } from '../../contexts/attachmentOverflowMenuContext';\n\nexport type AttachmentOverflowMenuSlots = MenuSlots;\n\n/**\n * AttachmentOverflowMenu Props\n */\nexport type AttachmentOverflowMenuProps = MenuProps;\n\n/**\n * State used in rendering AttachmentOverflowMenu\n */\nexport type AttachmentOverflowMenuState = MenuState & {\n isOverflowing: boolean;\n overflowButtonRef?: React.RefObject<HTMLButtonElement>;\n overflowCount: number;\n};\n\nexport type AttachmentOverflowMenuContextValues = {\n attachmentOverflowMenu: AttachmentOverflowMenuContextValue;\n};\n"],"names":[],"mappings":"AAAA,WAqBE"}
@@ -0,0 +1,6 @@
1
+ export * from './AttachmentOverflowMenu';
2
+ export * from './AttachmentOverflowMenu.types';
3
+ export * from './renderAttachmentOverflowMenu';
4
+ export * from './useAttachmentOverflowMenu';
5
+ export * from './useAttachmentOverflowMenuContextValues';
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './AttachmentOverflowMenu';\nexport * from './AttachmentOverflowMenu.types';\nexport * from './renderAttachmentOverflowMenu';\nexport * from './useAttachmentOverflowMenu';\nexport * from './useAttachmentOverflowMenuContextValues';\n"],"names":[],"mappings":"AAAA,cAAc,2BAA2B;AACzC,cAAc,iCAAiC;AAC/C,cAAc,iCAAiC;AAC/C,cAAc,8BAA8B;AAC5C,cAAc,2CAA2C"}
@@ -0,0 +1,18 @@
1
+ import { jsx as _jsx } from "@fluentui/react-jsx-runtime/jsx-runtime";
2
+ import { assertSlots, renderMenu_unstable } from '@fluentui/react-components';
3
+ import { AttachmentOverflowMenuProvider } from '../../contexts/attachmentOverflowMenuContext';
4
+ /**
5
+ * Render the final JSX of AttachmentOverflowMenu
6
+ */
7
+ export const renderAttachmentOverflowMenu_unstable = (state, contextValues) => {
8
+ const {
9
+ menuContextValues,
10
+ attachmentOverflowMenuContextValues
11
+ } = contextValues;
12
+ assertSlots(state);
13
+ return state.isOverflowing ? /*#__PURE__*/_jsx(AttachmentOverflowMenuProvider, {
14
+ value: attachmentOverflowMenuContextValues.attachmentOverflowMenu,
15
+ children: renderMenu_unstable(state, menuContextValues)
16
+ }) : null;
17
+ };
18
+ //# sourceMappingURL=renderAttachmentOverflowMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderAttachmentOverflowMenu.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots, renderMenu_unstable } from '@fluentui/react-components';\nimport { AttachmentOverflowMenuProvider } from '../../contexts/attachmentOverflowMenuContext';\nimport type {\n AttachmentOverflowMenuState,\n AttachmentOverflowMenuSlots,\n AttachmentOverflowMenuContextValues,\n} from './AttachmentOverflowMenu.types';\nimport type { MenuContextValues } from '@fluentui/react-components';\n\n/**\n * Render the final JSX of AttachmentOverflowMenu\n */\nexport const renderAttachmentOverflowMenu_unstable = (\n state: AttachmentOverflowMenuState,\n contextValues: {\n menuContextValues: MenuContextValues;\n attachmentOverflowMenuContextValues: AttachmentOverflowMenuContextValues;\n },\n) => {\n const { menuContextValues, attachmentOverflowMenuContextValues } = contextValues;\n assertSlots<AttachmentOverflowMenuSlots>(state);\n\n return state.isOverflowing ? (\n <AttachmentOverflowMenuProvider value={attachmentOverflowMenuContextValues.attachmentOverflowMenu}>\n {renderMenu_unstable(state, menuContextValues)}\n </AttachmentOverflowMenuProvider>\n ) : null;\n};\n"],"names":["assertSlots","renderMenu_unstable","AttachmentOverflowMenuProvider","renderAttachmentOverflowMenu_unstable","state","contextValues","menuContextValues","attachmentOverflowMenuContextValues","isOverflowing","value","attachmentOverflowMenu"],"mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,EAAEC,mBAAmB,QAAQ,6BAA6B;AAC9E,SAASC,8BAA8B,QAAQ,+CAA+C;AAQ9F;;CAEC,GACD,OAAO,MAAMC,wCAAwC,CACnDC,OACAC;IAKA,MAAM,EAAEC,iBAAiB,EAAEC,mCAAmC,EAAE,GAAGF;IACnEL,YAAyCI;IAEzC,OAAOA,MAAMI,aAAa,iBACxB,KAACN;QAA+BO,OAAOF,oCAAoCG,sBAAsB;kBAC9FT,oBAAoBG,OAAOE;SAE5B;AACN,EAAE"}
@@ -0,0 +1,24 @@
1
+ import { useMenu_unstable, useOverflowMenu } from '@fluentui/react-components';
2
+ /**
3
+ * Create the state required to render AttachmentOverflowMenu.
4
+ *
5
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuStyles_unstable,
6
+ * before being passed to renderAttachmentOverflowMenu_unstable.
7
+ *
8
+ * @param props - props from this instance of AttachmentOverflowMenu
9
+ */
10
+ export const useAttachmentOverflowMenu_unstable = props => {
11
+ const menuState = useMenu_unstable(props);
12
+ const {
13
+ isOverflowing,
14
+ ref: overflowButtonRef,
15
+ overflowCount
16
+ } = useOverflowMenu();
17
+ return {
18
+ ...menuState,
19
+ isOverflowing,
20
+ overflowButtonRef,
21
+ overflowCount
22
+ };
23
+ };
24
+ //# sourceMappingURL=useAttachmentOverflowMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useAttachmentOverflowMenu.ts"],"sourcesContent":["import { useMenu_unstable, useOverflowMenu } from '@fluentui/react-components';\nimport type { AttachmentOverflowMenuProps, AttachmentOverflowMenuState } from './AttachmentOverflowMenu.types';\n\n/**\n * Create the state required to render AttachmentOverflowMenu.\n *\n * The returned state can be modified with hooks such as useAttachmentOverflowMenuStyles_unstable,\n * before being passed to renderAttachmentOverflowMenu_unstable.\n *\n * @param props - props from this instance of AttachmentOverflowMenu\n */\nexport const useAttachmentOverflowMenu_unstable = (props: AttachmentOverflowMenuProps): AttachmentOverflowMenuState => {\n const menuState = useMenu_unstable(props);\n const { isOverflowing, ref: overflowButtonRef, overflowCount } = useOverflowMenu<HTMLButtonElement>();\n\n return {\n ...menuState,\n isOverflowing,\n overflowButtonRef,\n overflowCount,\n };\n};\n"],"names":["useMenu_unstable","useOverflowMenu","useAttachmentOverflowMenu_unstable","props","menuState","isOverflowing","ref","overflowButtonRef","overflowCount"],"mappings":"AAAA,SAASA,gBAAgB,EAAEC,eAAe,QAAQ,6BAA6B;AAG/E;;;;;;;CAOC,GACD,OAAO,MAAMC,qCAAqC,CAACC;IACjD,MAAMC,YAAYJ,iBAAiBG;IACnC,MAAM,EAAEE,aAAa,EAAEC,KAAKC,iBAAiB,EAAEC,aAAa,EAAE,GAAGP;IAEjE,OAAO;QACL,GAAGG,SAAS;QACZC;QACAE;QACAC;IACF;AACF,EAAE"}
@@ -0,0 +1,17 @@
1
+ export function useAttachmentOverflowMenuContextValues_unstable(state) {
2
+ const {
3
+ isOverflowing,
4
+ overflowButtonRef,
5
+ overflowCount
6
+ } = state;
7
+ // This context is created with "@fluentui/react-context-selector", there is no sense to memoize it
8
+ const attachmentOverflowMenu = {
9
+ isOverflowing,
10
+ overflowButtonRef,
11
+ overflowCount
12
+ };
13
+ return {
14
+ attachmentOverflowMenu
15
+ };
16
+ }
17
+ //# sourceMappingURL=useAttachmentOverflowMenuContextValues.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useAttachmentOverflowMenuContextValues.ts"],"sourcesContent":["import type { AttachmentOverflowMenuContextValues, AttachmentOverflowMenuState } from './AttachmentOverflowMenu.types';\n\nexport function useAttachmentOverflowMenuContextValues_unstable(\n state: AttachmentOverflowMenuState,\n): AttachmentOverflowMenuContextValues {\n const { isOverflowing, overflowButtonRef, overflowCount } = state;\n\n // This context is created with \"@fluentui/react-context-selector\", there is no sense to memoize it\n const attachmentOverflowMenu = {\n isOverflowing,\n overflowButtonRef,\n overflowCount,\n };\n\n return { attachmentOverflowMenu };\n}\n"],"names":["useAttachmentOverflowMenuContextValues_unstable","state","isOverflowing","overflowButtonRef","overflowCount","attachmentOverflowMenu"],"mappings":"AAEA,OAAO,SAASA,gDACdC,KAAkC;IAElC,MAAM,EAAEC,aAAa,EAAEC,iBAAiB,EAAEC,aAAa,EAAE,GAAGH;IAE5D,mGAAmG;IACnG,MAAMI,yBAAyB;QAC7BH;QACAC;QACAC;IACF;IAEA,OAAO;QAAEC;IAAuB;AAClC"}
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ import { useAttachmentOverflowMenuButton_unstable } from './useAttachmentOverflowMenuButton';
3
+ import { renderAttachmentOverflowMenuButton_unstable } from './renderAttachmentOverflowMenuButton';
4
+ import { useAttachmentOverflowMenuButtonStyles_unstable } from './useAttachmentOverflowMenuButtonStyles';
5
+ export const AttachmentOverflowMenuButton = /*#__PURE__*/React.forwardRef((props, ref) => {
6
+ const state = useAttachmentOverflowMenuButton_unstable(props, ref);
7
+ useAttachmentOverflowMenuButtonStyles_unstable(state);
8
+ return renderAttachmentOverflowMenuButton_unstable(state);
9
+ });
10
+ AttachmentOverflowMenuButton.displayName = 'AttachmentOverflowMenuButton';
11
+ //# sourceMappingURL=AttachmentOverflowMenuButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuButton.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useAttachmentOverflowMenuButton_unstable } from './useAttachmentOverflowMenuButton';\nimport { renderAttachmentOverflowMenuButton_unstable } from './renderAttachmentOverflowMenuButton';\nimport { useAttachmentOverflowMenuButtonStyles_unstable } from './useAttachmentOverflowMenuButtonStyles';\nimport type { AttachmentOverflowMenuButtonProps } from './AttachmentOverflowMenuButton.types';\nimport type { ForwardRefComponent } from '@fluentui/react-components';\n\nexport const AttachmentOverflowMenuButton: ForwardRefComponent<AttachmentOverflowMenuButtonProps> = React.forwardRef(\n (props, ref) => {\n const state = useAttachmentOverflowMenuButton_unstable(props, ref);\n\n useAttachmentOverflowMenuButtonStyles_unstable(state);\n return renderAttachmentOverflowMenuButton_unstable(state);\n },\n);\n\nAttachmentOverflowMenuButton.displayName = 'AttachmentOverflowMenuButton';\n"],"names":["React","useAttachmentOverflowMenuButton_unstable","renderAttachmentOverflowMenuButton_unstable","useAttachmentOverflowMenuButtonStyles_unstable","AttachmentOverflowMenuButton","forwardRef","props","ref","state","displayName"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,wCAAwC,QAAQ,oCAAoC;AAC7F,SAASC,2CAA2C,QAAQ,uCAAuC;AACnG,SAASC,8CAA8C,QAAQ,0CAA0C;AAIzG,OAAO,MAAMC,6CAAuFJ,MAAMK,UAAU,CAClH,CAACC,OAAOC;IACN,MAAMC,QAAQP,yCAAyCK,OAAOC;IAE9DJ,+CAA+CK;IAC/C,OAAON,4CAA4CM;AACrD,GACA;AAEFJ,6BAA6BK,WAAW,GAAG"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=AttachmentOverflowMenuButton.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuButton.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-components';\nimport type { AttachmentOverflowMenuState } from '../AttachmentOverflowMenu';\n\nexport type AttachmentOverflowMenuButtonSlots = {\n root: NonNullable<Slot<'button'>>;\n};\n\n/**\n * AttachmentOverflowMenuButton Props\n */\nexport type AttachmentOverflowMenuButtonProps = ComponentProps<Partial<AttachmentOverflowMenuButtonSlots>>;\n\n/**\n * State used in rendering AttachmentOverflowMenuButton\n */\nexport type AttachmentOverflowMenuButtonState = ComponentState<AttachmentOverflowMenuButtonSlots> &\n Pick<AttachmentOverflowMenuState, 'isOverflowing' | 'overflowCount'>;\n"],"names":[],"mappings":"AAAA,WAgBuE"}
@@ -0,0 +1,6 @@
1
+ export * from './AttachmentOverflowMenuButton';
2
+ export * from './AttachmentOverflowMenuButton.types';
3
+ export * from './renderAttachmentOverflowMenuButton';
4
+ export * from './useAttachmentOverflowMenuButton';
5
+ export * from './useAttachmentOverflowMenuButtonStyles';
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './AttachmentOverflowMenuButton';\nexport * from './AttachmentOverflowMenuButton.types';\nexport * from './renderAttachmentOverflowMenuButton';\nexport * from './useAttachmentOverflowMenuButton';\nexport * from './useAttachmentOverflowMenuButtonStyles';\n"],"names":[],"mappings":"AAAA,cAAc,iCAAiC;AAC/C,cAAc,uCAAuC;AACrD,cAAc,uCAAuC;AACrD,cAAc,oCAAoC;AAClD,cAAc,0CAA0C"}
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "@fluentui/react-jsx-runtime/jsx-runtime";
2
+ import { MenuTrigger, assertSlots } from '@fluentui/react-components';
3
+ /**
4
+ * Render the final JSX of AttachmentOverflowMenuButton
5
+ */
6
+ export const renderAttachmentOverflowMenuButton_unstable = state => {
7
+ assertSlots(state);
8
+ return state.isOverflowing ? /*#__PURE__*/_jsx(MenuTrigger, {
9
+ children: /*#__PURE__*/_jsxs(state.root, {
10
+ children: [" +", state.overflowCount, " "]
11
+ })
12
+ }) : null;
13
+ };
14
+ //# sourceMappingURL=renderAttachmentOverflowMenuButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderAttachmentOverflowMenuButton.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { MenuTrigger, assertSlots } from '@fluentui/react-components';\nimport type {\n AttachmentOverflowMenuButtonState,\n AttachmentOverflowMenuButtonSlots,\n} from './AttachmentOverflowMenuButton.types';\n\n/**\n * Render the final JSX of AttachmentOverflowMenuButton\n */\nexport const renderAttachmentOverflowMenuButton_unstable = (state: AttachmentOverflowMenuButtonState) => {\n assertSlots<AttachmentOverflowMenuButtonSlots>(state);\n\n return state.isOverflowing ? (\n <MenuTrigger>\n <state.root> +{state.overflowCount} </state.root>\n </MenuTrigger>\n ) : null;\n};\n"],"names":["MenuTrigger","assertSlots","renderAttachmentOverflowMenuButton_unstable","state","isOverflowing","root","overflowCount"],"mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,EAAEC,WAAW,QAAQ,6BAA6B;AAMtE;;CAEC,GACD,OAAO,MAAMC,8CAA8C,CAACC;IAC1DF,YAA+CE;IAE/C,OAAOA,MAAMC,aAAa,iBACxB,KAACJ;kBACC,cAAA,MAACG,MAAME,IAAI;;gBAAC;gBAAGF,MAAMG,aAAa;gBAAC;;;SAEnC;AACN,EAAE"}
@@ -0,0 +1,32 @@
1
+ import { getIntrinsicElementProps, slot, useMergedRefs } from '@fluentui/react-components';
2
+ import { useAttachmentOverflowMenuContext_unstable } from '../../contexts/attachmentOverflowMenuContext';
3
+ /**
4
+ * Create the state required to render AttachmentOverflowMenuButton.
5
+ *
6
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuButtonStyles_unstable,
7
+ * before being passed to renderAttachmentOverflowMenuButton_unstable.
8
+ *
9
+ * @param props - props from this instance of AttachmentOverflowMenuButton
10
+ * @param ref - reference to root HTMLElement of AttachmentOverflowMenuButton
11
+ */
12
+ export const useAttachmentOverflowMenuButton_unstable = (props, ref) => {
13
+ const {
14
+ isOverflowing,
15
+ overflowCount,
16
+ overflowButtonRef
17
+ } = useAttachmentOverflowMenuContext_unstable(context => context);
18
+ return {
19
+ components: {
20
+ root: 'button'
21
+ },
22
+ root: slot.always(getIntrinsicElementProps('button', {
23
+ ref: useMergedRefs(ref, overflowButtonRef),
24
+ ...props
25
+ }), {
26
+ elementType: 'button'
27
+ }),
28
+ isOverflowing,
29
+ overflowCount
30
+ };
31
+ };
32
+ //# sourceMappingURL=useAttachmentOverflowMenuButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useAttachmentOverflowMenuButton.ts"],"sourcesContent":["import { getIntrinsicElementProps, slot, useMergedRefs } from '@fluentui/react-components';\nimport { useAttachmentOverflowMenuContext_unstable } from '../../contexts/attachmentOverflowMenuContext';\nimport type {\n AttachmentOverflowMenuButtonProps,\n AttachmentOverflowMenuButtonState,\n} from './AttachmentOverflowMenuButton.types';\n\n/**\n * Create the state required to render AttachmentOverflowMenuButton.\n *\n * The returned state can be modified with hooks such as useAttachmentOverflowMenuButtonStyles_unstable,\n * before being passed to renderAttachmentOverflowMenuButton_unstable.\n *\n * @param props - props from this instance of AttachmentOverflowMenuButton\n * @param ref - reference to root HTMLElement of AttachmentOverflowMenuButton\n */\nexport const useAttachmentOverflowMenuButton_unstable = (\n props: AttachmentOverflowMenuButtonProps,\n ref: React.Ref<HTMLButtonElement>,\n): AttachmentOverflowMenuButtonState => {\n const { isOverflowing, overflowCount, overflowButtonRef } = useAttachmentOverflowMenuContext_unstable(\n context => context,\n );\n\n return {\n components: {\n root: 'button',\n },\n root: slot.always(\n getIntrinsicElementProps('button', {\n ref: useMergedRefs(ref, overflowButtonRef),\n ...props,\n }),\n { elementType: 'button' },\n ),\n isOverflowing,\n overflowCount,\n };\n};\n"],"names":["getIntrinsicElementProps","slot","useMergedRefs","useAttachmentOverflowMenuContext_unstable","useAttachmentOverflowMenuButton_unstable","props","ref","isOverflowing","overflowCount","overflowButtonRef","context","components","root","always","elementType"],"mappings":"AAAA,SAASA,wBAAwB,EAAEC,IAAI,EAAEC,aAAa,QAAQ,6BAA6B;AAC3F,SAASC,yCAAyC,QAAQ,+CAA+C;AAMzG;;;;;;;;CAQC,GACD,OAAO,MAAMC,2CAA2C,CACtDC,OACAC;IAEA,MAAM,EAAEC,aAAa,EAAEC,aAAa,EAAEC,iBAAiB,EAAE,GAAGN,0CAC1DO,CAAAA,UAAWA;IAGb,OAAO;QACLC,YAAY;YACVC,MAAM;QACR;QACAA,MAAMX,KAAKY,MAAM,CACfb,yBAAyB,UAAU;YACjCM,KAAKJ,cAAcI,KAAKG;YACxB,GAAGJ,KAAK;QACV,IACA;YAAES,aAAa;QAAS;QAE1BP;QACAC;IACF;AACF,EAAE"}
@@ -0,0 +1,17 @@
1
+ import { __resetStyles, mergeClasses, tokens, typographyStyles } from '@fluentui/react-components';
2
+ export const attachmentOverflowMenuButtonClassNames = {
3
+ root: 'fai-AttachmentOverflowMenuButton'
4
+ };
5
+ const useRootBaseClassName = __resetStyles("r1hzuvbo", null, {
6
+ r: [".r1hzuvbo{color:var(--colorNeutralForeground1);align-items:center;background-color:var(--colorNeutralBackground1);border:var(--strokeWidthThin) solid var(--colorNeutralStroke1);border-radius:var(--borderRadiusMedium);box-sizing:border-box;column-gap:var(--spacingHorizontalSNudge);cursor:pointer;display:inline-flex;flex-wrap:nowrap;font-family:var(--fontFamilyBase);font-size:var(--fontSizeBase300);font-weight:var(--fontWeightRegular);justify-content:center;padding:var(--spacingVerticalS);vertical-align:middle;}", ".r1hzuvbo:hover{cursor:pointer;background-color:var(--colorNeutralBackground3Hover);color:var(--colorNeutralForeground2Hover);}", ".r1hzuvbo:active{background-color:var(--colorNeutralBackground3Pressed);color:var(--colorNeutralForeground2Pressed);}"],
7
+ s: ["@media (forced-colors: active){.r1hzuvbo:hover{background-color:HighlightText;}.r1hzuvbo:active{background-color:HighlightText;}}"]
8
+ });
9
+ /**
10
+ * Apply styling to the AttachmentOverflowMenuButton slots based on the state
11
+ */
12
+ export const useAttachmentOverflowMenuButtonStyles_unstable = state => {
13
+ const rootBaseClassName = useRootBaseClassName();
14
+ state.root.className = mergeClasses(attachmentOverflowMenuButtonClassNames.root, rootBaseClassName, state.root.className);
15
+ return state;
16
+ };
17
+ //# sourceMappingURL=useAttachmentOverflowMenuButtonStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useAttachmentOverflowMenuButtonStyles.ts"],"sourcesContent":["import { makeResetStyles, mergeClasses, tokens, typographyStyles } from '@fluentui/react-components';\nimport type {\n AttachmentOverflowMenuButtonSlots,\n AttachmentOverflowMenuButtonState,\n} from './AttachmentOverflowMenuButton.types';\nimport type { SlotClassNames } from '@fluentui/react-components';\n\nexport const attachmentOverflowMenuButtonClassNames: SlotClassNames<AttachmentOverflowMenuButtonSlots> = {\n root: 'fai-AttachmentOverflowMenuButton',\n};\n\nconst useRootBaseClassName = makeResetStyles({\n color: tokens.colorNeutralForeground1,\n alignItems: 'center',\n backgroundColor: tokens.colorNeutralBackground1,\n border: `${tokens.strokeWidthThin} solid ${tokens.colorNeutralStroke1}`,\n borderRadius: tokens.borderRadiusMedium,\n boxSizing: 'border-box',\n columnGap: tokens.spacingHorizontalSNudge,\n cursor: 'pointer',\n display: 'inline-flex',\n flexWrap: 'nowrap',\n fontFamily: typographyStyles.body1.fontFamily,\n fontSize: typographyStyles.body1.fontSize,\n fontWeight: typographyStyles.body1.fontWeight,\n justifyContent: 'center',\n padding: tokens.spacingVerticalS,\n verticalAlign: 'middle',\n\n ':hover': {\n cursor: 'pointer',\n backgroundColor: tokens.colorNeutralBackground3Hover,\n color: tokens.colorNeutralForeground2Hover,\n },\n ':active': {\n backgroundColor: tokens.colorNeutralBackground3Pressed,\n color: tokens.colorNeutralForeground2Pressed,\n },\n '@media (forced-colors: active)': {\n ':hover': {\n backgroundColor: 'HighlightText',\n },\n ':active': {\n backgroundColor: 'HighlightText',\n },\n },\n});\n/**\n * Apply styling to the AttachmentOverflowMenuButton slots based on the state\n */\nexport const useAttachmentOverflowMenuButtonStyles_unstable = (\n state: AttachmentOverflowMenuButtonState,\n): AttachmentOverflowMenuButtonState => {\n const rootBaseClassName = useRootBaseClassName();\n\n state.root.className = mergeClasses(\n attachmentOverflowMenuButtonClassNames.root,\n rootBaseClassName,\n state.root.className,\n );\n\n return state;\n};\n"],"names":["makeResetStyles","mergeClasses","tokens","typographyStyles","attachmentOverflowMenuButtonClassNames","root","useRootBaseClassName","color","colorNeutralForeground1","alignItems","backgroundColor","colorNeutralBackground1","border","strokeWidthThin","colorNeutralStroke1","borderRadius","borderRadiusMedium","boxSizing","columnGap","spacingHorizontalSNudge","cursor","display","flexWrap","fontFamily","body1","fontSize","fontWeight","justifyContent","padding","spacingVerticalS","verticalAlign","colorNeutralBackground3Hover","colorNeutralForeground2Hover","colorNeutralBackground3Pressed","colorNeutralForeground2Pressed","useAttachmentOverflowMenuButtonStyles_unstable","state","rootBaseClassName","className"],"mappings":"AAAA,SAASA,eAAe,EAAEC,YAAY,EAAEC,MAAM,EAAEC,gBAAgB,QAAQ,6BAA6B;AAOrG,OAAO,MAAMC,yCAA4F;IACvGC,MAAM;AACR,EAAE;AAEF,MAAMC,uBAAuBN,gBAAgB;IAC3CO,OAAOL,OAAOM,uBAAuB;IACrCC,YAAY;IACZC,iBAAiBR,OAAOS,uBAAuB;IAC/CC,QAAQ,CAAC,EAAEV,OAAOW,eAAe,CAAC,OAAO,EAAEX,OAAOY,mBAAmB,CAAC,CAAC;IACvEC,cAAcb,OAAOc,kBAAkB;IACvCC,WAAW;IACXC,WAAWhB,OAAOiB,uBAAuB;IACzCC,QAAQ;IACRC,SAAS;IACTC,UAAU;IACVC,YAAYpB,iBAAiBqB,KAAK,CAACD,UAAU;IAC7CE,UAAUtB,iBAAiBqB,KAAK,CAACC,QAAQ;IACzCC,YAAYvB,iBAAiBqB,KAAK,CAACE,UAAU;IAC7CC,gBAAgB;IAChBC,SAAS1B,OAAO2B,gBAAgB;IAChCC,eAAe;IAEf,UAAU;QACRV,QAAQ;QACRV,iBAAiBR,OAAO6B,4BAA4B;QACpDxB,OAAOL,OAAO8B,4BAA4B;IAC5C;IACA,WAAW;QACTtB,iBAAiBR,OAAO+B,8BAA8B;QACtD1B,OAAOL,OAAOgC,8BAA8B;IAC9C;IACA,kCAAkC;QAChC,UAAU;YACRxB,iBAAiB;QACnB;QACA,WAAW;YACTA,iBAAiB;QACnB;IACF;AACF;AACA;;CAEC,GACD,OAAO,MAAMyB,iDAAiD,CAC5DC;IAEA,MAAMC,oBAAoB/B;IAE1B8B,MAAM/B,IAAI,CAACiC,SAAS,GAAGrC,aACrBG,uCAAuCC,IAAI,EAC3CgC,mBACAD,MAAM/B,IAAI,CAACiC,SAAS;IAGtB,OAAOF;AACT,EAAE"}
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ import { useAttachmentOverflowMenuItem_unstable } from './useAttachmentOverflowMenuItem';
3
+ import { renderAttachmentOverflowMenuItem_unstable } from './renderAttachmentOverflowMenuItem';
4
+ import { useAttachmentOverflowMenuItemStyles_unstable } from './useAttachmentOverflowMenuItemStyles';
5
+ export const AttachmentOverflowMenuItem = /*#__PURE__*/React.forwardRef((props, ref) => {
6
+ const state = useAttachmentOverflowMenuItem_unstable(props, ref);
7
+ useAttachmentOverflowMenuItemStyles_unstable(state);
8
+ return renderAttachmentOverflowMenuItem_unstable(state);
9
+ });
10
+ AttachmentOverflowMenuItem.displayName = 'AttachmentOverflowMenuItem';
11
+ //# sourceMappingURL=AttachmentOverflowMenuItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuItem.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useAttachmentOverflowMenuItem_unstable } from './useAttachmentOverflowMenuItem';\nimport { renderAttachmentOverflowMenuItem_unstable } from './renderAttachmentOverflowMenuItem';\nimport type { AttachmentOverflowMenuItemProps } from './AttachmentOverflowMenuItem.types';\nimport type { ForwardRefComponent } from '@fluentui/react-components';\nimport { useAttachmentOverflowMenuItemStyles_unstable } from './useAttachmentOverflowMenuItemStyles';\nexport const AttachmentOverflowMenuItem: ForwardRefComponent<AttachmentOverflowMenuItemProps> = React.forwardRef(\n (props, ref) => {\n const state = useAttachmentOverflowMenuItem_unstable(props, ref);\n useAttachmentOverflowMenuItemStyles_unstable(state);\n\n return renderAttachmentOverflowMenuItem_unstable(state);\n },\n);\n\nAttachmentOverflowMenuItem.displayName = 'AttachmentOverflowMenuItem';\n"],"names":["React","useAttachmentOverflowMenuItem_unstable","renderAttachmentOverflowMenuItem_unstable","useAttachmentOverflowMenuItemStyles_unstable","AttachmentOverflowMenuItem","forwardRef","props","ref","state","displayName"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,sCAAsC,QAAQ,kCAAkC;AACzF,SAASC,yCAAyC,QAAQ,qCAAqC;AAG/F,SAASC,4CAA4C,QAAQ,wCAAwC;AACrG,OAAO,MAAMC,2CAAmFJ,MAAMK,UAAU,CAC9G,CAACC,OAAOC;IACN,MAAMC,QAAQP,uCAAuCK,OAAOC;IAC5DJ,6CAA6CK;IAE7C,OAAON,0CAA0CM;AACnD,GACA;AAEFJ,2BAA2BK,WAAW,GAAG"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=AttachmentOverflowMenuItem.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["AttachmentOverflowMenuItem.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, MenuItem, Slot } from '@fluentui/react-components';\nimport type { AttachmentProps } from '../Attachment';\n\nexport type AttachmentOverflowMenuItemSlots = {\n root: NonNullable<Slot<typeof MenuItem>>;\n};\n\n/**\n * AttachmentOverflowMenuItem Props\n */\nexport type AttachmentOverflowMenuItemProps = ComponentProps<Partial<AttachmentOverflowMenuItemSlots>> &\n Pick<AttachmentProps, 'id' | 'media'>;\n\n/**\n * State used in rendering AttachmentOverflowMenuItem\n */\nexport type AttachmentOverflowMenuItemState = ComponentState<AttachmentOverflowMenuItemSlots> & {\n isVisible: boolean;\n};\n"],"names":[],"mappings":"AAAA,WAkBE"}
@@ -0,0 +1,6 @@
1
+ export * from './AttachmentOverflowMenuItem';
2
+ export * from './AttachmentOverflowMenuItem.types';
3
+ export * from './renderAttachmentOverflowMenuItem';
4
+ export * from './useAttachmentOverflowMenuItem';
5
+ export * from './useAttachmentOverflowMenuItemStyles';
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './AttachmentOverflowMenuItem';\nexport * from './AttachmentOverflowMenuItem.types';\nexport * from './renderAttachmentOverflowMenuItem';\nexport * from './useAttachmentOverflowMenuItem';\nexport * from './useAttachmentOverflowMenuItemStyles';\n"],"names":[],"mappings":"AAAA,cAAc,+BAA+B;AAC7C,cAAc,qCAAqC;AACnD,cAAc,qCAAqC;AACnD,cAAc,kCAAkC;AAChD,cAAc,wCAAwC"}
@@ -0,0 +1,10 @@
1
+ import { jsx as _jsx } from "@fluentui/react-jsx-runtime/jsx-runtime";
2
+ import { assertSlots } from '@fluentui/react-components';
3
+ /**
4
+ * Render the final JSX of AttachmentOverflowMenuItem
5
+ */
6
+ export const renderAttachmentOverflowMenuItem_unstable = state => {
7
+ assertSlots(state);
8
+ return !state.isVisible ? /*#__PURE__*/_jsx(state.root, {}) : null;
9
+ };
10
+ //# sourceMappingURL=renderAttachmentOverflowMenuItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderAttachmentOverflowMenuItem.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-components';\nimport type {\n AttachmentOverflowMenuItemState,\n AttachmentOverflowMenuItemSlots,\n} from './AttachmentOverflowMenuItem.types';\n\n/**\n * Render the final JSX of AttachmentOverflowMenuItem\n */\nexport const renderAttachmentOverflowMenuItem_unstable = (state: AttachmentOverflowMenuItemState) => {\n assertSlots<AttachmentOverflowMenuItemSlots>(state);\n\n return !state.isVisible ? <state.root /> : null;\n};\n"],"names":["assertSlots","renderAttachmentOverflowMenuItem_unstable","state","isVisible","root"],"mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,6BAA6B;AAMzD;;CAEC,GACD,OAAO,MAAMC,4CAA4C,CAACC;IACxDF,YAA6CE;IAE7C,OAAO,CAACA,MAAMC,SAAS,iBAAG,KAACD,MAAME,IAAI,QAAM;AAC7C,EAAE"}
@@ -0,0 +1,41 @@
1
+ import * as React from 'react';
2
+ import { MenuItem, mergeCallbacks, slot, useIsOverflowItemVisible } from '@fluentui/react-components';
3
+ import { Dismiss20Filled, Dismiss20Regular, bundleIcon } from '@fluentui/react-icons';
4
+ import { useAttachmentListContext_unstable } from '../../contexts/attachmentListContext';
5
+ /**
6
+ * Create the state required to render AttachmentOverflowMenuItem.
7
+ *
8
+ * The returned state can be modified with hooks such as useAttachmentOverflowMenuItemStyles_unstable,
9
+ * before being passed to renderAttachmentOverflowMenuItem_unstable.
10
+ *
11
+ * @param props - props from this instance of AttachmentOverflowMenuItem
12
+ * @param ref - reference to root HTMLElement of AttachmentOverflowMenuItem
13
+ */
14
+ export const useAttachmentOverflowMenuItem_unstable = (props, ref) => {
15
+ const {
16
+ id,
17
+ media
18
+ } = props;
19
+ const DismissIcon = bundleIcon(Dismiss20Filled, Dismiss20Regular);
20
+ const isVisible = useIsOverflowItemVisible(id);
21
+ const onAttachmentDismiss = useAttachmentListContext_unstable(context => context.onAttachmentDismiss);
22
+ const root = slot.always({
23
+ ref,
24
+ icon: media,
25
+ secondaryContent: /*#__PURE__*/React.createElement(DismissIcon, null),
26
+ ...props
27
+ }, {
28
+ elementType: MenuItem
29
+ });
30
+ root.onClick = mergeCallbacks(root.onClick, ev => onAttachmentDismiss === null || onAttachmentDismiss === void 0 ? void 0 : onAttachmentDismiss(ev, {
31
+ id
32
+ }));
33
+ return {
34
+ components: {
35
+ root: MenuItem
36
+ },
37
+ root,
38
+ isVisible
39
+ };
40
+ };
41
+ //# sourceMappingURL=useAttachmentOverflowMenuItem.js.map