chrv-components 1.0.0 → 1.0.2
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/chr-theme.scss +97 -0
- package/ng-package.json +7 -0
- package/package.json +7 -23
- package/src/lib/chr-breadcrumb/chr-breadcrumb.component.html +9 -0
- package/src/lib/chr-breadcrumb/chr-breadcrumb.component.scss +0 -0
- package/src/lib/chr-breadcrumb/chr-breadcrumb.component.spec.ts +22 -0
- package/src/lib/chr-breadcrumb/chr-breadcrumb.component.ts +23 -0
- package/src/lib/chr-button/chr-button.component.html +20 -0
- package/src/lib/chr-button/chr-button.component.scss +0 -0
- package/src/lib/chr-button/chr-button.component.spec.ts +23 -0
- package/src/lib/chr-button/chr-button.component.ts +36 -0
- package/src/lib/chr-checkbox/chr-checkbox.component.html +4 -0
- package/src/lib/chr-checkbox/chr-checkbox.component.scss +15 -0
- package/src/lib/chr-checkbox/chr-checkbox.component.spec.ts +23 -0
- package/src/lib/chr-checkbox/chr-checkbox.component.ts +30 -0
- package/src/lib/chr-components.module.ts +69 -0
- package/src/lib/chr-delete-modal/chr-delete-modal.component.html +26 -0
- package/src/lib/chr-delete-modal/chr-delete-modal.component.scss +0 -0
- package/src/lib/chr-delete-modal/chr-delete-modal.component.spec.ts +23 -0
- package/src/lib/chr-delete-modal/chr-delete-modal.component.ts +19 -0
- package/src/lib/chr-form/chr-form.component.html +98 -0
- package/src/lib/chr-form/chr-form.component.scss +37 -0
- package/src/lib/chr-form/chr-form.component.spec.ts +23 -0
- package/src/lib/chr-form/chr-form.component.ts +173 -0
- package/src/lib/chr-form/chr-validators/decimal-validator.ts +54 -0
- package/src/lib/chr-form/chr-validators/max-date-validator.ts +48 -0
- package/src/lib/chr-form/chr-validators/type-validator.ts +47 -0
- package/src/lib/chr-search-select/chr-search-select.component.html +19 -0
- package/src/lib/chr-search-select/chr-search-select.component.scss +3 -0
- package/src/lib/chr-search-select/chr-search-select.component.spec.ts +23 -0
- package/src/lib/chr-search-select/chr-search-select.component.ts +164 -0
- package/src/lib/chr-searchbar/chr-searchbar.component.html +10 -0
- package/src/lib/chr-searchbar/chr-searchbar.component.scss +0 -0
- package/src/lib/chr-searchbar/chr-searchbar.component.spec.ts +23 -0
- package/src/lib/chr-searchbar/chr-searchbar.component.ts +23 -0
- package/src/lib/chr-separator/chr-separator.component.html +3 -0
- package/src/lib/chr-separator/chr-separator.component.scss +24 -0
- package/src/lib/chr-separator/chr-separator.component.spec.ts +23 -0
- package/src/lib/chr-separator/chr-separator.component.ts +10 -0
- package/src/lib/chr-table/chr-table.component.html +88 -0
- package/src/lib/chr-table/chr-table.component.scss +53 -0
- package/src/lib/chr-table/chr-table.component.spec.ts +23 -0
- package/src/lib/chr-table/chr-table.component.ts +72 -0
- package/src/lib/chr-table-header-cell/chr-table-header-cell.component.html +9 -0
- package/src/lib/chr-table-header-cell/chr-table-header-cell.component.scss +31 -0
- package/src/lib/chr-table-header-cell/chr-table-header-cell.component.spec.ts +23 -0
- package/src/lib/chr-table-header-cell/chr-table-header-cell.component.ts +39 -0
- package/src/lib/services/dialog.service.ts +23 -0
- package/{public-api.d.ts → src/public-api.ts} +21 -15
- package/styles.scss +93 -0
- package/tailwind.config.js +30 -0
- package/theme.scss +59 -0
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/chrv-components-1.0.0.tgz +0 -0
- package/esm2020/chrv-components.mjs +0 -5
- package/esm2020/lib/chr-breadcrumb/chr-breadcrumb.component.mjs +0 -22
- package/esm2020/lib/chr-button/chr-button.component.mjs +0 -46
- package/esm2020/lib/chr-checkbox/chr-checkbox.component.mjs +0 -37
- package/esm2020/lib/chr-components.module.mjs +0 -117
- package/esm2020/lib/chr-delete-modal/chr-delete-modal.component.mjs +0 -22
- package/esm2020/lib/chr-form/chr-form.component.mjs +0 -132
- package/esm2020/lib/chr-form/chr-validators/decimal-validator.mjs +0 -58
- package/esm2020/lib/chr-form/chr-validators/max-date-validator.mjs +0 -54
- package/esm2020/lib/chr-form/chr-validators/type-validator.mjs +0 -52
- package/esm2020/lib/chr-search-select/chr-search-select.component.mjs +0 -136
- package/esm2020/lib/chr-searchbar/chr-searchbar.component.mjs +0 -29
- package/esm2020/lib/chr-separator/chr-separator.component.mjs +0 -11
- package/esm2020/lib/chr-table/chr-table.component.mjs +0 -58
- package/esm2020/lib/chr-table-header-cell/chr-table-header-cell.component.mjs +0 -49
- package/esm2020/lib/services/dialog.service.mjs +0 -29
- package/esm2020/public-api.mjs +0 -19
- package/fesm2015/chrv-components.mjs +0 -799
- package/fesm2015/chrv-components.mjs.map +0 -1
- package/fesm2020/chrv-components.mjs +0 -793
- package/fesm2020/chrv-components.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/chr-breadcrumb/chr-breadcrumb.component.d.ts +0 -15
- package/lib/chr-button/chr-button.component.d.ts +0 -17
- package/lib/chr-checkbox/chr-checkbox.component.d.ts +0 -13
- package/lib/chr-components.module.d.ts +0 -28
- package/lib/chr-delete-modal/chr-delete-modal.component.d.ts +0 -11
- package/lib/chr-form/chr-form.component.d.ts +0 -57
- package/lib/chr-form/chr-validators/decimal-validator.d.ts +0 -10
- package/lib/chr-form/chr-validators/max-date-validator.d.ts +0 -10
- package/lib/chr-form/chr-validators/type-validator.d.ts +0 -10
- package/lib/chr-search-select/chr-search-select.component.d.ts +0 -44
- package/lib/chr-searchbar/chr-searchbar.component.d.ts +0 -14
- package/lib/chr-separator/chr-separator.component.d.ts +0 -5
- package/lib/chr-table/chr-table.component.d.ts +0 -38
- package/lib/chr-table-header-cell/chr-table-header-cell.component.d.ts +0 -16
- package/lib/services/dialog.service.d.ts +0 -10
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.