solid-ui 3.0.0 → 3.0.1-0dd33a6
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.
- package/README.md +302 -288
- package/dist/header/index.d.ts.map +1 -1
- package/dist/header/index.js +52 -0
- package/dist/header/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/solid-ui.esm.js +25579 -23609
- package/dist/solid-ui.esm.js.map +1 -1
- package/dist/solid-ui.esm.min.js +27 -28
- package/dist/solid-ui.esm.min.js.map +1 -1
- package/dist/solid-ui.js +873 -457
- package/dist/solid-ui.js.map +1 -1
- package/dist/solid-ui.min.js +12 -12
- package/dist/solid-ui.min.js.map +1 -1
- package/dist/theme-accessibility.css +147 -0
- package/dist/theme-classic.css +70 -0
- package/dist/theme-default.css +65 -0
- package/dist/theme-signal.css +65 -0
- package/dist/theme-telegram.css +65 -0
- package/dist/theme-variables.css +163 -0
- package/dist/theme-wave.css +65 -0
- package/dist/themes-README.md +254 -0
- package/dist/versionInfo.js +8 -8
- package/dist/widgets/buttons.js +20 -20
- package/dist/widgets/buttons.js.map +1 -1
- package/package.json +133 -133
package/README.md
CHANGED
|
@@ -1,288 +1,302 @@
|
|
|
1
|
-
# solid-ui
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/solid-ui)
|
|
4
|
-
|
|
5
|
-
User Interface widgets and utilities for Solid (solid-ui)
|
|
6
|
-
|
|
7
|
-
These are HTML5 widgets which connect to a solid store. Building blocks for solid-based apps.
|
|
8
|
-
Vanilla JS. Includes large widgets like chat, table, matrix, form fields, and small widgets.
|
|
9
|
-
|
|
10
|
-
See [Solid-Ui Storybook](http://solidos.github.io/solid-ui/examples/storybook/) for UI widgets.
|
|
11
|
-
See [Solid-UI API](https://solidos.github.io/solid-ui/docs/api/) for UI functions.
|
|
12
|
-
See [Forms introduction](./docs/FormsReadme.md) for UI vocabulary implementation.
|
|
13
|
-
|
|
14
|
-
##
|
|
15
|
-
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
</
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
</
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
</
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
1
|
+
# solid-ui
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/solid-ui)
|
|
4
|
+
|
|
5
|
+
User Interface widgets and utilities for Solid (solid-ui)
|
|
6
|
+
|
|
7
|
+
These are HTML5 widgets which connect to a solid store. Building blocks for solid-based apps.
|
|
8
|
+
Vanilla JS. Includes large widgets like chat, table, matrix, form fields, and small widgets.
|
|
9
|
+
|
|
10
|
+
See [Solid-Ui Storybook](http://solidos.github.io/solid-ui/examples/storybook/) for UI widgets.
|
|
11
|
+
See [Solid-UI API](https://solidos.github.io/solid-ui/docs/api/) for UI functions.
|
|
12
|
+
See [Forms introduction](./docs/FormsReadme.md) for UI vocabulary implementation.
|
|
13
|
+
|
|
14
|
+
## 🎨 Theme System
|
|
15
|
+
|
|
16
|
+
**NEW:** Solid-UI now includes a modern theme system with CSS variables and runtime switching!
|
|
17
|
+
|
|
18
|
+
- **[Live Theme Demo](./docs/theme-demo.html)** - Interactive preview of all 5 themes
|
|
19
|
+
- **[Theme Documentation](./src/themes/README.md)** - Complete usage guide
|
|
20
|
+
|
|
21
|
+
**Features:**
|
|
22
|
+
- 5 built-in themes (Classic, Solid, Wave, Telegram, Signal)
|
|
23
|
+
- Runtime theme switching with localStorage persistence
|
|
24
|
+
- 81+ CSS custom properties for full customization
|
|
25
|
+
- WCAG 2.1 AA accessibility compliance
|
|
26
|
+
- Zero breaking changes - fully backward compatible
|
|
27
|
+
|
|
28
|
+
## Table of Contents
|
|
29
|
+
- [Getting Started](#getting-started)
|
|
30
|
+
- [Install via npm](#install-via-npm)
|
|
31
|
+
- [Use Directly in Browser](#use-directly-in-a-browser)
|
|
32
|
+
- [UMD Bundle](#umd-bundle-global-variable)
|
|
33
|
+
- [ESM Bundle](#esm-bundle-import-as-module)
|
|
34
|
+
- [Development](#development-new-components)
|
|
35
|
+
- [Testing](#adding-tests)
|
|
36
|
+
- [Further Documentation](#further-documentation)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## Getting started
|
|
40
|
+
|
|
41
|
+
Contributions of bug fixes and new functionality, documentation, and tests are
|
|
42
|
+
always appreciated.
|
|
43
|
+
|
|
44
|
+
## Install via npm
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
npm install solid-ui rdflib solid-logic
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Then import in your JavaScript/TypeScript code:
|
|
51
|
+
|
|
52
|
+
```js
|
|
53
|
+
import * as UI from 'solid-ui'
|
|
54
|
+
import * as $rdf from 'rdflib'
|
|
55
|
+
import * as SolidLogic from 'solid-logic'
|
|
56
|
+
|
|
57
|
+
// Example: Create a button
|
|
58
|
+
const button = UI.widgets.button(
|
|
59
|
+
document,
|
|
60
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
61
|
+
'Click me',
|
|
62
|
+
() => alert('Button clicked!')
|
|
63
|
+
)
|
|
64
|
+
document.body.appendChild(button)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Use Directly in a Browser
|
|
68
|
+
|
|
69
|
+
Solid-UI provides both **UMD** and **ESM** bundles for direct browser usage. Both bundles externalize `rdflib` and `solid-logic`, which must be loaded separately.
|
|
70
|
+
|
|
71
|
+
### Available Files
|
|
72
|
+
|
|
73
|
+
- **UMD (Universal Module Definition)**:
|
|
74
|
+
- Development: `dist/solid-ui.js` (exposes global `window.UI`)
|
|
75
|
+
- Production: `dist/solid-ui.min.js` (minified)
|
|
76
|
+
|
|
77
|
+
- **ESM (ES Modules)**:
|
|
78
|
+
- Development: `dist/solid-ui.esm.js`
|
|
79
|
+
- Production: `dist/solid-ui.esm.min.js` (minified)
|
|
80
|
+
|
|
81
|
+
### UMD Bundle (Global Variable)
|
|
82
|
+
|
|
83
|
+
Load via `<script>` tags and access through global variables `window.$rdf`, `window.SolidLogic`, and `window.UI`.
|
|
84
|
+
|
|
85
|
+
```html
|
|
86
|
+
<!DOCTYPE html>
|
|
87
|
+
<html>
|
|
88
|
+
<head>
|
|
89
|
+
<title>Solid-UI UMD Example</title>
|
|
90
|
+
</head>
|
|
91
|
+
<body>
|
|
92
|
+
<div id="app"></div>
|
|
93
|
+
|
|
94
|
+
<!-- Load dependencies first -->
|
|
95
|
+
<script src="https://cdn.jsdelivr.net/npm/rdflib/dist/rdflib.min.js"></script>
|
|
96
|
+
<script src="https://unpkg.com/solid-logic/dist/solid-logic.min.js"></script>
|
|
97
|
+
|
|
98
|
+
<!-- Load solid-ui UMD bundle -->
|
|
99
|
+
<script src="https://unpkg.com/solid-ui/dist/solid-ui.min.js"></script>
|
|
100
|
+
|
|
101
|
+
<script>
|
|
102
|
+
// Access via global variables
|
|
103
|
+
const { store, authn } = window.SolidLogic
|
|
104
|
+
const { widgets } = window.UI
|
|
105
|
+
|
|
106
|
+
// Get the logged-in user
|
|
107
|
+
const webId = authn.currentUser()
|
|
108
|
+
|
|
109
|
+
if (webId) {
|
|
110
|
+
// User is logged in - create button with their WebID
|
|
111
|
+
const userButton = widgets.button(
|
|
112
|
+
document,
|
|
113
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
114
|
+
`Logged in as: ${webId.value}`,
|
|
115
|
+
() => alert(`Your WebID: ${webId.value}`)
|
|
116
|
+
)
|
|
117
|
+
document.getElementById('app').appendChild(userButton)
|
|
118
|
+
} else {
|
|
119
|
+
// User not logged in - create login button
|
|
120
|
+
const loginButton = widgets.button(
|
|
121
|
+
document,
|
|
122
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
123
|
+
'Login to Solid',
|
|
124
|
+
() => authn.checkUser().then(() => location.reload())
|
|
125
|
+
)
|
|
126
|
+
document.getElementById('app').appendChild(loginButton)
|
|
127
|
+
}
|
|
128
|
+
</script>
|
|
129
|
+
</body>
|
|
130
|
+
</html>
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### ESM Bundle (Import as Module)
|
|
134
|
+
|
|
135
|
+
Use modern JavaScript modules with `import` statements.
|
|
136
|
+
|
|
137
|
+
```html
|
|
138
|
+
<!DOCTYPE html>
|
|
139
|
+
<html>
|
|
140
|
+
<head>
|
|
141
|
+
<title>Solid-UI ESM Example</title>
|
|
142
|
+
</head>
|
|
143
|
+
<body>
|
|
144
|
+
<div id="app"></div>
|
|
145
|
+
|
|
146
|
+
<script type="module">
|
|
147
|
+
// Import from CDN (esm.sh, unpkg, or jsdelivr)
|
|
148
|
+
import * as $rdf from 'https://esm.sh/rdflib'
|
|
149
|
+
import * as SolidLogic from 'https://esm.sh/solid-logic@4.0.1'
|
|
150
|
+
import * as UI from 'https://esm.sh/solid-ui@3.0.1'
|
|
151
|
+
|
|
152
|
+
// Get the logged-in user
|
|
153
|
+
const webId = SolidLogic.authn.currentUser()
|
|
154
|
+
|
|
155
|
+
if (webId) {
|
|
156
|
+
// User is logged in - create personalized button
|
|
157
|
+
const userName = await getUserName(webId)
|
|
158
|
+
const userButton = UI.widgets.button(
|
|
159
|
+
document,
|
|
160
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
161
|
+
userName || 'My Profile',
|
|
162
|
+
() => window.open(webId.value, '_blank')
|
|
163
|
+
)
|
|
164
|
+
document.getElementById('app').appendChild(userButton)
|
|
165
|
+
} else {
|
|
166
|
+
// User not logged in
|
|
167
|
+
const loginButton = UI.widgets.button(
|
|
168
|
+
document,
|
|
169
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
170
|
+
'Login to Solid',
|
|
171
|
+
async () => {
|
|
172
|
+
await SolidLogic.authn.checkUser()
|
|
173
|
+
location.reload()
|
|
174
|
+
}
|
|
175
|
+
)
|
|
176
|
+
document.getElementById('app').appendChild(loginButton)
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Helper function to fetch user's name from their profile
|
|
180
|
+
async function getUserName(webId) {
|
|
181
|
+
try {
|
|
182
|
+
await SolidLogic.store.fetcher.load(webId.doc())
|
|
183
|
+
const name = SolidLogic.store.any(webId, $rdf.sym('http://xmlns.com/foaf/0.1/name'))
|
|
184
|
+
return name ? name.value : null
|
|
185
|
+
} catch (error) {
|
|
186
|
+
console.error('Error fetching user name:', error)
|
|
187
|
+
return null
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
</script>
|
|
191
|
+
</body>
|
|
192
|
+
</html>
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### ESM Bundle with Import Maps
|
|
196
|
+
|
|
197
|
+
Use import maps for cleaner module specifiers:
|
|
198
|
+
|
|
199
|
+
```html
|
|
200
|
+
<!DOCTYPE html>
|
|
201
|
+
<html>
|
|
202
|
+
<head>
|
|
203
|
+
<title>Solid-UI ESM with Import Maps</title>
|
|
204
|
+
</head>
|
|
205
|
+
<body>
|
|
206
|
+
<div id="app"></div>
|
|
207
|
+
|
|
208
|
+
<!-- Define import map for bare specifiers -->
|
|
209
|
+
<script type="importmap">
|
|
210
|
+
{
|
|
211
|
+
"imports": {
|
|
212
|
+
"rdflib": "https://esm.sh/rdflib",
|
|
213
|
+
"solid-logic": "https://esm.sh/solid-logic@4.0.1",
|
|
214
|
+
"solid-ui": "https://esm.sh/solid-ui@3.0.1"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
</script>
|
|
218
|
+
|
|
219
|
+
<script type="module">
|
|
220
|
+
// Use clean bare specifiers
|
|
221
|
+
import * as $rdf from 'rdflib'
|
|
222
|
+
import * as SolidLogic from 'solid-logic'
|
|
223
|
+
import * as UI from 'solid-ui'
|
|
224
|
+
|
|
225
|
+
const app = document.getElementById('app')
|
|
226
|
+
|
|
227
|
+
// Create a profile button for logged-in user
|
|
228
|
+
async function createUserButton() {
|
|
229
|
+
const webId = SolidLogic.authn.currentUser()
|
|
230
|
+
|
|
231
|
+
if (!webId) {
|
|
232
|
+
const loginBtn = UI.widgets.button(
|
|
233
|
+
document,
|
|
234
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
235
|
+
'Login',
|
|
236
|
+
() => SolidLogic.authn.checkUser()
|
|
237
|
+
)
|
|
238
|
+
app.appendChild(loginBtn)
|
|
239
|
+
return
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// Fetch user profile
|
|
243
|
+
try {
|
|
244
|
+
await SolidLogic.store.fetcher.load(webId.doc())
|
|
245
|
+
const name = SolidLogic.store.any(
|
|
246
|
+
webId,
|
|
247
|
+
$rdf.sym('http://xmlns.com/foaf/0.1/name')
|
|
248
|
+
)
|
|
249
|
+
|
|
250
|
+
const profileBtn = UI.widgets.button(
|
|
251
|
+
document,
|
|
252
|
+
'https://solidproject.org/assets/img/solid-emblem.svg',
|
|
253
|
+
name ? name.value : 'My Profile',
|
|
254
|
+
() => {
|
|
255
|
+
alert(`WebID: ${webId.value}\nName: ${name ? name.value : 'Not set'}`)
|
|
256
|
+
}
|
|
257
|
+
)
|
|
258
|
+
app.appendChild(profileBtn)
|
|
259
|
+
} catch (error) {
|
|
260
|
+
console.error('Error loading profile:', error)
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
createUserButton()
|
|
265
|
+
</script>
|
|
266
|
+
</body>
|
|
267
|
+
</html>
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### Development new components
|
|
271
|
+
|
|
272
|
+
When developing a component in solid-ui you can test it in isolation using storybook
|
|
273
|
+
|
|
274
|
+
```
|
|
275
|
+
npm run build
|
|
276
|
+
npm run storybook
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
If there is no story for the component yet, add a new one to `./src/stories`.
|
|
280
|
+
|
|
281
|
+
When you want to test the component within a solid-pane, you can use the [development mode of solid-panes](https://github.com/solidos/solid-panes#development).
|
|
282
|
+
|
|
283
|
+
## Adding Tests
|
|
284
|
+
|
|
285
|
+
One can run extisting tests with:
|
|
286
|
+
```
|
|
287
|
+
npm run test
|
|
288
|
+
```
|
|
289
|
+
or with coverage
|
|
290
|
+
```
|
|
291
|
+
npm run test-coverage
|
|
292
|
+
```
|
|
293
|
+
The following document gives guidance on how to add and perform testing in solid-ui.
|
|
294
|
+
[Testing in solid-ui](https://github.com/SolidOS/solid-ui/blob/18070a02fa8159a2b83d9503ee400f8e046bf1f6/test/unit/README.md)
|
|
295
|
+
|
|
296
|
+
## GitHub Pages
|
|
297
|
+
|
|
298
|
+
* The github pages should contain the storybook and further documentation. In order to make sure it is deployed there is a step in the CI (gh-pages). This depends on the previous `build` step. It MUST contain `build-storybook` otherwise the storybook is not being published.
|
|
299
|
+
|
|
300
|
+
## Further documentation
|
|
301
|
+
|
|
302
|
+
- [Some code know-how](https://github.com/SolidOS/solidos/wiki/2.-Solid-UI-know-how)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/header/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA;AAgBlD,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,cAAc,CAAA;AAMrD,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,SAAS,EAAE,CAAA;CAC3B,CAAA;AAED;;;;;;GAMG;AACH,wBAAsB,UAAU,CAAE,KAAK,EAAE,cAAc,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,iBAU1G;AACD;;GAEG;AACH,wBAAgB,aAAa,CAAE,MAAM,EAAE,WAAW,EAAE,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,SAAS,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,uBAM5I;AACD;;GAEG;AACH,wBAAsB,YAAY,CAAE,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,WAAW,CAAC,CA+B3K;AACD;;GAEG;AACH,wBAAgB,cAAc,CAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/header/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA;AAgBlD,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,cAAc,CAAA;AAMrD,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,SAAS,EAAE,CAAA;CAC3B,CAAA;AAED;;;;;;GAMG;AACH,wBAAsB,UAAU,CAAE,KAAK,EAAE,cAAc,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,iBAU1G;AACD;;GAEG;AACH,wBAAgB,aAAa,CAAE,MAAM,EAAE,WAAW,EAAE,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,SAAS,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,uBAM5I;AACD;;GAEG;AACH,wBAAsB,YAAY,CAAE,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,WAAW,CAAC,CA+B3K;AACD;;GAEG;AACH,wBAAgB,cAAc,CAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,SAAS,EAAE,8BA4GjF;AACD;;GAEG;AACH,wBAAgB,wBAAwB,mBAKvC;AACD;;GAEG;AACH,wBAAgB,oBAAoB,CAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,kCAAkC,GAAG,WAAW,CAY7G;AACD;;GAEG;AACH,wBAAgB,kBAAkB,CAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,WAAW,CAa7F;AAED;;GAEG;AACH,wBAAsB,cAAc,CAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,EAAE,YAAY,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC,CAyD7H;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAE,KAAK,EAAE,WAAW,GAAG,WAAW,CAKnE;AACD;;GAEG;AACH,wBAAgB,aAAa,CAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,GAAG,MAAM,GAAG,WAAW,CAe3F"}
|