sveltacular 0.0.34 → 0.0.36

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.
Files changed (34) hide show
  1. package/dist/forms/check-box/check-box.svelte +4 -4
  2. package/dist/forms/file-area/file-area.svelte +54 -14
  3. package/dist/forms/file-area/file-area.svelte.d.ts +6 -1
  4. package/dist/forms/form-field.svelte +0 -1
  5. package/dist/forms/money-box/money-box.svelte +1 -1
  6. package/dist/forms/number-box/number-box.svelte +4 -4
  7. package/dist/forms/number-box/number-box.svelte.d.ts +1 -1
  8. package/dist/forms/radio-group/radio-box.svelte +4 -4
  9. package/dist/forms/switch-box/switch-box.svelte +3 -8
  10. package/dist/forms/switch-box/switch-box.svelte.d.ts +0 -2
  11. package/dist/generic/card/card.svelte +0 -1
  12. package/dist/generic/date/date-time.svelte +0 -6
  13. package/dist/generic/link/link.svelte +0 -11
  14. package/dist/generic/menu/menu.svelte +6 -6
  15. package/dist/generic/notice/notice.svelte +159 -0
  16. package/dist/generic/notice/notice.svelte.d.ts +25 -0
  17. package/dist/generic/panel/panel.svelte +3 -1
  18. package/dist/generic/scorecard/scorecard.svelte +1 -0
  19. package/dist/helpers/round-to-decimals.d.ts +4 -0
  20. package/dist/helpers/round-to-decimals.js +6 -0
  21. package/dist/images/image.svelte +8 -8
  22. package/dist/index.d.ts +1 -0
  23. package/dist/index.js +1 -0
  24. package/dist/modals/dialog-window.svelte +9 -1
  25. package/dist/navigation/app-bar/app-bar.svelte +9 -0
  26. package/dist/navigation/app-bar/app-logo.svelte +2 -2
  27. package/dist/navigation/app-bar/app-nav-item.svelte +6 -5
  28. package/dist/navigation/breadcrumbs/breadcrumbs.svelte +3 -5
  29. package/dist/navigation/tabs/tab-context.d.ts +3 -0
  30. package/dist/navigation/tabs/tab-group.svelte +5 -1
  31. package/dist/navigation/tabs/tab-group.svelte.d.ts +5 -1
  32. package/dist/navigation/tabs/tab.svelte +71 -29
  33. package/dist/types/generic.d.ts +1 -0
  34. package/package.json +1 -1
@@ -64,10 +64,10 @@ label .checkbox .checkmark {
64
64
  left: 0;
65
65
  width: 0;
66
66
  height: 0;
67
- background-color: var(--form-input-checked-bg, #3182ce);
68
- color: var(--form-input-checked-fg, white);
69
- fill: var(--form-input-checked-bg, #3182ce);
70
- stroke: var(--form-input-checked-fg, white);
67
+ background-color: var(--form-input-selected-bg, #3182ce);
68
+ color: var(--form-input-selected-fg, white);
69
+ fill: var(--form-input-selected-bg, #3182ce);
70
+ stroke: var(--form-input-selected-fg, white);
71
71
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
72
72
  }
73
73
  label input {
@@ -1,25 +1,42 @@
1
1
  <script>import UploadIcon from "../../icons/upload-icon.svelte";
2
2
  import { createEventDispatcher } from "svelte";
3
- let disabled = false;
3
+ export let selectedFiles = [];
4
+ export let disabled = false;
5
+ export let fileLimit = 1;
6
+ export let fileMimePattern = void 0;
4
7
  let isDragging = false;
5
8
  const dispatch = createEventDispatcher();
9
+ const filterFiles = (files) => {
10
+ if (!fileMimePattern)
11
+ return files;
12
+ return [...files].filter((file) => {
13
+ if (!file.type)
14
+ return false;
15
+ if (!fileMimePattern)
16
+ return true;
17
+ if (typeof fileMimePattern === "string")
18
+ return file.type.startsWith(fileMimePattern);
19
+ return file.type.match(fileMimePattern);
20
+ });
21
+ };
22
+ const addFiles = async (files) => {
23
+ if (!files.length)
24
+ return;
25
+ selectedFiles = [...files, selectedFiles].flat().slice(0, fileLimit);
26
+ dispatch("filesSelected", selectedFiles);
27
+ };
6
28
  const selectFiles = async (e) => {
7
29
  const target = e.target;
8
30
  if (!target?.files || !target.files.length)
9
31
  return;
10
- const files = [...target.files].filter((file) => file.type.startsWith("image/"));
11
- if (!files.length)
12
- return;
13
- dispatch("filesSelected", files);
32
+ addFiles(filterFiles([...target.files]));
14
33
  };
15
34
  const dropFiles = async (e) => {
16
35
  dragStop(e);
17
36
  if (!e.dataTransfer)
18
37
  return;
19
- const files = e.dataTransfer.items ? [...e.dataTransfer.items].filter((item) => item.kind === "file").map((item) => item.getAsFile()).filter((item) => !!item) : e.dataTransfer.files;
20
- if (!files.length)
21
- return;
22
- dispatch("filesSelected", files);
38
+ const files = e.dataTransfer.items ? [...e.dataTransfer.items].filter((item) => item.kind === "file").map((item) => item.getAsFile()) : e.dataTransfer.files;
39
+ addFiles(filterFiles(files));
23
40
  };
24
41
  const dragStart = (e) => {
25
42
  e.preventDefault();
@@ -31,9 +48,20 @@ const dragStop = (e) => {
31
48
  e.stopPropagation();
32
49
  isDragging = false;
33
50
  };
51
+ $:
52
+ filesClass = selectedFiles.length ? "has-files" : "no-files";
53
+ $:
54
+ enabledClass = disabled ? "disabled" : "";
55
+ $:
56
+ draggingClass = isDragging ? "isDragging" : "";
57
+ $:
58
+ filesSelectedText = selectedFiles.length ? `${selectedFiles.length} file${selectedFiles.length > 1 ? "s" : ""} selected` : "";
34
59
  </script>
35
60
 
36
- <div class="dropzone" class:disabled class:isDragging>
61
+ <div
62
+ class="dropzone {filesClass} {enabledClass} {draggingClass}"
63
+ data-file-count={selectedFiles.length}
64
+ >
37
65
  <label
38
66
  on:drop={dropFiles}
39
67
  on:dragenter={dragStart}
@@ -51,6 +79,9 @@ const dragStop = (e) => {
51
79
  {:else}
52
80
  <span>Drop file or click to select</span>
53
81
  {/if}
82
+ {#if filesSelectedText}
83
+ <span class="file-count">{filesSelectedText}</span>
84
+ {/if}
54
85
  </div>
55
86
  </label>
56
87
  </div>
@@ -65,9 +96,10 @@ const dragStop = (e) => {
65
96
  align-items: center;
66
97
  width: 100%;
67
98
  height: 100%;
68
- border: 2px dashed #ccc;
99
+ border: 2px dashed var(--form-input-border, black);
100
+ background-color: var(--form-input-bg, white);
101
+ color: var(--form-input-fg, black);
69
102
  border-radius: 0.25rem;
70
- color: #ccc;
71
103
  cursor: pointer;
72
104
  }
73
105
  .dropzone.disabled {
@@ -75,8 +107,8 @@ const dragStop = (e) => {
75
107
  cursor: not-allowed;
76
108
  }
77
109
  .dropzone.isDragging {
78
- background-color: #bbf;
79
- color: #333;
110
+ background-color: var(--form-input-selected-bg, #3182ce);
111
+ color: var(--form-input-selected-fg, white);
80
112
  }
81
113
  .dropzone label {
82
114
  display: flex;
@@ -90,9 +122,17 @@ const dragStop = (e) => {
90
122
  }
91
123
  .dropzone label .icon {
92
124
  width: 50%;
125
+ opacity: 0.5;
93
126
  }
94
127
  .dropzone label .text {
95
128
  font-size: 1rem;
96
129
  letter-spacing: 0.075rem;
97
130
  margin-top: 1rem;
131
+ opacity: 0.5;
132
+ text-align: center;
133
+ }
134
+ .dropzone label .file-count {
135
+ display: block;
136
+ font-size: 0.75rem;
137
+ margin-top: 0.5rem;
98
138
  }</style>
@@ -1,6 +1,11 @@
1
1
  import { SvelteComponent } from "svelte";
2
2
  declare const __propDef: {
3
- props: Record<string, never>;
3
+ props: {
4
+ selectedFiles?: (FileList | File[]) | undefined;
5
+ disabled?: boolean | undefined;
6
+ fileLimit?: number | undefined;
7
+ fileMimePattern?: string | RegExp | undefined;
8
+ };
4
9
  events: {
5
10
  filesSelected: CustomEvent<FileList | File[]>;
6
11
  } & {
@@ -19,5 +19,4 @@ $:
19
19
  <style>div {
20
20
  margin-bottom: 1rem;
21
21
  margin-right: 1rem;
22
- font-family: var(--base-font-family, sans-serif);
23
22
  }</style>
@@ -11,6 +11,6 @@ $:
11
11
  decimals = allowCents ? 2 : 0;
12
12
  </script>
13
13
 
14
- <NumberBox bind:value {symbol} {decimals} {placeholder} {size} {min} {max} {step}
14
+ <NumberBox bind:value prefix={symbol} {decimals} {placeholder} {size} {min} {max} {step}
15
15
  ><slot /></NumberBox
16
16
  >
@@ -1,4 +1,4 @@
1
- <script>import { roundToDecimals } from "../../helpers/round-to-decimals.js";
1
+ <script>import { formatNumber, roundToDecimals } from "../../helpers/round-to-decimals.js";
2
2
  import { uniqueId } from "../../helpers/unique-id.js";
3
3
  import FormField from "../form-field.svelte";
4
4
  import FormLabel from "../form-label.svelte";
@@ -7,12 +7,12 @@ export let value = 0;
7
7
  export let placeholder = "";
8
8
  export let size = "full";
9
9
  export let type = "number";
10
- export let step = 1;
11
10
  export let min = 0;
12
11
  export let max = 1e6;
13
12
  export let decimals = 0;
14
13
  export let prefix = null;
15
14
  export let suffix = null;
15
+ export let step = 1;
16
16
  const valueChanged = () => {
17
17
  value = roundToDecimals(value, decimals);
18
18
  };
@@ -80,8 +80,8 @@ const valueChanged = () => {
80
80
  line-height: 2rem;
81
81
  padding-left: 1rem;
82
82
  padding-right: 1rem;
83
- background-color: var(--base-accent-bg, #ccc);
84
- color: var(--base-accent-fg, black);
83
+ background-color: var(--form-input-accent-bg, #ccc);
84
+ color: var(--form-input-accent-fg, black);
85
85
  }
86
86
  .input .prefix {
87
87
  border-right: 1px solid var(--form-input-border, black);
@@ -6,12 +6,12 @@ declare const __propDef: {
6
6
  placeholder?: string | undefined;
7
7
  size?: FormFieldSizeOptions | undefined;
8
8
  type?: ("number" | "currency") | undefined;
9
- step?: number | undefined;
10
9
  min?: number | undefined;
11
10
  max?: number | undefined;
12
11
  decimals?: number | undefined;
13
12
  prefix?: string | null | undefined;
14
13
  suffix?: string | null | undefined;
14
+ step?: number | undefined;
15
15
  };
16
16
  events: {
17
17
  [evt: string]: CustomEvent<any>;
@@ -48,9 +48,9 @@ label .checkbox .checkmark {
48
48
  display: block;
49
49
  width: 0;
50
50
  height: 0;
51
- color: var(--form-input-checked-fg, white);
52
- fill: var(--form-input-checked-bg, #3182ce);
53
- stroke: var(--form-input-checked-fg, white);
51
+ color: var(--form-input-selected-fg, white);
52
+ fill: var(--form-input-selected-bg, #3182ce);
53
+ stroke: var(--form-input-selected-fg, white);
54
54
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
55
55
  }
56
56
  label input {
@@ -58,7 +58,7 @@ label input {
58
58
  height: 0;
59
59
  }
60
60
  label input:checked + .checkbox {
61
- background-color: var(--form-input-checked-bg, #3182ce);
61
+ background-color: var(--form-input-selected-bg, #3182ce);
62
62
  }
63
63
  label input:checked + .checkbox .checkmark {
64
64
  width: 100%;
@@ -1,17 +1,12 @@
1
1
  <script>import { uniqueId } from "../../helpers/unique-id.js";
2
2
  import { createEventDispatcher } from "svelte";
3
3
  export let checked = false;
4
- export let unCheckedColor = "#ccc";
5
- export let checkedColor = "#007bff";
6
4
  export let size = "full";
7
5
  const id = uniqueId();
8
6
  const dispatch = createEventDispatcher();
9
7
  </script>
10
8
 
11
- <label
12
- class="switch-box {checked ? 'checked' : ''} {size}"
13
- style={`--checked-color: ${checkedColor}; --unchecked-color: ${unCheckedColor};`}
14
- >
9
+ <label class="switch-box {checked ? 'checked' : ''} {size}">
15
10
  <input type="checkbox" bind:checked on:change={() => dispatch('change', checked)} {id} />
16
11
  <!-- svelte-ignore a11y-interactive-supports-focus -->
17
12
  <span class="switch">
@@ -48,10 +43,10 @@ label .slider {
48
43
  background-color: var(--form-input-fg, black);
49
44
  }
50
45
  label.checked .switch {
51
- background-color: var(--form-input-checked-bg, #3182ce);
46
+ background-color: var(--form-input-selected-bg, #3182ce);
52
47
  }
53
48
  label.checked .slider {
54
- background-color: var(--form-input-checked-fg, white);
49
+ background-color: var(--form-input-selected-fg, white);
55
50
  }
56
51
  label.xl .switch {
57
52
  width: 4rem;
@@ -3,8 +3,6 @@ import type { FormFieldSizeOptions } from '../../index.js';
3
3
  declare const __propDef: {
4
4
  props: {
5
5
  checked?: boolean | undefined;
6
- unCheckedColor?: string | undefined;
7
- checkedColor?: string | undefined;
8
6
  size?: FormFieldSizeOptions | undefined;
9
7
  };
10
8
  events: {
@@ -32,7 +32,6 @@ const onClick = () => {
32
32
  background-color: #fff;
33
33
  color: #555;
34
34
  transition: transform 0.2s ease-in-out;
35
- font-family: var(--base-font-family, sans-serif);
36
35
  }
37
36
  li strong {
38
37
  display: block;
@@ -65,9 +65,3 @@ $:
65
65
  </script>
66
66
 
67
67
  <time {datetime}>{text}</time>
68
-
69
- <style>
70
- time {
71
- font-family: var(--base-font-family, sans-serif);
72
- }
73
- </style>
@@ -33,15 +33,4 @@ export let display = "inline";
33
33
  }
34
34
  .link[href].underline-hover:hover {
35
35
  text-decoration: underline;
36
- }
37
-
38
- a {
39
- color: var(--link-fg, #77b9ff);
40
- cursor: pointer;
41
- }
42
- a:visited {
43
- color: var(--link-visited-fg, #459fff);
44
- }
45
- a:hover {
46
- color: var(--link-hover-fg, #d00);
47
36
  }</style>
@@ -64,9 +64,6 @@ $:
64
64
  <style>.menu {
65
65
  position: relative;
66
66
  width: 8rem;
67
- background: white;
68
- color: #000;
69
- border: 1px solid black;
70
67
  list-style: none;
71
68
  z-index: 999;
72
69
  margin: 0;
@@ -75,6 +72,9 @@ $:
75
72
  max-height: 15rem;
76
73
  overflow-y: auto;
77
74
  font-family: var(--base-font-family, sans-serif);
75
+ border: 1px solid var(--form-input-border, black);
76
+ background-color: var(--form-input-bg, white);
77
+ color: var(--form-input-fg, black);
78
78
  }
79
79
  .menu.closed {
80
80
  display: none;
@@ -101,13 +101,13 @@ $:
101
101
  .menu li.instructions {
102
102
  padding: 0.5rem 1rem;
103
103
  font-style: italic;
104
- color: #b7b7b7;
104
+ color: var(--form-input-placeholder, #aaa);
105
105
  cursor: pointer;
106
106
  }
107
107
  .menu li div:hover,
108
108
  .menu li div.selected {
109
- background: #4e4eff;
110
- color: #fff;
109
+ background: var(--form-input-selected-bg, #003c75);
110
+ color: var(--form-input-selected-fg, white);
111
111
  }
112
112
  .menu li .check {
113
113
  display: inline-block;
@@ -0,0 +1,159 @@
1
+ <script>import { createEventDispatcher } from "svelte";
2
+ const dispatch = createEventDispatcher();
3
+ export let title = void 0;
4
+ export let style = "info";
5
+ export let size = "full";
6
+ export let dismissable = false;
7
+ let visible = true;
8
+ let fading = false;
9
+ const goodbye = () => {
10
+ dispatch("dismiss");
11
+ fading = true;
12
+ setTimeout(() => {
13
+ visible = false;
14
+ dispatch("hidden");
15
+ }, 500);
16
+ };
17
+ const onClick = (e) => {
18
+ e.preventDefault();
19
+ e.stopPropagation();
20
+ goodbye();
21
+ };
22
+ </script>
23
+
24
+ <div class="notice {style} {size} {visible ? 'visible' : 'hidden'} {fading ? 'fading' : ''}">
25
+ {#if $$slots.icon}
26
+ <div class="icon">
27
+ <slot name="icon" />
28
+ </div>
29
+ {/if}
30
+ <div class="content">
31
+ {#if title}
32
+ <strong>{title}</strong>
33
+ {/if}
34
+ <div class="message">
35
+ <slot />
36
+ </div>
37
+ </div>
38
+
39
+ {#if dismissable}
40
+ <div class="dismiss">
41
+ <button type="button" on:click={onClick}>X</button>
42
+ </div>
43
+ {/if}
44
+ </div>
45
+
46
+ <style>.notice {
47
+ display: flex;
48
+ flex-direction: row;
49
+ gap: 1rem;
50
+ align-items: center;
51
+ justify-content: flex-start;
52
+ position: relative;
53
+ width: 100%;
54
+ max-width: 100%;
55
+ padding: 1rem;
56
+ border-radius: 0.2rem;
57
+ border: 2px solid var(--base-fg, black);
58
+ background: var(--base-bg, white);
59
+ color: var(--base-fg, black);
60
+ position: relative;
61
+ opacity: 1;
62
+ transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
63
+ }
64
+ .notice.hidden {
65
+ display: none;
66
+ }
67
+ .notice.fading {
68
+ transform: translateY(-100%);
69
+ opacity: 0;
70
+ }
71
+ .notice .icon {
72
+ position: relative;
73
+ width: 3rem;
74
+ min-width: 3rem;
75
+ height: 100%;
76
+ }
77
+ .notice .content {
78
+ display: flex;
79
+ flex-direction: column;
80
+ gap: 0.5rem;
81
+ align-items: flex-start;
82
+ justify-content: flex-start;
83
+ }
84
+ .notice.info {
85
+ background-color: rgb(225, 225, 225);
86
+ color: rgb(78, 78, 78);
87
+ border-color: rgb(144, 144, 144);
88
+ }
89
+ .notice.attention {
90
+ background-color: rgb(255, 248, 219);
91
+ color: rgb(117, 82, 0);
92
+ border-color: rgb(181, 129, 5);
93
+ }
94
+ .notice.success {
95
+ background-color: rgb(229, 248, 230);
96
+ color: rgb(0, 100, 0);
97
+ border-color: rgb(30, 188, 47);
98
+ }
99
+ .notice.error {
100
+ background-color: rgb(255, 232, 230);
101
+ color: rgb(100, 0, 0);
102
+ border-color: rgb(218, 40, 40);
103
+ }
104
+ .notice.xl {
105
+ width: 60rem;
106
+ }
107
+ .notice.lg {
108
+ width: 40rem;
109
+ }
110
+ .notice.lg .icon {
111
+ width: 2.5rem;
112
+ min-width: 2.5rem;
113
+ }
114
+ .notice.lg .content {
115
+ font-size: 0.95rem;
116
+ }
117
+ .notice.md {
118
+ width: 25rem;
119
+ border-width: 1px;
120
+ border-radius: 3px;
121
+ }
122
+ .notice.md .icon {
123
+ width: 2rem;
124
+ min-width: 2rem;
125
+ }
126
+ .notice.md .content {
127
+ font-size: 0.85rem;
128
+ }
129
+ .notice.sm {
130
+ width: 15rem;
131
+ border-width: 1px;
132
+ border-radius: 2px;
133
+ }
134
+ .notice.sm .icon {
135
+ width: 1.5rem;
136
+ min-width: 1.5rem;
137
+ }
138
+ .notice.sm .content {
139
+ font-size: 0.75rem;
140
+ }
141
+
142
+ button {
143
+ appearance: none;
144
+ border: none;
145
+ background-color: transparent;
146
+ font-size: 1rem;
147
+ cursor: pointer;
148
+ position: absolute;
149
+ top: 0.4rem;
150
+ right: 0.4rem;
151
+ width: 1rem;
152
+ height: 1rem;
153
+ line-height: 1rem;
154
+ text-align: center;
155
+ border-radius: 0.5rem;
156
+ }
157
+ button:hover {
158
+ font-weight: bold;
159
+ }</style>
@@ -0,0 +1,25 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ title?: string | undefined;
5
+ style?: ("outline" | "attention" | "success" | "error" | "info") | undefined;
6
+ size?: ("sm" | "md" | "lg" | "xl" | "full") | undefined;
7
+ dismissable?: boolean | undefined;
8
+ };
9
+ events: {
10
+ dismiss: CustomEvent<void>;
11
+ hidden: CustomEvent<void>;
12
+ } & {
13
+ [evt: string]: CustomEvent<any>;
14
+ };
15
+ slots: {
16
+ icon: {};
17
+ default: {};
18
+ };
19
+ };
20
+ export type NoticeProps = typeof __propDef.props;
21
+ export type NoticeEvents = typeof __propDef.events;
22
+ export type NoticeSlots = typeof __propDef.slots;
23
+ export default class Notice extends SvelteComponent<NoticeProps, NoticeEvents, NoticeSlots> {
24
+ }
25
+ export {};
@@ -13,8 +13,9 @@ export let border = true;
13
13
  position: relative;
14
14
  margin-bottom: 1rem;
15
15
  padding: 1rem;
16
- border: soild 1px rgba(100, 100, 100, 0.5);
16
+ border: soild 1px;
17
17
  border-radius: 0.5rem;
18
+ border-color: var(--base-fg, #ccc);
18
19
  font-family: var(--base-font-family, sans-serif);
19
20
  }
20
21
  fieldset.no-border {
@@ -25,5 +26,6 @@ fieldset legend {
25
26
  font-weight: 500;
26
27
  text-transform: uppercase;
27
28
  letter-spacing: 0.1rem;
29
+ color: var(--base-fg, #ccc);
28
30
  font-family: var(--base-headline-font-family, sans-serif);
29
31
  }</style>
@@ -23,6 +23,7 @@ $:
23
23
  <style>button {
24
24
  display: inline-block;
25
25
  margin-right: 1rem;
26
+ margin-bottom: 1rem;
26
27
  padding: 0;
27
28
  border: none;
28
29
  background: none;
@@ -6,3 +6,7 @@
6
6
  * @returns
7
7
  */
8
8
  export declare const roundToDecimals: (value: number, decimals: number) => number;
9
+ /**
10
+ * Format a number to a string with a specific number of decimals
11
+ */
12
+ export declare const formatNumber: (value: number, decimals: number) => string;
@@ -10,3 +10,9 @@ export const roundToDecimals = (value, decimals) => {
10
10
  return Math.round(value);
11
11
  return Number(Math.round(Number(`${value}e${decimals}`)) + `e-${decimals}`);
12
12
  };
13
+ /**
14
+ * Format a number to a string with a specific number of decimals
15
+ */
16
+ export const formatNumber = (value, decimals) => {
17
+ return roundToDecimals(value, decimals).toLocaleString();
18
+ };
@@ -33,13 +33,13 @@ $:
33
33
  {/if}
34
34
  </div>
35
35
 
36
- <style>div {
36
+ <style>.image {
37
37
  position: relative;
38
38
  width: 100%;
39
39
  height: 100%;
40
40
  flex-grow: 1;
41
41
  }
42
- div .caption {
42
+ .image .caption {
43
43
  position: absolute;
44
44
  bottom: 0;
45
45
  left: 0;
@@ -48,7 +48,7 @@ div .caption {
48
48
  background: rgba(0, 0, 0, 0.5);
49
49
  color: white;
50
50
  }
51
- div picture {
51
+ .image picture {
52
52
  display: block;
53
53
  width: 100%;
54
54
  height: 100%;
@@ -57,7 +57,7 @@ div picture {
57
57
  object-fit: contain;
58
58
  object-position: center;
59
59
  }
60
- div img {
60
+ .image img {
61
61
  display: block;
62
62
  width: 100%;
63
63
  height: 100%;
@@ -66,11 +66,11 @@ div img {
66
66
  object-fit: contain;
67
67
  object-position: center;
68
68
  }
69
- div.left picture,
70
- div.left img {
69
+ .image.left picture,
70
+ .image.left img {
71
71
  object-position: left;
72
72
  }
73
- div.right picture,
74
- div.right img {
73
+ .image.right picture,
74
+ .image.right img {
75
75
  object-position: right;
76
76
  }</style>
package/dist/index.d.ts CHANGED
@@ -34,6 +34,7 @@ export { default as Panel } from './generic/panel/panel.svelte';
34
34
  export { default as Section } from './generic/section/section.svelte';
35
35
  export { default as Header } from './generic/header/header.svelte';
36
36
  export { default as Dot } from './generic/dot/dot.svelte';
37
+ export { default as Notice } from './generic/notice/notice.svelte';
37
38
  export { default as FlexCol } from './layout/flex-col.svelte';
38
39
  export { default as FlexRow } from './layout/flex-row.svelte';
39
40
  export { default as FlexItem } from './layout/flex-item.svelte';
package/dist/index.js CHANGED
@@ -36,6 +36,7 @@ export { default as Panel } from './generic/panel/panel.svelte';
36
36
  export { default as Section } from './generic/section/section.svelte';
37
37
  export { default as Header } from './generic/header/header.svelte';
38
38
  export { default as Dot } from './generic/dot/dot.svelte';
39
+ export { default as Notice } from './generic/notice/notice.svelte';
39
40
  // Layout
40
41
  export { default as FlexCol } from './layout/flex-col.svelte';
41
42
  export { default as FlexRow } from './layout/flex-row.svelte';
@@ -4,6 +4,8 @@ const captureClick = (e) => {
4
4
  };
5
5
  </script>
6
6
 
7
+ <!-- svelte-ignore a11y-click-events-have-key-events -->
8
+ <!-- svelte-ignore a11y-no-static-element-interactions -->
7
9
  <div class={size} on:click={captureClick}>
8
10
  <slot />
9
11
  </div>
@@ -34,5 +36,11 @@ div.xl {
34
36
  }
35
37
  div.full {
36
38
  width: 100%;
37
- max-width: none;
39
+ max-width: 100%;
40
+ }
41
+
42
+ @media (max-width: 640px) {
43
+ div {
44
+ max-width: 100%;
45
+ }
38
46
  }</style>
@@ -28,6 +28,15 @@ setContext("app-bar", {
28
28
  right: 0;
29
29
  z-index: 999;
30
30
  height: 3rem;
31
+ font-family: var(--base-font-family, sans-serif);
32
+ }
33
+ header a {
34
+ color: var(--nav-link, rgb(33, 150, 243));
35
+ text-decoration: none;
36
+ }
37
+ header a:hover {
38
+ color: var(--nav-link-hover, rgb(66, 165, 245));
39
+ text-decoration: underline;
31
40
  }
32
41
  header.fixed {
33
42
  position: fixed;
@@ -23,8 +23,8 @@ div a {
23
23
  width: 100%;
24
24
  height: 100%;
25
25
  text-decoration: none;
26
- color: var(--nav-link-fg, #333);
26
+ color: var(--nav-link, #333);
27
27
  }
28
28
  div a:hover {
29
- color: var(--nav-link-hover-fg, #333);
29
+ color: var(--nav-link-hover, #333);
30
30
  }</style>
@@ -29,7 +29,7 @@ const click = () => {
29
29
  align-items: center;
30
30
  height: 100%;
31
31
  font-family: var(--nav-font-family, sans-serif);
32
- color: var(--nav-link-fg, black);
32
+ color: var(--nav-link, black);
33
33
  text-decoration: none;
34
34
  appearance: none;
35
35
  border: none;
@@ -37,14 +37,14 @@ const click = () => {
37
37
  cursor: pointer;
38
38
  }
39
39
  button:hover {
40
- color: var(--nav-link-hover-fg, black);
40
+ color: var(--nav-link-hover, black);
41
41
  text-decoration: underline;
42
42
  }
43
43
  button .icon {
44
44
  width: 100%;
45
45
  height: 1.5rem;
46
- fill: var(--nav-link-fg, black);
47
- stroke: var(--nav-link-fg, black);
46
+ fill: var(--nav-link, black);
47
+ stroke: var(--nav-link, black);
48
48
  }
49
49
 
50
50
  @media (max-width: 640px) {
@@ -57,7 +57,8 @@ button .icon {
57
57
  }
58
58
  button.open:hover {
59
59
  text-decoration: none;
60
- background-color: #bbb;
60
+ background-color: var(--nav-menu-hover-bg, #ddd);
61
+ color: var(--nav-menu-hover-fg, black);
61
62
  }
62
63
  button.open .title {
63
64
  flex-grow: 1;
@@ -40,21 +40,19 @@ const getCrumLabel = (crumb) => {
40
40
  padding: 0;
41
41
  margin: 0;
42
42
  line-height: 1.5rem;
43
- font-family: var(--breadcrumbs-font-family, sans-serif);
44
- text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
45
43
  }
46
44
  nav li {
47
- color: var(--breadcrumbs-fg, #bbb);
45
+ color: var(--breadcrumbs-fg, #555);
48
46
  padding: 0;
49
47
  margin: 0;
50
48
  }
51
49
  nav li a {
52
- color: var(--breadcrumbs-link-fg, #bbb);
50
+ color: var(--breadcrumbs-fg, #555);
53
51
  text-decoration: none;
54
52
  width: 100%;
55
53
  }
56
54
  nav li a:hover {
57
- color: var(--breadcrumbs-link-hover-fg, white);
55
+ color: var(--breadcrumbs-hover, #955);
58
56
  text-decoration: underline;
59
57
  }
60
58
  nav.sm li {
@@ -1,6 +1,9 @@
1
1
  /// <reference types="svelte" />
2
+ import type { TabStyle } from '../../types/generic.js';
2
3
  import type { Writable } from 'svelte/store';
3
4
  export interface TabContext {
4
5
  active: Writable<string | null>;
6
+ style: TabStyle;
7
+ squared: boolean;
5
8
  }
6
9
  export declare const tabContext = "tabContext";
@@ -1,8 +1,12 @@
1
1
  <script>import { writable } from "svelte/store";
2
2
  import { setContext } from "svelte";
3
3
  import { tabContext } from "./tab-context.js";
4
+ export let style = "traditional";
5
+ export let squared = false;
4
6
  const ctx = {
5
- active: writable(null)
7
+ active: writable(null),
8
+ style,
9
+ squared
6
10
  };
7
11
  setContext(tabContext, ctx);
8
12
  </script>
@@ -1,6 +1,10 @@
1
1
  import { SvelteComponent } from "svelte";
2
+ import type { TabStyle } from '../../types/generic.js';
2
3
  declare const __propDef: {
3
- props: Record<string, never>;
4
+ props: {
5
+ style?: TabStyle | undefined;
6
+ squared?: boolean | undefined;
7
+ };
4
8
  events: {
5
9
  [evt: string]: CustomEvent<any>;
6
10
  };
@@ -1,27 +1,33 @@
1
- <script>import { createEventDispatcher, getContext } from "svelte";
1
+ <script>import { createEventDispatcher, getContext, onDestroy } from "svelte";
2
2
  import { tabContext } from "./tab-context.js";
3
3
  export let title;
4
4
  export let active = false;
5
5
  const dispatch = createEventDispatcher();
6
6
  const ctx = getContext(tabContext);
7
+ const tabStyle = ctx.style || "traditional";
7
8
  const selectThisTab = () => {
8
9
  dispatch("selectTab", title);
9
10
  ctx.active.set(title);
10
11
  };
11
12
  if (active)
12
13
  selectThisTab();
13
- ctx.active.subscribe((value) => {
14
+ const unsubscribe = ctx.active.subscribe((value) => {
14
15
  active = value === title;
15
16
  });
17
+ onDestroy(() => {
18
+ unsubscribe();
19
+ });
20
+ $:
21
+ classes = `${active ? "active" : "inactive"} ${tabStyle} ${ctx.squared ? "squared" : "rounded"}`;
16
22
  </script>
17
23
 
18
- <section class:active>
19
- <header>
24
+ <section class={classes}>
25
+ <header class="tabTitle">
20
26
  <button type="button" on:click={selectThisTab}>
21
27
  {title}
22
28
  </button>
23
29
  </header>
24
- <div>
30
+ <div class="tabContent">
25
31
  {#if active}
26
32
  <slot />
27
33
  {/if}
@@ -31,59 +37,95 @@ ctx.active.subscribe((value) => {
31
37
  <style>section {
32
38
  display: inline;
33
39
  }
34
- section header {
40
+
41
+ .tabTitle {
35
42
  display: inline-block;
36
43
  cursor: pointer;
37
- height: 2rem;
44
+ height: 2.2rem;
38
45
  overflow: hidden;
39
- border-width: 0.1rem 0.1rem 0 0.1rem;
40
- border-style: solid;
41
- border-radius: 0.5rem 0.5rem 0 0;
42
- margin-right: 0.5rem;
43
- border-color: transparent;
44
46
  position: relative;
45
47
  z-index: 2;
46
- background: var(--tab-bg, transparent);
47
- color: var(--tab-fg, #fff);
48
48
  }
49
- section header button {
49
+ .tabTitle button {
50
50
  appearance: none;
51
51
  background: transparent;
52
- border: none;
52
+ border-style: solid;
53
+ border-width: 0 0 0.2rem 0;
54
+ border-color: transparent;
55
+ border-radius: 0.5rem 0.5rem 0 0;
53
56
  color: inherit;
54
- padding: 0;
55
57
  cursor: pointer;
56
58
  width: 100%;
57
59
  height: 100%;
58
60
  font-size: 1rem;
59
- line-height: 2rem;
61
+ line-height: 1.8rem;
62
+ height: 2.2rem;
60
63
  font-weight: 300;
61
64
  padding: 0 1rem;
62
65
  }
63
- section header button:focus {
66
+ .tabTitle button:focus {
64
67
  outline: none;
65
68
  }
66
- section header:hover {
67
- background: var(--tab-hover-bg, transparent);
68
- color: var(--tab-hover-fg, #fbb);
69
- }
70
- section div {
69
+
70
+ .tabContent {
71
71
  display: none;
72
72
  width: 100%;
73
73
  position: absolute;
74
74
  top: 2rem;
75
75
  left: 0;
76
- border-top: solid 0.2rem var(--tab-active-bg, #eee);
76
+ border-top: solid 0.2rem var(--tab-content-border, rgb(220, 220, 230));
77
77
  padding-top: 1rem;
78
78
  z-index: 1;
79
79
  font-size: 1rem;
80
80
  }
81
- section.active header {
81
+
82
+ .active button {
82
83
  font-weight: 700;
83
- background: var(--tab-active-bg, #eee);
84
- color: var(--tab-active-fg, #000);
85
84
  cursor: default;
86
85
  }
87
- section.active div {
86
+
87
+ .inactive button {
88
+ color: var(--tab-inactive-fg, #999);
89
+ }
90
+ .inactive button:hover {
91
+ color: var(--tab-hover-fg, #ccc);
92
+ }
93
+
94
+ .active .tabContent {
88
95
  display: block;
96
+ }
97
+
98
+ .squared button {
99
+ border-radius: 0.2rem 0.2rem 0 0;
100
+ }
101
+
102
+ .traditional.inactive button {
103
+ background: var(--tab-traditional-inactive-bg, transparent);
104
+ color: var(--tab-traditional-inactive-fg, rgb(100, 100, 100));
105
+ }
106
+ .traditional.inactive button:hover {
107
+ background: var(--tab-traditional-hover-bg, transparent);
108
+ color: var(--tab-traditional-hover-fg, rgb(160, 160, 160));
109
+ }
110
+ .traditional.active button {
111
+ background: var(--tab-traditional-active-bg, rgb(220, 220, 230));
112
+ color: var(--tab-traditional-active-fg, rgb(51, 51, 51));
113
+ }
114
+
115
+ .underline.inactive button {
116
+ background: var(--tab-underline-inactive-bg, transparent);
117
+ color: var(--tab-underline-inactive-fg, rgb(100, 100, 100));
118
+ }
119
+ .underline.inactive button:hover {
120
+ background: var(--tab-underline-hover-bg, transparent);
121
+ color: var(--tab-underline-hover-fg, rgb(150, 150, 150));
122
+ }
123
+ .underline.active button {
124
+ color: var(--tab-underline-active-fg, rgb(255, 134, 78));
125
+ border-color: var(--tab-underline-active-fg, rgb(255, 134, 78));
126
+ }
127
+
128
+ .outline.active button {
129
+ border-width: 0.1rem 0.1rem 0 0.1rem;
130
+ border-color: var(--tab-content-border, rgb(220, 220, 230));
89
131
  }</style>
@@ -1,3 +1,4 @@
1
1
  export type SectionLevel = 1 | 2 | 3 | 4 | 5 | 6;
2
2
  export type HttpProtocol = 'http' | 'https';
3
3
  export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
+ export type TabStyle = 'traditional' | 'underline' | 'outline';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltacular",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "scripts": {
5
5
  "watch": "npm run dev -- --open",
6
6
  "dev": "vite dev",