Skip to content

Commit

Permalink
Project import generated by Copybara.
Browse files Browse the repository at this point in the history
FolderOrigin-RevId: /usr/local/google/home/meredithdodge/helltool/.
  • Loading branch information
Googler authored and mdodgelooker committed Jan 27, 2023
1 parent 6c196a1 commit 7ece4e7
Show file tree
Hide file tree
Showing 25,911 changed files with 328,882 additions and 547,969 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
29 changes: 0 additions & 29 deletions CONTRIBUTING.md

This file was deleted.

27 changes: 3 additions & 24 deletions packages/components-data/.babelrc.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
/*
MIT License
Copyright (c) 2022 Looker Data Sciences, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
/**
* Copyright (c) 2023 Google LLC
* SPDX-License-Identifier: MIT
*/
module.exports = (api) => {
api.cache.forever()
Expand Down
9 changes: 9 additions & 0 deletions packages/components-data/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**/*.md
/**/*.mdx
/**/locales
/dist
/lib
/storybook-static
/test/output/jest
/.babelrc.js
/src/testUtils/mockSDKWithListeners.ts
1 change: 1 addition & 0 deletions packages/components-data/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@looker/prettier-config')
6 changes: 0 additions & 6 deletions packages/components-data/.prettierrc.json

This file was deleted.

36 changes: 7 additions & 29 deletions packages/components-data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,65 +1,43 @@
## [1.0.1](https://github.com/looker-open-source/components/compare/22.16.0...1.0.1) (2022-10-26)
## 1.0.3 (2023-01-26)

Version bump only.

### Features
## [1.0.1](https://github.com/looker-open-source/components/compare/22.16.0...1.0.1) (2022-10-26)

* Widen React peer dependency version range
### Features

- Widen React peer dependency version range

# [1.0.0](https://github.com/looker-open-source/components/compare/22.16.0...1.0.0) (2022-10-12)

## Features

* Return top level pivots response from sdk request
- Return top level pivots response from sdk request

## [0.1.7](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-05-23)

**Note:** Version bump only for package @looker/components-data





## [0.1.6](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-05-16)

**Note:** Version bump only for package @looker/components-data





## [0.1.5](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-05-11)

**Note:** Version bump only for package @looker/components-data





## [0.1.4](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-04-29)

**Note:** Version bump only for package @looker/components-data





## [0.1.3](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-04-21)

**Note:** Version bump only for package @looker/components-data





## [0.1.2](https://github.com/looker-open-source/components/compare/@looker/[email protected]...@looker/[email protected]) (2022-04-19)

**Note:** Version bump only for package @looker/components-data





## 0.1.1 (2022-04-08)

**Note:** Version bump only for package @looker/components-data
**Note:** Version bump only for package @looker/components-data
27 changes: 3 additions & 24 deletions packages/components-data/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
/*
MIT License
Copyright (c) 2022 Looker Data Sciences, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
/**
* Copyright (c) 2023 Google LLC
* SPDX-License-Identifier: MIT
*/

const { config } = require('@looker/jest-config')
Expand Down
65 changes: 0 additions & 65 deletions packages/components-data/lib/CHANGELOG.md

This file was deleted.

9 changes: 7 additions & 2 deletions packages/components-data/lib/DataProvider.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import type { FC } from 'react';
/**
* Copyright (c) 2023 Google LLC
* SPDX-License-Identifier: MIT
*/
import type { ReactNode } from 'react';
import type { Looker40SDK } from '@looker/sdk';
declare type DataProviderProps = {
sdk: Looker40SDK;
children?: ReactNode;
};
export declare const DataProvider: FC<DataProviderProps>;
export declare const DataProvider: ({ children, sdk }: DataProviderProps) => JSX.Element;
export {};
12 changes: 0 additions & 12 deletions packages/components-data/lib/DataProvider.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/components-data/lib/DataProvider.js.map

This file was deleted.

13 changes: 0 additions & 13 deletions packages/components-data/lib/README.md

This file was deleted.

4 changes: 4 additions & 0 deletions packages/components-data/lib/SDKContext.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* Copyright (c) 2023 Google LLC
* SPDX-License-Identifier: MIT
*/
import React from 'react';
import type { Looker40SDK } from '@looker/sdk';
export declare const SDKContext: React.Context<Looker40SDK>;
3 changes: 0 additions & 3 deletions packages/components-data/lib/SDKContext.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/components-data/lib/SDKContext.js.map

This file was deleted.

25 changes: 0 additions & 25 deletions packages/components-data/lib/cjs/DataProvider.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/components-data/lib/cjs/DataProvider.js.map

This file was deleted.

15 changes: 0 additions & 15 deletions packages/components-data/lib/cjs/SDKContext.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/components-data/lib/cjs/SDKContext.js.map

This file was deleted.

Loading

0 comments on commit 7ece4e7

Please sign in to comment.