Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test #36

Merged
merged 30 commits into from
Nov 23, 2023
Merged

Test #36

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a55729a
10003 30001
TsukemonoGit Nov 20, 2023
f9a01f7
10003にも追加できる?
TsukemonoGit Nov 20, 2023
b6d9aee
10003にも追加できる? fix
TsukemonoGit Nov 20, 2023
9350622
10003にも追加できる? fix
TsukemonoGit Nov 20, 2023
a008765
10003にも追加できる? fix
TsukemonoGit Nov 20, 2023
1566683
移行画面~~~
TsukemonoGit Nov 20, 2023
8149f77
レイアウト謎
TsukemonoGit Nov 21, 2023
f98a1ad
ライブラリアプデ
TsukemonoGit Nov 21, 2023
a85986a
べつkindに上書きできる?
TsukemonoGit Nov 21, 2023
d45e042
べつkindに上書きできる? fix
TsukemonoGit Nov 21, 2023
b651b64
移行元のイベント削除できる?
TsukemonoGit Nov 21, 2023
3f2cacb
adapter-vercel
TsukemonoGit Nov 21, 2023
254079e
dark mode fix
TsukemonoGit Nov 21, 2023
d806364
リストの削除はから配列での上書き
TsukemonoGit Nov 21, 2023
6026416
プログレスバーの太さ
TsukemonoGit Nov 21, 2023
30ebd57
ばぐfix
TsukemonoGit Nov 21, 2023
23807ec
ばぐfix
TsukemonoGit Nov 21, 2023
848647c
ばぐfix 説明のとこのレイアウト
TsukemonoGit Nov 22, 2023
6e0d48d
アイコンの読み込み レイアウト調整
TsukemonoGit Nov 22, 2023
bd79cc5
アイコンの読み込み レイアウト調整 fix
TsukemonoGit Nov 22, 2023
bfb233e
title とかの編集と表示
TsukemonoGit Nov 22, 2023
13a39a5
title とかの編集と表示 fix
TsukemonoGit Nov 22, 2023
eb07fc8
title とかの編集と表示 fix
TsukemonoGit Nov 22, 2023
d59ca07
title とかの編集と表示 fix
TsukemonoGit Nov 22, 2023
900de87
title とかの編集と表示 fix
TsukemonoGit Nov 22, 2023
9af08e0
fix
TsukemonoGit Nov 23, 2023
2ad0f92
fix
TsukemonoGit Nov 23, 2023
48afb16
fix
TsukemonoGit Nov 23, 2023
15d57c3
fix
TsukemonoGit Nov 23, 2023
61182b6
fix
TsukemonoGit Nov 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier'
],
plugins: ['@typescript-eslint'],
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: { parser: '@typescript-eslint/parser' }
}
],
parserOptions: {
sourceType: 'module',ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
},
rules: {
'svelte/valid-compile': 'warn',
'@typescript-eslint/no-explicit-any': 'warn'
}
};
37 changes: 0 additions & 37 deletions .eslintrc.json

This file was deleted.

24 changes: 24 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"extends": [
"development"
],
"browserslist": [
"defaults"
],
"hints": {
"axe/text-alternatives": [
"default",
{
"document-title": "off"
}
],
"compat-api/html": [
"default",
{
"ignore": [
"meta[name=theme-color]"
]
}
]
}
}
104 changes: 104 additions & 0 deletions customTheme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';

export const customTheme: CustomThemeConfig = {
name: 'customTheme',
properties: {
'--theme-font-family-base': 'system-ui, sans-serif',
'--theme-font-family-heading': "'Quicksand', sans-serif",
'--theme-font-color-base': 'var(--color-surface-900)',
'--theme-font-color-dark': 'var(--color-surface-50)',
'--theme-rounded-base': '4px',
'--theme-rounded-container': '4px',
'--theme-border-base': '1px',
'--on-primary': '255 255 255',
'--on-secondary': '255 255 255',
'--on-tertiary': '255 255 255',
'--on-success': '0 0 0',
'--on-warning': '0 0 0',
'--on-error': '255 255 255',
'--on-surface': '255 255 255',
'--color-primary-50': '250 248 252',
'--color-primary-100': '242 238 247',
'--color-primary-200': '229 220 239',
'--color-primary-300': '209 192 226',
'--color-primary-400': '162 129 197',
'--color-primary-500': '116 74 161',
'--color-primary-600': '83 53 115',
'--color-primary-700': '60 39 84',
'--color-primary-800': '35 22 49',
'--color-primary-900': '18 11 24',
'--color-secondary-50': '218 234 251',
'--color-secondary-100': '205 227 250',
'--color-secondary-200': '193 220 249',
'--color-secondary-300': '155 199 245',
'--color-secondary-400': '81 156 237',
'--color-secondary-500': '6 114 229',
'--color-secondary-600': '5 103 206',
'--color-secondary-700': '5 86 172',
'--color-secondary-800': '4 68 137',
'--color-secondary-900': '3 56 112',
'--color-tertiary-50': '236 235 250',
'--color-tertiary-100': '229 228 248',
'--color-tertiary-200': '223 221 247',
'--color-tertiary-300': '204 201 241',
'--color-tertiary-400': '165 161 231',
'--color-tertiary-500': '127 120 221',
'--color-tertiary-600': '114 108 199',
'--color-tertiary-700': '95 90 166',
'--color-tertiary-800': '76 72 133',
'--color-tertiary-900': '62 59 108',
'--color-success-50': '234 246 237',
'--color-success-100': '227 243 231',
'--color-success-200': '220 241 225',
'--color-success-300': '199 232 206',
'--color-success-400': '156 214 170',
'--color-success-500': '114 197 133',
'--color-success-600': '103 177 120',
'--color-success-700': '86 148 100',
'--color-success-800': '68 118 80',
'--color-success-900': '56 97 65',
'--color-warning-50': '251 236 218',
'--color-warning-100': '250 229 206',
'--color-warning-200': '249 223 193',
'--color-warning-300': '245 204 156',
'--color-warning-400': '238 165 82',
'--color-warning-500': '231 127 8',
'--color-warning-600': '208 114 7',
'--color-warning-700': '173 95 6',
'--color-warning-800': '139 76 5',
'--color-warning-900': '113 62 4',
'--color-error-50': '238 219 222',
'--color-error-100': '233 207 211',
'--color-error-200': '227 195 200',
'--color-error-300': '210 159 167',
'--color-error-400': '177 87 100',
'--color-error-500': '143 15 34',
'--color-error-600': '129 14 31',
'--color-error-700': '107 11 26',
'--color-error-800': '86 9 20',
'--color-error-900': '70 7 17',
'--color-surface-50': '250 248 252',
'--color-surface-100': '242 238 247',
'--color-surface-200': '229 220 239',
'--color-surface-300': '209 192 226',
'--color-surface-400': '162 129 197',
'--color-surface-500': '116 74 161',
'--color-surface-600': '83 53 115',
'--color-surface-700': '60 39 84',
'--color-surface-800': '35 22 49',
'--color-surface-900': '18 11 24',
},
// properties_dark: {
// '--on-primary': '0 0 0',
// '--color-primary-50': '251 247 224',
// '--color-primary-100': '250 244 214',
// '--color-primary-200': '249 241 204',
// '--color-primary-300': '245 233 173',
// '--color-primary-400': '238 217 112',
// '--color-primary-500': '230 200 51',
// '--color-primary-600': '207 180 46',
// '--color-primary-700': '173 150 38',
// '--color-primary-800': '138 120 31',
// '--color-primary-900': '113 98 25',
// },
};
Loading