@covalent/core 4.0.0-beta.2 → 4.1.0-develop.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/README.md +5 -4
- package/breadcrumbs/README.md +21 -17
- package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +3 -1
- package/breadcrumbs/breadcrumbs.component.d.ts +1 -0
- package/breadcrumbs/covalent-core-breadcrumbs.d.ts +1 -1
- package/breadcrumbs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/README.md +3 -0
- package/common/_common-theme.scss +1 -1
- package/common/behaviors/disable-ripple.mixin.d.ts +1 -1
- package/common/behaviors/disabled.mixin.d.ts +1 -1
- package/common/covalent-core-common.d.ts +1 -1
- package/common/pipes/truncate/truncate.pipe.d.ts +1 -1
- package/common/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/styles/font/README.md +4 -2
- package/covalent-core.d.ts +1 -1
- package/dialogs/README.md +38 -30
- package/dialogs/alert-dialog/alert-dialog.component.d.ts +3 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +2 -2
- package/dialogs/covalent-core-dialogs.d.ts +1 -1
- package/dialogs/dialog.component.d.ts +4 -4
- package/dialogs/dialogs.module.d.ts +1 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +3 -3
- package/dialogs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/dialogs/src/README.md +223 -0
- package/dialogs/window-dialog/window-dialog.component.d.ts +5 -5
- package/dynamic-menu/README.md +6 -6
- package/dynamic-menu/covalent-core-dynamic-menu.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu.component.d.ts +1 -22
- package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
- package/dynamic-menu/public_api.d.ts +1 -0
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +21 -37
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +20 -25
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +12 -13
- package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +2 -2
- package/esm2020/breadcrumbs/public_api.mjs +4 -0
- package/esm2020/common/animations/bounce/bounce.animation.mjs +1 -1
- package/esm2020/common/animations/collapse/collapse.animation.mjs +1 -1
- package/esm2020/common/animations/common/interfaces.mjs +1 -1
- package/esm2020/common/animations/fade/fadeInOut.animation.mjs +1 -1
- package/esm2020/common/animations/flash/flash.animation.mjs +1 -1
- package/esm2020/common/animations/headshake/headshake.animation.mjs +17 -5
- package/esm2020/common/animations/jello/jello.animation.mjs +29 -8
- package/esm2020/common/animations/pulse/pulse.animation.mjs +1 -1
- package/esm2020/common/animations/rotate/rotate.animation.mjs +7 -2
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +4 -2
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +1 -1
- package/esm2020/common/behaviors/disabled.mixin.mjs +1 -1
- package/esm2020/common/common.module.mjs +14 -15
- package/esm2020/common/covalent-core-common.mjs +2 -2
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +41 -41
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +19 -19
- package/esm2020/common/forms/validators/validators.mjs +6 -6
- package/esm2020/common/functions/clipboard.mjs +1 -1
- package/esm2020/common/functions/convert.mjs +1 -1
- package/esm2020/common/functions/download.mjs +1 -1
- package/esm2020/common/functions/file.mjs +1 -1
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/digits/digits.pipe.mjs +13 -13
- package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-until/time-until.pipe.mjs +9 -9
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +10 -10
- package/esm2020/common/public_api.mjs +39 -0
- package/esm2020/common/services/icon.service.mjs +6 -6
- package/esm2020/common/services/router-path.service.mjs +6 -6
- package/esm2020/covalent-core.mjs +2 -2
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +9 -40
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +9 -49
- package/esm2020/dialogs/covalent-core-dialogs.mjs +2 -2
- package/esm2020/dialogs/dialog.component.mjs +35 -76
- package/esm2020/dialogs/dialogs.module.mjs +39 -36
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +15 -73
- package/esm2020/dialogs/public_api.mjs +9 -0
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +27 -10
- package/esm2020/dialogs/services/dialog.service.mjs +16 -13
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +24 -55
- package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +2 -2
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +19 -136
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +14 -103
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +18 -101
- package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
- package/esm2020/dynamic-menu/dynamic-menu.module.mjs +44 -19
- package/esm2020/dynamic-menu/public_api.mjs +2 -1
- package/esm2020/file/covalent-core-file.mjs +2 -2
- package/esm2020/file/directives/file-drop.directive.mjs +46 -47
- package/esm2020/file/directives/file-select.directive.mjs +32 -31
- package/esm2020/file/file-input/file-input.component.mjs +41 -68
- package/esm2020/file/file-upload/file-upload.component.mjs +76 -112
- package/esm2020/file/file.module.mjs +32 -17
- package/esm2020/file/public_api.mjs +7 -0
- package/esm2020/file/services/file.service.mjs +13 -11
- package/esm2020/json-formatter/collapse.animation.mjs +51 -0
- package/esm2020/json-formatter/covalent-core-json-formatter.mjs +2 -2
- package/esm2020/json-formatter/json-formatter.component.mjs +38 -123
- package/esm2020/json-formatter/json-formatter.module.mjs +12 -13
- package/esm2020/json-formatter/public_api.mjs +3 -0
- package/esm2020/layout/covalent-core-layout.mjs +2 -2
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +17 -64
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +9 -14
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +22 -51
- package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +47 -53
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +22 -84
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +37 -124
- package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +47 -53
- package/esm2020/layout/layout-toggle.class.mjs +12 -15
- package/esm2020/layout/layout.component.mjs +22 -43
- package/esm2020/layout/layout.directives.mjs +48 -50
- package/esm2020/layout/layout.module.mjs +34 -35
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +56 -201
- package/esm2020/layout/public_api.mjs +13 -0
- package/esm2020/menu/covalent-core-menu.mjs +2 -2
- package/esm2020/menu/menu.component.mjs +7 -18
- package/esm2020/menu/menu.module.mjs +12 -13
- package/esm2020/menu/public_api.mjs +3 -0
- package/esm2020/message/collapse.animation.mjs +51 -0
- package/esm2020/message/covalent-core-message.mjs +2 -2
- package/esm2020/message/message.component.mjs +44 -102
- package/esm2020/message/message.module.mjs +19 -15
- package/esm2020/message/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/search/covalent-core-search.mjs +2 -2
- package/esm2020/search/public_api.mjs +4 -0
- package/esm2020/search/search-box/search-box.component.mjs +97 -123
- package/esm2020/search/search-input/search-input.component.mjs +116 -153
- package/esm2020/search/search.module.mjs +28 -13
- package/esm2020/side-sheet/covalent-core-side-sheet.mjs +2 -2
- package/esm2020/side-sheet/public_api.mjs +6 -0
- package/esm2020/side-sheet/side-sheet-container.mjs +89 -57
- package/esm2020/side-sheet/side-sheet-ref.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.animation.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.config.mjs +1 -1
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +109 -86
- package/esm2020/side-sheet/side-sheet.mjs +44 -31
- package/esm2020/side-sheet/side-sheet.module.mjs +37 -38
- package/esm2020/user-profile/covalent-core-user-profile.mjs +2 -2
- package/esm2020/user-profile/public_api.mjs +1 -1
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +13 -64
- package/esm2020/user-profile/user-profile.component.mjs +13 -35
- package/esm2020/user-profile/user-profile.module.mjs +32 -14
- package/fesm2015/covalent-core-breadcrumbs.mjs +35 -76
- package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2015/covalent-core-common.mjs +170 -140
- package/fesm2015/covalent-core-common.mjs.map +1 -1
- package/fesm2015/covalent-core-dialogs.mjs +125 -358
- package/fesm2015/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2015/covalent-core-dynamic-menu.mjs +73 -425
- package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-file.mjs +148 -233
- package/fesm2015/covalent-core-file.mjs.map +1 -1
- package/fesm2015/covalent-core-json-formatter.mjs +93 -148
- package/fesm2015/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2015/covalent-core-layout.mjs +194 -747
- package/fesm2015/covalent-core-layout.mjs.map +1 -1
- package/fesm2015/covalent-core-menu.mjs +10 -28
- package/fesm2015/covalent-core-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-message.mjs +79 -104
- package/fesm2015/covalent-core-message.mjs.map +1 -1
- package/fesm2015/covalent-core-search.mjs +147 -227
- package/fesm2015/covalent-core-search.mjs.map +1 -1
- package/fesm2015/covalent-core-side-sheet.mjs +202 -173
- package/fesm2015/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2015/covalent-core-user-profile.mjs +38 -114
- package/fesm2015/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2015/covalent-core.mjs.map +1 -1
- package/fesm2020/covalent-core-breadcrumbs.mjs +49 -71
- package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2020/covalent-core-common.mjs +224 -165
- package/fesm2020/covalent-core-common.mjs.map +1 -1
- package/fesm2020/covalent-core-dialogs.mjs +160 -338
- package/fesm2020/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2020/covalent-core-dynamic-menu.mjs +89 -354
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-file.mjs +229 -273
- package/fesm2020/covalent-core-file.mjs.map +1 -1
- package/fesm2020/covalent-core-json-formatter.mjs +97 -133
- package/fesm2020/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2020/covalent-core-layout.mjs +353 -767
- package/fesm2020/covalent-core-layout.mjs.map +1 -1
- package/fesm2020/covalent-core-menu.mjs +17 -29
- package/fesm2020/covalent-core-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-message.mjs +110 -114
- package/fesm2020/covalent-core-message.mjs.map +1 -1
- package/fesm2020/covalent-core-search.mjs +233 -281
- package/fesm2020/covalent-core-search.mjs.map +1 -1
- package/fesm2020/covalent-core-side-sheet.mjs +267 -200
- package/fesm2020/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2020/covalent-core-user-profile.mjs +54 -109
- package/fesm2020/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2020/covalent-core.mjs.map +1 -1
- package/file/_file-theme.scss +2 -1
- package/file/covalent-core-file.d.ts +1 -1
- package/file/directives/file-drop.directive.d.ts +6 -7
- package/file/directives/file-select.directive.d.ts +2 -2
- package/file/file-input/file-input.component.d.ts +7 -7
- package/file/file-upload/file-upload.component.d.ts +16 -9
- package/file/{public-api.d.ts → public_api.d.ts} +0 -0
- package/file/{file-input → src/file-input}/README.md +46 -37
- package/file/{file-upload → src/file-upload}/README.md +36 -27
- package/json-formatter/README.md +8 -8
- package/json-formatter/collapse.animation.d.ts +24 -0
- package/json-formatter/covalent-core-json-formatter.d.ts +1 -1
- package/json-formatter/json-formatter.component.d.ts +4 -4
- package/json-formatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/README.md +48 -50
- package/layout/covalent-core-layout.d.ts +1 -1
- package/layout/layout-card-over/layout-card-over.component.d.ts +3 -3
- package/layout/layout-footer/layout-footer.component.d.ts +3 -3
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +4 -4
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +5 -5
- package/layout/layout-nav/layout-nav.component.d.ts +5 -5
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +9 -9
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +5 -5
- package/layout/layout-toggle.class.d.ts +1 -1
- package/layout/layout.component.d.ts +4 -4
- package/layout/layout.directives.d.ts +2 -2
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +12 -12
- package/layout/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/{layout-card-over → src/layout-card-over}/README.md +19 -17
- package/layout/{layout-manage-list → src/layout-manage-list}/README.md +24 -28
- package/layout/src/layout-nav/README.md +50 -0
- package/layout/{layout-nav-list → src/layout-nav-list}/README.md +44 -40
- package/menu/covalent-core-menu.d.ts +1 -1
- package/menu/{public-api.d.ts → public_api.d.ts} +0 -0
- package/message/README.md +26 -18
- package/message/collapse.animation.d.ts +24 -0
- package/message/covalent-core-message.d.ts +1 -1
- package/message/message.component.d.ts +4 -4
- package/message/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +36 -55
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/search/README.md +74 -73
- package/search/covalent-core-search.d.ts +1 -1
- package/search/{public-api.d.ts → public_api.d.ts} +0 -0
- package/search/search-box/search-box.component.d.ts +10 -6
- package/search/search-input/search-input.component.d.ts +10 -6
- package/search/src/search-box/README.md +73 -0
- package/search/src/search-input/README.md +74 -0
- package/side-sheet/README.md +3 -5
- package/side-sheet/{side-sheet.theme.scss → _side-sheet.theme.scss} +0 -0
- package/side-sheet/covalent-core-side-sheet.d.ts +1 -1
- package/side-sheet/{public-api.d.ts → public_api.d.ts} +0 -0
- package/side-sheet/side-sheet-container.d.ts +18 -7
- package/side-sheet/side-sheet.content-directives.d.ts +22 -16
- package/side-sheet/side-sheet.d.ts +2 -2
- package/side-sheet/side-sheet.module.d.ts +1 -1
- package/user-profile/README.md +5 -5
- package/user-profile/covalent-core-user-profile.d.ts +1 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +2 -2
- package/user-profile/user-profile.component.d.ts +2 -2
- package/breadcrumbs/breadcrumb/breadcrumb.component.scss +0 -25
- package/breadcrumbs/breadcrumbs.component.scss +0 -8
- package/breadcrumbs/index.d.ts +0 -1
- package/common/index.d.ts +0 -1
- package/common/material-icons.css +0 -111
- package/common/material-icons.css.map +0 -1
- package/common/material-icons.scss +0 -3
- package/common/platform.css +0 -16819
- package/common/platform.css.map +0 -1
- package/common/platform.scss +0 -7
- package/common/styles/_elevation.scss +0 -280
- package/common/styles/_layout.scss +0 -605
- package/common/styles/_palette-dark.scss +0 -326
- package/common/styles/_palette-light.scss +0 -637
- package/common/styles/_rtl.scss +0 -31
- package/common/styles/_styles.scss +0 -10
- package/common/styles/_theme-functions.scss +0 -25
- package/common/styles/_typography-functions.scss +0 -35
- package/common/styles/_variables.scss +0 -98
- package/common/styles/colors/_colors-dark.scss +0 -1399
- package/common/styles/colors/_colors-light.scss +0 -3235
- package/common/styles/colors/_colors.scss +0 -7
- package/common/styles/core/_button.scss +0 -60
- package/common/styles/core/_card.scss +0 -184
- package/common/styles/core/_content.scss +0 -43
- package/common/styles/core/_core.scss +0 -23
- package/common/styles/core/_divider.scss +0 -16
- package/common/styles/core/_icons.scss +0 -22
- package/common/styles/core/_list.scss +0 -8
- package/common/styles/core/_sidenav.scss +0 -22
- package/common/styles/core/_structure.scss +0 -127
- package/common/styles/core/_toolbar.scss +0 -53
- package/common/styles/core/_whiteframe.scss +0 -130
- package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
- package/common/styles/font/_font.scss +0 -99
- package/common/styles/utilities/_general.scss +0 -65
- package/common/styles/utilities/_pad.scss +0 -36
- package/common/styles/utilities/_pull.scss +0 -36
- package/common/styles/utilities/_push.scss +0 -36
- package/common/styles/utilities/_size.scss +0 -24
- package/common/styles/utilities/_text.scss +0 -105
- package/common/styles/utilities/_utilities.scss +0 -15
- package/dialogs/alert-dialog/alert-dialog.component.scss +0 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.scss +0 -3
- package/dialogs/dialog.component.scss +0 -49
- package/dialogs/index.d.ts +0 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.scss +0 -16
- package/dialogs/window-dialog/window-dialog.component.scss +0 -31
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +0 -7
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +0 -13
- package/dynamic-menu/dynamic-menu.component.scss +0 -0
- package/dynamic-menu/index.d.ts +0 -1
- package/esm2020/breadcrumbs/index.mjs +0 -2
- package/esm2020/breadcrumbs/public-api.mjs +0 -4
- package/esm2020/common/index.mjs +0 -2
- package/esm2020/common/public-api.mjs +0 -39
- package/esm2020/dialogs/index.mjs +0 -2
- package/esm2020/dialogs/public-api.mjs +0 -9
- package/esm2020/dynamic-menu/index.mjs +0 -2
- package/esm2020/file/index.mjs +0 -2
- package/esm2020/file/public-api.mjs +0 -7
- package/esm2020/index.mjs +0 -2
- package/esm2020/json-formatter/index.mjs +0 -2
- package/esm2020/json-formatter/public-api.mjs +0 -3
- package/esm2020/layout/index.mjs +0 -2
- package/esm2020/layout/public-api.mjs +0 -13
- package/esm2020/menu/index.mjs +0 -2
- package/esm2020/menu/public-api.mjs +0 -3
- package/esm2020/message/index.mjs +0 -2
- package/esm2020/message/public-api.mjs +0 -3
- package/esm2020/search/index.mjs +0 -2
- package/esm2020/search/public-api.mjs +0 -4
- package/esm2020/side-sheet/index.mjs +0 -2
- package/esm2020/side-sheet/public-api.mjs +0 -6
- package/esm2020/user-profile/index.mjs +0 -2
- package/file/file-input/file-input.component.scss +0 -22
- package/file/file-upload/file-upload.component.scss +0 -34
- package/file/index.d.ts +0 -1
- package/json-formatter/index.d.ts +0 -1
- package/json-formatter/json-formatter.component.scss +0 -74
- package/layout/index.d.ts +0 -1
- package/layout/layout-card-over/layout-card-over.component.scss +0 -45
- package/layout/layout-footer/layout-footer.component.scss +0 -4
- package/layout/layout-manage-list/layout-manage-list.component.scss +0 -82
- package/layout/layout-nav/README.md +0 -46
- package/layout/layout-nav/layout-nav.component.scss +0 -54
- package/layout/layout-nav-list/layout-nav-list.component.scss +0 -115
- package/layout/layout.component.scss +0 -16
- package/layout/navigation-drawer/navigation-drawer.component.scss +0 -81
- package/menu/index.d.ts +0 -1
- package/menu/menu.component.scss +0 -51
- package/message/index.d.ts +0 -1
- package/message/message.component.scss +0 -32
- package/schematics/README.md +0 -66
- package/schematics/ng-add/files/theme.scss +0 -64
- package/search/index.d.ts +0 -1
- package/search/search-box/README.md +0 -62
- package/search/search-box/search-box.component.scss +0 -37
- package/search/search-input/README.md +0 -65
- package/search/search-input/search-input.component.scss +0 -75
- package/side-sheet/index.d.ts +0 -1
- package/side-sheet/side-sheet.scss +0 -68
- package/theming/prebuilt/blue-grey-deep-orange.css +0 -2815
- package/theming/prebuilt/blue-grey-deep-orange.css.map +0 -1
- package/theming/prebuilt/blue-grey-deep-orange.scss +0 -20
- package/theming/prebuilt/blue-orange.css +0 -2815
- package/theming/prebuilt/blue-orange.css.map +0 -1
- package/theming/prebuilt/blue-orange.scss +0 -20
- package/theming/prebuilt/indigo-pink.css +0 -2815
- package/theming/prebuilt/indigo-pink.css.map +0 -1
- package/theming/prebuilt/indigo-pink.scss +0 -20
- package/theming/prebuilt/orange-light-blue.css +0 -2815
- package/theming/prebuilt/orange-light-blue.css.map +0 -1
- package/theming/prebuilt/orange-light-blue.scss +0 -20
- package/theming/prebuilt/teal-orange.css +0 -2815
- package/theming/prebuilt/teal-orange.css.map +0 -1
- package/theming/prebuilt/teal-orange.scss +0 -20
- package/user-profile/index.d.ts +0 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.scss +0 -41
@@ -1,99 +0,0 @@
|
|
1
|
-
$mat-font-url: 'styles/font/' !default;
|
2
|
-
|
3
|
-
@mixin covalent-material-icons() {
|
4
|
-
@font-face {
|
5
|
-
font-family: 'Material Icons';
|
6
|
-
font-style: normal;
|
7
|
-
font-weight: 400;
|
8
|
-
src: url($mat-font-url + 'MaterialIcons-Regular-v48.woff2') format('woff2');
|
9
|
-
}
|
10
|
-
|
11
|
-
.material-icons {
|
12
|
-
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
|
13
|
-
font-family: 'Material Icons';
|
14
|
-
font-weight: normal;
|
15
|
-
font-style: normal;
|
16
|
-
font-size: 24px; /* Preferred icon size */
|
17
|
-
display: inline-block;
|
18
|
-
width: 1em;
|
19
|
-
height: 1em;
|
20
|
-
line-height: 1;
|
21
|
-
text-transform: none;
|
22
|
-
letter-spacing: normal;
|
23
|
-
word-wrap: normal;
|
24
|
-
white-space: nowrap;
|
25
|
-
direction: ltr;
|
26
|
-
|
27
|
-
/* Support for all WebKit browsers. */
|
28
|
-
-webkit-font-smoothing: antialiased;
|
29
|
-
|
30
|
-
/* Support for Safari and Chrome. */
|
31
|
-
text-rendering: optimizeLegibility;
|
32
|
-
|
33
|
-
/* Support for Firefox. */
|
34
|
-
-moz-osx-font-smoothing: grayscale;
|
35
|
-
|
36
|
-
/* Support for IE. */
|
37
|
-
font-feature-settings: 'liga';
|
38
|
-
}
|
39
|
-
|
40
|
-
// Ensure our size prevails over material
|
41
|
-
mat-icon.material-icons {
|
42
|
-
&,
|
43
|
-
&.mat-icon {
|
44
|
-
width: 1em;
|
45
|
-
height: 1em;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
|
49
|
-
// Rules for sizing the icon.
|
50
|
-
.material-icons.md-18,
|
51
|
-
.material-icons.mat-18 {
|
52
|
-
font-size: 18px;
|
53
|
-
height: 18px;
|
54
|
-
width: 18px;
|
55
|
-
}
|
56
|
-
|
57
|
-
.material-icons.md-24,
|
58
|
-
.material-icons.mat-24 {
|
59
|
-
font-size: 24px;
|
60
|
-
height: 24px;
|
61
|
-
width: 24px;
|
62
|
-
}
|
63
|
-
|
64
|
-
.material-icons.md-36,
|
65
|
-
.material-icons.mat-36 {
|
66
|
-
font-size: 36px;
|
67
|
-
height: 36px;
|
68
|
-
width: 36px;
|
69
|
-
}
|
70
|
-
|
71
|
-
.material-icons.md-48,
|
72
|
-
.material-icons.mat-48 {
|
73
|
-
font-size: 48px;
|
74
|
-
height: 48px;
|
75
|
-
width: 48px;
|
76
|
-
}
|
77
|
-
|
78
|
-
// Rules for using icons as black on a light background.
|
79
|
-
.material-icons.md-dark,
|
80
|
-
.material-icons.mat-dark {
|
81
|
-
color: rgba(0, 0, 0, 54%);
|
82
|
-
}
|
83
|
-
|
84
|
-
.material-icons.md-dark.md-inactive,
|
85
|
-
.material-icons.mat-dark.mat-inactive {
|
86
|
-
color: rgba(0, 0, 0, 26%);
|
87
|
-
}
|
88
|
-
|
89
|
-
// Rules for using icons as white on a dark background.
|
90
|
-
.material-icons.md-light,
|
91
|
-
.material-icons.mat-light {
|
92
|
-
color: rgba(255, 255, 255, 100%);
|
93
|
-
}
|
94
|
-
|
95
|
-
.material-icons.md-light.md-inactive,
|
96
|
-
.material-icons.mat-light.mat-inactive {
|
97
|
-
color: rgba(255, 255, 255, 30%);
|
98
|
-
}
|
99
|
-
}
|
@@ -1,65 +0,0 @@
|
|
1
|
-
@mixin td-general-utilities() {
|
2
|
-
body {
|
3
|
-
// Angular 4 added tabindex to everything, this style removes the outline:
|
4
|
-
[tabindex]:focus {
|
5
|
-
outline: none;
|
6
|
-
}
|
7
|
-
|
8
|
-
.radius-none {
|
9
|
-
border-radius: 0;
|
10
|
-
}
|
11
|
-
|
12
|
-
.overflow-hidden {
|
13
|
-
overflow: hidden;
|
14
|
-
}
|
15
|
-
|
16
|
-
.overflow-auto {
|
17
|
-
overflow: auto;
|
18
|
-
}
|
19
|
-
|
20
|
-
.overflow-visible {
|
21
|
-
overflow: visible;
|
22
|
-
}
|
23
|
-
|
24
|
-
.block {
|
25
|
-
display: block;
|
26
|
-
}
|
27
|
-
|
28
|
-
.inline-block {
|
29
|
-
display: inline-block;
|
30
|
-
}
|
31
|
-
|
32
|
-
.relative {
|
33
|
-
position: relative;
|
34
|
-
}
|
35
|
-
|
36
|
-
.fixed {
|
37
|
-
position: fixed;
|
38
|
-
}
|
39
|
-
|
40
|
-
.height-auto {
|
41
|
-
min-height: 0;
|
42
|
-
}
|
43
|
-
|
44
|
-
.z-3 {
|
45
|
-
z-index: 3;
|
46
|
-
}
|
47
|
-
|
48
|
-
.z-2 {
|
49
|
-
z-index: 2;
|
50
|
-
}
|
51
|
-
|
52
|
-
.z-1 {
|
53
|
-
z-index: 1;
|
54
|
-
}
|
55
|
-
|
56
|
-
.focus-weight:focus {
|
57
|
-
outline: 0;
|
58
|
-
font-weight: 700;
|
59
|
-
}
|
60
|
-
|
61
|
-
.cursor-pointer:hover {
|
62
|
-
cursor: pointer;
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
@mixin pad($direction: '') {
|
2
|
-
.pad#{$direction} {
|
3
|
-
padding#{$direction}: 16px;
|
4
|
-
}
|
5
|
-
.pad#{$direction}-xxl {
|
6
|
-
padding#{$direction}: 56px;
|
7
|
-
}
|
8
|
-
.pad#{$direction}-xl {
|
9
|
-
padding#{$direction}: 48px;
|
10
|
-
}
|
11
|
-
.pad#{$direction}-lg {
|
12
|
-
padding#{$direction}: 32px;
|
13
|
-
}
|
14
|
-
.pad#{$direction}-md {
|
15
|
-
padding#{$direction}: 24px;
|
16
|
-
}
|
17
|
-
.pad#{$direction}-sm {
|
18
|
-
padding#{$direction}: 8px;
|
19
|
-
}
|
20
|
-
.pad#{$direction}-xs {
|
21
|
-
padding#{$direction}: 4px;
|
22
|
-
}
|
23
|
-
.pad#{$direction}-none {
|
24
|
-
padding#{$direction}: 0;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
@mixin td-padding-utilities() {
|
29
|
-
body {
|
30
|
-
@include pad();
|
31
|
-
@include pad(-bottom);
|
32
|
-
@include pad(-top);
|
33
|
-
@include pad(-left);
|
34
|
-
@include pad(-right);
|
35
|
-
}
|
36
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
@mixin pull($direction: '') {
|
2
|
-
.pull#{$direction}-xxl {
|
3
|
-
margin#{$direction}: -56px;
|
4
|
-
}
|
5
|
-
.pull#{$direction}-xl {
|
6
|
-
margin#{$direction}: -48px;
|
7
|
-
}
|
8
|
-
.pull#{$direction}-lg {
|
9
|
-
margin#{$direction}: -32px;
|
10
|
-
}
|
11
|
-
.pull#{$direction}-md {
|
12
|
-
margin#{$direction}: -24px;
|
13
|
-
}
|
14
|
-
.pull#{$direction} {
|
15
|
-
margin#{$direction}: -16px;
|
16
|
-
}
|
17
|
-
.pull#{$direction}-sm {
|
18
|
-
margin#{$direction}: -8px;
|
19
|
-
}
|
20
|
-
.pull#{$direction}-xs {
|
21
|
-
margin#{$direction}: -4px;
|
22
|
-
}
|
23
|
-
.pull#{$direction}-none {
|
24
|
-
margin#{$direction}: 0;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
@mixin td-pulling-utilities() {
|
29
|
-
body {
|
30
|
-
@include pull();
|
31
|
-
@include pull(-bottom);
|
32
|
-
@include pull(-top);
|
33
|
-
@include pull(-left);
|
34
|
-
@include pull(-right);
|
35
|
-
}
|
36
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
@mixin push($direction: '') {
|
2
|
-
.push#{$direction} {
|
3
|
-
margin#{$direction}: 16px;
|
4
|
-
}
|
5
|
-
.push#{$direction}-xxl {
|
6
|
-
margin#{$direction}: 56px;
|
7
|
-
}
|
8
|
-
.push#{$direction}-xl {
|
9
|
-
margin#{$direction}: 48px;
|
10
|
-
}
|
11
|
-
.push#{$direction}-lg {
|
12
|
-
margin#{$direction}: 32px;
|
13
|
-
}
|
14
|
-
.push#{$direction}-md {
|
15
|
-
margin#{$direction}: 24px;
|
16
|
-
}
|
17
|
-
.push#{$direction}-sm {
|
18
|
-
margin#{$direction}: 8px;
|
19
|
-
}
|
20
|
-
.push#{$direction}-xs {
|
21
|
-
margin#{$direction}: 4px;
|
22
|
-
}
|
23
|
-
.push#{$direction}-none {
|
24
|
-
margin#{$direction}: 0;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
@mixin td-pushing-utilities() {
|
29
|
-
body {
|
30
|
-
@include push();
|
31
|
-
@include push(-bottom);
|
32
|
-
@include push(-top);
|
33
|
-
@include push(-left);
|
34
|
-
@include push(-right);
|
35
|
-
}
|
36
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
@mixin td-size-utilities() {
|
2
|
-
$size-list: 12 16 24 32 50 64 72 100 128 256;
|
3
|
-
@each $current-size in $size-list {
|
4
|
-
$i: index($size-list, $current-size);
|
5
|
-
.size-#{$current-size} {
|
6
|
-
height: #{$current-size}px;
|
7
|
-
width: #{$current-size}px;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
@each $current-size in $size-list {
|
11
|
-
$i: index($size-list, $current-size);
|
12
|
-
.size-height-#{$current-size} {
|
13
|
-
height: #{$current-size}px;
|
14
|
-
width: auto;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
@each $current-size in $size-list {
|
18
|
-
$i: index($size-list, $current-size);
|
19
|
-
.size-width-#{$current-size} {
|
20
|
-
width: #{$current-size}px;
|
21
|
-
height: auto;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
@@ -1,105 +0,0 @@
|
|
1
|
-
@mixin td-text-utilities() {
|
2
|
-
body {
|
3
|
-
h1,
|
4
|
-
h2,
|
5
|
-
h3,
|
6
|
-
h4,
|
7
|
-
h5,
|
8
|
-
h6 {
|
9
|
-
& > small {
|
10
|
-
font-size: 60%;
|
11
|
-
}
|
12
|
-
}
|
13
|
-
|
14
|
-
.text-normal {
|
15
|
-
font-style: normal;
|
16
|
-
}
|
17
|
-
|
18
|
-
.text-center {
|
19
|
-
text-align: center;
|
20
|
-
}
|
21
|
-
|
22
|
-
.text-left {
|
23
|
-
text-align: left;
|
24
|
-
}
|
25
|
-
|
26
|
-
.text-right {
|
27
|
-
text-align: right;
|
28
|
-
}
|
29
|
-
|
30
|
-
.text-xs,
|
31
|
-
.text-sm,
|
32
|
-
.text-md,
|
33
|
-
.text-lg {
|
34
|
-
text-rendering: optimizeLegibility;
|
35
|
-
}
|
36
|
-
|
37
|
-
.text-micro {
|
38
|
-
font-size: 10px;
|
39
|
-
font-weight: normal;
|
40
|
-
letter-spacing: 1px;
|
41
|
-
}
|
42
|
-
|
43
|
-
.text-xs {
|
44
|
-
font-size: 50%;
|
45
|
-
}
|
46
|
-
|
47
|
-
.text-sm {
|
48
|
-
font-size: 70%;
|
49
|
-
}
|
50
|
-
|
51
|
-
.text-md {
|
52
|
-
font-size: 80%;
|
53
|
-
}
|
54
|
-
|
55
|
-
.text-lg {
|
56
|
-
font-size: 110%;
|
57
|
-
}
|
58
|
-
|
59
|
-
.text-xl {
|
60
|
-
font-size: 120%;
|
61
|
-
}
|
62
|
-
|
63
|
-
.text-xxl {
|
64
|
-
font-size: 130%;
|
65
|
-
}
|
66
|
-
|
67
|
-
.text-30 {
|
68
|
-
font-size: 30px;
|
69
|
-
}
|
70
|
-
|
71
|
-
.text-super {
|
72
|
-
font-size: 60px;
|
73
|
-
}
|
74
|
-
|
75
|
-
.text-wrap {
|
76
|
-
white-space: normal;
|
77
|
-
}
|
78
|
-
|
79
|
-
.text-break {
|
80
|
-
word-break: break-word;
|
81
|
-
}
|
82
|
-
|
83
|
-
.text-upper {
|
84
|
-
text-transform: uppercase;
|
85
|
-
}
|
86
|
-
|
87
|
-
.text-lower {
|
88
|
-
text-transform: lowercase;
|
89
|
-
}
|
90
|
-
|
91
|
-
.text-caps {
|
92
|
-
text-transform: capitalize;
|
93
|
-
}
|
94
|
-
|
95
|
-
.text-truncate {
|
96
|
-
white-space: nowrap;
|
97
|
-
overflow: hidden;
|
98
|
-
text-overflow: ellipsis;
|
99
|
-
}
|
100
|
-
|
101
|
-
.text-nodecoration {
|
102
|
-
text-decoration: none;
|
103
|
-
}
|
104
|
-
}
|
105
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
@import 'general';
|
2
|
-
@import 'pad';
|
3
|
-
@import 'pull';
|
4
|
-
@import 'push';
|
5
|
-
@import 'size';
|
6
|
-
@import 'text';
|
7
|
-
|
8
|
-
@mixin covalent-utilities() {
|
9
|
-
@include td-general-utilities();
|
10
|
-
@include td-padding-utilities();
|
11
|
-
@include td-pulling-utilities();
|
12
|
-
@include td-pushing-utilities();
|
13
|
-
@include td-size-utilities();
|
14
|
-
@include td-text-utilities();
|
15
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
.td-dialog-title {
|
2
|
-
margin-top: 0;
|
3
|
-
margin-bottom: 20px;
|
4
|
-
}
|
5
|
-
|
6
|
-
.td-dialog-content {
|
7
|
-
margin-bottom: 16px;
|
8
|
-
}
|
9
|
-
|
10
|
-
.td-dialog-actions {
|
11
|
-
position: relative;
|
12
|
-
top: 16px;
|
13
|
-
left: 16px;
|
14
|
-
|
15
|
-
::ng-deep [dir='rtl'] & {
|
16
|
-
right: 16px;
|
17
|
-
left: auto;
|
18
|
-
}
|
19
|
-
}
|
20
|
-
|
21
|
-
:host {
|
22
|
-
display: block;
|
23
|
-
|
24
|
-
.td-dialog-actions {
|
25
|
-
// [layout="row"]
|
26
|
-
flex-direction: row;
|
27
|
-
box-sizing: border-box;
|
28
|
-
display: flex;
|
29
|
-
|
30
|
-
.td-dialog-spacer {
|
31
|
-
// flex
|
32
|
-
flex: 1;
|
33
|
-
}
|
34
|
-
|
35
|
-
::ng-deep button {
|
36
|
-
text-transform: uppercase;
|
37
|
-
margin-left: 8px;
|
38
|
-
|
39
|
-
[dir='rtl'] & {
|
40
|
-
margin-right: 8px;
|
41
|
-
margin-left: inherit;
|
42
|
-
}
|
43
|
-
|
44
|
-
padding-left: 8px;
|
45
|
-
padding-right: 8px;
|
46
|
-
min-width: 64px;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
package/dialogs/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
@@ -1,31 +0,0 @@
|
|
1
|
-
:host {
|
2
|
-
height: 100%;
|
3
|
-
display: flex;
|
4
|
-
flex-direction: column;
|
5
|
-
}
|
6
|
-
|
7
|
-
.truncate {
|
8
|
-
white-space: nowrap;
|
9
|
-
overflow: hidden;
|
10
|
-
text-overflow: ellipsis;
|
11
|
-
}
|
12
|
-
|
13
|
-
.td-window-dialog-toolbar {
|
14
|
-
background: none;
|
15
|
-
}
|
16
|
-
|
17
|
-
.td-window-dialog-title {
|
18
|
-
margin-bottom: 0;
|
19
|
-
}
|
20
|
-
|
21
|
-
.td-window-dialog-close {
|
22
|
-
margin-right: -8px;
|
23
|
-
}
|
24
|
-
|
25
|
-
::ng-deep {
|
26
|
-
.td-window-dialog {
|
27
|
-
.mat-dialog-container {
|
28
|
-
padding: 0;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
}
|
File without changes
|
package/dynamic-menu/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public_api';
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9icmVhZGNydW1icy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
@@ -1,4 +0,0 @@
|
|
1
|
-
export * from './breadcrumbs.module';
|
2
|
-
export * from './breadcrumbs.component';
|
3
|
-
export * from './breadcrumb/breadcrumb.component';
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2JyZWFkY3J1bWJzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JyZWFkY3J1bWJzLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2JyZWFkY3J1bWJzLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2JyZWFkY3J1bWIvYnJlYWRjcnVtYi5jb21wb25lbnQnO1xuIl19
|
package/esm2020/common/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9jb21tb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
@@ -1,39 +0,0 @@
|
|
1
|
-
export * from './common.module';
|
2
|
-
// Utility functions
|
3
|
-
export * from './animations/rotate/rotate.animation';
|
4
|
-
export * from './animations/collapse/collapse.animation';
|
5
|
-
export * from './animations/fade/fadeInOut.animation';
|
6
|
-
export * from './animations/bounce/bounce.animation';
|
7
|
-
export * from './animations/flash/flash.animation';
|
8
|
-
export * from './animations/headshake/headshake.animation';
|
9
|
-
export * from './animations/jello/jello.animation';
|
10
|
-
export * from './animations/pulse/pulse.animation';
|
11
|
-
/**
|
12
|
-
* BEHAVIORS
|
13
|
-
*/
|
14
|
-
export * from './behaviors/control-value-accesor.mixin';
|
15
|
-
export * from './behaviors/disabled.mixin';
|
16
|
-
export * from './behaviors/disable-ripple.mixin';
|
17
|
-
// Directives
|
18
|
-
export * from './forms/auto-trim/auto-trim.directive';
|
19
|
-
export * from './directives/fullscreen/fullscreen.directive';
|
20
|
-
// Validators
|
21
|
-
export * from './forms/validators/validators';
|
22
|
-
/**
|
23
|
-
* FUNCTIONS
|
24
|
-
*/
|
25
|
-
export * from './functions/clipboard';
|
26
|
-
export * from './functions/convert';
|
27
|
-
export * from './functions/download';
|
28
|
-
export * from './functions/file';
|
29
|
-
/**
|
30
|
-
* PIPES
|
31
|
-
*/
|
32
|
-
export * from './pipes/time-ago/time-ago.pipe';
|
33
|
-
export * from './pipes/time-difference/time-difference.pipe';
|
34
|
-
export * from './pipes/bytes/bytes.pipe';
|
35
|
-
export * from './pipes/digits/digits.pipe';
|
36
|
-
export * from './pipes/truncate/truncate.pipe';
|
37
|
-
export * from './pipes/decimal-bytes/decimal-bytes.pipe';
|
38
|
-
export * from './pipes/time-until/time-until.pipe';
|
39
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2NvbW1vbi9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUM7QUFFaEMsb0JBQW9CO0FBQ3BCLGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxvQ0FBb0MsQ0FBQztBQUVuRDs7R0FFRztBQUNILGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGtDQUFrQyxDQUFDO0FBRWpELGFBQWE7QUFDYixjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsOENBQThDLENBQUM7QUFFN0QsYUFBYTtBQUNiLGNBQWMsK0JBQStCLENBQUM7QUFFOUM7O0dBRUc7QUFDSCxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGtCQUFrQixDQUFDO0FBRWpDOztHQUVHO0FBQ0gsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tbW9uLm1vZHVsZSc7XG5cbi8vIFV0aWxpdHkgZnVuY3Rpb25zXG5leHBvcnQgKiBmcm9tICcuL2FuaW1hdGlvbnMvcm90YXRlL3JvdGF0ZS5hbmltYXRpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9hbmltYXRpb25zL2NvbGxhcHNlL2NvbGxhcHNlLmFuaW1hdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2FuaW1hdGlvbnMvZmFkZS9mYWRlSW5PdXQuYW5pbWF0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYW5pbWF0aW9ucy9ib3VuY2UvYm91bmNlLmFuaW1hdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2FuaW1hdGlvbnMvZmxhc2gvZmxhc2guYW5pbWF0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYW5pbWF0aW9ucy9oZWFkc2hha2UvaGVhZHNoYWtlLmFuaW1hdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2FuaW1hdGlvbnMvamVsbG8vamVsbG8uYW5pbWF0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYW5pbWF0aW9ucy9wdWxzZS9wdWxzZS5hbmltYXRpb24nO1xuXG4vKipcbiAqIEJFSEFWSU9SU1xuICovXG5leHBvcnQgKiBmcm9tICcuL2JlaGF2aW9ycy9jb250cm9sLXZhbHVlLWFjY2Vzb3IubWl4aW4nO1xuZXhwb3J0ICogZnJvbSAnLi9iZWhhdmlvcnMvZGlzYWJsZWQubWl4aW4nO1xuZXhwb3J0ICogZnJvbSAnLi9iZWhhdmlvcnMvZGlzYWJsZS1yaXBwbGUubWl4aW4nO1xuXG4vLyBEaXJlY3RpdmVzXG5leHBvcnQgKiBmcm9tICcuL2Zvcm1zL2F1dG8tdHJpbS9hdXRvLXRyaW0uZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9mdWxsc2NyZWVuL2Z1bGxzY3JlZW4uZGlyZWN0aXZlJztcblxuLy8gVmFsaWRhdG9yc1xuZXhwb3J0ICogZnJvbSAnLi9mb3Jtcy92YWxpZGF0b3JzL3ZhbGlkYXRvcnMnO1xuXG4vKipcbiAqIEZVTkNUSU9OU1xuICovXG5leHBvcnQgKiBmcm9tICcuL2Z1bmN0aW9ucy9jbGlwYm9hcmQnO1xuZXhwb3J0ICogZnJvbSAnLi9mdW5jdGlvbnMvY29udmVydCc7XG5leHBvcnQgKiBmcm9tICcuL2Z1bmN0aW9ucy9kb3dubG9hZCc7XG5leHBvcnQgKiBmcm9tICcuL2Z1bmN0aW9ucy9maWxlJztcblxuLyoqXG4gKiBQSVBFU1xuICovXG5leHBvcnQgKiBmcm9tICcuL3BpcGVzL3RpbWUtYWdvL3RpbWUtYWdvLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9waXBlcy90aW1lLWRpZmZlcmVuY2UvdGltZS1kaWZmZXJlbmNlLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9waXBlcy9ieXRlcy9ieXRlcy5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vcGlwZXMvZGlnaXRzL2RpZ2l0cy5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vcGlwZXMvdHJ1bmNhdGUvdHJ1bmNhdGUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL3BpcGVzL2RlY2ltYWwtYnl0ZXMvZGVjaW1hbC1ieXRlcy5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vcGlwZXMvdGltZS11bnRpbC90aW1lLXVudGlsLnBpcGUnO1xuIl19
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9kaWFsb2dzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,9 +0,0 @@
|
|
1
|
-
export * from './dialogs.module';
|
2
|
-
export * from './dialog.component';
|
3
|
-
export * from './alert-dialog/alert-dialog.component';
|
4
|
-
export * from './confirm-dialog/confirm-dialog.component';
|
5
|
-
export * from './prompt-dialog/prompt-dialog.component';
|
6
|
-
export * from './services/dialog.service';
|
7
|
-
export * from './resizable-draggable-dialog/resizable-draggable-dialog';
|
8
|
-
export * from './window-dialog/window-dialog.component';
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2RpYWxvZ3MvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyx1Q0FBdUMsQ0FBQztBQUN0RCxjQUFjLDJDQUEyQyxDQUFDO0FBQzFELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHlEQUF5RCxDQUFDO0FBQ3hFLGNBQWMseUNBQXlDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2RpYWxvZ3MubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlhbG9nLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2FsZXJ0LWRpYWxvZy9hbGVydC1kaWFsb2cuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY29uZmlybS1kaWFsb2cvY29uZmlybS1kaWFsb2cuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcHJvbXB0LWRpYWxvZy9wcm9tcHQtZGlhbG9nLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3NlcnZpY2VzL2RpYWxvZy5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vcmVzaXphYmxlLWRyYWdnYWJsZS1kaWFsb2cvcmVzaXphYmxlLWRyYWdnYWJsZS1kaWFsb2cnO1xuZXhwb3J0ICogZnJvbSAnLi93aW5kb3ctZGlhbG9nL3dpbmRvdy1kaWFsb2cuY29tcG9uZW50JztcbiJdfQ==
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public_api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9keW5hbWljLW1lbnUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpY19hcGknO1xuIl19
|
package/esm2020/file/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9maWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,7 +0,0 @@
|
|
1
|
-
export * from './file.module';
|
2
|
-
export * from './directives/file-drop.directive';
|
3
|
-
export * from './directives/file-select.directive';
|
4
|
-
export * from './file-input/file-input.component';
|
5
|
-
export * from './file-upload/file-upload.component';
|
6
|
-
export * from './services/file.service';
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2ZpbGUvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2ZpbGUubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9maWxlLWRyb3AuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9maWxlLXNlbGVjdC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9maWxlLWlucHV0L2ZpbGUtaW5wdXQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZmlsZS11cGxvYWQvZmlsZS11cGxvYWQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vc2VydmljZXMvZmlsZS5zZXJ2aWNlJztcbiJdfQ==
|
package/esm2020/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9qc29uLWZvcm1hdHRlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
@@ -1,3 +0,0 @@
|
|
1
|
-
export * from './json-formatter.module';
|
2
|
-
export * from './json-formatter.component';
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2pzb24tZm9ybWF0dGVyL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9qc29uLWZvcm1hdHRlci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9qc29uLWZvcm1hdHRlci5jb21wb25lbnQnO1xuIl19
|
package/esm2020/layout/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9sYXlvdXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|