@fluentui/react-positioning 9.0.0-rc.7 → 9.0.0-rc.8
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +34 -1
- package/CHANGELOG.md +14 -2
- package/lib/index.d.ts +6 -5
- package/lib/index.js +4 -5
- package/lib/index.js.map +1 -1
- package/lib-commonjs/index.d.ts +6 -5
- package/lib-commonjs/index.js +38 -8
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,40 @@
|
|
2
2
|
"name": "@fluentui/react-positioning",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Thu, 05 May 2022 18:24:32 GMT",
|
6
|
+
"tag": "@fluentui/react-positioning_v9.0.0-rc.8",
|
7
|
+
"version": "9.0.0-rc.8",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "humberto_makoto@hotmail.com",
|
12
|
+
"package": "@fluentui/react-positioning",
|
13
|
+
"commit": "de4f22fd2febb817c720c59c5798200bb56fbe06",
|
14
|
+
"comment": "Removing star exports."
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "beachball",
|
18
|
+
"package": "@fluentui/react-positioning",
|
19
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.7",
|
20
|
+
"commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-positioning",
|
25
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
|
26
|
+
"commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-positioning",
|
31
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
|
32
|
+
"commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"date": "Wed, 04 May 2022 13:26:47 GMT",
|
6
39
|
"tag": "@fluentui/react-positioning_v9.0.0-rc.7",
|
7
40
|
"version": "9.0.0-rc.7",
|
8
41
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,24 @@
|
|
1
1
|
# Change Log - @fluentui/react-positioning
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Thu, 05 May 2022 18:24:32 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-rc.8)
|
8
|
+
|
9
|
+
Thu, 05 May 2022 18:24:32 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-rc.7..@fluentui/react-positioning_v9.0.0-rc.8)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Removing star exports. ([PR #22807](https://github.com/microsoft/fluentui/pull/22807) by humberto_makoto@hotmail.com)
|
15
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
16
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
17
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
18
|
+
|
7
19
|
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-rc.7)
|
8
20
|
|
9
|
-
Wed, 04 May 2022 13:
|
21
|
+
Wed, 04 May 2022 13:26:47 GMT
|
10
22
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-rc.6..@fluentui/react-positioning_v9.0.0-rc.7)
|
11
23
|
|
12
24
|
### Changes
|
package/lib/index.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { createVirtualElementFromClick } from './createVirtualElementFromClick';
|
2
|
+
export { createArrowHeightStyles, createArrowStyles } from './createArrowStyles';
|
3
|
+
export type { CreateArrowStylesOptions } from './createArrowStyles';
|
4
|
+
export { usePopper } from './usePopper';
|
5
|
+
export { usePopperMouseTarget } from './usePopperMouseTarget';
|
5
6
|
export { resolvePositioningShorthand, mergeArrowOffset } from './utils/index';
|
6
|
-
export
|
7
|
+
export type { Alignment, AutoSize, Boundary, Offset, OffsetFunction, OffsetFunctionParam, PopperOptions, PopperRefHandle, PopperVirtualElement, Position, PositioningProps, PositioningShorthand, PositioningShorthandValue, } from './types';
|
package/lib/index.js
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { createVirtualElementFromClick } from './createVirtualElementFromClick';
|
2
|
+
export { createArrowHeightStyles, createArrowStyles } from './createArrowStyles';
|
3
|
+
export { usePopper } from './usePopper';
|
4
|
+
export { usePopperMouseTarget } from './usePopperMouseTarget';
|
5
5
|
export { resolvePositioningShorthand, mergeArrowOffset } from './utils/index';
|
6
|
-
export * from './types';
|
7
6
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["index.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAEjF,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC","sourcesContent":["export { createVirtualElementFromClick } from './createVirtualElementFromClick';\nexport { createArrowHeightStyles, createArrowStyles } from './createArrowStyles';\nexport type { CreateArrowStylesOptions } from './createArrowStyles';\nexport { usePopper } from './usePopper';\nexport { usePopperMouseTarget } from './usePopperMouseTarget';\nexport { resolvePositioningShorthand, mergeArrowOffset } from './utils/index';\nexport type {\n Alignment,\n AutoSize,\n Boundary,\n Offset,\n OffsetFunction,\n OffsetFunctionParam,\n PopperOptions,\n PopperRefHandle,\n PopperVirtualElement,\n Position,\n PositioningProps,\n PositioningShorthand,\n PositioningShorthandValue,\n} from './types';\n"]}
|
package/lib-commonjs/index.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { createVirtualElementFromClick } from './createVirtualElementFromClick';
|
2
|
+
export { createArrowHeightStyles, createArrowStyles } from './createArrowStyles';
|
3
|
+
export type { CreateArrowStylesOptions } from './createArrowStyles';
|
4
|
+
export { usePopper } from './usePopper';
|
5
|
+
export { usePopperMouseTarget } from './usePopperMouseTarget';
|
5
6
|
export { resolvePositioningShorthand, mergeArrowOffset } from './utils/index';
|
6
|
-
export
|
7
|
+
export type { Alignment, AutoSize, Boundary, Offset, OffsetFunction, OffsetFunctionParam, PopperOptions, PopperRefHandle, PopperVirtualElement, Position, PositioningProps, PositioningShorthand, PositioningShorthandValue, } from './types';
|
package/lib-commonjs/index.js
CHANGED
@@ -3,17 +3,49 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
exports.mergeArrowOffset = exports.resolvePositioningShorthand = void 0;
|
6
|
+
exports.mergeArrowOffset = exports.resolvePositioningShorthand = exports.usePopperMouseTarget = exports.usePopper = exports.createArrowStyles = exports.createArrowHeightStyles = exports.createVirtualElementFromClick = void 0;
|
7
7
|
|
8
|
-
|
8
|
+
var createVirtualElementFromClick_1 = /*#__PURE__*/require("./createVirtualElementFromClick");
|
9
9
|
|
10
|
-
|
10
|
+
Object.defineProperty(exports, "createVirtualElementFromClick", {
|
11
|
+
enumerable: true,
|
12
|
+
get: function () {
|
13
|
+
return createVirtualElementFromClick_1.createVirtualElementFromClick;
|
14
|
+
}
|
15
|
+
});
|
16
|
+
|
17
|
+
var createArrowStyles_1 = /*#__PURE__*/require("./createArrowStyles");
|
18
|
+
|
19
|
+
Object.defineProperty(exports, "createArrowHeightStyles", {
|
20
|
+
enumerable: true,
|
21
|
+
get: function () {
|
22
|
+
return createArrowStyles_1.createArrowHeightStyles;
|
23
|
+
}
|
24
|
+
});
|
25
|
+
Object.defineProperty(exports, "createArrowStyles", {
|
26
|
+
enumerable: true,
|
27
|
+
get: function () {
|
28
|
+
return createArrowStyles_1.createArrowStyles;
|
29
|
+
}
|
30
|
+
});
|
31
|
+
|
32
|
+
var usePopper_1 = /*#__PURE__*/require("./usePopper");
|
11
33
|
|
12
|
-
|
34
|
+
Object.defineProperty(exports, "usePopper", {
|
35
|
+
enumerable: true,
|
36
|
+
get: function () {
|
37
|
+
return usePopper_1.usePopper;
|
38
|
+
}
|
39
|
+
});
|
13
40
|
|
14
|
-
|
41
|
+
var usePopperMouseTarget_1 = /*#__PURE__*/require("./usePopperMouseTarget");
|
15
42
|
|
16
|
-
|
43
|
+
Object.defineProperty(exports, "usePopperMouseTarget", {
|
44
|
+
enumerable: true,
|
45
|
+
get: function () {
|
46
|
+
return usePopperMouseTarget_1.usePopperMouseTarget;
|
47
|
+
}
|
48
|
+
});
|
17
49
|
|
18
50
|
var index_1 = /*#__PURE__*/require("./utils/index");
|
19
51
|
|
@@ -29,6 +61,4 @@ Object.defineProperty(exports, "mergeArrowOffset", {
|
|
29
61
|
return index_1.mergeArrowOffset;
|
30
62
|
}
|
31
63
|
});
|
32
|
-
|
33
|
-
tslib_1.__exportStar(require("./types"), exports);
|
34
64
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;AAAA,IAAA,+BAAA,gBAAA,OAAA,CAAA,iCAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,+BAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,+BAAA,CAAA,6BAAA;AAA6B;AAA7B,CAAA;;AACT,IAAA,mBAAA,gBAAA,OAAA,CAAA,qBAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,yBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,mBAAA,CAAA,uBAAA;AAAuB;AAAvB,CAAA;AAAyB,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,mBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,mBAAA,CAAA,iBAAA;AAAiB;AAAjB,CAAA;;AAElC,IAAA,WAAA,gBAAA,OAAA,CAAA,aAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,WAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,WAAA,CAAA,SAAA;AAAS;AAAT,CAAA;;AACT,IAAA,sBAAA,gBAAA,OAAA,CAAA,wBAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,sBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,sBAAA,CAAA,oBAAA;AAAoB;AAApB,CAAA;;AACT,IAAA,OAAA,gBAAA,OAAA,CAAA,eAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,6BAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,OAAA,CAAA,2BAAA;AAA2B;AAA3B,CAAA;AAA6B,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,kBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,OAAA,CAAA,gBAAA;AAAgB;AAAhB,CAAA","sourcesContent":["export { createVirtualElementFromClick } from './createVirtualElementFromClick';\nexport { createArrowHeightStyles, createArrowStyles } from './createArrowStyles';\nexport type { CreateArrowStylesOptions } from './createArrowStyles';\nexport { usePopper } from './usePopper';\nexport { usePopperMouseTarget } from './usePopperMouseTarget';\nexport { resolvePositioningShorthand, mergeArrowOffset } from './utils/index';\nexport type {\n Alignment,\n AutoSize,\n Boundary,\n Offset,\n OffsetFunction,\n OffsetFunctionParam,\n PopperOptions,\n PopperRefHandle,\n PopperVirtualElement,\n Position,\n PositioningProps,\n PositioningShorthand,\n PositioningShorthandValue,\n} from './types';\n"],"sourceRoot":"../src/"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-positioning",
|
3
|
-
"version": "9.0.0-rc.
|
3
|
+
"version": "9.0.0-rc.8",
|
4
4
|
"description": "A react wrapper around Popper.js for Fluent UI",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -29,9 +29,9 @@
|
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
31
|
"@griffel/react": "1.0.3",
|
32
|
-
"@fluentui/react-shared-contexts": "9.0.0-rc.
|
33
|
-
"@fluentui/react-theme": "9.0.0-rc.
|
34
|
-
"@fluentui/react-utilities": "9.0.0-rc.
|
32
|
+
"@fluentui/react-shared-contexts": "9.0.0-rc.7",
|
33
|
+
"@fluentui/react-theme": "9.0.0-rc.7",
|
34
|
+
"@fluentui/react-utilities": "9.0.0-rc.8",
|
35
35
|
"@popperjs/core": "~2.4.3",
|
36
36
|
"tslib": "^2.1.0"
|
37
37
|
},
|