Skip to content

Commit 12859a6

Browse files
authored
chore: Release 2/4/22 (#2937)
* chore: Release 2/4/22 * snapshots * disable snapshot * Lint issues * Components 3.0
1 parent b9d7515 commit 12859a6

File tree

2,741 files changed

+11556
-4360
lines changed

Some content is hidden

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

2,741 files changed

+11556
-4360
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

.stylelintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

CHANGELOG.md

+65
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,71 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 3.0.0
7+
8+
## `@looker/components` 3.0.0
9+
10+
### Features
11+
12+
- Ripple animation turned on by default
13+
- **Link:** Disable underline for hover/focus state when underline prop is false
14+
- **NavTree:** Updated focus style for indicator when disclosure is also a link
15+
- **ListItem/NavTree:** Ripple animation added
16+
- **Select/SelectMulti:** Ripple animation added
17+
18+
### Bug Fixes
19+
20+
- **FloatingLabelField:** Add white-space: nowrap to detail area
21+
22+
### BREAKING CHANGES
23+
24+
- **Tree:** Remove all deprecated props: `assumeIconAlignment`, `branchFontWeight`, `forceLabelPadding`, `labelBackgroundOnly`
25+
26+
## `@looker/components-date` 3.0.4
27+
28+
- Components derive date locale from `ComponentsProvider`
29+
30+
## `@looker/filter-components` 0.10.15
31+
32+
### Features
33+
34+
- **FilterToken** Component added
35+
- **FilterErrorMessages** Component added
36+
- **Token** Component added
37+
38+
## `@looker/visualizations` 0.2.8
39+
40+
### Features
41+
42+
- **Visualization:** Broader support for render_null_values config option
43+
- Custom width for XYLegend and PieLegend
44+
45+
### Bug Fixes
46+
47+
- **Visualization:** Check valid data before rendering chart
48+
49+
## `@looker/visualizations-adapters` 0.1.9
50+
51+
### Features
52+
53+
- Sort query response by date
54+
- Sync pivot name formatting with api response
55+
56+
## `@looker/visualizations-visx` 0.2.7
57+
58+
### Features
59+
60+
- **Pie:** Paginate legend
61+
62+
### Bug Fixes
63+
64+
- **SparkLine:** Value type enforcement
65+
- **Area/Bar/Column/Scatter:** Legend resizing
66+
67+
## `@looker/i18n` 0.1.0
68+
69+
- Package created
70+
671
# 2.8.14
772

873
## `@looker/components` 2.8.14

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Looker Data Sciences, Inc.
3+
Copyright (c) 2022 Looker Data Sciences, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

__mocks__/react-i18next.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
2424
2525
*/
2626

27-
module.exports = (api) => {
27+
module.exports = api => {
2828
api.cache(true)
2929

3030
const plugins = [

apps/filter-demo/src/DashboardEmbed.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/src/DashboardList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/src/FilterDemo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/src/FilterList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/src/HeaderButtons.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/webpack.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -26,8 +26,8 @@
2626

2727
const path = require('path')
2828

29-
const BundleAnalyzerPlugin =
30-
require('webpack-bundle-analyzer').BundleAnalyzerPlugin
29+
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
30+
.BundleAnalyzerPlugin
3131

3232
const PATHS = {
3333
app: path.join(__dirname, 'src/index.tsx'),

apps/filter-demo/webpack.develop.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/filter-demo/webpack.prod.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/playground/babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
2424
2525
*/
2626

27-
module.exports = (api) => {
27+
module.exports = api => {
2828
api.cache(true)
2929

3030
const plugins = [

apps/playground/src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/playground/webpack.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -26,8 +26,8 @@
2626

2727
const path = require('path')
2828
const HtmlWebPackPlugin = require('html-webpack-plugin')
29-
const BundleAnalyzerPlugin =
30-
require('webpack-bundle-analyzer').BundleAnalyzerPlugin
29+
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
30+
.BundleAnalyzerPlugin
3131

3232
const excludeNodeModulesExcept = require('babel-loader-exclude-node-modules-except')
3333

apps/storybook/.storybook/componentsDecorator.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/.storybook/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
2424
2525
*/
2626

27-
module.exports = (api) => {
27+
module.exports = api => {
2828
api.cache(true)
2929

3030
return {

apps/storybook/jest-a11y.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/jest-image-snapshots.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/src/defaultArgTypes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/src/stories.a11y.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

apps/storybook/src/stories.shots.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -47,7 +47,7 @@ const plugins = [
4747

4848
const presets = ['@babel/preset-react', '@babel/preset-typescript']
4949

50-
module.exports = (api) => {
50+
module.exports = api => {
5151
api.cache(true)
5252

5353
return {

bin/publish-package-json.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
MIT License
66
7-
Copyright (c) 2021 Looker Data Sciences, Inc.
7+
Copyright (c) 2022 Looker Data Sciences, Inc.
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

config/jest/fileMock.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

config/jest/styleMock.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
MIT License
44
5-
Copyright (c) 2021 Looker Data Sciences, Inc.
5+
Copyright (c) 2022 Looker Data Sciences, Inc.
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)