@furystack/shades-common-components 3.0.3 → 3.1.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.
Files changed (74) hide show
  1. package/dist/components/app-bar-link.js +39 -0
  2. package/dist/components/app-bar-link.js.map +1 -0
  3. package/dist/components/app-bar.js +1 -2
  4. package/dist/components/app-bar.js.map +1 -1
  5. package/dist/components/command-palette/command-palette-manager.js +0 -2
  6. package/dist/components/command-palette/command-palette-manager.js.map +1 -1
  7. package/dist/components/command-palette/index.js +57 -55
  8. package/dist/components/command-palette/index.js.map +1 -1
  9. package/dist/components/data-grid/body.js +6 -26
  10. package/dist/components/data-grid/body.js.map +1 -1
  11. package/dist/components/data-grid/data-grid-row.js +62 -0
  12. package/dist/components/data-grid/data-grid-row.js.map +1 -0
  13. package/dist/components/data-grid/data-grid.js +16 -17
  14. package/dist/components/data-grid/data-grid.js.map +1 -1
  15. package/dist/components/data-grid/footer.js +8 -6
  16. package/dist/components/data-grid/footer.js.map +1 -1
  17. package/dist/components/data-grid/header.js +1 -1
  18. package/dist/components/data-grid/header.js.map +1 -1
  19. package/dist/components/data-grid/index.js +1 -0
  20. package/dist/components/data-grid/index.js.map +1 -1
  21. package/dist/components/data-grid/selection-cell.js +32 -0
  22. package/dist/components/data-grid/selection-cell.js.map +1 -0
  23. package/dist/components/grid.js +1 -3
  24. package/dist/components/grid.js.map +1 -1
  25. package/dist/components/index.js +1 -0
  26. package/dist/components/index.js.map +1 -1
  27. package/dist/components/paper.js +1 -1
  28. package/dist/components/paper.js.map +1 -1
  29. package/dist/services/click-away-service.js +1 -1
  30. package/dist/services/click-away-service.js.map +1 -1
  31. package/dist/services/collection-service.js +80 -2
  32. package/dist/services/collection-service.js.map +1 -1
  33. package/package.json +7 -6
  34. package/src/components/app-bar-link.tsx +44 -0
  35. package/src/components/app-bar.tsx +1 -2
  36. package/src/components/command-palette/command-palette-manager.ts +0 -6
  37. package/src/components/command-palette/index.tsx +55 -53
  38. package/src/components/data-grid/body.tsx +15 -40
  39. package/src/components/data-grid/data-grid-row.tsx +88 -0
  40. package/src/components/data-grid/data-grid.tsx +27 -32
  41. package/src/components/data-grid/footer.tsx +22 -20
  42. package/src/components/data-grid/header.tsx +1 -1
  43. package/src/components/data-grid/index.tsx +1 -0
  44. package/src/components/data-grid/selection-cell.tsx +32 -0
  45. package/src/components/grid.tsx +1 -1
  46. package/src/components/index.ts +1 -0
  47. package/src/components/paper.tsx +1 -1
  48. package/src/services/click-away-service.ts +1 -1
  49. package/src/services/collection-service.ts +88 -2
  50. package/tsconfig.json +2 -1
  51. package/tsconfig.tsbuildinfo +1 -1
  52. package/types/components/animations.d.ts +2 -2
  53. package/types/components/animations.d.ts.map +1 -1
  54. package/types/components/app-bar-link.d.ts +3 -0
  55. package/types/components/app-bar-link.d.ts.map +1 -0
  56. package/types/components/app-bar.d.ts.map +1 -1
  57. package/types/components/command-palette/command-palette-manager.d.ts +0 -3
  58. package/types/components/command-palette/command-palette-manager.d.ts.map +1 -1
  59. package/types/components/command-palette/index.d.ts.map +1 -1
  60. package/types/components/data-grid/body.d.ts +0 -2
  61. package/types/components/data-grid/body.d.ts.map +1 -1
  62. package/types/components/data-grid/data-grid-row.d.ts +15 -0
  63. package/types/components/data-grid/data-grid-row.d.ts.map +1 -0
  64. package/types/components/data-grid/data-grid.d.ts +4 -9
  65. package/types/components/data-grid/data-grid.d.ts.map +1 -1
  66. package/types/components/data-grid/footer.d.ts.map +1 -1
  67. package/types/components/data-grid/index.d.ts +1 -0
  68. package/types/components/data-grid/index.d.ts.map +1 -1
  69. package/types/components/data-grid/selection-cell.d.ts +6 -0
  70. package/types/components/data-grid/selection-cell.d.ts.map +1 -0
  71. package/types/components/index.d.ts +1 -0
  72. package/types/components/index.d.ts.map +1 -1
  73. package/types/services/collection-service.d.ts +4 -1
  74. package/types/services/collection-service.d.ts.map +1 -1
@@ -0,0 +1,88 @@
1
+ import { ChildrenList, createComponent, createFragment, Shade } from '@furystack/shades'
2
+ import { CollectionService } from '../../services/collection-service'
3
+ import { DataRowCells } from './data-grid'
4
+
5
+ export interface DataGridRowProps<T> {
6
+ entry: T
7
+ columns: Array<keyof T>
8
+ service: CollectionService<T>
9
+ rowComponents?: DataRowCells<T>
10
+ }
11
+
12
+ export interface DataGridRowState<T> {
13
+ selection?: T[]
14
+ focus?: T
15
+ }
16
+
17
+ export const DataGridRow: <T>(props: DataGridRowProps<T>, children: ChildrenList) => JSX.Element<any, any> = Shade<
18
+ DataGridRowProps<any>,
19
+ DataGridRowState<any>
20
+ >({
21
+ getInitialState: ({ props }) => ({
22
+ focus: props.service.focusedEntry.getValue(),
23
+ selection: props.service.selection.getValue(),
24
+ }),
25
+ shadowDomName: 'shades-data-grid-row',
26
+ resources: ({ props, element }) => [
27
+ props.service.focusedEntry.subscribe((newEntry) => {
28
+ if (newEntry === props.entry) {
29
+ element.style.filter = 'brightness(1.5)'
30
+ element.style.fontWeight = 'bolder'
31
+
32
+ const headerHeight = element.closest('table')?.querySelector('th')?.getBoundingClientRect().height || 42
33
+
34
+ const parent = element.closest('.shade-grid-wrapper') as HTMLElement
35
+ const maxTop = element.offsetTop - headerHeight
36
+ const currentTop = parent.scrollTop
37
+ if (maxTop < currentTop) {
38
+ parent.scrollTo({ top: maxTop, behavior: 'smooth' })
39
+ }
40
+
41
+ const footerHeight =
42
+ element.closest('shade-data-grid')?.querySelector('shade-data-grid-footer')?.getBoundingClientRect().height ||
43
+ 42
44
+ const visibleMaxTop = parent.clientHeight - footerHeight // parent.getBoundingClientRect().height - footerHeight - headerHeight
45
+ const desiredMaxTop = element.offsetTop + element.clientHeight
46
+ if (desiredMaxTop > visibleMaxTop) {
47
+ parent.scrollTo({ top: desiredMaxTop - visibleMaxTop, behavior: 'smooth' })
48
+ }
49
+
50
+ // ;(element as any).scrollIntoView({ inline: 'nearest', block: 'nearest', behavior: 'smooth' })
51
+ } else {
52
+ element.style.filter = 'brightness(1)'
53
+ element.style.fontWeight = 'inherit'
54
+ }
55
+ }),
56
+ props.service.selection.subscribe((selection) => {
57
+ if (selection.includes(props.entry)) {
58
+ element.style.background = 'rgba(128,128,128,0.1)'
59
+ } else {
60
+ element.style.background = 'none'
61
+ }
62
+ }),
63
+ ],
64
+
65
+ render: ({ getState, props, element }) => {
66
+ const state = getState()
67
+ const { entry, rowComponents, columns } = props
68
+
69
+ element.style.display = 'table-row'
70
+ element.style.cursor = 'default'
71
+ element.style.userSelect = 'none'
72
+
73
+ element.onclick = () => {
74
+ props.service.focusedEntry.setValue(props.entry)
75
+ }
76
+ return (
77
+ <>
78
+ {columns.map((column) => (
79
+ <td style={{ padding: '0.5em' }}>
80
+ {rowComponents?.[column]?.(entry, state) || rowComponents?.default?.(entry, state) || (
81
+ <span>{entry[column]}</span>
82
+ )}
83
+ </td>
84
+ ))}
85
+ </>
86
+ )
87
+ },
88
+ })
@@ -1,17 +1,17 @@
1
1
  import { ChildrenList, createComponent, Shade } from '@furystack/shades'
2
2
  import { CollectionService } from '../../services/collection-service'
3
3
  import { GridProps } from '../grid'
4
- import { colors } from '../styles'
5
4
  import { DataGridHeader } from './header'
6
- import { DataGridBody, DataGridBodyState } from './body'
5
+ import { DataGridBody } from './body'
7
6
  import { DataGridFooter } from './footer'
8
- import { ThemeProviderService } from '../../services'
7
+ import { ClickAwayService, ThemeProviderService } from '../../services'
8
+ import { DataGridRowState } from './data-grid-row'
9
9
 
10
10
  export type DataHeaderCells<T> = {
11
- [TKey in keyof T | 'default']?: (name: keyof T, state: DataGridState) => JSX.Element
11
+ [TKey in keyof T | 'default']?: (name: keyof T) => JSX.Element
12
12
  }
13
13
  export type DataRowCells<T> = {
14
- [TKey in keyof T | 'default']?: (element: T, state: DataGridBodyState<T>) => JSX.Element
14
+ [TKey in keyof T | 'default']?: (element: T, state: DataGridRowState<T>) => JSX.Element
15
15
  }
16
16
 
17
17
  export interface DataGridProps<T> {
@@ -20,25 +20,16 @@ export interface DataGridProps<T> {
20
20
  service: CollectionService<T>
21
21
  headerComponents: DataHeaderCells<T>
22
22
  rowComponents: DataRowCells<T>
23
- onFocusChange?: (entry?: T) => void
24
- onSelectionChange?: (selection: T[]) => void
25
- onDoubleClick?: (entry: T) => void
26
- }
27
-
28
- export interface DataGridState {
29
- error?: unknown
23
+ autofocus?: boolean
30
24
  }
31
25
 
32
26
  export const DataGrid: <T>(props: DataGridProps<T>, children: ChildrenList) => JSX.Element<any, any> = Shade<
33
- DataGridProps<any>,
34
- DataGridState
27
+ DataGridProps<any>
35
28
  >({
36
29
  shadowDomName: 'shade-data-grid',
37
- getInitialState: () => ({}),
38
- constructed: ({ props, updateState, injector, element }) => {
30
+ resources: ({ injector, element, props }) => {
39
31
  const tp = injector.getInstance(ThemeProviderService)
40
- const subscriptions = [
41
- props.service.error.subscribe((error) => updateState({ error })),
32
+ return [
42
33
  tp.theme.subscribe((t) => {
43
34
  const headers = element.querySelectorAll('th')
44
35
  const { r, g, b } = tp.getRgbFromColorString(t.background.paper)
@@ -47,18 +38,21 @@ export const DataGrid: <T>(props: DataGridProps<T>, children: ChildrenList) => J
47
38
  header.style.backgroundColor = `rgba(${r}, ${g}, ${b}, 0.3)`
48
39
  })
49
40
  }),
50
- props.service.focus.subscribe((f) => props.onFocusChange?.(f)),
51
- props.service.selection.subscribe((f) => props.onSelectionChange?.(f)),
41
+ new ClickAwayService(element, () => {
42
+ props.service.hasFocus.setValue(false)
43
+ }),
52
44
  ]
53
- return () => Promise.all(subscriptions.map((s) => s.dispose()))
54
45
  },
55
- render: ({ props, getState, injector }) => {
46
+ constructed: ({ props }) => {
47
+ const listener = (ev: KeyboardEvent) => props.service.handleKeyDown(ev)
48
+
49
+ window.addEventListener('keydown', listener)
50
+
51
+ return () => window.removeEventListener('keydown', listener)
52
+ },
53
+ render: ({ props, injector }) => {
56
54
  const tp = injector.getInstance(ThemeProviderService)
57
55
  const theme = tp.theme.getValue()
58
- const state = getState()
59
- if (state.error) {
60
- return <div style={{ color: colors.error.main }}>{JSON.stringify(state.error)}</div>
61
- }
62
56
 
63
57
  const { r, g, b } = tp.getRgbFromColorString(theme.background.paper)
64
58
  const headerStyle: Partial<CSSStyleDeclaration> = {
@@ -86,17 +80,19 @@ export const DataGrid: <T>(props: DataGridProps<T>, children: ChildrenList) => J
86
80
  overflow: 'auto',
87
81
  zIndex: '1',
88
82
  }}
83
+ onclick={() => {
84
+ props.service.hasFocus.setValue(true)
85
+ }}
89
86
  >
90
- <table style={{ width: '100%', height: 'calc(100% - 4em)', position: 'relative' }}>
87
+ <table style={{ width: '100%', maxHeight: 'calc(100% - 4em)', position: 'relative' }}>
91
88
  <thead>
92
89
  <tr>
93
90
  {props.columns.map((column: any) => {
94
91
  return (
95
92
  <th style={headerStyle}>
96
- {props.headerComponents?.[column]?.(column, state) ||
97
- props.headerComponents?.default?.(column, state) || (
98
- <DataGridHeader<any, typeof column> field={column} collectionService={props.service} />
99
- )}
93
+ {props.headerComponents?.[column]?.(column) || props.headerComponents?.default?.(column) || (
94
+ <DataGridHeader<any, typeof column> field={column} collectionService={props.service} />
95
+ )}
100
96
  </th>
101
97
  )
102
98
  })}
@@ -107,7 +103,6 @@ export const DataGrid: <T>(props: DataGridProps<T>, children: ChildrenList) => J
107
103
  service={props.service}
108
104
  rowComponents={props.rowComponents}
109
105
  style={props.styles?.cell}
110
- onDoubleClick={props.onDoubleClick}
111
106
  />
112
107
  </table>
113
108
  <DataGridFooter service={props.service} />
@@ -2,7 +2,7 @@ import { Shade, createComponent } from '@furystack/shades'
2
2
  import { ThemeProviderService } from '../../services'
3
3
  import { CollectionService, CollectionData } from '../../services/collection-service'
4
4
 
5
- export const dataGridItemsPerPage = [10, 20, 25, 50, 100]
5
+ export const dataGridItemsPerPage = [10, 20, 25, 50, 100, Infinity]
6
6
 
7
7
  export const DataGridFooter = Shade<{ service: CollectionService<any> }, { data: CollectionData<any> }>({
8
8
  shadowDomName: 'shade-data-grid-footer',
@@ -26,13 +26,14 @@ export const DataGridFooter = Shade<{ service: CollectionService<any> }, { data:
26
26
  const state = getState()
27
27
  const currentQuerySettings = props.service.querySettings.getValue()
28
28
  const currentPage = Math.ceil(currentQuerySettings.skip || 0) / (currentQuerySettings.top || 1)
29
+ const currentEntriesPerPage = currentQuerySettings.top || Infinity
29
30
  const theme = injector.getInstance(ThemeProviderService).theme.getValue()
30
31
 
31
32
  return (
32
33
  <div
33
34
  className="pager"
34
35
  style={{
35
- background: theme.background.paper,
36
+ backdropFilter: 'blur(10px)',
36
37
  color: theme.text.secondary,
37
38
  position: 'sticky',
38
39
  bottom: '0',
@@ -42,27 +43,28 @@ export const DataGridFooter = Shade<{ service: CollectionService<any> }, { data:
42
43
  alignItems: 'center',
43
44
  }}
44
45
  >
45
- <div>
46
- Goto page
47
- <select
48
- style={{ margin: '0 1em' }}
49
- onchange={(ev) => {
50
- const value = parseInt((ev.target as any).value, 10)
51
- const currentQuery = props.service.querySettings.getValue()
52
- props.service.querySettings.setValue({ ...currentQuery, skip: (currentQuery.top || 0) * value })
53
- }}
54
- >
55
- {[...new Array(Math.ceil(state.data.count / (props.service.querySettings.getValue().top || Infinity)))].map(
56
- (_val, index) => (
46
+ {currentEntriesPerPage !== Infinity && (
47
+ <div>
48
+ Goto page
49
+ <select
50
+ style={{ margin: '0 1em' }}
51
+ onchange={(ev) => {
52
+ const value = parseInt((ev.target as any).value, 10)
53
+ const currentQuery = props.service.querySettings.getValue()
54
+ props.service.querySettings.setValue({ ...currentQuery, skip: (currentQuery.top || 0) * value })
55
+ }}
56
+ >
57
+ {[
58
+ ...new Array(Math.ceil(state.data.count / (props.service.querySettings.getValue().top || Infinity))),
59
+ ].map((_val, index) => (
57
60
  <option value={index.toString()} selected={currentPage === index}>
58
61
  {(index + 1).toString()}
59
62
  </option>
60
- ),
61
- )}
62
- </select>
63
- </div>
63
+ ))}
64
+ </select>
65
+ </div>
66
+ )}
64
67
  <div>
65
- {' '}
66
68
  Show
67
69
  <select
68
70
  style={{ margin: '0 1em' }}
@@ -76,7 +78,7 @@ export const DataGridFooter = Shade<{ service: CollectionService<any> }, { data:
76
78
  }}
77
79
  >
78
80
  {dataGridItemsPerPage.map((no) => (
79
- <option value={no.toString()} selected={no === currentQuerySettings.top}>
81
+ <option value={no.toString()} selected={no === currentEntriesPerPage}>
80
82
  {no.toString()}
81
83
  </option>
82
84
  ))}
@@ -29,7 +29,7 @@ export const DataGridHeader: <T, K extends keyof T>(
29
29
  ...currentSettings,
30
30
  filter: {
31
31
  ...currentSettings.filter,
32
- [props.field]: value ? { $regex: value } : undefined,
32
+ [props.field]: { $regex: value },
33
33
  },
34
34
  }
35
35
  props.collectionService.querySettings.setValue(newSettings)
@@ -1 +1,2 @@
1
1
  export * from './data-grid'
2
+ export * from './selection-cell'
@@ -0,0 +1,32 @@
1
+ import { createComponent, Shade } from '@furystack/shades'
2
+ import { CollectionService } from '../../services'
3
+
4
+ export const SelectionCell = Shade<{ entry: any; service: CollectionService<any> }>({
5
+ shadowDomName: 'shades-data-grid-selection-cell',
6
+ resources: ({ props, element }) => [
7
+ props.service.selection.subscribe((selection) => {
8
+ if (selection.includes(props.entry)) {
9
+ ;(element.firstChild as HTMLInputElement).checked = true
10
+ } else {
11
+ ;(element.firstChild as HTMLInputElement).checked = false
12
+ }
13
+ }),
14
+ ],
15
+ render: ({ props }) => {
16
+ return (
17
+ <input
18
+ onchange={(ev) => {
19
+ if ((ev.target as HTMLInputElement).checked) {
20
+ props.service.selection.setValue([...props.service.selection.getValue(), props.entry])
21
+ } else {
22
+ props.service.selection.setValue([
23
+ ...props.service.selection.getValue().filter((entry) => entry !== props.entry),
24
+ ])
25
+ }
26
+ }}
27
+ type="checkbox"
28
+ checked={props.service.selection.getValue().includes(props.entry) ? true : false}
29
+ />
30
+ )
31
+ },
32
+ })
@@ -64,7 +64,7 @@ export const Grid: <T>(props: GridProps<T>, children: ChildrenList) => JSX.Eleme
64
64
  <th style={headerStyle}>
65
65
  {props.headerComponents?.[column]?.(column) || props.headerComponents?.default?.(column) || (
66
66
  <span>{column}</span>
67
- )}{' '}
67
+ )}
68
68
  </th>
69
69
  )
70
70
  })}
@@ -1,5 +1,6 @@
1
1
  export * from './animations'
2
2
  export * from './app-bar'
3
+ export * from './app-bar-link'
3
4
  export * from './autocomplete'
4
5
  export * from './avatar'
5
6
  export * from './button'
@@ -24,7 +24,7 @@ export const Paper = Shade<PartialElement<HTMLDivElement> & { elevation?: 1 | 2
24
24
  color: themeProvider.theme.getValue().text.secondary,
25
25
  margin: '8px',
26
26
  padding: '6px 16px',
27
- ...(props ? props.style : {}),
27
+ ...props?.style,
28
28
  }}
29
29
  >
30
30
  {children}
@@ -1,6 +1,6 @@
1
1
  export class ClickAwayService<T extends HTMLElement> {
2
2
  public dispose() {
3
- window.removeEventListener('click', this.clickOutsideListener)
3
+ window.removeEventListener('click', this.clickOutsideListener, true)
4
4
  }
5
5
 
6
6
  public clickOutsideListener = ((ev: MouseEvent) => {
@@ -31,19 +31,105 @@ export class CollectionService<T> implements Disposable {
31
31
 
32
32
  public querySettings: ObservableValue<FindOptions<T, Array<keyof T>>>
33
33
 
34
- public focus = new ObservableValue<T | undefined>()
34
+ public focusedEntry = new ObservableValue<T | undefined>()
35
35
 
36
36
  public selection = new ObservableValue<T[]>([])
37
37
 
38
+ public searchTerm = new ObservableValue('')
39
+
40
+ public hasFocus = new ObservableValue(false)
41
+
42
+ public handleKeyDown(ev: KeyboardEvent) {
43
+ const { entries } = this.data.getValue()
44
+ const hasFocus = this.hasFocus.getValue()
45
+ const selectedEntries = this.selection.getValue()
46
+ const focusedEntry = this.focusedEntry.getValue()
47
+ const searchTerm = this.searchTerm.getValue()
48
+
49
+ switch (ev.key) {
50
+ case ' ':
51
+ ev.preventDefault()
52
+ focusedEntry &&
53
+ this.selection.setValue(
54
+ selectedEntries.includes(focusedEntry)
55
+ ? selectedEntries.filter((e) => e !== focusedEntry)
56
+ : [...selectedEntries, focusedEntry],
57
+ )
58
+ break
59
+ case '*':
60
+ this.selection.setValue(entries.filter((e) => !selectedEntries.includes(e)))
61
+ break
62
+ case '+':
63
+ this.selection.setValue(entries)
64
+ break
65
+ case '-':
66
+ this.selection.setValue([])
67
+ break
68
+ case 'Insert':
69
+ focusedEntry &&
70
+ (this.selection.getValue().includes(focusedEntry)
71
+ ? this.selection.setValue([...this.selection.getValue().filter((e) => e !== focusedEntry)])
72
+ : this.selection.setValue([...this.selection.getValue(), focusedEntry]))
73
+ this.focusedEntry.setValue(entries[entries.findIndex((e) => e === this.focusedEntry.getValue()) + 1])
74
+
75
+ break
76
+ case 'ArrowUp':
77
+ ev.preventDefault()
78
+ this.focusedEntry.setValue(entries[Math.max(0, entries.findIndex((e) => e === focusedEntry) - 1)])
79
+ break
80
+ case 'ArrowDown':
81
+ ev.preventDefault()
82
+ this.focusedEntry.setValue(
83
+ entries[Math.min(entries.length - 1, entries.findIndex((e) => e === focusedEntry) + 1)],
84
+ )
85
+ break
86
+ case 'Home': {
87
+ this.focusedEntry.setValue(entries[0])
88
+ break
89
+ }
90
+ case 'End': {
91
+ this.focusedEntry.setValue(entries[entries.length - 1])
92
+ break
93
+ }
94
+ case 'Enter': {
95
+ // this.activate(focusedEntry)
96
+ break
97
+ }
98
+ case 'Backspace': {
99
+ // this.currentWorkDir.goUp()
100
+ break
101
+ }
102
+ case 'Tab': {
103
+ this.hasFocus.setValue(!hasFocus)
104
+ break
105
+ }
106
+ case 'Escape': {
107
+ this.searchTerm.setValue('')
108
+ this.selection.setValue([])
109
+ break
110
+ }
111
+ default:
112
+ if (ev.key.length === 1 && new RegExp(/[a-zA-z0-9]/).test(ev.key)) {
113
+ const newSearchExpression = searchTerm + ev.key
114
+ // TODO: implement search
115
+ // const newFocusedEntry = entries.find((e) => e.name.startsWith(newSearchExpression))
116
+ // this.focus.setValue(newFocusedEntry)
117
+ this.searchTerm.setValue(newSearchExpression)
118
+ } else {
119
+ console.log(`Handler for '${ev.key}' not registered`)
120
+ }
121
+ }
122
+ }
123
+
38
124
  constructor(fetch: EntryLoader<T>, defaultSettings: FindOptions<T, Array<keyof T>>) {
39
125
  this.querySettings = new ObservableValue<FindOptions<T, Array<keyof T>>>(defaultSettings)
40
126
  this.getEntries = debounce(async (options) => {
41
127
  await this.loadLock.acquire()
42
128
  try {
129
+ this.error.setValue(undefined)
43
130
  this.isLoading.setValue(true)
44
131
  const result = await fetch(options)
45
132
  this.data.setValue(result)
46
- this.error.setValue(undefined)
47
133
  return result
48
134
  } catch (error) {
49
135
  this.error.setValue(error)
package/tsconfig.json CHANGED
@@ -6,7 +6,8 @@
6
6
  "composite": true,
7
7
  "rootDir": "./src",
8
8
  "jsx": "react",
9
- "jsxFactory": "createComponent"
9
+ "jsxFactory": "createComponent",
10
+ "jsxFragmentFactory": "createFragment"
10
11
  },
11
12
  "include": ["src"],
12
13
  "references": [{ "path": "../shades" }]
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es5.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.dom.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.scripthost.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../.yarn/cache/typescript-patch-044c37f428-1cb434fbc6.zip/node_modules/typescript/lib/lib.es2019.full.d.ts","../../.yarn/cache/tslib-npm-2.4.0-9cb6dc5030-8c4aa6a3c5.zip/node_modules/tslib/tslib.d.ts","./src/utils/promisify-animation.ts","./src/components/animations.ts","../utils/types/disposable.d.ts","../utils/types/deep-merge.d.ts","../utils/types/debounce.d.ts","../utils/types/value-observer.d.ts","../utils/types/observable-value.d.ts","../utils/types/path-helper.d.ts","../utils/types/sleep-async.d.ts","../utils/types/sort-by.d.ts","../utils/types/trace.d.ts","../utils/types/tuple.d.ts","../utils/types/index.d.ts","../shades/types/services/location-service.d.ts","../shades/types/services/screen-service.d.ts","../shades/types/services/index.d.ts","../inject/types/models/constructable.d.ts","../inject/types/reflect-metadata-polyfill.d.ts","../inject/types/injectable.d.ts","../inject/types/injector.d.ts","../inject/types/models/index.d.ts","../inject/types/index.d.ts","../shades/types/models/children-list.d.ts","../shades/types/models/partial-element.d.ts","../shades/types/models/render-options.d.ts","../shades/types/models/selection-state.d.ts","../shades/types/models/shade-component.d.ts","../shades/types/models/index.d.ts","../shades/types/jsx.d.ts","../shades/types/shade-component.d.ts","../shades/types/shade.d.ts","../shades/types/components/lazy-load.d.ts","../../.yarn/cache/path-to-regexp-npm-6.2.0-efbac3c1ff-a6aca74d2d.zip/node_modules/path-to-regexp/dist/index.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/Semaphore.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/Lock.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/index.d.ts","../shades/types/components/router.d.ts","../shades/types/components/route-link.d.ts","../shades/types/components/index.d.ts","../shades/types/initialize.d.ts","../shades/types/index.d.ts","./src/services/default-palette.ts","./src/services/default-dark-theme.ts","./src/services/theme-provider-service.ts","./src/components/app-bar.tsx","./src/services/click-away-service.ts","../core/types/errors/authorization-error.d.ts","../core/types/errors/aggregated-error.d.ts","../core/types/errors/index.d.ts","../core/types/models/physical-store.d.ts","../core/types/models/user.d.ts","../core/types/in-memory-store.d.ts","../core/types/store-manager.d.ts","../core/types/global-disposables.d.ts","../core/types/identity-context.d.ts","../core/types/create-physical-store-tests.d.ts","../core/types/helpers.d.ts","../core/types/index.d.ts","./src/services/collection-service.ts","./src/services/default-light-theme.ts","./src/services/noty-service.ts","./src/services/index.ts","./src/components/input.tsx","./src/components/autocomplete.tsx","./src/components/avatar.tsx","./src/components/button.tsx","./src/components/grid.tsx","./src/components/styles.tsx","./src/components/data-grid/header.tsx","./src/components/loader.tsx","./src/components/data-grid/body.tsx","./src/components/data-grid/footer.tsx","./src/components/data-grid/data-grid.tsx","./src/components/data-grid/index.tsx","./src/components/fab.tsx","./src/components/modal.tsx","./src/utils/index.ts","./src/components/noty-list.tsx","./src/components/paper.tsx","./src/components/suggest/suggestion-result.tsx","./src/components/suggest/suggest-manager.ts","./src/components/suggest/suggest-input.tsx","./src/components/suggest/suggestion-list.tsx","./src/components/suggest/index.tsx","./src/components/tabs.tsx","./src/components/command-palette/command-provider.ts","./src/components/command-palette/command-palette-manager.ts","./src/components/command-palette/command-palette-input.tsx","./src/components/command-palette/command-palette-suggestion-list.tsx","./src/components/command-palette/index.tsx","./src/components/index.ts","./src/index.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","f263a96d514696b3141a2d3393a2f2adec15e286019200e4c62d7eb52fe6a94a","24d7a1400587554e75b1091be3f8249a34f33c2d9ee86b30a60ae61fe4ea2498","c1a9db05527179b94b2ca33bb48b63803d5e0ae5a21b8ac790b12f40c525ec2b","9344494a740dff1965bc5b1a74e6080c715ed4f8a1434a75df8affdc8a79c8d8","b75df8d9587bc418826c27473c42ffcbb66c2612858decc1904fe4a2d5ff374d","dd221885f8152d8c01d05a6fc767fe05e56e3bc8d83aaf2ba64a800267305825","56518ff7f13f9232655f1e9cf1ef5baf26b39797ec3ffb0bf53d2ff8d74592c2","3eaba356230ed74ba0ca69b8042e694d07c32134541a73eadc45d6ac2e7c6dde","78cf350631ab936664aac34c48141c6fc592199663dc3e119fad3f61de17a2ee",{"version":"1b2d02d849872828cabbdbffbd85f49b840dcf09a55618ec905848a1633f7163","affectsGlobalScope":true},"c85d304e8da665506111c4a72728406ffa68387ec5867b89ea55eab00c2d19b5","58465412af8372fd40aa93719e519e7731dc9c0519fbd8000e2afb332aab6799","388b39c2458e41e49ad70c6fb5c510467a04f82b9845c90620b774a2173e3fcb","e2b0df33a87ff4a2db2814a55009660721404f2bc2a3b5cd88822fbd55d53dd8","cb1dca0f4e031e7e4c8baa7a21051617d187f3c553852d64b7b39dedcbe2e56a","af57e4c3814b73bb1b2c1326a2f8cd01ff23b4c15fd1f44ee36b75baa2406f6e","b5190caaf20b297c622f57d181c62ea089c3a755c926c9219895fd7e5a9a029e",{"version":"d188afb03a9521e9ec9ee4dd26e910f9a790d90c3e0946de4189a96150fa301c","affectsGlobalScope":true},"f5ba1e0cbd85642ed3ae5c71c0ac912b9d9c51bac286735b1ad64230383a8b9f","b3512450304e6d60d61ee8c507739c1b9a7752f4e8d4ce79b05412c5fde67aba","0dec6c22324a50225f4f834929443e8e31aa8db733c653f12621aa0435b3f775","9945ad64740d523f8a16cf14c093a72b0981d6a9d9c4a2c7bda282797fd10e94","a43d701c2fa4261ee7b824354cd268a9ba47b6d957a236876e36f89b04cb3a13","75bc3c77f2594c331c75e32962634814c2ef24836dacf94e9af824854965e848","c16dd9fe5202cf074dad2ce1d4c173dc27123c968c47f4339ce07d9bd4d17be2","4c09cdc135cee0890874091f6278ec2e59eb135ae1077a3ff59019132a039548","ec3953072aef9cf1adce4a1cee72b9f674998dbd7f5465b9c762b7d22353f879","29a4a4c76ac64f611df14142aa461d90735dabbf5266a964cdfea2f1f8c6bc56",{"version":"1181baa8b45b333bdd94cf69ad15d970f332e6f3332d3269e18fc76eb34c37f2","affectsGlobalScope":true},"66a3bfd11a53e9d7c5097e0fff72e2855230a9eaef76f858d51fa57dd7c70880","57ce56b2d3a173b6055fff5e5aa9ebe7fd99577f46ee5c17fd68fc17e8dea700","5d7856569ad9eed8834791c80ad611af1993cc4bbcad27fe2839b0bc8f8866d4","6e7936b20cd2022c2a71f9d780e7f87216c19fde5c18448aaff60059a46ae2e7","3397a2ee8489794041d0a6f7fbd0b00d398591431b4f61d55de829e7c5a6d72b","de118f02f7d0364247e6cc77e6a2901723e79859c1589c574d3f32ee710545a8","7b1ded6510e970493a673c9e082aafb2e516c9d63834cc3b43aea544c349b8b7","66bd4c9f06babf171f0ec2d0a406710009cc2bb3a3e7b1bc1cf2af5fe7d27275","a4bdd192897af796b7e069e8e950ad966ff9b73885db184437b8098bf7831947","8620086cf457b0f7f0bffe4d27631bce4f35f9abece69c18fcc02acb8cd10456","fb04d03ea92e0bcdf2499b2fe42ec7c15f5b9020d7d297e5e7862dbc646f51b9","85f3494eefe790177bab45d81adcfba4ab1f9c7e3883d81dd750c503063cdba0","3f82fbeebe99ab4b5af9eb96dc7332b60aaa8ccd1c8a73f1d51f75d12a9271b9","fd6320763e56362ae70ca31f7123ae97e077308e0de8375b1affa83541f6cc5a","aed14cc3e993ba5f9ce1a5ad01c876a3724a1f4c800b1dfac70c498bdeb90269","0e4748a361f5b38a72ffa0c318caac015be32816d694a12ceac03ea30345d9e4","82027a9d599017e47a2f0ca9425d99cde9d8efee34f8610b8ed30549522eb91e","765df5a8d51c7df773122a54b0a592a89484576ed486f911afc05b032929d36c","6aaea463eaf9df4871db342d5b8a58d0de38942366f80979ce1ccf818ba3018a","21de939d4da6027e65730a1ef3d693ff5db5df40b55707c4a1cd382e6fd63545","634f45240de11ea87a221d189c91b14a99853565a9bf1c048a34812e6d0e936f","368534adeaedb0ce45ad2db0f2f1a3ab07ae2f95ca72803be564821fbdf91b44","46e4bb75f82c246f66337766e41d04e2263871f7906bcc26fe86d12f43c1f5e8","5e4732597e9d1bb4eb82551a1411830acf301b015ca23b32ac151dd1e7ee1236","cda8c9d92dce2b06a13b6d58a30206a7d83a2f66207db86bc75d1882e8547a3b","23b7ec815c8e5712825663fa381d30212375fa58cdf138f8c518c7931fbdc70d","384b80d46b7a99c9a9cd3dfc3e7e0178c65488c7dcbb5e64690ac659c742843c","85d67f31ee865f5ee6768661834e7b34e68cc3e5ed690374ed5da29bc7acbbbc","a6d88e7243d86901a8527886c5117785abe7d876211223afc69b37972dd19ae4","5a8c8453f19d29a1379a13b5cf67810fc8046dcb6669ab783b8e8f2ccc5eae2b","d51bb48cb8d0874561803be18cd1f20ad79d668631b5a5317ac01dcba968bf8a","23f70da74e29620663821ac0beb336a4233a750ecb3ebb2c3777d733d08a82ad","bcdcc5d4be2cc79f074fdb7e22e286072e859f8c3c3326a98063637c3d3893e9","fdca91edf84e7e01c5b5e6199a7556e89039c0d27880ccb15672c4a45c2edf4b","b645a5f18a1ef352df97910f3357a184b32b79bb59861bad852977e7eca709e5","c110f5dbbf6728e1fbc8ad2122d9b889c1c7ccc24c6134f5ed726ceb23d9d996","46ad76cab1d2ec0f1148f1bd2a0b8db2e6cec6760e8da34b97b9806e898984e0","c8f256442f4fa6a66f93388e27e35a3ff921dbcc0400187476e41c6dddd26c1c",{"version":"ec7807d0b8fb16855a5d8b4ee44df17092be7f42d6b74bfb63fe867a13947e9d","affectsGlobalScope":true},"db8cab11398932aeaa2b1316484f8bcea8ccfaf03a60ed7b81000f49458e248e","d9867dce8e74f7d9ec5f1a4428d6f12e8fe4d01c2dc4db4aaf436c9d5df4a383","538e08fda04d69a3cb0450874fbcea97f80da8c55c3228fbf5467e4107ff658e","ec9182e7bcb16c41321aa6a5a586f3585222a0ad52aefa8a58891df524c0e3eb","6e2d6efa2c5c15170745b15c84b9968c3013e71d26d610854d49f11fef784c35","b636d590f982af295ca0be3278c094dfcd0d9be8dc8186d493717244a05309d6","12f1ae447d43babd705d857fd95eed049a4a1ea615b4716ca116caaca23ea6b7","15357b0608593aa5c522cf862e7f9a696c3060bb47ec43eb64fec6fde859b208","0b78d898745acdd496185f17301dfa7341fd065dc955f842bc1dbf8d8a609f42","7f4f2854403cba54ad00cf719785c62a7b433d80ef8484f92d06781b2a2dbfbb","cc0c75041dcc72c1e5fd334c93067dad4fe373c7cb9115050ee9eaaa18cd30c3","458be2376f961c0f23740ed3abc56cff5d317e5b87961b7410791f91fdcf76f3","1bc19091896f1870131d8277bcdb7c946d536e48055dac2ac780100c03214d51","95abfe43df2eeaed6fe9c56f6b633de04fad866a2f41d9471a0e8a4cc90290b9","cf90ef3d8894786464b7374830f37c549b3b13830a55ce92d1c28b028db1e37a","94e002831884b24caa80fa5efa8e4eb063474dfb2ac4ebb44f6aa0bb4b81cc93","370c583fd3759ec5e452071019c1fdc7de05f5d0f01111b8f0da90b386aa73f7","ff7c7a00b86b05275e7283213a5c9a21d128f099247ce1d7e1f6bb80861107fb","dc31a9c1aadd18ac71b214e580af281df67dd59711fb04c10dfc28658f2b9cb6","3968b6aad4839a315d5b3922d666c23ce8d7cdeeac7d68f309530041682d979c","6d99d37557eeb3efb6d4cd04d7e91291999b37fc18bb0cd30c1e0afecca906d4","864d02d9965840e836160d4ee27dc0b5cdeaa4c39cf7dd4dfac3e5c5c83893db","afb973f4e0805814ee2a4b25643a69c9f286b6cf835b0a75006ba3071654c157","4640e3ca2e83e88a63818b5d96eadeb31af44b02d5c5af2c385124aa6ea89176"],"options":{"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":1,"noImplicitAny":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6},"fileIdsList":[[70],[70,71],[58,86],[83,84],[49],[49,56,86,89,94],[87],[85,86,87,88,89,90,91,92,93],[49,58],[49,58,86],[55,56,57],[53,54],[49,53,55],[53],[36,37],[36,77,80],[36,77,99],[36,77],[36,37,77,80],[36,37,77,123],[36,49,58,82,122],[36,37,77,80,122,123],[36,58],[36,37,77,82,106,122,123,124,125],[36,77,95,106,109],[36,77,95,98,103,104,105,107,108],[36,77,95,98],[36,49,77,94,95,99],[36,109],[36,77,98],[36,38,81,99,100,101,102,103,104,106,110,111,112,114,115,120,121,126],[36,37,77,98,128],[36,77,80,97,102,113],[36],[36,37,77,106,116,117,118,119],[36,77,117],[36,49,58,116],[36,37,77,116,117],[36,37,77,98],[36,98,113,127],[36,49,72,94],[36,78,80],[36,80],[36,78,79,80,82,95,96,97],[36,49,58],[36,49,58,79],[68,73,74],[77],[64,77],[64,69,72],[52,64,65,66,67,75,76],[58],[49,58,64],[59,60,61,62,63],[58,59,60],[59],[50,51],[64],[39,40,41,42,43,44,45,46,47,48],[39,42],[39,43]],"referencedMap":[[71,1],[72,2],[92,3],[85,4],[90,5],[93,6],[91,7],[88,3],[94,8],[86,9],[89,10],[58,11],[55,12],[56,13],[57,14],[54,14],[38,15],[81,16],[100,17],[101,18],[102,19],[124,20],[123,21],[125,22],[122,23],[126,24],[107,25],[109,26],[108,27],[105,28],[110,29],[111,18],[103,30],[127,31],[99,32],[106,18],[112,18],[114,33],[115,16],[104,34],[120,35],[118,36],[117,37],[119,38],[116,34],[121,39],[128,40],[82,34],[95,41],[79,42],[96,42],[78,43],[98,44],[97,45],[80,46],[113,15],[37,34],[75,47],[68,48],[74,49],[73,50],[77,51],[76,52],[65,53],[64,54],[61,55],[63,56],[52,57],[50,5],[51,5],[66,58],[67,53],[49,59],[43,60],[47,61],[42,61]],"exportedModulesMap":[[71,1],[72,2],[92,3],[85,4],[90,5],[93,6],[91,7],[88,3],[94,8],[86,9],[89,10],[58,11],[55,12],[56,13],[57,14],[54,14],[38,15],[81,16],[100,17],[101,18],[102,19],[124,20],[123,21],[125,22],[122,23],[126,24],[107,25],[109,26],[108,27],[105,28],[110,29],[111,18],[103,30],[127,31],[99,32],[106,18],[112,18],[114,33],[115,16],[104,34],[120,35],[118,36],[117,37],[119,38],[116,34],[121,39],[128,40],[82,34],[95,41],[79,42],[96,42],[78,43],[98,44],[97,45],[80,46],[113,15],[37,34],[75,47],[68,48],[74,49],[73,50],[77,51],[76,52],[65,53],[64,54],[61,55],[63,56],[52,57],[50,5],[51,5],[66,58],[67,53],[49,59],[43,60],[47,61],[42,61]],"semanticDiagnosticsPerFile":[69,71,70,72,36,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,1,10,9,92,84,83,85,90,93,91,88,94,86,87,89,58,55,56,53,57,54,38,81,100,101,102,124,123,125,122,126,107,109,108,105,110,111,103,127,99,106,112,114,115,104,120,118,117,119,116,121,128,82,95,79,96,78,98,97,80,113,37,75,68,74,73,77,76,65,59,64,60,61,62,63,52,50,51,66,67,41,40,39,49,43,44,45,46,47,48,42]},"version":"4.6.4"}
1
+ {"program":{"fileNames":["../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es5.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.dom.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.scripthost.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../.yarn/cache/typescript-patch-e8b9857d0c-9096d8f6c1.zip/node_modules/typescript/lib/lib.es2019.full.d.ts","../../.yarn/cache/tslib-npm-2.4.0-9cb6dc5030-8c4aa6a3c5.zip/node_modules/tslib/tslib.d.ts","./src/utils/promisify-animation.ts","./src/components/animations.ts","../utils/types/disposable.d.ts","../utils/types/deep-merge.d.ts","../utils/types/debounce.d.ts","../utils/types/value-observer.d.ts","../utils/types/observable-value.d.ts","../utils/types/path-helper.d.ts","../utils/types/sleep-async.d.ts","../utils/types/sort-by.d.ts","../utils/types/trace.d.ts","../utils/types/tuple.d.ts","../utils/types/index.d.ts","../shades/types/services/location-service.d.ts","../shades/types/services/screen-service.d.ts","../shades/types/services/index.d.ts","../inject/types/models/constructable.d.ts","../inject/types/injectable.d.ts","../inject/types/injector.d.ts","../inject/types/injected.d.ts","../inject/types/models/index.d.ts","../inject/types/index.d.ts","../shades/types/models/children-list.d.ts","../shades/types/models/partial-element.d.ts","../shades/types/models/render-options.d.ts","../shades/types/models/selection-state.d.ts","../shades/types/models/shade-component.d.ts","../shades/types/models/index.d.ts","../shades/types/jsx.d.ts","../shades/types/shade-component.d.ts","../shades/types/shade.d.ts","../shades/types/components/lazy-load.d.ts","../../.yarn/cache/path-to-regexp-npm-6.2.1-8ebfe03654-f0227af828.zip/node_modules/path-to-regexp/dist/index.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/Semaphore.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/Lock.d.ts","../../.yarn/cache/semaphore-async-await-npm-1.5.1-22d6ad656a-2dedf7c59b.zip/node_modules/semaphore-async-await/dist/index.d.ts","../shades/types/components/router.d.ts","../shades/types/components/route-link.d.ts","../shades/types/components/index.d.ts","../shades/types/initialize.d.ts","../shades/types/index.d.ts","./src/services/default-palette.ts","./src/services/default-dark-theme.ts","./src/services/theme-provider-service.ts","./src/components/app-bar.tsx","./src/services/click-away-service.ts","../core/types/errors/authorization-error.d.ts","../core/types/errors/aggregated-error.d.ts","../core/types/errors/index.d.ts","../core/types/models/physical-store.d.ts","../core/types/models/user.d.ts","../core/types/in-memory-store.d.ts","../core/types/store-manager.d.ts","../core/types/global-disposables.d.ts","../core/types/identity-context.d.ts","../core/types/create-physical-store-tests.d.ts","../core/types/helpers.d.ts","../core/types/index.d.ts","./src/services/collection-service.ts","./src/services/default-light-theme.ts","./src/services/noty-service.ts","./src/services/index.ts","./src/components/app-bar-link.tsx","./src/components/input.tsx","./src/components/autocomplete.tsx","./src/components/avatar.tsx","./src/components/button.tsx","./src/components/grid.tsx","./src/components/data-grid/header.tsx","./src/components/loader.tsx","./src/components/data-grid/data-grid-row.tsx","./src/components/data-grid/body.tsx","./src/components/data-grid/footer.tsx","./src/components/data-grid/data-grid.tsx","./src/components/data-grid/selection-cell.tsx","./src/components/data-grid/index.tsx","./src/components/fab.tsx","./src/components/modal.tsx","./src/utils/index.ts","./src/components/noty-list.tsx","./src/components/paper.tsx","./src/components/styles.tsx","./src/components/suggest/suggestion-result.tsx","./src/components/suggest/suggest-manager.ts","./src/components/suggest/suggest-input.tsx","./src/components/suggest/suggestion-list.tsx","./src/components/suggest/index.tsx","./src/components/tabs.tsx","./src/components/command-palette/command-provider.ts","./src/components/command-palette/command-palette-manager.ts","./src/components/command-palette/command-palette-input.tsx","./src/components/command-palette/command-palette-suggestion-list.tsx","./src/components/command-palette/index.tsx","./src/components/index.ts","./src/index.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e",{"version":"f263a96d514696b3141a2d3393a2f2adec15e286019200e4c62d7eb52fe6a94a","signature":"b6cd239a8c60c278e95e6eefca6775fd6f055a6bf6b400dc2ab152c70b2a2f73"},{"version":"24d7a1400587554e75b1091be3f8249a34f33c2d9ee86b30a60ae61fe4ea2498","signature":"51144ed01ce492449998d5a273ec462681224c744123fef7ade3a805e94761fd"},"c1a9db05527179b94b2ca33bb48b63803d5e0ae5a21b8ac790b12f40c525ec2b","9344494a740dff1965bc5b1a74e6080c715ed4f8a1434a75df8affdc8a79c8d8","b75df8d9587bc418826c27473c42ffcbb66c2612858decc1904fe4a2d5ff374d","dd221885f8152d8c01d05a6fc767fe05e56e3bc8d83aaf2ba64a800267305825","56518ff7f13f9232655f1e9cf1ef5baf26b39797ec3ffb0bf53d2ff8d74592c2","3eaba356230ed74ba0ca69b8042e694d07c32134541a73eadc45d6ac2e7c6dde","78cf350631ab936664aac34c48141c6fc592199663dc3e119fad3f61de17a2ee",{"version":"1b2d02d849872828cabbdbffbd85f49b840dcf09a55618ec905848a1633f7163","affectsGlobalScope":true},"c85d304e8da665506111c4a72728406ffa68387ec5867b89ea55eab00c2d19b5","58465412af8372fd40aa93719e519e7731dc9c0519fbd8000e2afb332aab6799","388b39c2458e41e49ad70c6fb5c510467a04f82b9845c90620b774a2173e3fcb","e2b0df33a87ff4a2db2814a55009660721404f2bc2a3b5cd88822fbd55d53dd8","cb1dca0f4e031e7e4c8baa7a21051617d187f3c553852d64b7b39dedcbe2e56a","af57e4c3814b73bb1b2c1326a2f8cd01ff23b4c15fd1f44ee36b75baa2406f6e","b5190caaf20b297c622f57d181c62ea089c3a755c926c9219895fd7e5a9a029e","01cc8e036cb91e525b472410fb6bbfb5c1b62ad6fbfbe30b25022250b29f6679","8b1cfa87f82afa1eb061921c552adf76a6707926eee9ef20db0d7ac87a979389","58727d531ef6948c1a9fe5433a07f7afb6a7e28c60823cdb26418c9f5908ea9b","0dec6c22324a50225f4f834929443e8e31aa8db733c653f12621aa0435b3f775","dfcfcac86a9568adbc076aa956fa53da2f7c699f70ebc77d90ae546c2d53eefc","a43d701c2fa4261ee7b824354cd268a9ba47b6d957a236876e36f89b04cb3a13","75bc3c77f2594c331c75e32962634814c2ef24836dacf94e9af824854965e848","c16dd9fe5202cf074dad2ce1d4c173dc27123c968c47f4339ce07d9bd4d17be2","4c09cdc135cee0890874091f6278ec2e59eb135ae1077a3ff59019132a039548","ec3953072aef9cf1adce4a1cee72b9f674998dbd7f5465b9c762b7d22353f879","29a4a4c76ac64f611df14142aa461d90735dabbf5266a964cdfea2f1f8c6bc56",{"version":"1181baa8b45b333bdd94cf69ad15d970f332e6f3332d3269e18fc76eb34c37f2","affectsGlobalScope":true},"20a440c7b61f07029994d3da468f046502f1230311f8a265d1c9c80bac51adda","57ce56b2d3a173b6055fff5e5aa9ebe7fd99577f46ee5c17fd68fc17e8dea700","5d7856569ad9eed8834791c80ad611af1993cc4bbcad27fe2839b0bc8f8866d4","6e7936b20cd2022c2a71f9d780e7f87216c19fde5c18448aaff60059a46ae2e7","3397a2ee8489794041d0a6f7fbd0b00d398591431b4f61d55de829e7c5a6d72b","de118f02f7d0364247e6cc77e6a2901723e79859c1589c574d3f32ee710545a8","7b1ded6510e970493a673c9e082aafb2e516c9d63834cc3b43aea544c349b8b7","66bd4c9f06babf171f0ec2d0a406710009cc2bb3a3e7b1bc1cf2af5fe7d27275","d9226f642e4b63ff09e7247a59b003e9e62280aafc300d77b0d08e41af2fbaa1","8620086cf457b0f7f0bffe4d27631bce4f35f9abece69c18fcc02acb8cd10456","fb04d03ea92e0bcdf2499b2fe42ec7c15f5b9020d7d297e5e7862dbc646f51b9","85f3494eefe790177bab45d81adcfba4ab1f9c7e3883d81dd750c503063cdba0",{"version":"3f82fbeebe99ab4b5af9eb96dc7332b60aaa8ccd1c8a73f1d51f75d12a9271b9","signature":"8e2651546424dff05e4fe9ae781b2744cafe2019fdb16fdf372981b4e3bbfbfd"},{"version":"fd6320763e56362ae70ca31f7123ae97e077308e0de8375b1affa83541f6cc5a","signature":"c088c28eca9232d7a0a6914000fe668907e605e0c854c4ffbb3ffb12e1abd305"},{"version":"aed14cc3e993ba5f9ce1a5ad01c876a3724a1f4c800b1dfac70c498bdeb90269","signature":"3e6ff7bb5ae555b0605aeede4b44181b7658b5e7f9799e5c33f0454f9ea4848e"},{"version":"e14b41b421e9092c753997e7ad991f3314316135dbf2d62b744812e8e85a6109","signature":"77379c2c875f9bdfb7c4daee11401c8a7ee0eccb4dc53ffa1770b8cc3dbb1450"},{"version":"0c2b9695207f71510c1e59287df0d66fbb2239e190ca489a1d6a67a216d1c3de","signature":"a7e7463d49cab5809d8f0e0eb40df0048c006d73f1eea8e5860feb44ff8140f1"},"765df5a8d51c7df773122a54b0a592a89484576ed486f911afc05b032929d36c","6aaea463eaf9df4871db342d5b8a58d0de38942366f80979ce1ccf818ba3018a","21de939d4da6027e65730a1ef3d693ff5db5df40b55707c4a1cd382e6fd63545","634f45240de11ea87a221d189c91b14a99853565a9bf1c048a34812e6d0e936f","368534adeaedb0ce45ad2db0f2f1a3ab07ae2f95ca72803be564821fbdf91b44","2ccc5df2e5371517384f2a9ac59247a6ed8bfed595802e3421e34b041539a08f","c133b9412133a8d2171d5b1d0cadad7ae8635acf258ceee6edb18f363b3d9b2d","cda8c9d92dce2b06a13b6d58a30206a7d83a2f66207db86bc75d1882e8547a3b","23b7ec815c8e5712825663fa381d30212375fa58cdf138f8c518c7931fbdc70d","53dd0f146a737a2ea18a2a7638fd18632be13af4573ae806f175baaa180e4cca","85d67f31ee865f5ee6768661834e7b34e68cc3e5ed690374ed5da29bc7acbbbc","a6d88e7243d86901a8527886c5117785abe7d876211223afc69b37972dd19ae4",{"version":"4cb9f7db9fe3454f58fa1231b9efa1379648e09b728c8b22ce4e68900da708a3","signature":"349cfc618e7aa5ab7067da54555123c2c44cbb6f9b05d6ec8a531a023e051f4c"},{"version":"d51bb48cb8d0874561803be18cd1f20ad79d668631b5a5317ac01dcba968bf8a","signature":"4af00e91ea4ca96b7cf640c6117fbfce4f357b9813a51f956ad776d9ed21a7af"},{"version":"23f70da74e29620663821ac0beb336a4233a750ecb3ebb2c3777d733d08a82ad","signature":"4551590f711f5836293df806230416157ecfd14bf853306b05dc0252ca5a388a"},{"version":"bcdcc5d4be2cc79f074fdb7e22e286072e859f8c3c3326a98063637c3d3893e9","signature":"8bfe3608ec168fb33e6d48aea76ead5149a970b7833372607da6bdb47bb39d4d"},{"version":"a9c23442cedd6044bd00a397c5088f6895712d6b99947ee82bd6359b50dc812d","signature":"60f5be03f470bc0be70cd1b14a65ed55055e7d0717636b234d0314797c4b84d3"},{"version":"fdca91edf84e7e01c5b5e6199a7556e89039c0d27880ccb15672c4a45c2edf4b","signature":"aede87e749bcbca3790f965f22e01d5eb840f106953e92ebd0ab774d3862298b"},{"version":"b645a5f18a1ef352df97910f3357a184b32b79bb59861bad852977e7eca709e5","signature":"7c9b9c8a6d2184509c9d7a975b6a7672d8464f842a690aadc2d5f3397f461d93"},{"version":"c110f5dbbf6728e1fbc8ad2122d9b889c1c7ccc24c6134f5ed726ceb23d9d996","signature":"4b8ddd56ff4c43aa06c9a3eaf7fa46fd4bc3793d5bb4abe42da2c684e33ce3a3"},{"version":"46ad76cab1d2ec0f1148f1bd2a0b8db2e6cec6760e8da34b97b9806e898984e0","signature":"083623fafc6b08972269e824bb9b89534775a48b3b20831d6cd4cc54e9a25d44"},{"version":"0552c5ae21d998e46ee70fb143c8528f6873d5b69e7eb78ff714da5d16f11c12","signature":"f2e35bc9c8b23d0fdd9d33309a087427160300c94fd645deb0e0464716215a6b"},{"version":"24dcd0092b5ed5c9aad2303710e2488d87b4ab2b8560f95107ded21fb8ce33ab","signature":"c98e833a164d167949b7c74a24f07d502e0c8f21fad0a1ab4ee2c4d693eae559"},{"version":"d9867dce8e74f7d9ec5f1a4428d6f12e8fe4d01c2dc4db4aaf436c9d5df4a383","signature":"46d1da82845bbe402aceff03ebb095c42e9ca46e54fbbd222eb4b63d310d570b"},{"version":"9a09b43956d056d34866ead200223261222690c07bfa712c884ea18770bb6a57","signature":"73f35cb4625ddfeb23036ebdf911632a07d83a921cc5e1e3f68c0494a3e9b2b6"},{"version":"52face6147d936382956041b4389b5c4de6b94170934d2f46c7213c96e812c96","signature":"ef16ecfdd5dbf2954cb38b816ec1bd8eb892a93ac64c7bb0ac95f20b272d6a6b"},{"version":"6b980c924bceca1923c5042737c0dbfce73c8c36541491414353d6238c4fba2e","signature":"fcbe33e9f793a43dba9c1808dfa96b4804282abd4e25e2a173fcc0f8d5bdad62"},{"version":"5c11129733ef509fb6578b7af6d960d21fd9585799e9f6f50f1652b400663ec4","signature":"883cf974c7bb6eefa54853ec7cd80d89d3868049713f85d7beae2b1391deea6d"},{"version":"16d0ee89f44b0078d10bf53a010fae2996f86c4ced842f70e83f256e31294d96","signature":"793e7314ad4734ba172ca486765c61cac4f3828da2d8f941b7d86dd719ceb2be"},{"version":"57aa515b342630ee4e43c7d3632c95512e25f663479442a68dc9c337a788445b","signature":"a4ead47d29a449b142cb2ea34066e55c7c3528ea9735eb89c64cb37010d2c171"},{"version":"12f1ae447d43babd705d857fd95eed049a4a1ea615b4716ca116caaca23ea6b7","signature":"0f0e0d9f170e1c2f7e413b0e3a84f258e7779fb360ee976cea20b9f53a31d590"},{"version":"15357b0608593aa5c522cf862e7f9a696c3060bb47ec43eb64fec6fde859b208","signature":"c750bd6f8eaa2d204ce22dc17e0dff63d5e2dc8b971c7c256d430126aa999513"},{"version":"0b78d898745acdd496185f17301dfa7341fd065dc955f842bc1dbf8d8a609f42","signature":"c7c230b337ba9564e646b8703726888906632ef4c3354e99b9d19cbf09d17c11"},{"version":"7f4f2854403cba54ad00cf719785c62a7b433d80ef8484f92d06781b2a2dbfbb","signature":"34a3c5e1138d21f8fdd3afc0066e9403bacbcc5a584ecafde03c62f6429d0a47"},{"version":"817fdcaf53ce7ff093eb71ab3cb4f767d5d18e58928327d115ad7cd12f6a99a2","signature":"38e145d0b00625060a2148c11168d920f5cff7741c5297c79912a647530baeb0"},{"version":"ec7807d0b8fb16855a5d8b4ee44df17092be7f42d6b74bfb63fe867a13947e9d","signature":"661bd10aef65b09114d9896685294763bb03d1b750a8b60f416dc03674eaa215","affectsGlobalScope":true},{"version":"458be2376f961c0f23740ed3abc56cff5d317e5b87961b7410791f91fdcf76f3","signature":"7d9599f0432b516e4dbfaf9cb4c0b22e5bdf0252f334ccfde6e02d8d9d2b1537"},{"version":"1bc19091896f1870131d8277bcdb7c946d536e48055dac2ac780100c03214d51","signature":"d3806ff71063f563f20c6247cd36d64914b01fa76c41fc90ed4c7d2ecc6b30a6"},{"version":"95abfe43df2eeaed6fe9c56f6b633de04fad866a2f41d9471a0e8a4cc90290b9","signature":"e92e6f31bc2a2dcb362b0c16ee69b80c2cbfe0042e9e5936cb5e02d38a3f64d8"},{"version":"cf90ef3d8894786464b7374830f37c549b3b13830a55ce92d1c28b028db1e37a","signature":"0f49cccfd42e3d84d3725fbe569cea08c46cce6aa57b11d2801376870c021f84"},{"version":"94e002831884b24caa80fa5efa8e4eb063474dfb2ac4ebb44f6aa0bb4b81cc93","signature":"814a8262979ef74448266272aa0d2880aa0f0aa7273cb8f4f09b0b8bca0095ec"},{"version":"370c583fd3759ec5e452071019c1fdc7de05f5d0f01111b8f0da90b386aa73f7","signature":"abc0694367e899dc1c6fd3587f3c750a135d56209930073e86d20763476fd900"},{"version":"ff7c7a00b86b05275e7283213a5c9a21d128f099247ce1d7e1f6bb80861107fb","signature":"a874a7d24d9804d6f1e204318df9df4da37caf413c733aaa45665fe900637101"},{"version":"f6d31f90f5e347f9378085fecca8d29ef5eb05c2baa8bddccb5ad52779b5a79f","signature":"17c1b5d9a20ae848681b102a4a21e2ce42d042e2bda31053396be97c38443315"},{"version":"3968b6aad4839a315d5b3922d666c23ce8d7cdeeac7d68f309530041682d979c","signature":"fbef4dc8e87b06ce7b753c1a15f539e5ba5de2524fb8f51517d160977851d6aa"},{"version":"6d99d37557eeb3efb6d4cd04d7e91291999b37fc18bb0cd30c1e0afecca906d4","signature":"41018939e7515d147df81509084784fa57536dffd729fb66e0f14d56237d9350"},{"version":"42ba4a9d52924446157a7465ef92a742f85672558a827cf409cca6878516511e","signature":"ba1fa4f2d51b1cc43401785d680c31ce43d2cb4852f005c22533397191094e78"},{"version":"2e97edeeedd8333cf60772fceaf8f2b649bbaadce299ec5f0adc949416cb1586","signature":"505039e52e9d45ce8053e163bd0b6217eb8f100ad65222bc079233e20f03fbde"},{"version":"4640e3ca2e83e88a63818b5d96eadeb31af44b02d5c5af2c385124aa6ea89176","signature":"7e9b10f454d25b80fc07e288471b674582cd5247e2427c1aa5becb603f908fee"}],"options":{"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":1,"noImplicitAny":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6},"fileIdsList":[[70],[70,71],[58,86],[83,84],[49],[49,55,86,89,94],[87],[85,86,87,88,89,90,91,92,93],[49,58],[49,58,86],[54,55,56,57],[53],[49,53,54],[36,37],[36,69,77,98],[36,77,80],[36,77,100],[36,77],[36,37,77,80],[36,37,77,126],[36,49,58,125],[36,37,77,80,125,126],[36,58],[36,37,77,82,106,125,126,127,128],[36,77,95,106,107,110],[36,77,95,110],[36,77,95,98,104,105,107,108,109],[36,77,95,98],[36,49,77,94,95,100],[36,110,111],[36,77,98],[36,38,81,99,100,101,102,103,104,106,112,113,114,116,117,118,123,124,129],[36,37,77,98,131],[36,77,80,97,103,115],[36],[36,37,77,106,119,120,121,122],[36,77,120],[36,49,58,119],[36,37,77,119,120],[36,37,77,98],[36,98,115,130],[36,49,72,94],[36,78,80],[36,80],[36,78,79,80,82,95,96,97],[36,49,58],[36,49,58,79],[68,73,74],[77],[64,77],[64,69,72],[52,64,65,66,67,75,76],[58],[49,58,64],[59,60,61,62,63],[58,59,60],[59],[50,51],[64],[39,40,41,42,43,44,45,46,47,48],[39,42],[39,43],[77,100],[77,80],[77,126],[49,58,125],[77,125,126,127,128],[77,95,110],[77,95,104,107],[77,95],[77,94,95],[110,111],[77,98],[38,81,99,100,101,102,103,104,106,112,113,114,116,117,118,123,124,129],[77,97],[77,119,120,121,122],[77,120],[49,58,119],[98,115,130],[49,94],[80],[78,79,80,82,95,96,97],[37]],"referencedMap":[[71,1],[72,2],[92,3],[85,4],[90,5],[93,6],[91,7],[88,3],[94,8],[86,9],[89,10],[58,11],[54,12],[56,12],[55,13],[57,12],[38,14],[99,15],[81,16],[101,17],[102,18],[103,19],[127,20],[126,21],[128,22],[125,23],[129,24],[108,25],[107,26],[110,27],[109,28],[105,29],[112,30],[111,31],[113,18],[104,31],[130,32],[100,33],[106,18],[114,18],[116,34],[117,16],[118,35],[123,36],[121,37],[120,38],[122,39],[119,35],[124,40],[131,41],[82,35],[95,42],[79,43],[96,43],[78,44],[98,45],[97,46],[80,47],[115,14],[37,35],[75,48],[68,49],[74,50],[73,51],[77,52],[76,53],[65,54],[64,55],[61,56],[63,57],[52,58],[50,5],[51,5],[66,59],[67,54],[49,60],[43,61],[47,62],[42,62]],"exportedModulesMap":[[71,1],[72,2],[92,3],[85,4],[90,5],[93,6],[91,7],[88,3],[94,8],[86,9],[89,10],[58,11],[54,12],[56,12],[55,13],[57,12],[99,49],[81,49],[101,63],[102,49],[103,64],[127,65],[126,66],[128,65],[125,53],[129,67],[108,68],[107,68],[110,69],[109,70],[105,71],[112,72],[111,73],[113,49],[104,49],[130,74],[100,73],[106,49],[114,49],[116,75],[117,49],[123,76],[121,77],[120,78],[122,77],[124,49],[131,79],[95,80],[79,81],[96,81],[78,81],[98,82],[97,5],[80,5],[115,83],[75,48],[68,49],[74,50],[73,51],[77,52],[76,53],[65,54],[64,55],[61,56],[63,57],[52,58],[50,5],[51,5],[66,59],[67,54],[49,60],[43,61],[47,62],[42,62]],"semanticDiagnosticsPerFile":[69,71,70,72,36,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,1,10,9,92,84,83,85,90,93,91,88,94,86,87,89,58,54,56,55,53,57,38,99,81,101,102,103,127,126,128,125,129,108,107,110,109,105,112,111,113,104,130,100,106,114,116,117,118,123,121,120,122,119,124,131,82,95,79,96,78,98,97,80,115,37,75,68,74,73,77,76,65,59,64,60,61,62,63,52,50,51,66,67,41,40,39,49,43,44,45,46,47,48,42]},"version":"4.7.4"}
@@ -5,7 +5,7 @@ export declare const animations: {
5
5
  hideSlide: (options: {
6
6
  element: Element;
7
7
  }) => Promise<void>;
8
- fadeOut: (element?: Element | null | undefined) => Promise<void>;
9
- fadeIn: (element?: Element | null | undefined) => Promise<void>;
8
+ fadeOut: (element?: Element | null) => Promise<void>;
9
+ fadeIn: (element?: Element | null) => Promise<void>;
10
10
  };
11
11
  //# sourceMappingURL=animations.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../../src/components/animations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;yBACM;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;yBAcpB;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;;;CA4BhD,CAAA"}
1
+ {"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../../src/components/animations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;yBACM;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;yBAcpB;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;wBAcrB,OAAO,GAAG,IAAI;uBAOf,OAAO,GAAG,IAAI;CAOxC,CAAA"}