AocAutocompletePaginatorOptionsPerPageToken |
Default value : new InjectionToken<number>(
'AocAutocompletePaginatorOptionsPerPageToken'
)
|
aocDeletionSymbol |
Default value : Symbol('aoc deletion symbol')
|
aocDirtySymbol |
Default value : Symbol('aoc dirty symbol')
|
aocRefSymbol |
Default value : Symbol('aoc ref symbol')
|
aocTimeOfRequestSymbol |
Default value : Symbol('aoc time of request symbol')
|
AocGridAutoSelectFirstToken |
Default value : new InjectionToken<boolean>('AocGridAutoSelectFirstToken')
|
AocGridPaginatorRowLimitOptionsToken |
Default value : new InjectionToken<AocUiPaginatorRowLimitOptions>(
'AocGridPaginatorRowLimitOptionsToken'
)
|
aocGridGroupDisplay |
Default value : <M>(fn: AocGridGroupDisplayFn<M>) => new AocGridGroupDisplay<M>(fn)
|
AocQueryOrderNumeric |
Default value : {
ASC: 1,
DESC: -1
} as const
|
SplitLogicalOperator |
Default value : {
AND: 'and',
OR: 'or'
} as const
|
AocUiCKConfig |
Default value : new InjectionToken<CKConfig>('AocUiCKEditorConfig')
|
AocUiCKEditorConstructor |
Default value : new InjectionToken<CKEditorConstructor>('AocUiCKEditorClass')
|
AocUiDatetimePickerFormatsToken |
Default value : new InjectionToken<AocUiDatetimePickerFormats>(
'AocUiDatetimePickerFormatsToken'
)
|
AocUiDatetimePickerModeToken |
Default value : new InjectionToken<AocUiDatetimePickerMode>('AocUiDatetimePickerModeToken')
|
aocUiTplRef |
Default value : (template: AocUiTemplateName): AocUiTplRef => new AocUiTplRef(template)
|
AocUiLoggerConfigToken |
Default value : new InjectionToken<AocUiLoggerConfig>('AocUiLoggerConfigToken')
|
aocUiOverlayEnterAnimation |
Default value : animation([
style({
opacity: 0,
transform: 'translateY(5%)'
}),
animate('225ms ease-out')
])
|
aocUiOverlayLeaveAnimation |
Default value : animation([
animate(
'195ms ease-in',
style({
opacity: 0,
transform: 'translateY(5%)'
})
)
])
|
aocUiSidebarEnterAnimation |
Default value : animation([
style({
transform: '{{ transform }}',
opacity: 0
}),
animate('225ms ease-out')
])
|
aocUiSidebarLeaveAnimation |
Default value : animation([
animate(
'195ms ease-in',
style({
opacity: 0,
transform: '{{ transform }}'
})
)
])
|
aocUiToastItemEnterAnimation |
Default value : animation([
style({
transform: 'translateY(100%)',
opacity: 0
}),
animate('300ms ease-out')
])
|
aocUiToastItemLeaveAnimation |
Default value : animation([
animate(
'300ms ease-in',
style({
height: 0,
opacity: 0,
transform: 'translateY(100%)'
})
)
])
|
aocUiWindowEnterAnimation |
Default value : animation(
[
style({
transform: 'scale(0.7)',
opacity: 0
}),
animate('{{ time }} cubic-bezier(0, 0, 0.2, 1)')
],
{ params: { time: '150ms' } }
)
|
aocUiWindowLeaveAnimation |
Default value : animation(
[
animate(
'{{ time }} cubic-bezier(0, 0, 0.2, 1)',
style({
opacity: 0,
transform: 'scale(0.7)'
})
)
],
{ params: { time: '150ms' } }
)
|
AocUserConfigToken |
Default value : new InjectionToken<AocUserConfig>('AocUserConfigToken')
|
arrayCmpFn |
Default value : (newModel: AocModel) => (m: AocModel) => m.id === newModel.id
|
Config |
Default value : new AocAppConfig()
|
registeredClasses |
Default value : new Set<unknown>()
|
weakMap |
Default value : new WeakMap<Object, Map<string, unknown>>()
|
rfdcFn |
Default value : rfdc({ proto: true })
|
sortedLevels |
Type : number
|
Default value : {
DEBUG: 0,
INFO: 1,
LOG: 2,
WARN: 3,
ERROR: 4,
FATAL: 5,
OFF: 6
}
|