@dereekb/dbx-form 9.25.16 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_index.scss +1 -0
- package/calendar/lib/calendar.module.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.cell.component.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.component.d.ts +4 -4
- package/calendar/lib/calendar.schedule.selection.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.days.component.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.days.form.component.d.ts +2 -2
- package/calendar/lib/calendar.schedule.selection.dialog.button.component.d.ts +1 -6
- package/calendar/lib/calendar.schedule.selection.dialog.component.d.ts +1 -11
- package/calendar/lib/calendar.schedule.selection.popover.button.component.d.ts +2 -2
- package/calendar/lib/calendar.schedule.selection.popover.component.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.popover.content.component.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.range.component.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.store.d.ts +4 -32
- package/calendar/lib/calendar.schedule.selection.store.provide.d.ts +1 -1
- package/calendar/lib/calendar.schedule.selection.toggle.button.component.d.ts +1 -1
- package/calendar/lib/field/schedule/calendar.schedule.field.component.d.ts +2 -8
- package/esm2022/calendar/lib/calendar.module.mjs +155 -0
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.cell.component.mjs +10 -10
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.component.mjs +6 -6
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.days.component.mjs +6 -6
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.days.form.component.mjs +6 -6
- package/esm2022/calendar/lib/calendar.schedule.selection.dialog.button.component.mjs +36 -0
- package/esm2022/calendar/lib/calendar.schedule.selection.dialog.component.mjs +56 -0
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.mjs +1 -1
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.popover.button.component.mjs +6 -6
- package/esm2022/calendar/lib/calendar.schedule.selection.popover.component.mjs +38 -0
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.popover.content.component.mjs +6 -6
- package/esm2022/calendar/lib/calendar.schedule.selection.range.component.mjs +188 -0
- package/esm2022/calendar/lib/calendar.schedule.selection.store.mjs +785 -0
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.store.provide.mjs +7 -7
- package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.toggle.button.component.mjs +6 -6
- package/esm2022/calendar/lib/field/schedule/calendar.schedule.field.component.mjs +158 -0
- package/esm2022/calendar/lib/field/schedule/calendar.schedule.field.mjs +28 -0
- package/esm2022/calendar/lib/field/schedule/calendar.schedule.module.mjs +58 -0
- package/{esm2020 → esm2022}/lib/form/action/form.action.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form/action/form.action.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/form/action/transition/form.action.transition.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/form/action/transition/form.action.transition.safety.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form/form.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/form/io/form.changes.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form/io/form.input.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form/io/form.io.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/form/io/form.loading.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/field/checklist/checklist.item.field.component.mjs +9 -9
- package/{esm2020 → esm2022}/lib/formly/field/checklist/checklist.item.field.content.default.component.mjs +6 -6
- package/esm2022/lib/formly/field/checklist/checklist.item.field.module.mjs +67 -0
- package/{esm2020 → esm2022}/lib/formly/field/component/component.field.component.mjs +6 -6
- package/esm2022/lib/formly/field/component/component.field.module.mjs +32 -0
- package/esm2022/lib/formly/field/field.mjs +97 -0
- package/{esm2020 → esm2022}/lib/formly/field/form.field.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/field/selection/list/list.field.component.mjs +4 -4
- package/esm2022/lib/formly/field/selection/list/list.field.module.mjs +76 -0
- package/esm2022/lib/formly/field/selection/pickable/pickable.chip.field.component.mjs +33 -0
- package/{esm2020 → esm2022}/lib/formly/field/selection/pickable/pickable.field.directive.mjs +4 -4
- package/esm2022/lib/formly/field/selection/pickable/pickable.field.module.mjs +93 -0
- package/esm2022/lib/formly/field/selection/pickable/pickable.list.field.component.mjs +116 -0
- package/{esm2020 → esm2022}/lib/formly/field/selection/pickable/pickable.mjs +1 -1
- package/esm2022/lib/formly/field/selection/searchable/searchable.chip.field.component.mjs +68 -0
- package/esm2022/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.mjs +95 -0
- package/esm2022/lib/formly/field/selection/searchable/searchable.field.directive.mjs +278 -0
- package/esm2022/lib/formly/field/selection/searchable/searchable.field.module.mjs +91 -0
- package/{esm2020 → esm2022}/lib/formly/field/selection/searchable/searchable.text.field.component.mjs +4 -4
- package/esm2022/lib/formly/field/selection/selection.field.mjs +39 -0
- package/{esm2020 → esm2022}/lib/formly/field/selection/selection.mjs +1 -1
- package/{esm2020 → esm2022}/lib/formly/field/selection/selection.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/field/selection/sourceselect/sourceselect.field.component.mjs +4 -4
- package/esm2022/lib/formly/field/selection/sourceselect/sourceselect.field.module.mjs +93 -0
- package/{esm2020 → esm2022}/lib/formly/field/texteditor/texteditor.field.component.mjs +6 -6
- package/esm2022/lib/formly/field/texteditor/texteditor.field.module.mjs +51 -0
- package/{esm2020 → esm2022}/lib/formly/field/value/array/array.field.component.mjs +8 -8
- package/esm2022/lib/formly/field/value/array/array.field.module.mjs +62 -0
- package/esm2022/lib/formly/field/value/boolean/boolean.field.mjs +47 -0
- package/{esm2020 → esm2022}/lib/formly/field/value/boolean/boolean.field.module.mjs +5 -5
- package/esm2022/lib/formly/field/value/date/date.field.module.mjs +96 -0
- package/esm2022/lib/formly/field/value/date/datetime.field.component.mjs +488 -0
- package/esm2022/lib/formly/field/value/date/datetime.field.mjs +141 -0
- package/{esm2020 → esm2022}/lib/formly/field/value/date/datetime.field.service.mjs +9 -9
- package/esm2022/lib/formly/field/value/date/fixeddaterange.field.component.mjs +506 -0
- package/{esm2020 → esm2022}/lib/formly/field/value/number/number.field.module.mjs +5 -5
- package/esm2022/lib/formly/field/value/phone/phone.field.component.mjs +100 -0
- package/esm2022/lib/formly/field/value/phone/phone.field.module.mjs +66 -0
- package/{esm2020 → esm2022}/lib/formly/field/value/text/text.field.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/field/value/value.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/autotouch.wrapper.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/expandable.wrapper.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/expandable.wrapper.delegate.mjs +4 -4
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/flex.wrapper.component.mjs +6 -6
- package/esm2022/lib/formly/field/wrapper/form.wrapper.module.mjs +86 -0
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/info.wrapper.component.mjs +7 -7
- package/esm2022/lib/formly/field/wrapper/section.wrapper.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/style.wrapper.component.mjs +7 -7
- package/esm2022/lib/formly/field/wrapper/subsection.wrapper.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/toggle.wrapper.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/formly/field/wrapper/working.wrapper.component.mjs +6 -6
- package/esm2022/lib/formly/field/wrapper/wrapper.mjs +73 -0
- package/{esm2020 → esm2022}/lib/formly/form/form.form.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/formly/form/search.form.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/formly/formly.context.directive.mjs +4 -4
- package/esm2022/lib/formly/formly.context.mjs +100 -0
- package/{esm2020 → esm2022}/lib/formly/formly.directive.mjs +16 -16
- package/{esm2020 → esm2022}/lib/formly/formly.form.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/formly/formly.module.mjs +16 -16
- package/{esm2020 → esm2022}/lib/layout/form.layout.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/layout/form.spacer.component.mjs +6 -6
- package/{esm2020 → esm2022}/mapbox/lib/field/latlng/latlng.field.component.mjs +10 -10
- package/{esm2020 → esm2022}/mapbox/lib/field/latlng/latlng.field.marker.component.mjs +6 -6
- package/esm2022/mapbox/lib/field/latlng/latlng.field.mjs +35 -0
- package/esm2022/mapbox/lib/field/latlng/latlng.module.mjs +59 -0
- package/{mapbox/esm2020 → esm2022/mapbox}/lib/field/zoom/zoom.field.component.mjs +10 -10
- package/esm2022/mapbox/lib/field/zoom/zoom.field.mjs +23 -0
- package/esm2022/mapbox/lib/field/zoom/zoom.module.mjs +57 -0
- package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.module.mjs +5 -5
- package/{fesm2020 → fesm2022}/dereekb-dbx-form-calendar.mjs +188 -228
- package/fesm2022/dereekb-dbx-form-calendar.mjs.map +1 -0
- package/{mapbox/fesm2020 → fesm2022}/dereekb-dbx-form-mapbox.mjs +76 -76
- package/fesm2022/dereekb-dbx-form-mapbox.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/dereekb-dbx-form.mjs +820 -831
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -0
- package/lib/extension/_extension.scss +11 -6
- package/lib/extension/calendar/_calendar.scss +7 -5
- package/lib/form/_form.scss +3 -2
- package/lib/form/action/form.action.directive.d.ts +2 -2
- package/lib/form/action/transition/form.action.transition.safety.directive.d.ts +1 -1
- package/lib/form/form.angular.util.d.ts +1 -1
- package/lib/form/form.d.ts +1 -1
- package/lib/form/io/form.changes.directive.d.ts +1 -1
- package/lib/form/io/form.input.directive.d.ts +2 -2
- package/lib/form/io/form.loading.directive.d.ts +1 -1
- package/lib/formly/_formly.scss +7 -9
- package/lib/formly/field/_field.scss +7 -7
- package/lib/formly/field/checklist/_checklist.scss +3 -2
- package/lib/formly/field/checklist/checklist.field.d.ts +4 -4
- package/lib/formly/field/checklist/checklist.item.d.ts +1 -1
- package/lib/formly/field/checklist/checklist.item.field.component.d.ts +2 -2
- package/lib/formly/field/checklist/checklist.item.field.content.default.component.d.ts +4 -4
- package/lib/formly/field/checklist/checklist.item.field.d.ts +1 -1
- package/lib/formly/field/component/_component.scss +3 -2
- package/lib/formly/field/component/component.field.component.d.ts +2 -2
- package/lib/formly/field/component/component.field.d.ts +1 -1
- package/lib/formly/field/field.d.ts +5 -11
- package/lib/formly/field/selection/_selection.scss +5 -5
- package/lib/formly/field/selection/list/_list.scss +3 -2
- package/lib/formly/field/selection/list/list.field.component.d.ts +1 -1
- package/lib/formly/field/selection/pickable/_pickable.scss +3 -9
- package/lib/formly/field/selection/pickable/pickable.chip.field.component.d.ts +1 -1
- package/lib/formly/field/selection/pickable/pickable.d.ts +6 -22
- package/lib/formly/field/selection/pickable/pickable.field.directive.d.ts +3 -3
- package/lib/formly/field/selection/pickable/pickable.list.field.component.d.ts +4 -4
- package/lib/formly/field/selection/pickable/pickable.util.d.ts +2 -2
- package/lib/formly/field/selection/searchable/_searchable.scss +5 -5
- package/lib/formly/field/selection/searchable/searchable.chip.field.component.d.ts +1 -1
- package/lib/formly/field/selection/searchable/searchable.d.ts +4 -4
- package/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.d.ts +3 -3
- package/lib/formly/field/selection/searchable/searchable.field.d.ts +1 -1
- package/lib/formly/field/selection/searchable/searchable.field.directive.d.ts +1 -1
- package/lib/formly/field/selection/searchable/searchable.text.field.component.d.ts +1 -1
- package/lib/formly/field/selection/selection.d.ts +1 -5
- package/lib/formly/field/selection/selection.field.d.ts +1 -1
- package/lib/formly/field/selection/sourceselect/_sourceselect.scss +6 -15
- package/lib/formly/field/selection/sourceselect/sourceselect.d.ts +6 -6
- package/lib/formly/field/selection/sourceselect/sourceselect.field.component.d.ts +1 -1
- package/lib/formly/field/selection/sourceselect/sourceselect.field.module.d.ts +1 -1
- package/lib/formly/field/texteditor/_texteditor.scss +3 -2
- package/lib/formly/field/texteditor/texteditor.field.component.d.ts +2 -2
- package/lib/formly/field/value/_value.scss +10 -6
- package/lib/formly/field/value/array/_array.scss +7 -2
- package/lib/formly/field/value/array/array.field.component.d.ts +2 -2
- package/lib/formly/field/value/boolean/_boolean.scss +5 -4
- package/lib/formly/field/value/date/_date.scss +20 -37
- package/lib/formly/field/value/date/date.field.module.d.ts +1 -1
- package/lib/formly/field/value/date/datetime.field.component.d.ts +3 -13
- package/lib/formly/field/value/date/datetime.field.d.ts +5 -5
- package/lib/formly/field/value/date/fixeddaterange.field.component.d.ts +7 -7
- package/lib/formly/field/value/hidden.field.d.ts +1 -1
- package/lib/formly/field/value/number/_number.scss +35 -0
- package/lib/formly/field/value/number/number.field.d.ts +3 -3
- package/lib/formly/field/value/phone/_phone.scss +4 -3
- package/lib/formly/field/value/phone/phone.field.component.d.ts +1 -1
- package/lib/formly/field/value/phone/phone.field.module.d.ts +1 -1
- package/lib/formly/field/value/text/_text.scss +3 -2
- package/lib/formly/field/value/text/text.additional.field.d.ts +3 -3
- package/lib/formly/field/value/text/text.field.d.ts +2 -2
- package/lib/formly/field/wrapper/_wrapper.scss +5 -4
- package/lib/formly/field/wrapper/autotouch.wrapper.component.d.ts +1 -1
- package/lib/formly/field/wrapper/expandable.wrapper.component.d.ts +2 -2
- package/lib/formly/field/wrapper/expandable.wrapper.delegate.d.ts +1 -1
- package/lib/formly/field/wrapper/flex.wrapper.component.d.ts +1 -1
- package/lib/formly/field/wrapper/form.wrapper.module.d.ts +1 -1
- package/lib/formly/field/wrapper/info.wrapper.component.d.ts +1 -1
- package/lib/formly/field/wrapper/section.wrapper.component.d.ts +2 -2
- package/lib/formly/field/wrapper/style.wrapper.component.d.ts +2 -2
- package/lib/formly/field/wrapper/subsection.wrapper.component.d.ts +2 -2
- package/lib/formly/field/wrapper/toggle.wrapper.component.d.ts +1 -1
- package/lib/formly/field/wrapper/working.wrapper.component.d.ts +2 -2
- package/lib/formly/field/wrapper/wrapper.d.ts +1 -1
- package/lib/formly/form/_form.scss +17 -4
- package/lib/formly/form/search.form.component.d.ts +1 -1
- package/lib/formly/formly.context.directive.d.ts +1 -1
- package/lib/formly/formly.directive.d.ts +4 -4
- package/lib/formly/formly.form.component.d.ts +1 -1
- package/lib/formly/template/login.d.ts +1 -1
- package/lib/formly/template/timezone.d.ts +1 -1
- package/lib/layout/_layout.scss +3 -2
- package/lib/layout/form.spacer.component.d.ts +1 -1
- package/lib/style/_all-typography.scss +11 -3
- package/lib/style/_core.scss +1 -2
- package/lib/style/_mixin.scss +10 -0
- package/lib/style/_theming.scss +1 -1
- package/lib/validator/available.d.ts +1 -1
- package/mapbox/{esm2020 → esm2022}/lib/field/latlng/latlng.field.component.mjs +10 -10
- package/mapbox/{esm2020 → esm2022}/lib/field/latlng/latlng.field.marker.component.mjs +6 -6
- package/mapbox/esm2022/lib/field/latlng/latlng.field.mjs +35 -0
- package/mapbox/esm2022/lib/field/latlng/latlng.module.mjs +59 -0
- package/{esm2020/mapbox → mapbox/esm2022}/lib/field/zoom/zoom.field.component.mjs +10 -10
- package/mapbox/esm2022/lib/field/zoom/zoom.field.mjs +23 -0
- package/mapbox/esm2022/lib/field/zoom/zoom.module.mjs +57 -0
- package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.module.mjs +5 -5
- package/{fesm2020 → mapbox/fesm2022}/dereekb-dbx-form-mapbox.mjs +76 -76
- package/mapbox/fesm2022/dereekb-dbx-form-mapbox.mjs.map +1 -0
- package/mapbox/lib/field/latlng/latlng.field.component.d.ts +1 -1
- package/mapbox/lib/field/latlng/latlng.field.marker.component.d.ts +1 -1
- package/mapbox/lib/field/zoom/zoom.field.component.d.ts +1 -1
- package/mapbox/package.json +10 -28
- package/package.json +31 -31
- package/esm2020/calendar/lib/calendar.module.mjs +0 -155
- package/esm2020/calendar/lib/calendar.schedule.selection.dialog.button.component.mjs +0 -38
- package/esm2020/calendar/lib/calendar.schedule.selection.dialog.component.mjs +0 -65
- package/esm2020/calendar/lib/calendar.schedule.selection.popover.component.mjs +0 -37
- package/esm2020/calendar/lib/calendar.schedule.selection.range.component.mjs +0 -188
- package/esm2020/calendar/lib/calendar.schedule.selection.store.mjs +0 -814
- package/esm2020/calendar/lib/field/schedule/calendar.schedule.field.component.mjs +0 -158
- package/esm2020/calendar/lib/field/schedule/calendar.schedule.field.mjs +0 -29
- package/esm2020/calendar/lib/field/schedule/calendar.schedule.module.mjs +0 -58
- package/esm2020/lib/formly/field/checklist/checklist.item.field.module.mjs +0 -67
- package/esm2020/lib/formly/field/component/component.field.module.mjs +0 -32
- package/esm2020/lib/formly/field/field.mjs +0 -103
- package/esm2020/lib/formly/field/selection/list/list.field.module.mjs +0 -76
- package/esm2020/lib/formly/field/selection/pickable/pickable.chip.field.component.mjs +0 -33
- package/esm2020/lib/formly/field/selection/pickable/pickable.field.module.mjs +0 -93
- package/esm2020/lib/formly/field/selection/pickable/pickable.list.field.component.mjs +0 -116
- package/esm2020/lib/formly/field/selection/searchable/searchable.chip.field.component.mjs +0 -68
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.mjs +0 -95
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.directive.mjs +0 -278
- package/esm2020/lib/formly/field/selection/searchable/searchable.field.module.mjs +0 -91
- package/esm2020/lib/formly/field/selection/selection.field.mjs +0 -39
- package/esm2020/lib/formly/field/selection/sourceselect/sourceselect.field.module.mjs +0 -93
- package/esm2020/lib/formly/field/texteditor/texteditor.field.module.mjs +0 -51
- package/esm2020/lib/formly/field/value/array/array.field.module.mjs +0 -62
- package/esm2020/lib/formly/field/value/boolean/boolean.field.mjs +0 -47
- package/esm2020/lib/formly/field/value/date/date.field.module.mjs +0 -96
- package/esm2020/lib/formly/field/value/date/datetime.field.component.mjs +0 -488
- package/esm2020/lib/formly/field/value/date/datetime.field.mjs +0 -143
- package/esm2020/lib/formly/field/value/date/fixeddaterange.field.component.mjs +0 -506
- package/esm2020/lib/formly/field/value/phone/phone.field.component.mjs +0 -100
- package/esm2020/lib/formly/field/value/phone/phone.field.module.mjs +0 -66
- package/esm2020/lib/formly/field/wrapper/form.wrapper.module.mjs +0 -86
- package/esm2020/lib/formly/field/wrapper/section.wrapper.component.mjs +0 -26
- package/esm2020/lib/formly/field/wrapper/subsection.wrapper.component.mjs +0 -26
- package/esm2020/lib/formly/field/wrapper/wrapper.mjs +0 -78
- package/esm2020/lib/formly/formly.context.mjs +0 -100
- package/esm2020/mapbox/lib/field/latlng/latlng.field.mjs +0 -35
- package/esm2020/mapbox/lib/field/latlng/latlng.module.mjs +0 -59
- package/esm2020/mapbox/lib/field/zoom/zoom.field.mjs +0 -23
- package/esm2020/mapbox/lib/field/zoom/zoom.module.mjs +0 -57
- package/fesm2015/dereekb-dbx-form-calendar.mjs +0 -1955
- package/fesm2015/dereekb-dbx-form-calendar.mjs.map +0 -1
- package/fesm2015/dereekb-dbx-form-mapbox.mjs +0 -585
- package/fesm2015/dereekb-dbx-form-mapbox.mjs.map +0 -1
- package/fesm2015/dereekb-dbx-form.mjs +0 -6205
- package/fesm2015/dereekb-dbx-form.mjs.map +0 -1
- package/fesm2020/dereekb-dbx-form-calendar.mjs.map +0 -1
- package/fesm2020/dereekb-dbx-form-mapbox.mjs.map +0 -1
- package/fesm2020/dereekb-dbx-form.mjs.map +0 -1
- package/mapbox/esm2020/lib/field/latlng/latlng.field.mjs +0 -35
- package/mapbox/esm2020/lib/field/latlng/latlng.module.mjs +0 -59
- package/mapbox/esm2020/lib/field/zoom/zoom.field.mjs +0 -23
- package/mapbox/esm2020/lib/field/zoom/zoom.module.mjs +0 -57
- package/mapbox/fesm2015/dereekb-dbx-form-mapbox.mjs +0 -585
- package/mapbox/fesm2015/dereekb-dbx-form-mapbox.mjs.map +0 -1
- package/mapbox/fesm2020/dereekb-dbx-form-mapbox.mjs.map +0 -1
- /package/{esm2020 → esm2022}/calendar/dereekb-dbx-form-calendar.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/lib/calendar.schedule.selection.form.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/lib/field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/lib/field/schedule/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/lib/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dereekb-dbx-form.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/action/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/action/transition/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/form.angular.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/form.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form/io/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/config/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/config/validation.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/checklist/checklist.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/checklist/checklist.item.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/checklist/checklist.item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/checklist/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/component/component.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/component/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/list/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/list/list.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/pickable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/pickable/pickable.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/pickable/pickable.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/searchable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/searchable/searchable.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/searchable/searchable.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/searchable/text.chip.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/sourceselect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/sourceselect/sourceselect.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/selection/sourceselect/sourceselect.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/texteditor/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/texteditor/texteditor.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/array/array.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/array/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/boolean/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/date/date.value.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/date/datetime.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/date/datetime.preset.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/date/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/hidden.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/number/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/number/number.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/phone/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/phone/phone.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/text/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/text/text.additional.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/text/text.address.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/value/text/text.field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/field/wrapper/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/form/form.form.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/template/available.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/template/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/template/login.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/formly/template/timezone.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/layout/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/available.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/boolean.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/email.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/field.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/number.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/validator/phone.mjs +0 -0
- /package/{esm2020 → esm2022}/mapbox/dereekb-dbx-form-mapbox.mjs +0 -0
- /package/{esm2020 → esm2022}/mapbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/mapbox/lib/field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/mapbox/lib/field/latlng/index.mjs +0 -0
- /package/{esm2020 → esm2022}/mapbox/lib/field/zoom/index.mjs +0 -0
- /package/mapbox/{esm2020 → esm2022}/dereekb-dbx-form-mapbox.mjs +0 -0
- /package/mapbox/{esm2020 → esm2022}/index.mjs +0 -0
- /package/mapbox/{esm2020 → esm2022}/lib/field/index.mjs +0 -0
- /package/mapbox/{esm2020 → esm2022}/lib/field/latlng/index.mjs +0 -0
- /package/mapbox/{esm2020 → esm2022}/lib/field/zoom/index.mjs +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use '../style/config';
|
|
2
|
+
@use '../style/theming';
|
|
2
3
|
@use './calendar/calendar';
|
|
3
4
|
|
|
4
5
|
@mixin all-extension-core($theme-config) {
|
|
@@ -13,15 +14,19 @@
|
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
|
|
16
|
-
@mixin all-extension-typography($
|
|
17
|
+
@mixin all-extension-typography($theme-config-or-typography-config) {
|
|
17
18
|
$calendar-enabled: 1;
|
|
18
19
|
|
|
19
|
-
@if ($theme-config != null) {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
@if ($theme-config-or-typography-config != null) {
|
|
21
|
+
@if (theming.private-is-theme-object($theme-config-or-typography-config)) {
|
|
22
|
+
$theme-config: $theme-config-or-typography-config;
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
$calendar-enabled: config.get-dbx-extension-calendar-enabled($theme-config);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@if ($calendar-enabled == 1) {
|
|
28
|
+
@include calendar.typography($theme-config-or-typography-config);
|
|
29
|
+
}
|
|
25
30
|
}
|
|
26
31
|
}
|
|
27
32
|
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
padding: 4px;
|
|
42
42
|
|
|
43
43
|
// Remove padding from form
|
|
44
|
-
.mat-form-field-wrapper {
|
|
44
|
+
.mat-mdc-form-field-wrapper {
|
|
45
45
|
padding-bottom: 6px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.mat-form-field-infix {
|
|
48
|
+
.mat-mdc-form-field-infix {
|
|
49
49
|
padding: 0 !important;
|
|
50
50
|
border: none !important;
|
|
51
51
|
}
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
.dbx-schedule-selection-calendar-date-range-field {
|
|
55
55
|
width: 100%;
|
|
56
56
|
|
|
57
|
-
&.mat-form-field-type-mat-date-range-input .mat-form-field-infix {
|
|
57
|
+
&.mat-mdc-form-field-type-mat-date-range-input .mat-mdc-form-field-infix {
|
|
58
58
|
display: flex;
|
|
59
59
|
|
|
60
60
|
.mat-date-range-input {
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
|
|
80
80
|
.dbx-schedule-selection-calendar-date-range-field-content {
|
|
81
81
|
width: 100%;
|
|
82
|
+
padding-right: 12px;
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
.dbx-schedule-selection-calendar-cell {
|
|
@@ -145,12 +146,13 @@
|
|
|
145
146
|
@mixin color($theme-config) {
|
|
146
147
|
}
|
|
147
148
|
|
|
148
|
-
@mixin typography($typography-config) {
|
|
149
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
149
150
|
}
|
|
150
151
|
|
|
151
152
|
@mixin theme($theme-config) {
|
|
152
153
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-calendar') {
|
|
153
154
|
$color: theming.get-color-config($theme-config);
|
|
155
|
+
$density: theming.get-density-config($theme-config);
|
|
154
156
|
$typography: theming.get-typography-config($theme-config);
|
|
155
157
|
|
|
156
158
|
@if $color !=null {
|
|
@@ -158,7 +160,7 @@
|
|
|
158
160
|
}
|
|
159
161
|
|
|
160
162
|
@if $typography !=null {
|
|
161
|
-
@include typography($
|
|
163
|
+
@include typography($theme-config);
|
|
162
164
|
}
|
|
163
165
|
}
|
|
164
166
|
}
|
package/lib/form/_form.scss
CHANGED
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
@mixin color($theme-config) {
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
@mixin typography($typography-config) {
|
|
12
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
@mixin theme($theme-config) {
|
|
16
16
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-form') {
|
|
17
17
|
$color: theming.get-color-config($theme-config);
|
|
18
|
+
$density: theming.get-density-config($theme-config);
|
|
18
19
|
$typography: theming.get-typography-config($theme-config);
|
|
19
20
|
|
|
20
21
|
@if $color !=null {
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
@if $typography !=null {
|
|
25
|
-
@include typography($
|
|
26
|
+
@include typography($theme-config);
|
|
26
27
|
}
|
|
27
28
|
}
|
|
28
29
|
}
|
|
@@ -6,7 +6,7 @@ import { DbxMutableForm } from '../../form/form';
|
|
|
6
6
|
import { MapFunction } from '@dereekb/util';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare const APP_ACTION_FORM_DISABLED_KEY = "dbx_action_form";
|
|
9
|
-
export
|
|
9
|
+
export type DbxActionFormMapValueFunction<T, O> = MapFunction<T, ObservableOrValue<DbxActionValueOnTriggerResult<O>>>;
|
|
10
10
|
/**
|
|
11
11
|
* Used with an action to bind a form to an action as it's value source.
|
|
12
12
|
*
|
|
@@ -43,5 +43,5 @@ export declare class DbxActionFormDirective<T = object, O = T> implements OnInit
|
|
|
43
43
|
protected preCheckReadyValue(value: T): Observable<boolean>;
|
|
44
44
|
protected readyValue(value: T): Observable<DbxActionValueOnTriggerResult<O>>;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionFormDirective<any, any>, [{ host: true; }, null]>;
|
|
46
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionFormDirective<any, any>, "[dbxActionForm]", never, { "dbxActionFormValidator": "dbxActionFormValidator"; "dbxActionFormModified": "dbxActionFormModified"; "dbxActionFormMapValue": "dbxActionFormMapValue"; "formDisabledOnWorking": "formDisabledOnWorking"; }, {}, never, never, false>;
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionFormDirective<any, any>, "[dbxActionForm]", never, { "dbxActionFormValidator": { "alias": "dbxActionFormValidator"; "required": false; }; "dbxActionFormModified": { "alias": "dbxActionFormModified"; "required": false; }; "dbxActionFormMapValue": { "alias": "dbxActionFormMapValue"; "required": false; }; "formDisabledOnWorking": { "alias": "formDisabledOnWorking"; "required": false; }; }, {}, never, never, false, never>;
|
|
47
47
|
}
|
|
@@ -16,5 +16,5 @@ export declare class DbxActionFormSafetyDirective<T, O> extends DbxActionTransit
|
|
|
16
16
|
constructor(dbxActionForm: DbxActionFormDirective<T>, source: DbxActionContextStoreSourceInstance<T, O>, transitionService: TransitionService, viewContainerRef: ViewContainerRef, dialog: MatDialog);
|
|
17
17
|
protected _handleOnBeforeTransition(transition: Transition): HookResult;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionFormSafetyDirective<any, any>, [{ host: true; }, null, null, null, null]>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionFormSafetyDirective<any, any>, "[dbxActionFormSafety]", never, { "inputSafetyType": "dbxActionFormSafety"; }, {}, never, never, false>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionFormSafetyDirective<any, any>, "[dbxActionFormSafety]", never, { "inputSafetyType": { "alias": "dbxActionFormSafety"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
20
|
}
|
|
@@ -4,7 +4,7 @@ import { Observable } from 'rxjs';
|
|
|
4
4
|
/**
|
|
5
5
|
* A FormGroup/AbstractControl path to a specific control.
|
|
6
6
|
*/
|
|
7
|
-
export
|
|
7
|
+
export type FormControlPath = string;
|
|
8
8
|
/**
|
|
9
9
|
* Streams a value from the input control at the given path. If no path is specified, streams the value from the control.
|
|
10
10
|
*
|
package/lib/form/form.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export declare enum DbxFormState {
|
|
|
23
23
|
/**
|
|
24
24
|
* Unique key for disabling/enabling.
|
|
25
25
|
*/
|
|
26
|
-
export
|
|
26
|
+
export type DbxFormDisabledKey = string;
|
|
27
27
|
export declare const DEFAULT_FORM_DISABLED_KEY = "dbx_form_disabled";
|
|
28
28
|
export interface DbxFormStateRef {
|
|
29
29
|
readonly state: DbxFormState;
|
|
@@ -15,5 +15,5 @@ export declare class DbxFormValueChangesDirective<T> extends AbstractSubscriptio
|
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFormValueChangesDirective<any>, [{ host: true; }]>;
|
|
18
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormValueChangesDirective<any>, "[dbxFormValueChange]", never, {}, { "dbxFormValueChange": "dbxFormValueChange"; }, never, never, false>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormValueChangesDirective<any>, "[dbxFormValueChange]", never, {}, { "dbxFormValueChange": "dbxFormValueChange"; }, never, never, false, never>;
|
|
19
19
|
}
|
|
@@ -13,7 +13,7 @@ export declare function dbxFormSourceObservableFromStream<T>(stream$: Observable
|
|
|
13
13
|
* - reset: only copy data when the form is reset.
|
|
14
14
|
* - always: always copy data when the data observable emits a value.
|
|
15
15
|
*/
|
|
16
|
-
export
|
|
16
|
+
export type DbxFormSourceDirectiveMode = 'reset' | 'always';
|
|
17
17
|
/**
|
|
18
18
|
* Used with a FormComponent to set the value based on the input value.
|
|
19
19
|
*/
|
|
@@ -27,5 +27,5 @@ export declare class DbxFormSourceDirective<T> extends AbstractSubscriptionDirec
|
|
|
27
27
|
private setObs;
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFormSourceDirective<any>, [{ host: true; }]>;
|
|
30
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormSourceDirective<any>, "[dbxFormSource]", never, { "mode": "dbxFormSourceMode"; "obs": "dbxFormSource"; }, {}, never, never, false>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormSourceDirective<any>, "[dbxFormSource]", never, { "mode": { "alias": "dbxFormSourceMode"; "required": false; }; "obs": { "alias": "dbxFormSource"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
31
|
}
|
|
@@ -21,5 +21,5 @@ export declare class DbxFormLoadingSourceDirective<T extends object = object> ex
|
|
|
21
21
|
private _setObs;
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFormLoadingSourceDirective<any>, [{ host: true; }]>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormLoadingSourceDirective<any>, "[dbxFormLoadingSource]", never, { "mode": "dbxFormLoadingSourceMode"; "obs": "dbxFormLoadingSource"; }, {}, never, never, false>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFormLoadingSourceDirective<any>, "[dbxFormLoadingSource]", never, { "mode": { "alias": "dbxFormLoadingSourceMode"; "required": false; }; "obs": { "alias": "dbxFormLoadingSource"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
25
|
}
|
package/lib/formly/_formly.scss
CHANGED
|
@@ -4,26 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
// MARK: Mixin
|
|
6
6
|
@mixin core() {
|
|
7
|
-
// MARK: Material
|
|
8
|
-
.mat-form-field-appearance-standard .mat-form-field-appearance-outline .mat-form-field-flex {
|
|
9
|
-
padding-top: unset;
|
|
10
|
-
}
|
|
7
|
+
// MARK: Material Global Styles
|
|
11
8
|
|
|
12
|
-
.mat-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
.mat-mdc-form-field {
|
|
10
|
+
// in Angular Material 16 when using dynamic padding there is no space reserved between fields; the only space is the hint or error if applicable. This add a minor amount of padding to each input.
|
|
11
|
+
padding: 6px 0;
|
|
15
12
|
}
|
|
16
13
|
}
|
|
17
14
|
|
|
18
15
|
@mixin color($theme-config) {
|
|
19
16
|
}
|
|
20
17
|
|
|
21
|
-
@mixin typography($typography-config) {
|
|
18
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
22
19
|
}
|
|
23
20
|
|
|
24
21
|
@mixin theme($theme-config) {
|
|
25
22
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-formly') {
|
|
26
23
|
$color: theming.get-color-config($theme-config);
|
|
24
|
+
$density: theming.get-density-config($theme-config);
|
|
27
25
|
$typography: theming.get-typography-config($theme-config);
|
|
28
26
|
|
|
29
27
|
@if $color !=null {
|
|
@@ -31,7 +29,7 @@
|
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
@if $typography !=null {
|
|
34
|
-
@include typography($
|
|
32
|
+
@include typography($theme-config);
|
|
35
33
|
}
|
|
36
34
|
}
|
|
37
35
|
}
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
@include wrapper.core();
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
@mixin all-field-typography($
|
|
18
|
-
@include checklist.typography($
|
|
19
|
-
@include component.typography($
|
|
20
|
-
@include selection.all-selection-typography($
|
|
21
|
-
@include texteditor.typography($
|
|
22
|
-
@include value.all-value-typography($
|
|
23
|
-
@include wrapper.typography($
|
|
17
|
+
@mixin all-field-typography($theme-config) {
|
|
18
|
+
@include checklist.typography($theme-config);
|
|
19
|
+
@include component.typography($theme-config);
|
|
20
|
+
@include selection.all-selection-typography($theme-config);
|
|
21
|
+
@include texteditor.typography($theme-config);
|
|
22
|
+
@include value.all-value-typography($theme-config);
|
|
23
|
+
@include wrapper.typography($theme-config);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@mixin all-field-theme($theme-config) {
|
|
@@ -41,7 +41,7 @@ $dbx-checklist-item-spacing: 8px;
|
|
|
41
41
|
@mixin color($theme-config) {
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
@mixin typography($typography-config) {
|
|
44
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
45
45
|
.dbx-default-checklist-item-field {
|
|
46
46
|
.item-label {
|
|
47
47
|
font-size: 1.35em;
|
|
@@ -59,6 +59,7 @@ $dbx-checklist-item-spacing: 8px;
|
|
|
59
59
|
@mixin theme($theme-config) {
|
|
60
60
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-field-checklist') {
|
|
61
61
|
$color: theming.get-color-config($theme-config);
|
|
62
|
+
$density: theming.get-density-config($theme-config);
|
|
62
63
|
$typography: theming.get-typography-config($theme-config);
|
|
63
64
|
|
|
64
65
|
@if $color !=null {
|
|
@@ -66,7 +67,7 @@ $dbx-checklist-item-spacing: 8px;
|
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
@if $typography !=null {
|
|
69
|
-
@include typography($
|
|
70
|
+
@include typography($theme-config);
|
|
70
71
|
}
|
|
71
72
|
}
|
|
72
73
|
}
|
|
@@ -3,10 +3,10 @@ import { FormlyFieldConfig } from '@ngx-formly/core';
|
|
|
3
3
|
import { ChecklistItemDisplayContent, ChecklistItemFieldDisplayContentObs } from './checklist.item';
|
|
4
4
|
import { KeyValueTransformMap, Maybe } from '@dereekb/util';
|
|
5
5
|
import { ChecklistItemFieldBuilderInput } from './checklist.item.field';
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
6
|
+
export type ChecklistItemFieldDataSetFieldKey<D> = keyof D & string;
|
|
7
|
+
export type ChecklistItemFieldDataSetFieldValueForKey<D, K extends keyof D = keyof D> = D[K];
|
|
8
|
+
export type ChecklistType<D> = KeyValueTransformMap<D, boolean>;
|
|
9
|
+
export type ChecklistItemFieldDataSetBuilderInput<D, T> = {
|
|
10
10
|
key: ChecklistItemFieldDataSetFieldKey<D>;
|
|
11
11
|
} & ChecklistItemFieldBuilderInput<T>;
|
|
12
12
|
export interface ChecklistItemFieldDataSetItem<D, T extends ChecklistType<D>> {
|
|
@@ -35,4 +35,4 @@ export interface ChecklistItemDisplayContent<T = unknown> {
|
|
|
35
35
|
export interface ChecklistItemFieldDisplayComponent<T = unknown> {
|
|
36
36
|
displayContent?: ChecklistItemDisplayContent<T>;
|
|
37
37
|
}
|
|
38
|
-
export
|
|
38
|
+
export type ChecklistItemFieldDisplayContentObs<T = unknown> = Observable<ChecklistItemDisplayContent<T>>;
|
|
@@ -31,7 +31,7 @@ export declare class DbxChecklistItemFieldComponent<T = unknown> extends FieldTy
|
|
|
31
31
|
ngOnInit(): void;
|
|
32
32
|
ngOnDestroy(): void;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxChecklistItemFieldComponent<any>, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxChecklistItemFieldComponent<any>, "ng-component", never, {}, {}, never, never, false>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxChecklistItemFieldComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
35
35
|
}
|
|
36
36
|
export declare class DbxChecklistItemContentComponent<T = unknown> extends AbstractSubscriptionDirective implements OnInit {
|
|
37
37
|
readonly checklistItemFieldComponent: DbxChecklistItemFieldComponent<T>;
|
|
@@ -40,5 +40,5 @@ export declare class DbxChecklistItemContentComponent<T = unknown> extends Abstr
|
|
|
40
40
|
constructor(checklistItemFieldComponent: DbxChecklistItemFieldComponent<T>, cdRef: ChangeDetectorRef);
|
|
41
41
|
ngOnInit(): void;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxChecklistItemContentComponent<any>, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxChecklistItemContentComponent<any>, "dbx-checklist-item-content-component", never, {}, {}, never, never, false>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxChecklistItemContentComponent<any>, "dbx-checklist-item-content-component", never, {}, {}, never, never, false, never>;
|
|
44
44
|
}
|
|
@@ -2,9 +2,9 @@ import { ChecklistItemDisplayContent, ChecklistItemFieldDisplayComponent } from
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class DbxDefaultChecklistItemFieldDisplayComponent<T = unknown> implements ChecklistItemFieldDisplayComponent<T> {
|
|
4
4
|
displayContent: ChecklistItemDisplayContent<T>;
|
|
5
|
-
get label(): import("
|
|
6
|
-
get sublabel(): import("
|
|
7
|
-
get description(): import("
|
|
5
|
+
get label(): import("dist/packages/util/src").Maybe<string>;
|
|
6
|
+
get sublabel(): import("dist/packages/util/src").Maybe<string>;
|
|
7
|
+
get description(): import("dist/packages/util/src").Maybe<string>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDefaultChecklistItemFieldDisplayComponent<any>, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDefaultChecklistItemFieldDisplayComponent<any>, "ng-component", never, { "displayContent": "displayContent"; }, {}, never, never, false>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDefaultChecklistItemFieldDisplayComponent<any>, "ng-component", never, { "displayContent": { "alias": "displayContent"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -3,5 +3,5 @@ import { LabeledFieldConfig } from '../field';
|
|
|
3
3
|
import { DbxChecklistItemFieldProps } from './checklist.item.field.component';
|
|
4
4
|
export interface ChecklistItemFieldConfig<T = unknown> extends LabeledFieldConfig, DbxChecklistItemFieldProps<T> {
|
|
5
5
|
}
|
|
6
|
-
export
|
|
6
|
+
export type ChecklistItemFieldBuilderInput<T = unknown> = Partial<ChecklistItemFieldConfig<T>> & Pick<ChecklistItemFieldConfig<T>, 'key' | 'displayContentObs'>;
|
|
7
7
|
export declare function checklistItemField<T = unknown>(config: ChecklistItemFieldBuilderInput<T>): FormlyFieldConfig<DbxChecklistItemFieldProps<T>>;
|
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
@mixin color($theme-config) {
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
@mixin typography($typography-config) {
|
|
12
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
@mixin theme($theme-config) {
|
|
16
16
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-field-component') {
|
|
17
17
|
$color: theming.get-color-config($theme-config);
|
|
18
|
+
$density: theming.get-density-config($theme-config);
|
|
18
19
|
$typography: theming.get-typography-config($theme-config);
|
|
19
20
|
|
|
20
21
|
@if $color !=null {
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
@if $typography !=null {
|
|
25
|
-
@include typography($
|
|
26
|
+
@include typography($theme-config);
|
|
26
27
|
}
|
|
27
28
|
}
|
|
28
29
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { DbxInjectionComponentConfig } from '@dereekb/dbx-core';
|
|
2
2
|
import { FieldType, FormlyFieldConfig } from '@ngx-formly/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
4
|
+
export type DbxFormComponentFieldConfig<T> = DbxInjectionComponentConfig<T>;
|
|
5
5
|
export interface DbxFormComponentFormlyFieldConfig<T = unknown> extends FormlyFieldConfig {
|
|
6
6
|
componentField: DbxFormComponentFieldConfig<T>;
|
|
7
7
|
}
|
|
8
8
|
export declare class DbxFormComponentFieldComponent<T = unknown> extends FieldType<DbxFormComponentFormlyFieldConfig<T>> {
|
|
9
9
|
get config(): DbxInjectionComponentConfig<T>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFormComponentFieldComponent<any>, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFormComponentFieldComponent<any>, "ng-component", never, {}, {}, never, never, false>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFormComponentFieldComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DbxFormComponentFieldConfig, DbxFormComponentFormlyFieldConfig } from './component.field.component';
|
|
2
|
-
export
|
|
2
|
+
export type ComponentFieldConfig<T = unknown> = DbxFormComponentFieldConfig<T>;
|
|
3
3
|
export declare function componentField<T = unknown>(config: ComponentFieldConfig<T>): DbxFormComponentFormlyFieldConfig<T>;
|
|
@@ -3,7 +3,7 @@ import { FilterKeyValueTuplesInput, GeneralFilterFromPOJOFunction, ArrayOrValue,
|
|
|
3
3
|
import { FormlyFieldConfig, FormlyFieldProps } from '@ngx-formly/core';
|
|
4
4
|
import { ValidationMessageOption } from '@ngx-formly/core/lib/models';
|
|
5
5
|
import { FormlyFieldProps as MaterialFormlyFormFieldProps } from '@ngx-formly/material/form-field';
|
|
6
|
-
export
|
|
6
|
+
export type FormlyValueParser<I = any, O = any> = MapFunction<I, O>;
|
|
7
7
|
export interface FieldConfigParsersRef {
|
|
8
8
|
parsers: FormlyValueParser[];
|
|
9
9
|
}
|
|
@@ -15,7 +15,7 @@ export interface FieldConfig extends Pick<FormlyFieldConfig, 'expressions' | 'pa
|
|
|
15
15
|
export interface FieldConfigWithParsers {
|
|
16
16
|
parsers?: FormlyValueParser[];
|
|
17
17
|
}
|
|
18
|
-
export
|
|
18
|
+
export type DisableAutocompleteForField = false;
|
|
19
19
|
export interface LabeledFieldConfig extends FieldConfig {
|
|
20
20
|
key: string;
|
|
21
21
|
label?: string;
|
|
@@ -38,7 +38,7 @@ export interface AttributesFieldConfig {
|
|
|
38
38
|
export interface DescriptionFieldConfig {
|
|
39
39
|
description?: string;
|
|
40
40
|
}
|
|
41
|
-
export
|
|
41
|
+
export type PartialPotentialFieldConfig = Partial<FieldConfig> & Partial<LabeledFieldConfig> & Partial<AttributesFieldConfig> & Partial<DescriptionFieldConfig>;
|
|
42
42
|
/**
|
|
43
43
|
* Validates the configuration on the input field.
|
|
44
44
|
*/
|
|
@@ -71,7 +71,7 @@ export declare function disableFormlyFieldAutofillAttributes(): {
|
|
|
71
71
|
name: string;
|
|
72
72
|
autocomplete: string;
|
|
73
73
|
};
|
|
74
|
-
export
|
|
74
|
+
export type FormlyMessageProperties = {
|
|
75
75
|
[messageProperties: string]: ValidationMessageOption['message'];
|
|
76
76
|
};
|
|
77
77
|
export interface ValidatorsForFieldConfigInput {
|
|
@@ -79,7 +79,7 @@ export interface ValidatorsForFieldConfigInput {
|
|
|
79
79
|
asyncValidators?: ArrayOrValue<AsyncValidatorFn>;
|
|
80
80
|
messages?: Maybe<FormlyMessageProperties>;
|
|
81
81
|
}
|
|
82
|
-
export
|
|
82
|
+
export type ValidatorsForFieldConfig = {
|
|
83
83
|
validation?: {
|
|
84
84
|
messages?: FormlyMessageProperties;
|
|
85
85
|
};
|
|
@@ -94,9 +94,3 @@ export declare function validatorsForFieldConfig(input: ValidatorsForFieldConfig
|
|
|
94
94
|
export interface MaterialFormFieldConfig {
|
|
95
95
|
materialFormField?: Pick<MaterialFormlyFormFieldProps, 'prefix' | 'suffix' | 'hideLabel' | 'hideRequiredMarker' | 'hideFieldUnderline' | 'floatLabel' | 'appearance' | 'color' | 'hintStart' | 'hintEnd'>;
|
|
96
96
|
}
|
|
97
|
-
/**
|
|
98
|
-
* MARK: Compat
|
|
99
|
-
*
|
|
100
|
-
* @deprecated use propsAndConfigForFieldConfig instead.
|
|
101
|
-
*/
|
|
102
|
-
export declare const propsForFieldConfig: typeof propsAndConfigForFieldConfig;
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
@include sourceselect.core();
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
@mixin all-selection-typography($
|
|
14
|
-
@include list.typography($
|
|
15
|
-
@include pickable.typography($
|
|
16
|
-
@include searchable.typography($
|
|
17
|
-
@include sourceselect.typography($
|
|
13
|
+
@mixin all-selection-typography($theme-config) {
|
|
14
|
+
@include list.typography($theme-config);
|
|
15
|
+
@include pickable.typography($theme-config);
|
|
16
|
+
@include searchable.typography($theme-config);
|
|
17
|
+
@include sourceselect.typography($theme-config);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
@mixin all-selection-theme($theme-config) {
|
|
@@ -14,12 +14,13 @@ $dbx-list-item-field-content-max-height: 300px;
|
|
|
14
14
|
@mixin color($theme-config) {
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
@mixin typography($typography-config) {
|
|
17
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
@mixin theme($theme-config) {
|
|
21
21
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-field-selection-list') {
|
|
22
22
|
$color: theming.get-color-config($theme-config);
|
|
23
|
+
$density: theming.get-density-config($theme-config);
|
|
23
24
|
$typography: theming.get-typography-config($theme-config);
|
|
24
25
|
|
|
25
26
|
@if $color !=null {
|
|
@@ -27,7 +28,7 @@ $dbx-list-item-field-content-max-height: 300px;
|
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
@if $typography !=null {
|
|
30
|
-
@include typography($
|
|
31
|
+
@include typography($theme-config);
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
}
|
|
@@ -49,5 +49,5 @@ export declare class DbxItemListFieldComponent<T = unknown, C extends AbstractDb
|
|
|
49
49
|
updateForSelection(list: ListSelectionState<T>): void;
|
|
50
50
|
setValues(values: Maybe<K[]>): void;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxItemListFieldComponent<any, any, any>, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxItemListFieldComponent<any, any, any>, "ng-component", never, {}, {}, never, never, false>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxItemListFieldComponent<any, any, any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
53
53
|
}
|
|
@@ -12,24 +12,18 @@
|
|
|
12
12
|
max-height: 400px;
|
|
13
13
|
overflow: auto;
|
|
14
14
|
}
|
|
15
|
-
|
|
16
|
-
.dbx-default-pickable-item-field-list-item {
|
|
17
|
-
height: 56px;
|
|
18
|
-
display: flex;
|
|
19
|
-
align-items: center;
|
|
20
|
-
padding: 0 16px;
|
|
21
|
-
}
|
|
22
15
|
}
|
|
23
16
|
|
|
24
17
|
@mixin color($theme-config) {
|
|
25
18
|
}
|
|
26
19
|
|
|
27
|
-
@mixin typography($typography-config) {
|
|
20
|
+
@mixin typography($theme-config-or-typography-config) {
|
|
28
21
|
}
|
|
29
22
|
|
|
30
23
|
@mixin theme($theme-config) {
|
|
31
24
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-field-selection-pickable') {
|
|
32
25
|
$color: theming.get-color-config($theme-config);
|
|
26
|
+
$density: theming.get-density-config($theme-config);
|
|
33
27
|
$typography: theming.get-typography-config($theme-config);
|
|
34
28
|
|
|
35
29
|
@if $color !=null {
|
|
@@ -37,7 +31,7 @@
|
|
|
37
31
|
}
|
|
38
32
|
|
|
39
33
|
@if $typography !=null {
|
|
40
|
-
@include typography($
|
|
34
|
+
@include typography($theme-config);
|
|
41
35
|
}
|
|
42
36
|
}
|
|
43
37
|
}
|
|
@@ -6,5 +6,5 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class DbxPickableChipListFieldComponent<T> extends AbstractDbxPickableItemFieldDirective<T> {
|
|
7
7
|
itemClicked(item: PickableItemFieldItem<T>): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPickableChipListFieldComponent<any>, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPickableChipListFieldComponent<any>, "ng-component", never, {}, {}, never, never, false>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPickableChipListFieldComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Maybe, PrimativeKey } from '@dereekb/util';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { SelectionDisplayValue, SelectionValue, SelectionValueHashFunction } from '../selection';
|
|
4
|
-
export
|
|
5
|
-
export
|
|
4
|
+
export type PickableValueFieldValue<T, M = unknown> = SelectionValue<T, M>;
|
|
5
|
+
export type PickableValueFieldDisplayValue<T, M = unknown> = SelectionDisplayValue<T, M>;
|
|
6
6
|
/**
|
|
7
7
|
* PickableValueField function for retrieving all values.
|
|
8
8
|
*/
|
|
9
|
-
export
|
|
9
|
+
export type PickableValueFieldLoadValuesFunction<T, M = unknown> = () => Observable<PickableValueFieldValue<T, M>[]>;
|
|
10
10
|
/**
|
|
11
11
|
* PickableValueField function that allows the values a chance to go through another observable for any changes.
|
|
12
12
|
*
|
|
@@ -15,28 +15,12 @@ export declare type PickableValueFieldLoadValuesFunction<T, M = unknown> = () =>
|
|
|
15
15
|
*
|
|
16
16
|
* The value itself should not change. All other fields on the value may change, however.
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type PickableValueFieldDisplayFunction<T, M = unknown> = (values: PickableValueFieldValue<T, M>[]) => Observable<PickableValueFieldDisplayValue<T, M>[]>;
|
|
19
19
|
/**
|
|
20
20
|
* Used for filtering the values that should be displayed.
|
|
21
21
|
*/
|
|
22
|
-
export
|
|
22
|
+
export type PickableValueFieldFilterFunction<T, M = unknown> = (flterText: Maybe<string>, values: PickableValueFieldDisplayValue<T, M>[]) => Observable<T[]>;
|
|
23
23
|
/**
|
|
24
24
|
* Used to hash the value from the input pickable value.
|
|
25
25
|
*/
|
|
26
|
-
export
|
|
27
|
-
/**
|
|
28
|
-
* @deprecated Replace with PickableValueFieldLoadValuesFunction
|
|
29
|
-
*/
|
|
30
|
-
export declare type PickableValueFieldLoadValuesFn<T, M = unknown> = PickableValueFieldLoadValuesFunction<T, M>;
|
|
31
|
-
/**
|
|
32
|
-
* @deprecated Replace with PickableValueFieldDisplayFunction
|
|
33
|
-
*/
|
|
34
|
-
export declare type PickableValueFieldDisplayFn<T, M = unknown> = PickableValueFieldDisplayFunction<T, M>;
|
|
35
|
-
/**
|
|
36
|
-
* @deprecated Replace with PickableValueFieldFilterFunction
|
|
37
|
-
*/
|
|
38
|
-
export declare type PickableValueFieldFilterFn<T, M = unknown> = PickableValueFieldFilterFunction<T, M>;
|
|
39
|
-
/**
|
|
40
|
-
* @deprecated Replace with PickableValueFieldHashFunction
|
|
41
|
-
*/
|
|
42
|
-
export declare type PickableValueFieldHashFn<T, H extends PrimativeKey = PrimativeKey> = PickableValueFieldHashFunction<T, H>;
|
|
26
|
+
export type PickableValueFieldHashFunction<T, H extends PrimativeKey = PrimativeKey> = SelectionValueHashFunction<T, H>;
|
|
@@ -13,8 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
/**
|
|
14
14
|
* Wraps the selected state with the items.
|
|
15
15
|
*/
|
|
16
|
-
export
|
|
17
|
-
export
|
|
16
|
+
export type PickableItemFieldItem<T, M = unknown> = DbxValueListItem<PickableValueFieldDisplayValue<T, M>>;
|
|
17
|
+
export type PickableItemFieldItemSortFn<T, M = unknown> = (items: PickableItemFieldItem<T, M>[]) => PickableItemFieldItem<T, M>[];
|
|
18
18
|
export interface PickableValueFieldsFieldProps<T, M = unknown, H extends PrimativeKey = PrimativeKey> extends FormlyFieldProps {
|
|
19
19
|
/**
|
|
20
20
|
* Loads all pickable values.
|
|
@@ -163,5 +163,5 @@ export declare class AbstractDbxPickableItemFieldDirective<T, M = unknown, H ext
|
|
|
163
163
|
setValues(values: T[]): void;
|
|
164
164
|
protected _setValueOnFormControl(values: T[]): void;
|
|
165
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbxPickableItemFieldDirective<any, any, any>, never>;
|
|
166
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxPickableItemFieldDirective<any, any, any>, never, never, {}, {}, never, never, false>;
|
|
166
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxPickableItemFieldDirective<any, any, any>, never, never, {}, {}, never, never, false, never>;
|
|
167
167
|
}
|