@fluentui-react-native/popover 0.1.57 → 0.1.59

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
@@ -2,7 +2,43 @@
2
2
  "name": "@fluentui-react-native/popover",
3
3
  "entries": [
4
4
  {
5
- "date": "Sat, 18 Mar 2023 17:18:20 GMT",
5
+ "date": "Wed, 03 May 2023 07:04:22 GMT",
6
+ "tag": "@fluentui-react-native/popover_v0.1.59",
7
+ "version": "0.1.59",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@fluentui-react-native/popover",
13
+ "comment": "Bump @fluentui-react-native/framework to v0.9.9",
14
+ "commit": "52a53e376865d500b73f26ea9935e13036b04b1a"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 21 Mar 2023 21:53:47 GMT",
21
+ "tag": "@fluentui-react-native/popover_v0.1.58",
22
+ "version": "0.1.58",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "krsiler@microsoft.com",
27
+ "package": "@fluentui-react-native/popover",
28
+ "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6",
29
+ "comment": "Trigger manual bump (no changes)"
30
+ },
31
+ {
32
+ "author": "beachball",
33
+ "package": "@fluentui-react-native/popover",
34
+ "comment": "Bump @fluentui-react-native/framework to v0.9.8",
35
+ "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6"
36
+ }
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "date": "Sat, 18 Mar 2023 17:22:31 GMT",
6
42
  "tag": "@fluentui-react-native/popover_v0.1.57",
7
43
  "version": "0.1.57",
8
44
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,29 @@
1
1
  # Change Log - @fluentui-react-native/popover
2
2
 
3
- This log was last generated on Sat, 18 Mar 2023 17:18:20 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 03 May 2023 07:04:22 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.1.59
8
+
9
+ Wed, 03 May 2023 07:04:22 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @fluentui-react-native/framework to v0.9.9
14
+
15
+ ## 0.1.58
16
+
17
+ Tue, 21 Mar 2023 21:53:47 GMT
18
+
19
+ ### Patches
20
+
21
+ - Trigger manual bump (no changes) (krsiler@microsoft.com)
22
+ - Bump @fluentui-react-native/framework to v0.9.8
23
+
7
24
  ## 0.1.57
8
25
 
9
- Sat, 18 Mar 2023 17:18:20 GMT
26
+ Sat, 18 Mar 2023 17:22:31 GMT
10
27
 
11
28
  ### Patches
12
29
 
@@ -0,0 +1,4 @@
1
+ import type { PopoverProps, PopoverTokens } from './Popover.types';
2
+ export declare const Popover: import("@fluentui-react-native/use-tokens").CustomizableComponent<PopoverProps, PopoverTokens, import("@fluentui-react-native/framework").Theme>;
3
+ export default Popover;
4
+ //# sourceMappingURL=Popover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAKnE,eAAO,MAAM,OAAO,kJAIA,CAAC;AAGrB,eAAe,OAAO,CAAC"}
package/lib/Popover.js ADDED
@@ -0,0 +1,11 @@
1
+ import { compressible, buildUseTokens } from '@fluentui-react-native/framework';
2
+ import { popoverName } from './Popover.types';
3
+ var usePopoverTokens = buildUseTokens(function () { return ({}); }, popoverName);
4
+ export var Popover = compressible(function (_props, _useTokens) {
5
+ return function () {
6
+ return null;
7
+ };
8
+ }, usePopoverTokens);
9
+ Popover.displayName = popoverName;
10
+ export default Popover;
11
+ //# sourceMappingURL=Popover.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.js","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAGhF,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,IAAM,gBAAgB,GAAG,cAAc,CAAgB,cAAM,OAAA,CAAC,EAAE,CAAC,EAAJ,CAAI,EAAE,WAAW,CAAC,CAAC;AAEhF,MAAM,CAAC,IAAM,OAAO,GAAG,YAAY,CAA8B,UAAC,MAAoB,EAAE,UAAoC;IAC1H,OAAO;QACL,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;AACJ,CAAC,EAAE,gBAAgB,CAAC,CAAC;AACrB,OAAO,CAAC,WAAW,GAAG,WAAW,CAAC;AAElC,eAAe,OAAO,CAAC"}
@@ -0,0 +1,17 @@
1
+ import type { IViewProps } from '@fluentui-react-native/adapters';
2
+ export declare const popoverName = "Popover";
3
+ export interface PopoverTokens {
4
+ }
5
+ export interface PopoverProps extends Omit<IViewProps, 'onPress'> {
6
+ }
7
+ export interface PopoverState {
8
+ }
9
+ export interface PopoverSlotProps {
10
+ }
11
+ export interface PopoverType {
12
+ props: PopoverProps;
13
+ tokens: PopoverTokens;
14
+ slotProps: PopoverSlotProps;
15
+ state: PopoverState;
16
+ }
17
+ //# sourceMappingURL=Popover.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.types.d.ts","sourceRoot":"","sources":["../src/Popover.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAElE,eAAO,MAAM,WAAW,YAAY,CAAC;AAErC,MAAM,WAAW,aAAa;CAAG;AAEjC,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC;CAAG;AAEpE,MAAM,WAAW,YAAY;CAAG;AAEhC,MAAM,WAAW,gBAAgB;CAAG;AAEpC,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,CAAC;IACpB,MAAM,EAAE,aAAa,CAAC;IACtB,SAAS,EAAE,gBAAgB,CAAC;IAC5B,KAAK,EAAE,YAAY,CAAC;CACrB"}
@@ -0,0 +1,2 @@
1
+ export var popoverName = 'Popover';
2
+ //# sourceMappingURL=Popover.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.types.js","sourceRoot":"","sources":["../src/Popover.types.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,WAAW,GAAG,SAAS,CAAC"}
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { Popover } from './Popover';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC"}
package/lib/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export { Popover } from './Popover';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-react-native/popover",
3
- "version": "0.1.57",
3
+ "version": "0.1.59",
4
4
  "description": "A cross-platform Popover component using the Fluent Design System",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@fluentui-react-native/adapters": ">=0.10.2 <1.0.0",
26
- "@fluentui-react-native/framework": "0.9.7",
26
+ "@fluentui-react-native/framework": "0.9.9",
27
27
  "tslib": "^2.3.1"
28
28
  },
29
29
  "devDependencies": {