bridgetown-lit-renderer 2.0.0.beta3 → 2.1.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +2 -2
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +8 -0
- data/README.md +18 -103
- data/bridgetown-lit-renderer.gemspec +1 -1
- data/lib/bridgetown-lit-renderer/builder.rb +2 -4
- data/lib/bridgetown-lit-renderer/version.rb +1 -1
- data/lib/bridgetown-lit-renderer.rb +4 -0
- data/package.json +8 -5
- data/src/build.js +25 -5
- data/src/server/ssr_exec.js +9 -6
- data/yarn.lock +494 -276
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e534a6e850bf0db255ac840ff5a778c4cb79e7e6ff436e52d8a5016ea69a3ab
|
4
|
+
data.tar.gz: 1ba1b842d825ed329978039bad19afa2847b54512893e957014a87d9d6d201e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb7adba74f75b4530463826f98309995bfa533c6e10c91273087a5d60b1d6bdff89da453298e57e6a0543747cb60dfbca1b99d7c2415c57372f656838fbcb261
|
7
|
+
data.tar.gz: '059e52e08f483ce24692259f21309ba8178f0b071db5d6bccd1ae29997c0d0e82a589a133fdcb7740d1a2eaa95c409d0e30f0dede04fbfcb9818c929a69f6799'
|
data/.github/workflows/ci.yml
CHANGED
@@ -23,9 +23,9 @@ jobs:
|
|
23
23
|
bundler-cache: true
|
24
24
|
- uses: actions/setup-node@v2
|
25
25
|
with:
|
26
|
-
node-version: '
|
26
|
+
node-version: '16'
|
27
27
|
cache: 'yarn'
|
28
28
|
- name: Install NPM packages
|
29
29
|
run: yarn install
|
30
30
|
- name: Run tests
|
31
|
-
run: script/
|
31
|
+
run: script/cibuild
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [2.1.0.beta1] - 2023-06-18
|
11
|
+
|
12
|
+
- Update for Bridgetown 1.3 and latest esbuild + Lit
|
13
|
+
|
14
|
+
## [2.0.0] - 2022-10-08
|
15
|
+
|
16
|
+
- Work with latest Lit SSR, upgrade to initializers system in Bridgetown 1.2
|
17
|
+
|
10
18
|
## [2.0.0.beta3] - 2022-05-14
|
11
19
|
|
12
20
|
- Relocate `@lit-labs/ssr` to package dependency, import the experimental hydrate module directly
|
data/README.md
CHANGED
@@ -7,7 +7,11 @@
|
|
7
7
|
|
8
8
|
This [Bridgetown](https://www.bridgetownrb.com) plugin provides you with an easy-to-use pipeline for SSR + hydration of Lit components. Create "islands" of interactivity using Lit-based web components which are fully supported in all major browsers, and take full advantage of scoped component styling via the shadow DOM.
|
9
9
|
|
10
|
-
|
10
|
+
## Documentation
|
11
|
+
|
12
|
+
**[The official documentation is now available on the Bridgetown website.](https://edge.bridgetownrb.com/docs/components/lit)**
|
13
|
+
|
14
|
+
[Check out the demo site repo.](https://github.com/bridgetownrb/lit-renderer-example)
|
11
15
|
|
12
16
|
## Installation
|
13
17
|
|
@@ -17,16 +21,24 @@ Starting in Bridgetown v1.1, you can install this plugin via a bundled configura
|
|
17
21
|
$ bin/bridgetown configure lit
|
18
22
|
```
|
19
23
|
|
20
|
-
|
24
|
+
For a manual installation overview (Bridgetown 1.2+):
|
21
25
|
|
22
|
-
Run this command to add this plugin to your site's Gemfile, along with Lit and SSR support:
|
26
|
+
Run this command to add this plugin to your site's Gemfile, along with JavaScript packages for Lit and SSR support:
|
23
27
|
|
24
28
|
```shell
|
25
|
-
$ bundle add bridgetown-lit-renderer
|
29
|
+
$ bundle add bridgetown-lit-renderer
|
26
30
|
|
27
31
|
$ yarn add lit bridgetown-lit-renderer
|
28
32
|
```
|
29
33
|
|
34
|
+
Then add the initializer to your configuration in `config/initializers.rb`:
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
init :"bridgetown-lit-renderer"
|
38
|
+
```
|
39
|
+
|
40
|
+
(For Bridgetown 1.1 or earlier, [read these instructions](https://github.com/bridgetownrb/bridgetown-lit-renderer/tree/v2.0.0.beta3).)
|
41
|
+
|
30
42
|
Create a file in `config/lit-ssr.config.js` with the following:
|
31
43
|
|
32
44
|
```js
|
@@ -72,104 +84,7 @@ Now add the following to the top of your `frontend/javascript/index.js` file:
|
|
72
84
|
import "bridgetown-lit-renderer"
|
73
85
|
```
|
74
86
|
|
75
|
-
|
76
|
-
|
77
|
-
For the purposes of testing your install, create the `src/_components/happy-days.lit.js` file:
|
78
|
-
|
79
|
-
```js
|
80
|
-
import "lit/experimental-hydrate-support.js"
|
81
|
-
import { LitElement, html, css } from "lit"
|
82
|
-
|
83
|
-
export class HappyDaysElement extends LitElement {
|
84
|
-
static styles = css`
|
85
|
-
:host {
|
86
|
-
display: block;
|
87
|
-
border: 2px dashed gray;
|
88
|
-
padding: 20px;
|
89
|
-
max-width: 300px;
|
90
|
-
}
|
91
|
-
`
|
92
|
-
|
93
|
-
static properties = {
|
94
|
-
hello: { type: String }
|
95
|
-
}
|
96
|
-
|
97
|
-
render() {
|
98
|
-
return html`
|
99
|
-
<p>Hello ${this.hello}! ${Date.now()}</p>
|
100
|
-
`;
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
|
-
customElements.define('happy-days', HappyDaysElement)
|
105
|
-
```
|
106
|
-
|
107
|
-
Finally, create a new `.erb` page somewhere in `src`, and add this to your template:
|
108
|
-
|
109
|
-
```erb
|
110
|
-
<%= lit :happy_days, hello: "there" %>
|
111
|
-
```
|
112
|
-
|
113
|
-
(The helper will know how to convert the tag name and attribute keywords to HTML output.)
|
114
|
-
|
115
|
-
Now start up your Bridgetown site, visit the page, and if all goes well, you should see a box containing "Hello there!" and a timestamp when the page was first rendered.
|
116
|
-
|
117
|
-
You can reload the page several times and see that the timestamp doesn't change, because Lit's SSR + Hydration support knows not to re-render the component. However, if you change the `hello` attribute, you'll get a re-render and thus see a new timestamp. _How cool is that?!_
|
118
|
-
|
119
|
-
### Lit Helper Options
|
120
|
-
|
121
|
-
The `lit` helper works in any Ruby template language and let's you pass data down to the Lit SSR build process. Any value that's not alreadey a string will be converted to JSON (via Ruby's `to_json`). You can use a symbol or string for the tag name and underscores are automatically converted to dashes.
|
122
|
-
|
123
|
-
```erb
|
124
|
-
<%= lit :page_header, title: resource.data.title %>
|
125
|
-
```
|
126
|
-
|
127
|
-
(Remember, all custom elements always must have at least one dash within the HTML.)
|
128
|
-
|
129
|
-
If you pass a block to `lit`, it will add that additional HTML into the Lit template output:
|
130
|
-
|
131
|
-
```erb
|
132
|
-
<%= lit :ui_sidebar do %>
|
133
|
-
<h2 slot="title">Nice Sidebar</h2>
|
134
|
-
<% end %>
|
135
|
-
```
|
136
|
-
|
137
|
-
You can also pass page/resource front matter and other data along via the `data` keyword, which then can be used in the block. In addition, if a tag name isn't present, you can add it yourself in within the block.
|
138
|
-
|
139
|
-
```erb
|
140
|
-
<%= lit data: resource.data do %>
|
141
|
-
<page-header>
|
142
|
-
<h1>${data.title}</h1>
|
143
|
-
</page-header>
|
144
|
-
<% end %>
|
145
|
-
```
|
146
|
-
|
147
|
-
When the component is hydrated, it will utilize the same data that was passed at build time and avoid a client-side re-render. However, from that point forward you're free to mutate component attribute/properties to trigger re-renders as normal. [Check out Lit's `firstUpdated` method](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle-completing) as a good place to start.
|
148
|
-
|
149
|
-
You also have the option of choosing a different entry point (aka your JS file that contains or imports one or more Lit components). The default is `./config/lit-components-entry.js`, but you can specify any other file you wish (the path should be relative to your project root).
|
150
|
-
|
151
|
-
```erb
|
152
|
-
<%= lit data: resource.data, entry: "./frontend/javascript/components/headers.js" do %>
|
153
|
-
<page-header title="${data.title}"></page-header>
|
154
|
-
<% end %>
|
155
|
-
```
|
156
|
-
|
157
|
-
This would typically coincide with a strategy of having multiple esbuild/Webpack entry points, and loading different entry points on different parts of your site. An exercise left for the reader…
|
158
|
-
|
159
|
-
### Sidecar CSS Files
|
160
|
-
|
161
|
-
The "default" manner in which you author styles in Lit components is to use `css` tagged template literals (as you saw in the `happy-days` example above). However, some people prefer authoring styles in dedicated CSS files.
|
162
|
-
|
163
|
-
The [esbuild-plugin-lit-css](https://github.com/bennypowers/lit-css/tree/main/packages/esbuild-plugin-lit-css) plugin allows you to author perfectly vanilla CSS files alongside your component files and import them.
|
164
|
-
|
165
|
-
In order to separate the "globally-accessible" stylesheets you may have in `src/_components` from the Lit component-specific stylesheets (which we only want to get instantiated within component shadow roots), we'll use the following file conventions:
|
166
|
-
|
167
|
-
* For global stylesheets, use a `.global.css` suffix.
|
168
|
-
* For Lit component stylesheets, use a `.lit.css` suffix.
|
169
|
-
|
170
|
-
If you used Bridgetown v1.1 or later's Lit bundled configuration, this is already installed and configured for you. Otherwise, you'll need to do just a bit of manual setup to get things working.
|
171
|
-
|
172
|
-
TBD
|
87
|
+
(It's very important this comes _before_ loading any other JavaScript code which might make use of Lit, such as the Bridgetown Quick Search plugin.)
|
173
88
|
|
174
89
|
### Technical and Performance Considerations
|
175
90
|
|
@@ -232,4 +147,4 @@ you should be doing this:
|
|
232
147
|
[gem]: https://img.shields.io/gem/v/bridgetown-lit-renderer.svg?style=for-the-badge&color=red
|
233
148
|
[gem-url]: https://rubygems.org/gems/bridgetown-lit-renderer
|
234
149
|
[npm]: https://img.shields.io/npm/v/bridgetown-lit-renderer.svg?style=for-the-badge
|
235
|
-
[npm-url]: https://npmjs.com/package/bridgetown-lit-renderer
|
150
|
+
[npm-url]: https://npmjs.com/package/bridgetown-lit-renderer
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
|
22
22
|
spec.required_ruby_version = ">= 2.7.0"
|
23
23
|
|
24
|
-
spec.add_dependency "bridgetown", ">= 1.0", "< 2.0"
|
24
|
+
spec.add_dependency "bridgetown", ">= 1.3.0.beta2", "< 2.0"
|
25
25
|
spec.add_dependency "random-port", ">= 0.5"
|
26
26
|
|
27
27
|
spec.add_development_dependency "bundler"
|
@@ -43,7 +43,7 @@ module BridgetownLitRenderer
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
|
-
helper "lit"
|
46
|
+
helper "lit" do | # rubocop:todo Metrics/ParameterLists
|
47
47
|
tag = nil,
|
48
48
|
data: {},
|
49
49
|
hydrate_root: true,
|
@@ -51,7 +51,7 @@ module BridgetownLitRenderer
|
|
51
51
|
**kwargs,
|
52
52
|
&block
|
53
53
|
|
|
54
|
-
code = block ? view.capture(&block) : ""
|
54
|
+
code = block ? helpers.view.capture(&block) : ""
|
55
55
|
code = process_tag.(tag, kwargs, code) if tag
|
56
56
|
|
57
57
|
if hydrate_root
|
@@ -75,5 +75,3 @@ module BridgetownLitRenderer
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
78
|
-
|
79
|
-
BridgetownLitRenderer::Builder.register
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bridgetown-lit-renderer",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.1.0-beta1",
|
4
4
|
"main": "frontend/javascript/index.js",
|
5
5
|
"exports": {
|
6
6
|
".": {
|
@@ -25,10 +25,13 @@
|
|
25
25
|
"src"
|
26
26
|
],
|
27
27
|
"dependencies": {
|
28
|
-
"@
|
28
|
+
"@lit-labs/ssr": "^3.1.0",
|
29
|
+
"@webcomponents/template-shadowroot": "^0.2.0",
|
29
30
|
"colors": "^1.4.0",
|
30
|
-
"esbuild": "^0.
|
31
|
-
"glob": "^
|
32
|
-
|
31
|
+
"esbuild": "^0.17",
|
32
|
+
"glob": "^10.2.6"
|
33
|
+
},
|
34
|
+
"devDependencies": {
|
35
|
+
"@lit-labs/ssr-client": "^1.1.2"
|
33
36
|
}
|
34
37
|
}
|
data/src/build.js
CHANGED
@@ -1,10 +1,17 @@
|
|
1
|
+
const autogeneratedBridgetownConfig = {
|
2
|
+
"source": "src",
|
3
|
+
"destination": "output",
|
4
|
+
"componentsDir": "_components",
|
5
|
+
"islandsDir": "_islands"
|
6
|
+
}
|
7
|
+
|
1
8
|
const path = require("path")
|
2
9
|
const glob = require("glob")
|
3
10
|
|
4
11
|
// Glob plugin derived from:
|
5
12
|
// https://github.com/thomaschaaf/esbuild-plugin-import-glob
|
6
13
|
// https://github.com/xiaohui-zhangxh/jsbundling-rails/commit/b15025dcc20f664b2b0eb238915991afdbc7cb58
|
7
|
-
const importGlobPlugin = () => ({
|
14
|
+
const importGlobPlugin = (bridgetownConfig) => ({
|
8
15
|
name: "import-glob",
|
9
16
|
setup: (build) => {
|
10
17
|
build.onResolve({ filter: /\*/ }, async (args) => {
|
@@ -12,7 +19,9 @@ const importGlobPlugin = () => ({
|
|
12
19
|
return; // Ignore unresolvable paths
|
13
20
|
}
|
14
21
|
|
15
|
-
const adjustedPath = args.path
|
22
|
+
const adjustedPath = args.path
|
23
|
+
.replace(/^\$components\/\*\*/, `../${bridgetownConfig.source}/${bridgetownConfig.componentsDir}/**`)
|
24
|
+
.replace(/^bridgetownComponents\//, `../${bridgetownConfig.source}/${bridgetownConfig.componentsDir}/`) // legacy
|
16
25
|
|
17
26
|
return {
|
18
27
|
path: adjustedPath,
|
@@ -27,7 +36,10 @@ const importGlobPlugin = () => ({
|
|
27
36
|
build.onLoad({ filter: /.*/, namespace: "import-glob" }, async (args) => {
|
28
37
|
const files = glob.sync(args.pluginData.path, {
|
29
38
|
cwd: args.pluginData.resolveDir,
|
30
|
-
})
|
39
|
+
})
|
40
|
+
.sort()
|
41
|
+
.map(module => module.replace(`../${bridgetownConfig.source}/${bridgetownConfig.componentsDir}/`, "$components/"))
|
42
|
+
.map(module => module.match(/^[a-zA-Z0-9]/) ? `./${module}` : module)
|
31
43
|
|
32
44
|
const importerCode = `
|
33
45
|
${files
|
@@ -35,7 +47,7 @@ const importGlobPlugin = () => ({
|
|
35
47
|
.join(';')}
|
36
48
|
const modules = {${files
|
37
49
|
.map((module, index) => `
|
38
|
-
"${module.replace("
|
50
|
+
"${module.replace("$components/", "")}": module${index},`)
|
39
51
|
.join("")}
|
40
52
|
};
|
41
53
|
export default modules;
|
@@ -46,7 +58,13 @@ const importGlobPlugin = () => ({
|
|
46
58
|
},
|
47
59
|
})
|
48
60
|
|
61
|
+
const bridgetownConfigured = (bridgetownConfig) => {
|
62
|
+
return {...autogeneratedBridgetownConfig, ...bridgetownConfig}
|
63
|
+
}
|
64
|
+
|
49
65
|
module.exports = (esbuildOptions) => {
|
66
|
+
const bridgetownConfig = bridgetownConfigured(esbuildOptions.bridgetownConfig)
|
67
|
+
|
50
68
|
let inputData = [];
|
51
69
|
|
52
70
|
process.stdin.resume();
|
@@ -60,7 +78,9 @@ module.exports = (esbuildOptions) => {
|
|
60
78
|
const inputValues = JSON.parse(inputData.join())
|
61
79
|
|
62
80
|
esbuildOptions.plugins = esbuildOptions.plugins || []
|
63
|
-
esbuildOptions.plugins.unshift(importGlobPlugin())
|
81
|
+
esbuildOptions.plugins.unshift(importGlobPlugin(bridgetownConfig))
|
82
|
+
|
83
|
+
if (esbuildOptions.bridgetownConfig) delete esbuildOptions.bridgetownConfig
|
64
84
|
|
65
85
|
require('esbuild').build({
|
66
86
|
...esbuildOptions,
|
data/src/server/ssr_exec.js
CHANGED
@@ -16,12 +16,15 @@ module.exports = {
|
|
16
16
|
execScript(str) {
|
17
17
|
const vm = require("vm")
|
18
18
|
const contextObject = {
|
19
|
-
require
|
20
|
-
console
|
21
|
-
process
|
22
|
-
global
|
23
|
-
URL
|
24
|
-
|
19
|
+
require,
|
20
|
+
console,
|
21
|
+
process,
|
22
|
+
global,
|
23
|
+
URL,
|
24
|
+
URLSearchParams,
|
25
|
+
Buffer,
|
26
|
+
setTimeout() {},
|
27
|
+
clearTimeout() {},
|
25
28
|
__filename: "__lit_eval.js",
|
26
29
|
}
|
27
30
|
|
data/yarn.lock
CHANGED
@@ -2,341 +2,559 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
-
"@
|
6
|
-
version "
|
7
|
-
resolved "https://registry.yarnpkg.com/@
|
8
|
-
integrity sha512-
|
5
|
+
"@esbuild/android-arm64@0.17.19":
|
6
|
+
version "0.17.19"
|
7
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd"
|
8
|
+
integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==
|
9
|
+
|
10
|
+
"@esbuild/android-arm@0.17.19":
|
11
|
+
version "0.17.19"
|
12
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d"
|
13
|
+
integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==
|
14
|
+
|
15
|
+
"@esbuild/android-x64@0.17.19":
|
16
|
+
version "0.17.19"
|
17
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1"
|
18
|
+
integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==
|
19
|
+
|
20
|
+
"@esbuild/darwin-arm64@0.17.19":
|
21
|
+
version "0.17.19"
|
22
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276"
|
23
|
+
integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==
|
24
|
+
|
25
|
+
"@esbuild/darwin-x64@0.17.19":
|
26
|
+
version "0.17.19"
|
27
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb"
|
28
|
+
integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==
|
29
|
+
|
30
|
+
"@esbuild/freebsd-arm64@0.17.19":
|
31
|
+
version "0.17.19"
|
32
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2"
|
33
|
+
integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==
|
34
|
+
|
35
|
+
"@esbuild/freebsd-x64@0.17.19":
|
36
|
+
version "0.17.19"
|
37
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4"
|
38
|
+
integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==
|
39
|
+
|
40
|
+
"@esbuild/linux-arm64@0.17.19":
|
41
|
+
version "0.17.19"
|
42
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb"
|
43
|
+
integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==
|
44
|
+
|
45
|
+
"@esbuild/linux-arm@0.17.19":
|
46
|
+
version "0.17.19"
|
47
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a"
|
48
|
+
integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==
|
49
|
+
|
50
|
+
"@esbuild/linux-ia32@0.17.19":
|
51
|
+
version "0.17.19"
|
52
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a"
|
53
|
+
integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==
|
54
|
+
|
55
|
+
"@esbuild/linux-loong64@0.17.19":
|
56
|
+
version "0.17.19"
|
57
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72"
|
58
|
+
integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==
|
59
|
+
|
60
|
+
"@esbuild/linux-mips64el@0.17.19":
|
61
|
+
version "0.17.19"
|
62
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289"
|
63
|
+
integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==
|
64
|
+
|
65
|
+
"@esbuild/linux-ppc64@0.17.19":
|
66
|
+
version "0.17.19"
|
67
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7"
|
68
|
+
integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==
|
69
|
+
|
70
|
+
"@esbuild/linux-riscv64@0.17.19":
|
71
|
+
version "0.17.19"
|
72
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09"
|
73
|
+
integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==
|
74
|
+
|
75
|
+
"@esbuild/linux-s390x@0.17.19":
|
76
|
+
version "0.17.19"
|
77
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829"
|
78
|
+
integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==
|
79
|
+
|
80
|
+
"@esbuild/linux-x64@0.17.19":
|
81
|
+
version "0.17.19"
|
82
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4"
|
83
|
+
integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==
|
84
|
+
|
85
|
+
"@esbuild/netbsd-x64@0.17.19":
|
86
|
+
version "0.17.19"
|
87
|
+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462"
|
88
|
+
integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==
|
89
|
+
|
90
|
+
"@esbuild/openbsd-x64@0.17.19":
|
91
|
+
version "0.17.19"
|
92
|
+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691"
|
93
|
+
integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==
|
94
|
+
|
95
|
+
"@esbuild/sunos-x64@0.17.19":
|
96
|
+
version "0.17.19"
|
97
|
+
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273"
|
98
|
+
integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==
|
99
|
+
|
100
|
+
"@esbuild/win32-arm64@0.17.19":
|
101
|
+
version "0.17.19"
|
102
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f"
|
103
|
+
integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==
|
104
|
+
|
105
|
+
"@esbuild/win32-ia32@0.17.19":
|
106
|
+
version "0.17.19"
|
107
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03"
|
108
|
+
integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==
|
109
|
+
|
110
|
+
"@esbuild/win32-x64@0.17.19":
|
111
|
+
version "0.17.19"
|
112
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061"
|
113
|
+
integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==
|
114
|
+
|
115
|
+
"@isaacs/cliui@^8.0.2":
|
116
|
+
version "8.0.2"
|
117
|
+
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
|
118
|
+
integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
|
119
|
+
dependencies:
|
120
|
+
string-width "^5.1.2"
|
121
|
+
string-width-cjs "npm:string-width@^4.2.0"
|
122
|
+
strip-ansi "^7.0.1"
|
123
|
+
strip-ansi-cjs "npm:strip-ansi@^6.0.1"
|
124
|
+
wrap-ansi "^8.1.0"
|
125
|
+
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
|
126
|
+
|
127
|
+
"@lit-labs/ssr-client@^1.1.0", "@lit-labs/ssr-client@^1.1.2":
|
128
|
+
version "1.1.2"
|
129
|
+
resolved "https://registry.yarnpkg.com/@lit-labs/ssr-client/-/ssr-client-1.1.2.tgz#bb1c7e6a441327d1530b47f0e4cf7424276db644"
|
130
|
+
integrity sha512-hb10IRTmxtnQ2fcYYJE7bC2f+6UmucBgFnkfxepoE1cZ5mO6ZiTZGoFzFrNd5EQXeQq+HpYmYOF4W/JBwBE+AA==
|
9
131
|
dependencies:
|
10
132
|
"@lit/reactive-element" "^1.0.0"
|
11
133
|
lit "^2.0.0"
|
12
|
-
lit-html "^2.
|
134
|
+
lit-html "^2.7.1"
|
135
|
+
|
136
|
+
"@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0":
|
137
|
+
version "1.1.1"
|
138
|
+
resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz#64df34e2f12e68e78ac57e571d25ec07fa460ca9"
|
139
|
+
integrity sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==
|
13
140
|
|
14
|
-
"@lit-labs/ssr@^
|
15
|
-
version "
|
16
|
-
resolved "https://registry.yarnpkg.com/@lit-labs/ssr/-/ssr-
|
17
|
-
integrity sha512-
|
141
|
+
"@lit-labs/ssr@^3.1.0":
|
142
|
+
version "3.1.4"
|
143
|
+
resolved "https://registry.yarnpkg.com/@lit-labs/ssr/-/ssr-3.1.4.tgz#80e5f4eff309f26084b05fd0178ee88250440225"
|
144
|
+
integrity sha512-oxIEjm42Hzl47FFZU/yr8OPYECwfx+Zl6pGXomZhM1byqIVtGEFzVHd/4kLkKhCiHP4Fz786x8j2Qq5ZA2LTBQ==
|
18
145
|
dependencies:
|
19
|
-
"@lit-labs/ssr-client" "^1.
|
20
|
-
"@lit/
|
146
|
+
"@lit-labs/ssr-client" "^1.1.0"
|
147
|
+
"@lit-labs/ssr-dom-shim" "^1.1.0"
|
148
|
+
"@lit/reactive-element" "^1.6.0"
|
149
|
+
"@parse5/tools" "^0.1.0"
|
21
150
|
"@types/node" "^16.0.0"
|
22
|
-
|
23
|
-
lit
|
24
|
-
lit-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
"@lit/reactive-element@^1.0.0", "@lit/reactive-element@^1.
|
30
|
-
version "1.
|
31
|
-
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.
|
32
|
-
integrity sha512-
|
151
|
+
enhanced-resolve "^5.10.0"
|
152
|
+
lit "^2.7.0"
|
153
|
+
lit-element "^3.3.0"
|
154
|
+
lit-html "^2.7.0"
|
155
|
+
node-fetch "^3.2.8"
|
156
|
+
parse5 "^7.1.1"
|
157
|
+
|
158
|
+
"@lit/reactive-element@^1.0.0", "@lit/reactive-element@^1.3.0", "@lit/reactive-element@^1.4.0":
|
159
|
+
version "1.4.1"
|
160
|
+
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.4.1.tgz#3f587eec5708692135bc9e94cf396130604979f3"
|
161
|
+
integrity sha512-qDv4851VFSaBWzpS02cXHclo40jsbAjRXnebNXpm0uVg32kCneZPo9RYVQtrTNICtZ+1wAYHu1ZtxWSWMbKrBw==
|
162
|
+
|
163
|
+
"@lit/reactive-element@^1.6.0":
|
164
|
+
version "1.6.2"
|
165
|
+
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.6.2.tgz#c256690f82f2d7d0ffb0b1cdf68dcb1ec86cea28"
|
166
|
+
integrity sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==
|
167
|
+
dependencies:
|
168
|
+
"@lit-labs/ssr-dom-shim" "^1.0.0"
|
169
|
+
|
170
|
+
"@parse5/tools@^0.1.0":
|
171
|
+
version "0.1.0"
|
172
|
+
resolved "https://registry.yarnpkg.com/@parse5/tools/-/tools-0.1.0.tgz#06a8ad2cf54a038617e087d322c9b4585ce0d1c4"
|
173
|
+
integrity sha512-VB9+4BsFoS+4HdB/Ph9jD4FHQt7GyiWESVNfBSh8Eu54LujWyy+NySGLjg8GZFWSZcESG72F67LjgmKZDZCvPg==
|
174
|
+
dependencies:
|
175
|
+
parse5 "^7.0.0"
|
176
|
+
|
177
|
+
"@pkgjs/parseargs@^0.11.0":
|
178
|
+
version "0.11.0"
|
179
|
+
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
180
|
+
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
33
181
|
|
34
182
|
"@types/node@^16.0.0":
|
35
|
-
version "16.11.
|
36
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.
|
37
|
-
integrity sha512-
|
183
|
+
version "16.11.64"
|
184
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.64.tgz#9171f327298b619e2c52238b120c19056415d820"
|
185
|
+
integrity sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==
|
38
186
|
|
39
187
|
"@types/trusted-types@^2.0.2":
|
40
188
|
version "2.0.2"
|
41
189
|
resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756"
|
42
190
|
integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==
|
43
191
|
|
44
|
-
"@webcomponents/template-shadowroot@^0.
|
45
|
-
version "0.1
|
46
|
-
resolved "https://registry.yarnpkg.com/@webcomponents/template-shadowroot/-/template-shadowroot-0.1.
|
47
|
-
integrity sha512-
|
192
|
+
"@webcomponents/template-shadowroot@^0.2.0":
|
193
|
+
version "0.2.1"
|
194
|
+
resolved "https://registry.yarnpkg.com/@webcomponents/template-shadowroot/-/template-shadowroot-0.2.1.tgz#b20182f25f3af9baa9b7cbecce8dd6a7ab7fc39f"
|
195
|
+
integrity sha512-fXL/vIUakyZL62hyvUh+EMwbVoTc0hksublmRz6ai6et8znHkJa6gtqMUZo1oc7dIz46exHSIImml9QTdknMHg==
|
196
|
+
|
197
|
+
ansi-regex@^5.0.1:
|
198
|
+
version "5.0.1"
|
199
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
|
200
|
+
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
|
201
|
+
|
202
|
+
ansi-regex@^6.0.1:
|
203
|
+
version "6.0.1"
|
204
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
|
205
|
+
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
|
206
|
+
|
207
|
+
ansi-styles@^4.0.0:
|
208
|
+
version "4.3.0"
|
209
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
210
|
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
211
|
+
dependencies:
|
212
|
+
color-convert "^2.0.1"
|
213
|
+
|
214
|
+
ansi-styles@^6.1.0:
|
215
|
+
version "6.2.1"
|
216
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
|
217
|
+
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
|
48
218
|
|
49
219
|
balanced-match@^1.0.0:
|
50
220
|
version "1.0.2"
|
51
221
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
52
222
|
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
53
223
|
|
54
|
-
brace-expansion@^
|
55
|
-
version "
|
56
|
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-
|
57
|
-
integrity sha512-
|
224
|
+
brace-expansion@^2.0.1:
|
225
|
+
version "2.0.1"
|
226
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
|
227
|
+
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
|
58
228
|
dependencies:
|
59
229
|
balanced-match "^1.0.0"
|
60
|
-
|
230
|
+
|
231
|
+
color-convert@^2.0.1:
|
232
|
+
version "2.0.1"
|
233
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
234
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
235
|
+
dependencies:
|
236
|
+
color-name "~1.1.4"
|
237
|
+
|
238
|
+
color-name@~1.1.4:
|
239
|
+
version "1.1.4"
|
240
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
241
|
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
61
242
|
|
62
243
|
colors@^1.4.0:
|
63
244
|
version "1.4.0"
|
64
245
|
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
|
65
246
|
integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
|
66
247
|
|
67
|
-
|
68
|
-
version "
|
69
|
-
resolved "https://registry.yarnpkg.com/
|
70
|
-
integrity
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
version "0.14.39"
|
114
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.39.tgz#708785a30072702b5b1c16b65cf9c25c51202529"
|
115
|
-
integrity sha512-23pc8MlD2D6Px1mV8GMglZlKgwgNKAO8gsgsLLcXWSs9lQsCYkIlMo/2Ycfo5JrDIbLdwgP8D2vpfH2KcBqrDQ==
|
116
|
-
|
117
|
-
esbuild-linux-arm@0.14.39:
|
118
|
-
version "0.14.39"
|
119
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.39.tgz#4e8b5deaa7ab60d0d28fab131244ef82b40684f4"
|
120
|
-
integrity sha512-t0Hn1kWVx5UpCzAJkKRfHeYOLyFnXwYynIkK54/h3tbMweGI7dj400D1k0Vvtj2u1P+JTRT9tx3AjtLEMmfVBQ==
|
121
|
-
|
122
|
-
esbuild-linux-mips64le@0.14.39:
|
123
|
-
version "0.14.39"
|
124
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.39.tgz#6f3bf3023f711084e5a1e8190487d2020f39f0f7"
|
125
|
-
integrity sha512-epwlYgVdbmkuRr5n4es3B+yDI0I2e/nxhKejT9H0OLxFAlMkeQZxSpxATpDc9m8NqRci6Kwyb/SfmD1koG2Zuw==
|
126
|
-
|
127
|
-
esbuild-linux-ppc64le@0.14.39:
|
128
|
-
version "0.14.39"
|
129
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.39.tgz#900e718a4ea3f6aedde8424828eeefdd4b48d4b9"
|
130
|
-
integrity sha512-W/5ezaq+rQiQBThIjLMNjsuhPHg+ApVAdTz2LvcuesZFMsJoQAW2hutoyg47XxpWi7aEjJGrkS26qCJKhRn3QQ==
|
131
|
-
|
132
|
-
esbuild-linux-riscv64@0.14.39:
|
133
|
-
version "0.14.39"
|
134
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.39.tgz#dcbff622fa37047a75d2ff7a1d8d2949d80277e4"
|
135
|
-
integrity sha512-IS48xeokcCTKeQIOke2O0t9t14HPvwnZcy+5baG13Z1wxs9ZrC5ig5ypEQQh4QMKxURD5TpCLHw2W42CLuVZaA==
|
136
|
-
|
137
|
-
esbuild-linux-s390x@0.14.39:
|
138
|
-
version "0.14.39"
|
139
|
-
resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.39.tgz#3f725a7945b419406c99d93744b28552561dcdfd"
|
140
|
-
integrity sha512-zEfunpqR8sMomqXhNTFEKDs+ik7HC01m3M60MsEjZOqaywHu5e5682fMsqOlZbesEAAaO9aAtRBsU7CHnSZWyA==
|
141
|
-
|
142
|
-
esbuild-netbsd-64@0.14.39:
|
143
|
-
version "0.14.39"
|
144
|
-
resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.39.tgz#e10e40b6a765798b90d4eb85901cc85c8b7ff85e"
|
145
|
-
integrity sha512-Uo2suJBSIlrZCe4E0k75VDIFJWfZy+bOV6ih3T4MVMRJh1lHJ2UyGoaX4bOxomYN3t+IakHPyEoln1+qJ1qYaA==
|
146
|
-
|
147
|
-
esbuild-openbsd-64@0.14.39:
|
148
|
-
version "0.14.39"
|
149
|
-
resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.39.tgz#935ec143f75ce10bd9cdb1c87fee00287eb0edbc"
|
150
|
-
integrity sha512-secQU+EpgUPpYjJe3OecoeGKVvRMLeKUxSMGHnK+aK5uQM3n1FPXNJzyz1LHFOo0WOyw+uoCxBYdM4O10oaCAA==
|
151
|
-
|
152
|
-
esbuild-sunos-64@0.14.39:
|
153
|
-
version "0.14.39"
|
154
|
-
resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.39.tgz#0e7aa82b022a2e6d55b0646738b2582c2d72c3c0"
|
155
|
-
integrity sha512-qHq0t5gePEDm2nqZLb+35p/qkaXVS7oIe32R0ECh2HOdiXXkj/1uQI9IRogGqKkK+QjDG+DhwiUw7QoHur/Rwg==
|
156
|
-
|
157
|
-
esbuild-windows-32@0.14.39:
|
158
|
-
version "0.14.39"
|
159
|
-
resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.39.tgz#3f1538241f31b538545f4b5841b248cac260fa35"
|
160
|
-
integrity sha512-XPjwp2OgtEX0JnOlTgT6E5txbRp6Uw54Isorm3CwOtloJazeIWXuiwK0ONJBVb/CGbiCpS7iP2UahGgd2p1x+Q==
|
161
|
-
|
162
|
-
esbuild-windows-64@0.14.39:
|
163
|
-
version "0.14.39"
|
164
|
-
resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.39.tgz#b100c59f96d3c2da2e796e42fee4900d755d3e03"
|
165
|
-
integrity sha512-E2wm+5FwCcLpKsBHRw28bSYQw0Ikxb7zIMxw3OPAkiaQhLVr3dnVO8DofmbWhhf6b97bWzg37iSZ45ZDpLw7Ow==
|
166
|
-
|
167
|
-
esbuild-windows-arm64@0.14.39:
|
168
|
-
version "0.14.39"
|
169
|
-
resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.39.tgz#00268517e665b33c89778d61f144e4256b39f631"
|
170
|
-
integrity sha512-sBZQz5D+Gd0EQ09tZRnz/PpVdLwvp/ufMtJ1iDFYddDaPpZXKqPyaxfYBLs3ueiaksQ26GGa7sci0OqFzNs7KA==
|
171
|
-
|
172
|
-
esbuild@^0.14:
|
173
|
-
version "0.14.39"
|
174
|
-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.39.tgz#c926b2259fe6f6d3a94f528fb42e103c5a6d909a"
|
175
|
-
integrity sha512-2kKujuzvRWYtwvNjYDY444LQIA3TyJhJIX3Yo4+qkFlDDtGlSicWgeHVJqMUP/2sSfH10PGwfsj+O2ro1m10xQ==
|
248
|
+
cross-spawn@^7.0.0:
|
249
|
+
version "7.0.3"
|
250
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
251
|
+
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
252
|
+
dependencies:
|
253
|
+
path-key "^3.1.0"
|
254
|
+
shebang-command "^2.0.0"
|
255
|
+
which "^2.0.1"
|
256
|
+
|
257
|
+
data-uri-to-buffer@^4.0.0:
|
258
|
+
version "4.0.0"
|
259
|
+
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b"
|
260
|
+
integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==
|
261
|
+
|
262
|
+
eastasianwidth@^0.2.0:
|
263
|
+
version "0.2.0"
|
264
|
+
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
|
265
|
+
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
|
266
|
+
|
267
|
+
emoji-regex@^8.0.0:
|
268
|
+
version "8.0.0"
|
269
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
270
|
+
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
271
|
+
|
272
|
+
emoji-regex@^9.2.2:
|
273
|
+
version "9.2.2"
|
274
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
|
275
|
+
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
|
276
|
+
|
277
|
+
enhanced-resolve@^5.10.0:
|
278
|
+
version "5.15.0"
|
279
|
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
|
280
|
+
integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
|
281
|
+
dependencies:
|
282
|
+
graceful-fs "^4.2.4"
|
283
|
+
tapable "^2.2.0"
|
284
|
+
|
285
|
+
entities@^4.4.0:
|
286
|
+
version "4.5.0"
|
287
|
+
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
|
288
|
+
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
|
289
|
+
|
290
|
+
esbuild@^0.17:
|
291
|
+
version "0.17.19"
|
292
|
+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955"
|
293
|
+
integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==
|
176
294
|
optionalDependencies:
|
177
|
-
esbuild
|
178
|
-
esbuild
|
179
|
-
esbuild-
|
180
|
-
esbuild
|
181
|
-
esbuild-
|
182
|
-
esbuild
|
183
|
-
esbuild-
|
184
|
-
esbuild
|
185
|
-
esbuild
|
186
|
-
esbuild
|
187
|
-
esbuild
|
188
|
-
esbuild
|
189
|
-
esbuild
|
190
|
-
esbuild
|
191
|
-
esbuild-
|
192
|
-
esbuild-
|
193
|
-
esbuild-
|
194
|
-
esbuild-
|
195
|
-
esbuild-
|
196
|
-
esbuild-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
version "1.1.1"
|
205
|
-
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
206
|
-
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
207
|
-
|
208
|
-
glob@^7.2.0:
|
209
|
-
version "7.2.2"
|
210
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.2.tgz#29deb38e1ef90f132d5958abe9c3ee8e87f3c318"
|
211
|
-
integrity sha512-NzDgHDiJwKYByLrL5lONmQFpK/2G78SMMfo+E9CuGlX4IkvfKDsiQSNPwAYxEy+e6p7ZQ3uslSLlwlJcqezBmQ==
|
295
|
+
"@esbuild/android-arm" "0.17.19"
|
296
|
+
"@esbuild/android-arm64" "0.17.19"
|
297
|
+
"@esbuild/android-x64" "0.17.19"
|
298
|
+
"@esbuild/darwin-arm64" "0.17.19"
|
299
|
+
"@esbuild/darwin-x64" "0.17.19"
|
300
|
+
"@esbuild/freebsd-arm64" "0.17.19"
|
301
|
+
"@esbuild/freebsd-x64" "0.17.19"
|
302
|
+
"@esbuild/linux-arm" "0.17.19"
|
303
|
+
"@esbuild/linux-arm64" "0.17.19"
|
304
|
+
"@esbuild/linux-ia32" "0.17.19"
|
305
|
+
"@esbuild/linux-loong64" "0.17.19"
|
306
|
+
"@esbuild/linux-mips64el" "0.17.19"
|
307
|
+
"@esbuild/linux-ppc64" "0.17.19"
|
308
|
+
"@esbuild/linux-riscv64" "0.17.19"
|
309
|
+
"@esbuild/linux-s390x" "0.17.19"
|
310
|
+
"@esbuild/linux-x64" "0.17.19"
|
311
|
+
"@esbuild/netbsd-x64" "0.17.19"
|
312
|
+
"@esbuild/openbsd-x64" "0.17.19"
|
313
|
+
"@esbuild/sunos-x64" "0.17.19"
|
314
|
+
"@esbuild/win32-arm64" "0.17.19"
|
315
|
+
"@esbuild/win32-ia32" "0.17.19"
|
316
|
+
"@esbuild/win32-x64" "0.17.19"
|
317
|
+
|
318
|
+
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
|
319
|
+
version "3.2.0"
|
320
|
+
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
|
321
|
+
integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
|
212
322
|
dependencies:
|
213
|
-
|
214
|
-
|
215
|
-
inherits "2"
|
216
|
-
minimatch "^3.1.1"
|
217
|
-
once "^1.3.0"
|
218
|
-
path-is-absolute "^1.0.0"
|
323
|
+
node-domexception "^1.0.0"
|
324
|
+
web-streams-polyfill "^3.0.3"
|
219
325
|
|
220
|
-
|
221
|
-
version "1.
|
222
|
-
resolved "https://registry.yarnpkg.com/
|
223
|
-
integrity sha512-
|
326
|
+
foreground-child@^3.1.0:
|
327
|
+
version "3.1.1"
|
328
|
+
resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
|
329
|
+
integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
|
224
330
|
dependencies:
|
225
|
-
|
331
|
+
cross-spawn "^7.0.0"
|
332
|
+
signal-exit "^4.0.1"
|
226
333
|
|
227
|
-
|
228
|
-
version "
|
229
|
-
resolved "https://registry.yarnpkg.com/
|
230
|
-
integrity
|
334
|
+
formdata-polyfill@^4.0.10:
|
335
|
+
version "4.0.10"
|
336
|
+
resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
|
337
|
+
integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
|
231
338
|
dependencies:
|
232
|
-
|
233
|
-
wrappy "1"
|
339
|
+
fetch-blob "^3.1.2"
|
234
340
|
|
235
|
-
|
236
|
-
version "2.
|
237
|
-
resolved "https://registry.yarnpkg.com/
|
238
|
-
integrity sha512-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
341
|
+
glob@^10.2.6:
|
342
|
+
version "10.2.7"
|
343
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.7.tgz#9dd2828cd5bc7bd861e7738d91e7113dda41d7d8"
|
344
|
+
integrity sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==
|
345
|
+
dependencies:
|
346
|
+
foreground-child "^3.1.0"
|
347
|
+
jackspeak "^2.0.3"
|
348
|
+
minimatch "^9.0.1"
|
349
|
+
minipass "^5.0.0 || ^6.0.2"
|
350
|
+
path-scurry "^1.7.0"
|
351
|
+
|
352
|
+
graceful-fs@^4.2.4:
|
353
|
+
version "4.2.11"
|
354
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
|
355
|
+
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
|
356
|
+
|
357
|
+
is-fullwidth-code-point@^3.0.0:
|
358
|
+
version "3.0.0"
|
359
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
360
|
+
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
361
|
+
|
362
|
+
isexe@^2.0.0:
|
363
|
+
version "2.0.0"
|
364
|
+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
365
|
+
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
|
366
|
+
|
367
|
+
jackspeak@^2.0.3:
|
368
|
+
version "2.2.1"
|
369
|
+
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6"
|
370
|
+
integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==
|
244
371
|
dependencies:
|
245
|
-
|
372
|
+
"@isaacs/cliui" "^8.0.2"
|
373
|
+
optionalDependencies:
|
374
|
+
"@pkgjs/parseargs" "^0.11.0"
|
246
375
|
|
247
|
-
lit-element@^3.
|
248
|
-
version "3.2.
|
249
|
-
resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.2.
|
250
|
-
integrity sha512-
|
376
|
+
lit-element@^3.2.0:
|
377
|
+
version "3.2.2"
|
378
|
+
resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.2.2.tgz#d148ab6bf4c53a33f707a5168e087725499e5f2b"
|
379
|
+
integrity sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==
|
251
380
|
dependencies:
|
252
381
|
"@lit/reactive-element" "^1.3.0"
|
253
382
|
lit-html "^2.2.0"
|
254
383
|
|
255
|
-
lit-
|
256
|
-
version "
|
257
|
-
resolved "https://registry.yarnpkg.com/lit-
|
258
|
-
integrity sha512-
|
384
|
+
lit-element@^3.3.0:
|
385
|
+
version "3.3.2"
|
386
|
+
resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.3.2.tgz#9913bf220b85065f0e5f1bb8878cc44f36b50cfa"
|
387
|
+
integrity sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==
|
388
|
+
dependencies:
|
389
|
+
"@lit-labs/ssr-dom-shim" "^1.1.0"
|
390
|
+
"@lit/reactive-element" "^1.3.0"
|
391
|
+
lit-html "^2.7.0"
|
392
|
+
|
393
|
+
lit-html@^2.2.0, lit-html@^2.4.0:
|
394
|
+
version "2.4.0"
|
395
|
+
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.4.0.tgz#b510430f39a56ec959167ed1187241a4e3ab1574"
|
396
|
+
integrity sha512-G6qXu4JNUpY6aaF2VMfaszhO9hlWw0hOTRFDmuMheg/nDYGB+2RztUSOyrzALAbr8Nh0Y7qjhYkReh3rPnplVg==
|
259
397
|
dependencies:
|
260
398
|
"@types/trusted-types" "^2.0.2"
|
261
399
|
|
262
|
-
lit@^2.
|
263
|
-
version "2.
|
264
|
-
resolved "https://registry.yarnpkg.com/lit/-/lit-2.
|
265
|
-
integrity sha512
|
400
|
+
lit-html@^2.7.0, lit-html@^2.7.1:
|
401
|
+
version "2.7.4"
|
402
|
+
resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.7.4.tgz#6d75001977c206683685b9d76594a516afda2954"
|
403
|
+
integrity sha512-/Jw+FBpeEN+z8X6PJva5n7+0MzCVAH2yypN99qHYYkq8bI+j7I39GH+68Z/MZD6rGKDK9RpzBw7CocfmHfq6+g==
|
266
404
|
dependencies:
|
267
|
-
"@
|
268
|
-
lit-element "^3.2.0"
|
269
|
-
lit-html "^2.2.0"
|
405
|
+
"@types/trusted-types" "^2.0.2"
|
270
406
|
|
271
|
-
|
272
|
-
version "
|
273
|
-
resolved "https://registry.yarnpkg.com/
|
274
|
-
integrity sha512-
|
407
|
+
lit@^2.0.0:
|
408
|
+
version "2.4.0"
|
409
|
+
resolved "https://registry.yarnpkg.com/lit/-/lit-2.4.0.tgz#e33a0f463e17408f6e7f71464e6a266e60a5bb77"
|
410
|
+
integrity sha512-fdgzxEtLrZFQU/BqTtxFQCLwlZd9bdat+ltzSFjvWkZrs7eBmeX0L5MHUMb3kYIkuS8Xlfnii/iI5klirF8/Xg==
|
275
411
|
dependencies:
|
276
|
-
|
412
|
+
"@lit/reactive-element" "^1.4.0"
|
413
|
+
lit-element "^3.2.0"
|
414
|
+
lit-html "^2.4.0"
|
277
415
|
|
278
|
-
|
279
|
-
version "2.
|
280
|
-
resolved "https://registry.yarnpkg.com/
|
281
|
-
integrity sha512-
|
416
|
+
lit@^2.7.0:
|
417
|
+
version "2.7.5"
|
418
|
+
resolved "https://registry.yarnpkg.com/lit/-/lit-2.7.5.tgz#60bc82990cfad169d42cd786999356dcf79b035f"
|
419
|
+
integrity sha512-i/cH7Ye6nBDUASMnfwcictBnsTN91+aBjXoTHF2xARghXScKxpD4F4WYI+VLXg9lqbMinDfvoI7VnZXjyHgdfQ==
|
282
420
|
dependencies:
|
283
|
-
|
421
|
+
"@lit/reactive-element" "^1.6.0"
|
422
|
+
lit-element "^3.3.0"
|
423
|
+
lit-html "^2.7.0"
|
424
|
+
|
425
|
+
lru-cache@^9.1.1:
|
426
|
+
version "9.1.2"
|
427
|
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-9.1.2.tgz#255fdbc14b75589d6d0e73644ca167a8db506835"
|
428
|
+
integrity sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==
|
429
|
+
|
430
|
+
minimatch@^9.0.1:
|
431
|
+
version "9.0.1"
|
432
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.1.tgz#8a555f541cf976c622daf078bb28f29fb927c253"
|
433
|
+
integrity sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==
|
434
|
+
dependencies:
|
435
|
+
brace-expansion "^2.0.1"
|
284
436
|
|
285
|
-
|
286
|
-
version "
|
287
|
-
resolved "https://registry.yarnpkg.com/
|
288
|
-
integrity
|
437
|
+
"minipass@^5.0.0 || ^6.0.2":
|
438
|
+
version "6.0.2"
|
439
|
+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81"
|
440
|
+
integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==
|
441
|
+
|
442
|
+
node-domexception@^1.0.0:
|
443
|
+
version "1.0.0"
|
444
|
+
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
|
445
|
+
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
|
446
|
+
|
447
|
+
node-fetch@^3.2.8:
|
448
|
+
version "3.2.10"
|
449
|
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"
|
450
|
+
integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==
|
289
451
|
dependencies:
|
290
|
-
|
452
|
+
data-uri-to-buffer "^4.0.0"
|
453
|
+
fetch-blob "^3.1.4"
|
454
|
+
formdata-polyfill "^4.0.10"
|
455
|
+
|
456
|
+
parse5@^7.0.0, parse5@^7.1.1:
|
457
|
+
version "7.1.2"
|
458
|
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
|
459
|
+
integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
|
460
|
+
dependencies:
|
461
|
+
entities "^4.4.0"
|
291
462
|
|
292
|
-
|
293
|
-
version "
|
294
|
-
resolved "https://registry.yarnpkg.com/
|
295
|
-
integrity sha512-
|
463
|
+
path-key@^3.1.0:
|
464
|
+
version "3.1.1"
|
465
|
+
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
466
|
+
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
296
467
|
|
297
|
-
path-
|
298
|
-
version "1.
|
299
|
-
resolved "https://registry.yarnpkg.com/path-
|
300
|
-
integrity
|
468
|
+
path-scurry@^1.7.0:
|
469
|
+
version "1.9.2"
|
470
|
+
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.9.2.tgz#90f9d296ac5e37e608028e28a447b11d385b3f63"
|
471
|
+
integrity sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==
|
472
|
+
dependencies:
|
473
|
+
lru-cache "^9.1.1"
|
474
|
+
minipass "^5.0.0 || ^6.0.2"
|
301
475
|
|
302
|
-
|
303
|
-
version "
|
304
|
-
resolved "https://registry.yarnpkg.com/
|
305
|
-
integrity sha512-
|
476
|
+
shebang-command@^2.0.0:
|
477
|
+
version "2.0.0"
|
478
|
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
|
479
|
+
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
|
480
|
+
dependencies:
|
481
|
+
shebang-regex "^3.0.0"
|
482
|
+
|
483
|
+
shebang-regex@^3.0.0:
|
484
|
+
version "3.0.0"
|
485
|
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
486
|
+
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
487
|
+
|
488
|
+
signal-exit@^4.0.1:
|
489
|
+
version "4.0.2"
|
490
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967"
|
491
|
+
integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==
|
492
|
+
|
493
|
+
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0:
|
494
|
+
name string-width-cjs
|
495
|
+
version "4.2.3"
|
496
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
|
497
|
+
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
498
|
+
dependencies:
|
499
|
+
emoji-regex "^8.0.0"
|
500
|
+
is-fullwidth-code-point "^3.0.0"
|
501
|
+
strip-ansi "^6.0.1"
|
502
|
+
|
503
|
+
string-width@^5.0.1, string-width@^5.1.2:
|
504
|
+
version "5.1.2"
|
505
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
|
506
|
+
integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
|
507
|
+
dependencies:
|
508
|
+
eastasianwidth "^0.2.0"
|
509
|
+
emoji-regex "^9.2.2"
|
510
|
+
strip-ansi "^7.0.1"
|
306
511
|
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
512
|
+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
513
|
+
name strip-ansi-cjs
|
514
|
+
version "6.0.1"
|
515
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
516
|
+
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
311
517
|
dependencies:
|
312
|
-
|
313
|
-
path-parse "^1.0.7"
|
314
|
-
supports-preserve-symlinks-flag "^1.0.0"
|
518
|
+
ansi-regex "^5.0.1"
|
315
519
|
|
316
|
-
|
317
|
-
version "1.0
|
318
|
-
resolved "https://registry.yarnpkg.com/
|
319
|
-
integrity sha512-
|
520
|
+
strip-ansi@^7.0.1:
|
521
|
+
version "7.1.0"
|
522
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
|
523
|
+
integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
|
524
|
+
dependencies:
|
525
|
+
ansi-regex "^6.0.1"
|
320
526
|
|
321
|
-
|
322
|
-
version "
|
323
|
-
resolved "https://registry.yarnpkg.com/
|
324
|
-
integrity
|
527
|
+
tapable@^2.2.0:
|
528
|
+
version "2.2.1"
|
529
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
|
530
|
+
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
|
325
531
|
|
326
|
-
|
327
|
-
version "3.
|
328
|
-
resolved "https://registry.yarnpkg.com/
|
329
|
-
integrity
|
532
|
+
web-streams-polyfill@^3.0.3:
|
533
|
+
version "3.2.1"
|
534
|
+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
|
535
|
+
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
|
330
536
|
|
331
|
-
|
332
|
-
version "
|
333
|
-
resolved "https://registry.yarnpkg.com/
|
334
|
-
integrity
|
537
|
+
which@^2.0.1:
|
538
|
+
version "2.0.2"
|
539
|
+
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
540
|
+
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
|
335
541
|
dependencies:
|
336
|
-
|
337
|
-
webidl-conversions "^3.0.0"
|
542
|
+
isexe "^2.0.0"
|
338
543
|
|
339
|
-
|
340
|
-
version "
|
341
|
-
resolved "https://registry.yarnpkg.com/
|
342
|
-
integrity
|
544
|
+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
|
545
|
+
version "7.0.0"
|
546
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
547
|
+
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
548
|
+
dependencies:
|
549
|
+
ansi-styles "^4.0.0"
|
550
|
+
string-width "^4.1.0"
|
551
|
+
strip-ansi "^6.0.0"
|
552
|
+
|
553
|
+
wrap-ansi@^8.1.0:
|
554
|
+
version "8.1.0"
|
555
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
|
556
|
+
integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
|
557
|
+
dependencies:
|
558
|
+
ansi-styles "^6.1.0"
|
559
|
+
string-width "^5.0.1"
|
560
|
+
strip-ansi "^7.0.1"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bridgetown-lit-renderer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bridgetown Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bridgetown
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.3.0.beta2
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '2.0'
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 1.3.0.beta2
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '2.0'
|
@@ -115,7 +115,7 @@ homepage: https://github.com/bridgetownrb/bridgetown-lit-renderer
|
|
115
115
|
licenses:
|
116
116
|
- MIT
|
117
117
|
metadata:
|
118
|
-
yarn-add: bridgetown-lit-renderer@2.
|
118
|
+
yarn-add: bridgetown-lit-renderer@2.1.0-beta1
|
119
119
|
rubygems_mfa_required: 'true'
|
120
120
|
post_install_message:
|
121
121
|
rdoc_options: []
|