Skip to content

Commit

Permalink
docs(catalog): fix some things since last sync
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 536855494
  • Loading branch information
Elliott Marquez authored and copybara-github committed May 31, 2023
1 parent 07b45b8 commit 1a81d1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion catalog/esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,6 @@ await Promise.all([componentsBuild, ssrBuild, inlineBuild]);
const require = createRequire(import.meta.url);
copyFileSync(
require.resolve('playground-elements/playground-typescript-worker.js'),
join(jsFolder, 'playground-typescript-worker.js'));
join(jsFolder, 'hydration-entrypoints/playground-typescript-worker.js'));

process.exit(0);
2 changes: 1 addition & 1 deletion catalog/src/components/nav-drawer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import {animate, fadeIn, fadeOut} from '@lit-labs/motion';
import {EASING} from '@material/web/motion/animation.js';
import {EASING} from '@material/web/internal/motion/animation.js';
import {css, html, LitElement, nothing} from 'lit';
import {customElement, state} from 'lit/decorators.js';

Expand Down
6 changes: 3 additions & 3 deletions catalog/src/components/theme-changer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
* SPDX-License-Identifier: Apache-2.0
*/

import '@material/web/segmentedbuttonset/outlined-segmented-button-set.js';
import '@material/web/segmentedbutton/outlined-segmented-button.js';
import '@material/web/labs/segmentedbuttonset/outlined-segmented-button-set.js';
import '@material/web/labs/segmentedbutton/outlined-segmented-button.js';
import '@material/web/icon/icon.js';
import './hct-slider.js';
import '@material/web/focus/focus-ring.js';

import type {MdOutlinedSegmentedButton} from '@material/web/segmentedbutton/outlined-segmented-button.js';
import type {MdOutlinedSegmentedButton} from '@material/web/labs/segmentedbutton/outlined-segmented-button.js';
import {css, html, LitElement} from 'lit';
import {customElement, query, queryAll, state} from 'lit/decorators.js';
import {live} from 'lit/directives/live.js';
Expand Down
6 changes: 3 additions & 3 deletions catalog/src/hydration-entrypoints/playground-elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* SPDX-License-Identifier: Apache-2.0
*/

import 'playground-elements/playground-project.js.js';
import 'playground-elements/playground-preview.js.js';
import 'playground-elements/playground-file-editor.js.js';
import 'playground-elements/playground-project.js';
import 'playground-elements/playground-preview.js';
import 'playground-elements/playground-file-editor.js';

0 comments on commit 1a81d1e

Please sign in to comment.