@anglr/datetime 1.0.0 → 2.0.1-beta.20220222061608
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/changelog.md +19 -0
- package/date-fns/package.json +7 -7
- package/date-fns/src/{date-fns.d.ts → index.d.ts} +4 -4
- package/date-fns/src/index.d.ts.map +1 -0
- package/date-fns/src/misc/tokens.d.ts +10 -10
- package/date-fns/src/services/dateFnsDateApi.service.d.ts +36 -33
- package/date-fns/src/services/dateFnsDateApi.service.d.ts.map +1 -1
- package/date-fns/src/services/dateFnsLocale.service.d.ts +10 -10
- package/es2015/date-fns/src/index.js +4 -0
- package/es2015/date-fns/src/index.js.map +1 -0
- package/es2015/date-fns/src/misc/tokens.js +20 -0
- package/es2015/date-fns/src/misc/tokens.js.map +1 -0
- package/es2015/date-fns/src/services/dateFnsDateApi.service.js +438 -0
- package/es2015/date-fns/src/services/dateFnsDateApi.service.js.map +1 -0
- package/es2015/date-fns/src/services/dateFnsLocale.service.js +2 -0
- package/es2015/date-fns/src/services/dateFnsLocale.service.js.map +1 -0
- package/es2015/karma.conf.js +57 -0
- package/es2015/karma.conf.js.map +1 -0
- package/{moment/src/moment.d.ts → es2015/moment/src/index.js} +3 -3
- package/es2015/moment/src/index.js.map +1 -0
- package/es2015/moment/src/misc/tokens.js +15 -0
- package/es2015/moment/src/misc/tokens.js.map +1 -0
- package/es2015/moment/src/services/momentDateApi.service.js +398 -0
- package/es2015/moment/src/services/momentDateApi.service.js.map +1 -0
- package/{src/datetime.d.ts → es2015/src/index.js} +19 -19
- package/es2015/src/index.js.map +1 -0
- package/es2015/src/misc/constants.js +33 -0
- package/es2015/src/misc/constants.js.map +1 -0
- package/es2015/src/misc/datetime.interface.js +2 -0
- package/es2015/src/misc/datetime.interface.js.map +1 -0
- package/es2015/src/misc/tokens.js +19 -0
- package/es2015/src/misc/tokens.js.map +1 -0
- package/es2015/src/misc/validators.js +58 -0
- package/es2015/src/misc/validators.js.map +1 -0
- package/es2015/src/modules/datePipes.module.js +33 -0
- package/es2015/src/modules/datePipes.module.js.map +1 -0
- package/es2015/src/picker/components/dayPicker/dayPicker.component.js +172 -0
- package/es2015/src/picker/components/dayPicker/dayPicker.component.js.map +1 -0
- package/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js +2 -0
- package/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js.map +1 -0
- package/es2015/src/picker/components/monthPicker/monthPicker.component.js +114 -0
- package/es2015/src/picker/components/monthPicker/monthPicker.component.js.map +1 -0
- package/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js +2 -0
- package/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js.map +1 -0
- package/es2015/src/picker/components/picker/picker.component.animations.js +71 -0
- package/es2015/src/picker/components/picker/picker.component.animations.js.map +1 -0
- package/es2015/src/picker/components/picker/picker.component.js +241 -0
- package/es2015/src/picker/components/picker/picker.component.js.map +1 -0
- package/es2015/src/picker/components/pickerBase.component.js +243 -0
- package/es2015/src/picker/components/pickerBase.component.js.map +1 -0
- package/es2015/src/picker/components/yearPicker/yearPicker.component.js +126 -0
- package/es2015/src/picker/components/yearPicker/yearPicker.component.js.map +1 -0
- package/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js +2 -0
- package/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js.map +1 -0
- package/es2015/src/picker/interfaces.js +5 -0
- package/es2015/src/picker/interfaces.js.map +1 -0
- package/es2015/src/picker/misc/datetimePicker.interface.js +2 -0
- package/es2015/src/picker/misc/datetimePicker.interface.js.map +1 -0
- package/es2015/src/picker/misc/tokens.js +6 -0
- package/es2015/src/picker/misc/tokens.js.map +1 -0
- package/es2015/src/picker/modules/picker.module.js +46 -0
- package/es2015/src/picker/modules/picker.module.js.map +1 -0
- package/es2015/src/picker/types.js +8 -0
- package/es2015/src/picker/types.js.map +1 -0
- package/es2015/src/pipes/asRequiredType.js +22 -0
- package/es2015/src/pipes/asRequiredType.js.map +1 -0
- package/es2015/src/pipes/dateConvert.pipe.js +35 -0
- package/es2015/src/pipes/dateConvert.pipe.js.map +1 -0
- package/es2015/src/pipes/dateFormat.pipe.js +45 -0
- package/es2015/src/pipes/dateFormat.pipe.js.map +1 -0
- package/es2015/src/selector/components/inputDateTime/inputDateTime.component.js +421 -0
- package/es2015/src/selector/components/inputDateTime/inputDateTime.component.js.map +1 -0
- package/es2015/src/selector/components/selector/selector.component.animations.js +15 -0
- package/es2015/src/selector/components/selector/selector.component.animations.js.map +1 -0
- package/es2015/src/selector/components/selector/selector.component.js +344 -0
- package/es2015/src/selector/components/selector/selector.component.js.map +1 -0
- package/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +317 -0
- package/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js.map +1 -0
- package/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +51 -0
- package/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js.map +1 -0
- package/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +51 -0
- package/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js.map +1 -0
- package/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +47 -0
- package/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js.map +1 -0
- package/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +119 -0
- package/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js.map +1 -0
- package/es2015/src/selector/interfaces.js +2 -0
- package/es2015/src/selector/interfaces.js.map +1 -0
- package/es2015/src/selector/misc/datetimeSelector.interface.js +2 -0
- package/es2015/src/selector/misc/datetimeSelector.interface.js.map +1 -0
- package/es2015/src/selector/misc/tokens.js +6 -0
- package/es2015/src/selector/misc/tokens.js.map +1 -0
- package/es2015/src/selector/modules/basicSelector.module.js +20 -0
- package/es2015/src/selector/modules/basicSelector.module.js.map +1 -0
- package/es2015/src/selector/modules/selector.module.js +60 -0
- package/es2015/src/selector/modules/selector.module.js.map +1 -0
- package/es2015/src/selector/types.js +10 -0
- package/es2015/src/selector/types.js.map +1 -0
- package/es2015/src/services/dateApi.interface.js +2 -0
- package/es2015/src/services/dateApi.interface.js.map +1 -0
- package/es2015/src/services/datePositionParser.interface.js +2 -0
- package/es2015/src/services/datePositionParser.interface.js.map +1 -0
- package/es2015/src/services/datePositionParser.service.js +227 -0
- package/es2015/src/services/datePositionParser.service.js.map +1 -0
- package/es2015/src/services/dateTimeRelativeParser.service.js +66 -0
- package/es2015/src/services/dateTimeRelativeParser.service.js.map +1 -0
- package/es2015/src/services/dateValueProvider.service.js +58 -0
- package/es2015/src/services/dateValueProvider.service.js.map +1 -0
- package/es2015/src/services/formatProvider.interface.js +2 -0
- package/es2015/src/services/formatProvider.interface.js.map +1 -0
- package/es2015/src/services/index.js +4 -0
- package/es2015/src/services/index.js.map +1 -0
- package/es2020/date-fns/src/index.js +4 -0
- package/es2020/date-fns/src/index.js.map +1 -0
- package/es2020/date-fns/src/misc/tokens.js +20 -0
- package/es2020/date-fns/src/misc/tokens.js.map +1 -0
- package/es2020/date-fns/src/services/dateFnsDateApi.service.js +437 -0
- package/es2020/date-fns/src/services/dateFnsDateApi.service.js.map +1 -0
- package/es2020/date-fns/src/services/dateFnsLocale.service.js +2 -0
- package/es2020/date-fns/src/services/dateFnsLocale.service.js.map +1 -0
- package/es2020/karma.conf.js +57 -0
- package/es2020/karma.conf.js.map +1 -0
- package/es2020/moment/src/index.js +3 -0
- package/es2020/moment/src/index.js.map +1 -0
- package/es2020/moment/src/misc/tokens.js +15 -0
- package/es2020/moment/src/misc/tokens.js.map +1 -0
- package/es2020/moment/src/services/momentDateApi.service.js +398 -0
- package/es2020/moment/src/services/momentDateApi.service.js.map +1 -0
- package/es2020/src/index.js +19 -0
- package/es2020/src/index.js.map +1 -0
- package/es2020/src/misc/constants.js +33 -0
- package/es2020/src/misc/constants.js.map +1 -0
- package/es2020/src/misc/datetime.interface.js +2 -0
- package/es2020/src/misc/datetime.interface.js.map +1 -0
- package/es2020/src/misc/tokens.js +19 -0
- package/es2020/src/misc/tokens.js.map +1 -0
- package/es2020/src/misc/validators.js +58 -0
- package/es2020/src/misc/validators.js.map +1 -0
- package/es2020/src/modules/datePipes.module.js +33 -0
- package/es2020/src/modules/datePipes.module.js.map +1 -0
- package/es2020/src/picker/components/dayPicker/dayPicker.component.js +172 -0
- package/es2020/src/picker/components/dayPicker/dayPicker.component.js.map +1 -0
- package/es2020/src/picker/components/dayPicker/dayPicker.interfaces.js +2 -0
- package/es2020/src/picker/components/dayPicker/dayPicker.interfaces.js.map +1 -0
- package/es2020/src/picker/components/monthPicker/monthPicker.component.js +114 -0
- package/es2020/src/picker/components/monthPicker/monthPicker.component.js.map +1 -0
- package/es2020/src/picker/components/monthPicker/monthPicker.interfaces.js +2 -0
- package/es2020/src/picker/components/monthPicker/monthPicker.interfaces.js.map +1 -0
- package/es2020/src/picker/components/picker/picker.component.animations.js +71 -0
- package/es2020/src/picker/components/picker/picker.component.animations.js.map +1 -0
- package/es2020/src/picker/components/picker/picker.component.js +236 -0
- package/es2020/src/picker/components/picker/picker.component.js.map +1 -0
- package/es2020/src/picker/components/pickerBase.component.js +243 -0
- package/es2020/src/picker/components/pickerBase.component.js.map +1 -0
- package/es2020/src/picker/components/yearPicker/yearPicker.component.js +126 -0
- package/es2020/src/picker/components/yearPicker/yearPicker.component.js.map +1 -0
- package/es2020/src/picker/components/yearPicker/yearPicker.interfaces.js +2 -0
- package/es2020/src/picker/components/yearPicker/yearPicker.interfaces.js.map +1 -0
- package/es2020/src/picker/interfaces.js +5 -0
- package/es2020/src/picker/interfaces.js.map +1 -0
- package/es2020/src/picker/misc/datetimePicker.interface.js +2 -0
- package/es2020/src/picker/misc/datetimePicker.interface.js.map +1 -0
- package/es2020/src/picker/misc/tokens.js +6 -0
- package/es2020/src/picker/misc/tokens.js.map +1 -0
- package/es2020/src/picker/modules/picker.module.js +46 -0
- package/es2020/src/picker/modules/picker.module.js.map +1 -0
- package/es2020/src/picker/types.js +8 -0
- package/es2020/src/picker/types.js.map +1 -0
- package/es2020/src/pipes/asRequiredType.js +22 -0
- package/es2020/src/pipes/asRequiredType.js.map +1 -0
- package/es2020/src/pipes/dateConvert.pipe.js +35 -0
- package/es2020/src/pipes/dateConvert.pipe.js.map +1 -0
- package/es2020/src/pipes/dateFormat.pipe.js +45 -0
- package/es2020/src/pipes/dateFormat.pipe.js.map +1 -0
- package/es2020/src/selector/components/inputDateTime/inputDateTime.component.js +417 -0
- package/es2020/src/selector/components/inputDateTime/inputDateTime.component.js.map +1 -0
- package/es2020/src/selector/components/selector/selector.component.animations.js +15 -0
- package/es2020/src/selector/components/selector/selector.component.animations.js.map +1 -0
- package/es2020/src/selector/components/selector/selector.component.js +334 -0
- package/es2020/src/selector/components/selector/selector.component.js.map +1 -0
- package/es2020/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +314 -0
- package/es2020/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js.map +1 -0
- package/es2020/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +51 -0
- package/es2020/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js.map +1 -0
- package/es2020/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +51 -0
- package/es2020/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js.map +1 -0
- package/es2020/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +47 -0
- package/es2020/src/selector/directives/datetimeValidator/datetimeValidator.directive.js.map +1 -0
- package/es2020/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +118 -0
- package/es2020/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js.map +1 -0
- package/es2020/src/selector/interfaces.js +2 -0
- package/es2020/src/selector/interfaces.js.map +1 -0
- package/es2020/src/selector/misc/datetimeSelector.interface.js +2 -0
- package/es2020/src/selector/misc/datetimeSelector.interface.js.map +1 -0
- package/es2020/src/selector/misc/tokens.js +6 -0
- package/es2020/src/selector/misc/tokens.js.map +1 -0
- package/es2020/src/selector/modules/basicSelector.module.js +20 -0
- package/es2020/src/selector/modules/basicSelector.module.js.map +1 -0
- package/es2020/src/selector/modules/selector.module.js +60 -0
- package/es2020/src/selector/modules/selector.module.js.map +1 -0
- package/es2020/src/selector/types.js +10 -0
- package/es2020/src/selector/types.js.map +1 -0
- package/es2020/src/services/dateApi.interface.js +2 -0
- package/es2020/src/services/dateApi.interface.js.map +1 -0
- package/es2020/src/services/datePositionParser.interface.js +2 -0
- package/es2020/src/services/datePositionParser.interface.js.map +1 -0
- package/es2020/src/services/datePositionParser.service.js +227 -0
- package/es2020/src/services/datePositionParser.service.js.map +1 -0
- package/es2020/src/services/dateTimeRelativeParser.service.js +65 -0
- package/es2020/src/services/dateTimeRelativeParser.service.js.map +1 -0
- package/es2020/src/services/dateValueProvider.service.js +58 -0
- package/es2020/src/services/dateValueProvider.service.js.map +1 -0
- package/es2020/src/services/formatProvider.interface.js +2 -0
- package/es2020/src/services/formatProvider.interface.js.map +1 -0
- package/es2020/src/services/index.js +4 -0
- package/es2020/src/services/index.js.map +1 -0
- package/karma.conf.d.ts +2 -0
- package/karma.conf.d.ts.map +1 -0
- package/moment/package.json +7 -7
- package/moment/src/index.d.ts +3 -0
- package/moment/src/index.d.ts.map +1 -0
- package/moment/src/misc/tokens.d.ts +5 -5
- package/moment/src/services/momentDateApi.service.d.ts +35 -32
- package/moment/src/services/momentDateApi.service.d.ts.map +1 -1
- package/package.json +100 -48
- package/src/index.d.ts +19 -0
- package/src/index.d.ts.map +1 -0
- package/src/misc/constants.d.ts +32 -32
- package/src/misc/datetime.interface.d.ts +34 -34
- package/src/misc/tokens.d.ts +10 -10
- package/src/misc/validators.d.ts +25 -25
- package/src/modules/datePipes.module.d.ts +12 -5
- package/src/modules/datePipes.module.d.ts.map +1 -1
- package/src/picker/components/dayPicker/dayPicker.component.d.ts +68 -65
- package/src/picker/components/dayPicker/dayPicker.component.d.ts.map +1 -1
- package/src/picker/components/dayPicker/dayPicker.component.html +7 -7
- package/src/picker/components/dayPicker/dayPicker.interfaces.d.ts +10 -10
- package/src/picker/components/monthPicker/monthPicker.component.d.ts +52 -49
- package/src/picker/components/monthPicker/monthPicker.component.d.ts.map +1 -1
- package/src/picker/components/monthPicker/monthPicker.component.html +6 -6
- package/src/picker/components/monthPicker/monthPicker.interfaces.d.ts +6 -6
- package/src/picker/components/picker/picker.component.animations.d.ts +4 -4
- package/src/picker/components/picker/picker.component.d.ts +104 -101
- package/src/picker/components/picker/picker.component.d.ts.map +1 -1
- package/src/picker/components/pickerBase.component.d.ts +169 -166
- package/src/picker/components/pickerBase.component.d.ts.map +1 -1
- package/src/picker/components/yearPicker/yearPicker.component.d.ts +57 -54
- package/src/picker/components/yearPicker/yearPicker.component.d.ts.map +1 -1
- package/src/picker/components/yearPicker/yearPicker.component.html +6 -6
- package/src/picker/components/yearPicker/yearPicker.interfaces.d.ts +6 -6
- package/src/picker/interfaces.d.ts +4 -4
- package/src/picker/misc/datetimePicker.interface.d.ts +188 -188
- package/src/picker/misc/tokens.d.ts +6 -6
- package/src/picker/modules/picker.module.d.ts +16 -5
- package/src/picker/modules/picker.module.d.ts.map +1 -1
- package/src/picker/types.d.ts +7 -7
- package/src/pipes/asRequiredType.d.ts +21 -0
- package/src/pipes/asRequiredType.d.ts.map +1 -0
- package/src/pipes/dateConvert.pipe.d.ts +18 -15
- package/src/pipes/dateConvert.pipe.d.ts.map +1 -1
- package/src/pipes/dateFormat.pipe.d.ts +20 -17
- package/src/pipes/dateFormat.pipe.d.ts.map +1 -1
- package/src/selector/components/inputDateTime/inputDateTime.component.d.ts +187 -184
- package/src/selector/components/inputDateTime/inputDateTime.component.d.ts.map +1 -1
- package/src/selector/components/selector/selector.component.animations.d.ts +4 -4
- package/src/selector/components/selector/selector.component.d.ts +155 -152
- package/src/selector/components/selector/selector.component.d.ts.map +1 -1
- package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.d.ts +170 -167
- package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.d.ts.map +1 -1
- package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.d.ts +22 -19
- package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.d.ts.map +1 -1
- package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.d.ts +22 -19
- package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.d.ts.map +1 -1
- package/src/selector/directives/datetimeValidator/datetimeValidator.directive.d.ts +21 -18
- package/src/selector/directives/datetimeValidator/datetimeValidator.directive.d.ts.map +1 -1
- package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.d.ts +53 -50
- package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.d.ts.map +1 -1
- package/src/selector/interfaces.d.ts +1 -1
- package/src/selector/misc/datetimeSelector.interface.d.ts +82 -82
- package/src/selector/misc/tokens.d.ts +6 -6
- package/src/selector/modules/basicSelector.module.d.ts +10 -5
- package/src/selector/modules/basicSelector.module.d.ts.map +1 -1
- package/src/selector/modules/selector.module.d.ts +18 -5
- package/src/selector/modules/selector.module.d.ts.map +1 -1
- package/src/selector/types.d.ts +9 -9
- package/src/services/dateApi.interface.d.ts +275 -275
- package/src/services/datePositionParser.interface.d.ts +40 -40
- package/src/services/datePositionParser.service.d.ts +60 -57
- package/src/services/datePositionParser.service.d.ts.map +1 -1
- package/src/services/dateTimeRelativeParser.service.d.ts +21 -18
- package/src/services/dateTimeRelativeParser.service.d.ts.map +1 -1
- package/src/services/dateValueProvider.service.d.ts +18 -15
- package/src/services/dateValueProvider.service.d.ts.map +1 -1
- package/src/services/formatProvider.interface.d.ts +17 -17
- package/src/services/index.d.ts +3 -3
- package/tsconfig.karma.json +5 -6
- package/version.bak +1 -1
- package/appveyor.yml +0 -70
- package/date-fns/dist/es2015/date-fns/index.js +0 -10
- package/date-fns/dist/es2015/date-fns/public_api.js +0 -7
- package/date-fns/dist/es2015/date-fns/src/date-fns.js +0 -9
- package/date-fns/dist/es2015/date-fns/src/misc/tokens.js +0 -32
- package/date-fns/dist/es2015/date-fns/src/services/dateFnsDateApi.service.js +0 -512
- package/date-fns/dist/es2015/date-fns/src/services/dateFnsLocale.service.js +0 -18
- package/date-fns/dist/es5/date-fns/index.js +0 -10
- package/date-fns/dist/es5/date-fns/public_api.js +0 -7
- package/date-fns/dist/es5/date-fns/src/date-fns.js +0 -9
- package/date-fns/dist/es5/date-fns/src/misc/tokens.js +0 -32
- package/date-fns/dist/es5/date-fns/src/services/dateFnsDateApi.service.js +0 -902
- package/date-fns/dist/es5/date-fns/src/services/dateFnsLocale.service.js +0 -18
- package/date-fns/index.d.ts +0 -5
- package/date-fns/index.d.ts.map +0 -1
- package/date-fns/index.metadata.json +0 -1
- package/date-fns/public_api.d.ts +0 -2
- package/date-fns/public_api.d.ts.map +0 -1
- package/date-fns/src/date-fns.d.ts.map +0 -1
- package/date-fns/src/services/dateFnsDateApi.service.ngfactory.d.ts.map +0 -1
- package/datetime.d.ts +0 -7
- package/datetime.d.ts.map +0 -1
- package/datetime.metadata.json +0 -1
- package/dist/es2015/datetime.js +0 -10
- package/dist/es2015/public_api.js +0 -7
- package/dist/es2015/src/datetime.js +0 -24
- package/dist/es2015/src/misc/constants.js +0 -46
- package/dist/es2015/src/misc/datetime.interface.js +0 -52
- package/dist/es2015/src/misc/tokens.js +0 -29
- package/dist/es2015/src/misc/validators.js +0 -80
- package/dist/es2015/src/modules/datePipes.module.js +0 -26
- package/dist/es2015/src/picker/components/dayPicker/dayPicker.component.js +0 -215
- package/dist/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js +0 -18
- package/dist/es2015/src/picker/components/monthPicker/monthPicker.component.js +0 -138
- package/dist/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js +0 -11
- package/dist/es2015/src/picker/components/picker/picker.component.animations.js +0 -77
- package/dist/es2015/src/picker/components/picker/picker.component.js +0 -386
- package/dist/es2015/src/picker/components/pickerBase.component.js +0 -406
- package/dist/es2015/src/picker/components/yearPicker/yearPicker.component.js +0 -158
- package/dist/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js +0 -11
- package/dist/es2015/src/picker/interfaces.js +0 -10
- package/dist/es2015/src/picker/misc/datetimePicker.interface.js +0 -245
- package/dist/es2015/src/picker/misc/tokens.js +0 -12
- package/dist/es2015/src/picker/modules/picker.module.js +0 -35
- package/dist/es2015/src/picker/types.js +0 -13
- package/dist/es2015/src/pipes/dateConvert.pipe.js +0 -50
- package/dist/es2015/src/pipes/dateFormat.pipe.js +0 -64
- package/dist/es2015/src/selector/components/inputDateTime/inputDateTime.component.js +0 -588
- package/dist/es2015/src/selector/components/selector/selector.component.animations.js +0 -21
- package/dist/es2015/src/selector/components/selector/selector.component.js +0 -514
- package/dist/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +0 -456
- package/dist/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +0 -73
- package/dist/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +0 -73
- package/dist/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +0 -70
- package/dist/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +0 -171
- package/dist/es2015/src/selector/interfaces.js +0 -7
- package/dist/es2015/src/selector/misc/datetimeSelector.interface.js +0 -106
- package/dist/es2015/src/selector/misc/tokens.js +0 -12
- package/dist/es2015/src/selector/modules/basicSelector.module.js +0 -20
- package/dist/es2015/src/selector/modules/selector.module.js +0 -45
- package/dist/es2015/src/selector/types.js +0 -15
- package/dist/es2015/src/services/dateApi.interface.js +0 -316
- package/dist/es2015/src/services/datePositionParser.interface.js +0 -56
- package/dist/es2015/src/services/datePositionParser.service.js +0 -297
- package/dist/es2015/src/services/dateTimeRelativeParser.service.js +0 -97
- package/dist/es2015/src/services/dateValueProvider.service.js +0 -79
- package/dist/es2015/src/services/formatProvider.interface.js +0 -28
- package/dist/es2015/src/services/index.js +0 -9
- package/dist/es5/datetime.js +0 -10
- package/dist/es5/public_api.js +0 -7
- package/dist/es5/src/datetime.js +0 -24
- package/dist/es5/src/misc/constants.js +0 -46
- package/dist/es5/src/misc/datetime.interface.js +0 -52
- package/dist/es5/src/misc/tokens.js +0 -29
- package/dist/es5/src/misc/validators.js +0 -124
- package/dist/es5/src/modules/datePipes.module.js +0 -30
- package/dist/es5/src/picker/components/dayPicker/dayPicker.component.js +0 -323
- package/dist/es5/src/picker/components/dayPicker/dayPicker.interfaces.js +0 -18
- package/dist/es5/src/picker/components/monthPicker/monthPicker.component.js +0 -233
- package/dist/es5/src/picker/components/monthPicker/monthPicker.interfaces.js +0 -11
- package/dist/es5/src/picker/components/picker/picker.component.animations.js +0 -77
- package/dist/es5/src/picker/components/picker/picker.component.js +0 -460
- package/dist/es5/src/picker/components/pickerBase.component.js +0 -561
- package/dist/es5/src/picker/components/yearPicker/yearPicker.component.js +0 -253
- package/dist/es5/src/picker/components/yearPicker/yearPicker.interfaces.js +0 -11
- package/dist/es5/src/picker/interfaces.js +0 -10
- package/dist/es5/src/picker/misc/datetimePicker.interface.js +0 -245
- package/dist/es5/src/picker/misc/tokens.js +0 -12
- package/dist/es5/src/picker/modules/picker.module.js +0 -39
- package/dist/es5/src/picker/types.js +0 -13
- package/dist/es5/src/pipes/dateConvert.pipe.js +0 -63
- package/dist/es5/src/pipes/dateFormat.pipe.js +0 -79
- package/dist/es5/src/selector/components/inputDateTime/inputDateTime.component.js +0 -808
- package/dist/es5/src/selector/components/selector/selector.component.animations.js +0 -21
- package/dist/es5/src/selector/components/selector/selector.component.js +0 -653
- package/dist/es5/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +0 -656
- package/dist/es5/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +0 -84
- package/dist/es5/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +0 -84
- package/dist/es5/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +0 -82
- package/dist/es5/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +0 -230
- package/dist/es5/src/selector/interfaces.js +0 -7
- package/dist/es5/src/selector/misc/datetimeSelector.interface.js +0 -106
- package/dist/es5/src/selector/misc/tokens.js +0 -12
- package/dist/es5/src/selector/modules/basicSelector.module.js +0 -24
- package/dist/es5/src/selector/modules/selector.module.js +0 -49
- package/dist/es5/src/selector/types.js +0 -15
- package/dist/es5/src/services/dateApi.interface.js +0 -316
- package/dist/es5/src/services/datePositionParser.interface.js +0 -56
- package/dist/es5/src/services/datePositionParser.service.js +0 -366
- package/dist/es5/src/services/dateTimeRelativeParser.service.js +0 -108
- package/dist/es5/src/services/dateValueProvider.service.js +0 -92
- package/dist/es5/src/services/formatProvider.interface.js +0 -28
- package/dist/es5/src/services/index.js +0 -9
- package/moment/dist/es2015/moment/index.js +0 -10
- package/moment/dist/es2015/moment/public_api.js +0 -7
- package/moment/dist/es2015/moment/src/misc/tokens.js +0 -26
- package/moment/dist/es2015/moment/src/moment.js +0 -8
- package/moment/dist/es2015/moment/src/services/momentDateApi.service.js +0 -466
- package/moment/dist/es5/moment/index.js +0 -10
- package/moment/dist/es5/moment/public_api.js +0 -7
- package/moment/dist/es5/moment/src/misc/tokens.js +0 -26
- package/moment/dist/es5/moment/src/moment.js +0 -8
- package/moment/dist/es5/moment/src/services/momentDateApi.service.js +0 -858
- package/moment/index.d.ts +0 -5
- package/moment/index.d.ts.map +0 -1
- package/moment/index.metadata.json +0 -1
- package/moment/public_api.d.ts +0 -2
- package/moment/public_api.d.ts.map +0 -1
- package/moment/src/moment.d.ts.map +0 -1
- package/moment/src/services/momentDateApi.service.ngfactory.d.ts.map +0 -1
- package/public_api.d.ts +0 -2
- package/public_api.d.ts.map +0 -1
- package/src/datetime.d.ts.map +0 -1
- package/src/modules/datePipes.module.ngfactory.d.ts.map +0 -1
- package/src/picker/components/dayPicker/dayPicker.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/picker/components/dayPicker/dayPicker.component.ngfactory.d.ts.map +0 -1
- package/src/picker/components/monthPicker/monthPicker.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/picker/components/monthPicker/monthPicker.component.ngfactory.d.ts.map +0 -1
- package/src/picker/components/picker/picker.component.ngfactory.d.ts.map +0 -1
- package/src/picker/components/yearPicker/yearPicker.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/picker/components/yearPicker/yearPicker.component.ngfactory.d.ts.map +0 -1
- package/src/picker/modules/picker.module.ngfactory.d.ts.map +0 -1
- package/src/pipes/dateConvert.pipe.ngfactory.d.ts.map +0 -1
- package/src/pipes/dateFormat.pipe.ngfactory.d.ts.map +0 -1
- package/src/selector/components/inputDateTime/inputDateTime.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/selector/components/inputDateTime/inputDateTime.component.ngfactory.d.ts.map +0 -1
- package/src/selector/components/selector/selector.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/selector/components/selector/selector.component.ngfactory.d.ts.map +0 -1
- package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.css.shim.ngstyle.d.ts.map +0 -1
- package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.ngfactory.d.ts.map +0 -1
- package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.ngfactory.d.ts.map +0 -1
- package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.ngfactory.d.ts.map +0 -1
- package/src/selector/directives/datetimeValidator/datetimeValidator.directive.ngfactory.d.ts.map +0 -1
- package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.ngfactory.d.ts.map +0 -1
- package/src/selector/modules/basicSelector.module.ngfactory.d.ts.map +0 -1
- package/src/selector/modules/selector.module.ngfactory.d.ts.map +0 -1
- package/src/services/datePositionParser.service.ngfactory.d.ts.map +0 -1
- package/src/services/dateTimeRelativeParser.service.ngfactory.d.ts.map +0 -1
- package/src/services/dateValueProvider.service.ngfactory.d.ts.map +0 -1
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/picker/misc/datetimePicker.interface.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* Shared css classes for all pickers
|
|
8
|
-
* @record
|
|
9
|
-
*/
|
|
10
|
-
export function CommonPickerCssClasses() { }
|
|
11
|
-
if (false) {
|
|
12
|
-
/**
|
|
13
|
-
* Period selection element wrapping displayed period and previous, next buttons
|
|
14
|
-
* @type {?|undefined}
|
|
15
|
-
*/
|
|
16
|
-
CommonPickerCssClasses.prototype.periodSelection;
|
|
17
|
-
/**
|
|
18
|
-
* Element used for switching period to previous one
|
|
19
|
-
* @type {?|undefined}
|
|
20
|
-
*/
|
|
21
|
-
CommonPickerCssClasses.prototype.previousPeriod;
|
|
22
|
-
/**
|
|
23
|
-
* Element used for switching period to next one
|
|
24
|
-
* @type {?|undefined}
|
|
25
|
-
*/
|
|
26
|
-
CommonPickerCssClasses.prototype.nextPeriod;
|
|
27
|
-
/**
|
|
28
|
-
* Element representing currently displayed period
|
|
29
|
-
* @type {?|undefined}
|
|
30
|
-
*/
|
|
31
|
-
CommonPickerCssClasses.prototype.periodValue;
|
|
32
|
-
/**
|
|
33
|
-
* Element wrapping displayed period data
|
|
34
|
-
* @type {?|undefined}
|
|
35
|
-
*/
|
|
36
|
-
CommonPickerCssClasses.prototype.periodData;
|
|
37
|
-
/**
|
|
38
|
-
* Element representing single datum for period item
|
|
39
|
-
* @type {?|undefined}
|
|
40
|
-
*/
|
|
41
|
-
CommonPickerCssClasses.prototype.periodDatum;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Css classes applied to datetime picker
|
|
45
|
-
* @record
|
|
46
|
-
*/
|
|
47
|
-
export function DateTimePickerCssClasses() { }
|
|
48
|
-
if (false) {
|
|
49
|
-
/**
|
|
50
|
-
* Shared css classes for all pickers
|
|
51
|
-
* @type {?|undefined}
|
|
52
|
-
*/
|
|
53
|
-
DateTimePickerCssClasses.prototype.pickerShared;
|
|
54
|
-
/**
|
|
55
|
-
* Custom css classes specific for each picker type
|
|
56
|
-
* @type {?|undefined}
|
|
57
|
-
*/
|
|
58
|
-
DateTimePickerCssClasses.prototype.pickerCustom;
|
|
59
|
-
}
|
|
60
|
-
/**
|
|
61
|
-
* Defintion of datetime picker component options
|
|
62
|
-
* @record
|
|
63
|
-
* @template TPicker
|
|
64
|
-
*/
|
|
65
|
-
export function DateTimePickerOptions() { }
|
|
66
|
-
if (false) {
|
|
67
|
-
/**
|
|
68
|
-
* Order of pickers, it's possible use less pickers as is defined in pickerPeriodsDefinition for example 'month,year'
|
|
69
|
-
* @type {?|undefined}
|
|
70
|
-
*/
|
|
71
|
-
DateTimePickerOptions.prototype.pickerPeriodsOrder;
|
|
72
|
-
/**
|
|
73
|
-
* Definition of types for each period type for picker
|
|
74
|
-
* @type {?|undefined}
|
|
75
|
-
*/
|
|
76
|
-
DateTimePickerOptions.prototype.pickerPeriodsDefinition;
|
|
77
|
-
/**
|
|
78
|
-
* Name of default period for picker that is displayed
|
|
79
|
-
* @type {?|undefined}
|
|
80
|
-
*/
|
|
81
|
-
DateTimePickerOptions.prototype.defaultPeriod;
|
|
82
|
-
/**
|
|
83
|
-
* Css classes for date time picker
|
|
84
|
-
* @type {?|undefined}
|
|
85
|
-
*/
|
|
86
|
-
DateTimePickerOptions.prototype.cssClasses;
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* Describes datetime picker component used for displaying and selecting value
|
|
90
|
-
* @record
|
|
91
|
-
* @template TDate, TCssClasses
|
|
92
|
-
*/
|
|
93
|
-
export function DateTimePicker() { }
|
|
94
|
-
if (false) {
|
|
95
|
-
/**
|
|
96
|
-
* Gets current value of datetime
|
|
97
|
-
* @type {?}
|
|
98
|
-
*/
|
|
99
|
-
DateTimePicker.prototype.value;
|
|
100
|
-
/**
|
|
101
|
-
* Occurs when value changes
|
|
102
|
-
* @type {?}
|
|
103
|
-
*/
|
|
104
|
-
DateTimePicker.prototype.valueChange;
|
|
105
|
-
/**
|
|
106
|
-
* Occurs when user scales up
|
|
107
|
-
* @type {?}
|
|
108
|
-
*/
|
|
109
|
-
DateTimePicker.prototype.scaleUp;
|
|
110
|
-
/**
|
|
111
|
-
* Occurs when user scales down
|
|
112
|
-
* @type {?}
|
|
113
|
-
*/
|
|
114
|
-
DateTimePicker.prototype.scaleDown;
|
|
115
|
-
/**
|
|
116
|
-
* Sets css classes for picker, allowing to override defaults
|
|
117
|
-
* @param {?} cssClasses - Css classes to be set for picker
|
|
118
|
-
* @return {?}
|
|
119
|
-
*/
|
|
120
|
-
DateTimePicker.prototype.setCssClasses = function (cssClasses) { };
|
|
121
|
-
/**
|
|
122
|
-
* Sets minimal possible value for picker, that can be picked
|
|
123
|
-
* @param {?} value - Minimal possible value that can be picked
|
|
124
|
-
* @return {?}
|
|
125
|
-
*/
|
|
126
|
-
DateTimePicker.prototype.setMinValue = function (value) { };
|
|
127
|
-
/**
|
|
128
|
-
* Sets maximal possible value for picker, that can be picked
|
|
129
|
-
* @param {?} value - Maximal possible value that can be picked
|
|
130
|
-
* @return {?}
|
|
131
|
-
*/
|
|
132
|
-
DateTimePicker.prototype.setMaxValue = function (value) { };
|
|
133
|
-
/**
|
|
134
|
-
* Sets value of datetime picker
|
|
135
|
-
* @param {?} value - Value to be set to this picker
|
|
136
|
-
* @return {?}
|
|
137
|
-
*/
|
|
138
|
-
DateTimePicker.prototype.setValue = function (value) { };
|
|
139
|
-
/**
|
|
140
|
-
* Set displays date to be displayed
|
|
141
|
-
* @param {?} value - Value that identifies period that is going to be displayed
|
|
142
|
-
* @return {?}
|
|
143
|
-
*/
|
|
144
|
-
DateTimePicker.prototype.display = function (value) { };
|
|
145
|
-
/**
|
|
146
|
-
* Sets indication whether can go down
|
|
147
|
-
* @param {?} value - Indication whether can go down in period
|
|
148
|
-
* @return {?}
|
|
149
|
-
*/
|
|
150
|
-
DateTimePicker.prototype.setCanGoDown = function (value) { };
|
|
151
|
-
/**
|
|
152
|
-
* Sets indication whether can go up
|
|
153
|
-
* @param {?} value - Indication whether can go up in period
|
|
154
|
-
* @return {?}
|
|
155
|
-
*/
|
|
156
|
-
DateTimePicker.prototype.setCanGoUp = function (value) { };
|
|
157
|
-
/**
|
|
158
|
-
* Explicitly runs invalidation of content (change detection)
|
|
159
|
-
* @return {?}
|
|
160
|
-
*/
|
|
161
|
-
DateTimePicker.prototype.invalidateVisuals = function () { };
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
* Data that represents data for any picker type
|
|
165
|
-
* @record
|
|
166
|
-
* @template TDate
|
|
167
|
-
*/
|
|
168
|
-
export function PeriodData() { }
|
|
169
|
-
if (false) {
|
|
170
|
-
/**
|
|
171
|
-
* Indication that this period item is active and selected
|
|
172
|
-
* @type {?}
|
|
173
|
-
*/
|
|
174
|
-
PeriodData.prototype.active;
|
|
175
|
-
/**
|
|
176
|
-
* Indication that this period item is disabled
|
|
177
|
-
* @type {?}
|
|
178
|
-
*/
|
|
179
|
-
PeriodData.prototype.disabled;
|
|
180
|
-
/**
|
|
181
|
-
* Date for this period item
|
|
182
|
-
* @type {?}
|
|
183
|
-
*/
|
|
184
|
-
PeriodData.prototype.date;
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* Data that represents day in date picker
|
|
188
|
-
* @record
|
|
189
|
-
* @template TDate
|
|
190
|
-
*/
|
|
191
|
-
export function DayData() { }
|
|
192
|
-
if (false) {
|
|
193
|
-
/**
|
|
194
|
-
* Indication that range is selected and this day is between selected dates
|
|
195
|
-
* @type {?}
|
|
196
|
-
*/
|
|
197
|
-
DayData.prototype.betweenActive;
|
|
198
|
-
/**
|
|
199
|
-
* Indication that this day is out of currently selected month
|
|
200
|
-
* @type {?}
|
|
201
|
-
*/
|
|
202
|
-
DayData.prototype.otherMonth;
|
|
203
|
-
/**
|
|
204
|
-
* Indication that this day is today
|
|
205
|
-
* @type {?}
|
|
206
|
-
*/
|
|
207
|
-
DayData.prototype.today;
|
|
208
|
-
/**
|
|
209
|
-
* Indication that this day is weekend day
|
|
210
|
-
* @type {?}
|
|
211
|
-
*/
|
|
212
|
-
DayData.prototype.weekend;
|
|
213
|
-
/**
|
|
214
|
-
* Day number of month
|
|
215
|
-
* @type {?}
|
|
216
|
-
*/
|
|
217
|
-
DayData.prototype.day;
|
|
218
|
-
}
|
|
219
|
-
/**
|
|
220
|
-
* Data that represents month in date picker
|
|
221
|
-
* @record
|
|
222
|
-
* @template TDate
|
|
223
|
-
*/
|
|
224
|
-
export function MonthData() { }
|
|
225
|
-
if (false) {
|
|
226
|
-
/**
|
|
227
|
-
* Name of month
|
|
228
|
-
* @type {?}
|
|
229
|
-
*/
|
|
230
|
-
MonthData.prototype.name;
|
|
231
|
-
}
|
|
232
|
-
/**
|
|
233
|
-
* Data that represents year in date picker
|
|
234
|
-
* @record
|
|
235
|
-
* @template TDate
|
|
236
|
-
*/
|
|
237
|
-
export function YearData() { }
|
|
238
|
-
if (false) {
|
|
239
|
-
/**
|
|
240
|
-
* Value of year
|
|
241
|
-
* @type {?}
|
|
242
|
-
*/
|
|
243
|
-
YearData.prototype.value;
|
|
244
|
-
}
|
|
245
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVQaWNrZXIuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BpY2tlci9taXNjL2RhdGV0aW1lUGlja2VyLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFVQSw0Q0ErQkM7Ozs7OztJQTFCRyxpREFBeUI7Ozs7O0lBS3pCLGdEQUF3Qjs7Ozs7SUFLeEIsNENBQW9COzs7OztJQUtwQiw2Q0FBcUI7Ozs7O0lBS3JCLDRDQUFvQjs7Ozs7SUFLcEIsNkNBQXFCOzs7Ozs7QUFNekIsOENBV0M7Ozs7OztJQU5HLGdEQUFzQzs7Ozs7SUFLdEMsZ0RBQWtDOzs7Ozs7O0FBTXRDLDJDQXFCQzs7Ozs7O0lBaEJHLG1EQUFzQzs7Ozs7SUFLdEMsd0RBQW9EOzs7OztJQUtwRCw4Q0FBdUI7Ozs7O0lBS3ZCLDJDQUFzQzs7Ozs7OztBQU0xQyxvQ0FvRUM7Ozs7OztJQS9ERywrQkFBMEM7Ozs7O0lBSzFDLHFDQUF1Qzs7Ozs7SUFLdkMsaUNBQW9DOzs7OztJQUtwQyxtQ0FBc0M7Ozs7OztJQU10QyxtRUFBNkM7Ozs7OztJQU03Qyw0REFBcUM7Ozs7OztJQU1yQyw0REFBcUM7Ozs7OztJQU1yQyx5REFBaUQ7Ozs7OztJQU1qRCx3REFBMkM7Ozs7OztJQU0zQyw2REFBbUM7Ozs7OztJQU1uQywyREFBaUM7Ozs7O0lBS2pDLDZEQUEwQjs7Ozs7OztBQU05QixnQ0FnQkM7Ozs7OztJQVhHLDRCQUFnQjs7Ozs7SUFLaEIsOEJBQWtCOzs7OztJQUtsQiwwQkFBWTs7Ozs7OztBQU1oQiw2QkEwQkM7Ozs7OztJQXJCRyxnQ0FBdUI7Ozs7O0lBS3ZCLDZCQUFvQjs7Ozs7SUFLcEIsd0JBQWU7Ozs7O0lBS2YsMEJBQWlCOzs7OztJQUtqQixzQkFBWTs7Ozs7OztBQU1oQiwrQkFNQzs7Ozs7O0lBREcseUJBQWE7Ozs7Ozs7QUFNakIsOEJBTUM7Ozs7OztJQURHLHlCQUFjIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtUeXBlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtEaWN0aW9uYXJ5fSBmcm9tICdAanNjcnB0L2NvbW1vbic7XHJcbmltcG9ydCB7T2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XHJcblxyXG5pbXBvcnQge0RhdGVUaW1lVmFsdWV9IGZyb20gJy4uLy4uL21pc2MvZGF0ZXRpbWUuaW50ZXJmYWNlJztcclxuaW1wb3J0IHtEYXRlQXBpT2JqZWN0fSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9kYXRlQXBpLmludGVyZmFjZSc7XHJcblxyXG4vKipcclxuICogU2hhcmVkIGNzcyBjbGFzc2VzIGZvciBhbGwgcGlja2Vyc1xyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBDb21tb25QaWNrZXJDc3NDbGFzc2VzXHJcbntcclxuICAgIC8qKlxyXG4gICAgICogUGVyaW9kIHNlbGVjdGlvbiBlbGVtZW50IHdyYXBwaW5nIGRpc3BsYXllZCBwZXJpb2QgYW5kIHByZXZpb3VzLCBuZXh0IGJ1dHRvbnNcclxuICAgICAqL1xyXG4gICAgcGVyaW9kU2VsZWN0aW9uPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCB1c2VkIGZvciBzd2l0Y2hpbmcgcGVyaW9kIHRvIHByZXZpb3VzIG9uZVxyXG4gICAgICovXHJcbiAgICBwcmV2aW91c1BlcmlvZD86IHN0cmluZztcclxuXHJcbiAgICAvKipcclxuICAgICAqIEVsZW1lbnQgdXNlZCBmb3Igc3dpdGNoaW5nIHBlcmlvZCB0byBuZXh0IG9uZVxyXG4gICAgICovXHJcbiAgICBuZXh0UGVyaW9kPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCByZXByZXNlbnRpbmcgY3VycmVudGx5IGRpc3BsYXllZCBwZXJpb2RcclxuICAgICAqL1xyXG4gICAgcGVyaW9kVmFsdWU/OiBzdHJpbmc7XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBFbGVtZW50IHdyYXBwaW5nIGRpc3BsYXllZCBwZXJpb2QgZGF0YVxyXG4gICAgICovXHJcbiAgICBwZXJpb2REYXRhPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCByZXByZXNlbnRpbmcgc2luZ2xlIGRhdHVtIGZvciBwZXJpb2QgaXRlbVxyXG4gICAgICovXHJcbiAgICBwZXJpb2REYXR1bT86IHN0cmluZztcclxufVxyXG5cclxuLyoqXHJcbiAqIENzcyBjbGFzc2VzIGFwcGxpZWQgdG8gZGF0ZXRpbWUgcGlja2VyXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIERhdGVUaW1lUGlja2VyQ3NzQ2xhc3Nlc1xyXG57XHJcbiAgICAvKipcclxuICAgICAqIFNoYXJlZCBjc3MgY2xhc3NlcyBmb3IgYWxsIHBpY2tlcnNcclxuICAgICAqL1xyXG4gICAgcGlja2VyU2hhcmVkPzogQ29tbW9uUGlja2VyQ3NzQ2xhc3NlcztcclxuXHJcbiAgICAvKipcclxuICAgICAqIEN1c3RvbSBjc3MgY2xhc3NlcyBzcGVjaWZpYyBmb3IgZWFjaCBwaWNrZXIgdHlwZVxyXG4gICAgICovXHJcbiAgICBwaWNrZXJDdXN0b20/OiBEaWN0aW9uYXJ5PG9iamVjdD47XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBEZWZpbnRpb24gb2YgZGF0ZXRpbWUgcGlja2VyIGNvbXBvbmVudCBvcHRpb25zXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIERhdGVUaW1lUGlja2VyT3B0aW9uczxUUGlja2VyID0gYW55PlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIE9yZGVyIG9mIHBpY2tlcnMsIGl0J3MgcG9zc2libGUgdXNlIGxlc3MgcGlja2VycyBhcyBpcyBkZWZpbmVkIGluIHBpY2tlclBlcmlvZHNEZWZpbml0aW9uIGZvciBleGFtcGxlICdtb250aCx5ZWFyJ1xyXG4gICAgICovXHJcbiAgICBwaWNrZXJQZXJpb2RzT3JkZXI/OiBzdHJpbmdbXSB8IHN0cmluZ1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRGVmaW5pdGlvbiBvZiB0eXBlcyBmb3IgZWFjaCBwZXJpb2QgdHlwZSBmb3IgcGlja2VyXHJcbiAgICAgKi9cclxuICAgIHBpY2tlclBlcmlvZHNEZWZpbml0aW9uPzogRGljdGlvbmFyeTxUeXBlPFRQaWNrZXI+PjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIE5hbWUgb2YgZGVmYXVsdCBwZXJpb2QgZm9yIHBpY2tlciB0aGF0IGlzIGRpc3BsYXllZFxyXG4gICAgICovXHJcbiAgICBkZWZhdWx0UGVyaW9kPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogQ3NzIGNsYXNzZXMgZm9yIGRhdGUgdGltZSBwaWNrZXJcclxuICAgICAqL1xyXG4gICAgY3NzQ2xhc3Nlcz86IERhdGVUaW1lUGlja2VyQ3NzQ2xhc3NlcztcclxufVxyXG5cclxuLyoqXHJcbiAqIERlc2NyaWJlcyBkYXRldGltZSBwaWNrZXIgY29tcG9uZW50IHVzZWQgZm9yIGRpc3BsYXlpbmcgYW5kIHNlbGVjdGluZyB2YWx1ZVxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBEYXRlVGltZVBpY2tlcjxURGF0ZSA9IGFueSwgVENzc0NsYXNzZXMgPSBvYmplY3Q+XHJcbntcclxuICAgIC8qKlxyXG4gICAgICogR2V0cyBjdXJyZW50IHZhbHVlIG9mIGRhdGV0aW1lXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHZhbHVlOiBEYXRlVGltZVZhbHVlPFREYXRlPnxudWxsO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogT2NjdXJzIHdoZW4gdmFsdWUgY2hhbmdlc1xyXG4gICAgICovXHJcbiAgICByZWFkb25seSB2YWx1ZUNoYW5nZTogT2JzZXJ2YWJsZTx2b2lkPjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIE9jY3VycyB3aGVuIHVzZXIgc2NhbGVzIHVwXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHNjYWxlVXA6IE9ic2VydmFibGU8VERhdGU+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogT2NjdXJzIHdoZW4gdXNlciBzY2FsZXMgZG93blxyXG4gICAgICovXHJcbiAgICByZWFkb25seSBzY2FsZURvd246IE9ic2VydmFibGU8VERhdGU+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyBjc3MgY2xhc3NlcyBmb3IgcGlja2VyLCBhbGxvd2luZyB0byBvdmVycmlkZSBkZWZhdWx0c1xyXG4gICAgICogQHBhcmFtIGNzc0NsYXNzZXMgLSBDc3MgY2xhc3NlcyB0byBiZSBzZXQgZm9yIHBpY2tlclxyXG4gICAgICovXHJcbiAgICBzZXRDc3NDbGFzc2VzKGNzc0NsYXNzZXM6IFRDc3NDbGFzc2VzKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgbWluaW1hbCBwb3NzaWJsZSB2YWx1ZSBmb3IgcGlja2VyLCB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIE1pbmltYWwgcG9zc2libGUgdmFsdWUgdGhhdCBjYW4gYmUgcGlja2VkXHJcbiAgICAgKi9cclxuICAgIHNldE1pblZhbHVlKHZhbHVlOiBURGF0ZXxudWxsKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgbWF4aW1hbCBwb3NzaWJsZSB2YWx1ZSBmb3IgcGlja2VyLCB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIE1heGltYWwgcG9zc2libGUgdmFsdWUgdGhhdCBjYW4gYmUgcGlja2VkXHJcbiAgICAgKi9cclxuICAgIHNldE1heFZhbHVlKHZhbHVlOiBURGF0ZXxudWxsKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgdmFsdWUgb2YgZGF0ZXRpbWUgcGlja2VyXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBWYWx1ZSB0byBiZSBzZXQgdG8gdGhpcyBwaWNrZXJcclxuICAgICAqL1xyXG4gICAgc2V0VmFsdWUodmFsdWU6IERhdGVUaW1lVmFsdWU8VERhdGU+fG51bGwpOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0IGRpc3BsYXlzIGRhdGUgdG8gYmUgZGlzcGxheWVkXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBWYWx1ZSB0aGF0IGlkZW50aWZpZXMgcGVyaW9kIHRoYXQgaXMgZ29pbmcgdG8gYmUgZGlzcGxheWVkXHJcbiAgICAgKi9cclxuICAgIGRpc3BsYXkodmFsdWU6IERhdGVBcGlPYmplY3Q8VERhdGU+KTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgaW5kaWNhdGlvbiB3aGV0aGVyIGNhbiBnbyBkb3duXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBJbmRpY2F0aW9uIHdoZXRoZXIgY2FuIGdvIGRvd24gaW4gcGVyaW9kXHJcbiAgICAgKi9cclxuICAgIHNldENhbkdvRG93bih2YWx1ZTogYm9vbGVhbik6IHZvaWQ7XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBTZXRzIGluZGljYXRpb24gd2hldGhlciBjYW4gZ28gdXBcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIEluZGljYXRpb24gd2hldGhlciBjYW4gZ28gdXAgaW4gcGVyaW9kXHJcbiAgICAgKi9cclxuICAgIHNldENhbkdvVXAodmFsdWU6IGJvb2xlYW4pOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRXhwbGljaXRseSBydW5zIGludmFsaWRhdGlvbiBvZiBjb250ZW50IChjaGFuZ2UgZGV0ZWN0aW9uKVxyXG4gICAgICovXHJcbiAgICBpbnZhbGlkYXRlVmlzdWFscygpOiB2b2lkO1xyXG59XHJcblxyXG4vKipcclxuICogRGF0YSB0aGF0IHJlcHJlc2VudHMgZGF0YSBmb3IgYW55IHBpY2tlciB0eXBlXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIFBlcmlvZERhdGE8VERhdGUgPSBhbnk+XHJcbntcclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB0aGF0IHRoaXMgcGVyaW9kIGl0ZW0gaXMgYWN0aXZlIGFuZCBzZWxlY3RlZFxyXG4gICAgICovXHJcbiAgICBhY3RpdmU6IGJvb2xlYW47XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBJbmRpY2F0aW9uIHRoYXQgdGhpcyBwZXJpb2QgaXRlbSBpcyBkaXNhYmxlZFxyXG4gICAgICovXHJcbiAgICBkaXNhYmxlZDogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIERhdGUgZm9yIHRoaXMgcGVyaW9kIGl0ZW1cclxuICAgICAqL1xyXG4gICAgZGF0ZTogVERhdGU7XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBEYXRhIHRoYXQgcmVwcmVzZW50cyBkYXkgaW4gZGF0ZSBwaWNrZXJcclxuICovXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGF5RGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCByYW5nZSBpcyBzZWxlY3RlZCBhbmQgdGhpcyBkYXkgaXMgYmV0d2VlbiBzZWxlY3RlZCBkYXRlc1xyXG4gICAgICovXHJcbiAgICBiZXR3ZWVuQWN0aXZlOiBib29sZWFuO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB0aGF0IHRoaXMgZGF5IGlzIG91dCBvZiBjdXJyZW50bHkgc2VsZWN0ZWQgbW9udGhcclxuICAgICAqL1xyXG4gICAgb3RoZXJNb250aDogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCB0aGlzIGRheSBpcyB0b2RheVxyXG4gICAgICovXHJcbiAgICB0b2RheTogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCB0aGlzIGRheSBpcyB3ZWVrZW5kIGRheVxyXG4gICAgICovXHJcbiAgICB3ZWVrZW5kOiBib29sZWFuO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRGF5IG51bWJlciBvZiBtb250aFxyXG4gICAgICovXHJcbiAgICBkYXk6IG51bWJlcjtcclxufVxyXG5cclxuLyoqXHJcbiAqIERhdGEgdGhhdCByZXByZXNlbnRzIG1vbnRoIGluIGRhdGUgcGlja2VyXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIE1vbnRoRGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIE5hbWUgb2YgbW9udGhcclxuICAgICAqL1xyXG4gICAgbmFtZTogc3RyaW5nO1xyXG59XHJcblxyXG4vKipcclxuICogRGF0YSB0aGF0IHJlcHJlc2VudHMgeWVhciBpbiBkYXRlIHBpY2tlclxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBZZWFyRGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIFZhbHVlIG9mIHllYXJcclxuICAgICAqL1xyXG4gICAgdmFsdWU6IG51bWJlcjtcclxufVxyXG4iXX0=
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/picker/misc/tokens.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { InjectionToken } from '@angular/core';
|
|
7
|
-
/**
|
|
8
|
-
* Injection token used for obtaining datetime picker configuration
|
|
9
|
-
* @type {?}
|
|
10
|
-
*/
|
|
11
|
-
export const DATE_TIME_PICKER_CONFIGURATION = new InjectionToken('DATE_TIME_PICKER_CONFIGURATION');
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BpY2tlci9taXNjL3Rva2Vucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSxlQUFlLENBQUM7Ozs7O0FBTzdDLE1BQU0sT0FBTyw4QkFBOEIsR0FBK0MsSUFBSSxjQUFjLENBQTZCLGdDQUFnQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3Rpb25Ub2tlbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQge0RhdGVUaW1lUGlja2VyT3B0aW9uc30gZnJvbSAnLi9kYXRldGltZVBpY2tlci5pbnRlcmZhY2UnO1xyXG5cclxuLyoqXHJcbiAqIEluamVjdGlvbiB0b2tlbiB1c2VkIGZvciBvYnRhaW5pbmcgZGF0ZXRpbWUgcGlja2VyIGNvbmZpZ3VyYXRpb25cclxuICovXHJcbmV4cG9ydCBjb25zdCBEQVRFX1RJTUVfUElDS0VSX0NPTkZJR1VSQVRJT046IEluamVjdGlvblRva2VuPERhdGVUaW1lUGlja2VyT3B0aW9uczxhbnk+PiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxEYXRlVGltZVBpY2tlck9wdGlvbnM8YW55Pj4oJ0RBVEVfVElNRV9QSUNLRVJfQ09ORklHVVJBVElPTicpOyJdfQ==
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/picker/modules/picker.module.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { NgModule } from '@angular/core';
|
|
7
|
-
import { CommonModule as AngularCommonModule } from '@angular/common';
|
|
8
|
-
import { CommonModule } from '@anglr/common';
|
|
9
|
-
import { DateTimePickerComponent } from '../components/picker/picker.component';
|
|
10
|
-
import { DateTimeDayPickerComponent } from '../components/dayPicker/dayPicker.component';
|
|
11
|
-
import { DateTimeMonthPickerComponent } from '../components/monthPicker/monthPicker.component';
|
|
12
|
-
import { DateTimeYearPickerComponent } from '../components/yearPicker/yearPicker.component';
|
|
13
|
-
/**
|
|
14
|
-
* Angular module for date time picker components
|
|
15
|
-
*/
|
|
16
|
-
export class DateTimePickerModule {
|
|
17
|
-
}
|
|
18
|
-
DateTimePickerModule.decorators = [
|
|
19
|
-
{ type: NgModule, args: [{
|
|
20
|
-
imports: [
|
|
21
|
-
AngularCommonModule,
|
|
22
|
-
CommonModule
|
|
23
|
-
],
|
|
24
|
-
declarations: [
|
|
25
|
-
DateTimePickerComponent,
|
|
26
|
-
DateTimeDayPickerComponent,
|
|
27
|
-
DateTimeMonthPickerComponent,
|
|
28
|
-
DateTimeYearPickerComponent
|
|
29
|
-
],
|
|
30
|
-
exports: [
|
|
31
|
-
DateTimePickerComponent
|
|
32
|
-
]
|
|
33
|
-
},] }
|
|
34
|
-
];
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGlja2VyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9waWNrZXIvbW9kdWxlcy9waWNrZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxJQUFJLG1CQUFtQixFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDcEUsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSx1Q0FBdUMsQ0FBQztBQUM5RSxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSw2Q0FBNkMsQ0FBQztBQUN2RixPQUFPLEVBQUMsNEJBQTRCLEVBQUMsTUFBTSxpREFBaUQsQ0FBQztBQUM3RixPQUFPLEVBQUMsMkJBQTJCLEVBQUMsTUFBTSwrQ0FBK0MsQ0FBQzs7OztBQXdCMUYsTUFBTSxPQUFPLG9CQUFvQjs7O1lBbkJoQyxRQUFRLFNBQ1Q7Z0JBQ0ksT0FBTyxFQUNQO29CQUNJLG1CQUFtQjtvQkFDbkIsWUFBWTtpQkFDZjtnQkFDRCxZQUFZLEVBQ1o7b0JBQ0ksdUJBQXVCO29CQUN2QiwwQkFBMEI7b0JBQzFCLDRCQUE0QjtvQkFDNUIsMkJBQTJCO2lCQUM5QjtnQkFDRCxPQUFPLEVBQ1A7b0JBQ0ksdUJBQXVCO2lCQUMxQjthQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlIGFzIEFuZ3VsYXJDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tICdAYW5nbHIvY29tbW9uJztcclxuXHJcbmltcG9ydCB7RGF0ZVRpbWVQaWNrZXJDb21wb25lbnR9IGZyb20gJy4uL2NvbXBvbmVudHMvcGlja2VyL3BpY2tlci5jb21wb25lbnQnO1xyXG5pbXBvcnQge0RhdGVUaW1lRGF5UGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL2RheVBpY2tlci9kYXlQaWNrZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHtEYXRlVGltZU1vbnRoUGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL21vbnRoUGlja2VyL21vbnRoUGlja2VyLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7RGF0ZVRpbWVZZWFyUGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL3llYXJQaWNrZXIveWVhclBpY2tlci5jb21wb25lbnQnO1xyXG5cclxuLyoqXHJcbiAqIEFuZ3VsYXIgbW9kdWxlIGZvciBkYXRlIHRpbWUgcGlja2VyIGNvbXBvbmVudHNcclxuICovXHJcbkBOZ01vZHVsZShcclxue1xyXG4gICAgaW1wb3J0czpcclxuICAgIFtcclxuICAgICAgICBBbmd1bGFyQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIENvbW1vbk1vZHVsZVxyXG4gICAgXSxcclxuICAgIGRlY2xhcmF0aW9uczpcclxuICAgIFtcclxuICAgICAgICBEYXRlVGltZVBpY2tlckNvbXBvbmVudCxcclxuICAgICAgICBEYXRlVGltZURheVBpY2tlckNvbXBvbmVudCxcclxuICAgICAgICBEYXRlVGltZU1vbnRoUGlja2VyQ29tcG9uZW50LFxyXG4gICAgICAgIERhdGVUaW1lWWVhclBpY2tlckNvbXBvbmVudFxyXG4gICAgXSxcclxuICAgIGV4cG9ydHM6XHJcbiAgICBbXHJcbiAgICAgICAgRGF0ZVRpbWVQaWNrZXJDb21wb25lbnRcclxuICAgIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIERhdGVUaW1lUGlja2VyTW9kdWxlXHJcbntcclxufSJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/picker/types.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
export { DateTimePickerComponent } from './components/picker/picker.component';
|
|
7
|
-
export { scaleUpDownTrigger } from './components/picker/picker.component.animations';
|
|
8
|
-
export { DateTimeDayPickerComponent } from './components/dayPicker/dayPicker.component';
|
|
9
|
-
export { DateTimeMonthPickerComponent } from './components/monthPicker/monthPicker.component';
|
|
10
|
-
export { DateTimeYearPickerComponent } from './components/yearPicker/yearPicker.component';
|
|
11
|
-
export { PickerBaseComponent } from './components/pickerBase.component';
|
|
12
|
-
export { DATE_TIME_PICKER_CONFIGURATION } from './misc/tokens';
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcGlja2VyL3R5cGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsd0NBQWMsc0NBQXNDLENBQUM7QUFDckQsbUNBQWMsaURBQWlELENBQUM7QUFDaEUsMkNBQWMsNENBQTRDLENBQUM7QUFDM0QsNkNBQWMsZ0RBQWdELENBQUM7QUFDL0QsNENBQWMsOENBQThDLENBQUM7QUFDN0Qsb0NBQWMsbUNBQW1DLENBQUM7QUFDbEQsK0NBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3BpY2tlci9waWNrZXIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3BpY2tlci9waWNrZXIuY29tcG9uZW50LmFuaW1hdGlvbnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvZGF5UGlja2VyL2RheVBpY2tlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvbW9udGhQaWNrZXIvbW9udGhQaWNrZXIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3llYXJQaWNrZXIveWVhclBpY2tlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvcGlja2VyQmFzZS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL21pc2MvdG9rZW5zJzsiXX0=
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/pipes/dateConvert.pipe.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Inject, Pipe } from '@angular/core';
|
|
7
|
-
import { DATE_API } from '../misc/tokens';
|
|
8
|
-
/**
|
|
9
|
-
* Pipe that is used for converting date
|
|
10
|
-
* @template TDate
|
|
11
|
-
*/
|
|
12
|
-
export class DateConvertPipe {
|
|
13
|
-
//######################### constructors #########################
|
|
14
|
-
/**
|
|
15
|
-
* @param {?} _dateApi
|
|
16
|
-
*/
|
|
17
|
-
constructor(_dateApi) {
|
|
18
|
-
this._dateApi = _dateApi;
|
|
19
|
-
}
|
|
20
|
-
//######################### public methods - implementation of PipeTransform #########################
|
|
21
|
-
/**
|
|
22
|
-
* Transforms value into date object
|
|
23
|
-
* @param {?} value - value to be transformed
|
|
24
|
-
* @param {?=} parseFormat - format used for parsing string date
|
|
25
|
-
* @return {?}
|
|
26
|
-
*/
|
|
27
|
-
transform(value, parseFormat) {
|
|
28
|
-
/** @type {?} */
|
|
29
|
-
let dateObj = this._dateApi.getValue(value, parseFormat);
|
|
30
|
-
if (dateObj.isValid()) {
|
|
31
|
-
return dateObj.value;
|
|
32
|
-
}
|
|
33
|
-
return null;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
DateConvertPipe.decorators = [
|
|
37
|
-
{ type: Pipe, args: [{ name: 'dateConvert' },] }
|
|
38
|
-
];
|
|
39
|
-
/** @nocollapse */
|
|
40
|
-
DateConvertPipe.ctorParameters = () => [
|
|
41
|
-
{ type: undefined, decorators: [{ type: Inject, args: [DATE_API,] }] }
|
|
42
|
-
];
|
|
43
|
-
if (false) {
|
|
44
|
-
/**
|
|
45
|
-
* @type {?}
|
|
46
|
-
* @private
|
|
47
|
-
*/
|
|
48
|
-
DateConvertPipe.prototype._dateApi;
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZUNvbnZlcnQucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9waXBlcy9kYXRlQ29udmVydC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLE1BQU0sRUFBRSxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDO0FBRTFELE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7QUFPeEMsTUFBTSxPQUFPLGVBQWU7Ozs7O0lBR3hCLFlBQXNDLFFBQXdCO1FBQXhCLGFBQVEsR0FBUixRQUFRLENBQWdCO0lBRTlELENBQUM7Ozs7Ozs7O0lBU00sU0FBUyxDQUFDLEtBQXNCLEVBQUUsV0FBb0I7O1lBRXJELE9BQU8sR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsV0FBVyxDQUFDO1FBRXhELElBQUcsT0FBTyxDQUFDLE9BQU8sRUFBRSxFQUNwQjtZQUNJLE9BQU8sT0FBTyxDQUFDLEtBQUssQ0FBQztTQUN4QjtRQUVELE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7OztZQXpCSixJQUFJLFNBQUMsRUFBQyxJQUFJLEVBQUUsYUFBYSxFQUFDOzs7OzRDQUlWLE1BQU0sU0FBQyxRQUFROzs7Ozs7O0lBQWhCLG1DQUFrRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SW5qZWN0LCBQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7REFURV9BUEl9IGZyb20gJy4uL21pc2MvdG9rZW5zJztcclxuaW1wb3J0IHtEYXRlQXBpLCBEYXRlVmFsdWV9IGZyb20gJy4uL3NlcnZpY2VzJztcclxuXHJcbi8qKlxyXG4gKiBQaXBlIHRoYXQgaXMgdXNlZCBmb3IgY29udmVydGluZyBkYXRlXHJcbiAqL1xyXG5AUGlwZSh7bmFtZTogJ2RhdGVDb252ZXJ0J30pXHJcbmV4cG9ydCBjbGFzcyBEYXRlQ29udmVydFBpcGU8VERhdGUgPSBhbnk+IGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybVxyXG57XHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgY29uc3RydWN0b3JzICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoREFURV9BUEkpIHByaXZhdGUgX2RhdGVBcGk6IERhdGVBcGk8VERhdGU+KVxyXG4gICAge1xyXG4gICAgfVxyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwdWJsaWMgbWV0aG9kcyAtIGltcGxlbWVudGF0aW9uIG9mIFBpcGVUcmFuc2Zvcm0gIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogVHJhbnNmb3JtcyB2YWx1ZSBpbnRvIGRhdGUgb2JqZWN0XHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSB2YWx1ZSB0byBiZSB0cmFuc2Zvcm1lZFxyXG4gICAgICogQHBhcmFtIHBhcnNlRm9ybWF0IC0gZm9ybWF0IHVzZWQgZm9yIHBhcnNpbmcgc3RyaW5nIGRhdGVcclxuICAgICAqL1xyXG4gICAgcHVibGljIHRyYW5zZm9ybSh2YWx1ZTogVERhdGV8RGF0ZVZhbHVlLCBwYXJzZUZvcm1hdD86IHN0cmluZyk6IFREYXRlfG51bGxcclxuICAgIHtcclxuICAgICAgICBsZXQgZGF0ZU9iaiA9IHRoaXMuX2RhdGVBcGkuZ2V0VmFsdWUodmFsdWUsIHBhcnNlRm9ybWF0KTtcclxuXHJcbiAgICAgICAgaWYoZGF0ZU9iai5pc1ZhbGlkKCkpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICByZXR1cm4gZGF0ZU9iai52YWx1ZTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHJldHVybiBudWxsO1xyXG4gICAgfVxyXG59Il19
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: src/pipes/dateFormat.pipe.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Inject, Pipe } from '@angular/core';
|
|
7
|
-
import { nameof } from '@jscrpt/common';
|
|
8
|
-
import { DATE_API, FORMAT_PROVIDER } from '../misc/tokens';
|
|
9
|
-
/**
|
|
10
|
-
* Pipe that is used for formatting date
|
|
11
|
-
* @template TDate
|
|
12
|
-
*/
|
|
13
|
-
export class DateFormatPipe {
|
|
14
|
-
//######################### constructors #########################
|
|
15
|
-
/**
|
|
16
|
-
* @param {?} _formatProvider
|
|
17
|
-
* @param {?} _dateApi
|
|
18
|
-
*/
|
|
19
|
-
constructor(_formatProvider, _dateApi) {
|
|
20
|
-
this._formatProvider = _formatProvider;
|
|
21
|
-
this._dateApi = _dateApi;
|
|
22
|
-
}
|
|
23
|
-
//######################### public methods - implementation of PipeTransform #########################
|
|
24
|
-
/**
|
|
25
|
-
* Formats provided date into formatted string
|
|
26
|
-
* @param {?} value - value to be transformed
|
|
27
|
-
* @param {?=} format - Format that is used for formatting, can be also 'FormatProvider' key
|
|
28
|
-
* @param {?=} parseFormat - format used for parsing string date
|
|
29
|
-
* @return {?}
|
|
30
|
-
*/
|
|
31
|
-
transform(value, format = nameof('date'), parseFormat) {
|
|
32
|
-
//format provider value
|
|
33
|
-
if (format in this._formatProvider) {
|
|
34
|
-
format = ((/** @type {?} */ (this._formatProvider)))[format];
|
|
35
|
-
}
|
|
36
|
-
/** @type {?} */
|
|
37
|
-
let dateObj = this._dateApi.getValue(value, parseFormat);
|
|
38
|
-
if (dateObj.isValid()) {
|
|
39
|
-
return dateObj.format(this._dateApi.getFormat(format));
|
|
40
|
-
}
|
|
41
|
-
return '';
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
DateFormatPipe.decorators = [
|
|
45
|
-
{ type: Pipe, args: [{ name: 'dateFormat' },] }
|
|
46
|
-
];
|
|
47
|
-
/** @nocollapse */
|
|
48
|
-
DateFormatPipe.ctorParameters = () => [
|
|
49
|
-
{ type: undefined, decorators: [{ type: Inject, args: [FORMAT_PROVIDER,] }] },
|
|
50
|
-
{ type: undefined, decorators: [{ type: Inject, args: [DATE_API,] }] }
|
|
51
|
-
];
|
|
52
|
-
if (false) {
|
|
53
|
-
/**
|
|
54
|
-
* @type {?}
|
|
55
|
-
* @private
|
|
56
|
-
*/
|
|
57
|
-
DateFormatPipe.prototype._formatProvider;
|
|
58
|
-
/**
|
|
59
|
-
* @type {?}
|
|
60
|
-
* @private
|
|
61
|
-
*/
|
|
62
|
-
DateFormatPipe.prototype._dateApi;
|
|
63
|
-
}
|
|
64
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZUZvcm1hdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3BpcGVzL2RhdGVGb3JtYXQucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBQyxNQUFNLEVBQUUsSUFBSSxFQUFnQixNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUMsTUFBTSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFFdEMsT0FBTyxFQUFDLFFBQVEsRUFBRSxlQUFlLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7QUFPekQsTUFBTSxPQUFPLGNBQWM7Ozs7OztJQUd2QixZQUE2QyxlQUErQixFQUN0QyxRQUF3QjtRQURqQixvQkFBZSxHQUFmLGVBQWUsQ0FBZ0I7UUFDdEMsYUFBUSxHQUFSLFFBQVEsQ0FBZ0I7SUFFOUQsQ0FBQzs7Ozs7Ozs7O0lBVU0sU0FBUyxDQUFDLEtBQXNCLEVBQUUsU0FBc0MsTUFBTSxDQUFpQixNQUFNLENBQUMsRUFBRSxXQUFvQjtRQUUvSCx1QkFBdUI7UUFDdkIsSUFBRyxNQUFNLElBQUksSUFBSSxDQUFDLGVBQWUsRUFDakM7WUFDSSxNQUFNLEdBQUcsQ0FBQyxtQkFBSyxJQUFJLENBQUMsZUFBZSxFQUFBLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNoRDs7WUFFRyxPQUFPLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsS0FBSyxFQUFFLFdBQVcsQ0FBQztRQUV4RCxJQUFHLE9BQU8sQ0FBQyxPQUFPLEVBQUUsRUFDcEI7WUFDSSxPQUFPLE9BQU8sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztTQUMxRDtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQzs7O1lBakNKLElBQUksU0FBQyxFQUFDLElBQUksRUFBRSxZQUFZLEVBQUM7Ozs7NENBSVQsTUFBTSxTQUFDLGVBQWU7NENBQ3RCLE1BQU0sU0FBQyxRQUFROzs7Ozs7O0lBRGhCLHlDQUFnRTs7Ozs7SUFDaEUsa0NBQWtEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3QsIFBpcGUsIFBpcGVUcmFuc2Zvcm19IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge25hbWVvZn0gZnJvbSAnQGpzY3JwdC9jb21tb24nO1xyXG5cclxuaW1wb3J0IHtEQVRFX0FQSSwgRk9STUFUX1BST1ZJREVSfSBmcm9tICcuLi9taXNjL3Rva2Vucyc7XHJcbmltcG9ydCB7RGF0ZUFwaSwgRGF0ZVZhbHVlLCBGb3JtYXRQcm92aWRlcn0gZnJvbSAnLi4vc2VydmljZXMnO1xyXG5cclxuLyoqXHJcbiAqIFBpcGUgdGhhdCBpcyB1c2VkIGZvciBmb3JtYXR0aW5nIGRhdGVcclxuICovXHJcbkBQaXBlKHtuYW1lOiAnZGF0ZUZvcm1hdCd9KVxyXG5leHBvcnQgY2xhc3MgRGF0ZUZvcm1hdFBpcGU8VERhdGUgPSBhbnk+IGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybVxyXG57XHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgY29uc3RydWN0b3JzICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRk9STUFUX1BST1ZJREVSKSBwcml2YXRlIF9mb3JtYXRQcm92aWRlcjogRm9ybWF0UHJvdmlkZXIsXHJcbiAgICAgICAgICAgICAgICBASW5qZWN0KERBVEVfQVBJKSBwcml2YXRlIF9kYXRlQXBpOiBEYXRlQXBpPFREYXRlPilcclxuICAgIHtcclxuICAgIH1cclxuXHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgcHVibGljIG1ldGhvZHMgLSBpbXBsZW1lbnRhdGlvbiBvZiBQaXBlVHJhbnNmb3JtICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuXHJcbiAgICAvKipcclxuICAgICAqIEZvcm1hdHMgcHJvdmlkZWQgZGF0ZSBpbnRvIGZvcm1hdHRlZCBzdHJpbmdcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIHZhbHVlIHRvIGJlIHRyYW5zZm9ybWVkXHJcbiAgICAgKiBAcGFyYW0gZm9ybWF0IC0gRm9ybWF0IHRoYXQgaXMgdXNlZCBmb3IgZm9ybWF0dGluZywgY2FuIGJlIGFsc28gJ0Zvcm1hdFByb3ZpZGVyJyBrZXlcclxuICAgICAqIEBwYXJhbSBwYXJzZUZvcm1hdCAtIGZvcm1hdCB1c2VkIGZvciBwYXJzaW5nIHN0cmluZyBkYXRlXHJcbiAgICAgKi9cclxuICAgIHB1YmxpYyB0cmFuc2Zvcm0odmFsdWU6IFREYXRlfERhdGVWYWx1ZSwgZm9ybWF0OiBzdHJpbmd8a2V5b2YgRm9ybWF0UHJvdmlkZXIgPSBuYW1lb2Y8Rm9ybWF0UHJvdmlkZXI+KCdkYXRlJyksIHBhcnNlRm9ybWF0Pzogc3RyaW5nKTogc3RyaW5nXHJcbiAgICB7XHJcbiAgICAgICAgLy9mb3JtYXQgcHJvdmlkZXIgdmFsdWVcclxuICAgICAgICBpZihmb3JtYXQgaW4gdGhpcy5fZm9ybWF0UHJvdmlkZXIpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBmb3JtYXQgPSAoPGFueT50aGlzLl9mb3JtYXRQcm92aWRlcilbZm9ybWF0XTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIGxldCBkYXRlT2JqID0gdGhpcy5fZGF0ZUFwaS5nZXRWYWx1ZSh2YWx1ZSwgcGFyc2VGb3JtYXQpO1xyXG5cclxuICAgICAgICBpZihkYXRlT2JqLmlzVmFsaWQoKSlcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIHJldHVybiBkYXRlT2JqLmZvcm1hdCh0aGlzLl9kYXRlQXBpLmdldEZvcm1hdChmb3JtYXQpKTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHJldHVybiAnJztcclxuICAgIH1cclxufSJdfQ==
|