@turnipxenon/pineapple 2.10.0 → 3.0.0-alpha.1
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/dist/assets/icons/icon-contrast.svg +1 -0
- package/dist/assets/icons/icon-dark-mode.svg +1 -0
- package/dist/assets/icons/icon-light-mode.svg +1 -0
- package/dist/assets/icons/icon-settings.svg +1 -0
- package/dist/components/Card.svelte +43 -41
- package/dist/components/Card.svelte.d.ts +11 -24
- package/dist/components/CarouselElement.svelte +15 -8
- package/dist/components/CarouselElement.svelte.d.ts +7 -18
- package/dist/components/ElementVisbilityDetector.svelte +23 -14
- package/dist/components/ElementVisbilityDetector.svelte.d.ts +6 -17
- package/dist/components/LazyAsset.svelte +93 -65
- package/dist/components/LazyAsset.svelte.d.ts +9 -19
- package/dist/components/PineappleSlideToggle.svelte +19 -7
- package/dist/components/PineappleSlideToggle.svelte.d.ts +8 -19
- package/dist/components/RandomizedBackground.svelte +46 -27
- package/dist/components/RandomizedBackground.svelte.d.ts +5 -15
- package/dist/components/RandomizedImage.svelte +15 -8
- package/dist/components/RandomizedImage.svelte.d.ts +6 -16
- package/dist/components/StickyElement.svelte +25 -16
- package/dist/components/StickyElement.svelte.d.ts +6 -17
- package/dist/components/ToggleableContent.svelte +88 -59
- package/dist/components/ToggleableContent.svelte.d.ts +6 -17
- package/dist/components/blog_template/BlogTemplate.svelte +45 -25
- package/dist/components/blog_template/BlogTemplate.svelte.d.ts +9 -20
- package/dist/components/blog_template/BlogTemplateInner.svelte +11 -3
- package/dist/components/blog_template/BlogTemplateInner.svelte.d.ts +6 -17
- package/dist/components/chip/Chip.svelte +33 -57
- package/dist/components/chip/Chip.svelte.d.ts +7 -18
- package/dist/components/combo_box/ComboBox.svelte +10 -4
- package/dist/components/combo_box/ComboBox.svelte.d.ts +6 -16
- package/dist/components/combo_box/ComboBoxWithButton.svelte +16 -9
- package/dist/components/combo_box/ComboBoxWithButton.svelte.d.ts +7 -17
- package/dist/components/combo_box/combo-box.postcss +2 -2
- package/dist/components/dialog_manager/DialogManager.d.ts +0 -1
- package/dist/components/dialog_manager/DialogManagerStore.d.ts +0 -1
- package/dist/components/dialog_manager/DialogManagerStore.js +1 -1
- package/dist/components/dialog_overlay/DialogOverlay.svelte +42 -34
- package/dist/components/dialog_overlay/DialogOverlay.svelte.d.ts +3 -14
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/layouts/SeaweedBaseLayout.svelte +80 -43
- package/dist/components/layouts/SeaweedBaseLayout.svelte.d.ts +8 -21
- package/dist/components/navigation_component/NavigationComponent.svelte +52 -141
- package/dist/components/navigation_component/NavigationComponent.svelte.d.ts +17 -26
- package/dist/components/navigation_component/NavigationControl.svelte +52 -103
- package/dist/components/navigation_component/NavigationControl.svelte.d.ts +7 -17
- package/dist/components/overrideable_meta/OverridableMeta.svelte +37 -22
- package/dist/components/overrideable_meta/OverridableMeta.svelte.d.ts +9 -19
- package/dist/components/pineapple/PineappleBaseLayout.svelte +132 -188
- package/dist/components/pineapple/PineappleBaseLayout.svelte.d.ts +6 -17
- package/dist/components/pineapple/toast/DefaultToastBody.svelte +14 -16
- package/dist/components/pineapple/toast/DefaultToastBody.svelte.d.ts +7 -17
- package/dist/components/pineapple/toast/Toast.d.ts +0 -1
- package/dist/components/pineapple/toast/Toast.svelte +92 -64
- package/dist/components/pineapple/toast/Toast.svelte.d.ts +3 -14
- package/dist/components/pineapple/toast/custom-toast/TestCustomToast.svelte.d.ts +22 -19
- package/dist/paraglide/messages/_index.d.ts +2 -0
- package/dist/paraglide/messages/_index.js +3 -0
- package/dist/paraglide/messages/example_message.d.ts +5 -0
- package/dist/paraglide/messages/example_message.js +39 -0
- package/dist/paraglide/messages/settings.d.ts +3 -0
- package/dist/paraglide/messages/settings.js +38 -0
- package/dist/paraglide/messages.d.ts +2 -0
- package/dist/paraglide/messages.js +4 -0
- package/dist/paraglide/registry.d.ts +21 -0
- package/dist/paraglide/registry.js +31 -0
- package/dist/paraglide/runtime.d.ts +400 -0
- package/dist/paraglide/runtime.js +1060 -0
- package/dist/paraglide/server.d.ts +64 -0
- package/dist/paraglide/server.js +161 -0
- package/dist/scripts/util/FileManagement.d.ts +1 -1
- package/dist/store.d.ts +0 -1
- package/dist/styles/app.css +53 -0
- package/dist/styles/turnip-theme.css +323 -0
- package/dist/template/seaweed/CreateUrlForm.svelte +50 -38
- package/dist/template/seaweed/CreateUrlForm.svelte.d.ts +5 -15
- package/dist/template/seaweed/SeaweedTemplate.svelte +244 -195
- package/dist/template/seaweed/SeaweedTemplate.svelte.d.ts +28 -25
- package/dist/template/seaweed/entries/ChefWings.svelte +37 -39
- package/dist/template/seaweed/entries/ChefWings.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/CustomizedYarnspinner.svelte +32 -24
- package/dist/template/seaweed/entries/CustomizedYarnspinner.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/Hepcat.svelte +58 -49
- package/dist/template/seaweed/entries/Hepcat.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/Pengi.svelte +51 -43
- package/dist/template/seaweed/entries/Pengi.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/Soulwork.svelte +44 -36
- package/dist/template/seaweed/entries/Soulwork.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/ThisWebpage.svelte +47 -38
- package/dist/template/seaweed/entries/ThisWebpage.svelte.d.ts +5 -15
- package/dist/template/seaweed/entries/WorkExperience.svelte +109 -92
- package/dist/template/seaweed/entries/WorkExperience.svelte.d.ts +6 -16
- package/dist/template/seaweed/entries/Workset.svelte +51 -42
- package/dist/template/seaweed/entries/Workset.svelte.d.ts +5 -15
- package/dist/template/seaweed/entry_order_config/EntryOrderConfig.svelte +136 -259
- package/dist/template/seaweed/entry_order_config/EntryOrderConfig.svelte.d.ts +10 -20
- package/dist/template/seaweed/seaweed.postcss +1 -9
- package/dist/{theme.postcss → theme.css} +1 -4
- package/dist/ui/components/FourPartCard.svelte +47 -0
- package/dist/ui/components/FourPartCard.svelte.d.ts +10 -0
- package/dist/ui/components/ModalBase.svelte +75 -0
- package/dist/ui/components/ModalBase.svelte.d.ts +8 -0
- package/dist/ui/components/SocialSection.svelte +87 -0
- package/dist/ui/components/SocialSection.svelte.d.ts +9 -0
- package/dist/ui/components/index.d.ts +3 -0
- package/dist/ui/components/index.js +3 -0
- package/dist/ui/components/randomized-background/RandomizedBackground.svelte +87 -0
- package/dist/ui/components/randomized-background/RandomizedBackground.svelte.d.ts +6 -0
- package/dist/ui/components/randomized-background/RandomizedImage.svelte +42 -0
- package/dist/ui/components/randomized-background/RandomizedImage.svelte.d.ts +7 -0
- package/dist/ui/elements/ColorScheme.d.ts +10 -0
- package/dist/ui/elements/ColorScheme.js +11 -0
- package/dist/ui/elements/GeneralUIProps.d.ts +12 -0
- package/dist/ui/elements/GeneralUIProps.js +1 -0
- package/dist/ui/elements/ImageIcon.svelte +54 -0
- package/dist/ui/elements/ImageIcon.svelte.d.ts +6 -0
- package/dist/ui/elements/OnBackground.d.ts +3 -0
- package/dist/ui/elements/OnBackground.js +4 -0
- package/dist/ui/elements/TextLink.svelte +17 -0
- package/dist/ui/elements/TextLink.svelte.d.ts +8 -0
- package/dist/ui/elements/WrapperProps.d.ts +4 -0
- package/dist/ui/elements/WrapperProps.js +1 -0
- package/dist/ui/elements/index.d.ts +8 -0
- package/dist/ui/elements/index.js +8 -0
- package/dist/ui/elements/pinya-button/component.svelte +47 -0
- package/dist/ui/elements/pinya-button/component.svelte.d.ts +4 -0
- package/dist/ui/elements/pinya-button/index.d.ts +2 -0
- package/dist/ui/elements/pinya-button/index.js +2 -0
- package/dist/ui/elements/pinya-button/props.d.ts +13 -0
- package/dist/ui/elements/pinya-button/props.js +6 -0
- package/dist/ui/elements/pinya-card/component.svelte +19 -0
- package/dist/ui/elements/pinya-card/component.svelte.d.ts +7 -0
- package/dist/ui/elements/pinya-card/index.d.ts +2 -0
- package/dist/ui/elements/pinya-card/index.js +2 -0
- package/dist/ui/elements/pinya-card/props.d.ts +7 -0
- package/dist/ui/elements/pinya-card/props.js +1 -0
- package/dist/ui/modules/index.d.ts +1 -0
- package/dist/ui/modules/index.js +1 -0
- package/dist/ui/modules/modals/general-settings/GeneralSettingsModal.svelte +110 -0
- package/dist/ui/modules/modals/general-settings/GeneralSettingsModal.svelte.d.ts +4 -0
- package/dist/ui/modules/modals/general-settings/LanguagePicker.svelte +48 -0
- package/dist/ui/modules/modals/general-settings/LanguagePicker.svelte.d.ts +3 -0
- package/dist/{template → ui/modules}/seaweed/ChumBucket.svelte +28 -28
- package/dist/ui/modules/seaweed/ChumBucket.svelte.d.ts +3 -0
- package/dist/ui/modules/seaweed/index.d.ts +3 -0
- package/dist/ui/modules/seaweed/index.js +4 -0
- package/dist/ui/templates/PinyaBase.svelte +45 -0
- package/dist/ui/templates/PinyaBase.svelte.d.ts +7 -0
- package/dist/ui/templates/confirmation-modal/component.svelte +47 -0
- package/dist/ui/templates/confirmation-modal/component.svelte.d.ts +4 -0
- package/dist/ui/templates/confirmation-modal/index.d.ts +2 -0
- package/dist/ui/templates/confirmation-modal/index.js +2 -0
- package/dist/ui/templates/confirmation-modal/props.d.ts +10 -0
- package/dist/ui/templates/confirmation-modal/props.js +1 -0
- package/dist/ui/templates/index.d.ts +3 -0
- package/dist/ui/templates/index.js +3 -0
- package/dist/ui/templates/pinya-page-layout/component.svelte +113 -0
- package/dist/ui/templates/pinya-page-layout/component.svelte.d.ts +8 -0
- package/dist/ui/templates/pinya-page-layout/index.d.ts +2 -0
- package/dist/ui/templates/pinya-page-layout/index.js +2 -0
- package/dist/ui/templates/pinya-page-layout/runes.svelte.d.ts +7 -0
- package/dist/ui/templates/pinya-page-layout/runes.svelte.js +3 -0
- package/package.json +36 -18
- package/src/lib/styles/app.css +53 -0
- package/src/lib/theme.css +114 -0
- package/dist/app.postcss +0 -212
- package/dist/components/SocialSection.svelte +0 -166
- package/dist/components/SocialSection.svelte.d.ts +0 -31
- package/dist/postcss.d.ts +0 -3
- package/dist/styles/DefaultGridContainer.css +0 -61
- package/dist/template/seaweed/ChumBucket.svelte.d.ts +0 -14
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@import 'tailwindcss';
|
|
2
|
+
@import "@skeletonlabs/skeleton";
|
|
3
|
+
@import "@skeletonlabs/skeleton/optional/presets";
|
|
4
|
+
@import "@skeletonlabs/skeleton/themes/crimson";
|
|
5
|
+
@import "./turnip-theme.css";
|
|
6
|
+
|
|
7
|
+
@source "../node_modules/@skeletonlabs/skeleton-svelte/dist";
|
|
8
|
+
|
|
9
|
+
@custom-variant dark (&:where(.dark, .dark *));
|
|
10
|
+
|
|
11
|
+
@custom-variant turnip (&:where([data-theme=turnip], [data-theme=turnip] *));
|
|
12
|
+
|
|
13
|
+
.footer-space {
|
|
14
|
+
width: 100%;
|
|
15
|
+
height: calc(var(--dialog-box-height) + 4em);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
a.dialog-choice {
|
|
19
|
+
cursor: url("$pkg/assets/icons/chat-cursor.svg"), auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
a.external-link {
|
|
23
|
+
cursor: url("$pkg/assets/icons/external-link.svg"), auto;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#toast-progress {
|
|
27
|
+
position: relative;
|
|
28
|
+
top: 5px;
|
|
29
|
+
left: 6px;
|
|
30
|
+
width: calc(100% - 12px);
|
|
31
|
+
border-radius: 8px;
|
|
32
|
+
background: transparent;
|
|
33
|
+
height: 10px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#toast-progress::-moz-progress-bar {
|
|
37
|
+
background: rgba(var(--color-secondary-500));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dialog-box {
|
|
41
|
+
background-color: rgb(var(--color-surface-500) / 0.9);
|
|
42
|
+
position: fixed;
|
|
43
|
+
bottom: 0;
|
|
44
|
+
width: var(--dialog-box-width); /*75em + 4em padding*/
|
|
45
|
+
height: var(--dialog-box-height);
|
|
46
|
+
max-width: calc(100vw - ((var(--fab-margin) * 2) + 4em));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.dark .dialog-box {
|
|
50
|
+
background-color: rgb(var(--color-surface-900) / 0.95);
|
|
51
|
+
--tw-ring-color: rgb(var(--color-text-400));
|
|
52
|
+
/*background-color: red;*/
|
|
53
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
@tailwind variants;
|
|
2
|
+
|
|
3
|
+
/*todo: delete after all downstream works #migration*/
|
|
4
|
+
:root {
|
|
5
|
+
/* =~= Theme Properties =~= */
|
|
6
|
+
--theme-font-family-base: system-ui;
|
|
7
|
+
--theme-font-family-heading: system-ui;
|
|
8
|
+
--theme-font-color-base: var(--color-primary-900);
|
|
9
|
+
--theme-font-color-dark: var(--color-primary-50);
|
|
10
|
+
--theme-rounded-base: 24px;
|
|
11
|
+
--theme-rounded-container: 16px;
|
|
12
|
+
--theme-border-base: 2px;
|
|
13
|
+
/* =~= Theme On-X Colors =~= */
|
|
14
|
+
--on-primary: var(--color-text-900);
|
|
15
|
+
--on-secondary: var(--color-surface-500);
|
|
16
|
+
--on-tertiary: var(--color-text-900);
|
|
17
|
+
--on-success: var(--color-text-900);
|
|
18
|
+
--on-warning: var(--color-text-900);
|
|
19
|
+
--on-error: var(--color-surface-500);
|
|
20
|
+
--on-surface: var(--color-text-900);
|
|
21
|
+
/* =~= Theme Colors =~= */
|
|
22
|
+
/* primary | #b9a26e */
|
|
23
|
+
--color-primary-50: 245 241 233; /* ⬅ #f5f1e9 */
|
|
24
|
+
--color-primary-100: 241 236 226; /* ⬅ #f1ece2 */
|
|
25
|
+
--color-primary-200: 238 232 219; /* ⬅ #eee8db */
|
|
26
|
+
--color-primary-300: 227 218 197; /* ⬅ #e3dac5 */
|
|
27
|
+
--color-primary-400: 206 190 154; /* ⬅ #cebe9a */
|
|
28
|
+
--color-primary-500: 185 162 110; /* ⬅ #b9a26e */
|
|
29
|
+
--color-primary-600: 167 146 99; /* ⬅ #a79263 */
|
|
30
|
+
--color-primary-700: 139 122 83; /* ⬅ #8b7a53 */
|
|
31
|
+
--color-primary-800: 111 97 66; /* ⬅ #6f6142 */
|
|
32
|
+
--color-primary-900: 91 79 54; /* ⬅ #5b4f36 */
|
|
33
|
+
--color-primary-1000: 66 54 29; /* ⬅ #42361d */
|
|
34
|
+
/* secondary | #b55639 */
|
|
35
|
+
--color-secondary-50: 244 230 225; /* ⬅ #f4e6e1 */
|
|
36
|
+
--color-secondary-100: 240 221 215; /* ⬅ #f0ddd7 */
|
|
37
|
+
--color-secondary-200: 237 213 206; /* ⬅ #edd5ce */
|
|
38
|
+
--color-secondary-300: 225 187 176; /* ⬅ #e1bbb0 */
|
|
39
|
+
--color-secondary-350: 214 162 146; /* ⬅ #D6A292 */
|
|
40
|
+
--color-secondary-400: 203 137 116; /* ⬅ #cb8974 */
|
|
41
|
+
--color-secondary-450: 192 112 87; /* ⬅ #C07057 */
|
|
42
|
+
--color-secondary-500: 181 86 57; /* ⬅ #b55639 */
|
|
43
|
+
--color-secondary-600: 163 77 51; /* ⬅ #a34d33 */
|
|
44
|
+
--color-secondary-700: 136 65 43; /* ⬅ #88412b */
|
|
45
|
+
--color-secondary-800: 109 52 34; /* ⬅ #6d3422 */
|
|
46
|
+
--color-secondary-900: 89 42 28; /* ⬅ #592a1c */
|
|
47
|
+
/* tertiary | #cd7949 */
|
|
48
|
+
--color-tertiary-50: 248 235 228; /* ⬅ #f8ebe4 */
|
|
49
|
+
--color-tertiary-100: 245 228 219; /* ⬅ #f5e4db */
|
|
50
|
+
--color-tertiary-200: 243 222 210; /* ⬅ #f3ded2 */
|
|
51
|
+
--color-tertiary-300: 235 201 182; /* ⬅ #ebc9b6 */
|
|
52
|
+
--color-tertiary-400: 220 161 128; /* ⬅ #dca180 */
|
|
53
|
+
--color-tertiary-500: 205 121 73; /* ⬅ #cd7949 */
|
|
54
|
+
--color-tertiary-600: 185 109 66; /* ⬅ #b96d42 */
|
|
55
|
+
--color-tertiary-700: 154 91 55; /* ⬅ #9a5b37 */
|
|
56
|
+
--color-tertiary-800: 123 73 44; /* ⬅ #7b492c */
|
|
57
|
+
--color-tertiary-900: 100 59 36; /* ⬅ #643b24 */
|
|
58
|
+
/* success | #7cab36 */
|
|
59
|
+
--color-success-50: 235 242 225; /* ⬅ #ebf2e1 */
|
|
60
|
+
--color-success-100: 229 238 215; /* ⬅ #e5eed7 */
|
|
61
|
+
--color-success-200: 222 234 205; /* ⬅ #deeacd */
|
|
62
|
+
--color-success-300: 203 221 175; /* ⬅ #cbddaf */
|
|
63
|
+
--color-success-400: 163 196 114; /* ⬅ #a3c472 */
|
|
64
|
+
--color-success-500: 124 171 54; /* ⬅ #7cab36 */
|
|
65
|
+
--color-success-600: 112 154 49; /* ⬅ #709a31 */
|
|
66
|
+
--color-success-700: 93 128 41; /* ⬅ #5d8029 */
|
|
67
|
+
--color-success-800: 74 103 32; /* ⬅ #4a6720 */
|
|
68
|
+
--color-success-900: 61 84 26; /* ⬅ #3d541a */
|
|
69
|
+
/* warning | #b8993a */
|
|
70
|
+
--color-warning-50: 244 240 225; /* ⬅ #f4f0e1 */
|
|
71
|
+
--color-warning-100: 241 235 216; /* ⬅ #f1ebd8 */
|
|
72
|
+
--color-warning-200: 237 230 206; /* ⬅ #ede6ce */
|
|
73
|
+
--color-warning-300: 227 214 176; /* ⬅ #e3d6b0 */
|
|
74
|
+
--color-warning-400: 205 184 117; /* ⬅ #cdb875 */
|
|
75
|
+
--color-warning-500: 184 153 58; /* ⬅ #b8993a */
|
|
76
|
+
--color-warning-600: 166 138 52; /* ⬅ #a68a34 */
|
|
77
|
+
--color-warning-700: 138 115 44; /* ⬅ #8a732c */
|
|
78
|
+
--color-warning-800: 110 92 35; /* ⬅ #6e5c23 */
|
|
79
|
+
--color-warning-900: 90 75 28; /* ⬅ #5a4b1c */
|
|
80
|
+
/* error | #b53977 */
|
|
81
|
+
--color-error-50: 244 225 235; /* ⬅ #f4e1eb */
|
|
82
|
+
--color-error-100: 240 215 228; /* ⬅ #f0d7e4 */
|
|
83
|
+
--color-error-200: 237 206 221; /* ⬅ #edcedd */
|
|
84
|
+
--color-error-300: 225 176 201; /* ⬅ #e1b0c9 */
|
|
85
|
+
--color-error-400: 203 116 160; /* ⬅ #cb74a0 */
|
|
86
|
+
--color-error-500: 181 57 119; /* ⬅ #b53977 */
|
|
87
|
+
--color-error-600: 163 51 107; /* ⬅ #a3336b */
|
|
88
|
+
--color-error-700: 136 43 89; /* ⬅ #882b59 */
|
|
89
|
+
--color-error-800: 109 34 71; /* ⬅ #6d2247 */
|
|
90
|
+
--color-error-900: 89 28 58; /* ⬅ #591c3a */
|
|
91
|
+
/* surface | #fff7e3 */
|
|
92
|
+
--color-surface-50: 255 254 251; /* ⬅ #fffefb */
|
|
93
|
+
--color-surface-100: 255 253 249; /* ⬅ #fffdf9 */
|
|
94
|
+
--color-surface-200: 255 253 248; /* ⬅ #fffdf8 */
|
|
95
|
+
--color-surface-300: 255 252 244; /* ⬅ #fffcf4 */
|
|
96
|
+
--color-surface-400: 255 249 235; /* ⬅ #fff9eb */
|
|
97
|
+
--color-surface-500: 255 247 227; /* ⬅ #fff7e3 */
|
|
98
|
+
--color-surface-600: 230 222 204; /* ⬅ #e6decc */
|
|
99
|
+
--color-surface-700: 191 185 170; /* ⬅ #bfb9aa */
|
|
100
|
+
--color-surface-800: 153 148 136; /* ⬅ #999488 */
|
|
101
|
+
--color-surface-900: 125 121 111; /* ⬅ #7d796f */
|
|
102
|
+
/* text color | #3f312f */
|
|
103
|
+
--color-text-25: 237 234 234; /* ⬅ #e2e0e0 */
|
|
104
|
+
--color-text-50: 226 224 224; /* ⬅ #e2e0e0 */
|
|
105
|
+
--color-text-100: 217 214 213; /* ⬅ #d9d6d5 */
|
|
106
|
+
--color-text-200: 207 204 203; /* ⬅ #cfcccb */
|
|
107
|
+
--color-text-300: 178 173 172; /* ⬅ #b2adac */
|
|
108
|
+
--color-text-400: 121 111 109; /* ⬅ #796f6d */
|
|
109
|
+
--color-text-500: 63 49 47; /* ⬅ #3f312f */
|
|
110
|
+
--color-text-600: 57 44 42; /* ⬅ #392c2a */
|
|
111
|
+
--color-text-700: 47 37 35; /* ⬅ #2f2523 */
|
|
112
|
+
--color-text-800: 38 29 28; /* ⬅ #261d1c */
|
|
113
|
+
--color-text-900: 31 24 23; /* ⬅ #1f1817 */
|
|
114
|
+
}
|
package/dist/app.postcss
DELETED
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
@tailwind base;
|
|
2
|
-
@tailwind components;
|
|
3
|
-
@tailwind utilities;
|
|
4
|
-
@tailwind variants;
|
|
5
|
-
|
|
6
|
-
/* (all other styles below) */
|
|
7
|
-
|
|
8
|
-
/*place global styles here */
|
|
9
|
-
:root {
|
|
10
|
-
--default-card-max-width: calc(4rem + 4rem + 40rem);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
html, body {
|
|
14
|
-
@apply h-full overflow-hidden;
|
|
15
|
-
@apply bg-surface-400 dark:bg-surface-800;
|
|
16
|
-
background-color: transparent;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/* font color */
|
|
20
|
-
html, body {
|
|
21
|
-
color: rgb(var(--theme-font-color-base));
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.accordion-panel {
|
|
25
|
-
color: rgb(var(--color-primary-1000));
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.dark body,
|
|
29
|
-
.dark .variant-filled-primary,
|
|
30
|
-
.dark .turnip-button,
|
|
31
|
-
.dark .turnip-button > span,
|
|
32
|
-
.dark .accordion-panel,
|
|
33
|
-
.dark button.accordion-control,
|
|
34
|
-
.chip, .dark .chip {
|
|
35
|
-
color: rgb(var(--theme-font-color-dark));
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.turnip-button, .turnip-button > span, button.accordion-control {
|
|
39
|
-
font-weight: bold;
|
|
40
|
-
color: rgb(var(--theme-font-color-base));
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* todo: add some hues to the icon that should be in sync with primary and make them not pure darkness */
|
|
44
|
-
.turnip-button > img, .img-icon {
|
|
45
|
-
filter: grayscale(100%) brightness(0%) invert(25%);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.turnip-icon {
|
|
49
|
-
filter: brightness(0%) invert(90%);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.dark .turnip-button > img, .dark .img-icon {
|
|
53
|
-
filter: brightness(0%) invert(100%);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
button {
|
|
57
|
-
color: var(--color-text-50);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/*
|
|
61
|
-
|
|
62
|
-
//for reference left here
|
|
63
|
-
|
|
64
|
-
.bg-surface-custom-token {
|
|
65
|
-
@apply bg-surface-200 dark:bg-surface-700;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.app-bar {
|
|
69
|
-
@apply bg-surface-custom-token;
|
|
70
|
-
}
|
|
71
|
-
*/
|
|
72
|
-
|
|
73
|
-
.default-card {
|
|
74
|
-
padding: 2em;
|
|
75
|
-
text-align: start;
|
|
76
|
-
max-width: var(--default-card-max-width);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
h1,
|
|
80
|
-
h2,
|
|
81
|
-
p {
|
|
82
|
-
margin-bottom: 0.5em;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
ul {
|
|
86
|
-
list-style-type: circle;
|
|
87
|
-
padding-left: 1em;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.default-page-container {
|
|
91
|
-
@apply flex justify-center items-center;
|
|
92
|
-
margin-top: 4em;
|
|
93
|
-
margin-left: 1em;
|
|
94
|
-
margin-right: 1em;
|
|
95
|
-
flex-direction: column;
|
|
96
|
-
z-index: 0;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.footer-space {
|
|
100
|
-
width: 100%;
|
|
101
|
-
height: calc(var(--dialog-box-height) + 4em);
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
a.dialog-choice {
|
|
105
|
-
cursor: url("$pkg/assets/icons/chat-cursor.svg"), auto;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
a.external-link {
|
|
109
|
-
cursor: url("$pkg/assets/icons/external-link.svg"), auto;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
blockquote {
|
|
113
|
-
font-style: italic;
|
|
114
|
-
opacity: 60%;
|
|
115
|
-
font-weight: bold;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/* todo: add --tw-text-opacity division to add ambience based on bg better */
|
|
119
|
-
a {
|
|
120
|
-
text-decoration: underline;
|
|
121
|
-
color: rgb(var(--color-secondary-500));
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
a:hover, a:hover:visited {
|
|
125
|
-
color: rgb(var(--color-secondary-400));
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
a:visited {
|
|
129
|
-
color: rgb(var(--color-secondary-800));
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
a:active {
|
|
133
|
-
color: rgb(var(--color-secondary-350));
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.dark a {
|
|
137
|
-
text-decoration: underline;
|
|
138
|
-
color: rgb(var(--color-secondary-300));
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.dark a:hover, .dark a:hover:visited {
|
|
142
|
-
color: rgb(var(--color-secondary-200));
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.dark a:visited {
|
|
146
|
-
color: rgb(var(--color-secondary-350));
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.dark a:active {
|
|
150
|
-
color: rgb(var(--color-secondary-100));
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
/* region Accordion css for handling missing styles in package */
|
|
154
|
-
.accordion {
|
|
155
|
-
@apply variant-filled-primary rounded-md;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.accordion-control {
|
|
159
|
-
@apply hover:bg-surface-hover-token;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.accordion-item {
|
|
163
|
-
@apply variant-filled-primary rounded-md;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/* endregion Accordion css for handling missing styles in package */
|
|
167
|
-
|
|
168
|
-
:root {
|
|
169
|
-
--shadow-color: rgba(91, 79, 54, 0.5);
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
/* todo: adjust shadow for each component + change depending on dark mode or not */
|
|
173
|
-
.fab, #shell-header {
|
|
174
|
-
box-shadow: 3px 3px 3px var(--shadow-color);
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
#toast-progress {
|
|
178
|
-
position: relative;
|
|
179
|
-
top: 5px;
|
|
180
|
-
left: 6px;
|
|
181
|
-
width: calc(100% - 12px);
|
|
182
|
-
border-radius: 8px;
|
|
183
|
-
background: transparent;
|
|
184
|
-
height: 10px;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
#toast-progress::-moz-progress-bar {
|
|
188
|
-
background: rgba(var(--color-secondary-500));
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.dialog-box {
|
|
192
|
-
background-color: rgb(var(--color-surface-500) / 0.9);
|
|
193
|
-
position: fixed;
|
|
194
|
-
bottom: 0;
|
|
195
|
-
width: var(--dialog-box-width); /*75em + 4em padding*/
|
|
196
|
-
height: var(--dialog-box-height);
|
|
197
|
-
max-width: calc(100vw - ((var(--fab-margin) * 2) + 4em));
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.dark .dialog-box {
|
|
201
|
-
background-color: rgb(var(--color-surface-900) / 0.95);
|
|
202
|
-
--tw-ring-color: rgb(var(--color-text-400));
|
|
203
|
-
/*background-color: red;*/
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.dark .ares-logo {
|
|
207
|
-
filter: invert(100%);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.input {
|
|
211
|
-
@apply border-surface-800;
|
|
212
|
-
}
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
export let isSmallVersion = false;
|
|
3
|
-
export let email = "turnipxenon@gmail.com";
|
|
4
|
-
export let linkedinSlug = "turnip-xenon";
|
|
5
|
-
export let isSlot = false;
|
|
6
|
-
export let allowLinkedIn = true;
|
|
7
|
-
|
|
8
|
-
import { ItchLogoHotLink } from "../consts";
|
|
9
|
-
import { onMount } from "svelte";
|
|
10
|
-
import { scale } from "svelte/transition";
|
|
11
|
-
|
|
12
|
-
import MailIcon from "../assets/icons/mail.svg";
|
|
13
|
-
import GithubIcon from "../assets/icons/github-mark.svg";
|
|
14
|
-
import LinkedinIcon from "../assets/icons/linkedin.svg";
|
|
15
|
-
|
|
16
|
-
let shouldShowExtra = false;
|
|
17
|
-
const style = `
|
|
18
|
-
--preferred-justify-content: ${isSlot ? "flex-start" : "center"};
|
|
19
|
-
--preferred-overall-margin-bottom: ${isSlot ? "0" : "0.75lh"};
|
|
20
|
-
`;
|
|
21
|
-
|
|
22
|
-
onMount(() => {
|
|
23
|
-
shouldShowExtra = window.screen.availWidth >= 440;
|
|
24
|
-
});
|
|
25
|
-
</script>
|
|
26
|
-
|
|
27
|
-
<div class="socials" class:isSmall={isSmallVersion} style={style} data-nosnippet>
|
|
28
|
-
<button type="button" class="social-button turnip-button"
|
|
29
|
-
role="link"
|
|
30
|
-
title="https://github.com/TurnipXenon"
|
|
31
|
-
on:click={() => window.open("https://github.com/TurnipXenon")}>
|
|
32
|
-
<img src={GithubIcon} alt="github icon">
|
|
33
|
-
{#if (!isSmallVersion)}
|
|
34
|
-
<span>TurnipXenon</span>
|
|
35
|
-
{/if}
|
|
36
|
-
</button>
|
|
37
|
-
{#if allowLinkedIn}
|
|
38
|
-
<button type="button" class="social-button turnip-button"
|
|
39
|
-
role="link"
|
|
40
|
-
title={`https://www.linkedin.com/in/${linkedinSlug}/`}
|
|
41
|
-
on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
|
|
42
|
-
<img src={LinkedinIcon} alt="linkedin icon">
|
|
43
|
-
{#if (!isSmallVersion)}
|
|
44
|
-
<span>{linkedinSlug}</span>
|
|
45
|
-
{/if}
|
|
46
|
-
</button>
|
|
47
|
-
{/if}
|
|
48
|
-
<button type="button" class="social-button turnip-button"
|
|
49
|
-
role="link"
|
|
50
|
-
title={`mailto:${email}`}
|
|
51
|
-
on:click={() => window.open(`mailto:${email}`)}>
|
|
52
|
-
<img src={MailIcon} alt="mail icon" />
|
|
53
|
-
{#if (!isSmallVersion)}
|
|
54
|
-
<span>{email}</span>
|
|
55
|
-
{/if}
|
|
56
|
-
</button>
|
|
57
|
-
{#if (shouldShowExtra)}
|
|
58
|
-
<button type="button" class="social-button turnip-button"
|
|
59
|
-
role="link"
|
|
60
|
-
title="https://turnipxenon.itch.io/"
|
|
61
|
-
transition:scale
|
|
62
|
-
on:click={() => window.open("https://turnipxenon.itch.io/")}>
|
|
63
|
-
<img src={ItchLogoHotLink} alt="itch icon">
|
|
64
|
-
{#if (!isSmallVersion)}
|
|
65
|
-
<span>TurnipXenon</span>
|
|
66
|
-
{/if}
|
|
67
|
-
</button>
|
|
68
|
-
{/if}
|
|
69
|
-
</div>
|
|
70
|
-
|
|
71
|
-
<style>
|
|
72
|
-
:is(.dark .social-button) {
|
|
73
|
-
--tw-bg-opacity: 1;
|
|
74
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
75
|
-
color: rgb(var(--on-primary));
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.social-button:disabled {
|
|
79
|
-
cursor: not-allowed;
|
|
80
|
-
opacity: 0.5;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.social-button:disabled:hover {
|
|
84
|
-
--tw-brightness: brightness(1);
|
|
85
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.social-button:disabled:active {
|
|
89
|
-
--tw-scale-x: 1;
|
|
90
|
-
--tw-scale-y: 1;
|
|
91
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.social-button {
|
|
95
|
-
font-size: 1rem;
|
|
96
|
-
line-height: 1.5rem;
|
|
97
|
-
padding-left: 1.25rem;
|
|
98
|
-
padding-right: 1.25rem;
|
|
99
|
-
padding-top: 9px;
|
|
100
|
-
padding-bottom: 9px;
|
|
101
|
-
white-space: nowrap;
|
|
102
|
-
text-align: center;
|
|
103
|
-
display: inline-flex;
|
|
104
|
-
align-items: center;
|
|
105
|
-
justify-content: center;
|
|
106
|
-
transition-property: all;
|
|
107
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
108
|
-
transition-duration: 150ms;
|
|
109
|
-
border-radius: var(--theme-rounded-base);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.social-button > :not([hidden]) ~ :not([hidden]) {
|
|
113
|
-
--tw-space-x-reverse: 0;
|
|
114
|
-
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
115
|
-
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.social-button:hover {
|
|
119
|
-
--tw-brightness: brightness(1.15);
|
|
120
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.social-button:active {
|
|
124
|
-
--tw-scale-x: 95%;
|
|
125
|
-
--tw-scale-y: 95%;
|
|
126
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
127
|
-
--tw-brightness: brightness(.9);
|
|
128
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.social-button {
|
|
132
|
-
--tw-bg-opacity: 1;
|
|
133
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
134
|
-
color: rgb(var(--on-primary));
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
:is(.dark .social-button) {
|
|
138
|
-
--tw-bg-opacity: 1;
|
|
139
|
-
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
140
|
-
color: rgb(var(--on-primary));
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
button > img {
|
|
144
|
-
max-height: 1lh;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
button {
|
|
148
|
-
min-width: 0;
|
|
149
|
-
min-height: 0;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.socials {
|
|
153
|
-
display: flex;
|
|
154
|
-
flex-wrap: wrap;
|
|
155
|
-
justify-content: var(--preferred-justify-content);
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.socials > button {
|
|
159
|
-
margin: 0 0.5em var(--preferred-overall-margin-bottom);
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.socials.isSmall > button {
|
|
163
|
-
margin-left: 0.25em;
|
|
164
|
-
margin-right: 0.25em;
|
|
165
|
-
}
|
|
166
|
-
</style>
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/** @typedef {typeof __propDef.props} SocialSectionProps */
|
|
2
|
-
/** @typedef {typeof __propDef.events} SocialSectionEvents */
|
|
3
|
-
/** @typedef {typeof __propDef.slots} SocialSectionSlots */
|
|
4
|
-
export default class SocialSection extends SvelteComponent<{
|
|
5
|
-
isSmallVersion?: boolean | undefined;
|
|
6
|
-
email?: string | undefined;
|
|
7
|
-
linkedinSlug?: string | undefined;
|
|
8
|
-
isSlot?: boolean | undefined;
|
|
9
|
-
allowLinkedIn?: boolean | undefined;
|
|
10
|
-
}, {
|
|
11
|
-
[evt: string]: CustomEvent<any>;
|
|
12
|
-
}, {}> {
|
|
13
|
-
}
|
|
14
|
-
export type SocialSectionProps = typeof __propDef.props;
|
|
15
|
-
export type SocialSectionEvents = typeof __propDef.events;
|
|
16
|
-
export type SocialSectionSlots = typeof __propDef.slots;
|
|
17
|
-
import { SvelteComponent } from "svelte";
|
|
18
|
-
declare const __propDef: {
|
|
19
|
-
props: {
|
|
20
|
-
isSmallVersion?: boolean | undefined;
|
|
21
|
-
email?: string | undefined;
|
|
22
|
-
linkedinSlug?: string | undefined;
|
|
23
|
-
isSlot?: boolean | undefined;
|
|
24
|
-
allowLinkedIn?: boolean | undefined;
|
|
25
|
-
};
|
|
26
|
-
events: {
|
|
27
|
-
[evt: string]: CustomEvent<any>;
|
|
28
|
-
};
|
|
29
|
-
slots: {};
|
|
30
|
-
};
|
|
31
|
-
export {};
|
package/dist/postcss.d.ts
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
.default-grid-container-title-card {
|
|
2
|
-
max-width: calc(var(--default-card-max-width) + 32rem) !important;
|
|
3
|
-
width: 100%;
|
|
4
|
-
padding: 2rem !important;
|
|
5
|
-
text-align: center !important;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.default-grid-container {
|
|
9
|
-
width: 100%;
|
|
10
|
-
max-width: calc(var(--default-card-max-width) + 32rem);
|
|
11
|
-
padding-top: 4rem;
|
|
12
|
-
display: flex;
|
|
13
|
-
flex-wrap: wrap;
|
|
14
|
-
justify-content: center;
|
|
15
|
-
align-items: flex-start;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.default-grid-container > .card,
|
|
19
|
-
.default-grid-container > .lite-wrapper {
|
|
20
|
-
width: 22rem;
|
|
21
|
-
margin: clamp(0vw, 1vw, 1.5rem);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.default-grid-container div h3 {
|
|
25
|
-
margin: 0.5em;
|
|
26
|
-
text-align: center;
|
|
27
|
-
font-weight: bold;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.default-grid-container video {
|
|
31
|
-
padding: var(--theme-border-base);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.default-grid-container img {
|
|
35
|
-
padding: var(--theme-border-base);
|
|
36
|
-
width: 100%;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.links {
|
|
40
|
-
width: 100%;
|
|
41
|
-
display: flex;
|
|
42
|
-
flex-wrap: wrap;
|
|
43
|
-
justify-content: center;
|
|
44
|
-
align-items: center;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.card.tx-badge {
|
|
48
|
-
object-fit: scale-down;
|
|
49
|
-
padding: 0.5rem;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
img.tx-badge,
|
|
53
|
-
.card.tx-badge {
|
|
54
|
-
max-height: 5rem;
|
|
55
|
-
max-width: 6rem;
|
|
56
|
-
margin: 1rem;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.twitter-wrapper {
|
|
60
|
-
padding: 1rem;
|
|
61
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { SvelteComponent } from "svelte";
|
|
2
|
-
declare const __propDef: {
|
|
3
|
-
props: Record<string, never>;
|
|
4
|
-
events: {
|
|
5
|
-
[evt: string]: CustomEvent<any>;
|
|
6
|
-
};
|
|
7
|
-
slots: {};
|
|
8
|
-
};
|
|
9
|
-
export type ChumBucketProps = typeof __propDef.props;
|
|
10
|
-
export type ChumBucketEvents = typeof __propDef.events;
|
|
11
|
-
export type ChumBucketSlots = typeof __propDef.slots;
|
|
12
|
-
export default class ChumBucket extends SvelteComponent<ChumBucketProps, ChumBucketEvents, ChumBucketSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|