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