Skip to content

Commit 4f26072

Browse files
GooglerTrey Shugart
Googler
authored and
Trey Shugart
committed
Project import generated by Copybara.
FolderOrigin-RevId: /usr/local/google/home/treshugart/dev/helltool/.
1 parent 9971807 commit 4f26072

File tree

12,289 files changed

+72923
-218405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,289 files changed

+72923
-218405
lines changed

.github/CODEOWNERS

-1
This file was deleted.

packages/components-data/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.4 (2025-03-27)
2+
3+
### Bug Fixes
4+
5+
- Fix issue causing query IDs to be parsed as `NaN`.
6+
17
## 1.0.3 (2023-01-26)
28

39
Version bump only.

packages/components-data/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ This package provides shared application state within react context for use in f
99

1010
You'll also need to satisfy peer dependencies.
1111

12-
- **NPM:** `npm install react react-dom `
13-
- **YARN:** `yarn add react react-dom`
12+
- **NPM:** `npm install react`
13+
- **YARN:** `yarn add react`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Copyright (c) 2023 Google LLC
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
import React from 'react';
6+
import type { ReactNode } from 'react';
7+
import type { Looker40SDK } from '@looker/sdk';
8+
type DataProviderProps = {
9+
sdk: Looker40SDK;
10+
children?: ReactNode;
11+
};
12+
export declare const DataProvider: ({ children, sdk }: DataProviderProps) => React.JSX.Element;
13+
export {};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Copyright (c) 2023 Google LLC
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
import React from 'react';
6+
import type { Looker40SDK } from '@looker/sdk';
7+
export declare const SDKContext: React.Context<Looker40SDK>;

packages/components-data/dist/cjs/DataProvider.js

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components-data/dist/cjs/DataProvider.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components-data/dist/cjs/SDKContext.js

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components-data/dist/cjs/SDKContext.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components-data/dist/cjs/hooks/index.js

+127
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components-data/dist/cjs/hooks/index.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)