@fluentui/react-migration-v0-v9 9.1.37 → 9.2.0

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 (67) hide show
  1. package/CHANGELOG.md +22 -2
  2. package/dist/index.d.ts +50 -0
  3. package/lib/components/Attachment/Attachment.js +35 -0
  4. package/lib/components/Attachment/Attachment.js.map +1 -0
  5. package/lib/components/Attachment/Attachment.styles.js +41 -0
  6. package/lib/components/Attachment/Attachment.styles.js.map +1 -0
  7. package/lib/components/Attachment/AttachmentAction.js +43 -0
  8. package/lib/components/Attachment/AttachmentAction.js.map +1 -0
  9. package/lib/components/Attachment/AttachmentAction.styles.js +20 -0
  10. package/lib/components/Attachment/AttachmentAction.styles.js.map +1 -0
  11. package/lib/components/Attachment/AttachmentBody.js +14 -0
  12. package/lib/components/Attachment/AttachmentBody.js.map +1 -0
  13. package/lib/components/Attachment/AttachmentBody.styles.js +14 -0
  14. package/lib/components/Attachment/AttachmentBody.styles.js.map +1 -0
  15. package/lib/components/Attachment/AttachmentDescription.js +14 -0
  16. package/lib/components/Attachment/AttachmentDescription.js.map +1 -0
  17. package/lib/components/Attachment/AttachmentDescription.styles.js +12 -0
  18. package/lib/components/Attachment/AttachmentDescription.styles.js.map +1 -0
  19. package/lib/components/Attachment/AttachmentHeader.js +14 -0
  20. package/lib/components/Attachment/AttachmentHeader.js.map +1 -0
  21. package/lib/components/Attachment/AttachmentHeader.styles.js +12 -0
  22. package/lib/components/Attachment/AttachmentHeader.styles.js.map +1 -0
  23. package/lib/components/Attachment/AttachmentIcon.js +14 -0
  24. package/lib/components/Attachment/AttachmentIcon.js.map +1 -0
  25. package/lib/components/Attachment/AttachmentIcon.styles.js +16 -0
  26. package/lib/components/Attachment/AttachmentIcon.styles.js.map +1 -0
  27. package/lib/components/Attachment/index.js +6 -0
  28. package/lib/components/Attachment/index.js.map +1 -0
  29. package/lib/components/List/List/useListStyles.styles.js +2 -0
  30. package/lib/components/List/List/useListStyles.styles.js.map +1 -1
  31. package/lib/components/List/ListItem/useListItemStyles.styles.js +2 -0
  32. package/lib/components/List/ListItem/useListItemStyles.styles.js.map +1 -1
  33. package/lib/index.js +1 -0
  34. package/lib/index.js.map +1 -1
  35. package/lib-commonjs/components/Attachment/Attachment.js +60 -0
  36. package/lib-commonjs/components/Attachment/Attachment.js.map +1 -0
  37. package/lib-commonjs/components/Attachment/Attachment.styles.js +95 -0
  38. package/lib-commonjs/components/Attachment/Attachment.styles.js.map +1 -0
  39. package/lib-commonjs/components/Attachment/AttachmentAction.js +62 -0
  40. package/lib-commonjs/components/Attachment/AttachmentAction.js.map +1 -0
  41. package/lib-commonjs/components/Attachment/AttachmentAction.styles.js +40 -0
  42. package/lib-commonjs/components/Attachment/AttachmentAction.styles.js.map +1 -0
  43. package/lib-commonjs/components/Attachment/AttachmentBody.js +33 -0
  44. package/lib-commonjs/components/Attachment/AttachmentBody.js.map +1 -0
  45. package/lib-commonjs/components/Attachment/AttachmentBody.styles.js +28 -0
  46. package/lib-commonjs/components/Attachment/AttachmentBody.styles.js.map +1 -0
  47. package/lib-commonjs/components/Attachment/AttachmentDescription.js +33 -0
  48. package/lib-commonjs/components/Attachment/AttachmentDescription.js.map +1 -0
  49. package/lib-commonjs/components/Attachment/AttachmentDescription.styles.js +26 -0
  50. package/lib-commonjs/components/Attachment/AttachmentDescription.styles.js.map +1 -0
  51. package/lib-commonjs/components/Attachment/AttachmentHeader.js +33 -0
  52. package/lib-commonjs/components/Attachment/AttachmentHeader.js.map +1 -0
  53. package/lib-commonjs/components/Attachment/AttachmentHeader.styles.js +26 -0
  54. package/lib-commonjs/components/Attachment/AttachmentHeader.styles.js.map +1 -0
  55. package/lib-commonjs/components/Attachment/AttachmentIcon.js +33 -0
  56. package/lib-commonjs/components/Attachment/AttachmentIcon.js.map +1 -0
  57. package/lib-commonjs/components/Attachment/AttachmentIcon.styles.js +38 -0
  58. package/lib-commonjs/components/Attachment/AttachmentIcon.styles.js.map +1 -0
  59. package/lib-commonjs/components/Attachment/index.js +11 -0
  60. package/lib-commonjs/components/Attachment/index.js.map +1 -0
  61. package/lib-commonjs/components/List/List/useListStyles.styles.js +1 -0
  62. package/lib-commonjs/components/List/List/useListStyles.styles.js.map +1 -1
  63. package/lib-commonjs/components/List/ListItem/useListItemStyles.styles.js +1 -0
  64. package/lib-commonjs/components/List/ListItem/useListItemStyles.styles.js.map +1 -1
  65. package/lib-commonjs/index.js +43 -0
  66. package/lib-commonjs/index.js.map +1 -1
  67. package/package.json +8 -8
@@ -116,6 +116,48 @@ _export(exports, {
116
116
  },
117
117
  useList_unstable: function() {
118
118
  return _List.useList_unstable;
119
+ },
120
+ Attachment: function() {
121
+ return _Attachment.Attachment;
122
+ },
123
+ AttachmentAction: function() {
124
+ return _Attachment.AttachmentAction;
125
+ },
126
+ AttachmentBody: function() {
127
+ return _Attachment.AttachmentBody;
128
+ },
129
+ AttachmentDescription: function() {
130
+ return _Attachment.AttachmentDescription;
131
+ },
132
+ AttachmentHeader: function() {
133
+ return _Attachment.AttachmentHeader;
134
+ },
135
+ AttachmentIcon: function() {
136
+ return _Attachment.AttachmentIcon;
137
+ },
138
+ attachmentClassName: function() {
139
+ return _Attachment.attachmentClassName;
140
+ },
141
+ attachmentActionClassName: function() {
142
+ return _Attachment.attachmentActionClassName;
143
+ },
144
+ attachmentBodyClassName: function() {
145
+ return _Attachment.attachmentBodyClassName;
146
+ },
147
+ attachmentDescriptionClassName: function() {
148
+ return _Attachment.attachmentDescriptionClassName;
149
+ },
150
+ attachmentHeaderClassName: function() {
151
+ return _Attachment.attachmentHeaderClassName;
152
+ },
153
+ attachmentIconClassName: function() {
154
+ return _Attachment.attachmentIconClassName;
155
+ },
156
+ attachmentProgressBarClassName: function() {
157
+ return _Attachment.attachmentProgressBarClassName;
158
+ },
159
+ attachmentProgressContainerClassName: function() {
160
+ return _Attachment.attachmentProgressContainerClassName;
119
161
  }
120
162
  });
121
163
  const _index = require("./components/Grid/index");
@@ -130,3 +172,4 @@ const _Primitive = require("./components/Primitive");
130
172
  const _ItemLayout = require("./components/ItemLayout");
131
173
  const _Flex = require("./components/Flex");
132
174
  const _List = require("./components/List");
175
+ const _Attachment = require("./components/Attachment");
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["export { GridShim, grid, gridClassName, useGridStyles } from './components/Grid/index';\nexport { FormFieldShim } from './components/FormField';\nexport { Segment } from './components/Segment';\nexport { slider } from './components/Slider';\nexport { input } from './components/Input';\nexport { v0Icon, v9CustomSizeIcon, v9DisabledCursor, v9HoverClasses, v9Icon } from './components/Button';\nexport { spinner } from './components/Spinner';\nexport { StyledText, styledTextClassName } from './components/StyledText';\nexport { Primitive, primitiveClassName } from './components/Primitive';\nexport { ItemLayout, itemLayoutClassName, useItemLayoutStyles } from './components/ItemLayout';\nexport { Flex, flexClassName, flexItem, useFlexStyles } from './components/Flex';\nexport { List, ListItem, listClassNames, listItemClassNames, renderListItem_unstable, renderList_unstable, useListItemStyles_unstable, useListItem_unstable, useListSelection, useListStyles_unstable, useList_unstable } from './components/List';\n"],"names":["GridShim","grid","gridClassName","useGridStyles","FormFieldShim","Segment","slider","input","v0Icon","v9CustomSizeIcon","v9DisabledCursor","v9HoverClasses","v9Icon","spinner","StyledText","styledTextClassName","Primitive","primitiveClassName","ItemLayout","itemLayoutClassName","useItemLayoutStyles","Flex","flexClassName","flexItem","useFlexStyles","List","ListItem","listClassNames","listItemClassNames","renderListItem_unstable","renderList_unstable","useListItemStyles_unstable","useListItem_unstable","useListSelection","useListStyles_unstable","useList_unstable"],"mappings":";;;;;;;;;;;IAASA,QAAQ;eAARA,eAAQ;;IAAEC,IAAI;eAAJA,WAAI;;IAAEC,aAAa;eAAbA,oBAAa;;IAAEC,aAAa;eAAbA,oBAAa;;IAC5CC,aAAa;eAAbA,wBAAa;;IACbC,OAAO;eAAPA,gBAAO;;IACPC,MAAM;eAANA,cAAM;;IACNC,KAAK;eAALA,YAAK;;IACLC,MAAM;eAANA,cAAM;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAAEC,cAAc;eAAdA,sBAAc;;IAAEC,MAAM;eAANA,cAAM;;IAClEC,OAAO;eAAPA,gBAAO;;IACPC,UAAU;eAAVA,sBAAU;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IAC/BC,SAAS;eAATA,oBAAS;;IAAEC,kBAAkB;eAAlBA,6BAAkB;;IAC7BC,UAAU;eAAVA,sBAAU;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IACpDC,IAAI;eAAJA,UAAI;;IAAEC,aAAa;eAAbA,mBAAa;;IAAEC,QAAQ;eAARA,cAAQ;;IAAEC,aAAa;eAAbA,mBAAa;;IAC5CC,IAAI;eAAJA,UAAI;;IAAEC,QAAQ;eAARA,cAAQ;;IAAEC,cAAc;eAAdA,oBAAc;;IAAEC,kBAAkB;eAAlBA,wBAAkB;;IAAEC,uBAAuB;eAAvBA,6BAAuB;;IAAEC,mBAAmB;eAAnBA,yBAAmB;;IAAEC,0BAA0B;eAA1BA,gCAA0B;;IAAEC,oBAAoB;eAApBA,0BAAoB;;IAAEC,gBAAgB;eAAhBA,sBAAgB;;IAAEC,sBAAsB;eAAtBA,4BAAsB;;IAAEC,gBAAgB;eAAhBA,sBAAgB;;;uBAX1J;2BAC/B;yBACN;wBACD;uBACD;wBAC6D;yBAC3D;4BACwB;2BACF;4BACuB;sBACR;sBACkK"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export { GridShim, grid, gridClassName, useGridStyles } from './components/Grid/index';\nexport { FormFieldShim } from './components/FormField';\nexport { Segment } from './components/Segment';\nexport { slider } from './components/Slider';\nexport { input } from './components/Input';\nexport { v0Icon, v9CustomSizeIcon, v9DisabledCursor, v9HoverClasses, v9Icon } from './components/Button';\nexport { spinner } from './components/Spinner';\nexport { StyledText, styledTextClassName } from './components/StyledText';\nexport { Primitive, primitiveClassName } from './components/Primitive';\nexport { ItemLayout, itemLayoutClassName, useItemLayoutStyles } from './components/ItemLayout';\nexport { Flex, flexClassName, flexItem, useFlexStyles } from './components/Flex';\nexport { List, ListItem, listClassNames, listItemClassNames, renderListItem_unstable, renderList_unstable, useListItemStyles_unstable, useListItem_unstable, useListSelection, useListStyles_unstable, useList_unstable } from './components/List';\nexport { Attachment, AttachmentAction, AttachmentBody, AttachmentDescription, AttachmentHeader, AttachmentIcon, attachmentClassName, attachmentActionClassName, attachmentBodyClassName, attachmentDescriptionClassName, attachmentHeaderClassName, attachmentIconClassName, attachmentProgressBarClassName, attachmentProgressContainerClassName } from './components/Attachment';\n"],"names":["GridShim","grid","gridClassName","useGridStyles","FormFieldShim","Segment","slider","input","v0Icon","v9CustomSizeIcon","v9DisabledCursor","v9HoverClasses","v9Icon","spinner","StyledText","styledTextClassName","Primitive","primitiveClassName","ItemLayout","itemLayoutClassName","useItemLayoutStyles","Flex","flexClassName","flexItem","useFlexStyles","List","ListItem","listClassNames","listItemClassNames","renderListItem_unstable","renderList_unstable","useListItemStyles_unstable","useListItem_unstable","useListSelection","useListStyles_unstable","useList_unstable","Attachment","AttachmentAction","AttachmentBody","AttachmentDescription","AttachmentHeader","AttachmentIcon","attachmentClassName","attachmentActionClassName","attachmentBodyClassName","attachmentDescriptionClassName","attachmentHeaderClassName","attachmentIconClassName","attachmentProgressBarClassName","attachmentProgressContainerClassName"],"mappings":";;;;;;;;;;;IAASA,QAAQ;eAARA,eAAQ;;IAAEC,IAAI;eAAJA,WAAI;;IAAEC,aAAa;eAAbA,oBAAa;;IAAEC,aAAa;eAAbA,oBAAa;;IAC5CC,aAAa;eAAbA,wBAAa;;IACbC,OAAO;eAAPA,gBAAO;;IACPC,MAAM;eAANA,cAAM;;IACNC,KAAK;eAALA,YAAK;;IACLC,MAAM;eAANA,cAAM;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAAEC,cAAc;eAAdA,sBAAc;;IAAEC,MAAM;eAANA,cAAM;;IAClEC,OAAO;eAAPA,gBAAO;;IACPC,UAAU;eAAVA,sBAAU;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IAC/BC,SAAS;eAATA,oBAAS;;IAAEC,kBAAkB;eAAlBA,6BAAkB;;IAC7BC,UAAU;eAAVA,sBAAU;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IACpDC,IAAI;eAAJA,UAAI;;IAAEC,aAAa;eAAbA,mBAAa;;IAAEC,QAAQ;eAARA,cAAQ;;IAAEC,aAAa;eAAbA,mBAAa;;IAC5CC,IAAI;eAAJA,UAAI;;IAAEC,QAAQ;eAARA,cAAQ;;IAAEC,cAAc;eAAdA,oBAAc;;IAAEC,kBAAkB;eAAlBA,wBAAkB;;IAAEC,uBAAuB;eAAvBA,6BAAuB;;IAAEC,mBAAmB;eAAnBA,yBAAmB;;IAAEC,0BAA0B;eAA1BA,gCAA0B;;IAAEC,oBAAoB;eAApBA,0BAAoB;;IAAEC,gBAAgB;eAAhBA,sBAAgB;;IAAEC,sBAAsB;eAAtBA,4BAAsB;;IAAEC,gBAAgB;eAAhBA,sBAAgB;;IAC9MC,UAAU;eAAVA,sBAAU;;IAAEC,gBAAgB;eAAhBA,4BAAgB;;IAAEC,cAAc;eAAdA,0BAAc;;IAAEC,qBAAqB;eAArBA,iCAAqB;;IAAEC,gBAAgB;eAAhBA,4BAAgB;;IAAEC,cAAc;eAAdA,0BAAc;;IAAEC,mBAAmB;eAAnBA,+BAAmB;;IAAEC,yBAAyB;eAAzBA,qCAAyB;;IAAEC,uBAAuB;eAAvBA,mCAAuB;;IAAEC,8BAA8B;eAA9BA,0CAA8B;;IAAEC,yBAAyB;eAAzBA,qCAAyB;;IAAEC,uBAAuB;eAAvBA,mCAAuB;;IAAEC,8BAA8B;eAA9BA,0CAA8B;;IAAEC,oCAAoC;eAApCA,gDAAoC;;;uBAZpR;2BAC/B;yBACN;wBACD;uBACD;wBAC6D;yBAC3D;4BACwB;2BACF;4BACuB;sBACR;sBACkK;4BAC0H"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-migration-v0-v9",
3
- "version": "9.1.37",
3
+ "version": "9.2.0",
4
4
  "description": "Migration shim components and methods for hybrid v0/v9 applications building on Fluent UI React.",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -33,15 +33,15 @@
33
33
  "@fluentui/scripts-storybook": "*"
34
34
  },
35
35
  "dependencies": {
36
- "@fluentui/react-aria": "^9.12.1",
37
- "@fluentui/react-components": "^9.54.2",
38
- "@fluentui/react-context-selector": "^9.1.62",
39
- "@fluentui/react-icons": "^2.0.239",
40
- "@fluentui/react-jsx-runtime": "^9.0.39",
36
+ "@fluentui/react-aria": "^9.13.0",
37
+ "@fluentui/react-components": "^9.54.3",
38
+ "@fluentui/react-context-selector": "^9.1.63",
39
+ "@fluentui/react-icons": "^2.0.245",
40
+ "@fluentui/react-jsx-runtime": "^9.0.40",
41
41
  "@fluentui/react-shared-contexts": "^9.19.0",
42
- "@fluentui/react-tabster": "^9.22.0",
42
+ "@fluentui/react-tabster": "^9.22.1",
43
43
  "@fluentui/react-theme": "^9.1.19",
44
- "@fluentui/react-utilities": "^9.18.10",
44
+ "@fluentui/react-utilities": "^9.18.11",
45
45
  "@griffel/react": "^1.5.22",
46
46
  "@swc/helpers": "^0.5.1"
47
47
  },