sveltekit-ui 1.0.48 → 1.0.50

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.
@@ -1517,6 +1517,7 @@ export function create_image_editor_manager(config) {
1517
1517
  })
1518
1518
  ai_generate_image_include_workspace_in_images_prompt_checkbox_manager = create_checkbox_manager({
1519
1519
  label: "Include Workspace Image in Images Prompt",
1520
+ type: "toggle",
1520
1521
  val: true,
1521
1522
  })
1522
1523
  ai_generate_image_from_text_button_manager = create_button_manager({
@@ -40,6 +40,7 @@
40
40
  <div style="display: flex; flex-direction: column; gap: .5rem;">
41
41
  <Button manager={manager?.copy_link_button_manager} />
42
42
  <Button manager={manager?.goto_link_button_manager} />
43
+ <Button manager={manager?.goto_link_same_tab_button_manager} />
43
44
  </div>
44
45
  {/snippet}
45
46
  </Popover>
@@ -10,6 +10,7 @@ export function create_link_manager(config) {
10
10
  let popover_manager = $state(null)
11
11
  let copy_link_button_manager = $state(null)
12
12
  let goto_link_button_manager = $state(null)
13
+ let goto_link_same_tab_button_manager = $state(null)
13
14
  let inline_goto_link_button_manager = $state(null)
14
15
  let qr_manager = $state(null)
15
16
 
@@ -32,18 +33,18 @@ export function create_link_manager(config) {
32
33
  }
33
34
  }
34
35
 
35
- function open_link() {
36
+ function open_link(is_open_same_tab = false) {
36
37
  if (is_internal_link) {
37
38
  goto(href)
38
39
  } else {
39
40
  if (typeof config?.on_goto_external_link == "function") {
40
41
  config?.on_goto_external_link(href)
41
42
  }
42
- window.open(href, "_blank", "noopener,noreferrer")
43
- // Object.assign(document.createElement("a"), {
44
- // target: "_blank",
45
- // href: href,
46
- // }).click()
43
+ if (is_open_same_tab) {
44
+ window.location.href = href
45
+ } else {
46
+ window.open(href, "_blank", "noopener,noreferrer")
47
+ }
47
48
  }
48
49
  }
49
50
 
@@ -52,7 +53,7 @@ export function create_link_manager(config) {
52
53
  type: "dropdown",
53
54
  header: "Link Preview",
54
55
  target_width: 400,
55
- target_height: 400,
56
+ target_height: 460,
56
57
  anchor_id: () => `link_${id}`,
57
58
  })
58
59
  copy_link_button_manager = create_button_manager({
@@ -69,6 +70,12 @@ export function create_link_manager(config) {
69
70
  text_align: "left",
70
71
  on_click: () => open_link(),
71
72
  })
73
+ goto_link_same_tab_button_manager = create_button_manager({
74
+ support_icon: "link_internal",
75
+ text: "Open Link In Same Tab",
76
+ text_align: "left",
77
+ on_click: () => open_link(true),
78
+ })
72
79
  inline_goto_link_button_manager = create_button_manager({
73
80
  type: "soft",
74
81
  min_height: 2,
@@ -105,6 +112,9 @@ export function create_link_manager(config) {
105
112
  get goto_link_button_manager() {
106
113
  return goto_link_button_manager
107
114
  },
115
+ get goto_link_same_tab_button_manager() {
116
+ return goto_link_same_tab_button_manager
117
+ },
108
118
  get inline_goto_link_button_manager() {
109
119
  return inline_goto_link_button_manager
110
120
  },
@@ -118,6 +118,10 @@
118
118
  padding: 0;
119
119
  }
120
120
  .slider_box {
121
+ overscroll-behavior: contain;
122
+ -webkit-user-select: none;
123
+ user-select: none;
124
+ -webkit-tap-highlight-color: transparent;
121
125
  margin: 0.1rem;
122
126
  width: 100%;
123
127
  height: var(--h);
@@ -146,6 +150,7 @@
146
150
  background: var(--g12-t);
147
151
  }
148
152
  .slider {
153
+ appearance: none;
149
154
  -webkit-appearance: none;
150
155
  position: absolute;
151
156
  display: flex;
@@ -189,6 +194,9 @@
189
194
  background: linear-gradient(-45deg, var(--g24), var(--g20));
190
195
  box-shadow: 0 0 0.4rem 0.1rem var(--shadow8);
191
196
  transition: box-shadow 0.3s;
197
+ touch-action: none;
198
+ -webkit-user-select: none;
199
+ user-select: none;
192
200
  }
193
201
  .thumb_hovered {
194
202
  box-shadow:
@@ -5358,6 +5358,10 @@ export const definitions = {
5358
5358
  type: "object",
5359
5359
  description: "Button manager for the 'Open Link In New Tab' button in the popover.",
5360
5360
  },
5361
+ goto_link_same_tab_button_manager: {
5362
+ type: "object",
5363
+ description: "Button manager for the 'Open Link In Same Tab' button in the popover.",
5364
+ },
5361
5365
  inline_goto_link_button_manager: {
5362
5366
  type: "object",
5363
5367
  description: "Button manager displayed inline for direct navigation if `is_show_preview` is false.",
@@ -1537,6 +1537,8 @@ export const content_types = {
1537
1537
  display_order: 47,
1538
1538
  attributes: {
1539
1539
  id: { type: "text_literal" },
1540
+ video_id: { type: "text_literal" },
1541
+ is_dark_theme: { type: "boolean_literal" },
1540
1542
  },
1541
1543
  child_elements: {},
1542
1544
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,14 +19,14 @@
19
19
  "dependencies": {
20
20
  "context-filter-polyfill": "^0.3.23",
21
21
  "qr-code-styling": "^1.9.2",
22
- "svelte": "^5.38.6"
22
+ "svelte": "^5.38.7"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@sveltejs/kit": "^2.22.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@sveltejs/adapter-vercel": "^5.10.2",
29
- "@sveltejs/kit": "^2.37.0",
29
+ "@sveltejs/kit": "^2.37.1",
30
30
  "@sveltejs/package": "^2.5.0",
31
31
  "@sveltejs/vite-plugin-svelte": "^6.1.4",
32
32
  "@vercel/analytics": "^1.5.0",
package/src/app.html CHANGED
@@ -2,13 +2,12 @@
2
2
  <html lang="en" data-theme="">
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <link rel="icon" type="image/svg+xml" href="%sveltekit.assets%/favicon.svg" sizes="any" />
6
- <link rel="icon" type="image/png" href="%sveltekit.assets%/favicon-96x96.png" sizes="96x96" />
5
+ <link rel="icon" type="image/svg+xml" sizes="any" href="%sveltekit.assets%/favicon.svg" />
6
+ <link rel="icon" type="image/png" href="%sveltekit.assets%/favicon.png" />
7
7
  <link rel="apple-touch-icon" sizes="180x180" href="%sveltekit.assets%/apple-touch-icon.png" />
8
- <meta name="apple-mobile-web-app-title" content="Sveltekit-UI" />
9
8
  <link rel="manifest" href="%sveltekit.assets%/site.webmanifest" />
10
- <meta name="theme-color" media="(prefers-color-scheme: light)" content="oklch(97% 0.01 203)" />
11
- <meta name="theme-color" media="(prefers-color-scheme: dark)" content="oklch(3% 0.01 203)" />
9
+ <meta name="theme-color" media="(prefers-color-scheme: light)" content="oklch(97% 0.01 261)" />
10
+ <meta name="theme-color" media="(prefers-color-scheme: dark)" content="oklch(3% 0.01 261)" />
12
11
  <meta name="viewport" content="width=device-width" />
13
12
  %sveltekit.head%
14
13
  </head>
@@ -1517,6 +1517,7 @@ export function create_image_editor_manager(config) {
1517
1517
  })
1518
1518
  ai_generate_image_include_workspace_in_images_prompt_checkbox_manager = create_checkbox_manager({
1519
1519
  label: "Include Workspace Image in Images Prompt",
1520
+ type: "toggle",
1520
1521
  val: true,
1521
1522
  })
1522
1523
  ai_generate_image_from_text_button_manager = create_button_manager({
@@ -40,6 +40,7 @@
40
40
  <div style="display: flex; flex-direction: column; gap: .5rem;">
41
41
  <Button manager={manager?.copy_link_button_manager} />
42
42
  <Button manager={manager?.goto_link_button_manager} />
43
+ <Button manager={manager?.goto_link_same_tab_button_manager} />
43
44
  </div>
44
45
  {/snippet}
45
46
  </Popover>
@@ -10,6 +10,7 @@ export function create_link_manager(config) {
10
10
  let popover_manager = $state(null)
11
11
  let copy_link_button_manager = $state(null)
12
12
  let goto_link_button_manager = $state(null)
13
+ let goto_link_same_tab_button_manager = $state(null)
13
14
  let inline_goto_link_button_manager = $state(null)
14
15
  let qr_manager = $state(null)
15
16
 
@@ -32,18 +33,18 @@ export function create_link_manager(config) {
32
33
  }
33
34
  }
34
35
 
35
- function open_link() {
36
+ function open_link(is_open_same_tab = false) {
36
37
  if (is_internal_link) {
37
38
  goto(href)
38
39
  } else {
39
40
  if (typeof config?.on_goto_external_link == "function") {
40
41
  config?.on_goto_external_link(href)
41
42
  }
42
- window.open(href, "_blank", "noopener,noreferrer")
43
- // Object.assign(document.createElement("a"), {
44
- // target: "_blank",
45
- // href: href,
46
- // }).click()
43
+ if (is_open_same_tab) {
44
+ window.location.href = href
45
+ } else {
46
+ window.open(href, "_blank", "noopener,noreferrer")
47
+ }
47
48
  }
48
49
  }
49
50
 
@@ -52,7 +53,7 @@ export function create_link_manager(config) {
52
53
  type: "dropdown",
53
54
  header: "Link Preview",
54
55
  target_width: 400,
55
- target_height: 400,
56
+ target_height: 460,
56
57
  anchor_id: () => `link_${id}`,
57
58
  })
58
59
  copy_link_button_manager = create_button_manager({
@@ -69,6 +70,12 @@ export function create_link_manager(config) {
69
70
  text_align: "left",
70
71
  on_click: () => open_link(),
71
72
  })
73
+ goto_link_same_tab_button_manager = create_button_manager({
74
+ support_icon: "link_internal",
75
+ text: "Open Link In Same Tab",
76
+ text_align: "left",
77
+ on_click: () => open_link(true),
78
+ })
72
79
  inline_goto_link_button_manager = create_button_manager({
73
80
  type: "soft",
74
81
  min_height: 2,
@@ -105,6 +112,9 @@ export function create_link_manager(config) {
105
112
  get goto_link_button_manager() {
106
113
  return goto_link_button_manager
107
114
  },
115
+ get goto_link_same_tab_button_manager() {
116
+ return goto_link_same_tab_button_manager
117
+ },
108
118
  get inline_goto_link_button_manager() {
109
119
  return inline_goto_link_button_manager
110
120
  },
@@ -118,6 +118,10 @@
118
118
  padding: 0;
119
119
  }
120
120
  .slider_box {
121
+ overscroll-behavior: contain;
122
+ -webkit-user-select: none;
123
+ user-select: none;
124
+ -webkit-tap-highlight-color: transparent;
121
125
  margin: 0.1rem;
122
126
  width: 100%;
123
127
  height: var(--h);
@@ -146,6 +150,7 @@
146
150
  background: var(--g12-t);
147
151
  }
148
152
  .slider {
153
+ appearance: none;
149
154
  -webkit-appearance: none;
150
155
  position: absolute;
151
156
  display: flex;
@@ -189,6 +194,9 @@
189
194
  background: linear-gradient(-45deg, var(--g24), var(--g20));
190
195
  box-shadow: 0 0 0.4rem 0.1rem var(--shadow8);
191
196
  transition: box-shadow 0.3s;
197
+ touch-action: none;
198
+ -webkit-user-select: none;
199
+ user-select: none;
192
200
  }
193
201
  .thumb_hovered {
194
202
  box-shadow:
@@ -5358,6 +5358,10 @@ export const definitions = {
5358
5358
  type: "object",
5359
5359
  description: "Button manager for the 'Open Link In New Tab' button in the popover.",
5360
5360
  },
5361
+ goto_link_same_tab_button_manager: {
5362
+ type: "object",
5363
+ description: "Button manager for the 'Open Link In Same Tab' button in the popover.",
5364
+ },
5361
5365
  inline_goto_link_button_manager: {
5362
5366
  type: "object",
5363
5367
  description: "Button manager displayed inline for direct navigation if `is_show_preview` is false.",
@@ -1537,6 +1537,8 @@ export const content_types = {
1537
1537
  display_order: 47,
1538
1538
  attributes: {
1539
1539
  id: { type: "text_literal" },
1540
+ video_id: { type: "text_literal" },
1541
+ is_dark_theme: { type: "boolean_literal" },
1540
1542
  },
1541
1543
  child_elements: {},
1542
1544
  },
Binary file
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 512 512">
2
- <rect x="0" y="0" width="512" height="512" rx="56" ry="56" fill="#D4E7FF"/>
3
- <path d="M400.3 328.6c0 22-5.6 41.7-17 59.2a112.8 112.8 0 0 1-49.6 41.2 186.2 186.2 0 0 1-77.6 14.8c-35.8 0-65.4-6.7-88.7-20.3-16.5-9.7-30-22.7-40.3-39a88.6 88.6 0 0 1-15.4-47.5c0-8.9 3-16.5 9.3-22.9 6.1-6.4 14-9.5 23.6-9.5a28 28 0 0 1 19.7 7.4c5.4 5 10 12.3 13.8 22 4.6 11.6 9.6 21.3 15 29 5.3 7.8 12.9 14.2 22.6 19.3 9.8 5 22.6 7.5 38.4 7.5 21.8 0 39.6-5 53.2-15.2a45.8 45.8 0 0 0 20.4-38c0-12.1-3.6-22-11-29.4a71.1 71.1 0 0 0-28.5-17.3 490 490 0 0 0-46.7-12.6c-26.1-6.1-48-13.2-65.5-21.4a106 106 0 0 1-42-33.5 86.8 86.8 0 0 1-15.4-52.6c0-20 5.4-37.8 16.4-53.3a103.1 103.1 0 0 1 47.3-35.8c20.6-8.4 45-12.5 72.8-12.5 22.3 0 41.6 2.7 57.9 8.3a122.3 122.3 0 0 1 40.5 22 92.1 92.1 0 0 1 23.5 28.9c5 10 7.5 19.9 7.5 29.5 0 8.7-3.1 16.6-9.3 23.6-6.2 7-14 10.6-23.2 10.6-8.4 0-14.8-2.1-19.2-6.3a85.1 85.1 0 0 1-14.2-20.7 93.8 93.8 0 0 0-23.8-32.1c-9.3-7.7-24.1-11.5-44.6-11.5-19 0-34.3 4.1-46 12.5-11.6 8.3-17.5 18.3-17.5 30 0 7.3 2 13.6 6 19a50 50 0 0 0 16.3 13.5c7 3.8 14 6.8 21.1 9 7.1 2.1 18.8 5.2 35.2 9.4 20.5 4.8 39 10 55.6 15.8a169 169 0 0 1 42.4 21.1 86.6 86.6 0 0 1 27.3 31.3c6.5 12.7 9.7 28.2 9.7 46.5Z" style="fill:#1C82FF;fill-rule:nonzero"></path>
4
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 512 512">
2
+ <rect id="bg-hhgrne" width="512" height="512" x="0" y="0" fill="#e3edff" rx="102" ry="102"/>
3
+ <path id="part-2" fill="#1c82ff" fill-rule="nonzero" d="M400.3 328.6c0 22-5.6 41.7-17 59.2a113 113 0 0 1-49.6 41.2 186 186 0 0 1-77.6 14.8c-35.8 0-65.4-6.7-88.7-20.3-16.5-9.7-30-22.7-40.3-39a88.6 88.6 0 0 1-15.4-47.5c0-8.9 3-16.5 9.3-22.9 6.1-6.4 14-9.5 23.6-9.5a28 28 0 0 1 19.7 7.4c5.4 5 10 12.3 13.8 22 4.6 11.6 9.6 21.3 15 29 5.3 7.8 12.9 14.2 22.6 19.3q14.7 7.5 38.4 7.5c21.8 0 39.6-5 53.2-15.2a45.8 45.8 0 0 0 20.4-38c0-12.1-3.6-22-11-29.4a71 71 0 0 0-28.5-17.3 490 490 0 0 0-46.7-12.6c-26.1-6.1-48-13.2-65.5-21.4a106 106 0 0 1-42-33.5 86.8 86.8 0 0 1-15.4-52.6c0-20 5.4-37.8 16.4-53.3a103 103 0 0 1 47.3-35.8c20.6-8.4 45-12.5 72.8-12.5 22.3 0 41.6 2.7 57.9 8.3a122 122 0 0 1 40.5 22 92 92 0 0 1 23.5 28.9c5 10 7.5 19.9 7.5 29.5 0 8.7-3.1 16.6-9.3 23.6s-14 10.6-23.2 10.6q-12.6 0-19.2-6.3a85 85 0 0 1-14.2-20.7 94 94 0 0 0-23.8-32.1c-9.3-7.7-24.1-11.5-44.6-11.5-19 0-34.3 4.1-46 12.5-11.6 8.3-17.5 18.3-17.5 30 0 7.3 2 13.6 6 19a50 50 0 0 0 16.3 13.5c7 3.8 14 6.8 21.1 9 7.1 2.1 18.8 5.2 35.2 9.4 20.5 4.8 39 10 55.6 15.8a169 169 0 0 1 42.4 21.1 86.6 86.6 0 0 1 27.3 31.3c6.5 12.7 9.7 28.2 9.7 46.5"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 512 512">
2
+ <style>
3
+ .fill_1{fill:#1c82ff;}
4
+ .stroke_1{stroke:#000000;}
5
+ @media (prefers-color-scheme: dark){
6
+ .fill_1{fill:#3d82ff;}
7
+ .stroke_1{stroke:#ffffff;}
8
+ }
9
+ </style>
10
+ <path id="part-2" fill-rule="nonzero" d="M400.3 328.6c0 22-5.6 41.7-17 59.2a113 113 0 0 1-49.6 41.2 186 186 0 0 1-77.6 14.8c-35.8 0-65.4-6.7-88.7-20.3-16.5-9.7-30-22.7-40.3-39a88.6 88.6 0 0 1-15.4-47.5c0-8.9 3-16.5 9.3-22.9 6.1-6.4 14-9.5 23.6-9.5a28 28 0 0 1 19.7 7.4c5.4 5 10 12.3 13.8 22 4.6 11.6 9.6 21.3 15 29 5.3 7.8 12.9 14.2 22.6 19.3q14.7 7.5 38.4 7.5c21.8 0 39.6-5 53.2-15.2a45.8 45.8 0 0 0 20.4-38c0-12.1-3.6-22-11-29.4a71 71 0 0 0-28.5-17.3 490 490 0 0 0-46.7-12.6c-26.1-6.1-48-13.2-65.5-21.4a106 106 0 0 1-42-33.5 86.8 86.8 0 0 1-15.4-52.6c0-20 5.4-37.8 16.4-53.3a103 103 0 0 1 47.3-35.8c20.6-8.4 45-12.5 72.8-12.5 22.3 0 41.6 2.7 57.9 8.3a122 122 0 0 1 40.5 22 92 92 0 0 1 23.5 28.9c5 10 7.5 19.9 7.5 29.5 0 8.7-3.1 16.6-9.3 23.6s-14 10.6-23.2 10.6q-12.6 0-19.2-6.3a85 85 0 0 1-14.2-20.7 94 94 0 0 0-23.8-32.1c-9.3-7.7-24.1-11.5-44.6-11.5-19 0-34.3 4.1-46 12.5-11.6 8.3-17.5 18.3-17.5 30 0 7.3 2 13.6 6 19a50 50 0 0 0 16.3 13.5c7 3.8 14 6.8 21.1 9 7.1 2.1 18.8 5.2 35.2 9.4 20.5 4.8 39 10 55.6 15.8a169 169 0 0 1 42.4 21.1 86.6 86.6 0 0 1 27.3 31.3c6.5 12.7 9.7 28.2 9.7 46.5" class="fill_1 stroke_1"/>
11
+ </svg>
Binary file
Binary file
@@ -1,14 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 512 512">
2
- <style>
3
- .main_color {
4
- fill: #0055BD;
5
- }
6
- @media (prefers-color-scheme: dark) {
7
- .main_color {
8
- fill: #1C82FF;
9
- }
10
- }
11
- </style>
12
- <path d="M0 0h512v512H0z" style="fill:none"></path>
13
- <path class="main_color" d="M400.3 328.6c0 22-5.6 41.7-17 59.2a112.8 112.8 0 0 1-49.6 41.2 186.2 186.2 0 0 1-77.6 14.8c-35.8 0-65.4-6.7-88.7-20.3-16.5-9.7-30-22.7-40.3-39a88.6 88.6 0 0 1-15.4-47.5c0-8.9 3-16.5 9.3-22.9 6.1-6.4 14-9.5 23.6-9.5a28 28 0 0 1 19.7 7.4c5.4 5 10 12.3 13.8 22 4.6 11.6 9.6 21.3 15 29 5.3 7.8 12.9 14.2 22.6 19.3 9.8 5 22.6 7.5 38.4 7.5 21.8 0 39.6-5 53.2-15.2a45.8 45.8 0 0 0 20.4-38c0-12.1-3.6-22-11-29.4a71.1 71.1 0 0 0-28.5-17.3 490 490 0 0 0-46.7-12.6c-26.1-6.1-48-13.2-65.5-21.4a106 106 0 0 1-42-33.5 86.8 86.8 0 0 1-15.4-52.6c0-20 5.4-37.8 16.4-53.3a103.1 103.1 0 0 1 47.3-35.8c20.6-8.4 45-12.5 72.8-12.5 22.3 0 41.6 2.7 57.9 8.3a122.3 122.3 0 0 1 40.5 22 92.1 92.1 0 0 1 23.5 28.9c5 10 7.5 19.9 7.5 29.5 0 8.7-3.1 16.6-9.3 23.6-6.2 7-14 10.6-23.2 10.6-8.4 0-14.8-2.1-19.2-6.3a85.1 85.1 0 0 1-14.2-20.7 93.8 93.8 0 0 0-23.8-32.1c-9.3-7.7-24.1-11.5-44.6-11.5-19 0-34.3 4.1-46 12.5-11.6 8.3-17.5 18.3-17.5 30 0 7.3 2 13.6 6 19a50 50 0 0 0 16.3 13.5c7 3.8 14 6.8 21.1 9 7.1 2.1 18.8 5.2 35.2 9.4 20.5 4.8 39 10 55.6 15.8a169 169 0 0 1 42.4 21.1 86.6 86.6 0 0 1 27.3 31.3c6.5 12.7 9.7 28.2 9.7 46.5Z" style="fill-rule:nonzero"></path>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 512 512">
2
+
3
+ <path id="part-2" fill="#1c82ff" fill-rule="nonzero" d="M400.3 328.6c0 22-5.6 41.7-17 59.2a113 113 0 0 1-49.6 41.2 186 186 0 0 1-77.6 14.8c-35.8 0-65.4-6.7-88.7-20.3-16.5-9.7-30-22.7-40.3-39a88.6 88.6 0 0 1-15.4-47.5c0-8.9 3-16.5 9.3-22.9 6.1-6.4 14-9.5 23.6-9.5a28 28 0 0 1 19.7 7.4c5.4 5 10 12.3 13.8 22 4.6 11.6 9.6 21.3 15 29 5.3 7.8 12.9 14.2 22.6 19.3q14.7 7.5 38.4 7.5c21.8 0 39.6-5 53.2-15.2a45.8 45.8 0 0 0 20.4-38c0-12.1-3.6-22-11-29.4a71 71 0 0 0-28.5-17.3 490 490 0 0 0-46.7-12.6c-26.1-6.1-48-13.2-65.5-21.4a106 106 0 0 1-42-33.5 86.8 86.8 0 0 1-15.4-52.6c0-20 5.4-37.8 16.4-53.3a103 103 0 0 1 47.3-35.8c20.6-8.4 45-12.5 72.8-12.5 22.3 0 41.6 2.7 57.9 8.3a122 122 0 0 1 40.5 22 92 92 0 0 1 23.5 28.9c5 10 7.5 19.9 7.5 29.5 0 8.7-3.1 16.6-9.3 23.6s-14 10.6-23.2 10.6q-12.6 0-19.2-6.3a85 85 0 0 1-14.2-20.7 94 94 0 0 0-23.8-32.1c-9.3-7.7-24.1-11.5-44.6-11.5-19 0-34.3 4.1-46 12.5-11.6 8.3-17.5 18.3-17.5 30 0 7.3 2 13.6 6 19a50 50 0 0 0 16.3 13.5c7 3.8 14 6.8 21.1 9 7.1 2.1 18.8 5.2 35.2 9.4 20.5 4.8 39 10 55.6 15.8a169 169 0 0 1 42.4 21.1 86.6 86.6 0 0 1 27.3 31.3c6.5 12.7 9.7 28.2 9.7 46.5"/>
14
4
  </svg>
Binary file
Binary file
@@ -3,19 +3,19 @@
3
3
  "short_name": "Sveltekit-UI",
4
4
  "icons": [
5
5
  {
6
- "src": "/web-app-manifest-192x192.png",
6
+ "src": "android-chrome-192x192.png",
7
7
  "sizes": "192x192",
8
8
  "type": "image/png",
9
- "purpose": "maskable"
9
+ "purpose": "any"
10
10
  },
11
11
  {
12
- "src": "/web-app-manifest-512x512.png",
12
+ "src": "android-chrome-512x512.png",
13
13
  "sizes": "512x512",
14
14
  "type": "image/png",
15
- "purpose": "maskable"
15
+ "purpose": "any"
16
16
  }
17
17
  ],
18
- "theme_color": "#ffffff",
19
- "background_color": "#ffffff",
18
+ "theme_color": "#0047b9",
19
+ "background_color": "#e3edff",
20
20
  "display": "standalone"
21
21
  }
Binary file
Binary file
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <browserconfig>
3
- <msapplication>
4
- <tile>
5
- <square150x150logo src="/mstile-150x150.png"/>
6
- <TileColor>#da532c</TileColor>
7
- </tile>
8
- </msapplication>
9
- </browserconfig>
Binary file
Binary file
Binary file