@pnp/spfx-controls-react 3.21.0-beta.1229898 → 3.21.0-beta.1230169

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.json CHANGED
@@ -9,14 +9,16 @@
9
9
  "`ListItemComments`: Can't select text from comment [#1874](https://github.com/pnp/sp-dev-fx-controls-react/issues/1874)",
10
10
  "`Localization`: Bad translations in DateTimePicker control [#1909](https://github.com/pnp/sp-dev-fx-controls-react/issues/1909)",
11
11
  "`WebPartTitle`: Control Fails to Update After Initial Save [#1877](https://github.com/pnp/sp-dev-fx-controls-react/issues/1877)",
12
- "`DynamicForm`: Creating a document set sometimes throws a 409 save [#1919](https://github.com/pnp/sp-dev-fx-controls-react/issues/1919)"
12
+ "`DynamicForm`: Creating a document set sometimes throws a 409 save [#1919](https://github.com/pnp/sp-dev-fx-controls-react/issues/1919)",
13
+ "`ModernTaxonomyPicker` Fix - Adding a new term adds the term to the parentLevel [#1922](https://github.com/pnp/sp-dev-fx-controls-react/pull/1922)"
13
14
  ]
14
15
  },
15
16
  "contributions": [
16
17
  "[Alessandro Chiavarino](https://github.com/Alesso-Chiavarino)",
17
18
  "[Antanina Druzhkina](https://github.com/Ateina)",
18
19
  "[EnablingLogic](https://github.com/EnablingLogic)",
19
- "[Martin Lingstuyl](https://github.com/martinlingstuyl)"
20
+ "[Martin Lingstuyl](https://github.com/martinlingstuyl)",
21
+ "[Nishkalank Bezawada](https://github.com/NishkalankBezawada)"
20
22
  ]
21
23
  },
22
24
  {
package/CHANGELOG.md CHANGED
@@ -8,10 +8,11 @@
8
8
  - `Localization`: Bad translations in DateTimePicker control [#1909](https://github.com/pnp/sp-dev-fx-controls-react/issues/1909)
9
9
  - `WebPartTitle`: Control Fails to Update After Initial Save [#1877](https://github.com/pnp/sp-dev-fx-controls-react/issues/1877)
10
10
  - `DynamicForm`: Creating a document set sometimes throws a 409 save [#1919](https://github.com/pnp/sp-dev-fx-controls-react/issues/1919)
11
+ - `ModernTaxonomyPicker` Fix - Adding a new term adds the term to the parentLevel [#1922](https://github.com/pnp/sp-dev-fx-controls-react/pull/1922)
11
12
 
12
13
  ### Contributors
13
14
 
14
- Special thanks to our contributors (in alphabetical order): [Alessandro Chiavarino](https://github.com/Alesso-Chiavarino), [Antanina Druzhkina](https://github.com/Ateina), [EnablingLogic](https://github.com/EnablingLogic), [Martin Lingstuyl](https://github.com/martinlingstuyl).
15
+ Special thanks to our contributors (in alphabetical order): [Alessandro Chiavarino](https://github.com/Alesso-Chiavarino), [Antanina Druzhkina](https://github.com/Ateina), [EnablingLogic](https://github.com/EnablingLogic), [Martin Lingstuyl](https://github.com/martinlingstuyl), [Nishkalank Bezawada](https://github.com/NishkalankBezawada).
15
16
 
16
17
  ## 3.20.0
17
18
 
@@ -0,0 +1,2 @@
1
+ export * from './controls/shareDialog/index';
2
+ //# sourceMappingURL=ShareDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShareDialog.d.ts","sourceRoot":"","sources":["../src/ShareDialog.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './controls/shareDialog/index';
2
+ //# sourceMappingURL=ShareDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShareDialog.js","sourceRoot":"","sources":["../src/ShareDialog.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC"}
@@ -1,2 +1,2 @@
1
- export var version = "3.21.0-beta.1229898";
1
+ export var version = "3.21.0-beta.1230169";
2
2
  //# sourceMappingURL=version.js.map
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+ interface IDialogOptions {
3
+ siteUrl: string;
4
+ listId: string;
5
+ itemId: string | number;
6
+ name: string;
7
+ }
8
+ interface ShareDialogProps {
9
+ isOpen: boolean;
10
+ options: IDialogOptions;
11
+ onClose: () => void;
12
+ }
13
+ export declare const ShareDialog: React.FC<ShareDialogProps>;
14
+ export {};
15
+ //# sourceMappingURL=ShareDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShareDialog.d.ts","sourceRoot":"","sources":["../../../src/controls/shareDialog/ShareDialog.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AA8B/B,UAAU,cAAc;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,gBAAgB;IACxB,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,cAAc,CAAC;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CA4ElD,CAAC"}
@@ -0,0 +1,81 @@
1
+ /* eslint-disable @typescript-eslint/explicit-function-return-type */
2
+ import * as React from 'react';
3
+ import { useCallback, useEffect, useRef, useState, } from 'react';
4
+ import { css } from '@emotion/css';
5
+ import { RenderDialog } from './renderDialog';
6
+ var useStyles = function (iFrameHeight) {
7
+ var styles = {
8
+ iframe: css({
9
+ width: "100%",
10
+ height: iFrameHeight,
11
+ border: "none",
12
+ }),
13
+ };
14
+ return { styles: styles };
15
+ };
16
+ export var ShareDialog = function (_a) {
17
+ var isOpen = _a.isOpen, options = _a.options, onClose = _a.onClose;
18
+ var _b = useState(undefined), dialogUrl = _b[0], setDialogUrl = _b[1];
19
+ var iframeRef = useRef(null);
20
+ var _c = useState(400), iFrameHeight = _c[0], setIFrameHeight = _c[1];
21
+ var siteUrl = options.siteUrl, listId = options.listId, itemId = options.itemId, name = options.name;
22
+ var styles = useStyles(iFrameHeight).styles;
23
+ var closeDialog = useCallback(function () {
24
+ onClose();
25
+ }, [onClose]);
26
+ var handleIframeMessage = useCallback(function (event) {
27
+ var _a = JSON.parse(event.data), name = _a.name, height = _a.height;
28
+ switch (name) {
29
+ case "share_dismiss":
30
+ closeDialog();
31
+ break;
32
+ case "share_resize":
33
+ setIFrameHeight(height);
34
+ break;
35
+ case "share_scriptsLoaded":
36
+ break;
37
+ case "share_uiReady":
38
+ break;
39
+ case "share_ready":
40
+ break;
41
+ default:
42
+ break;
43
+ }
44
+ }, [closeDialog]);
45
+ useEffect(function () {
46
+ window.addEventListener("message", handleIframeMessage);
47
+ return function () {
48
+ window.removeEventListener("message", handleIframeMessage);
49
+ };
50
+ }, [handleIframeMessage]);
51
+ useEffect(function () {
52
+ if (isOpen) {
53
+ var clientId = "sharePoint";
54
+ var policyTip = 0;
55
+ var folderColor = "";
56
+ var clickTime = new Date().getTime();
57
+ var fullScreenMode = false;
58
+ var origin_1 = encodeURIComponent(window.location.origin);
59
+ var encodeName = encodeURIComponent(name);
60
+ var url = "".concat(siteUrl, "/_layouts/15/sharedialog.aspx") +
61
+ "?listId=".concat(listId) +
62
+ "&listItemId=".concat(itemId) +
63
+ "&clientId=".concat(clientId) +
64
+ "&policyTip=".concat(policyTip) +
65
+ "&folderColor=".concat(folderColor) +
66
+ "&clickTime=".concat(clickTime) +
67
+ "&ma=0" +
68
+ "&fullScreenMode=".concat(fullScreenMode) +
69
+ "&itemName= ".concat(encodeName) +
70
+ "&channelId=" +
71
+ "&origin=".concat(origin_1);
72
+ setDialogUrl(url);
73
+ }
74
+ else {
75
+ setDialogUrl(undefined);
76
+ }
77
+ }, [isOpen, siteUrl, listId, itemId]);
78
+ return (React.createElement(RenderDialog, { isOpen: isOpen, onDismiss: closeDialog, maxHeight: "fit-content" },
79
+ React.createElement("iframe", { ref: iframeRef, src: dialogUrl || "", className: styles.iframe })));
80
+ };
81
+ //# sourceMappingURL=ShareDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShareDialog.js","sourceRoot":"","sources":["../../../src/controls/shareDialog/ShareDialog.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from './ShareDialog';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/controls/shareDialog/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './ShareDialog';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/controls/shareDialog/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
@@ -0,0 +1,14 @@
1
+ import * as React from 'react';
2
+ export interface IRenderDialogProps {
3
+ isOpen: boolean;
4
+ dialogTitle?: string | React.ReactNode;
5
+ dialogActions?: JSX.Element;
6
+ onDismiss?: (open?: boolean) => void;
7
+ minWidth?: number | string;
8
+ maxWidth?: number | string;
9
+ className?: string;
10
+ minHeight?: number | string;
11
+ maxHeight?: number | string;
12
+ }
13
+ export declare const RenderDialog: React.FunctionComponent<IRenderDialogProps>;
14
+ //# sourceMappingURL=RenderDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RenderDialog.d.ts","sourceRoot":"","sources":["../../../../src/controls/shareDialog/renderDialog/RenderDialog.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAY/B,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,OAAO,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACvC,aAAa,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IAC5B,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IACrC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC7B;AAsBD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,iBAAiB,CAAC,kBAAkB,CA4BpE,CAAC"}
@@ -0,0 +1,40 @@
1
+ /* eslint-disable @typescript-eslint/explicit-function-return-type */
2
+ import * as React from 'react';
3
+ import { css } from '@emotion/css';
4
+ import { Dialog, DialogActions, DialogBody, DialogContent, DialogSurface, DialogTitle, } from '@fluentui/react-components';
5
+ var DEFAULT_MIN_WIDTH = 200;
6
+ var DEFAULT_MIN_HEIGHT = 200;
7
+ var useStyles = function (props) {
8
+ var styles = {
9
+ dialog: css({
10
+ width: "100%",
11
+ height: "100%",
12
+ overflow: "hidden",
13
+ maxHeight: "600px",
14
+ padding: 0,
15
+ }),
16
+ dialogBody: css({
17
+ height: "calc(100% - 200px)",
18
+ }),
19
+ };
20
+ return { styles: styles };
21
+ };
22
+ export var RenderDialog = function (props) {
23
+ var isOpen = props.isOpen, dialogTitle = props.dialogTitle, dialogActions = props.dialogActions, children = props.children, maxWidth = props.maxWidth, className = props.className, minHeight = props.minHeight, minWidth = props.minWidth, maxHeight = props.maxHeight;
24
+ var styles = useStyles(props).styles;
25
+ if (!isOpen)
26
+ return React.createElement(React.Fragment, null);
27
+ return (React.createElement(Dialog, { open: isOpen, modalType: "modal" },
28
+ React.createElement(DialogSurface, { className: css(styles.dialog, className), style: {
29
+ maxWidth: maxWidth,
30
+ minWidth: minWidth !== null && minWidth !== void 0 ? minWidth : DEFAULT_MIN_WIDTH,
31
+ minHeight: minHeight !== null && minHeight !== void 0 ? minHeight : DEFAULT_MIN_HEIGHT,
32
+ height: "fit-content",
33
+ maxHeight: maxHeight !== null && maxHeight !== void 0 ? maxHeight : "",
34
+ } },
35
+ React.createElement(DialogTitle, null, dialogTitle),
36
+ React.createElement(DialogBody, { className: styles.dialogBody },
37
+ React.createElement(DialogContent, null, children)),
38
+ React.createElement(DialogActions, { fluid: true, position: "end" }, dialogActions))));
39
+ };
40
+ //# sourceMappingURL=RenderDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RenderDialog.js","sourceRoot":"","sources":["../../../../src/controls/shareDialog/renderDialog/RenderDialog.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACnC,OAAO,EACL,MAAM,EACN,aAAa,EACb,UAAU,EACV,aAAa,EACb,aAAa,EACb,WAAW,GACZ,MAAM,4BAA4B,CAAC;AAcpC,IAAM,iBAAiB,GAAG,GAAG,CAAC;AAE9B,IAAM,kBAAkB,GAAG,GAAG,CAAC;AAE/B,IAAM,SAAS,GAAG,UAAC,KAAwB;IACzC,IAAM,MAAM,GAAG;QACb,MAAM,EAAE,GAAG,CAAC;YACV,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,QAAiB;YAC3B,SAAS,EAAE,OAAO;YAClB,OAAO,EAAE,CAAU;SACpB,CAAC;QACF,UAAU,EAAE,GAAG,CAAC;YACd,MAAM,EAAE,oBAAoB;SAC7B,CAAC;KACH,CAAC;IACF,OAAO,EAAE,MAAM,QAAA,EAAE,CAAC;AACpB,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,YAAY,GAAgD,UACvE,KAAkD;IAE1C,IAAA,MAAM,GAAgG,KAAK,OAArG,EAAE,WAAW,GAAmF,KAAK,YAAxF,EAAE,aAAa,GAAoE,KAAK,cAAzE,EAAE,QAAQ,GAA0D,KAAK,SAA/D,EAAE,QAAQ,GAAgD,KAAK,SAArD,EAAE,SAAS,GAAqC,KAAK,UAA1C,EAAE,SAAS,GAA0B,KAAK,UAA/B,EAAE,QAAQ,GAAgB,KAAK,SAArB,EAAE,SAAS,GAAK,KAAK,UAAV,CAAW;IAC7G,IAAA,MAAM,GAAI,SAAS,CAAC,KAAK,CAAC,OAApB,CAAqB;IAClC,IAAI,CAAC,MAAM;QAAE,OAAO,yCAAK,CAAC;IAC1B,OAAO,CACL,oBAAC,MAAM,IAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAC,OAAO;QACrC,oBAAC,aAAa,IACZ,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,EACxC,KAAK,EAAE;gBACL,QAAQ,EAAE,QAAQ;gBAClB,QAAQ,EAAE,QAAQ,aAAR,QAAQ,cAAR,QAAQ,GAAI,iBAAiB;gBACvC,SAAS,EAAE,SAAS,aAAT,SAAS,cAAT,SAAS,GAAI,kBAAkB;gBAC1C,MAAM,EAAE,aAAa;gBACrB,SAAS,EAAE,SAAS,aAAT,SAAS,cAAT,SAAS,GAAI,EAAE;aAC3B;YAED,oBAAC,WAAW,QAAE,WAAW,CAAe;YACxC,oBAAC,UAAU,IAAC,SAAS,EAAE,MAAM,CAAC,UAAU;gBACtC,oBAAC,aAAa,QAAE,QAAQ,CAAiB,CAC9B;YACb,oBAAC,aAAa,IAAC,KAAK,QAAC,QAAQ,EAAC,KAAK,IAChC,aAAa,CACA,CACF,CACT,CACV,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './RenderDialog';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/controls/shareDialog/renderDialog/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './RenderDialog';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/controls/shareDialog/renderDialog/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnp/spfx-controls-react",
3
3
  "description": "Reusable React controls for SharePoint Framework solutions",
4
- "version": "3.21.0-beta.1229898",
4
+ "version": "3.21.0-beta.1230169",
5
5
  "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0",
6
6
  "scripts": {
7
7
  "build": "gulp build",