@looker/extension-utils 0.1.10-alpha.1524 → 0.1.12
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.md +31 -0
- package/README.md +2 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.1.12](https://www.github.com/looker-open-source/sdk-codegen/compare/extension-utils-v0.1.11...extension-utils-v0.1.12) (2022-07-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @looker/extension-sdk bumped from ^22.8.0 to ^22.10.0
|
|
11
|
+
* @looker/extension-sdk-react bumped from ^22.8.0 to ^22.10.0
|
|
12
|
+
|
|
13
|
+
### [0.1.11](https://www.github.com/looker-open-source/sdk-codegen/compare/extension-utils-v0.1.10...extension-utils-v0.1.11) (2022-07-13)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @looker/extension-sdk bumped from ^22.6.0 to ^22.8.0
|
|
21
|
+
* @looker/extension-sdk-react bumped from ^22.6.0 to ^22.8.0
|
|
22
|
+
|
|
23
|
+
### [0.1.10](https://www.github.com/looker-open-source/sdk-codegen/compare/extension-utils-v0.1.9...extension-utils-v0.1.10) (2022-07-07)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @looker/extension-sdk bumped from ^22.4.2 to ^22.6.0
|
|
31
|
+
* @looker/extension-sdk-react bumped from ^22.4.2 to ^22.6.0
|
|
32
|
+
* @looker/sdk-rtl bumped from ^21.3.3 to ^21.3.4
|
|
33
|
+
|
|
3
34
|
### [0.1.9](https://www.github.com/looker-open-source/sdk-codegen/compare/extension-utils-v0.1.8...extension-utils-v0.1.9) (2022-04-07)
|
|
4
35
|
|
|
5
36
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @looker/extension-utils
|
|
2
2
|
|
|
3
|
+
Easier browser-based TypeScript authentication via OAuth, and support for building React applications that can run both inside and outside of [Looker's Extension Framework](https://docs.looker.com/data-modeling/extension-framework/extension-framework-intro) hosting environment.
|
|
4
|
+
|
|
3
5
|
## "Dual mode" Looker browser applications
|
|
4
6
|
|
|
5
7
|
This package provides interfaces and classes that support building a Looker application that can be both hosted as
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/extension-utils",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Looker Extension Utilities",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@looker/components": "^2.8.1",
|
|
29
|
-
"@looker/extension-sdk": "^22.
|
|
30
|
-
"@looker/extension-sdk-react": "^22.
|
|
31
|
-
"@looker/sdk-rtl": "^21.3.
|
|
29
|
+
"@looker/extension-sdk": "^22.10.0",
|
|
30
|
+
"@looker/extension-sdk-react": "^22.10.0",
|
|
31
|
+
"@looker/sdk-rtl": "^21.3.4",
|
|
32
32
|
"react": "^16.13.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"webpack-dev-server": "^3.11.2",
|
|
40
40
|
"webpack-merge": "^5.7.3"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "dd8c49742dcb8b92e6ad22252884eb6ca3a041ed"
|
|
43
43
|
}
|