@deephaven/components 0.68.1-beta.0 → 0.68.1-beta.3

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/README.md CHANGED
@@ -13,8 +13,18 @@ npm install --save @deephaven/components
13
13
  Then, import and use the components from the package:
14
14
 
15
15
  ```
16
- import { Button } from '@deephaven/components';
17
-
18
- <Button kind="primary">Hello</Button>
16
+ import React from "react";
17
+ import ReactDOM from "react-dom";
18
+ import { Button, ThemeProvider } from "@deephaven/components";
19
+ import "@deephaven/components/scss/BaseStyleSheet.scss";
20
+
21
+ ReactDOM.render(
22
+ <React.StrictMode>
23
+ <ThemeProvider themes={[]}>
24
+ <Button kind="primary">Hello</Button>
25
+ </ThemeProvider>
26
+ </React.StrictMode>,
27
+ document.getElementById("root")
28
+ );
19
29
 
20
30
  ```
@@ -0,0 +1,5 @@
1
+ import { Flex } from '@adobe/react-spectrum';
2
+ export type { FlexProps } from '@adobe/react-spectrum';
3
+ export { Flex };
4
+ export default Flex;
5
+ //# sourceMappingURL=Flex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Flex.d.ts","sourceRoot":"","sources":["../../src/spectrum/Flex.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAE7C,YAAY,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,IAAI,EAAE,CAAC;AAChB,eAAe,IAAI,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { Flex } from '@adobe/react-spectrum';
2
+ export { Flex };
3
+ export default Flex;
4
+ //# sourceMappingURL=Flex.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Flex.js","names":["Flex"],"sources":["../../src/spectrum/Flex.tsx"],"sourcesContent":["import { Flex } from '@adobe/react-spectrum';\n\nexport type { FlexProps } from '@adobe/react-spectrum';\nexport { Flex };\nexport default Flex;\n"],"mappings":"AAAA,SAASA,IAAI,QAAQ,uBAAuB;AAG5C,SAASA,IAAI;AACb,eAAeA,IAAI"}
@@ -1,4 +1,5 @@
1
- export * from './picker';
1
+ export * from './Flex';
2
2
  export * from './Item';
3
+ export * from './picker';
3
4
  export * from './Section';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/spectrum/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/spectrum/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC"}
@@ -1,4 +1,5 @@
1
- export * from "./picker/index.js";
1
+ export * from "./Flex.js";
2
2
  export * from "./Item.js";
3
+ export * from "./picker/index.js";
3
4
  export * from "./Section.js";
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../src/spectrum/index.ts"],"sourcesContent":["export * from './picker';\nexport * from './Item';\nexport * from './Section';\n"],"mappings":""}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../src/spectrum/index.ts"],"sourcesContent":["export * from './Flex';\nexport * from './Item';\nexport * from './picker';\nexport * from './Section';\n"],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/components",
3
- "version": "0.68.1-beta.0+3ed4f6bc",
3
+ "version": "0.68.1-beta.3+f302fb95",
4
4
  "description": "Deephaven React component library",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "Apache-2.0",
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@adobe/react-spectrum": "^3.34.1",
28
- "@deephaven/icons": "^0.68.1-beta.0+3ed4f6bc",
29
- "@deephaven/log": "^0.68.1-beta.0+3ed4f6bc",
30
- "@deephaven/react-hooks": "^0.68.1-beta.0+3ed4f6bc",
31
- "@deephaven/utils": "^0.68.1-beta.0+3ed4f6bc",
28
+ "@deephaven/icons": "^0.68.1-beta.3+f302fb95",
29
+ "@deephaven/log": "^0.68.1-beta.3+f302fb95",
30
+ "@deephaven/react-hooks": "^0.68.1-beta.3+f302fb95",
31
+ "@deephaven/utils": "^0.68.1-beta.3+f302fb95",
32
32
  "@fortawesome/fontawesome-svg-core": "^6.2.1",
33
33
  "@fortawesome/react-fontawesome": "^0.2.0",
34
34
  "@react-spectrum/theme-default": "^3.5.1",
@@ -49,11 +49,11 @@
49
49
  "shortid": "^2.2.16"
50
50
  },
51
51
  "peerDependencies": {
52
- "react": "^17.x",
53
- "react-dom": "^17.x"
52
+ "react": ">=16.8.0",
53
+ "react-dom": ">=16.8.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@deephaven/mocks": "^0.68.1-beta.0+3ed4f6bc"
56
+ "@deephaven/mocks": "^0.68.1-beta.3+f302fb95"
57
57
  },
58
58
  "files": [
59
59
  "dist",
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "3ed4f6bca3fc15e6161f19256433a1205c56a1ca"
70
+ "gitHead": "f302fb95e67719c43f7bfcf31c7c24e5eb426f58"
71
71
  }