@veltdev/react 4.0.0-beta.24 → 4.0.0-beta.25

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 (28) hide show
  1. package/cjs/index.js +84 -32
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  4. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  5. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  6. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  7. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  8. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  9. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  10. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  11. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  12. package/cjs/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  13. package/cjs/types/constants.d.ts +1 -1
  14. package/esm/index.js +84 -32
  15. package/esm/index.js.map +1 -1
  16. package/esm/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  17. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  18. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  19. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  20. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  21. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  22. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  23. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  24. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  25. package/esm/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  26. package/esm/types/constants.d.ts +1 -1
  27. package/index.d.ts +420 -22
  28. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1996,37 +1996,256 @@ interface IVeltInlineCommentsSectionWireframe extends React$1.FC<IVeltInlineComm
1996
1996
  }
1997
1997
  declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
1998
1998
 
1999
- interface IVeltNotificationsPanelCloseButtonWireframeProps extends IVeltWireframeCommonProps {
1999
+ interface IVeltNotificationsPanelContentAllListItemContentWireframeProps extends IVeltWireframeCommonProps {
2000
+ }
2001
+ interface IVeltNotificationsPanelContentAllListItemContentWireframe extends React$1.FC<IVeltNotificationsPanelContentAllListItemContentWireframeProps> {
2002
+ }
2003
+
2004
+ interface IVeltNotificationsPanelContentAllListItemLabelWireframeProps extends IVeltWireframeCommonProps {
2005
+ }
2006
+ interface IVeltNotificationsPanelContentAllListItemLabelWireframe extends React$1.FC<IVeltNotificationsPanelContentAllListItemLabelWireframeProps> {
2007
+ }
2008
+
2009
+ interface IVeltNotificationsPanelContentAllListItemWireframeProps extends IVeltWireframeCommonProps {
2010
+ }
2011
+ interface IVeltNotificationsPanelContentAllListItemWireframe extends React$1.FC<IVeltNotificationsPanelContentAllListItemWireframeProps> {
2012
+ Label: IVeltNotificationsPanelContentAllListItemLabelWireframe;
2013
+ Content: IVeltNotificationsPanelContentAllListItemContentWireframe;
2014
+ }
2015
+
2016
+ interface IVeltNotificationsPanelContentAllListWireframeProps extends IVeltWireframeCommonProps {
2017
+ }
2018
+ interface IVeltNotificationsPanelContentAllListWireframe extends React$1.FC<IVeltNotificationsPanelContentAllListWireframeProps> {
2019
+ Item: IVeltNotificationsPanelContentAllListItemWireframe;
2020
+ }
2021
+
2022
+ interface IVeltNotificationsPanelContentAllWireframeProps extends IVeltWireframeCommonProps {
2023
+ }
2024
+ interface IVeltNotificationsPanelContentAllWireframe extends React$1.FC<IVeltNotificationsPanelContentAllWireframeProps> {
2025
+ List: IVeltNotificationsPanelContentAllListWireframe;
2026
+ }
2027
+
2028
+ interface IVeltNotificationsPanelContentDocumentsListItemContentWireframeProps extends IVeltWireframeCommonProps {
2029
+ }
2030
+ interface IVeltNotificationsPanelContentDocumentsListItemContentWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListItemContentWireframeProps> {
2031
+ }
2032
+
2033
+ interface IVeltNotificationsPanelContentDocumentsListItemCountWireframeProps extends IVeltWireframeCommonProps {
2034
+ }
2035
+ interface IVeltNotificationsPanelContentDocumentsListItemCountWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListItemCountWireframeProps> {
2036
+ }
2037
+
2038
+ interface IVeltNotificationsPanelContentDocumentsListItemNameWireframeProps extends IVeltWireframeCommonProps {
2039
+ }
2040
+ interface IVeltNotificationsPanelContentDocumentsListItemNameWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListItemNameWireframeProps> {
2041
+ }
2042
+
2043
+ interface IVeltNotificationsPanelContentDocumentsListItemUnreadWireframeProps extends IVeltWireframeCommonProps {
2044
+ }
2045
+ interface IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListItemUnreadWireframeProps> {
2046
+ }
2047
+
2048
+ interface IVeltNotificationsPanelContentDocumentsListItemWireframeProps extends IVeltWireframeCommonProps {
2049
+ }
2050
+ interface IVeltNotificationsPanelContentDocumentsListItemWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListItemWireframeProps> {
2051
+ Content: IVeltNotificationsPanelContentDocumentsListItemContentWireframe;
2052
+ Name: IVeltNotificationsPanelContentDocumentsListItemNameWireframe;
2053
+ Count: IVeltNotificationsPanelContentDocumentsListItemCountWireframe;
2054
+ Unread: IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe;
2055
+ }
2056
+
2057
+ interface IVeltNotificationsPanelContentDocumentsListWireframeProps extends IVeltWireframeCommonProps {
2058
+ }
2059
+ interface IVeltNotificationsPanelContentDocumentsListWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsListWireframeProps> {
2060
+ Item: IVeltNotificationsPanelContentDocumentsListItemWireframe;
2061
+ }
2062
+
2063
+ interface IVeltNotificationsPanelContentDocumentsWireframeProps extends IVeltWireframeCommonProps {
2064
+ }
2065
+ interface IVeltNotificationsPanelContentDocumentsWireframe extends React$1.FC<IVeltNotificationsPanelContentDocumentsWireframeProps> {
2066
+ List: IVeltNotificationsPanelContentDocumentsListWireframe;
2067
+ }
2068
+
2069
+ interface IVeltNotificationsPanelContentForYouWireframeProps extends IVeltWireframeCommonProps {
2070
+ }
2071
+ interface IVeltNotificationsPanelContentForYouWireframe extends React$1.FC<IVeltNotificationsPanelContentForYouWireframeProps> {
2072
+ }
2073
+
2074
+ interface IVeltNotificationsPanelContentPeopleListItemAvatarWireframeProps extends IVeltWireframeCommonProps {
2075
+ }
2076
+ interface IVeltNotificationsPanelContentPeopleListItemAvatarWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListItemAvatarWireframeProps> {
2077
+ }
2078
+
2079
+ interface IVeltNotificationsPanelContentPeopleListItemContentWireframeProps extends IVeltWireframeCommonProps {
2080
+ }
2081
+ interface IVeltNotificationsPanelContentPeopleListItemContentWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListItemContentWireframeProps> {
2082
+ }
2083
+
2084
+ interface IVeltNotificationsPanelContentPeopleListItemCountWireframeProps extends IVeltWireframeCommonProps {
2085
+ }
2086
+ interface IVeltNotificationsPanelContentPeopleListItemCountWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListItemCountWireframeProps> {
2087
+ }
2088
+
2089
+ interface IVeltNotificationsPanelContentPeopleListItemNameWireframeProps extends IVeltWireframeCommonProps {
2090
+ }
2091
+ interface IVeltNotificationsPanelContentPeopleListItemNameWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListItemNameWireframeProps> {
2092
+ }
2093
+
2094
+ interface IVeltNotificationsPanelContentPeopleListItemWireframeProps extends IVeltWireframeCommonProps {
2095
+ }
2096
+ interface IVeltNotificationsPanelContentPeopleListItemWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListItemWireframeProps> {
2097
+ Avatar: IVeltNotificationsPanelContentPeopleListItemAvatarWireframe;
2098
+ Name: IVeltNotificationsPanelContentPeopleListItemNameWireframe;
2099
+ Count: IVeltNotificationsPanelContentPeopleListItemCountWireframe;
2100
+ Content: IVeltNotificationsPanelContentPeopleListItemContentWireframe;
2101
+ }
2102
+
2103
+ interface IVeltNotificationsPanelContentPeopleListWireframeProps extends IVeltWireframeCommonProps {
2104
+ }
2105
+ interface IVeltNotificationsPanelContentPeopleListWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleListWireframeProps> {
2106
+ Item: IVeltNotificationsPanelContentPeopleListItemWireframe;
2107
+ }
2108
+
2109
+ interface IVeltNotificationsPanelContentPeopleWireframeProps extends IVeltWireframeCommonProps {
2110
+ }
2111
+ interface IVeltNotificationsPanelContentPeopleWireframe extends React$1.FC<IVeltNotificationsPanelContentPeopleWireframeProps> {
2112
+ List: IVeltNotificationsPanelContentPeopleListWireframe;
2113
+ }
2114
+
2115
+ interface IVeltNotificationsPanelContentLoadMoreWireframeProps extends IVeltWireframeCommonProps {
2116
+ variant?: string;
2117
+ }
2118
+ interface IVeltNotificationsPanelContentLoadMoreWireframe extends React$1.FC<IVeltNotificationsPanelContentLoadMoreWireframeProps> {
2119
+ }
2120
+
2121
+ interface IVeltNotificationsPanelContentListItemAvatarWireframeProps extends IVeltWireframeCommonProps {
2122
+ }
2123
+ interface IVeltNotificationsPanelContentListItemAvatarWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemAvatarWireframeProps> {
2124
+ }
2125
+
2126
+ interface IVeltNotificationsPanelContentListItemBodyWireframeProps extends IVeltWireframeCommonProps {
2127
+ }
2128
+ interface IVeltNotificationsPanelContentListItemBodyWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemBodyWireframeProps> {
2129
+ }
2130
+
2131
+ interface IVeltNotificationsPanelContentListItemFileNameWireframeProps extends IVeltWireframeCommonProps {
2132
+ }
2133
+ interface IVeltNotificationsPanelContentListItemFileNameWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemFileNameWireframeProps> {
2134
+ }
2135
+
2136
+ interface IVeltNotificationsPanelContentListItemHeadlineWireframeProps extends IVeltWireframeCommonProps {
2137
+ }
2138
+ interface IVeltNotificationsPanelContentListItemHeadlineWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemHeadlineWireframeProps> {
2139
+ }
2140
+
2141
+ interface IVeltNotificationsPanelContentListItemTimeWireframeProps extends IVeltWireframeCommonProps {
2142
+ }
2143
+ interface IVeltNotificationsPanelContentListItemTimeWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemTimeWireframeProps> {
2144
+ }
2145
+
2146
+ interface IVeltNotificationsPanelContentListItemUnreadWireframeProps extends IVeltWireframeCommonProps {
2147
+ }
2148
+ interface IVeltNotificationsPanelContentListItemUnreadWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemUnreadWireframeProps> {
2149
+ }
2150
+
2151
+ interface IVeltNotificationsPanelContentListItemWireframeProps extends IVeltWireframeCommonProps {
2152
+ }
2153
+ interface IVeltNotificationsPanelContentListItemWireframe extends React$1.FC<IVeltNotificationsPanelContentListItemWireframeProps> {
2154
+ Avatar: IVeltNotificationsPanelContentListItemAvatarWireframe;
2155
+ Body: IVeltNotificationsPanelContentListItemBodyWireframe;
2156
+ FileName: IVeltNotificationsPanelContentListItemFileNameWireframe;
2157
+ Headline: IVeltNotificationsPanelContentListItemHeadlineWireframe;
2158
+ Time: IVeltNotificationsPanelContentListItemTimeWireframe;
2159
+ Unread: IVeltNotificationsPanelContentListItemUnreadWireframe;
2160
+ }
2161
+
2162
+ interface IVeltNotificationsPanelContentListWireframeProps extends IVeltWireframeCommonProps {
2163
+ }
2164
+ interface IVeltNotificationsPanelContentListWireframe extends React$1.FC<IVeltNotificationsPanelContentListWireframeProps> {
2165
+ Item: IVeltNotificationsPanelContentListItemWireframe;
2166
+ }
2167
+
2168
+ interface IVeltNotificationsPanelContentAllReadContainerWireframeProps extends IVeltWireframeCommonProps {
2169
+ }
2170
+ interface IVeltNotificationsPanelContentAllReadContainerWireframe extends React$1.FC<IVeltNotificationsPanelContentAllReadContainerWireframeProps> {
2000
2171
  }
2001
2172
 
2002
2173
  interface IVeltNotificationsPanelContentWireframeProps extends IVeltWireframeCommonProps {
2003
2174
  }
2175
+ interface IVeltNotificationsPanelContentWireframe extends React$1.FC<IVeltNotificationsPanelContentWireframeProps> {
2176
+ All: IVeltNotificationsPanelContentAllWireframe;
2177
+ ForYou: IVeltNotificationsPanelContentForYouWireframe;
2178
+ Documents: IVeltNotificationsPanelContentDocumentsWireframe;
2179
+ People: IVeltNotificationsPanelContentPeopleWireframe;
2180
+ LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe;
2181
+ List: IVeltNotificationsPanelContentListWireframe;
2182
+ AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe;
2183
+ }
2184
+
2185
+ interface IVeltNotificationsPanelHeaderTabDocumentsWireframeProps extends IVeltWireframeCommonProps {
2186
+ }
2187
+ interface IVeltNotificationsPanelHeaderTabDocumentsWireframe extends React$1.FC<IVeltNotificationsPanelHeaderTabDocumentsWireframeProps> {
2188
+ }
2189
+
2190
+ interface IVeltNotificationsPanelHeaderTabForYouWireframeProps extends IVeltWireframeCommonProps {
2191
+ }
2192
+ interface IVeltNotificationsPanelHeaderTabForYouWireframe extends React$1.FC<IVeltNotificationsPanelHeaderTabForYouWireframeProps> {
2193
+ }
2194
+
2195
+ interface IVeltNotificationsPanelHeaderTabPeopleWireframeProps extends IVeltWireframeCommonProps {
2196
+ }
2197
+ interface IVeltNotificationsPanelHeaderTabPeopleWireframe extends React$1.FC<IVeltNotificationsPanelHeaderTabPeopleWireframeProps> {
2198
+ }
2199
+
2200
+ interface IVeltNotificationsPanelHeaderTabAllWireframeProps extends IVeltWireframeCommonProps {
2201
+ }
2202
+ interface IVeltNotificationsPanelHeaderTabAllWireframe extends React$1.FC<IVeltNotificationsPanelHeaderTabAllWireframeProps> {
2203
+ }
2004
2204
 
2005
2205
  interface IVeltNotificationsPanelHeaderWireframeProps extends IVeltWireframeCommonProps {
2006
2206
  }
2207
+ interface IVeltNotificationsPanelHeaderWireframe extends React$1.FC<IVeltNotificationsPanelHeaderWireframeProps> {
2208
+ TabAll: IVeltNotificationsPanelHeaderTabAllWireframe;
2209
+ TabDocuments: IVeltNotificationsPanelHeaderTabDocumentsWireframe;
2210
+ TabForYou: IVeltNotificationsPanelHeaderTabForYouWireframe;
2211
+ TabPeople: IVeltNotificationsPanelHeaderTabPeopleWireframe;
2212
+ }
2007
2213
 
2008
2214
  interface IVeltNotificationsPanelReadAllButtonWireframeProps extends IVeltWireframeCommonProps {
2009
2215
  }
2010
-
2011
- interface IVeltNotificationsPanelSkeletonWireframeProps extends IVeltWireframeCommonProps {
2216
+ interface IVeltNotificationsPanelReadAllButtonWireframe extends React$1.FC<IVeltNotificationsPanelReadAllButtonWireframeProps> {
2012
2217
  }
2013
2218
 
2014
2219
  interface IVeltNotificationsPanelTitleWireframeProps extends IVeltWireframeCommonProps {
2015
2220
  }
2221
+ interface IVeltNotificationsPanelTitleWireframe extends React$1.FC<IVeltNotificationsPanelTitleWireframeProps> {
2222
+ }
2016
2223
 
2017
2224
  interface IVeltNotificationsPanelViewAllButtonWireframeProps extends IVeltWireframeCommonProps {
2018
2225
  }
2226
+ interface IVeltNotificationsPanelViewAllButtonWireframe extends React$1.FC<IVeltNotificationsPanelViewAllButtonWireframeProps> {
2227
+ }
2228
+
2229
+ interface IVeltNotificationsPanelCloseButtonWireframeProps extends IVeltWireframeCommonProps {
2230
+ }
2231
+ interface IVeltNotificationsPanelCloseButtonWireframe extends React$1.FC<IVeltNotificationsPanelCloseButtonWireframeProps> {
2232
+ }
2233
+
2234
+ interface IVeltNotificationsPanelSkeletonWireframeProps extends IVeltWireframeCommonProps {
2235
+ }
2236
+ interface IVeltNotificationsPanelSkeletonWireframe extends React$1.FC<IVeltNotificationsPanelSkeletonWireframeProps> {
2237
+ }
2019
2238
 
2020
2239
  interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps {
2021
2240
  }
2022
2241
  interface IVeltNotificationsPanelWireframe extends React$1.FC<IVeltNotificationsPanelWireframeProps> {
2023
- CloseButton: React$1.FC<IVeltNotificationsPanelCloseButtonWireframeProps>;
2024
- Content: React$1.FC<IVeltNotificationsPanelContentWireframeProps>;
2025
- Header: React$1.FC<IVeltNotificationsPanelHeaderWireframeProps>;
2026
- ReadAllButton: React$1.FC<IVeltNotificationsPanelReadAllButtonWireframeProps>;
2027
- Skeleton: React$1.FC<IVeltNotificationsPanelSkeletonWireframeProps>;
2028
- Title: React$1.FC<IVeltNotificationsPanelTitleWireframeProps>;
2029
- ViewAllButton: React$1.FC<IVeltNotificationsPanelViewAllButtonWireframeProps>;
2242
+ Content: IVeltNotificationsPanelContentWireframe;
2243
+ Header: IVeltNotificationsPanelHeaderWireframe;
2244
+ ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
2245
+ Title: IVeltNotificationsPanelTitleWireframe;
2246
+ ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe;
2247
+ CloseButton: IVeltNotificationsPanelCloseButtonWireframe;
2248
+ Skeleton: IVeltNotificationsPanelSkeletonWireframe;
2030
2249
  }
2031
2250
  declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
2032
2251
 
@@ -2125,23 +2344,100 @@ interface IVeltPersistentCommentModeWireframe extends React$1.FC<IVeltPersistent
2125
2344
  }
2126
2345
  declare const VeltPersistentCommentModeWireframe: IVeltPersistentCommentModeWireframe;
2127
2346
 
2347
+ interface IVeltMultiThreadCommentDialogCloseButtonWireframeProps extends IVeltWireframeCommonProps {
2348
+ }
2349
+
2128
2350
  interface IVeltMultiThreadCommentDialogCommentCountWireframeProps extends IVeltWireframeCommonProps {
2129
2351
  }
2130
2352
 
2131
2353
  interface IVeltMultiThreadCommentDialogComposerContainerWireframeProps extends IVeltWireframeCommonProps {
2132
2354
  }
2133
2355
 
2356
+ interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps extends IVeltWireframeCommonProps {
2357
+ }
2358
+ interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe extends React$1.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps> {
2359
+ }
2360
+
2134
2361
  interface IVeltMultiThreadCommentDialogListWireframeProps extends IVeltWireframeCommonProps {
2135
2362
  }
2136
2363
 
2137
- interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps extends IVeltWireframeCommonProps {
2364
+ interface IVeltMultiThreadCommentDialogMinimalActionsDropdownContentWireframeProps extends IVeltWireframeCommonProps {
2365
+ }
2366
+ interface IVeltMultiThreadCommentDialogMinimalActionsDropdownContentWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownContentWireframeProps> {
2367
+ MarkAllRead: React$1.FC<IVeltWireframeCommonProps>;
2368
+ MarkAllResolved: React$1.FC<IVeltWireframeCommonProps>;
2369
+ }
2370
+
2371
+ interface IVeltMultiThreadCommentDialogMinimalActionsDropdownTriggerWireframeProps extends IVeltWireframeCommonProps {
2372
+ }
2373
+ interface IVeltMultiThreadCommentDialogMinimalActionsDropdownTriggerWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownTriggerWireframeProps> {
2138
2374
  }
2139
2375
 
2140
2376
  interface IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps extends IVeltWireframeCommonProps {
2141
2377
  }
2378
+ interface IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps> {
2379
+ Content: IVeltMultiThreadCommentDialogMinimalActionsDropdownContentWireframe;
2380
+ Trigger: IVeltMultiThreadCommentDialogMinimalActionsDropdownTriggerWireframe;
2381
+ }
2382
+
2383
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAllWireframeProps extends IVeltWireframeCommonProps {
2384
+ }
2385
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAllWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAllWireframeProps> {
2386
+ }
2387
+
2388
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterReadWireframeProps extends IVeltWireframeCommonProps {
2389
+ }
2390
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterReadWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterReadWireframeProps> {
2391
+ }
2392
+
2393
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolvedWireframeProps extends IVeltWireframeCommonProps {
2394
+ }
2395
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolvedWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolvedWireframeProps> {
2396
+ }
2397
+
2398
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnreadWireframeProps extends IVeltWireframeCommonProps {
2399
+ }
2400
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnreadWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnreadWireframeProps> {
2401
+ }
2402
+
2403
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIconWireframeProps extends IVeltWireframeCommonProps {
2404
+ }
2405
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIconWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIconWireframeProps> {
2406
+ }
2407
+
2408
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDateWireframeProps extends IVeltWireframeCommonProps {
2409
+ }
2410
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDateWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDateWireframeProps> {
2411
+ }
2412
+
2413
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnreadWireframeProps extends IVeltWireframeCommonProps {
2414
+ }
2415
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnreadWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnreadWireframeProps> {
2416
+ }
2417
+
2418
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentWireframeProps extends IVeltWireframeCommonProps {
2419
+ }
2420
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownContentWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownContentWireframeProps> {
2421
+ FilterAll: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAllWireframe;
2422
+ FilterUnread: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnreadWireframe;
2423
+ FilterRead: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterReadWireframe;
2424
+ FilterResolved: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolvedWireframe;
2425
+ SelectedIcon: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIconWireframe;
2426
+ SortDate: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDateWireframe;
2427
+ SortUnread: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnreadWireframe;
2428
+ }
2429
+
2430
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownTriggerWireframeProps extends IVeltWireframeCommonProps {
2431
+ }
2432
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownTriggerWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownTriggerWireframeProps> {
2433
+ }
2142
2434
 
2143
2435
  interface IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps extends IVeltWireframeCommonProps {
2144
2436
  }
2437
+ interface IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe extends React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps> {
2438
+ Content: IVeltMultiThreadCommentDialogMinimalFilterDropdownContentWireframe;
2439
+ Trigger: IVeltMultiThreadCommentDialogMinimalFilterDropdownTriggerWireframe;
2440
+ }
2145
2441
 
2146
2442
  interface IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps extends IVeltWireframeCommonProps {
2147
2443
  }
@@ -2149,21 +2445,18 @@ interface IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps extends IVe
2149
2445
  interface IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps extends IVeltWireframeCommonProps {
2150
2446
  }
2151
2447
 
2152
- interface IVeltMultiThreadCommentDialogCloseButtonWireframeProps extends IVeltWireframeCommonProps {
2153
- }
2154
-
2155
2448
  interface IVeltMultiThreadCommentDialogWireframeProps extends IVeltWireframeCommonProps {
2156
2449
  }
2157
2450
  interface IVeltMultiThreadCommentDialogWireframe extends React$1.FC<IVeltMultiThreadCommentDialogWireframeProps> {
2158
2451
  CommentCount: React$1.FC<IVeltMultiThreadCommentDialogCommentCountWireframeProps>;
2159
2452
  ComposerContainer: React$1.FC<IVeltMultiThreadCommentDialogComposerContainerWireframeProps>;
2160
2453
  List: React$1.FC<IVeltMultiThreadCommentDialogListWireframeProps>;
2161
- EmptyPlaceholder: React$1.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps>;
2162
- MinimalActionsDropdown: React$1.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps>;
2163
- MinimalFilterDropdown: React$1.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps>;
2454
+ CloseButton: React$1.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
2455
+ MinimalFilterDropdown: IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe;
2456
+ EmptyPlaceholder: IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
2164
2457
  NewThreadButton: React$1.FC<IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps>;
2458
+ MinimalActionsDropdown: IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe;
2165
2459
  ResetFilterButton: React$1.FC<IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps>;
2166
- CloseButton: React$1.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
2167
2460
  }
2168
2461
  declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
2169
2462
 
@@ -2179,17 +2472,79 @@ interface IVeltCommentThreadWireframe extends React$1.FC<IVeltCommentThreadWiref
2179
2472
  }
2180
2473
  declare const VeltCommentThreadWireframe: IVeltCommentThreadWireframe;
2181
2474
 
2475
+ interface IVeltMediaSourceSettingsToggleIconOpenWireframeProps extends IVeltWireframeCommonProps {
2476
+ }
2477
+ interface IVeltMediaSourceSettingsToggleIconOpenWireframe extends React$1.FC<IVeltMediaSourceSettingsToggleIconOpenWireframeProps> {
2478
+ }
2479
+
2480
+ interface IVeltMediaSourceSettingsToggleIconCloseWireframeProps extends IVeltWireframeCommonProps {
2481
+ }
2482
+ interface IVeltMediaSourceSettingsToggleIconCloseWireframe extends React$1.FC<IVeltMediaSourceSettingsToggleIconCloseWireframeProps> {
2483
+ }
2484
+
2485
+ interface IVeltMediaSourceSettingsToggleIconWireframeProps extends IVeltWireframeCommonProps {
2486
+ }
2487
+ interface IVeltMediaSourceSettingsToggleIconWireframe extends React$1.FC<IVeltMediaSourceSettingsToggleIconWireframeProps> {
2488
+ Open: IVeltMediaSourceSettingsToggleIconOpenWireframe;
2489
+ Close: IVeltMediaSourceSettingsToggleIconCloseWireframe;
2490
+ }
2491
+
2492
+ interface IVeltMediaSourceSettingsSelectedLabelWireframeProps extends IVeltWireframeCommonProps {
2493
+ }
2494
+ interface IVeltMediaSourceSettingsSelectedLabelWireframe extends React$1.FC<IVeltMediaSourceSettingsSelectedLabelWireframeProps> {
2495
+ }
2496
+
2497
+ interface IVeltMediaSourceSettingsOptionsItemLabelWireframeProps extends IVeltWireframeCommonProps {
2498
+ }
2499
+ interface IVeltMediaSourceSettingsOptionsItemLabelWireframe extends React$1.FC<IVeltMediaSourceSettingsOptionsItemLabelWireframeProps> {
2500
+ }
2501
+
2502
+ interface IVeltMediaSourceSettingsOptionsItemIconWireframeProps extends IVeltWireframeCommonProps {
2503
+ }
2504
+ interface IVeltMediaSourceSettingsOptionsItemIconWireframe extends React$1.FC<IVeltMediaSourceSettingsOptionsItemIconWireframeProps> {
2505
+ }
2506
+
2507
+ interface IVeltMediaSourceSettingsOptionsItemWireframeProps extends IVeltWireframeCommonProps {
2508
+ }
2509
+ interface IVeltMediaSourceSettingsOptionsItemWireframe extends React$1.FC<IVeltMediaSourceSettingsOptionsItemWireframeProps> {
2510
+ Icon: IVeltMediaSourceSettingsOptionsItemIconWireframe;
2511
+ Label: IVeltMediaSourceSettingsOptionsItemLabelWireframe;
2512
+ }
2513
+
2514
+ interface IVeltMediaSourceSettingsOptionsWireframeProps extends IVeltWireframeCommonProps {
2515
+ }
2516
+ interface IVeltMediaSourceSettingsOptionsWireframe extends React$1.FC<IVeltMediaSourceSettingsOptionsWireframeProps> {
2517
+ Item: IVeltMediaSourceSettingsOptionsItemWireframe;
2518
+ }
2519
+
2520
+ interface IVeltMediaSourceSettingsDividerWireframeProps extends IVeltWireframeCommonProps {
2521
+ }
2522
+ interface IVeltMediaSourceSettingsDividerWireframe extends React$1.FC<IVeltMediaSourceSettingsDividerWireframeProps> {
2523
+ }
2524
+
2182
2525
  interface IVeltMediaSourceSettingsAudioWireframeProps extends IVeltWireframeCommonProps {
2183
2526
  }
2527
+ interface IVeltMediaSourceSettingsAudioWireframe extends React$1.FC<IVeltMediaSourceSettingsAudioWireframeProps> {
2528
+ ToggleIcon: IVeltMediaSourceSettingsToggleIconWireframe;
2529
+ SelectedLabel: IVeltMediaSourceSettingsSelectedLabelWireframe;
2530
+ Options: IVeltMediaSourceSettingsOptionsWireframe;
2531
+ Divider: IVeltMediaSourceSettingsDividerWireframe;
2532
+ }
2184
2533
 
2185
2534
  interface IVeltMediaSourceSettingsVideoWireframeProps extends IVeltWireframeCommonProps {
2186
2535
  }
2536
+ interface IVeltMediaSourceSettingsVideoWireframe extends React$1.FC<IVeltMediaSourceSettingsVideoWireframeProps> {
2537
+ ToggleIcon: IVeltMediaSourceSettingsToggleIconWireframe;
2538
+ SelectedLabel: IVeltMediaSourceSettingsSelectedLabelWireframe;
2539
+ Options: IVeltMediaSourceSettingsOptionsWireframe;
2540
+ Divider: IVeltMediaSourceSettingsDividerWireframe;
2541
+ }
2187
2542
 
2188
2543
  interface IVeltMediaSourceSettingsWireframeProps extends IVeltWireframeCommonProps {
2189
2544
  }
2190
2545
  interface IVeltMediaSourceSettingsWireframe extends React$1.FC<IVeltMediaSourceSettingsWireframeProps> {
2191
- Audio: React$1.FC<IVeltMediaSourceSettingsAudioWireframeProps>;
2192
- Video: React$1.FC<IVeltMediaSourceSettingsVideoWireframeProps>;
2546
+ Audio: IVeltMediaSourceSettingsAudioWireframe;
2547
+ Video: IVeltMediaSourceSettingsVideoWireframe;
2193
2548
  }
2194
2549
  declare const VeltMediaSourceSettingsWireframe: IVeltMediaSourceSettingsWireframe;
2195
2550
 
@@ -2804,11 +3159,54 @@ interface IVeltVideoPlayerWireframe extends React$1.FC<IVeltVideoPlayerWireframe
2804
3159
  }
2805
3160
  declare const VeltVideoPlayerWireframe: IVeltVideoPlayerWireframe;
2806
3161
 
3162
+ interface IVeltSubtitlesTextWireframeProps extends IVeltWireframeCommonProps {
3163
+ }
3164
+ interface IVeltSubtitlesTextWireframe extends React$1.FC<IVeltSubtitlesTextWireframeProps> {
3165
+ }
3166
+
3167
+ interface IVeltSubtitlesEmbedModeWireframeProps extends IVeltWireframeCommonProps {
3168
+ }
3169
+ interface IVeltSubtitlesEmbedModeWireframe extends React$1.FC<IVeltSubtitlesEmbedModeWireframeProps> {
3170
+ Text: IVeltSubtitlesTextWireframe;
3171
+ }
3172
+
3173
+ interface IVeltSubtitlesPanelWireframeProps extends IVeltWireframeCommonProps {
3174
+ }
3175
+ interface IVeltSubtitlesPanelWireframe extends React$1.FC<IVeltSubtitlesPanelWireframeProps> {
3176
+ }
3177
+
2807
3178
  interface IVeltSubtitlesButtonWireframeProps extends IVeltWireframeCommonProps {
2808
3179
  }
2809
3180
  interface IVeltSubtitlesButtonWireframe extends React$1.FC<IVeltSubtitlesButtonWireframeProps> {
2810
3181
  }
2811
- declare const VeltSubtitlesButtonWireframe: IVeltSubtitlesButtonWireframe;
3182
+
3183
+ interface IVeltSubtitlesTooltipWireframeProps extends IVeltWireframeCommonProps {
3184
+ }
3185
+ interface IVeltSubtitlesTooltipWireframe extends React$1.FC<IVeltSubtitlesTooltipWireframeProps> {
3186
+ }
3187
+
3188
+ interface IVeltSubtitlesCloseButtonWireframeProps extends IVeltWireframeCommonProps {
3189
+ }
3190
+ interface IVeltSubtitlesCloseButtonWireframe extends React$1.FC<IVeltSubtitlesCloseButtonWireframeProps> {
3191
+ }
3192
+
3193
+ interface IVeltSubtitlesFloatingModeWireframeProps extends IVeltWireframeCommonProps {
3194
+ }
3195
+ interface IVeltSubtitlesFloatingModeWireframe extends React$1.FC<IVeltSubtitlesFloatingModeWireframeProps> {
3196
+ Button: IVeltSubtitlesButtonWireframe;
3197
+ Tooltip: IVeltSubtitlesTooltipWireframe;
3198
+ Panel: IVeltSubtitlesPanelWireframe;
3199
+ CloseButton: IVeltSubtitlesCloseButtonWireframe;
3200
+ Text: IVeltSubtitlesTextWireframe;
3201
+ }
3202
+
3203
+ interface IVeltSubtitlesWireframeProps extends IVeltWireframeCommonProps {
3204
+ }
3205
+ interface IVeltSubtitlesWireframe extends React$1.FC<IVeltSubtitlesWireframeProps> {
3206
+ EmbedMode: IVeltSubtitlesEmbedModeWireframe;
3207
+ FloatingMode: IVeltSubtitlesFloatingModeWireframe;
3208
+ }
3209
+ declare const VeltSubtitlesWireframe: IVeltSubtitlesWireframe;
2812
3210
 
2813
3211
  interface IVeltTranscriptionCloseButtonWireframeProps extends IVeltWireframeCommonProps {
2814
3212
  }
@@ -3143,4 +3541,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
3143
3541
  updateLiveStateDataId: (newId?: string) => void;
3144
3542
  };
3145
3543
 
3146
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
3544
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "4.0.0-beta.24",
3
+ "version": "4.0.0-beta.25",
4
4
  "description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
5
5
  "homepage": "https://velt.dev",
6
6
  "keywords": [