@mediusinc/mng-commons 1.4.0 → 2.0.0-rc.0-08f92864
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/lib/api/models/builders/query-param.builder.mjs +58 -58
- package/esm2020/lib/api/models/filter-match-type.model.mjs +24 -24
- package/esm2020/lib/api/models/filter-param.model.mjs +32 -32
- package/esm2020/lib/api/models/index.mjs +8 -8
- package/esm2020/lib/api/models/mappers.mjs +12 -12
- package/esm2020/lib/api/models/query-mode.model.mjs +17 -17
- package/esm2020/lib/api/models/query-param.model.mjs +67 -67
- package/esm2020/lib/api/models/query-result.model.mjs +23 -23
- package/esm2020/lib/api/models/serialization.model.mjs +1 -1
- package/esm2020/lib/api/services/api.abstract.service.mjs +57 -57
- package/esm2020/lib/api/services/crud-api.abstract.service.mjs +74 -74
- package/esm2020/lib/api/services/get-all-api.abstract.service.mjs +29 -29
- package/esm2020/lib/api/services/index.mjs +3 -3
- package/esm2020/lib/api/utils/index.mjs +2 -2
- package/esm2020/lib/api/utils/medius-rest.util.mjs +213 -213
- package/esm2020/lib/api/utils/object-serializer.util.mjs +247 -247
- package/esm2020/lib/components/action/action.component.mjs +281 -275
- package/esm2020/lib/components/action/editor/action-editor.component.mjs +303 -303
- package/esm2020/lib/components/action/index.mjs +4 -4
- package/esm2020/lib/components/action/localization/data-language-dropdown.component.mjs +45 -45
- package/esm2020/lib/components/action/models/action-component.model.mjs +2 -2
- package/esm2020/lib/components/action/models/action-confirmation-service.model.mjs +2 -2
- package/esm2020/lib/components/action/models/action-execution.model.mjs +249 -249
- package/esm2020/lib/components/action/models/index.mjs +4 -4
- package/esm2020/lib/components/action/models/tableview-action-default-categories.model.mjs +10 -10
- package/esm2020/lib/components/action/route/action-route.component.mjs +131 -130
- package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +301 -300
- package/esm2020/lib/components/form/date-range/date-range.component.mjs +110 -109
- package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +196 -194
- package/esm2020/lib/components/form/editor/form-editor.component.mjs +246 -243
- package/esm2020/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +43 -39
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +51 -50
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +46 -45
- package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +28 -26
- package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +180 -150
- package/esm2020/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.mjs +24 -24
- package/esm2020/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +191 -186
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +198 -197
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +158 -154
- package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +19 -17
- package/esm2020/lib/components/form/formly/fields/index.mjs +10 -10
- package/esm2020/lib/components/form/formly/formly.config.mjs +211 -211
- package/esm2020/lib/components/form/formly/index.mjs +1 -1
- package/esm2020/lib/components/form/formly/models/formly-config.model.mjs +1 -1
- package/esm2020/lib/components/form/formly/models/formly-field.model.mjs +2 -2
- package/esm2020/lib/components/form/formly/models/index.mjs +2 -2
- package/esm2020/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +16 -15
- package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +84 -83
- package/esm2020/lib/components/form/formly/wrappers/index.mjs +2 -2
- package/esm2020/lib/components/form/index.mjs +4 -4
- package/esm2020/lib/components/form/models/field-action-context.model.mjs +2 -2
- package/esm2020/lib/components/form/models/form-editor.event.mjs +33 -33
- package/esm2020/lib/components/form/models/form-editor.interface.mjs +1 -1
- package/esm2020/lib/components/form/models/index.mjs +2 -2
- package/esm2020/lib/components/layout/breadcrumb.component.mjs +18 -17
- package/esm2020/lib/components/layout/footer.component.mjs +18 -17
- package/esm2020/lib/components/layout/index.mjs +7 -7
- package/esm2020/lib/components/layout/main-layout.component.mjs +52 -52
- package/esm2020/lib/components/layout/menu-item.component.mjs +292 -272
- package/esm2020/lib/components/layout/menu.component.mjs +32 -21
- package/esm2020/lib/components/layout/services/index.mjs +1 -1
- package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +194 -194
- package/esm2020/lib/components/layout/topbar.component.mjs +67 -65
- package/esm2020/lib/components/layout/version.component.mjs +58 -58
- package/esm2020/lib/components/tableview/index.mjs +6 -6
- package/esm2020/lib/components/tableview/models/index.mjs +1 -1
- package/esm2020/lib/components/tableview/models/table.event.mjs +16 -16
- package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +150 -147
- package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +52 -53
- package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +121 -120
- package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +101 -84
- package/esm2020/lib/components/tableview/table/table.component.mjs +611 -595
- package/esm2020/lib/components/tableview/tableview.component.mjs +115 -113
- package/esm2020/lib/data-providers/base.data-provider.mjs +16 -16
- package/esm2020/lib/data-providers/editor.data-provider.mjs +36 -36
- package/esm2020/lib/data-providers/index.mjs +6 -6
- package/esm2020/lib/data-providers/lookup.data-provider.mjs +15 -15
- package/esm2020/lib/data-providers/table.data-provider.mjs +37 -37
- package/esm2020/lib/data-providers/tableview-crud.data-provider.mjs +23 -23
- package/esm2020/lib/data-providers/tableview.data-provider.mjs +44 -44
- package/esm2020/lib/descriptors/action/action-button.descriptor.mjs +60 -0
- package/esm2020/lib/descriptors/action/action-confirmation.descriptor.mjs +77 -77
- package/esm2020/lib/descriptors/action/action.descriptor.mjs +579 -0
- package/esm2020/lib/descriptors/action/index.mjs +4 -0
- package/esm2020/lib/descriptors/editor/editor.descriptor.mjs +291 -0
- package/esm2020/lib/descriptors/editor/field-validation.descriptor.mjs +25 -0
- package/esm2020/lib/descriptors/editor/field.descriptor.mjs +990 -0
- package/esm2020/lib/descriptors/editor/index.mjs +4 -0
- package/esm2020/lib/descriptors/filter/filter.descriptor.mjs +370 -0
- package/esm2020/lib/descriptors/filter/index.mjs +2 -0
- package/esm2020/lib/descriptors/index.mjs +2 -12
- package/esm2020/lib/descriptors/interfaces/field-config.interface.mjs +1 -1
- package/esm2020/lib/descriptors/interfaces/index.mjs +2 -2
- package/esm2020/lib/descriptors/interfaces/lookup-descriptor.interface.mjs +1 -1
- package/esm2020/lib/descriptors/model.descriptor.mjs +44 -44
- package/esm2020/lib/descriptors/table/column.descriptor.mjs +406 -0
- package/esm2020/lib/descriptors/table/index.mjs +3 -0
- package/esm2020/lib/descriptors/table/table.descriptor.mjs +497 -0
- package/esm2020/lib/descriptors/tableview/index.mjs +2 -0
- package/esm2020/lib/descriptors/tableview/tableview.descriptor.mjs +346 -0
- package/esm2020/lib/descriptors/types/action.type.mjs +25 -25
- package/esm2020/lib/descriptors/types/column.type.mjs +20 -20
- package/esm2020/lib/descriptors/types/editor.type.mjs +7 -7
- package/esm2020/lib/descriptors/types/field.type.mjs +55 -55
- package/esm2020/lib/descriptors/types/filter.type.mjs +30 -30
- package/esm2020/lib/descriptors/types/index.mjs +6 -6
- package/esm2020/lib/descriptors/types/table.type.mjs +26 -26
- package/esm2020/lib/directives/component.directive.mjs +45 -44
- package/esm2020/lib/directives/index.mjs +2 -2
- package/esm2020/lib/directives/template.directive.mjs +29 -28
- package/esm2020/lib/mng-commons.module.mjs +445 -485
- package/esm2020/lib/models/column-value.model.mjs +2 -2
- package/esm2020/lib/models/config.model.mjs +2 -2
- package/esm2020/lib/models/enum.model.mjs +1 -1
- package/esm2020/lib/models/error.model.mjs +1 -1
- package/esm2020/lib/models/index.mjs +9 -9
- package/esm2020/lib/models/menu.model.mjs +2 -2
- package/esm2020/lib/models/tableview-attr.model.mjs +1 -1
- package/esm2020/lib/models/user.model.mjs +1 -1
- package/esm2020/lib/models/version.model.mjs +1 -1
- package/esm2020/lib/models/view-container.model.mjs +2 -2
- package/esm2020/lib/pipes/boolean.pipe.mjs +28 -27
- package/esm2020/lib/pipes/class-map.pipe.mjs +23 -22
- package/esm2020/lib/pipes/enum.pipe.mjs +26 -25
- package/esm2020/lib/pipes/enumerate-async.pipe.mjs +39 -38
- package/esm2020/lib/pipes/enumerate.pipe.mjs +56 -55
- package/esm2020/lib/pipes/getter.pipe.mjs +21 -20
- package/esm2020/lib/pipes/i18n-property.pipe.mjs +19 -18
- package/esm2020/lib/pipes/index.mjs +11 -11
- package/esm2020/lib/pipes/json-path.pipe.mjs +80 -79
- package/esm2020/lib/pipes/locale-default-row-class.pipe.mjs +27 -26
- package/esm2020/lib/pipes/models/internal/enumrate-pipe-i18n.model.mjs +1 -1
- package/esm2020/lib/pipes/models/internal/index.mjs +1 -1
- package/esm2020/lib/pipes/parametrize.pipe.mjs +86 -85
- package/esm2020/lib/pipes/template.pipe.mjs +25 -24
- package/esm2020/lib/provide-commons.mjs +73 -0
- package/esm2020/lib/router/index.mjs +4 -3
- package/esm2020/lib/router/models/index.mjs +1 -1
- package/esm2020/lib/router/models/router.model.mjs +2 -2
- package/esm2020/lib/router/route-builder.mjs +313 -426
- package/esm2020/lib/router/routes-builder.mjs +67 -0
- package/esm2020/lib/router/tableview-route-builder.mjs +187 -187
- package/esm2020/lib/security/authorization.guard.mjs +29 -26
- package/esm2020/lib/security/authorization.service.mjs +50 -47
- package/esm2020/lib/security/authorization.util.mjs +15 -15
- package/esm2020/lib/security/index.mjs +3 -3
- package/esm2020/lib/security/model/authorization.type.mjs +7 -7
- package/esm2020/lib/security/model/index.mjs +3 -3
- package/esm2020/lib/security/model/permission-service.interface.mjs +1 -1
- package/esm2020/lib/security/model/permissions.model.mjs +86 -86
- package/esm2020/lib/services/action-executor.service.mjs +558 -555
- package/esm2020/lib/services/commons.service.mjs +464 -461
- package/esm2020/lib/services/configuration.service.mjs +149 -142
- package/esm2020/lib/services/error-mapper.service.mjs +13 -13
- package/esm2020/lib/services/index.mjs +6 -6
- package/esm2020/lib/services/internal/commons-init.provider.mjs +3 -3
- package/esm2020/lib/services/internal/commons-init.service.mjs +50 -44
- package/esm2020/lib/services/internal/index.mjs +2 -2
- package/esm2020/lib/services/navigation.service.mjs +51 -48
- package/esm2020/lib/services/providers/config-service.provider.mjs +31 -30
- package/esm2020/lib/services/providers/formly-config.provider.mjs +30 -30
- package/esm2020/lib/services/providers/index.mjs +2 -2
- package/esm2020/lib/services/router.service.mjs +97 -0
- package/esm2020/lib/services/tokens/browser-storage.token.mjs +5 -5
- package/esm2020/lib/services/tokens/commons-init.token.mjs +2 -2
- package/esm2020/lib/services/tokens/default-setting.token.mjs +2 -2
- package/esm2020/lib/services/tokens/index.mjs +4 -4
- package/esm2020/lib/services/tokens/module-config.token.mjs +2 -2
- package/esm2020/lib/services/version.service.mjs +42 -39
- package/esm2020/lib/services/view-container.component.service.mjs +55 -55
- package/esm2020/lib/styles/button-style.builder.mjs +164 -164
- package/esm2020/lib/styles/index.mjs +2 -2
- package/esm2020/lib/styles/models/index.mjs +2 -2
- package/esm2020/lib/styles/models/style-level.enum.mjs +11 -11
- package/esm2020/lib/styles/models/style-size.enum.mjs +8 -8
- package/esm2020/lib/styles/styles.util.mjs +42 -42
- package/esm2020/lib/types/index.mjs +2 -2
- package/esm2020/lib/types/type.decorator.mjs +21 -21
- package/esm2020/lib/types/type.model.mjs +1 -1
- package/esm2020/lib/utils/action-data-provider.util.mjs +145 -145
- package/esm2020/lib/utils/date.util.mjs +117 -117
- package/esm2020/lib/utils/editor-formly.util.mjs +288 -288
- package/esm2020/lib/utils/enum.util.mjs +81 -81
- package/esm2020/lib/utils/export.util.mjs +20 -20
- package/esm2020/lib/utils/i18n.util.mjs +233 -233
- package/esm2020/lib/utils/index.mjs +10 -10
- package/esm2020/lib/utils/model.util.mjs +68 -68
- package/esm2020/lib/utils/notification.util.mjs +51 -51
- package/esm2020/lib/utils/route.util.mjs +36 -24
- package/esm2020/lib/utils/string.util.mjs +26 -26
- package/esm2020/lib/utils/tableview.util.mjs +160 -160
- package/esm2020/lib/utils/type.util.mjs +92 -92
- package/esm2020/mediusinc-mng-commons.mjs +4 -4
- package/esm2020/public-api.mjs +61 -55
- package/fesm2015/mediusinc-mng-commons.mjs +14147 -13931
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +13980 -13768
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/api/models/builders/query-param.builder.d.ts +13 -13
- package/lib/api/models/filter-match-type.model.d.ts +23 -23
- package/lib/api/models/filter-param.model.d.ts +23 -23
- package/lib/api/models/index.d.ts +8 -8
- package/lib/api/models/mappers.d.ts +6 -6
- package/lib/api/models/query-mode.model.d.ts +16 -16
- package/lib/api/models/query-param.model.d.ts +31 -31
- package/lib/api/models/query-result.model.d.ts +24 -24
- package/lib/api/models/serialization.model.d.ts +8 -8
- package/lib/api/services/api.abstract.service.d.ts +24 -24
- package/lib/api/services/crud-api.abstract.service.d.ts +22 -22
- package/lib/api/services/get-all-api.abstract.service.d.ts +14 -14
- package/lib/api/services/index.d.ts +3 -3
- package/lib/api/utils/index.d.ts +2 -2
- package/lib/api/utils/medius-rest.util.d.ts +16 -16
- package/lib/api/utils/object-serializer.util.d.ts +33 -33
- package/lib/components/action/action.component.d.ts +79 -79
- package/lib/components/action/editor/action-editor.component.d.ts +69 -69
- package/lib/components/action/index.d.ts +4 -4
- package/lib/components/action/localization/data-language-dropdown.component.d.ts +25 -25
- package/lib/components/action/models/action-component.model.d.ts +15 -15
- package/lib/components/action/models/action-confirmation-service.model.d.ts +6 -6
- package/lib/components/action/models/action-execution.model.d.ts +135 -135
- package/lib/components/action/models/index.d.ts +4 -4
- package/lib/components/action/models/tableview-action-default-categories.model.d.ts +10 -10
- package/lib/components/action/route/action-route.component.d.ts +31 -31
- package/lib/components/form/autocomplete/autocomplete.component.d.ts +61 -61
- package/lib/components/form/date-range/date-range.component.d.ts +28 -28
- package/lib/components/form/dropdown/dropdown.component.d.ts +52 -52
- package/lib/components/form/editor/form-editor.component.d.ts +52 -52
- package/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.d.ts +13 -13
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +16 -16
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +15 -15
- package/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +14 -14
- package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +29 -29
- package/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.d.ts +11 -11
- package/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.d.ts +46 -46
- package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +25 -24
- package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +37 -37
- package/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +7 -7
- package/lib/components/form/formly/fields/index.d.ts +10 -10
- package/lib/components/form/formly/formly.config.d.ts +14 -14
- package/lib/components/form/formly/index.d.ts +1 -1
- package/lib/components/form/formly/models/formly-config.model.d.ts +11 -11
- package/lib/components/form/formly/models/formly-field.model.d.ts +16 -16
- package/lib/components/form/formly/models/index.d.ts +2 -2
- package/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.d.ts +6 -6
- package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +11 -11
- package/lib/components/form/formly/wrappers/index.d.ts +2 -2
- package/lib/components/form/index.d.ts +4 -4
- package/lib/components/form/models/field-action-context.model.d.ts +17 -17
- package/lib/components/form/models/form-editor.event.d.ts +37 -37
- package/lib/components/form/models/form-editor.interface.d.ts +10 -10
- package/lib/components/form/models/index.d.ts +2 -2
- package/lib/components/layout/breadcrumb.component.d.ts +8 -8
- package/lib/components/layout/footer.component.d.ts +9 -9
- package/lib/components/layout/index.d.ts +7 -7
- package/lib/components/layout/main-layout.component.d.ts +20 -20
- package/lib/components/layout/menu-item.component.d.ts +56 -52
- package/lib/components/layout/menu.component.d.ts +16 -10
- package/lib/components/layout/services/index.d.ts +1 -1
- package/lib/components/layout/services/main-layout.component.service.d.ts +65 -65
- package/lib/components/layout/topbar.component.d.ts +28 -28
- package/lib/components/layout/version.component.d.ts +19 -19
- package/lib/components/tableview/index.d.ts +6 -6
- package/lib/components/tableview/models/index.d.ts +1 -1
- package/lib/components/tableview/models/table.event.d.ts +17 -17
- package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +36 -33
- package/lib/components/tableview/route/tableview-route.component.d.ts +19 -18
- package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +38 -38
- package/lib/components/tableview/table/column-value/column-value.component.d.ts +35 -35
- package/lib/components/tableview/table/table.component.d.ts +117 -115
- package/lib/components/tableview/tableview.component.d.ts +49 -48
- package/lib/data-providers/base.data-provider.d.ts +14 -14
- package/lib/data-providers/editor.data-provider.d.ts +25 -25
- package/lib/data-providers/index.d.ts +6 -6
- package/lib/data-providers/lookup.data-provider.d.ts +14 -14
- package/lib/data-providers/table.data-provider.d.ts +27 -27
- package/lib/data-providers/tableview-crud.data-provider.d.ts +8 -8
- package/lib/data-providers/tableview.data-provider.d.ts +33 -33
- package/lib/descriptors/{action-button.descriptor.d.ts → action/action-button.descriptor.d.ts} +22 -22
- package/lib/descriptors/action/action-confirmation.descriptor.d.ts +36 -36
- package/lib/descriptors/{action.descriptor.d.ts → action/action.descriptor.d.ts} +225 -223
- package/lib/descriptors/action/index.d.ts +3 -0
- package/lib/descriptors/{editor.descriptor.d.ts → editor/editor.descriptor.d.ts} +119 -116
- package/lib/descriptors/{field-validation.descriptor.d.ts → editor/field-validation.descriptor.d.ts} +19 -19
- package/lib/descriptors/{field.descriptor.d.ts → editor/field.descriptor.d.ts} +349 -345
- package/lib/descriptors/editor/index.d.ts +3 -0
- package/lib/descriptors/{filter.descriptor.d.ts → filter/filter.descriptor.d.ts} +120 -118
- package/lib/descriptors/filter/index.d.ts +1 -0
- package/lib/descriptors/index.d.ts +1 -11
- package/lib/descriptors/interfaces/field-config.interface.d.ts +9 -9
- package/lib/descriptors/interfaces/index.d.ts +2 -2
- package/lib/descriptors/interfaces/lookup-descriptor.interface.d.ts +17 -17
- package/lib/descriptors/model.descriptor.d.ts +18 -18
- package/lib/descriptors/{column.descriptor.d.ts → table/column.descriptor.d.ts} +130 -130
- package/lib/descriptors/table/index.d.ts +2 -0
- package/lib/descriptors/{table.descriptor.d.ts → table/table.descriptor.d.ts} +193 -193
- package/lib/descriptors/tableview/index.d.ts +1 -0
- package/lib/descriptors/{tableview.descriptor.d.ts → tableview/tableview.descriptor.d.ts} +131 -129
- package/lib/descriptors/types/action.type.d.ts +21 -21
- package/lib/descriptors/types/column.type.d.ts +18 -18
- package/lib/descriptors/types/editor.type.d.ts +6 -6
- package/lib/descriptors/types/field.type.d.ts +47 -47
- package/lib/descriptors/types/filter.type.d.ts +27 -27
- package/lib/descriptors/types/index.d.ts +6 -6
- package/lib/descriptors/types/table.type.d.ts +22 -22
- package/lib/directives/component.directive.d.ts +16 -16
- package/lib/directives/index.d.ts +2 -2
- package/lib/directives/template.directive.d.ts +13 -13
- package/lib/mng-commons.module.d.ts +99 -99
- package/lib/models/column-value.model.d.ts +4 -4
- package/lib/models/config.model.d.ts +41 -40
- package/lib/models/enum.model.d.ts +6 -6
- package/lib/models/error.model.d.ts +14 -14
- package/lib/models/index.d.ts +9 -9
- package/lib/models/menu.model.d.ts +30 -30
- package/lib/models/tableview-attr.model.d.ts +10 -10
- package/lib/models/user.model.d.ts +8 -8
- package/lib/models/version.model.d.ts +18 -18
- package/lib/models/view-container.model.d.ts +43 -43
- package/lib/pipes/boolean.pipe.d.ts +7 -7
- package/lib/pipes/class-map.pipe.d.ts +7 -7
- package/lib/pipes/enum.pipe.d.ts +8 -8
- package/lib/pipes/enumerate-async.pipe.d.ts +14 -14
- package/lib/pipes/enumerate.pipe.d.ts +21 -21
- package/lib/pipes/getter.pipe.d.ts +7 -7
- package/lib/pipes/i18n-property.pipe.d.ts +8 -8
- package/lib/pipes/index.d.ts +11 -11
- package/lib/pipes/json-path.pipe.d.ts +13 -13
- package/lib/pipes/locale-default-row-class.pipe.d.ts +10 -10
- package/lib/pipes/models/internal/enumrate-pipe-i18n.model.d.ts +5 -5
- package/lib/pipes/models/internal/index.d.ts +1 -1
- package/lib/pipes/parametrize.pipe.d.ts +13 -13
- package/lib/pipes/template.pipe.d.ts +10 -10
- package/lib/provide-commons.d.ts +3 -0
- package/lib/router/index.d.ts +3 -2
- package/lib/router/models/index.d.ts +1 -1
- package/lib/router/models/router.model.d.ts +36 -33
- package/lib/router/route-builder.d.ts +62 -98
- package/lib/router/routes-builder.d.ts +29 -0
- package/lib/router/tableview-route-builder.d.ts +38 -37
- package/lib/security/authorization.guard.d.ts +11 -11
- package/lib/security/authorization.service.d.ts +19 -19
- package/lib/security/authorization.util.d.ts +5 -5
- package/lib/security/index.d.ts +3 -3
- package/lib/security/model/authorization.type.d.ts +6 -6
- package/lib/security/model/index.d.ts +3 -3
- package/lib/security/model/permission-service.interface.d.ts +6 -6
- package/lib/security/model/permissions.model.d.ts +37 -37
- package/lib/services/action-executor.service.d.ts +150 -149
- package/lib/services/commons.service.d.ts +93 -93
- package/lib/services/configuration.service.d.ts +60 -57
- package/lib/services/error-mapper.service.d.ts +7 -7
- package/lib/services/index.d.ts +6 -6
- package/lib/services/internal/commons-init.provider.d.ts +3 -3
- package/lib/services/internal/commons-init.service.d.ts +18 -16
- package/lib/services/internal/index.d.ts +2 -2
- package/lib/services/navigation.service.d.ts +14 -14
- package/lib/services/providers/config-service.provider.d.ts +6 -6
- package/lib/services/providers/formly-config.provider.d.ts +4 -4
- package/lib/services/providers/index.d.ts +2 -2
- package/lib/services/router.service.d.ts +22 -0
- package/lib/services/tokens/browser-storage.token.d.ts +2 -2
- package/lib/services/tokens/commons-init.token.d.ts +3 -3
- package/lib/services/tokens/default-setting.token.d.ts +2 -2
- package/lib/services/tokens/index.d.ts +4 -4
- package/lib/services/tokens/module-config.token.d.ts +3 -3
- package/lib/services/version.service.d.ts +13 -13
- package/lib/services/view-container.component.service.d.ts +31 -31
- package/lib/styles/button-style.builder.d.ts +67 -67
- package/lib/styles/index.d.ts +2 -2
- package/lib/styles/models/index.d.ts +2 -2
- package/lib/styles/models/style-level.enum.d.ts +10 -10
- package/lib/styles/models/style-size.enum.d.ts +7 -7
- package/lib/styles/styles.util.d.ts +15 -14
- package/lib/types/index.d.ts +2 -2
- package/lib/types/type.decorator.d.ts +4 -4
- package/lib/types/type.model.d.ts +23 -23
- package/lib/utils/action-data-provider.util.d.ts +20 -20
- package/lib/utils/date.util.d.ts +7 -7
- package/lib/utils/editor-formly.util.d.ts +12 -12
- package/lib/utils/enum.util.d.ts +50 -50
- package/lib/utils/export.util.d.ts +5 -5
- package/lib/utils/i18n.util.d.ts +57 -56
- package/lib/utils/index.d.ts +10 -10
- package/lib/utils/model.util.d.ts +8 -8
- package/lib/utils/notification.util.d.ts +13 -12
- package/lib/utils/route.util.d.ts +59 -4
- package/lib/utils/string.util.d.ts +4 -4
- package/lib/utils/tableview.util.d.ts +40 -40
- package/lib/utils/type.util.d.ts +57 -57
- package/package.json +6 -6
- package/public-api.d.ts +40 -34
- package/scss/common/layout/_breadcrumb.scss +12 -2
- package/scss/common/layout/_exception.scss +1 -1
- package/scss/common/layout/_inlinemenu.scss +13 -0
- package/scss/common/layout/_login.scss +1 -0
- package/scss/common/layout/_rightmenu.scss +5 -0
- package/scss/common/layout/menu/_menu_common.scss +1 -1
- package/scss/common/theme/designer/_mixins.scss +29 -0
- package/scss/common/theme/extensions/_datatable.scss +2 -2
- package/scss/common/variables/layout/_layout_dark.scss +0 -1
- package/scss/common/variables/layout/_layout_light.scss +0 -1
- package/scss/common/variables/theme/_theme_dark.scss +72 -46
- package/scss/common/variables/theme/_theme_light.scss +70 -33
- package/version-info.json +7 -7
- package/esm2020/lib/descriptors/action-button.descriptor.mjs +0 -60
- package/esm2020/lib/descriptors/action.descriptor.mjs +0 -577
- package/esm2020/lib/descriptors/column.descriptor.mjs +0 -405
- package/esm2020/lib/descriptors/editor.descriptor.mjs +0 -290
- package/esm2020/lib/descriptors/field-validation.descriptor.mjs +0 -25
- package/esm2020/lib/descriptors/field.descriptor.mjs +0 -987
- package/esm2020/lib/descriptors/filter.descriptor.mjs +0 -368
- package/esm2020/lib/descriptors/table.descriptor.mjs +0 -497
- package/esm2020/lib/descriptors/tableview.descriptor.mjs +0 -344
- package/mediusinc-mng-commons-1.4.0.tgz +0 -0
|
@@ -8,8 +8,9 @@ $colors: (
|
|
|
8
8
|
'teal': #009688,
|
|
9
9
|
'orange': #f57c00,
|
|
10
10
|
'bluegray': #607d8b,
|
|
11
|
-
'purple': #9c27b0
|
|
12
|
-
|
|
11
|
+
'purple': #9c27b0,
|
|
12
|
+
'primary': $primaryColor
|
|
13
|
+
) !default;
|
|
13
14
|
|
|
14
15
|
//shades
|
|
15
16
|
$shade000: #ffffff !default; //text color
|
|
@@ -21,7 +22,9 @@ $shade700: rgba(255, 255, 255, 0.15) !default; //Alpha-03
|
|
|
21
22
|
$shade800: rgba(255, 255, 255, 0.2) !default; //Alpha-04
|
|
22
23
|
$shade900: rgba(255, 255, 255, 0.25) !default; //Alpha-05
|
|
23
24
|
|
|
24
|
-
$solidSurfaceColor: #0a061a;
|
|
25
|
+
$solidSurfaceColor: #0a061a !default;
|
|
26
|
+
|
|
27
|
+
$hoverBg: rgba(255, 255, 255, 0.03) !default;
|
|
25
28
|
|
|
26
29
|
//global
|
|
27
30
|
$fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
|
|
@@ -166,16 +169,16 @@ $infoButtonActiveBorderColor: transparent !default;
|
|
|
166
169
|
$infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.3) !default;
|
|
167
170
|
$infoButtonFocusShadow: none !default;
|
|
168
171
|
|
|
169
|
-
$successButtonBg: #
|
|
172
|
+
$successButtonBg: #0bd18a !default;
|
|
170
173
|
$successButtonTextColor: #ffffff !default;
|
|
171
174
|
$successButtonBorder: 1px solid transparent !default;
|
|
172
|
-
$successButtonHoverBg: #
|
|
175
|
+
$successButtonHoverBg: #049b65 !default;
|
|
173
176
|
$successButtonTextHoverColor: $successButtonTextColor !default;
|
|
174
177
|
$successButtonHoverBorderColor: transparent !default;
|
|
175
|
-
$successButtonActiveBg: #
|
|
178
|
+
$successButtonActiveBg: #017e52 !default;
|
|
176
179
|
$successButtonTextActiveColor: $successButtonTextColor !default;
|
|
177
180
|
$successButtonActiveBorderColor: transparent !default;
|
|
178
|
-
$successButtonShadow: 0px 0px 10px rgba(
|
|
181
|
+
$successButtonShadow: 0px 0px 10px rgba(11, 209, 138, 0.3) !default;
|
|
179
182
|
$successButtonFocusShadow: none !default;
|
|
180
183
|
|
|
181
184
|
$warningButtonBg: #eee500 !default;
|
|
@@ -202,7 +205,7 @@ $helpButtonActiveBorderColor: transparent !default;
|
|
|
202
205
|
$helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.3) !default;
|
|
203
206
|
$helpButtonFocusShadow: none !default;
|
|
204
207
|
|
|
205
|
-
$dangerButtonBg: #
|
|
208
|
+
$dangerButtonBg: #fc6161 !default;
|
|
206
209
|
$dangerButtonTextColor: #ffffff !default;
|
|
207
210
|
$dangerButtonBorder: 1px solid transparent !default;
|
|
208
211
|
$dangerButtonHoverBg: #e73a3a !default;
|
|
@@ -250,6 +253,7 @@ $colorPickerPreviewWidth: 2rem !default;
|
|
|
250
253
|
$colorPickerPreviewHeight: 2rem !default;
|
|
251
254
|
$colorPickerBg: $shade500 !default;
|
|
252
255
|
$colorPickerBorderColor: $shade500 !default;
|
|
256
|
+
$colorPickerBorder: 1px solid $shade500 !default;
|
|
253
257
|
$colorPickerHandleColor: #ffffff !default;
|
|
254
258
|
|
|
255
259
|
//togglebutton
|
|
@@ -316,6 +320,7 @@ $calendarHeaderCellPadding: 0.357rem !default;
|
|
|
316
320
|
$calendarHeaderCellFontWeight: 500 !default;
|
|
317
321
|
$calendarHeaderCellFontSize: 12px !default;
|
|
318
322
|
$calendarHeaderCellTextColor: $shade200 !default;
|
|
323
|
+
$calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
|
|
319
324
|
|
|
320
325
|
$calendarCellDateBg: $shade500 !default;
|
|
321
326
|
$calendarCellDatePadding: 0.357rem !default;
|
|
@@ -366,6 +371,7 @@ $panelHeaderTextHoverColor: $shade000 !default;
|
|
|
366
371
|
|
|
367
372
|
$panelContentBorderColor: $shade700 !default;
|
|
368
373
|
$panelContentBorder: 1px solid $shade700 !default;
|
|
374
|
+
$panelContentEvenRowBg: rgba(255, 255, 255, 0.01) !default;
|
|
369
375
|
$panelContentBg: transparent !default;
|
|
370
376
|
$panelContentTextColor: $shade000 !default;
|
|
371
377
|
$panelContentPadding: 1.143rem !default;
|
|
@@ -685,6 +691,7 @@ $progressBarHeight: 0.571rem !default;
|
|
|
685
691
|
$progressBarBorder: 0 none !default;
|
|
686
692
|
$progressBarBg: $shade600 !default;
|
|
687
693
|
$progressBarValueBg: $primaryColor !default;
|
|
694
|
+
$progressBarValueTextColor: $primaryTextColor !default;
|
|
688
695
|
|
|
689
696
|
//menu (e.g. menu, menubar, tieredmenu)
|
|
690
697
|
$menuWidth: 12.5rem !default;
|
|
@@ -813,38 +820,38 @@ $galleriaThumbnailNavigatorWidth: 2rem !default;
|
|
|
813
820
|
$galleriaThumbnailNavigatorHeight: 2rem !default;
|
|
814
821
|
|
|
815
822
|
//divider
|
|
816
|
-
$dividerHorizontalMargin: 1rem 0;
|
|
817
|
-
$dividerHorizontalPadding: 0 1rem;
|
|
818
|
-
$dividerVerticalMargin: 0 1rem;
|
|
819
|
-
$dividerVerticalPadding: 1rem 0;
|
|
820
|
-
$dividerSize: 1px;
|
|
821
|
-
$dividerColor: $shade700;
|
|
823
|
+
$dividerHorizontalMargin: 1rem 0 !default;
|
|
824
|
+
$dividerHorizontalPadding: 0 1rem !default;
|
|
825
|
+
$dividerVerticalMargin: 0 1rem !default;
|
|
826
|
+
$dividerVerticalPadding: 1rem 0 !default;
|
|
827
|
+
$dividerSize: 1px !default;
|
|
828
|
+
$dividerColor: $shade700 !default;
|
|
822
829
|
|
|
823
830
|
//avatar
|
|
824
|
-
$avatarBg: $shade500;
|
|
825
|
-
$avatarTextColor: $textColor;
|
|
831
|
+
$avatarBg: $shade500 !default;
|
|
832
|
+
$avatarTextColor: $textColor !default;
|
|
826
833
|
|
|
827
834
|
//chip
|
|
828
|
-
$chipBg: $shade500;
|
|
829
|
-
$chipTextColor: $textColor;
|
|
830
|
-
$chipBorderRadius: 16px;
|
|
835
|
+
$chipBg: $shade500 !default;
|
|
836
|
+
$chipTextColor: $textColor !default;
|
|
837
|
+
$chipBorderRadius: 16px !default;
|
|
831
838
|
|
|
832
839
|
//scrollTop
|
|
833
|
-
$scrollTopBg: $highlightBg;
|
|
834
|
-
$scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%);
|
|
835
|
-
$scrollTopWidth: 3rem;
|
|
836
|
-
$scrollTopHeight: 3rem;
|
|
837
|
-
$scrollTopBorderRadius: 50
|
|
838
|
-
$scrollTopFontSize: 1.5rem;
|
|
839
|
-
$scrollTopTextColor: $highlightTextColor;
|
|
840
|
+
$scrollTopBg: $highlightBg !default;
|
|
841
|
+
$scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%) !default;
|
|
842
|
+
$scrollTopWidth: 3rem !default;
|
|
843
|
+
$scrollTopHeight: 3rem !default;
|
|
844
|
+
$scrollTopBorderRadius: 50% !default;
|
|
845
|
+
$scrollTopFontSize: 1.5rem !default;
|
|
846
|
+
$scrollTopTextColor: $highlightTextColor !default;
|
|
840
847
|
|
|
841
848
|
//skeleton
|
|
842
|
-
$skeletonBg: rgba(255, 255, 255, 0.06);
|
|
843
|
-
$skeletonAnimationBg: rgba(255, 255, 255, 0.04);
|
|
849
|
+
$skeletonBg: rgba(255, 255, 255, 0.06) !default;
|
|
850
|
+
$skeletonAnimationBg: rgba(255, 255, 255, 0.04) !default;
|
|
844
851
|
|
|
845
852
|
//splitter
|
|
846
|
-
$splitterGutterBg: $shade700;
|
|
847
|
-
$splitterGutterHandleBg: $shade700;
|
|
853
|
+
$splitterGutterBg: $shade700 !default;
|
|
854
|
+
$splitterGutterHandleBg: $shade700 !default;
|
|
848
855
|
|
|
849
856
|
//speeddial
|
|
850
857
|
$speedDialButtonWidth: 4rem !default;
|
|
@@ -884,28 +891,47 @@ $imagePreviewActionIconFontSize: 1.5rem !default;
|
|
|
884
891
|
$imagePreviewActionIconBorderRadius: 50% !default;
|
|
885
892
|
|
|
886
893
|
:root {
|
|
887
|
-
--surface-a: #{$
|
|
888
|
-
--surface-b: #{$
|
|
889
|
-
--surface-c: #{$
|
|
890
|
-
--surface-d: #{$
|
|
894
|
+
--surface-a: #{$shade800};
|
|
895
|
+
--surface-b: #{$shade900};
|
|
896
|
+
--surface-c: #{$hoverBg};
|
|
897
|
+
--surface-d: #{$shade600};
|
|
891
898
|
--surface-e: #{$shade800};
|
|
892
|
-
--surface-f: #{$
|
|
899
|
+
--surface-f: #{$shade800};
|
|
893
900
|
--text-color: #{$shade000};
|
|
894
901
|
--text-color-secondary: #{$shade100};
|
|
895
902
|
--primary-color: #{$primaryColor};
|
|
896
903
|
--primary-color-text: #{$primaryTextColor};
|
|
897
904
|
--font-family: #{$fontFamily};
|
|
898
|
-
--surface-0: #
|
|
899
|
-
--surface-50: #
|
|
900
|
-
--surface-100: #
|
|
901
|
-
--surface-200: #
|
|
902
|
-
--surface-300: #
|
|
903
|
-
--surface-400: #
|
|
904
|
-
--surface-500: #
|
|
905
|
-
--surface-600: #
|
|
906
|
-
--surface-700: #
|
|
907
|
-
--surface-800: #
|
|
908
|
-
--surface-900: #
|
|
905
|
+
--surface-0: #0a061a;
|
|
906
|
+
--surface-50: #231f31;
|
|
907
|
+
--surface-100: #3b3848;
|
|
908
|
+
--surface-200: #54515f;
|
|
909
|
+
--surface-300: #6c6a76;
|
|
910
|
+
--surface-400: #85838d;
|
|
911
|
+
--surface-500: #9d9ba3;
|
|
912
|
+
--surface-600: #b6b4ba;
|
|
913
|
+
--surface-700: #cecdd1;
|
|
914
|
+
--surface-800: #e7e6e8;
|
|
915
|
+
--surface-900: #ffffff;
|
|
916
|
+
--gray-50: #e7e6e8;
|
|
917
|
+
--gray-100: #cecdd1;
|
|
918
|
+
--gray-200: #b6b4ba;
|
|
919
|
+
--gray-300: #9d9ba3;
|
|
920
|
+
--gray-400: #85838d;
|
|
921
|
+
--gray-500: #6c6a76;
|
|
922
|
+
--gray-600: #54515f;
|
|
923
|
+
--gray-700: #3b3848;
|
|
924
|
+
--gray-800: #231f31;
|
|
925
|
+
--gray-900: #0a061a;
|
|
909
926
|
--content-padding: #{$panelContentPadding};
|
|
910
927
|
--inline-spacing: #{$inlineSpacing};
|
|
928
|
+
--border-radius: #{$borderRadius};
|
|
929
|
+
--surface-ground: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
|
930
|
+
--surface-section: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
|
931
|
+
--surface-card: rgba(255, 255, 255, 0.05);
|
|
932
|
+
--surface-overlay: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
|
933
|
+
--surface-border: rgba(255, 255, 255, 0.15);
|
|
934
|
+
--surface-hover: rgba(255, 255, 255, 0.05);
|
|
935
|
+
--maskbg: #{$maskBg};
|
|
936
|
+
--focus-ring: #{$focusShadow};
|
|
911
937
|
}
|
|
@@ -8,8 +8,9 @@ $colors: (
|
|
|
8
8
|
'teal': #009688,
|
|
9
9
|
'orange': #f57c00,
|
|
10
10
|
'bluegray': #607d8b,
|
|
11
|
-
'purple': #9c27b0
|
|
12
|
-
|
|
11
|
+
'purple': #9c27b0,
|
|
12
|
+
'primary': $primaryColor
|
|
13
|
+
) !default;
|
|
13
14
|
|
|
14
15
|
//reused color variables
|
|
15
16
|
$shade000: transparent !default; //surface
|
|
@@ -21,7 +22,7 @@ $shade500: #8a8ea6 !default; //text third color
|
|
|
21
22
|
$shade600: #676b89 !default; //text secondary color
|
|
22
23
|
$shade700: #44486d !default; //text color
|
|
23
24
|
|
|
24
|
-
$solidSurfaceColor:
|
|
25
|
+
$solidSurfaceColor: #ececf9 !default;
|
|
25
26
|
|
|
26
27
|
//global
|
|
27
28
|
$fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
|
|
@@ -74,7 +75,7 @@ $inputHoverBorderColor: transparent !default;
|
|
|
74
75
|
$inputFocusBorderColor: $primaryColor !default;
|
|
75
76
|
$inputErrorBorderColor: $errorColor !default;
|
|
76
77
|
$inputPlaceholderTextColor: $shade500 !default;
|
|
77
|
-
$inputFilledBg: $shade000 !default;
|
|
78
|
+
$inputFilledBg: $shade000 !default;
|
|
78
79
|
$inputFilledHoverBg: $inputFilledBg !default;
|
|
79
80
|
$inputFilledFocusBg: $shade100 !default;
|
|
80
81
|
|
|
@@ -166,16 +167,16 @@ $infoButtonActiveBorderColor: transparent !default;
|
|
|
166
167
|
$infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.25) !default;
|
|
167
168
|
$infoButtonFocusShadow: none !default;
|
|
168
169
|
|
|
169
|
-
$successButtonBg: #
|
|
170
|
+
$successButtonBg: #0bd18a !default;
|
|
170
171
|
$successButtonTextColor: #ffffff !default;
|
|
171
172
|
$successButtonBorder: 1px solid transparent !default;
|
|
172
|
-
$successButtonHoverBg: #
|
|
173
|
+
$successButtonHoverBg: #049b65 !default;
|
|
173
174
|
$successButtonTextHoverColor: $successButtonTextColor !default;
|
|
174
175
|
$successButtonHoverBorderColor: transparent !default;
|
|
175
|
-
$successButtonActiveBg: #
|
|
176
|
+
$successButtonActiveBg: #017e52 !default;
|
|
176
177
|
$successButtonTextActiveColor: $successButtonTextColor !default;
|
|
177
178
|
$successButtonActiveBorderColor: transparent !default;
|
|
178
|
-
$successButtonShadow: 0px 0px 10px rgba(
|
|
179
|
+
$successButtonShadow: 0px 0px 10px rgba(11, 209, 138, 0.25) !default;
|
|
179
180
|
$successButtonFocusShadow: none !default;
|
|
180
181
|
|
|
181
182
|
$warningButtonBg: #eee500 !default;
|
|
@@ -202,7 +203,7 @@ $helpButtonActiveBorderColor: transparent !default;
|
|
|
202
203
|
$helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.25) !default;
|
|
203
204
|
$helpButtonFocusShadow: none !default;
|
|
204
205
|
|
|
205
|
-
$dangerButtonBg: #
|
|
206
|
+
$dangerButtonBg: #fc6161 !default;
|
|
206
207
|
$dangerButtonTextColor: #ffffff !default;
|
|
207
208
|
$dangerButtonBorder: 1px solid transparent !default;
|
|
208
209
|
$dangerButtonHoverBg: #e73a3a !default;
|
|
@@ -250,6 +251,7 @@ $colorPickerPreviewWidth: 2rem !default;
|
|
|
250
251
|
$colorPickerPreviewHeight: 2rem !default;
|
|
251
252
|
$colorPickerBg: $shade100 !default;
|
|
252
253
|
$colorPickerBorderColor: #191919 !default;
|
|
254
|
+
$colorPickerBorder: 1px solid #191919 !default;
|
|
253
255
|
$colorPickerHandleColor: #191919 !default;
|
|
254
256
|
|
|
255
257
|
//togglebutton
|
|
@@ -316,6 +318,7 @@ $calendarHeaderCellPadding: 0.357rem !default;
|
|
|
316
318
|
$calendarHeaderCellFontWeight: 500 !default;
|
|
317
319
|
$calendarHeaderCellFontSize: 12px !default;
|
|
318
320
|
$calendarHeaderCellTextColor: $shade500 !default;
|
|
321
|
+
$calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
|
|
319
322
|
|
|
320
323
|
$calendarCellDateBg: $shade100 !default;
|
|
321
324
|
$calendarCellDatePadding: 0.357rem !default;
|
|
@@ -367,6 +370,7 @@ $panelHeaderTextHoverColor: $shade700 !default;
|
|
|
367
370
|
$panelContentBorderColor: $shade300 !default;
|
|
368
371
|
$panelContentBorder: 1px solid $shade300 !default;
|
|
369
372
|
$panelContentBg: transparent !default;
|
|
373
|
+
$panelContentEvenRowBg: scale-color($panelContentBg, $lightness: -1%) !default;
|
|
370
374
|
$panelContentTextColor: $shade700 !default;
|
|
371
375
|
$panelContentPadding: 1.143rem !default;
|
|
372
376
|
|
|
@@ -686,6 +690,7 @@ $progressBarHeight: 0.571rem !default;
|
|
|
686
690
|
$progressBarBorder: 0 none !default;
|
|
687
691
|
$progressBarBg: $shade200 !default;
|
|
688
692
|
$progressBarValueBg: $primaryColor !default;
|
|
693
|
+
$progressBarValueTextColor: $primaryTextColor !default;
|
|
689
694
|
|
|
690
695
|
//menu (e.g. menu, menubar, tieredmenu)
|
|
691
696
|
$menuWidth: 12.5rem !default;
|
|
@@ -814,38 +819,38 @@ $galleriaThumbnailNavigatorWidth: 2rem !default;
|
|
|
814
819
|
$galleriaThumbnailNavigatorHeight: 2rem !default;
|
|
815
820
|
|
|
816
821
|
//divider
|
|
817
|
-
$dividerHorizontalMargin: 1rem 0;
|
|
818
|
-
$dividerHorizontalPadding: 0 1rem;
|
|
819
|
-
$dividerVerticalMargin: 0 1rem;
|
|
820
|
-
$dividerVerticalPadding: 1rem 0;
|
|
821
|
-
$dividerSize: 1px;
|
|
822
|
-
$dividerColor: $shade300;
|
|
822
|
+
$dividerHorizontalMargin: 1rem 0 !default;
|
|
823
|
+
$dividerHorizontalPadding: 0 1rem !default;
|
|
824
|
+
$dividerVerticalMargin: 0 1rem !default;
|
|
825
|
+
$dividerVerticalPadding: 1rem 0 !default;
|
|
826
|
+
$dividerSize: 1px !default;
|
|
827
|
+
$dividerColor: $shade300 !default;
|
|
823
828
|
|
|
824
829
|
//avatar
|
|
825
|
-
$avatarBg: $shade300;
|
|
826
|
-
$avatarTextColor: $textColor;
|
|
830
|
+
$avatarBg: $shade300 !default;
|
|
831
|
+
$avatarTextColor: $textColor !default;
|
|
827
832
|
|
|
828
833
|
//chip
|
|
829
|
-
$chipBg: $shade300;
|
|
830
|
-
$chipTextColor: $textColor;
|
|
831
|
-
$chipBorderRadius: 16px;
|
|
834
|
+
$chipBg: $shade300 !default;
|
|
835
|
+
$chipTextColor: $textColor !default;
|
|
836
|
+
$chipBorderRadius: 16px !default;
|
|
832
837
|
|
|
833
838
|
//scrollTop
|
|
834
|
-
$scrollTopBg: rgba(0, 0, 0, 0.7);
|
|
835
|
-
$scrollTopHoverBg: rgba(0, 0, 0, 0.8);
|
|
836
|
-
$scrollTopWidth: 3rem;
|
|
837
|
-
$scrollTopHeight: 3rem;
|
|
838
|
-
$scrollTopBorderRadius: 50
|
|
839
|
-
$scrollTopFontSize: 1.5rem;
|
|
840
|
-
$scrollTopTextColor: $shade000;
|
|
839
|
+
$scrollTopBg: rgba(0, 0, 0, 0.7) !default;
|
|
840
|
+
$scrollTopHoverBg: rgba(0, 0, 0, 0.8) !default;
|
|
841
|
+
$scrollTopWidth: 3rem !default;
|
|
842
|
+
$scrollTopHeight: 3rem !default;
|
|
843
|
+
$scrollTopBorderRadius: 50% !default;
|
|
844
|
+
$scrollTopFontSize: 1.5rem !default;
|
|
845
|
+
$scrollTopTextColor: $shade000 !default;
|
|
841
846
|
|
|
842
847
|
//skeleton
|
|
843
|
-
$skeletonBg: $shade100;
|
|
844
|
-
$skeletonAnimationBg: rgba(255, 255, 255, 0.4);
|
|
848
|
+
$skeletonBg: $shade100 !default;
|
|
849
|
+
$skeletonAnimationBg: rgba(255, 255, 255, 0.4) !default;
|
|
845
850
|
|
|
846
851
|
//splitter
|
|
847
|
-
$splitterGutterBg: $shade300;
|
|
848
|
-
$splitterGutterHandleBg: $shade300;
|
|
852
|
+
$splitterGutterBg: $shade300 !default;
|
|
853
|
+
$splitterGutterHandleBg: $shade300 !default;
|
|
849
854
|
|
|
850
855
|
//speeddial
|
|
851
856
|
$speedDialButtonWidth: 4rem !default;
|
|
@@ -889,11 +894,43 @@ $imagePreviewActionIconBorderRadius: 50% !default;
|
|
|
889
894
|
--surface-b: #{$shade100};
|
|
890
895
|
--surface-c: #{$shade200};
|
|
891
896
|
--surface-d: #{$shade300};
|
|
892
|
-
--surface-e: #{$
|
|
893
|
-
--surface-f: #{$
|
|
897
|
+
--surface-e: #{$shade000};
|
|
898
|
+
--surface-f: #{$shade000};
|
|
894
899
|
--text-color: #{$shade700};
|
|
895
900
|
--text-color-secondary: #{$shade600};
|
|
896
901
|
--primary-color: #{$primaryColor};
|
|
897
902
|
--primary-color-text: #{$primaryTextColor};
|
|
898
903
|
--font-family: #{$fontFamily};
|
|
904
|
+
--surface-0: #ffffff;
|
|
905
|
+
--surface-50: #e1e2e8;
|
|
906
|
+
--surface-100: #cbccd6;
|
|
907
|
+
--surface-200: #b4b6c5;
|
|
908
|
+
--surface-300: #9ea0b3;
|
|
909
|
+
--surface-400: #878aa2;
|
|
910
|
+
--surface-500: #717490;
|
|
911
|
+
--surface-600: #5a5e7f;
|
|
912
|
+
--surface-700: #44486d;
|
|
913
|
+
--surface-800: #3c3f60;
|
|
914
|
+
--surface-900: #343753;
|
|
915
|
+
--gray-50: #e1e2e8;
|
|
916
|
+
--gray-100: #cbccd6;
|
|
917
|
+
--gray-200: #b4b6c5;
|
|
918
|
+
--gray-300: #9ea0b3;
|
|
919
|
+
--gray-400: #878aa2;
|
|
920
|
+
--gray-500: #717490;
|
|
921
|
+
--gray-600: #5a5e7f;
|
|
922
|
+
--gray-700: #44486d;
|
|
923
|
+
--gray-800: #3c3f60;
|
|
924
|
+
--gray-900: #343753;
|
|
925
|
+
--content-padding: #{$panelContentPadding};
|
|
926
|
+
--inline-spacing: #{$inlineSpacing};
|
|
927
|
+
--border-radius: #{$borderRadius};
|
|
928
|
+
--surface-ground: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%);
|
|
929
|
+
--surface-section: #ffffff;
|
|
930
|
+
--surface-card: rgba(255, 255, 255, 0.9);
|
|
931
|
+
--surface-overlay: #ececf9;
|
|
932
|
+
--surface-border: rgba(68, 72, 109, 0.2);
|
|
933
|
+
--surface-hover: rgba(68, 72, 109, 0.07);
|
|
934
|
+
--maskbg: #{$maskBg};
|
|
935
|
+
--focus-ring: #{$focusShadow};
|
|
899
936
|
}
|
package/version-info.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediusinc/mng-commons",
|
|
3
|
-
"version": "
|
|
4
|
-
"tag": "v1.4.0",
|
|
5
|
-
"distance":
|
|
6
|
-
"hash": "
|
|
7
|
-
"dirty":
|
|
8
|
-
"semver": "1.4.0",
|
|
9
|
-
"raw": "v1.4.0-
|
|
3
|
+
"version": "2.0.0-rc.0-08f92864",
|
|
4
|
+
"tag": "v1.4.0-rc.0",
|
|
5
|
+
"distance": 21,
|
|
6
|
+
"hash": "08f92864",
|
|
7
|
+
"dirty": true,
|
|
8
|
+
"semver": "1.4.0-rc.0+21.g08f92864.dirty",
|
|
9
|
+
"raw": "v1.4.0-rc.0-21-08f92864-dirty"
|
|
10
10
|
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { ButtonStyleBuilder } from '../styles';
|
|
2
|
-
export class ActionButtonDescriptor {
|
|
3
|
-
constructor() {
|
|
4
|
-
this._iconPosition = 'left';
|
|
5
|
-
this._styleClass = new ButtonStyleBuilder();
|
|
6
|
-
}
|
|
7
|
-
withLabel(label) {
|
|
8
|
-
this._label = label;
|
|
9
|
-
return this;
|
|
10
|
-
}
|
|
11
|
-
withIcon(icon) {
|
|
12
|
-
this._icon = icon;
|
|
13
|
-
return this;
|
|
14
|
-
}
|
|
15
|
-
withIconPosition(iconPosition) {
|
|
16
|
-
this._iconPosition = iconPosition;
|
|
17
|
-
return this;
|
|
18
|
-
}
|
|
19
|
-
withStyleClass(style) {
|
|
20
|
-
this._styleClass = style;
|
|
21
|
-
return this;
|
|
22
|
-
}
|
|
23
|
-
withBadge(badge) {
|
|
24
|
-
this._badge = badge;
|
|
25
|
-
return this;
|
|
26
|
-
}
|
|
27
|
-
withTooltip(tooltip) {
|
|
28
|
-
this._tooltip = tooltip;
|
|
29
|
-
return this;
|
|
30
|
-
}
|
|
31
|
-
get label() {
|
|
32
|
-
return this._label;
|
|
33
|
-
}
|
|
34
|
-
get icon() {
|
|
35
|
-
return this._icon;
|
|
36
|
-
}
|
|
37
|
-
get iconPosition() {
|
|
38
|
-
return this._iconPosition;
|
|
39
|
-
}
|
|
40
|
-
get styleClass() {
|
|
41
|
-
return this._styleClass;
|
|
42
|
-
}
|
|
43
|
-
get badge() {
|
|
44
|
-
return this._badge;
|
|
45
|
-
}
|
|
46
|
-
get tooltip() {
|
|
47
|
-
return this._tooltip;
|
|
48
|
-
}
|
|
49
|
-
copy() {
|
|
50
|
-
const descriptor = new ActionButtonDescriptor();
|
|
51
|
-
descriptor._label = this._label;
|
|
52
|
-
descriptor._icon = this._icon;
|
|
53
|
-
descriptor._iconPosition = this._iconPosition;
|
|
54
|
-
descriptor._styleClass = this._styleClass;
|
|
55
|
-
descriptor._badge = this._badge;
|
|
56
|
-
descriptor._tooltip = this._tooltip;
|
|
57
|
-
return descriptor;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWJ1dHRvbi5kZXNjcmlwdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9kZXNjcmlwdG9ycy9hY3Rpb24tYnV0dG9uLmRlc2NyaXB0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sV0FBVyxDQUFDO0FBRTdDLE1BQU0sT0FBTyxzQkFBc0I7SUFBbkM7UUFJWSxrQkFBYSxHQUFxQixNQUFNLENBQUM7UUFFekMsZ0JBQVcsR0FBRyxJQUFJLGtCQUFrQixFQUFFLENBQUM7SUFxRW5ELENBQUM7SUFoRVUsU0FBUyxDQUFDLEtBQXFCO1FBQ2xDLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxRQUFRLENBQUMsSUFBbUI7UUFDL0IsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7UUFDbEIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLGdCQUFnQixDQUFDLFlBQThCO1FBQ2xELElBQUksQ0FBQyxhQUFhLEdBQUcsWUFBWSxDQUFDO1FBQ2xDLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxjQUFjLENBQUMsS0FBeUI7UUFDM0MsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLFNBQVMsQ0FBQyxLQUFhO1FBQzFCLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxXQUFXLENBQUMsT0FBZTtRQUM5QixJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztRQUN4QixPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDO0lBRUQsSUFBVyxLQUFLO1FBQ1osT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3ZCLENBQUM7SUFFRCxJQUFXLElBQUk7UUFDWCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUVELElBQVcsWUFBWTtRQUNuQixPQUFPLElBQUksQ0FBQyxhQUFhLENBQUM7SUFDOUIsQ0FBQztJQUVELElBQVcsVUFBVTtRQUNqQixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDNUIsQ0FBQztJQUVELElBQVcsS0FBSztRQUNaLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBVyxPQUFPO1FBQ2QsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxJQUFJO1FBQ1AsTUFBTSxVQUFVLEdBQUcsSUFBSSxzQkFBc0IsRUFBRSxDQUFDO1FBQ2hELFVBQVUsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQztRQUNoQyxVQUFVLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUM7UUFDOUIsVUFBVSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQzlDLFVBQVUsQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUMxQyxVQUFVLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUM7UUFDaEMsVUFBVSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQ3BDLE9BQU8sVUFBVSxDQUFDO0lBQ3RCLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7QnV0dG9uU3R5bGVCdWlsZGVyfSBmcm9tICcuLi9zdHlsZXMnO1xuXG5leHBvcnQgY2xhc3MgQWN0aW9uQnV0dG9uRGVzY3JpcHRvciB7XG4gICAgcHJpdmF0ZSBfbGFiZWw/OiBzdHJpbmcgfCBudWxsO1xuXG4gICAgcHJpdmF0ZSBfaWNvbj86IHN0cmluZyB8IG51bGw7XG4gICAgcHJpdmF0ZSBfaWNvblBvc2l0aW9uOiAnbGVmdCcgfCAncmlnaHQnID0gJ2xlZnQnO1xuXG4gICAgcHJpdmF0ZSBfc3R5bGVDbGFzcyA9IG5ldyBCdXR0b25TdHlsZUJ1aWxkZXIoKTtcblxuICAgIHByaXZhdGUgX2JhZGdlPzogc3RyaW5nO1xuICAgIHByaXZhdGUgX3Rvb2x0aXA/OiBzdHJpbmc7XG5cbiAgICBwdWJsaWMgd2l0aExhYmVsKGxhYmVsPzogc3RyaW5nIHwgbnVsbCk6IHRoaXMge1xuICAgICAgICB0aGlzLl9sYWJlbCA9IGxhYmVsO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgd2l0aEljb24oaWNvbjogc3RyaW5nIHwgbnVsbCk6IHRoaXMge1xuICAgICAgICB0aGlzLl9pY29uID0gaWNvbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhJY29uUG9zaXRpb24oaWNvblBvc2l0aW9uOiAnbGVmdCcgfCAncmlnaHQnKTogdGhpcyB7XG4gICAgICAgIHRoaXMuX2ljb25Qb3NpdGlvbiA9IGljb25Qb3NpdGlvbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhTdHlsZUNsYXNzKHN0eWxlOiBCdXR0b25TdHlsZUJ1aWxkZXIpOiB0aGlzIHtcbiAgICAgICAgdGhpcy5fc3R5bGVDbGFzcyA9IHN0eWxlO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgd2l0aEJhZGdlKGJhZGdlOiBzdHJpbmcpOiB0aGlzIHtcbiAgICAgICAgdGhpcy5fYmFkZ2UgPSBiYWRnZTtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhUb29sdGlwKHRvb2x0aXA6IHN0cmluZyk6IHRoaXMge1xuICAgICAgICB0aGlzLl90b29sdGlwID0gdG9vbHRpcDtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBsYWJlbCgpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2xhYmVsO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgaWNvbigpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2ljb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBpY29uUG9zaXRpb24oKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9pY29uUG9zaXRpb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBzdHlsZUNsYXNzKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fc3R5bGVDbGFzcztcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGJhZGdlKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fYmFkZ2U7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCB0b29sdGlwKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fdG9vbHRpcDtcbiAgICB9XG5cbiAgICBwdWJsaWMgY29weSgpOiBBY3Rpb25CdXR0b25EZXNjcmlwdG9yIHtcbiAgICAgICAgY29uc3QgZGVzY3JpcHRvciA9IG5ldyBBY3Rpb25CdXR0b25EZXNjcmlwdG9yKCk7XG4gICAgICAgIGRlc2NyaXB0b3IuX2xhYmVsID0gdGhpcy5fbGFiZWw7XG4gICAgICAgIGRlc2NyaXB0b3IuX2ljb24gPSB0aGlzLl9pY29uO1xuICAgICAgICBkZXNjcmlwdG9yLl9pY29uUG9zaXRpb24gPSB0aGlzLl9pY29uUG9zaXRpb247XG4gICAgICAgIGRlc2NyaXB0b3IuX3N0eWxlQ2xhc3MgPSB0aGlzLl9zdHlsZUNsYXNzO1xuICAgICAgICBkZXNjcmlwdG9yLl9iYWRnZSA9IHRoaXMuX2JhZGdlO1xuICAgICAgICBkZXNjcmlwdG9yLl90b29sdGlwID0gdGhpcy5fdG9vbHRpcDtcbiAgICAgICAgcmV0dXJuIGRlc2NyaXB0b3I7XG4gICAgfVxufVxuIl19
|