@bnsights/bbsf-controls 1.0.193 → 1.0.194-beta.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/README.md +331 -0
- package/esm2022/lib/Shared/Components/app-base-component.mjs +3 -3
- package/esm2022/lib/Shared/Components/ng-tag-input.mjs +12 -7
- package/esm2022/lib/Shared/Directives/appPreventDoubleClick.directive.mjs +3 -2
- package/esm2022/lib/Shared/Directives/template-name.directive.mjs +4 -3
- package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +4 -4
- package/esm2022/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +4 -3
- package/esm2022/lib/Shared/Pipes/bbsf-date.pipe.mjs +4 -3
- package/esm2022/lib/Shared/default_intl.mjs +2 -2
- package/esm2022/lib/Shared/services/ControlUtility.mjs +2 -2
- package/esm2022/lib/Shared/services/file-upload.service.mjs +3 -3
- package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +2 -2
- package/esm2022/lib/Shared/utils/date-formatter.mjs +48 -0
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +24 -16
- package/esm2022/lib/controls/Calendar/Calendar.component.mjs +19 -12
- package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +14 -10
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +8 -5
- package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +21 -14
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +12 -6
- package/esm2022/lib/controls/FileUpload/FileUpload.component.mjs +15 -7
- package/esm2022/lib/controls/Form/Form.component.mjs +22 -6
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +14 -9
- package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +17 -9
- package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +22 -13
- package/esm2022/lib/controls/MarkdownEditor/markdown-editor.component.mjs +16 -8
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +14 -9
- package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +12 -7
- package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +18 -12
- package/esm2022/lib/controls/Paging/JwPagination.component.mjs +8 -4
- package/esm2022/lib/controls/Paging/Paging.component.mjs +25 -12
- package/esm2022/lib/controls/Phone/Phone.component.mjs +14 -9
- package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +17 -9
- package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +10 -6
- package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +13 -14
- package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +13 -7
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +6 -4
- package/esm2022/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +5 -4
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +13 -7
- package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +19 -14
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +20 -12
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +16 -10
- package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +13 -7
- package/esm2022/lib/controls/bbsf-controls.module.mjs +70 -333
- package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +15 -11
- package/esm2022/lib/modules/bbsf-core.module.mjs +210 -0
- package/esm2022/lib/modules/bbsf-datetime.module.mjs +90 -0
- package/esm2022/lib/modules/bbsf-dropdown.module.mjs +57 -0
- package/esm2022/lib/modules/bbsf-editors.module.mjs +97 -0
- package/esm2022/lib/modules/bbsf-forms-basic.module.mjs +79 -0
- package/esm2022/lib/modules/bbsf-multilingual.module.mjs +60 -0
- package/esm2022/lib/modules/bbsf-phone.module.mjs +57 -0
- package/esm2022/lib/modules/bbsf-specialized.module.mjs +160 -0
- package/esm2022/lib/modules/bbsf-uploads.module.mjs +106 -0
- package/esm2022/lib/modules/bbsf-utility.module.mjs +103 -0
- package/esm2022/public-api.mjs +38 -2
- package/fesm2022/bnsights-bbsf-controls.mjs +8673 -7750
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Components/app-base-component.d.ts +2 -2
- package/lib/Shared/Components/ng-tag-input.d.ts +2 -3
- package/lib/Shared/Directives/appPreventDoubleClick.directive.d.ts +1 -1
- package/lib/Shared/Directives/template-name.directive.d.ts +1 -1
- package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +1 -1
- package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +1 -1
- package/lib/Shared/default_intl.d.ts +1 -1
- package/lib/Shared/services/ControlUtility.d.ts +1 -1
- package/lib/Shared/services/file-upload.service.d.ts +1 -1
- package/lib/Shared/services/validationErrorMassage.service.d.ts +1 -1
- package/lib/Shared/utils/date-formatter.d.ts +23 -0
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +5 -4
- package/lib/controls/Calendar/Calendar.component.d.ts +5 -4
- package/lib/controls/CheckBox/CheckBox.component.d.ts +3 -2
- package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +2 -2
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -3
- package/lib/controls/DropdownList/DropdownList.component.d.ts +2 -2
- package/lib/controls/FileUpload/FileUpload.component.d.ts +3 -4
- package/lib/controls/Form/Form.component.d.ts +2 -2
- package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +3 -3
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +4 -4
- package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +5 -4
- package/lib/controls/MarkdownEditor/markdown-editor.component.d.ts +2 -2
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +3 -3
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +2 -2
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +3 -2
- package/lib/controls/Paging/JwPagination.component.d.ts +1 -1
- package/lib/controls/Paging/Paging.component.d.ts +5 -4
- package/lib/controls/Phone/Phone.component.d.ts +2 -2
- package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +3 -3
- package/lib/controls/RadioButton/RadioButton.component.d.ts +2 -2
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +3 -2
- package/lib/controls/Repeater/repeater/repeater.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +1 -1
- package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +2 -2
- package/lib/controls/TagsInput/TagsInput.component.d.ts +5 -4
- package/lib/controls/TextArea/TextArea.component.d.ts +3 -2
- package/lib/controls/TextBox/TextBox.component.d.ts +2 -2
- package/lib/controls/Toggleslide/Toggleslide.component.d.ts +2 -2
- package/lib/controls/bbsf-controls.module.d.ts +35 -66
- package/lib/controls/page-header-component/page-header-component.component.d.ts +2 -2
- package/lib/modules/bbsf-core.module.d.ts +90 -0
- package/lib/modules/bbsf-datetime.module.d.ts +41 -0
- package/lib/modules/bbsf-dropdown.module.d.ts +33 -0
- package/lib/modules/bbsf-editors.module.d.ts +47 -0
- package/lib/modules/bbsf-forms-basic.module.d.ts +35 -0
- package/lib/modules/bbsf-multilingual.module.d.ts +31 -0
- package/lib/modules/bbsf-phone.module.d.ts +33 -0
- package/lib/modules/bbsf-specialized.module.d.ts +63 -0
- package/lib/modules/bbsf-uploads.module.d.ts +50 -0
- package/lib/modules/bbsf-utility.module.d.ts +45 -0
- package/package.json +2 -13
- package/public-api.d.ts +12 -0
- package/src/lib/assets/Style.scss +0 -2
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.