@propriety/court-calendar 0.0.0 → 0.0.2
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/biome.json +302 -302
- package/dist/court-calendar.css +1 -0
- package/dist/index.mjs +79025 -0
- package/dist/vite.svg +1 -0
- package/package.json +1 -1
- package/src/_components/CCalendar.tsx +18 -1
- package/src/_components/List/CalendarList.tsx +3 -0
- package/src/_components/Modal/CaseDetails/CaseDetails.tsx +0 -1
- package/src/_components/Modal/CaseDetails/EvidenceRow.tsx +0 -1
- package/src/_components/Modal/CreateEdit/CreateEditCase.tsx +1 -1
- package/src/_components/Modal/CreateEdit/ToggleableTextField.tsx +0 -1
- package/src/_components/Modal/Modal.tsx +4 -2
- package/src/_components/Modal/ModalActions.tsx +4 -2
- package/src/_components/Modal/View/DateDetails.tsx +17 -18
- package/src/_components/Shared/FirstSecondChairIcons.tsx +8 -5
- package/src/_components/Shared/MuniDropdown.tsx +6 -4
- package/src/_components/Toolbar/CaseFilter.tsx +2 -2
- package/src/_components/Toolbar/DateTypeFilter.tsx +63 -63
- package/src/_components/Toolbar/HearingTypeFilter.tsx +2 -2
- package/src/_components/Toolbar/Toolbar.tsx +4 -2
- package/src/_components/Toolbar/ViewFilter.tsx +1 -1
- package/src/helpers/formatter.ts +17 -16
- package/src/helpers/people.ts +19 -0
- package/vite.config.ts +28 -27
package/biome.json
CHANGED
|
@@ -1,302 +1,302 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
|
|
3
|
-
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
|
|
4
|
-
"files": { "ignoreUnknown": false },
|
|
5
|
-
"formatter": {
|
|
6
|
-
"enabled": true,
|
|
7
|
-
"indentStyle": "space",
|
|
8
|
-
"indentWidth": 4,
|
|
9
|
-
"lineWidth": 120
|
|
10
|
-
},
|
|
11
|
-
"linter": {
|
|
12
|
-
"enabled": true,
|
|
13
|
-
"rules": { "recommended": false },
|
|
14
|
-
"includes": ["**", "!dist"]
|
|
15
|
-
},
|
|
16
|
-
"javascript": {
|
|
17
|
-
"formatter": { "quoteStyle": "single", "jsxQuoteStyle": "single" }
|
|
18
|
-
},
|
|
19
|
-
"overrides": [
|
|
20
|
-
{
|
|
21
|
-
"includes": ["**/*.{ts,tsx}"],
|
|
22
|
-
"linter": {
|
|
23
|
-
"rules": {
|
|
24
|
-
"complexity": {
|
|
25
|
-
"noAdjacentSpacesInRegex": "error",
|
|
26
|
-
"noExtraBooleanCast": "error",
|
|
27
|
-
"noUselessCatch": "error",
|
|
28
|
-
"noUselessEscapeInRegex": "error"
|
|
29
|
-
},
|
|
30
|
-
"correctness": {
|
|
31
|
-
"noConstAssign": "error",
|
|
32
|
-
"noConstantCondition": "error",
|
|
33
|
-
"noEmptyCharacterClassInRegex": "error",
|
|
34
|
-
"noEmptyPattern": "error",
|
|
35
|
-
"noGlobalObjectCalls": "error",
|
|
36
|
-
"noInvalidBuiltinInstantiation": "error",
|
|
37
|
-
"noInvalidConstructorSuper": "error",
|
|
38
|
-
"noNonoctalDecimalEscape": "error",
|
|
39
|
-
"noPrecisionLoss": "error",
|
|
40
|
-
"noSelfAssign": "error",
|
|
41
|
-
"noSetterReturn": "error",
|
|
42
|
-
"noSwitchDeclarations": "error",
|
|
43
|
-
"noUndeclaredVariables": "error",
|
|
44
|
-
"noUnreachable": "error",
|
|
45
|
-
"noUnreachableSuper": "error",
|
|
46
|
-
"noUnsafeFinally": "error",
|
|
47
|
-
"noUnsafeOptionalChaining": "error",
|
|
48
|
-
"noUnusedLabels": "error",
|
|
49
|
-
"noUnusedPrivateClassMembers": "error",
|
|
50
|
-
"noUnusedVariables": "error",
|
|
51
|
-
"useIsNan": "error",
|
|
52
|
-
"useValidForDirection": "error",
|
|
53
|
-
"useValidTypeof": "error",
|
|
54
|
-
"useYield": "error"
|
|
55
|
-
},
|
|
56
|
-
"suspicious": {
|
|
57
|
-
"noAsyncPromiseExecutor": "error",
|
|
58
|
-
"noCatchAssign": "error",
|
|
59
|
-
"noClassAssign": "error",
|
|
60
|
-
"noCompareNegZero": "error",
|
|
61
|
-
"noConstantBinaryExpressions": "error",
|
|
62
|
-
"noControlCharactersInRegex": "error",
|
|
63
|
-
"noDebugger": "error",
|
|
64
|
-
"noDuplicateCase": "error",
|
|
65
|
-
"noDuplicateClassMembers": "error",
|
|
66
|
-
"noDuplicateElseIf": "error",
|
|
67
|
-
"noDuplicateObjectKeys": "error",
|
|
68
|
-
"noDuplicateParameters": "error",
|
|
69
|
-
"noEmptyBlockStatements": "error",
|
|
70
|
-
"noFallthroughSwitchClause": "error",
|
|
71
|
-
"noFunctionAssign": "error",
|
|
72
|
-
"noGlobalAssign": "error",
|
|
73
|
-
"noImportAssign": "error",
|
|
74
|
-
"noIrregularWhitespace": "error",
|
|
75
|
-
"noMisleadingCharacterClass": "error",
|
|
76
|
-
"noPrototypeBuiltins": "error",
|
|
77
|
-
"noRedeclare": "error",
|
|
78
|
-
"noShadowRestrictedNames": "error",
|
|
79
|
-
"noSparseArray": "error",
|
|
80
|
-
"noUnsafeNegation": "error",
|
|
81
|
-
"noUselessRegexBackrefs": "error",
|
|
82
|
-
"noWith": "error",
|
|
83
|
-
"useGetterReturn": "error"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
{ "includes": ["**/*.{ts,tsx}"], "javascript": { "globals": [] } },
|
|
89
|
-
{
|
|
90
|
-
"includes": [
|
|
91
|
-
"**/*.{ts,tsx}",
|
|
92
|
-
"**/*.ts",
|
|
93
|
-
"**/*.{ts,tsx}",
|
|
94
|
-
"**/*.tsx",
|
|
95
|
-
"**/*.{ts,tsx}",
|
|
96
|
-
"**/*.mts",
|
|
97
|
-
"**/*.{ts,tsx}",
|
|
98
|
-
"**/*.cts"
|
|
99
|
-
],
|
|
100
|
-
"linter": {
|
|
101
|
-
"rules": {
|
|
102
|
-
"complexity": { "noArguments": "error" },
|
|
103
|
-
"correctness": {
|
|
104
|
-
"noConstAssign": "off",
|
|
105
|
-
"noGlobalObjectCalls": "off",
|
|
106
|
-
"noInvalidBuiltinInstantiation": "off",
|
|
107
|
-
"noInvalidConstructorSuper": "off",
|
|
108
|
-
"noSetterReturn": "off",
|
|
109
|
-
"noUndeclaredVariables": "off",
|
|
110
|
-
"noUnreachable": "off",
|
|
111
|
-
"noUnreachableSuper": "off"
|
|
112
|
-
},
|
|
113
|
-
"style": { "useConst": "error" },
|
|
114
|
-
"suspicious": {
|
|
115
|
-
"noClassAssign": "off",
|
|
116
|
-
"noDuplicateClassMembers": "off",
|
|
117
|
-
"noDuplicateObjectKeys": "off",
|
|
118
|
-
"noDuplicateParameters": "off",
|
|
119
|
-
"noFunctionAssign": "off",
|
|
120
|
-
"noImportAssign": "off",
|
|
121
|
-
"noRedeclare": "off",
|
|
122
|
-
"noUnsafeNegation": "off",
|
|
123
|
-
"noVar": "error",
|
|
124
|
-
"noWith": "off",
|
|
125
|
-
"useGetterReturn": "off"
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"includes": ["**/*.{ts,tsx}"],
|
|
132
|
-
"linter": {
|
|
133
|
-
"rules": {
|
|
134
|
-
"complexity": { "noUselessTypeConstraint": "error" },
|
|
135
|
-
"correctness": { "noUnusedVariables": "error" },
|
|
136
|
-
"style": {
|
|
137
|
-
"noCommonJs": "error",
|
|
138
|
-
"noNamespace": "off",
|
|
139
|
-
"useArrayLiterals": "error",
|
|
140
|
-
"useAsConstAssertion": "error"
|
|
141
|
-
},
|
|
142
|
-
"suspicious": {
|
|
143
|
-
"noExplicitAny": "error",
|
|
144
|
-
"noExtraNonNullAssertion": "error",
|
|
145
|
-
"noMisleadingInstantiator": "error",
|
|
146
|
-
"noNonNullAssertedOptionalChain": "error",
|
|
147
|
-
"noUnsafeDeclarationMerging": "error",
|
|
148
|
-
"useNamespaceKeyword": "error"
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"includes": ["**/*.{ts,tsx}"],
|
|
155
|
-
"linter": {
|
|
156
|
-
"rules": {
|
|
157
|
-
"correctness": {
|
|
158
|
-
"useExhaustiveDependencies": "
|
|
159
|
-
"useHookAtTopLevel": "error"
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
{ "includes": ["**/*.{ts,tsx}"], "linter": { "rules": {} } },
|
|
165
|
-
{
|
|
166
|
-
"includes": ["**/*.{ts,tsx}"],
|
|
167
|
-
"javascript": {
|
|
168
|
-
"globals": [
|
|
169
|
-
"onanimationend",
|
|
170
|
-
"ongamepadconnected",
|
|
171
|
-
"onlostpointercapture",
|
|
172
|
-
"onanimationiteration",
|
|
173
|
-
"onkeyup",
|
|
174
|
-
"onmousedown",
|
|
175
|
-
"onanimationstart",
|
|
176
|
-
"onslotchange",
|
|
177
|
-
"onprogress",
|
|
178
|
-
"ontransitionstart",
|
|
179
|
-
"onpause",
|
|
180
|
-
"onended",
|
|
181
|
-
"onpointerover",
|
|
182
|
-
"onscrollend",
|
|
183
|
-
"onformdata",
|
|
184
|
-
"ontransitionrun",
|
|
185
|
-
"onanimationcancel",
|
|
186
|
-
"ondrag",
|
|
187
|
-
"onchange",
|
|
188
|
-
"onbeforeinstallprompt",
|
|
189
|
-
"onbeforexrselect",
|
|
190
|
-
"onmessage",
|
|
191
|
-
"ontransitioncancel",
|
|
192
|
-
"onpointerdown",
|
|
193
|
-
"onabort",
|
|
194
|
-
"onpointerout",
|
|
195
|
-
"oncuechange",
|
|
196
|
-
"ongotpointercapture",
|
|
197
|
-
"onscrollsnapchanging",
|
|
198
|
-
"onsearch",
|
|
199
|
-
"onsubmit",
|
|
200
|
-
"onstalled",
|
|
201
|
-
"onsuspend",
|
|
202
|
-
"onreset",
|
|
203
|
-
"onerror",
|
|
204
|
-
"onmouseenter",
|
|
205
|
-
"ongamepaddisconnected",
|
|
206
|
-
"onresize",
|
|
207
|
-
"ondragover",
|
|
208
|
-
"onbeforetoggle",
|
|
209
|
-
"onmouseover",
|
|
210
|
-
"onpagehide",
|
|
211
|
-
"onmousemove",
|
|
212
|
-
"onratechange",
|
|
213
|
-
"oncommand",
|
|
214
|
-
"onmessageerror",
|
|
215
|
-
"onwheel",
|
|
216
|
-
"ondevicemotion",
|
|
217
|
-
"onauxclick",
|
|
218
|
-
"ontransitionend",
|
|
219
|
-
"onpaste",
|
|
220
|
-
"onpageswap",
|
|
221
|
-
"ononline",
|
|
222
|
-
"ondeviceorientationabsolute",
|
|
223
|
-
"onkeydown",
|
|
224
|
-
"onclose",
|
|
225
|
-
"onselect",
|
|
226
|
-
"onpageshow",
|
|
227
|
-
"onpointercancel",
|
|
228
|
-
"onbeforematch",
|
|
229
|
-
"onpointerrawupdate",
|
|
230
|
-
"ondragleave",
|
|
231
|
-
"onscrollsnapchange",
|
|
232
|
-
"onseeked",
|
|
233
|
-
"onwaiting",
|
|
234
|
-
"onbeforeunload",
|
|
235
|
-
"onplaying",
|
|
236
|
-
"onvolumechange",
|
|
237
|
-
"ondragend",
|
|
238
|
-
"onstorage",
|
|
239
|
-
"onloadeddata",
|
|
240
|
-
"onfocus",
|
|
241
|
-
"onoffline",
|
|
242
|
-
"onplay",
|
|
243
|
-
"onafterprint",
|
|
244
|
-
"onclick",
|
|
245
|
-
"oncut",
|
|
246
|
-
"onmouseout",
|
|
247
|
-
"ondblclick",
|
|
248
|
-
"oncanplay",
|
|
249
|
-
"onloadstart",
|
|
250
|
-
"onappinstalled",
|
|
251
|
-
"onpointermove",
|
|
252
|
-
"ontoggle",
|
|
253
|
-
"oncontextmenu",
|
|
254
|
-
"onblur",
|
|
255
|
-
"oncancel",
|
|
256
|
-
"onbeforeprint",
|
|
257
|
-
"oncontextrestored",
|
|
258
|
-
"onloadedmetadata",
|
|
259
|
-
"onpointerup",
|
|
260
|
-
"onlanguagechange",
|
|
261
|
-
"oncopy",
|
|
262
|
-
"onselectstart",
|
|
263
|
-
"onscroll",
|
|
264
|
-
"onload",
|
|
265
|
-
"ondragstart",
|
|
266
|
-
"onbeforeinput",
|
|
267
|
-
"oncanplaythrough",
|
|
268
|
-
"oninput",
|
|
269
|
-
"oninvalid",
|
|
270
|
-
"ontimeupdate",
|
|
271
|
-
"ondurationchange",
|
|
272
|
-
"onselectionchange",
|
|
273
|
-
"onmouseup",
|
|
274
|
-
"location",
|
|
275
|
-
"onkeypress",
|
|
276
|
-
"onpointerleave",
|
|
277
|
-
"oncontextlost",
|
|
278
|
-
"ondrop",
|
|
279
|
-
"onsecuritypolicyviolation",
|
|
280
|
-
"oncontentvisibilityautostatechange",
|
|
281
|
-
"ondeviceorientation",
|
|
282
|
-
"onseeking",
|
|
283
|
-
"onrejectionhandled",
|
|
284
|
-
"onunload",
|
|
285
|
-
"onmouseleave",
|
|
286
|
-
"onhashchange",
|
|
287
|
-
"onpointerenter",
|
|
288
|
-
"onmousewheel",
|
|
289
|
-
"onunhandledrejection",
|
|
290
|
-
"ondragenter",
|
|
291
|
-
"onpopstate",
|
|
292
|
-
"onpagereveal",
|
|
293
|
-
"onemptied"
|
|
294
|
-
]
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
],
|
|
298
|
-
"assist": {
|
|
299
|
-
"enabled": true,
|
|
300
|
-
"actions": { "source": { "organizeImports": "off" } }
|
|
301
|
-
}
|
|
302
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
|
|
3
|
+
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
|
|
4
|
+
"files": { "ignoreUnknown": false },
|
|
5
|
+
"formatter": {
|
|
6
|
+
"enabled": true,
|
|
7
|
+
"indentStyle": "space",
|
|
8
|
+
"indentWidth": 4,
|
|
9
|
+
"lineWidth": 120
|
|
10
|
+
},
|
|
11
|
+
"linter": {
|
|
12
|
+
"enabled": true,
|
|
13
|
+
"rules": { "recommended": false },
|
|
14
|
+
"includes": ["**", "!dist"]
|
|
15
|
+
},
|
|
16
|
+
"javascript": {
|
|
17
|
+
"formatter": { "quoteStyle": "single", "jsxQuoteStyle": "single" }
|
|
18
|
+
},
|
|
19
|
+
"overrides": [
|
|
20
|
+
{
|
|
21
|
+
"includes": ["**/*.{ts,tsx}"],
|
|
22
|
+
"linter": {
|
|
23
|
+
"rules": {
|
|
24
|
+
"complexity": {
|
|
25
|
+
"noAdjacentSpacesInRegex": "error",
|
|
26
|
+
"noExtraBooleanCast": "error",
|
|
27
|
+
"noUselessCatch": "error",
|
|
28
|
+
"noUselessEscapeInRegex": "error"
|
|
29
|
+
},
|
|
30
|
+
"correctness": {
|
|
31
|
+
"noConstAssign": "error",
|
|
32
|
+
"noConstantCondition": "error",
|
|
33
|
+
"noEmptyCharacterClassInRegex": "error",
|
|
34
|
+
"noEmptyPattern": "error",
|
|
35
|
+
"noGlobalObjectCalls": "error",
|
|
36
|
+
"noInvalidBuiltinInstantiation": "error",
|
|
37
|
+
"noInvalidConstructorSuper": "error",
|
|
38
|
+
"noNonoctalDecimalEscape": "error",
|
|
39
|
+
"noPrecisionLoss": "error",
|
|
40
|
+
"noSelfAssign": "error",
|
|
41
|
+
"noSetterReturn": "error",
|
|
42
|
+
"noSwitchDeclarations": "error",
|
|
43
|
+
"noUndeclaredVariables": "error",
|
|
44
|
+
"noUnreachable": "error",
|
|
45
|
+
"noUnreachableSuper": "error",
|
|
46
|
+
"noUnsafeFinally": "error",
|
|
47
|
+
"noUnsafeOptionalChaining": "error",
|
|
48
|
+
"noUnusedLabels": "error",
|
|
49
|
+
"noUnusedPrivateClassMembers": "error",
|
|
50
|
+
"noUnusedVariables": "error",
|
|
51
|
+
"useIsNan": "error",
|
|
52
|
+
"useValidForDirection": "error",
|
|
53
|
+
"useValidTypeof": "error",
|
|
54
|
+
"useYield": "error"
|
|
55
|
+
},
|
|
56
|
+
"suspicious": {
|
|
57
|
+
"noAsyncPromiseExecutor": "error",
|
|
58
|
+
"noCatchAssign": "error",
|
|
59
|
+
"noClassAssign": "error",
|
|
60
|
+
"noCompareNegZero": "error",
|
|
61
|
+
"noConstantBinaryExpressions": "error",
|
|
62
|
+
"noControlCharactersInRegex": "error",
|
|
63
|
+
"noDebugger": "error",
|
|
64
|
+
"noDuplicateCase": "error",
|
|
65
|
+
"noDuplicateClassMembers": "error",
|
|
66
|
+
"noDuplicateElseIf": "error",
|
|
67
|
+
"noDuplicateObjectKeys": "error",
|
|
68
|
+
"noDuplicateParameters": "error",
|
|
69
|
+
"noEmptyBlockStatements": "error",
|
|
70
|
+
"noFallthroughSwitchClause": "error",
|
|
71
|
+
"noFunctionAssign": "error",
|
|
72
|
+
"noGlobalAssign": "error",
|
|
73
|
+
"noImportAssign": "error",
|
|
74
|
+
"noIrregularWhitespace": "error",
|
|
75
|
+
"noMisleadingCharacterClass": "error",
|
|
76
|
+
"noPrototypeBuiltins": "error",
|
|
77
|
+
"noRedeclare": "error",
|
|
78
|
+
"noShadowRestrictedNames": "error",
|
|
79
|
+
"noSparseArray": "error",
|
|
80
|
+
"noUnsafeNegation": "error",
|
|
81
|
+
"noUselessRegexBackrefs": "error",
|
|
82
|
+
"noWith": "error",
|
|
83
|
+
"useGetterReturn": "error"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{ "includes": ["**/*.{ts,tsx}"], "javascript": { "globals": [] } },
|
|
89
|
+
{
|
|
90
|
+
"includes": [
|
|
91
|
+
"**/*.{ts,tsx}",
|
|
92
|
+
"**/*.ts",
|
|
93
|
+
"**/*.{ts,tsx}",
|
|
94
|
+
"**/*.tsx",
|
|
95
|
+
"**/*.{ts,tsx}",
|
|
96
|
+
"**/*.mts",
|
|
97
|
+
"**/*.{ts,tsx}",
|
|
98
|
+
"**/*.cts"
|
|
99
|
+
],
|
|
100
|
+
"linter": {
|
|
101
|
+
"rules": {
|
|
102
|
+
"complexity": { "noArguments": "error" },
|
|
103
|
+
"correctness": {
|
|
104
|
+
"noConstAssign": "off",
|
|
105
|
+
"noGlobalObjectCalls": "off",
|
|
106
|
+
"noInvalidBuiltinInstantiation": "off",
|
|
107
|
+
"noInvalidConstructorSuper": "off",
|
|
108
|
+
"noSetterReturn": "off",
|
|
109
|
+
"noUndeclaredVariables": "off",
|
|
110
|
+
"noUnreachable": "off",
|
|
111
|
+
"noUnreachableSuper": "off"
|
|
112
|
+
},
|
|
113
|
+
"style": { "useConst": "error" },
|
|
114
|
+
"suspicious": {
|
|
115
|
+
"noClassAssign": "off",
|
|
116
|
+
"noDuplicateClassMembers": "off",
|
|
117
|
+
"noDuplicateObjectKeys": "off",
|
|
118
|
+
"noDuplicateParameters": "off",
|
|
119
|
+
"noFunctionAssign": "off",
|
|
120
|
+
"noImportAssign": "off",
|
|
121
|
+
"noRedeclare": "off",
|
|
122
|
+
"noUnsafeNegation": "off",
|
|
123
|
+
"noVar": "error",
|
|
124
|
+
"noWith": "off",
|
|
125
|
+
"useGetterReturn": "off"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"includes": ["**/*.{ts,tsx}"],
|
|
132
|
+
"linter": {
|
|
133
|
+
"rules": {
|
|
134
|
+
"complexity": { "noUselessTypeConstraint": "error" },
|
|
135
|
+
"correctness": { "noUnusedVariables": "error" },
|
|
136
|
+
"style": {
|
|
137
|
+
"noCommonJs": "error",
|
|
138
|
+
"noNamespace": "off",
|
|
139
|
+
"useArrayLiterals": "error",
|
|
140
|
+
"useAsConstAssertion": "error"
|
|
141
|
+
},
|
|
142
|
+
"suspicious": {
|
|
143
|
+
"noExplicitAny": "error",
|
|
144
|
+
"noExtraNonNullAssertion": "error",
|
|
145
|
+
"noMisleadingInstantiator": "error",
|
|
146
|
+
"noNonNullAssertedOptionalChain": "error",
|
|
147
|
+
"noUnsafeDeclarationMerging": "error",
|
|
148
|
+
"useNamespaceKeyword": "error"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"includes": ["**/*.{ts,tsx}"],
|
|
155
|
+
"linter": {
|
|
156
|
+
"rules": {
|
|
157
|
+
"correctness": {
|
|
158
|
+
"useExhaustiveDependencies": "info",
|
|
159
|
+
"useHookAtTopLevel": "error"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{ "includes": ["**/*.{ts,tsx}"], "linter": { "rules": {} } },
|
|
165
|
+
{
|
|
166
|
+
"includes": ["**/*.{ts,tsx}"],
|
|
167
|
+
"javascript": {
|
|
168
|
+
"globals": [
|
|
169
|
+
"onanimationend",
|
|
170
|
+
"ongamepadconnected",
|
|
171
|
+
"onlostpointercapture",
|
|
172
|
+
"onanimationiteration",
|
|
173
|
+
"onkeyup",
|
|
174
|
+
"onmousedown",
|
|
175
|
+
"onanimationstart",
|
|
176
|
+
"onslotchange",
|
|
177
|
+
"onprogress",
|
|
178
|
+
"ontransitionstart",
|
|
179
|
+
"onpause",
|
|
180
|
+
"onended",
|
|
181
|
+
"onpointerover",
|
|
182
|
+
"onscrollend",
|
|
183
|
+
"onformdata",
|
|
184
|
+
"ontransitionrun",
|
|
185
|
+
"onanimationcancel",
|
|
186
|
+
"ondrag",
|
|
187
|
+
"onchange",
|
|
188
|
+
"onbeforeinstallprompt",
|
|
189
|
+
"onbeforexrselect",
|
|
190
|
+
"onmessage",
|
|
191
|
+
"ontransitioncancel",
|
|
192
|
+
"onpointerdown",
|
|
193
|
+
"onabort",
|
|
194
|
+
"onpointerout",
|
|
195
|
+
"oncuechange",
|
|
196
|
+
"ongotpointercapture",
|
|
197
|
+
"onscrollsnapchanging",
|
|
198
|
+
"onsearch",
|
|
199
|
+
"onsubmit",
|
|
200
|
+
"onstalled",
|
|
201
|
+
"onsuspend",
|
|
202
|
+
"onreset",
|
|
203
|
+
"onerror",
|
|
204
|
+
"onmouseenter",
|
|
205
|
+
"ongamepaddisconnected",
|
|
206
|
+
"onresize",
|
|
207
|
+
"ondragover",
|
|
208
|
+
"onbeforetoggle",
|
|
209
|
+
"onmouseover",
|
|
210
|
+
"onpagehide",
|
|
211
|
+
"onmousemove",
|
|
212
|
+
"onratechange",
|
|
213
|
+
"oncommand",
|
|
214
|
+
"onmessageerror",
|
|
215
|
+
"onwheel",
|
|
216
|
+
"ondevicemotion",
|
|
217
|
+
"onauxclick",
|
|
218
|
+
"ontransitionend",
|
|
219
|
+
"onpaste",
|
|
220
|
+
"onpageswap",
|
|
221
|
+
"ononline",
|
|
222
|
+
"ondeviceorientationabsolute",
|
|
223
|
+
"onkeydown",
|
|
224
|
+
"onclose",
|
|
225
|
+
"onselect",
|
|
226
|
+
"onpageshow",
|
|
227
|
+
"onpointercancel",
|
|
228
|
+
"onbeforematch",
|
|
229
|
+
"onpointerrawupdate",
|
|
230
|
+
"ondragleave",
|
|
231
|
+
"onscrollsnapchange",
|
|
232
|
+
"onseeked",
|
|
233
|
+
"onwaiting",
|
|
234
|
+
"onbeforeunload",
|
|
235
|
+
"onplaying",
|
|
236
|
+
"onvolumechange",
|
|
237
|
+
"ondragend",
|
|
238
|
+
"onstorage",
|
|
239
|
+
"onloadeddata",
|
|
240
|
+
"onfocus",
|
|
241
|
+
"onoffline",
|
|
242
|
+
"onplay",
|
|
243
|
+
"onafterprint",
|
|
244
|
+
"onclick",
|
|
245
|
+
"oncut",
|
|
246
|
+
"onmouseout",
|
|
247
|
+
"ondblclick",
|
|
248
|
+
"oncanplay",
|
|
249
|
+
"onloadstart",
|
|
250
|
+
"onappinstalled",
|
|
251
|
+
"onpointermove",
|
|
252
|
+
"ontoggle",
|
|
253
|
+
"oncontextmenu",
|
|
254
|
+
"onblur",
|
|
255
|
+
"oncancel",
|
|
256
|
+
"onbeforeprint",
|
|
257
|
+
"oncontextrestored",
|
|
258
|
+
"onloadedmetadata",
|
|
259
|
+
"onpointerup",
|
|
260
|
+
"onlanguagechange",
|
|
261
|
+
"oncopy",
|
|
262
|
+
"onselectstart",
|
|
263
|
+
"onscroll",
|
|
264
|
+
"onload",
|
|
265
|
+
"ondragstart",
|
|
266
|
+
"onbeforeinput",
|
|
267
|
+
"oncanplaythrough",
|
|
268
|
+
"oninput",
|
|
269
|
+
"oninvalid",
|
|
270
|
+
"ontimeupdate",
|
|
271
|
+
"ondurationchange",
|
|
272
|
+
"onselectionchange",
|
|
273
|
+
"onmouseup",
|
|
274
|
+
"location",
|
|
275
|
+
"onkeypress",
|
|
276
|
+
"onpointerleave",
|
|
277
|
+
"oncontextlost",
|
|
278
|
+
"ondrop",
|
|
279
|
+
"onsecuritypolicyviolation",
|
|
280
|
+
"oncontentvisibilityautostatechange",
|
|
281
|
+
"ondeviceorientation",
|
|
282
|
+
"onseeking",
|
|
283
|
+
"onrejectionhandled",
|
|
284
|
+
"onunload",
|
|
285
|
+
"onmouseleave",
|
|
286
|
+
"onhashchange",
|
|
287
|
+
"onpointerenter",
|
|
288
|
+
"onmousewheel",
|
|
289
|
+
"onunhandledrejection",
|
|
290
|
+
"ondragenter",
|
|
291
|
+
"onpopstate",
|
|
292
|
+
"onpagereveal",
|
|
293
|
+
"onemptied"
|
|
294
|
+
]
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"assist": {
|
|
299
|
+
"enabled": true,
|
|
300
|
+
"actions": { "source": { "organizeImports": "off" } }
|
|
301
|
+
}
|
|
302
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.pop-in-ccalendar-event{opacity:0;transform:scale(.8);transform-origin:center center;animation:popInBounce .4s cubic-bezier(.34,1.56,.64,1) forwards;will-change:opacity,transform}@keyframes popInBounce{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}:root{--bg: #ffffff;--text: #212121;--fc-today-bg-color: #e3eefa;--fc-border-color: #cccccc;--fc-event-inperson-color: #1da39c;--fc-event-virtual-color: #216edf;--fc-event-unknown-color: #9e9e9e}[data-theme=dark]{--bg: #121212;--text: #ffffff;--fc-today-bg-color: #303e4a;--fc-border-color: #353333}.themed,.themed div:not(.MuiAvatar-root,.iconHolder,.evidence-row),.themed .MuiInputBase-root,.themed label,.themed .MuiSelect-select,.themed button:not(.MuiFab-root){background-color:var(--bg)!important;color:var(--text)!important;border-color:var(--fc-border-color)!important;scrollbar-color:var(--fc-border-color) var(--bg)}:is(.themed,.themed div:not(.MuiAvatar-root,.iconHolder,.evidence-row),.themed .MuiInputBase-root,.themed label,.themed .MuiSelect-select,.themed button:not(.MuiFab-root)):focus{outline-color:var(--fc-border-color)!important}.themed .MuiMenuItem-root,.themed .MuiMenuItem-root div:not(.MuiAvatar-root){background-color:transparent!important}.themed .MuiMenuItem-root:hover,.themed .MuiMenuItem-root:hover div:not(.MuiAvatar-root){background-color:var(--fc-today-bg-color)!important}.themed button.MuiToggleButton-root.Mui-selected{background-color:var(--fc-today-bg-color)!important}.themed button.MuiToggleButton-root:hover{background-color:var(--fc-border-color)!important}.themed .Mui-disabled *:not(input){color:var(--text)!important;cursor:not-allowed!important;opacity:.8!important}.themed::-webkit-scrollbar,.themed div::-webkit-scrollbar{width:8px;background:var(--bg)}.themed::-webkit-scrollbar-thumb,.themed div::-webkit-scrollbar-thumb{background:var(--fc-border-color);border-radius:4px}.themed::-webkit-scrollbar-track,.themed div::-webkit-scrollbar-track{background:var(--bg)}.themed input::placeholder,.themed .MuiFab-root>svg{color:var(--text)!important}.themed *{border-color:var(--fc-border-color)!important}.themed button:hover,.themed .MuiSelect-select:hover,.themed input:hover{background-color:var(--fc-today-bg-color)!important}.themed .MuiDataGrid-row:hover,.themed .MuiDataGrid-row:hover>*{background-color:var(--fc-today-bg-color)!important}.themed .MuiInputBase-root:hover .MuiAutocomplete-endAdornment,.themed .MuiInputBase-root:hover input{background-color:var(--fc-today-bg-color)!important}:is(.themed .MuiInputBase-root:hover .MuiAutocomplete-endAdornment,.themed .MuiInputBase-root:hover input) button,:is(.themed .MuiInputBase-root:hover .MuiAutocomplete-endAdornment,.themed .MuiInputBase-root:hover input) input{background-color:var(--fc-today-bg-color)!important}.themed .MuiFormControl-root:hover .MuiFormLabel-root{background-color:var(--fc-today-bg-color)!important}.month-day-cell{background-color:var(--bg);color:var(--text);cursor:pointer;height:120px;padding:3px!important;position:relative}.month-day-cell.fc-day-other{filter:brightness(.9)}.month-day-cell.fc-day-today{background-color:var(--fc-today-bg-color)}.month-day-cell:hover:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--fc-today-bg-color);opacity:.5;pointer-events:none}.day-header{background-color:var(--bg);color:var(--text);border-bottom:1px solid var(--fc-border-color)}.day-header a{padding:6px 4px!important;display:inline-block}.court-calendar th[role=presentation]{background-color:var(--bg)}.day-cell-allday{background-color:var(--bg)!important;color:var(--text)!important}.fc-daygrid-day-events{max-height:100px;min-height:100px;overflow-y:inherit;margin:0!important;overflow-y:auto;scrollbar-color:var(--fc-border-color) transparent}.fc-day-today .fc-daygrid-day-events{scrollbar-color:var(--fc-event-unknown-color) transparent}.court-calendar .fc-timegrid-slot-label{background-color:var(--bg);color:var(--text)}.court-calendar .fc-timegrid-axis{border-color:var(--fc-border-color);background-color:var(--bg);color:var(--text)}.court-calendar .fc-timegrid-divider{border-color:var(--fc-border-color);background-color:var(--bg)}.fc .fc-button,.fc-button{background-color:var(--bg);color:var(--text);border:1px solid var(--fc-border-color);font-family:Roboto,Helvetica,Arial,"sans-serif";padding:.25rem .5rem;cursor:pointer}:is(.fc .fc-button,.fc-button).fc-button-primary{background-color:var(--bg);color:var(--text);border:1px solid var(--fc-border-color)}:is(.fc .fc-button,.fc-button).fc-button-active.fc-button-primary{background-color:var(--fc-today-bg-color);color:var(--text)}:is(.fc .fc-button,.fc-button):hover{background-color:var(--fc-today-bg-color)}.fc.fc-media-screen{background-color:var(--bg);color:var(--text);font-family:Roboto,Helvetica,Arial,"sans-serif"}#event-tooltip{background-color:var(--text);color:var(--bg);border:1px solid var(--fc-border-color);border-radius:4px;padding:8px;box-shadow:0 4px 8px #00000026;z-index:9999;font-size:16px}.court-event{cursor:pointer;padding:4px 2px}.CCButton{background-color:var(--bg);color:var(--text);border:1px solid var(--fc-border-color);font-family:Roboto,Helvetica,Arial,"sans-serif";padding:8px 16px;margin-right:8px;border-radius:4px;cursor:pointer;-webkit-user-select:none;user-select:none}.CCButton:hover{background-color:var(--fc-today-bg-color)}.CCButton-Icon{min-width:35px;max-width:35px;min-height:35px;max-height:35px;border:none;padding:0;display:flex;align-items:center;justify-content:center}.CCDropdown-Button{width:75px}.CCDropdown-Menu{background-color:var(--bg);color:var(--text);border:1px solid var(--fc-border-color);font-family:Roboto,Helvetica,Arial,"sans-serif";box-shadow:0 2px 8px #00000026}.CCDropdown-Menu div{padding:8px 19px}.CCDropdown-Menu div:hover{background-color:var(--fc-today-bg-color)}.CCButton-Primary{background-color:#1976d2;color:#fff;border:none}.CCButton-Primary:hover{background-color:#1565c0}.CCButton-Error{background-color:#c15a5a;color:#fff;border:none}.CCButton-Error:hover{background-color:#953838}.modal-footer{background-color:var(--bg);color:var(--text);border-top:1px solid var(--fc-border-color)}.MuiInputBase-root.Mui-disabled{opacity:.5!important}.ccdisabled{pointer-events:none;opacity:.6}.switch-track{outline:2px solid var(--fc-border-color)}.fc-list-day-cushion{background-color:var(--bg)!important;color:var(--text)}.fc-list .fc-list-event:hover td{background-color:var(--fc-today-bg-color)!important}.fc-list .deadline-event .fc-list-event-dot{border:none;width:1em;height:1em;vertical-align:middle;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><circle cx="8" cy="8" r="8" fill="%2300c853"/><path d="M4 8l3 3 5-5" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;background-size:contain}.fc-list .deadline-event.inperson{--color: var(--fc-event-inperson-color)}.fc-list .deadline-event.virtual{--color: var(--fc-event-virtual-color)}.fc-list .deadline-event.unknown{--color: var(--fc-event-unknown-color)}.fc-view:not(.fc-list) .deadline-event{background-color:transparent!important;border-color:transparent!important;display:flex;align-items:center;overflow-x:hidden;position:relative}.fc-view:not(.fc-list) .deadline-event .fc-event-title{color:var(--text)!important}.fc-view:not(.fc-list) .deadline-event.inperson{--color: var(--fc-event-inperson-color)}.fc-view:not(.fc-list) .deadline-event.virtual{--color: var(--fc-event-virtual-color)}.fc-view:not(.fc-list) .deadline-event.unknown{--color: var(--fc-event-unknown-color)}.fc-view:not(.fc-list) .deadline-event.adjourned-no-date{--color: rgb(151, 11, 134) !important}.fc-view:not(.fc-list) .deadline-event.status-uploaded:before{content:"";display:inline-block;width:1em;height:1em;vertical-align:middle;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><circle cx="8" cy="8" r="8" fill="%2300c853"/><path d="M4 8l3 3 5-5" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;background-size:contain;margin:0 4px 0 0;top:.35em;border:none;position:absolute}.fc-view:not(.fc-list) .deadline-event.status-uploaded .fc-event-main{margin-left:1.5em!important}.fc-view:not(.fc-list) .deadline-event:not(.status-uploaded):before{content:"";display:inline-block;border-radius:calc(var(--fc-daygrid-event-dot-width) / 2);box-sizing:content-box;height:0px;margin:0 4px;width:0px;border:calc(var(--fc-daygrid-event-dot-width) / 2) solid var(--color)}.courtdate-event,.adjournment-event{border:1px solid var(--fc-border-color)!important}:is(.courtdate-event,.adjournment-event) .fc-event-title,:is(.courtdate-event,.adjournment-event) .fc-event-time{color:#fff!important}:is(.courtdate-event,.adjournment-event).inperson{background-color:var(--fc-event-inperson-color)!important;border-color:var(--fc-event-inperson-color)!important}:is(.courtdate-event,.adjournment-event).virtual{background-color:var(--fc-event-virtual-color)!important;border-color:var(--fc-event-virtual-color)!important}:is(.courtdate-event,.adjournment-event).unknown{background-color:var(--fc-event-unknown-color)!important;border-color:var(--fc-event-unknown-color)!important}:is(.courtdate-event,.adjournment-event) .fc-daygrid-event-dot,:is(.courtdate-event,.adjournment-event) .fc-list-event-dot{display:none}:is(.courtdate-event,.adjournment-event).adjourned-no-date{border-color:#970b86!important;background-color:#970b86!important}.ccalendar-list-row{cursor:pointer}.CCAvatarIcon:hover{cursor:pointer;transform:scale(1.1);box-shadow:0 4px 8px #0003}.modal-appear-animate{animation:modalFadeIn .35s cubic-bezier(.4,0,.2,1)}@keyframes modalFadeIn{0%{opacity:0;transform:scale(.96) translateY(24px)}to{opacity:1;transform:scale(1) translateY(0)}}
|