Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3702818
Write dev files to different location.
issackjohn May 19, 2025
97c7562
Using root code style.
issackjohn May 22, 2025
54f6458
Remove unused Prettier and ESLint configuration files from responsive…
issackjohn May 22, 2025
6bf0a33
Simplify lookupStartNode assignment in querySelector method
issackjohn May 22, 2025
2511bd9
Update Node.js engine requirement to >=22.0.0 in package.json and pac…
issackjohn May 22, 2025
22ea792
Update scrollIntoView method to accept options parameter for better c…
issackjohn May 22, 2025
7a78fda
Add additional layout calls
issackjohn May 22, 2025
00accbf
Refactor class attribute order
issackjohn May 22, 2025
36e55fc
use connectedCallback for resize observer initialization
issackjohn May 22, 2025
182534d
Add exclusion for experimental responsive design dev-dist in .prettie…
issackjohn May 22, 2025
395a32e
Add comments to clarify the use of ResizeObserver in AppRibbon, Infor…
issackjohn May 22, 2025
ab53799
Build dist
issackjohn May 22, 2025
e66ecd8
change scroll behavior to instant
issackjohn May 23, 2025
24d4e84
Refactor Responsive-Design tests to use async functions
issackjohn May 23, 2025
2b030fe
use forEach for consistency
issackjohn May 23, 2025
7ec4622
restore eslintignore
issackjohn May 27, 2025
0f6360c
Add dev-dist to .eslintignore
issackjohn May 27, 2025
ec78e6c
Rename output directory from dev-dist to build-dev in configuration f…
issackjohn May 27, 2025
c62a096
Remove unused dependencies from package.json in responsive-design
issackjohn May 27, 2025
5e4a8be
Update caniuse-lite version and add license information in package-lo…
issackjohn May 27, 2025
269c894
Update koa and nanoid versions and add license information in package…
issackjohn May 27, 2025
d42418f
Refactor rollup configuration to clean output directory only for prod…
issackjohn May 27, 2025
236efb4
Update lit version to 3.3.0 in package.json and package-lock.json
issackjohn May 27, 2025
d6814f5
build dist
issackjohn May 27, 2025
5967dc8
Add conditional terser plugin usage based on ROLLUP_WATCH environment…
issackjohn May 27, 2025
9780dfc
Refactor InformationWindow to use private _restaurants property and s…
issackjohn May 27, 2025
bd245a2
Update rollup and related plugins to latest versions in package.json …
issackjohn May 27, 2025
27d96ed
build dist
issackjohn May 27, 2025
adf7264
Update tailwindcss to version 3.4.17 in package.json and package-lock…
issackjohn May 27, 2025
bf46d7a
build dist
issackjohn May 27, 2025
a64da63
Re-install resize observer
issackjohn May 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ package-lock.json
/resources/perf.webkit.org

/resources/react-stockcharts

/experimental/responsive-design/build-dev/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@
/resources/charts/node_modules/
/resources/todomvc/big-dom-generator/node_modules/
/experimental/responsive-design/node_modules/
/experimental/responsive-design/build-dev/
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ package-lock.json
/resources/perf.webkit.org

/resources/react-stockcharts

/experimental/responsive-design/
/experimental/responsive-design/build-dev/
/experimental/responsive-design/**/*.generated.css
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
"useTabs": false,
"plugins": ["prettier-plugin-tailwindcss"]
}
4 changes: 0 additions & 4 deletions experimental/responsive-design/.prettierignore

This file was deleted.

13 changes: 0 additions & 13 deletions experimental/responsive-design/.prettierrc

This file was deleted.

105 changes: 52 additions & 53 deletions experimental/responsive-design/dist/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion experimental/responsive-design/dist/iframe.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion experimental/responsive-design/dist/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
74 changes: 0 additions & 74 deletions experimental/responsive-design/eslint.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion experimental/responsive-design/iframe.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion experimental/responsive-design/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
Loading