@seniorsistemas/angular-components 17.27.1-fix-interactive-content-22e06381 → 17.27.1-fixlookupteste-sds-110-c424f879
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/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.d.ts +2 -1
- package/dynamic-form/lib/dynamic-form/dynamic-form.module.d.ts +23 -23
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.d.ts +2 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.d.ts +3 -3
- package/esm2022/accordion/lib/accordion/accordion.component.mjs +84 -0
- package/esm2022/accordion/lib/accordion/accordion.module.mjs +36 -0
- package/esm2022/accordion/lib/accordion/components/accordion-panel/accordion-panel.component.mjs +124 -0
- package/esm2022/accordion/lib/accordion/models/accordion-button-settings.mjs +2 -0
- package/esm2022/accordion/public-api.mjs +4 -0
- package/esm2022/accordion/seniorsistemas-angular-components-accordion.mjs +5 -0
- package/esm2022/alert/lib/alert/alert.component.mjs +44 -0
- package/esm2022/alert/lib/alert/alert.module.mjs +18 -0
- package/esm2022/alert/public-api.mjs +3 -0
- package/esm2022/alert/seniorsistemas-angular-components-alert.mjs +5 -0
- package/esm2022/badge/lib/badge/badge.component.mjs +46 -0
- package/esm2022/badge/lib/badge/badge.module.mjs +20 -0
- package/esm2022/badge/lib/badge/types/badge-colors.mjs +4 -0
- package/esm2022/badge/lib/badge/types/badge-types.mjs +2 -0
- package/esm2022/badge/public-api.mjs +3 -0
- package/esm2022/badge/seniorsistemas-angular-components-badge.mjs +5 -0
- package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.directive.mjs +156 -0
- package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.module.mjs +21 -0
- package/esm2022/bignumber-input/public-api.mjs +3 -0
- package/esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs +5 -0
- package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.component.mjs +105 -0
- package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.module.mjs +20 -0
- package/esm2022/breadcrumb/public-api.mjs +3 -0
- package/esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs +5 -0
- package/esm2022/button/lib/button/button.component.mjs +106 -0
- package/esm2022/button/lib/button/button.module.mjs +18 -0
- package/esm2022/button/lib/button/models/button-animations.mjs +2 -0
- package/esm2022/button/lib/button/models/button-badge-config.mjs +2 -0
- package/esm2022/button/lib/button/models/button-priority.mjs +2 -0
- package/esm2022/button/lib/button/models/button-size.mjs +2 -0
- package/esm2022/button/lib/button/models/index.mjs +2 -0
- package/esm2022/button/public-api.mjs +4 -0
- package/esm2022/button/seniorsistemas-angular-components-button.mjs +5 -0
- package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.directive.mjs +611 -0
- package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.module.mjs +18 -0
- package/esm2022/calendar-mask/public-api.mjs +3 -0
- package/esm2022/calendar-mask/seniorsistemas-angular-components-calendar-mask.mjs +5 -0
- package/esm2022/card/lib/card/card.component.mjs +85 -0
- package/esm2022/card/lib/card/card.module.mjs +19 -0
- package/esm2022/card/public-api.mjs +3 -0
- package/esm2022/card/seniorsistemas-angular-components-card.mjs +5 -0
- package/esm2022/chat/lib/chat/chat.component.mjs +29 -0
- package/esm2022/chat/lib/chat/chat.module.mjs +22 -0
- package/esm2022/chat/lib/chat/components/chat-message/chat-message.component.mjs +29 -0
- package/esm2022/chat/lib/chat/types/chat-message.mjs +2 -0
- package/esm2022/chat/public-api.mjs +3 -0
- package/esm2022/chat/seniorsistemas-angular-components-chat.mjs +5 -0
- package/esm2022/checkbox/lib/checkbox/checkbox.component.mjs +67 -0
- package/esm2022/checkbox/public-api.mjs +2 -0
- package/esm2022/checkbox/seniorsistemas-angular-components-checkbox.mjs +5 -0
- package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.component.mjs +129 -0
- package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.module.mjs +19 -0
- package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-data.mjs +2 -0
- package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-state.mjs +2 -0
- package/esm2022/checkbox-list/public-api.mjs +3 -0
- package/esm2022/checkbox-list/seniorsistemas-angular-components-checkbox-list.mjs +5 -0
- package/esm2022/chips/lib/chips/chip-item/chip-item.component.mjs +67 -0
- package/esm2022/chips/lib/chips/chips/chips.component.mjs +241 -0
- package/esm2022/chips/lib/chips/chips.module.mjs +22 -0
- package/esm2022/chips/lib/chips/models/chip-models.mjs +2 -0
- package/esm2022/chips/public-api.mjs +3 -0
- package/esm2022/chips/seniorsistemas-angular-components-chips.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/code-editor.component.mjs +111 -0
- package/esm2022/code-editor/lib/code-editor/code-editor.module.mjs +32 -0
- package/esm2022/code-editor/lib/code-editor/core/facades/core-facade.mjs +85 -0
- package/esm2022/code-editor/lib/code-editor/core/facades/linter-facade.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/core/models/enums/marker-severity.mjs +7 -0
- package/esm2022/code-editor/lib/code-editor/core/models/index.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/core/models/interfaces/marker.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/core/use-cases/core-linters.mjs +11 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/codemirror-6-core.mjs +97 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/editor-languages.mjs +17 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/json/json.language.mjs +67 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.mjs +29 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.mjs +29 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.mjs +17 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.mjs +77 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.mjs +4 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.mjs +35 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.mjs +334 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.mjs +25 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.mjs +37 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.mjs +10 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.mjs +8 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.mjs +12 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.mjs +36 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.mjs +22 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.mjs +11 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.mjs +14 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/index.mjs +4 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/editor-theme.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/editor-themes.mjs +15 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.mjs +61 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.mjs +39 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.mjs +25 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.mjs +16 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.mjs +13 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.mjs +22 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.mjs +15 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/custom-http-client.mjs +82 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations-service.mjs +37 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations.module.mjs +32 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/interfaces/translations.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/models/enums/languages.mjs +6 -0
- package/esm2022/code-editor/lib/code-editor/models/enums/themes.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/models/index.mjs +6 -0
- package/esm2022/code-editor/lib/code-editor/models/interfaces/editor-options.mjs +2 -0
- package/esm2022/code-editor/public-api.mjs +6 -0
- package/esm2022/code-editor/seniorsistemas-angular-components-code-editor.mjs +5 -0
- package/esm2022/collapse-link/lib/collapse-link/collapse-link.component.mjs +81 -0
- package/esm2022/collapse-link/lib/collapse-link/collapse-link.module.mjs +18 -0
- package/esm2022/collapse-link/public-api.mjs +3 -0
- package/esm2022/collapse-link/seniorsistemas-angular-components-collapse-link.mjs +5 -0
- package/esm2022/common/lib/angular-components.module.mjs +24 -0
- package/esm2022/common/lib/custom-http-client/custom-http-client.mjs +86 -0
- package/esm2022/common/lib/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
- package/esm2022/common/lib/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
- package/esm2022/common/lib/debouce.mjs +35 -0
- package/esm2022/common/lib/svg-factory/components/iassist-icon/iassist-icon.component.mjs +11 -0
- package/esm2022/common/lib/svg-factory/components/senior-icon/senior-icon.component.mjs +11 -0
- package/esm2022/common/lib/svg-factory/components/svg-factory-icons.mjs +2 -0
- package/esm2022/common/lib/svg-factory/index.mjs +3 -0
- package/esm2022/common/lib/svg-factory/svg-factory.directive.mjs +44 -0
- package/esm2022/common/lib/svg-factory/svg-factory.module.mjs +26 -0
- package/esm2022/common/public-api.mjs +5 -0
- package/esm2022/common/seniorsistemas-angular-components-common.mjs +5 -0
- package/esm2022/confirm-dialog/lib/confirm-dialog.model.mjs +2 -0
- package/esm2022/confirm-dialog/lib/confirm-dialog.service.mjs +34 -0
- package/esm2022/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.mjs +17 -0
- package/esm2022/confirm-dialog/public-api.mjs +2 -0
- package/esm2022/confirm-dialog/seniorsistemas-angular-components-confirm-dialog.mjs +5 -0
- package/esm2022/control-errors/lib/control-errors/control-errors.component.mjs +52 -0
- package/esm2022/control-errors/lib/control-errors/control-errors.module.mjs +19 -0
- package/esm2022/control-errors/public-api.mjs +3 -0
- package/esm2022/control-errors/seniorsistemas-angular-components-control-errors.mjs +5 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.component.mjs +319 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.module.mjs +41 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.service.mjs +42 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/country-phone-data.mjs +2 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/ordination.mjs +7 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/phone-selection-data.mjs +2 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/resources/countries.mjs +228 -0
- package/esm2022/country-phone-picker/public-api.mjs +5 -0
- package/esm2022/country-phone-picker/seniorsistemas-angular-components-country-phone-picker.mjs +5 -0
- package/esm2022/currency/lib/currency.service.mjs +25 -0
- package/esm2022/currency/lib/models/currencies.mjs +161 -0
- package/esm2022/currency/lib/types/currency.mjs +2 -0
- package/esm2022/currency/public-api.mjs +3 -0
- package/esm2022/currency/seniorsistemas-angular-components-currency.mjs +5 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.component.mjs +690 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.module.mjs +45 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.service.mjs +35 -0
- package/esm2022/custom-fields/lib/custom-fields/models/custom-field-type.mjs +17 -0
- package/esm2022/custom-fields/public-api.mjs +4 -0
- package/esm2022/custom-fields/seniorsistemas-angular-components-custom-fields.mjs +5 -0
- package/esm2022/dialog/lib/src/dialog/dialog.component.mjs +82 -0
- package/esm2022/dialog/lib/src/dialog/models/active-dialog.mjs +18 -0
- package/esm2022/dialog/lib/src/dialog/models/dialog-models.mjs +2 -0
- package/esm2022/dialog/lib/src/dialog/services/dialog.service.mjs +96 -0
- package/esm2022/dialog/lib/src/dialog/services/internal-dialog.service.mjs +29 -0
- package/esm2022/dialog/public-api.mjs +4 -0
- package/esm2022/dialog/seniorsistemas-angular-components-dialog.mjs +5 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/field-label/field-label.component.mjs +20 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/grid/row/row.component.mjs +41 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.mjs +632 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/default-filter.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/label-options.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/base-structure-component.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/fieldset/fieldset.component.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/section/section.component.mjs +33 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-config.mjs +71 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-type.mjs +26 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/grid.mjs +14 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/row.mjs +10 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid-type.mjs +5 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/fieldset.mjs +10 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/section.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/structure.mjs +9 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure-type.mjs +6 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.component.mjs +41 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.directive.mjs +107 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.mjs +189 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.module.mjs +289 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/addon-config.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-size.mjs +13 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-type.mjs +34 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/autocomplete-field.mjs +24 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/bignumber-field.mjs +37 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/blob-field.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-switch-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/button-field.mjs +47 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/calendar-field.mjs +56 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/checkbox-field.mjs +9 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/chips-field.mjs +25 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/country-phone-picker-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/currency-field.mjs +14 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/decimal-field.mjs +16 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/editor-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/field.mjs +64 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.mjs +66 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/number-field.mjs +38 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/password-field.mjs +33 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/profile-picture.mjs +35 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/radio-button-field.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/select-field.mjs +43 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/slider-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/star-rating-field.mjs +17 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.mjs +32 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-field.mjs +38 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.mjs +36 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/base-field-component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +124 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/button-field/button-field.component.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/calendar/calendar-field.component.mjs +118 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/checkbox/checkbox-field.component.mjs +21 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/chips/chips-field.component.mjs +59 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.mjs +29 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.mjs +90 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/editor/editor-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/file-upload/file-upload-field.component.mjs +56 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/lookup/lookup-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/number/number-field.component.mjs +121 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/password/password-field.component.mjs +75 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.mjs +52 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/select/select-field.component.mjs +24 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/slider/slider-field.component.mjs +103 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/star-rating/star-rating-field.component.mjs +25 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text/text-field.component.mjs +88 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.mjs +29 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/form-field.mjs +243 -0
- package/esm2022/dynamic-form/lib/dynamic-form/services/dynamic-form-cache.mjs +150 -0
- package/esm2022/dynamic-form/public-api.mjs +44 -0
- package/esm2022/dynamic-form/seniorsistemas-angular-components-dynamic-form.mjs +5 -0
- package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.directive.mjs +44 -0
- package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.module.mjs +18 -0
- package/esm2022/editable-overlay/public-api.mjs +3 -0
- package/esm2022/editable-overlay/seniorsistemas-angular-components-editable-overlay.mjs +5 -0
- package/esm2022/empty-state/lib/empty-state/empty-state.component.mjs +51 -0
- package/esm2022/empty-state/lib/empty-state/empty-state.module.mjs +22 -0
- package/esm2022/empty-state/lib/empty-state/go-back/go-back.component.mjs +34 -0
- package/esm2022/empty-state/public-api.mjs +4 -0
- package/esm2022/empty-state/seniorsistemas-angular-components-empty-state.mjs +5 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.component.mjs +78 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.models.mjs +2 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.module.mjs +19 -0
- package/esm2022/fieldset/public-api.mjs +3 -0
- package/esm2022/fieldset/seniorsistemas-angular-components-fieldset.mjs +5 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.component.mjs +276 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.module.mjs +38 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.service.mjs +18 -0
- package/esm2022/file-upload/lib/file-upload/models/file-dto.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/file-upload-permissions.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/list-blob-metadata.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/uploadError.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/validate-errors.mjs +2 -0
- package/esm2022/file-upload/public-api.mjs +3 -0
- package/esm2022/file-upload/seniorsistemas-angular-components-file-upload.mjs +5 -0
- package/esm2022/gantt/lib/gantt/components/gantt/arrow.mjs +87 -0
- package/esm2022/gantt/lib/gantt/components/gantt/bar.mjs +294 -0
- package/esm2022/gantt/lib/gantt/components/gantt/gantt-options.mjs +20 -0
- package/esm2022/gantt/lib/gantt/components/gantt/gantt.mjs +812 -0
- package/esm2022/gantt/lib/gantt/components/gantt/popup.mjs +110 -0
- package/esm2022/gantt/lib/gantt/components/gantt/utils/date-utils.mjs +116 -0
- package/esm2022/gantt/lib/gantt/components/gantt/utils/svg-utils.mjs +111 -0
- package/esm2022/gantt/lib/gantt/components/side-table/side-table.component.mjs +32 -0
- package/esm2022/gantt/lib/gantt/gantt.component.mjs +146 -0
- package/esm2022/gantt/lib/gantt/gantt.module.mjs +24 -0
- package/esm2022/gantt/lib/gantt/models/index.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/options.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/task.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/view-mode.mjs +12 -0
- package/esm2022/gantt/public-api.mjs +4 -0
- package/esm2022/gantt/seniorsistemas-angular-components-gantt.mjs +5 -0
- package/esm2022/global-search/lib/global-search/components/dropdown/global-search-dropdown-item.component.mjs +73 -0
- package/esm2022/global-search/lib/global-search/global-search.component.mjs +140 -0
- package/esm2022/global-search/lib/global-search/global-search.module.mjs +78 -0
- package/esm2022/global-search/lib/global-search/types/global-search-size.enum.mjs +2 -0
- package/esm2022/global-search/public-api.mjs +5 -0
- package/esm2022/global-search/seniorsistemas-angular-components-global-search.mjs +5 -0
- package/esm2022/grid-menu/lib/grid-menu/components/grid-menu-item/grid-menu-item.component.mjs +34 -0
- package/esm2022/grid-menu/lib/grid-menu/grid-menu.component.mjs +19 -0
- package/esm2022/grid-menu/lib/grid-menu/grid-menu.module.mjs +19 -0
- package/esm2022/grid-menu/lib/grid-menu/types/grid-menu-item.mjs +2 -0
- package/esm2022/grid-menu/public-api.mjs +4 -0
- package/esm2022/grid-menu/seniorsistemas-angular-components-grid-menu.mjs +5 -0
- package/esm2022/help-popover/lib/help-popover/help-popover/help-popover.component.mjs +84 -0
- package/esm2022/help-popover/lib/help-popover/help-popover.directive.mjs +314 -0
- package/esm2022/help-popover/lib/help-popover/help-popover.module.mjs +25 -0
- package/esm2022/help-popover/lib/help-popover/models/help-popover.models.mjs +2 -0
- package/esm2022/help-popover/public-api.mjs +4 -0
- package/esm2022/help-popover/seniorsistemas-angular-components-help-popover.mjs +5 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.mjs +13 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/ia-insight-card.component.mjs +82 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.mjs +49 -0
- package/esm2022/ia-insight/lib/ia-insight/ia-insight.component.mjs +66 -0
- package/esm2022/ia-insight/lib/ia-insight/ia-insight.module.mjs +47 -0
- package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-item.mjs +2 -0
- package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-template-types.mjs +2 -0
- package/esm2022/ia-insight/lib/ia-insight/models/index.mjs +2 -0
- package/esm2022/ia-insight/public-api.mjs +4 -0
- package/esm2022/ia-insight/seniorsistemas-angular-components-ia-insight.mjs +5 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.component.mjs +179 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.module.mjs +23 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.service.mjs +73 -0
- package/esm2022/image-cropper/public-api.mjs +4 -0
- package/esm2022/image-cropper/seniorsistemas-angular-components-image-cropper.mjs +5 -0
- package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.directive.mjs +28 -0
- package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.module.mjs +18 -0
- package/esm2022/infinite-scroll/public-api.mjs +3 -0
- package/esm2022/infinite-scroll/seniorsistemas-angular-components-infinite-scroll.mjs +5 -0
- package/esm2022/info-sign/lib/info-sign/components/info-sign/info-sign.component.mjs +17 -0
- package/esm2022/info-sign/lib/info-sign/info-sign.directive.mjs +68 -0
- package/esm2022/info-sign/lib/info-sign/info-sign.module.mjs +20 -0
- package/esm2022/info-sign/public-api.mjs +3 -0
- package/esm2022/info-sign/seniorsistemas-angular-components-info-sign.mjs +5 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.mjs +53 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.mjs +85 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.mjs +33 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/index.mjs +8 -0
- package/esm2022/inline-edit/lib/inline-edit/components/inline-edit-item/inline-edit-item.component.mjs +105 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/index.mjs +8 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-calendar-field.mjs +45 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-field.mjs +13 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-lookup-field.mjs +60 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-number-field.mjs +38 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-field.mjs +15 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-ia-field.mjs +7 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-field.mjs +7 -0
- package/esm2022/inline-edit/lib/inline-edit/inline-edit.component.mjs +66 -0
- package/esm2022/inline-edit/lib/inline-edit/inline-edit.module.mjs +102 -0
- package/esm2022/inline-edit/lib/inline-edit/types/addon-config.mjs +2 -0
- package/esm2022/inline-edit/public-api.mjs +4 -0
- package/esm2022/inline-edit/seniorsistemas-angular-components-inline-edit.mjs +5 -0
- package/esm2022/interactive-content/lib/interactive-content/interactive-content.directive.mjs +63 -0
- package/esm2022/interactive-content/public-api.mjs +2 -0
- package/esm2022/interactive-content/seniorsistemas-angular-components-interactive-content.mjs +5 -0
- package/esm2022/kanban/lib/kanban/components/kanban-column/kanban-column.component.mjs +100 -0
- package/esm2022/kanban/lib/kanban/components/kanban-item/kanban-item.component.mjs +62 -0
- package/esm2022/kanban/lib/kanban/components/kanban-item-dragging/kanban-item-dragging.component.mjs +17 -0
- package/esm2022/kanban/lib/kanban/kanban-event.service.mjs +26 -0
- package/esm2022/kanban/lib/kanban/kanban.component.mjs +219 -0
- package/esm2022/kanban/lib/kanban/kanban.module.mjs +56 -0
- package/esm2022/kanban/lib/kanban/types/index.mjs +2 -0
- package/esm2022/kanban/lib/kanban/types/kanban-data.mjs +2 -0
- package/esm2022/kanban/lib/kanban/types/kanban-template-types.mjs +2 -0
- package/esm2022/kanban/public-api.mjs +3 -0
- package/esm2022/kanban/seniorsistemas-angular-components-kanban.mjs +5 -0
- package/esm2022/label-value/lib/label-value/label-value.component.mjs +35 -0
- package/esm2022/label-value/lib/label-value/label-value.module.mjs +22 -0
- package/esm2022/label-value/lib/label-value/types/label-value-configuration.mjs +2 -0
- package/esm2022/label-value/public-api.mjs +3 -0
- package/esm2022/label-value/seniorsistemas-angular-components-label-value.mjs +5 -0
- package/esm2022/lib/locale/fallback.mjs +333 -0
- package/esm2022/loading-state/lib/loading-state/components/dots-indicator/dots-indicator.components.mjs +11 -0
- package/esm2022/loading-state/lib/loading-state/components/loading-state-indicators.mjs +6 -0
- package/esm2022/loading-state/lib/loading-state/components/logo-indicator/logo-indicator.component.mjs +12 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.component.mjs +74 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.directive.mjs +62 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.module.mjs +30 -0
- package/esm2022/loading-state/public-api.mjs +5 -0
- package/esm2022/loading-state/seniorsistemas-angular-components-loading-state.mjs +5 -0
- package/esm2022/locale/lib/locale/locale.module.mjs +85 -0
- package/esm2022/locale/lib/locale/locale.service.mjs +87 -0
- package/esm2022/locale/lib/locale/options/calendar.mjs +24 -0
- package/esm2022/locale/lib/locale/options/index.mjs +27 -0
- package/esm2022/locale/lib/locale/options/number.mjs +9 -0
- package/esm2022/locale/lib/locale/pipes/localized-bignumber-impure.pipe.mjs +18 -0
- package/esm2022/locale/lib/locale/pipes/localized-bignumber.pipe.mjs +38 -0
- package/esm2022/locale/lib/locale/pipes/localized-currency-impure.pipe.mjs +21 -0
- package/esm2022/locale/lib/locale/pipes/localized-currency.pipe.mjs +53 -0
- package/esm2022/locale/lib/locale/pipes/localized-date-impure.pipe.mjs +15 -0
- package/esm2022/locale/lib/locale/pipes/localized-date.pipe.mjs +23 -0
- package/esm2022/locale/lib/locale/pipes/localized-number.pipe.mjs +31 -0
- package/esm2022/locale/lib/locale/pipes/localized-time-impure.pipe.mjs +15 -0
- package/esm2022/locale/lib/locale/pipes/localized-time.pipe.mjs +23 -0
- package/esm2022/locale/public-api.mjs +13 -0
- package/esm2022/locale/seniorsistemas-angular-components-locale.mjs +5 -0
- package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.directive.mjs +63 -0
- package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.module.mjs +18 -0
- package/esm2022/localized-number-input/public-api.mjs +3 -0
- package/esm2022/localized-number-input/seniorsistemas-angular-components-localized-number-input.mjs +5 -0
- package/esm2022/mask/lib/mask/mask-formatter.module.mjs +16 -0
- package/esm2022/mask/lib/mask/mask-formatter.pipe.mjs +65 -0
- package/esm2022/mask/public-api.mjs +3 -0
- package/esm2022/mask/seniorsistemas-angular-components-mask.mjs +5 -0
- package/esm2022/mouse-events/lib/mouse-events/double-click.directive.mjs +37 -0
- package/esm2022/mouse-events/lib/mouse-events/long-press.directive.mjs +51 -0
- package/esm2022/mouse-events/lib/mouse-events/mouse-events.module.mjs +27 -0
- package/esm2022/mouse-events/public-api.mjs +4 -0
- package/esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs +5 -0
- package/esm2022/navigation-button/lib/navigation-button/models/index.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-item.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-step-changed-info.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/navigation-button.component.mjs +134 -0
- package/esm2022/navigation-button/lib/navigation-button/navigation-button.module.mjs +20 -0
- package/esm2022/navigation-button/public-api.mjs +4 -0
- package/esm2022/navigation-button/seniorsistemas-angular-components-navigation-button.mjs +5 -0
- package/esm2022/number-input/lib/number-input/number-input.directive.mjs +164 -0
- package/esm2022/number-input/lib/number-input/number-input.module.mjs +21 -0
- package/esm2022/number-input/public-api.mjs +3 -0
- package/esm2022/number-input/seniorsistemas-angular-components-number-input.mjs +5 -0
- package/esm2022/numeric/lib/numeric.module.mjs +18 -0
- package/esm2022/numeric/lib/numeric.pipe.mjs +29 -0
- package/esm2022/numeric/lib/numeric.service.mjs +92 -0
- package/esm2022/numeric/public-api.mjs +4 -0
- package/esm2022/numeric/seniorsistemas-angular-components-numeric.mjs +5 -0
- package/esm2022/object-card/lib/object-card/elements/field/object-card-field.component.mjs +51 -0
- package/esm2022/object-card/lib/object-card/elements/main/object-card-main.component.mjs +87 -0
- package/esm2022/object-card/lib/object-card/object-card.component.mjs +171 -0
- package/esm2022/object-card/lib/object-card/object-card.module.mjs +24 -0
- package/esm2022/object-card/public-api.mjs +5 -0
- package/esm2022/object-card/seniorsistemas-angular-components-object-card.mjs +5 -0
- package/esm2022/paginator/lib/models/paginator.models.mjs +2 -0
- package/esm2022/paginator/lib/paginator/paginator.component.mjs +138 -0
- package/esm2022/paginator/public-api.mjs +2 -0
- package/esm2022/paginator/seniorsistemas-angular-components-paginator.mjs +5 -0
- package/esm2022/panel/lib/panel/panel.component.mjs +91 -0
- package/esm2022/panel/lib/panel/panel.module.mjs +20 -0
- package/esm2022/panel/public-api.mjs +3 -0
- package/esm2022/panel/seniorsistemas-angular-components-panel.mjs +5 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.component.mjs +92 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.directive.mjs +210 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.module.mjs +19 -0
- package/esm2022/password-strength/lib/password-strength/types/password-positions.mjs +2 -0
- package/esm2022/password-strength/lib/password-strength/types/password-strengths.mjs +2 -0
- package/esm2022/password-strength/public-api.mjs +4 -0
- package/esm2022/password-strength/seniorsistemas-angular-components-password-strength.mjs +5 -0
- package/esm2022/picklist/lib/picklist/picklist.component.mjs +299 -0
- package/esm2022/picklist/lib/picklist/picklist.module.mjs +36 -0
- package/esm2022/picklist/lib/picklist/types/index.mjs +2 -0
- package/esm2022/picklist/lib/picklist/types/picklist-item.mjs +2 -0
- package/esm2022/picklist/lib/picklist/types/picklist-template-types.mjs +2 -0
- package/esm2022/picklist/public-api.mjs +5 -0
- package/esm2022/picklist/seniorsistemas-angular-components-picklist.mjs +5 -0
- package/esm2022/product-header/lib/product-header/product-header.component.mjs +44 -0
- package/esm2022/product-header/lib/product-header/product-header.module.mjs +20 -0
- package/esm2022/product-header/public-api.mjs +3 -0
- package/esm2022/product-header/seniorsistemas-angular-components-product-header.mjs +5 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/confirmation-texts.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/cropper-labels-config.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/file-validation-errors.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/index.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/profile-picture-picker-data.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.component.mjs +277 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.module.mjs +25 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/index.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/validators.mjs +28 -0
- package/esm2022/profile-picture-picker/public-api.mjs +4 -0
- package/esm2022/profile-picture-picker/seniorsistemas-angular-components-profile-picture-picker.mjs +5 -0
- package/esm2022/progressbar/lib/progressbar/components/progressbar-determinate/progressbar-determinate.component.mjs +60 -0
- package/esm2022/progressbar/lib/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.mjs +19 -0
- package/esm2022/progressbar/lib/progressbar/progressbar.component.mjs +57 -0
- package/esm2022/progressbar/lib/progressbar/progressbar.module.mjs +21 -0
- package/esm2022/progressbar/lib/progressbar/types/index.mjs +2 -0
- package/esm2022/progressbar/lib/progressbar/types/progressbar-colors.mjs +2 -0
- package/esm2022/progressbar/lib/progressbar/types/progressbar-mode.mjs +2 -0
- package/esm2022/progressbar/public-api.mjs +4 -0
- package/esm2022/progressbar/seniorsistemas-angular-components-progressbar.mjs +5 -0
- package/esm2022/public-api.mjs +2 -0
- package/esm2022/radio-button/lib/radio-button/radio-button.component.mjs +82 -0
- package/esm2022/radio-button/lib/radio-button-group/models/radio-button-group.models.mjs +2 -0
- package/esm2022/radio-button/lib/radio-button-group/radio-button-group.component.mjs +62 -0
- package/esm2022/radio-button/lib/services/radio-button-registry.service.mjs +38 -0
- package/esm2022/radio-button/public-api.mjs +3 -0
- package/esm2022/radio-button/seniorsistemas-angular-components-radio-button.mjs +5 -0
- package/esm2022/rating-scale/lib/rating-scale/models/index.mjs +2 -0
- package/esm2022/rating-scale/lib/rating-scale/models/rating-scale-node.mjs +2 -0
- package/esm2022/rating-scale/lib/rating-scale/rating-scale.component.mjs +54 -0
- package/esm2022/rating-scale/lib/rating-scale/rating-scale.module.mjs +24 -0
- package/esm2022/rating-scale/public-api.mjs +3 -0
- package/esm2022/rating-scale/seniorsistemas-angular-components-rating-scale.mjs +5 -0
- package/esm2022/select/lib/select/components/select-option/select-option.component.mjs +27 -0
- package/esm2022/select/lib/select/select.component.mjs +712 -0
- package/esm2022/select/public-api.mjs +2 -0
- package/esm2022/select/seniorsistemas-angular-components-select.mjs +5 -0
- package/esm2022/select-button/lib/select-button/components/select-button-item/select-button-item.component.mjs +28 -0
- package/esm2022/select-button/lib/select-button/models/select-button-item.mjs +2 -0
- package/esm2022/select-button/lib/select-button/select-button.component.mjs +122 -0
- package/esm2022/select-button/lib/select-button/select-button.module.mjs +23 -0
- package/esm2022/select-button/public-api.mjs +3 -0
- package/esm2022/select-button/seniorsistemas-angular-components-select-button.mjs +5 -0
- package/esm2022/seniorsistemas-angular-components.mjs +5 -0
- package/esm2022/shared/lib/shared/border-button/border-button.component.mjs +19 -0
- package/esm2022/shared/lib/shared/border-button/border-button.module.mjs +19 -0
- package/esm2022/shared/lib/shared/helpers.mjs +31 -0
- package/esm2022/shared/lib/shared/models/border-button-options.mjs +2 -0
- package/esm2022/shared/lib/shared/models/severities.mjs +9 -0
- package/esm2022/shared/public-api.mjs +5 -0
- package/esm2022/shared/seniorsistemas-angular-components-shared.mjs +5 -0
- package/esm2022/sidebar/lib/sidebar/sidebar.component.mjs +114 -0
- package/esm2022/sidebar/lib/sidebar/sidebar.module.mjs +20 -0
- package/esm2022/sidebar/public-api.mjs +3 -0
- package/esm2022/sidebar/seniorsistemas-angular-components-sidebar.mjs +5 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.component.mjs +137 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.module.mjs +20 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.service.mjs +26 -0
- package/esm2022/slide-panel/public-api.mjs +4 -0
- package/esm2022/slide-panel/seniorsistemas-angular-components-slide-panel.mjs +5 -0
- package/esm2022/slider/lib/slider/slider.component.mjs +601 -0
- package/esm2022/slider/lib/slider/slider.module.mjs +19 -0
- package/esm2022/slider/public-api.mjs +3 -0
- package/esm2022/slider/seniorsistemas-angular-components-slider.mjs +5 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition/speech-recognition.component.mjs +217 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.module.mjs +24 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.service.mjs +146 -0
- package/esm2022/speech-recognition/lib/speech-recognition/text-to-speech.service.mjs +81 -0
- package/esm2022/speech-recognition/public-api.mjs +5 -0
- package/esm2022/speech-recognition/seniorsistemas-angular-components-speech-recognition.mjs +5 -0
- package/esm2022/split-button/lib/split-button/models/index.mjs +2 -0
- package/esm2022/split-button/lib/split-button/models/split-button-option.mjs +2 -0
- package/esm2022/split-button/lib/split-button/models/split-button-type.mjs +2 -0
- package/esm2022/split-button/lib/split-button/split-button.component.mjs +64 -0
- package/esm2022/split-button/lib/split-button/split-button.module.mjs +18 -0
- package/esm2022/split-button/public-api.mjs +4 -0
- package/esm2022/split-button/seniorsistemas-angular-components-split-button.mjs +5 -0
- package/esm2022/star-rating/public-api.mjs +2 -0
- package/esm2022/star-rating/seniorsistemas-angular-components-star-rating.mjs +5 -0
- package/esm2022/star-rating/star-rating/star-rating-models.mjs +2 -0
- package/esm2022/star-rating/star-rating/star-rating.component.mjs +63 -0
- package/esm2022/stats-card/lib/stats-card/stats-card.component.mjs +119 -0
- package/esm2022/stats-card/lib/stats-card/stats-card.module.mjs +19 -0
- package/esm2022/stats-card/public-api.mjs +3 -0
- package/esm2022/stats-card/seniorsistemas-angular-components-stats-card.mjs +5 -0
- package/esm2022/steps/lib/steps/steps.component.mjs +122 -0
- package/esm2022/steps/lib/steps/steps.module.mjs +19 -0
- package/esm2022/steps/public-api.mjs +3 -0
- package/esm2022/steps/seniorsistemas-angular-components-steps.mjs +5 -0
- package/esm2022/structure/lib/structure/footer.component.mjs +14 -0
- package/esm2022/structure/lib/structure/header.component.mjs +14 -0
- package/esm2022/structure/lib/structure/structure.module.mjs +19 -0
- package/esm2022/structure/public-api.mjs +5 -0
- package/esm2022/structure/seniorsistemas-angular-components-structure.mjs +5 -0
- package/esm2022/switch/lib/switch/switch.component.mjs +93 -0
- package/esm2022/switch/lib/switch/switch.module.mjs +18 -0
- package/esm2022/switch/public-api.mjs +3 -0
- package/esm2022/switch/seniorsistemas-angular-components-switch.mjs +5 -0
- package/esm2022/table/lib/locale-utils.mjs +15 -0
- package/esm2022/table/lib/table/export-utils.mjs +112 -0
- package/esm2022/table/lib/table/navigation/navigation.directive.mjs +130 -0
- package/esm2022/table/lib/table/row-toggler/row-toggler.directive.mjs +38 -0
- package/esm2022/table/lib/table/table-column/index.mjs +3 -0
- package/esm2022/table/lib/table/table-column/models/badge-column.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/badge-configs.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column-colors.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column-values.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/dynamic-editable-grid.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/enum-badge-colors.mjs +10 -0
- package/esm2022/table/lib/table/table-column/models/enum-column-field-type.mjs +13 -0
- package/esm2022/table/lib/table/table-column/models/index.mjs +11 -0
- package/esm2022/table/lib/table/table-column/models/locale-options.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/number-locale-options.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/table-columns.component.mjs +299 -0
- package/esm2022/table/lib/table/table-paging/index.mjs +3 -0
- package/esm2022/table/lib/table/table-paging/models/custom-action.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-paging/models/index.mjs +2 -0
- package/esm2022/table/lib/table/table-paging/table-paging.component.mjs +321 -0
- package/esm2022/table/lib/table/table.module.mjs +27 -0
- package/esm2022/table/public-api.mjs +6 -0
- package/esm2022/table/seniorsistemas-angular-components-table.mjs +5 -0
- package/esm2022/table-header/lib/table-header/table-header-checkbox.component.mjs +151 -0
- package/esm2022/table-header/lib/table-header/table-header-checkox.module.mjs +20 -0
- package/esm2022/table-header/public-api.mjs +3 -0
- package/esm2022/table-header/seniorsistemas-angular-components-table-header.mjs +5 -0
- package/esm2022/tabs/lib/tab-item/tab-item.component.mjs +36 -0
- package/esm2022/tabs/lib/tabs/tabs.component.mjs +51 -0
- package/esm2022/tabs/public-api.mjs +3 -0
- package/esm2022/tabs/seniorsistemas-angular-components-tabs.mjs +5 -0
- package/esm2022/template/lib/template/template.directive.mjs +22 -0
- package/esm2022/template/lib/template/template.module.mjs +17 -0
- package/esm2022/template/public-api.mjs +3 -0
- package/esm2022/template/seniorsistemas-angular-components-template.mjs +5 -0
- package/esm2022/text-area/lib/text-area/text-area.component.mjs +116 -0
- package/esm2022/text-area/lib/text-area.module.mjs +35 -0
- package/esm2022/text-area/public-api.mjs +3 -0
- package/esm2022/text-area/seniorsistemas-angular-components-text-area.mjs +5 -0
- package/esm2022/text-area-ia/lib/services/IAssist/iassist.service.mjs +77 -0
- package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-input-data.mjs +3 -0
- package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-response.mjs +3 -0
- package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.component.mjs +150 -0
- package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.module.mjs +50 -0
- package/esm2022/text-area-ia/public-api.mjs +3 -0
- package/esm2022/text-area-ia/seniorsistemas-angular-components-text-area-ia.mjs +5 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail-size.mjs +2 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.component.mjs +77 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.module.mjs +20 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.service.mjs +62 -0
- package/esm2022/thumbnail/public-api.mjs +4 -0
- package/esm2022/thumbnail/seniorsistemas-angular-components-thumbnail.mjs +5 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.mjs +17 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.mjs +42 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/thumbnail-item.component.mjs +64 -0
- package/esm2022/thumbnails/lib/thumbnails/models/thumbnails-item.mjs +2 -0
- package/esm2022/thumbnails/lib/thumbnails/thumbnails.component.mjs +48 -0
- package/esm2022/thumbnails/lib/thumbnails/thumbnails.module.mjs +24 -0
- package/esm2022/thumbnails/public-api.mjs +3 -0
- package/esm2022/thumbnails/seniorsistemas-angular-components-thumbnails.mjs +5 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu/tiered-menu.component.mjs +303 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.mjs +11 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.mjs +73 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.mjs +179 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/index.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-data.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-internal-data.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.event.service.mjs +17 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.global.service.mjs +11 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.service.mjs +54 -0
- package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.directive.mjs +234 -0
- package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.module.mjs +34 -0
- package/esm2022/tiered-menu/public-api.mjs +6 -0
- package/esm2022/tiered-menu/seniorsistemas-angular-components-tiered-menu.mjs +5 -0
- package/esm2022/tile/lib/tile/tile.component.mjs +65 -0
- package/esm2022/tile/lib/tile/tile.module.mjs +20 -0
- package/esm2022/tile/public-api.mjs +3 -0
- package/esm2022/tile/seniorsistemas-angular-components-tile.mjs +5 -0
- package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.component.mjs +24 -0
- package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.module.mjs +20 -0
- package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.component.mjs +26 -0
- package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.module.mjs +19 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.mjs +21 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.mjs +33 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/range-line/range-line.component.mjs +11 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.mjs +29 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.component.mjs +60 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.module.mjs +33 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item-severity.mjs +7 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item-size.mjs +6 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item.mjs +44 -0
- package/esm2022/timeline/lib/timeline/timeline.component.mjs +66 -0
- package/esm2022/timeline/lib/timeline/timeline.module.mjs +32 -0
- package/esm2022/timeline/public-api.mjs +6 -0
- package/esm2022/timeline/seniorsistemas-angular-components-timeline.mjs +5 -0
- package/esm2022/toast/lib/toast/toast.component.mjs +46 -0
- package/esm2022/toast/lib/toast/toast.module.mjs +17 -0
- package/esm2022/toast/lib/toast/toast.service.mjs +68 -0
- package/esm2022/toast/lib/toast/types/toast.mjs +2 -0
- package/esm2022/toast/public-api.mjs +4 -0
- package/esm2022/toast/seniorsistemas-angular-components-toast.mjs +5 -0
- package/esm2022/token-list/lib/token-list/models/index.mjs +2 -0
- package/esm2022/token-list/lib/token-list/models/token.mjs +2 -0
- package/esm2022/token-list/lib/token-list/token-list.component.mjs +42 -0
- package/esm2022/token-list/lib/token-list/token-list.module.mjs +18 -0
- package/esm2022/token-list/public-api.mjs +4 -0
- package/esm2022/token-list/seniorsistemas-angular-components-token-list.mjs +5 -0
- package/esm2022/tooltip/lib/tooltip/models/mobile-behavior.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/models/tooltip-event.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/models/tooltip-position.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.component.mjs +18 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.directive.mjs +339 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.module.mjs +19 -0
- package/esm2022/tooltip/public-api.mjs +3 -0
- package/esm2022/tooltip/seniorsistemas-angular-components-tooltip.mjs +5 -0
- package/esm2022/utils/lib/utils/breakpoints.mjs +11 -0
- package/esm2022/utils/lib/utils/utils.mjs +51 -0
- package/esm2022/utils/public-api.mjs +3 -0
- package/esm2022/utils/seniorsistemas-angular-components-utils.mjs +5 -0
- package/esm2022/workspace-switch/lib/workspace-switch/models/index.mjs +2 -0
- package/esm2022/workspace-switch/lib/workspace-switch/models/workspace.mjs +2 -0
- package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.component.mjs +137 -0
- package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.module.mjs +18 -0
- package/esm2022/workspace-switch/public-api.mjs +3 -0
- package/esm2022/workspace-switch/seniorsistemas-angular-components-workspace-switch.mjs +5 -0
- package/fesm2022/seniorsistemas-angular-components-accordion.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-accordion.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-alert.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-badge.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-breadcrumb.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-button.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-button.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-calendar-mask.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-card.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-chat.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-checkbox-list.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-checkbox.mjs +3 -3
- package/fesm2022/seniorsistemas-angular-components-chips.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-chips.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-code-editor.mjs +11 -11
- package/fesm2022/seniorsistemas-angular-components-collapse-link.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-common.mjs +20 -20
- package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs +6 -6
- package/fesm2022/seniorsistemas-angular-components-control-errors.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-country-phone-picker.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-currency.mjs +3 -3
- package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-dialog.mjs +9 -9
- package/fesm2022/seniorsistemas-angular-components-dialog.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +125 -119
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-editable-overlay.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-empty-state.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-fieldset.mjs +9 -10
- package/fesm2022/seniorsistemas-angular-components-fieldset.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-file-upload.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-gantt.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-gantt.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-global-search.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-grid-menu.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-help-popover.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs +16 -16
- package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-infinite-scroll.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-info-sign.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-info-sign.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +28 -28
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs +7 -3
- package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-kanban.mjs +19 -19
- package/fesm2022/seniorsistemas-angular-components-label-value.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-loading-state.mjs +16 -16
- package/fesm2022/seniorsistemas-angular-components-locale.mjs +34 -34
- package/fesm2022/seniorsistemas-angular-components-localized-number-input.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-mask.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-mouse-events.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs +8 -8
- package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-number-input.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-numeric.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-object-card.mjs +13 -13
- package/fesm2022/seniorsistemas-angular-components-object-card.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-paginator.mjs +3 -3
- package/fesm2022/seniorsistemas-angular-components-paginator.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-panel.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-password-strength.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-picklist.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-product-header.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-profile-picture-picker.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-progressbar.mjs +13 -13
- package/fesm2022/seniorsistemas-angular-components-radio-button.mjs +182 -0
- package/fesm2022/seniorsistemas-angular-components-radio-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-rating-scale.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-select-button.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-select.mjs +6 -6
- package/fesm2022/seniorsistemas-angular-components-shared.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-shared.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-sidebar.mjs +42 -23
- package/fesm2022/seniorsistemas-angular-components-sidebar.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-slide-panel.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-slider.mjs +8 -8
- package/fesm2022/seniorsistemas-angular-components-slider.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-speech-recognition.mjs +13 -13
- package/fesm2022/seniorsistemas-angular-components-split-button.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-star-rating.mjs +4 -4
- package/fesm2022/seniorsistemas-angular-components-star-rating.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-stats-card.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-stats-card.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-steps.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-steps.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-structure.mjs +11 -11
- package/fesm2022/seniorsistemas-angular-components-structure.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-switch.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-table-header.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-table.mjs +16 -16
- package/fesm2022/seniorsistemas-angular-components-table.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-tabs.mjs +91 -0
- package/fesm2022/seniorsistemas-angular-components-tabs.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-template.mjs +12 -15
- package/fesm2022/seniorsistemas-angular-components-template.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-text-area.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-thumbnail.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-thumbnails.mjs +16 -16
- package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs +54 -92
- package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-tile.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-tile.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-timeline.mjs +40 -40
- package/fesm2022/seniorsistemas-angular-components-timeline.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-toast.mjs +10 -10
- package/fesm2022/seniorsistemas-angular-components-token-list.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components-tooltip.mjs +24 -14
- package/fesm2022/seniorsistemas-angular-components-tooltip.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-utils.mjs +13 -4
- package/fesm2022/seniorsistemas-angular-components-utils.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-workspace-switch.mjs +7 -7
- package/fesm2022/seniorsistemas-angular-components.mjs +1 -0
- package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -1
- package/fieldset/lib/fieldset/fieldset.component.d.ts +1 -1
- package/fieldset/lib/fieldset/fieldset.module.d.ts +1 -2
- package/index.d.ts +5 -0
- package/interactive-content/lib/interactive-content/interactive-content.directive.d.ts +2 -1
- package/lib/locale/fallback.d.ts +1 -0
- package/package.json +13 -89
- package/public-api.d.ts +1 -0
- package/radio-button/index.d.ts +5 -0
- package/radio-button/lib/radio-button/radio-button.component.d.ts +31 -0
- package/radio-button/lib/radio-button-group/models/radio-button-group.models.d.ts +5 -0
- package/radio-button/lib/radio-button-group/radio-button-group.component.d.ts +25 -0
- package/radio-button/lib/services/radio-button-registry.service.d.ts +12 -0
- package/radio-button/public-api.d.ts +3 -0
- package/select/index.d.ts +5 -0
- package/select/lib/select/components/select-option/select-option.component.d.ts +14 -0
- package/select/lib/select/select.component.d.ts +275 -0
- package/select/public-api.d.ts +1 -0
- package/sidebar/lib/sidebar/sidebar.component.d.ts +7 -6
- package/src/lib/styles/tailwind.scss +4 -0
- package/tabs/index.d.ts +5 -0
- package/tabs/lib/tab-item/tab-item.component.d.ts +18 -0
- package/tabs/lib/tabs/tabs.component.d.ts +16 -0
- package/tabs/public-api.d.ts +2 -0
- package/tailwind.css +455 -414
- package/template/lib/template/template.directive.d.ts +2 -3
- package/template/lib/template/template.module.d.ts +3 -3
- package/tooltip/lib/tooltip/tooltip.directive.d.ts +4 -2
- package/tooltip/lib/tooltip/tooltip.module.d.ts +3 -3
- package/utils/lib/utils/utils.d.ts +2 -0
- package/accordion/package.json +0 -3
- package/alert/package.json +0 -3
- package/badge/package.json +0 -3
- package/bignumber-input/package.json +0 -3
- package/breadcrumb/package.json +0 -3
- package/button/package.json +0 -3
- package/calendar-mask/package.json +0 -3
- package/card/package.json +0 -3
- package/chat/package.json +0 -3
- package/checkbox/package.json +0 -3
- package/checkbox-list/package.json +0 -3
- package/chips/package.json +0 -3
- package/code-editor/package.json +0 -3
- package/collapse-link/package.json +0 -3
- package/common/package.json +0 -3
- package/confirm-dialog/package.json +0 -3
- package/control-errors/package.json +0 -3
- package/country-phone-picker/package.json +0 -3
- package/currency/package.json +0 -3
- package/custom-fields/package.json +0 -3
- package/dialog/package.json +0 -3
- package/dynamic-form/package.json +0 -3
- package/editable-overlay/package.json +0 -3
- package/empty-state/package.json +0 -3
- package/fieldset/package.json +0 -3
- package/file-upload/package.json +0 -3
- package/gantt/package.json +0 -3
- package/global-search/package.json +0 -3
- package/grid-menu/package.json +0 -3
- package/help-popover/package.json +0 -3
- package/ia-insight/package.json +0 -3
- package/image-cropper/package.json +0 -3
- package/infinite-scroll/package.json +0 -3
- package/info-sign/package.json +0 -3
- package/inline-edit/package.json +0 -3
- package/interactive-content/package.json +0 -3
- package/kanban/package.json +0 -3
- package/label-value/package.json +0 -3
- package/loading-state/package.json +0 -3
- package/locale/package.json +0 -3
- package/localized-number-input/package.json +0 -3
- package/mask/package.json +0 -3
- package/mouse-events/package.json +0 -3
- package/navigation-button/package.json +0 -3
- package/number-input/package.json +0 -3
- package/numeric/package.json +0 -3
- package/object-card/package.json +0 -3
- package/paginator/package.json +0 -3
- package/panel/package.json +0 -3
- package/password-strength/package.json +0 -3
- package/picklist/package.json +0 -3
- package/product-header/package.json +0 -3
- package/profile-picture-picker/package.json +0 -3
- package/progressbar/package.json +0 -3
- package/rating-scale/package.json +0 -3
- package/select-button/package.json +0 -3
- package/shared/package.json +0 -3
- package/sidebar/package.json +0 -3
- package/slide-panel/package.json +0 -3
- package/slider/package.json +0 -3
- package/speech-recognition/package.json +0 -3
- package/split-button/package.json +0 -3
- package/star-rating/package.json +0 -3
- package/stats-card/package.json +0 -3
- package/steps/package.json +0 -3
- package/structure/package.json +0 -3
- package/switch/package.json +0 -3
- package/table/package.json +0 -3
- package/table-header/package.json +0 -3
- package/template/package.json +0 -3
- package/text-area/package.json +0 -3
- package/text-area-ia/package.json +0 -3
- package/thumbnail/package.json +0 -3
- package/thumbnails/package.json +0 -3
- package/tiered-menu/lib/tiered-menu/utils.d.ts +0 -2
- package/tiered-menu/package.json +0 -3
- package/tile/package.json +0 -3
- package/timeline/package.json +0 -3
- package/toast/package.json +0 -3
- package/token-list/package.json +0 -3
- package/tooltip/package.json +0 -3
- package/utils/package.json +0 -3
- package/workspace-switch/package.json +0 -3
package/tailwind.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
@import '@angular/cdk/overlay-prebuilt.css';
|
|
2
|
+
*, ::before, ::after{
|
|
2
3
|
--tw-border-spacing-x: 0;
|
|
3
4
|
--tw-border-spacing-y: 0;
|
|
4
5
|
--tw-translate-x: 0;
|
|
@@ -51,8 +52,7 @@
|
|
|
51
52
|
--tw-contain-paint: ;
|
|
52
53
|
--tw-contain-style: ;
|
|
53
54
|
}
|
|
54
|
-
|
|
55
|
-
::backdrop {
|
|
55
|
+
::backdrop{
|
|
56
56
|
--tw-border-spacing-x: 0;
|
|
57
57
|
--tw-border-spacing-y: 0;
|
|
58
58
|
--tw-translate-x: 0;
|
|
@@ -104,13 +104,14 @@
|
|
|
104
104
|
--tw-contain-layout: ;
|
|
105
105
|
--tw-contain-paint: ;
|
|
106
106
|
--tw-contain-style: ;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
}
|
|
108
|
+
/*
|
|
109
|
+
! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
|
|
110
|
+
*/
|
|
111
|
+
/*
|
|
110
112
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
111
113
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
112
114
|
*/
|
|
113
|
-
|
|
114
115
|
*,
|
|
115
116
|
::before,
|
|
116
117
|
::after {
|
|
@@ -119,12 +120,10 @@
|
|
|
119
120
|
border-style: solid; /* 2 */
|
|
120
121
|
border-color: currentColor; /* 2 */
|
|
121
122
|
}
|
|
122
|
-
|
|
123
123
|
::before,
|
|
124
124
|
::after {
|
|
125
125
|
--tw-content: '';
|
|
126
126
|
}
|
|
127
|
-
|
|
128
127
|
/*
|
|
129
128
|
1. Use a consistent sensible line-height in all browsers.
|
|
130
129
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
@@ -134,7 +133,6 @@
|
|
|
134
133
|
6. Use the user's configured `sans` font-variation-settings by default.
|
|
135
134
|
7. Disable tap highlights on iOS
|
|
136
135
|
*/
|
|
137
|
-
|
|
138
136
|
html,
|
|
139
137
|
:host {
|
|
140
138
|
line-height: 1.5; /* 1 */
|
|
@@ -147,42 +145,34 @@ html,
|
|
|
147
145
|
font-variation-settings: normal; /* 6 */
|
|
148
146
|
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
149
147
|
}
|
|
150
|
-
|
|
151
148
|
/*
|
|
152
149
|
1. Remove the margin in all browsers.
|
|
153
150
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
154
151
|
*/
|
|
155
|
-
|
|
156
152
|
body {
|
|
157
153
|
margin: 0; /* 1 */
|
|
158
154
|
line-height: inherit; /* 2 */
|
|
159
155
|
}
|
|
160
|
-
|
|
161
156
|
/*
|
|
162
157
|
1. Add the correct height in Firefox.
|
|
163
158
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
164
159
|
3. Ensure horizontal rules are visible by default.
|
|
165
160
|
*/
|
|
166
|
-
|
|
167
161
|
hr {
|
|
168
162
|
height: 0; /* 1 */
|
|
169
163
|
color: inherit; /* 2 */
|
|
170
164
|
border-top-width: 1px; /* 3 */
|
|
171
165
|
}
|
|
172
|
-
|
|
173
166
|
/*
|
|
174
167
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
175
168
|
*/
|
|
176
|
-
|
|
177
169
|
abbr:where([title]) {
|
|
178
170
|
-webkit-text-decoration: underline dotted;
|
|
179
171
|
text-decoration: underline dotted;
|
|
180
172
|
}
|
|
181
|
-
|
|
182
173
|
/*
|
|
183
174
|
Remove the default font size and weight for headings.
|
|
184
175
|
*/
|
|
185
|
-
|
|
186
176
|
h1,
|
|
187
177
|
h2,
|
|
188
178
|
h3,
|
|
@@ -192,32 +182,26 @@ h6 {
|
|
|
192
182
|
font-size: inherit;
|
|
193
183
|
font-weight: inherit;
|
|
194
184
|
}
|
|
195
|
-
|
|
196
185
|
/*
|
|
197
186
|
Reset links to optimize for opt-in styling instead of opt-out.
|
|
198
187
|
*/
|
|
199
|
-
|
|
200
188
|
a {
|
|
201
189
|
color: inherit;
|
|
202
190
|
text-decoration: inherit;
|
|
203
191
|
}
|
|
204
|
-
|
|
205
192
|
/*
|
|
206
193
|
Add the correct font weight in Edge and Safari.
|
|
207
194
|
*/
|
|
208
|
-
|
|
209
195
|
b,
|
|
210
196
|
strong {
|
|
211
197
|
font-weight: bolder;
|
|
212
198
|
}
|
|
213
|
-
|
|
214
199
|
/*
|
|
215
200
|
1. Use the user's configured `mono` font-family by default.
|
|
216
201
|
2. Use the user's configured `mono` font-feature-settings by default.
|
|
217
202
|
3. Use the user's configured `mono` font-variation-settings by default.
|
|
218
203
|
4. Correct the odd `em` font sizing in all browsers.
|
|
219
204
|
*/
|
|
220
|
-
|
|
221
205
|
code,
|
|
222
206
|
kbd,
|
|
223
207
|
samp,
|
|
@@ -227,19 +211,15 @@ pre {
|
|
|
227
211
|
font-variation-settings: normal; /* 3 */
|
|
228
212
|
font-size: 1em; /* 4 */
|
|
229
213
|
}
|
|
230
|
-
|
|
231
214
|
/*
|
|
232
215
|
Add the correct font size in all browsers.
|
|
233
216
|
*/
|
|
234
|
-
|
|
235
217
|
small {
|
|
236
218
|
font-size: 80%;
|
|
237
219
|
}
|
|
238
|
-
|
|
239
220
|
/*
|
|
240
221
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
241
222
|
*/
|
|
242
|
-
|
|
243
223
|
sub,
|
|
244
224
|
sup {
|
|
245
225
|
font-size: 75%;
|
|
@@ -247,33 +227,27 @@ sup {
|
|
|
247
227
|
position: relative;
|
|
248
228
|
vertical-align: baseline;
|
|
249
229
|
}
|
|
250
|
-
|
|
251
230
|
sub {
|
|
252
231
|
bottom: -0.25em;
|
|
253
232
|
}
|
|
254
|
-
|
|
255
233
|
sup {
|
|
256
234
|
top: -0.5em;
|
|
257
235
|
}
|
|
258
|
-
|
|
259
236
|
/*
|
|
260
237
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
261
238
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
262
239
|
3. Remove gaps between table borders by default.
|
|
263
240
|
*/
|
|
264
|
-
|
|
265
241
|
table {
|
|
266
242
|
text-indent: 0; /* 1 */
|
|
267
243
|
border-color: inherit; /* 2 */
|
|
268
244
|
border-collapse: collapse; /* 3 */
|
|
269
245
|
}
|
|
270
|
-
|
|
271
246
|
/*
|
|
272
247
|
1. Change the font styles in all browsers.
|
|
273
248
|
2. Remove the margin in Firefox and Safari.
|
|
274
249
|
3. Remove default padding in all browsers.
|
|
275
250
|
*/
|
|
276
|
-
|
|
277
251
|
button,
|
|
278
252
|
input,
|
|
279
253
|
optgroup,
|
|
@@ -290,21 +264,17 @@ textarea {
|
|
|
290
264
|
margin: 0; /* 2 */
|
|
291
265
|
padding: 0; /* 3 */
|
|
292
266
|
}
|
|
293
|
-
|
|
294
267
|
/*
|
|
295
268
|
Remove the inheritance of text transform in Edge and Firefox.
|
|
296
269
|
*/
|
|
297
|
-
|
|
298
270
|
button,
|
|
299
271
|
select {
|
|
300
272
|
text-transform: none;
|
|
301
273
|
}
|
|
302
|
-
|
|
303
274
|
/*
|
|
304
275
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
305
276
|
2. Remove default button styles.
|
|
306
277
|
*/
|
|
307
|
-
|
|
308
278
|
button,
|
|
309
279
|
input:where([type='button']),
|
|
310
280
|
input:where([type='reset']),
|
|
@@ -313,80 +283,62 @@ input:where([type='submit']) {
|
|
|
313
283
|
background-color: transparent; /* 2 */
|
|
314
284
|
background-image: none; /* 2 */
|
|
315
285
|
}
|
|
316
|
-
|
|
317
286
|
/*
|
|
318
287
|
Use the modern Firefox focus style for all focusable elements.
|
|
319
288
|
*/
|
|
320
|
-
|
|
321
289
|
:-moz-focusring {
|
|
322
290
|
outline: auto;
|
|
323
291
|
}
|
|
324
|
-
|
|
325
292
|
/*
|
|
326
293
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
327
294
|
*/
|
|
328
|
-
|
|
329
295
|
:-moz-ui-invalid {
|
|
330
296
|
box-shadow: none;
|
|
331
297
|
}
|
|
332
|
-
|
|
333
298
|
/*
|
|
334
299
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
335
300
|
*/
|
|
336
|
-
|
|
337
301
|
progress {
|
|
338
302
|
vertical-align: baseline;
|
|
339
303
|
}
|
|
340
|
-
|
|
341
304
|
/*
|
|
342
305
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
343
306
|
*/
|
|
344
|
-
|
|
345
307
|
::-webkit-inner-spin-button,
|
|
346
308
|
::-webkit-outer-spin-button {
|
|
347
309
|
height: auto;
|
|
348
310
|
}
|
|
349
|
-
|
|
350
311
|
/*
|
|
351
312
|
1. Correct the odd appearance in Chrome and Safari.
|
|
352
313
|
2. Correct the outline style in Safari.
|
|
353
314
|
*/
|
|
354
|
-
|
|
355
315
|
[type='search'] {
|
|
356
316
|
-webkit-appearance: textfield; /* 1 */
|
|
357
317
|
outline-offset: -2px; /* 2 */
|
|
358
318
|
}
|
|
359
|
-
|
|
360
319
|
/*
|
|
361
320
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
362
321
|
*/
|
|
363
|
-
|
|
364
322
|
::-webkit-search-decoration {
|
|
365
323
|
-webkit-appearance: none;
|
|
366
324
|
}
|
|
367
|
-
|
|
368
325
|
/*
|
|
369
326
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
370
327
|
2. Change font properties to `inherit` in Safari.
|
|
371
328
|
*/
|
|
372
|
-
|
|
373
329
|
::-webkit-file-upload-button {
|
|
374
330
|
-webkit-appearance: button; /* 1 */
|
|
375
331
|
font: inherit; /* 2 */
|
|
376
332
|
}
|
|
377
|
-
|
|
378
333
|
/*
|
|
379
334
|
Add the correct display in Chrome and Safari.
|
|
380
335
|
*/
|
|
381
|
-
|
|
382
336
|
summary {
|
|
383
337
|
display: list-item;
|
|
384
338
|
}
|
|
385
|
-
|
|
386
339
|
/*
|
|
387
340
|
Removes the default spacing and border for appropriate elements.
|
|
388
341
|
*/
|
|
389
|
-
|
|
390
342
|
blockquote,
|
|
391
343
|
dl,
|
|
392
344
|
dd,
|
|
@@ -402,16 +354,13 @@ p,
|
|
|
402
354
|
pre {
|
|
403
355
|
margin: 0;
|
|
404
356
|
}
|
|
405
|
-
|
|
406
357
|
fieldset {
|
|
407
358
|
margin: 0;
|
|
408
359
|
padding: 0;
|
|
409
360
|
}
|
|
410
|
-
|
|
411
361
|
legend {
|
|
412
362
|
padding: 0;
|
|
413
363
|
}
|
|
414
|
-
|
|
415
364
|
ol,
|
|
416
365
|
ul,
|
|
417
366
|
menu {
|
|
@@ -419,60 +368,49 @@ menu {
|
|
|
419
368
|
margin: 0;
|
|
420
369
|
padding: 0;
|
|
421
370
|
}
|
|
422
|
-
|
|
423
371
|
/*
|
|
424
372
|
Reset default styling for dialogs.
|
|
425
373
|
*/
|
|
426
374
|
dialog {
|
|
427
375
|
padding: 0;
|
|
428
376
|
}
|
|
429
|
-
|
|
430
377
|
/*
|
|
431
378
|
Prevent resizing textareas horizontally by default.
|
|
432
379
|
*/
|
|
433
|
-
|
|
434
380
|
textarea {
|
|
435
381
|
resize: vertical;
|
|
436
382
|
}
|
|
437
|
-
|
|
438
383
|
/*
|
|
439
384
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
440
385
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
441
386
|
*/
|
|
442
|
-
|
|
443
387
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
444
388
|
opacity: 1; /* 1 */
|
|
445
389
|
color: #9ca3af; /* 2 */
|
|
446
390
|
}
|
|
447
|
-
|
|
448
391
|
input::placeholder,
|
|
449
392
|
textarea::placeholder {
|
|
450
393
|
opacity: 1; /* 1 */
|
|
451
394
|
color: #9ca3af; /* 2 */
|
|
452
395
|
}
|
|
453
|
-
|
|
454
396
|
/*
|
|
455
397
|
Set the default cursor for buttons.
|
|
456
398
|
*/
|
|
457
|
-
|
|
458
399
|
button,
|
|
459
400
|
[role="button"] {
|
|
460
401
|
cursor: pointer;
|
|
461
402
|
}
|
|
462
|
-
|
|
463
403
|
/*
|
|
464
404
|
Make sure disabled buttons don't get the pointer cursor.
|
|
465
405
|
*/
|
|
466
406
|
:disabled {
|
|
467
407
|
cursor: default;
|
|
468
408
|
}
|
|
469
|
-
|
|
470
409
|
/*
|
|
471
410
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
472
411
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
473
412
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
474
413
|
*/
|
|
475
|
-
|
|
476
414
|
img,
|
|
477
415
|
svg,
|
|
478
416
|
video,
|
|
@@ -484,564 +422,667 @@ object {
|
|
|
484
422
|
display: block; /* 1 */
|
|
485
423
|
vertical-align: middle; /* 2 */
|
|
486
424
|
}
|
|
487
|
-
|
|
488
425
|
/*
|
|
489
426
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
490
427
|
*/
|
|
491
|
-
|
|
492
428
|
img,
|
|
493
429
|
video {
|
|
494
430
|
max-width: 100%;
|
|
495
431
|
height: auto;
|
|
496
432
|
}
|
|
497
|
-
|
|
498
433
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
499
434
|
[hidden]:where(:not([hidden="until-found"])) {
|
|
500
435
|
display: none;
|
|
501
|
-
}
|
|
502
|
-
.\!container
|
|
436
|
+
}
|
|
437
|
+
.\!container{
|
|
503
438
|
width: 100% !important;
|
|
504
|
-
}
|
|
505
|
-
.container
|
|
439
|
+
}
|
|
440
|
+
.container{
|
|
506
441
|
width: 100%;
|
|
507
|
-
}
|
|
508
|
-
@media (min-width:
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
max-width: 640px !important;
|
|
442
|
+
}
|
|
443
|
+
@media (min-width: 0){
|
|
444
|
+
.\!container{
|
|
445
|
+
max-width: 0 !important;
|
|
512
446
|
}
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
max-width: 640px;
|
|
447
|
+
.container{
|
|
448
|
+
max-width: 0;
|
|
516
449
|
}
|
|
517
|
-
}
|
|
518
|
-
@media (min-width:
|
|
519
|
-
|
|
520
|
-
|
|
450
|
+
}
|
|
451
|
+
@media (min-width: 576px){
|
|
452
|
+
.\!container{
|
|
453
|
+
max-width: 576px !important;
|
|
454
|
+
}
|
|
455
|
+
.container{
|
|
456
|
+
max-width: 576px;
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
@media (min-width: 768px){
|
|
460
|
+
.\!container{
|
|
521
461
|
max-width: 768px !important;
|
|
522
462
|
}
|
|
523
|
-
|
|
524
|
-
.container {
|
|
463
|
+
.container{
|
|
525
464
|
max-width: 768px;
|
|
526
465
|
}
|
|
527
|
-
}
|
|
528
|
-
@media (min-width:
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
max-width: 1024px !important;
|
|
466
|
+
}
|
|
467
|
+
@media (min-width: 992px){
|
|
468
|
+
.\!container{
|
|
469
|
+
max-width: 992px !important;
|
|
532
470
|
}
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
max-width: 1024px;
|
|
471
|
+
.container{
|
|
472
|
+
max-width: 992px;
|
|
536
473
|
}
|
|
537
|
-
}
|
|
538
|
-
@media (min-width:
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
max-width: 1280px !important;
|
|
474
|
+
}
|
|
475
|
+
@media (min-width: 1200px){
|
|
476
|
+
.\!container{
|
|
477
|
+
max-width: 1200px !important;
|
|
542
478
|
}
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
max-width: 1280px;
|
|
479
|
+
.container{
|
|
480
|
+
max-width: 1200px;
|
|
546
481
|
}
|
|
547
|
-
}
|
|
548
|
-
@media (min-width:
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
max-width: 1536px !important;
|
|
482
|
+
}
|
|
483
|
+
@media (min-width: 1360px){
|
|
484
|
+
.\!container{
|
|
485
|
+
max-width: 1360px !important;
|
|
552
486
|
}
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
max-width: 1536px;
|
|
487
|
+
.container{
|
|
488
|
+
max-width: 1360px;
|
|
556
489
|
}
|
|
557
|
-
}
|
|
558
|
-
|
|
490
|
+
}
|
|
491
|
+
@media (min-width: 1600px){
|
|
492
|
+
.\!container{
|
|
493
|
+
max-width: 1600px !important;
|
|
494
|
+
}
|
|
495
|
+
.container{
|
|
496
|
+
max-width: 1600px;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
.pointer-events-none{
|
|
559
500
|
pointer-events: none;
|
|
560
|
-
}
|
|
561
|
-
.pointer-events-auto
|
|
501
|
+
}
|
|
502
|
+
.pointer-events-auto{
|
|
562
503
|
pointer-events: auto;
|
|
563
|
-
}
|
|
564
|
-
.\!visible
|
|
504
|
+
}
|
|
505
|
+
.\!visible{
|
|
565
506
|
visibility: visible !important;
|
|
566
|
-
}
|
|
567
|
-
.visible
|
|
507
|
+
}
|
|
508
|
+
.visible{
|
|
568
509
|
visibility: visible;
|
|
569
|
-
}
|
|
570
|
-
.invisible
|
|
510
|
+
}
|
|
511
|
+
.invisible{
|
|
571
512
|
visibility: hidden;
|
|
572
|
-
}
|
|
573
|
-
.collapse
|
|
513
|
+
}
|
|
514
|
+
.collapse{
|
|
574
515
|
visibility: collapse;
|
|
575
|
-
}
|
|
576
|
-
.static
|
|
516
|
+
}
|
|
517
|
+
.static{
|
|
577
518
|
position: static;
|
|
578
|
-
}
|
|
579
|
-
.fixed
|
|
519
|
+
}
|
|
520
|
+
.fixed{
|
|
580
521
|
position: fixed;
|
|
581
|
-
}
|
|
582
|
-
.absolute
|
|
522
|
+
}
|
|
523
|
+
.absolute{
|
|
583
524
|
position: absolute;
|
|
584
|
-
}
|
|
585
|
-
.relative
|
|
525
|
+
}
|
|
526
|
+
.relative{
|
|
586
527
|
position: relative;
|
|
587
|
-
}
|
|
588
|
-
.sticky
|
|
528
|
+
}
|
|
529
|
+
.sticky{
|
|
589
530
|
position: sticky;
|
|
590
|
-
}
|
|
591
|
-
.right-2\.5
|
|
531
|
+
}
|
|
532
|
+
.right-2\.5{
|
|
592
533
|
right: 0.625rem;
|
|
593
|
-
}
|
|
594
|
-
.top-2\.5
|
|
534
|
+
}
|
|
535
|
+
.top-2\.5{
|
|
595
536
|
top: 0.625rem;
|
|
596
|
-
}
|
|
597
|
-
.z-\[1000\]
|
|
537
|
+
}
|
|
538
|
+
.z-\[1000\]{
|
|
598
539
|
z-index: 1000;
|
|
599
|
-
}
|
|
600
|
-
.col-span-12
|
|
540
|
+
}
|
|
541
|
+
.col-span-12{
|
|
601
542
|
grid-column: span 12 / span 12;
|
|
602
|
-
}
|
|
603
|
-
.m-
|
|
543
|
+
}
|
|
544
|
+
.m-0{
|
|
545
|
+
margin: 0px;
|
|
546
|
+
}
|
|
547
|
+
.m-3{
|
|
604
548
|
margin: 0.75rem;
|
|
605
|
-
}
|
|
606
|
-
.mx-3
|
|
549
|
+
}
|
|
550
|
+
.mx-3{
|
|
607
551
|
margin-left: 0.75rem;
|
|
608
552
|
margin-right: 0.75rem;
|
|
609
|
-
}
|
|
610
|
-
.block
|
|
553
|
+
}
|
|
554
|
+
.block{
|
|
611
555
|
display: block;
|
|
612
|
-
}
|
|
613
|
-
.inline-block
|
|
556
|
+
}
|
|
557
|
+
.inline-block{
|
|
614
558
|
display: inline-block;
|
|
615
|
-
}
|
|
616
|
-
.inline
|
|
559
|
+
}
|
|
560
|
+
.inline{
|
|
617
561
|
display: inline;
|
|
618
|
-
}
|
|
619
|
-
.flex
|
|
562
|
+
}
|
|
563
|
+
.flex{
|
|
620
564
|
display: flex;
|
|
621
|
-
}
|
|
622
|
-
.table
|
|
565
|
+
}
|
|
566
|
+
.table{
|
|
623
567
|
display: table;
|
|
624
|
-
}
|
|
625
|
-
.grid
|
|
568
|
+
}
|
|
569
|
+
.grid{
|
|
626
570
|
display: grid;
|
|
627
|
-
}
|
|
628
|
-
.contents
|
|
571
|
+
}
|
|
572
|
+
.contents{
|
|
629
573
|
display: contents;
|
|
630
|
-
}
|
|
631
|
-
.hidden
|
|
574
|
+
}
|
|
575
|
+
.hidden{
|
|
632
576
|
display: none;
|
|
633
|
-
}
|
|
634
|
-
.h-3
|
|
577
|
+
}
|
|
578
|
+
.h-3{
|
|
635
579
|
height: 0.75rem;
|
|
636
|
-
}
|
|
637
|
-
.h-
|
|
580
|
+
}
|
|
581
|
+
.h-4{
|
|
582
|
+
height: 1rem;
|
|
583
|
+
}
|
|
584
|
+
.h-5{
|
|
638
585
|
height: 1.25rem;
|
|
639
|
-
}
|
|
640
|
-
.h-52
|
|
586
|
+
}
|
|
587
|
+
.h-52{
|
|
641
588
|
height: 13rem;
|
|
642
|
-
}
|
|
643
|
-
.h-8
|
|
589
|
+
}
|
|
590
|
+
.h-8{
|
|
644
591
|
height: 2rem;
|
|
645
|
-
}
|
|
646
|
-
.h-\[1px\]
|
|
592
|
+
}
|
|
593
|
+
.h-\[1px\]{
|
|
647
594
|
height: 1px;
|
|
648
|
-
}
|
|
649
|
-
.h-\[35px\]
|
|
595
|
+
}
|
|
596
|
+
.h-\[35px\]{
|
|
650
597
|
height: 35px;
|
|
651
|
-
}
|
|
652
|
-
.h-full
|
|
598
|
+
}
|
|
599
|
+
.h-full{
|
|
653
600
|
height: 100%;
|
|
654
|
-
}
|
|
655
|
-
.h-min
|
|
601
|
+
}
|
|
602
|
+
.h-min{
|
|
656
603
|
height: -moz-min-content;
|
|
657
604
|
height: min-content;
|
|
658
|
-
}
|
|
659
|
-
.h-screen
|
|
605
|
+
}
|
|
606
|
+
.h-screen{
|
|
660
607
|
height: 100vh;
|
|
661
|
-
}
|
|
662
|
-
.max-h-52
|
|
608
|
+
}
|
|
609
|
+
.max-h-52{
|
|
663
610
|
max-height: 13rem;
|
|
664
|
-
}
|
|
665
|
-
.max-h-
|
|
611
|
+
}
|
|
612
|
+
.max-h-96{
|
|
613
|
+
max-height: 24rem;
|
|
614
|
+
}
|
|
615
|
+
.max-h-screen{
|
|
666
616
|
max-height: 100vh;
|
|
667
|
-
}
|
|
668
|
-
.
|
|
617
|
+
}
|
|
618
|
+
.min-h-10{
|
|
619
|
+
min-height: 2.5rem;
|
|
620
|
+
}
|
|
621
|
+
.min-h-11{
|
|
622
|
+
min-height: 2.75rem;
|
|
623
|
+
}
|
|
624
|
+
.w-3{
|
|
669
625
|
width: 0.75rem;
|
|
670
|
-
}
|
|
671
|
-
.w-
|
|
626
|
+
}
|
|
627
|
+
.w-4{
|
|
628
|
+
width: 1rem;
|
|
629
|
+
}
|
|
630
|
+
.w-5{
|
|
672
631
|
width: 1.25rem;
|
|
673
|
-
}
|
|
674
|
-
.w-8
|
|
632
|
+
}
|
|
633
|
+
.w-8{
|
|
675
634
|
width: 2rem;
|
|
676
|
-
}
|
|
677
|
-
.w-full
|
|
635
|
+
}
|
|
636
|
+
.w-full{
|
|
678
637
|
width: 100%;
|
|
679
|
-
}
|
|
680
|
-
.w-screen
|
|
638
|
+
}
|
|
639
|
+
.w-screen{
|
|
681
640
|
width: 100vw;
|
|
682
|
-
}
|
|
683
|
-
.min-w-10
|
|
641
|
+
}
|
|
642
|
+
.min-w-10{
|
|
684
643
|
min-width: 2.5rem;
|
|
685
|
-
}
|
|
686
|
-
.
|
|
644
|
+
}
|
|
645
|
+
.min-w-24{
|
|
646
|
+
min-width: 6rem;
|
|
647
|
+
}
|
|
648
|
+
.max-w-28{
|
|
649
|
+
max-width: 7rem;
|
|
650
|
+
}
|
|
651
|
+
.max-w-\[1140px\]{
|
|
687
652
|
max-width: 1140px;
|
|
688
|
-
}
|
|
689
|
-
.max-w-\[300px\]
|
|
653
|
+
}
|
|
654
|
+
.max-w-\[300px\]{
|
|
690
655
|
max-width: 300px;
|
|
691
|
-
}
|
|
692
|
-
.max-w-\[500px\]
|
|
656
|
+
}
|
|
657
|
+
.max-w-\[500px\]{
|
|
693
658
|
max-width: 500px;
|
|
694
|
-
}
|
|
695
|
-
.max-w-\[800px\]
|
|
659
|
+
}
|
|
660
|
+
.max-w-\[800px\]{
|
|
696
661
|
max-width: 800px;
|
|
697
|
-
}
|
|
698
|
-
.flex-1
|
|
662
|
+
}
|
|
663
|
+
.flex-1{
|
|
699
664
|
flex: 1 1 0%;
|
|
700
|
-
}
|
|
701
|
-
.flex-shrink
|
|
665
|
+
}
|
|
666
|
+
.flex-shrink{
|
|
702
667
|
flex-shrink: 1;
|
|
703
|
-
}
|
|
704
|
-
.flex-grow
|
|
668
|
+
}
|
|
669
|
+
.flex-grow{
|
|
705
670
|
flex-grow: 1;
|
|
706
|
-
}
|
|
707
|
-
.grow
|
|
671
|
+
}
|
|
672
|
+
.grow{
|
|
708
673
|
flex-grow: 1;
|
|
709
|
-
}
|
|
710
|
-
.transform
|
|
674
|
+
}
|
|
675
|
+
.transform{
|
|
711
676
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
712
|
-
}
|
|
713
|
-
.cursor-not-allowed
|
|
677
|
+
}
|
|
678
|
+
.cursor-not-allowed{
|
|
714
679
|
cursor: not-allowed;
|
|
715
|
-
}
|
|
716
|
-
.cursor-pointer
|
|
680
|
+
}
|
|
681
|
+
.cursor-pointer{
|
|
717
682
|
cursor: pointer;
|
|
718
|
-
}
|
|
719
|
-
.select-none
|
|
683
|
+
}
|
|
684
|
+
.select-none{
|
|
720
685
|
-webkit-user-select: none;
|
|
721
686
|
-moz-user-select: none;
|
|
722
687
|
user-select: none;
|
|
723
|
-
}
|
|
724
|
-
.resize
|
|
688
|
+
}
|
|
689
|
+
.resize{
|
|
725
690
|
resize: both;
|
|
726
|
-
}
|
|
727
|
-
.
|
|
691
|
+
}
|
|
692
|
+
.appearance-none{
|
|
693
|
+
-webkit-appearance: none;
|
|
694
|
+
-moz-appearance: none;
|
|
695
|
+
appearance: none;
|
|
696
|
+
}
|
|
697
|
+
.grid-flow-col{
|
|
698
|
+
grid-auto-flow: column;
|
|
699
|
+
}
|
|
700
|
+
.grid-cols-12{
|
|
728
701
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
729
|
-
}
|
|
730
|
-
.flex-col
|
|
702
|
+
}
|
|
703
|
+
.flex-col{
|
|
731
704
|
flex-direction: column;
|
|
732
|
-
}
|
|
733
|
-
.flex-wrap
|
|
705
|
+
}
|
|
706
|
+
.flex-wrap{
|
|
734
707
|
flex-wrap: wrap;
|
|
735
|
-
}
|
|
736
|
-
.items-center
|
|
708
|
+
}
|
|
709
|
+
.items-center{
|
|
737
710
|
align-items: center;
|
|
738
|
-
}
|
|
739
|
-
.justify-
|
|
711
|
+
}
|
|
712
|
+
.justify-start{
|
|
713
|
+
justify-content: flex-start;
|
|
714
|
+
}
|
|
715
|
+
.justify-end{
|
|
740
716
|
justify-content: flex-end;
|
|
741
|
-
}
|
|
742
|
-
.justify-center
|
|
717
|
+
}
|
|
718
|
+
.justify-center{
|
|
743
719
|
justify-content: center;
|
|
744
|
-
}
|
|
745
|
-
.justify-between
|
|
720
|
+
}
|
|
721
|
+
.justify-between{
|
|
746
722
|
justify-content: space-between;
|
|
747
|
-
}
|
|
748
|
-
.gap-2
|
|
723
|
+
}
|
|
724
|
+
.gap-2{
|
|
749
725
|
gap: 0.5rem;
|
|
750
|
-
}
|
|
751
|
-
.gap-3
|
|
726
|
+
}
|
|
727
|
+
.gap-3{
|
|
752
728
|
gap: 0.75rem;
|
|
753
|
-
}
|
|
754
|
-
.divide-x > :not([hidden]) ~ :not([hidden])
|
|
729
|
+
}
|
|
730
|
+
.divide-x > :not([hidden]) ~ :not([hidden]){
|
|
755
731
|
--tw-divide-x-reverse: 0;
|
|
756
732
|
border-right-width: calc(1px * var(--tw-divide-x-reverse));
|
|
757
733
|
border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
|
|
758
|
-
}
|
|
759
|
-
.divide-grayscale-30 > :not([hidden]) ~ :not([hidden])
|
|
734
|
+
}
|
|
735
|
+
.divide-grayscale-30 > :not([hidden]) ~ :not([hidden]){
|
|
760
736
|
--tw-divide-opacity: 1;
|
|
761
737
|
border-color: rgb(193 193 204 / var(--tw-divide-opacity, 1));
|
|
762
|
-
}
|
|
763
|
-
.overflow-auto
|
|
738
|
+
}
|
|
739
|
+
.overflow-auto{
|
|
764
740
|
overflow: auto;
|
|
765
|
-
}
|
|
766
|
-
.overflow-hidden
|
|
741
|
+
}
|
|
742
|
+
.overflow-hidden{
|
|
767
743
|
overflow: hidden;
|
|
768
|
-
}
|
|
769
|
-
.text-
|
|
744
|
+
}
|
|
745
|
+
.text-ellipsis{
|
|
746
|
+
text-overflow: ellipsis;
|
|
747
|
+
}
|
|
748
|
+
.whitespace-nowrap{
|
|
749
|
+
white-space: nowrap;
|
|
750
|
+
}
|
|
751
|
+
.text-wrap{
|
|
770
752
|
text-wrap: wrap;
|
|
771
|
-
}
|
|
772
|
-
.rounded
|
|
773
|
-
border-radius: 0.25rem;
|
|
774
|
-
}
|
|
775
|
-
.rounded-\[3px\] {
|
|
753
|
+
}
|
|
754
|
+
.rounded-\[3px\]{
|
|
776
755
|
border-radius: 3px;
|
|
777
|
-
}
|
|
778
|
-
.rounded
|
|
779
|
-
border-radius:
|
|
780
|
-
}
|
|
781
|
-
.rounded-l-\[3px\]
|
|
756
|
+
}
|
|
757
|
+
.rounded-\[50\%\]{
|
|
758
|
+
border-radius: 50%;
|
|
759
|
+
}
|
|
760
|
+
.rounded-l-\[3px\]{
|
|
782
761
|
border-top-left-radius: 3px;
|
|
783
762
|
border-bottom-left-radius: 3px;
|
|
784
|
-
}
|
|
785
|
-
.rounded-r-\[3px\]
|
|
763
|
+
}
|
|
764
|
+
.rounded-r-\[3px\]{
|
|
786
765
|
border-top-right-radius: 3px;
|
|
787
766
|
border-bottom-right-radius: 3px;
|
|
788
|
-
}
|
|
789
|
-
.border
|
|
767
|
+
}
|
|
768
|
+
.border{
|
|
769
|
+
border-width: 1px;
|
|
770
|
+
}
|
|
771
|
+
.border-2{
|
|
772
|
+
border-width: 2px;
|
|
773
|
+
}
|
|
774
|
+
.border-\[1px\]{
|
|
790
775
|
border-width: 1px;
|
|
791
|
-
}
|
|
792
|
-
.border-
|
|
776
|
+
}
|
|
777
|
+
.border-b-4{
|
|
778
|
+
border-bottom-width: 4px;
|
|
779
|
+
}
|
|
780
|
+
.border-b-\[1px\]{
|
|
781
|
+
border-bottom-width: 1px;
|
|
782
|
+
}
|
|
783
|
+
.border-l{
|
|
793
784
|
border-left-width: 1px;
|
|
794
|
-
}
|
|
795
|
-
.border-r-0
|
|
785
|
+
}
|
|
786
|
+
.border-r-0{
|
|
796
787
|
border-right-width: 0px;
|
|
797
|
-
}
|
|
798
|
-
.border
|
|
788
|
+
}
|
|
789
|
+
.border-r-4{
|
|
790
|
+
border-right-width: 4px;
|
|
791
|
+
}
|
|
792
|
+
.border-\[\#c1c1cc\]{
|
|
799
793
|
--tw-border-opacity: 1;
|
|
800
794
|
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
801
|
-
}
|
|
802
|
-
.border-grayscale-20
|
|
795
|
+
}
|
|
796
|
+
.border-grayscale-20{
|
|
803
797
|
--tw-border-opacity: 1;
|
|
804
798
|
border-color: rgb(222 220 229 / var(--tw-border-opacity, 1));
|
|
805
|
-
}
|
|
806
|
-
.border-grayscale-30
|
|
799
|
+
}
|
|
800
|
+
.border-grayscale-30{
|
|
807
801
|
--tw-border-opacity: 1;
|
|
808
802
|
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
809
|
-
}
|
|
810
|
-
.border-
|
|
803
|
+
}
|
|
804
|
+
.border-grayscale-50{
|
|
805
|
+
--tw-border-opacity: 1;
|
|
806
|
+
border-color: rgb(136 139 153 / var(--tw-border-opacity, 1));
|
|
807
|
+
}
|
|
808
|
+
.border-primary{
|
|
811
809
|
--tw-border-opacity: 1;
|
|
812
810
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
813
|
-
}
|
|
814
|
-
.border-tarawera-500
|
|
811
|
+
}
|
|
812
|
+
.border-tarawera-500{
|
|
815
813
|
--tw-border-opacity: 1;
|
|
816
814
|
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
817
|
-
}
|
|
818
|
-
.
|
|
815
|
+
}
|
|
816
|
+
.border-b-grayscale-20{
|
|
817
|
+
--tw-border-opacity: 1;
|
|
818
|
+
border-bottom-color: rgb(222 220 229 / var(--tw-border-opacity, 1));
|
|
819
|
+
}
|
|
820
|
+
.bg-criticality-blue{
|
|
819
821
|
--tw-bg-opacity: 1;
|
|
820
822
|
background-color: rgb(66 139 202 / var(--tw-bg-opacity, 1));
|
|
821
|
-
}
|
|
822
|
-
.bg-grayscale-0
|
|
823
|
+
}
|
|
824
|
+
.bg-grayscale-0{
|
|
823
825
|
--tw-bg-opacity: 1;
|
|
824
826
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
825
|
-
}
|
|
826
|
-
.bg-grayscale-10
|
|
827
|
+
}
|
|
828
|
+
.bg-grayscale-10{
|
|
827
829
|
--tw-bg-opacity: 1;
|
|
828
830
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
829
|
-
}
|
|
830
|
-
.bg-grayscale-20
|
|
831
|
+
}
|
|
832
|
+
.bg-grayscale-20{
|
|
831
833
|
--tw-bg-opacity: 1;
|
|
832
834
|
background-color: rgb(222 220 229 / var(--tw-bg-opacity, 1));
|
|
833
|
-
}
|
|
834
|
-
.bg-grayscale-5
|
|
835
|
+
}
|
|
836
|
+
.bg-grayscale-5{
|
|
835
837
|
--tw-bg-opacity: 1;
|
|
836
838
|
background-color: rgb(251 250 252 / var(--tw-bg-opacity, 1));
|
|
837
|
-
}
|
|
838
|
-
.bg-primary
|
|
839
|
+
}
|
|
840
|
+
.bg-primary{
|
|
839
841
|
--tw-bg-opacity: 1;
|
|
840
842
|
background-color: rgb(66 139 202 / var(--tw-bg-opacity, 1));
|
|
841
|
-
}
|
|
842
|
-
.bg-tarawera-500
|
|
843
|
+
}
|
|
844
|
+
.bg-tarawera-500{
|
|
843
845
|
--tw-bg-opacity: 1;
|
|
844
846
|
background-color: rgb(6 57 81 / var(--tw-bg-opacity, 1));
|
|
845
|
-
}
|
|
846
|
-
.p-2
|
|
847
|
+
}
|
|
848
|
+
.p-2{
|
|
847
849
|
padding: 0.5rem;
|
|
848
|
-
}
|
|
849
|
-
.p-4
|
|
850
|
+
}
|
|
851
|
+
.p-4{
|
|
850
852
|
padding: 1rem;
|
|
851
|
-
}
|
|
852
|
-
.px-3
|
|
853
|
+
}
|
|
854
|
+
.px-3{
|
|
853
855
|
padding-left: 0.75rem;
|
|
854
856
|
padding-right: 0.75rem;
|
|
855
|
-
}
|
|
856
|
-
.px-\[8px\]
|
|
857
|
+
}
|
|
858
|
+
.px-\[8px\]{
|
|
857
859
|
padding-left: 8px;
|
|
858
860
|
padding-right: 8px;
|
|
859
|
-
}
|
|
860
|
-
.py-1
|
|
861
|
+
}
|
|
862
|
+
.py-1{
|
|
861
863
|
padding-top: 0.25rem;
|
|
862
864
|
padding-bottom: 0.25rem;
|
|
863
|
-
}
|
|
864
|
-
.py-1\.5
|
|
865
|
+
}
|
|
866
|
+
.py-1\.5{
|
|
865
867
|
padding-top: 0.375rem;
|
|
866
868
|
padding-bottom: 0.375rem;
|
|
867
|
-
}
|
|
868
|
-
.py-2
|
|
869
|
+
}
|
|
870
|
+
.py-2{
|
|
869
871
|
padding-top: 0.5rem;
|
|
870
872
|
padding-bottom: 0.5rem;
|
|
871
|
-
}
|
|
872
|
-
.py-\[7px\]
|
|
873
|
+
}
|
|
874
|
+
.py-\[7px\]{
|
|
873
875
|
padding-top: 7px;
|
|
874
876
|
padding-bottom: 7px;
|
|
875
|
-
}
|
|
876
|
-
.pb-0
|
|
877
|
+
}
|
|
878
|
+
.pb-0{
|
|
877
879
|
padding-bottom: 0px;
|
|
878
|
-
}
|
|
879
|
-
.pl-2\.5
|
|
880
|
+
}
|
|
881
|
+
.pl-2\.5{
|
|
880
882
|
padding-left: 0.625rem;
|
|
881
|
-
}
|
|
882
|
-
.pr-2
|
|
883
|
+
}
|
|
884
|
+
.pr-2{
|
|
883
885
|
padding-right: 0.5rem;
|
|
884
|
-
}
|
|
885
|
-
.pr-7
|
|
886
|
+
}
|
|
887
|
+
.pr-7{
|
|
886
888
|
padding-right: 1.75rem;
|
|
887
|
-
}
|
|
888
|
-
.pt-0
|
|
889
|
+
}
|
|
890
|
+
.pt-0{
|
|
889
891
|
padding-top: 0px;
|
|
890
|
-
}
|
|
891
|
-
.text
|
|
892
|
+
}
|
|
893
|
+
.text-left{
|
|
894
|
+
text-align: left;
|
|
895
|
+
}
|
|
896
|
+
.font-open-sans{
|
|
897
|
+
font-family: "Open Sans", sans-serif;
|
|
898
|
+
}
|
|
899
|
+
.text-\[14px\]{
|
|
892
900
|
font-size: 14px;
|
|
893
|
-
}
|
|
894
|
-
.
|
|
901
|
+
}
|
|
902
|
+
.text-sm{
|
|
903
|
+
font-size: 0.875rem;
|
|
904
|
+
line-height: 1.25rem;
|
|
905
|
+
}
|
|
906
|
+
.font-bold{
|
|
895
907
|
font-weight: 700;
|
|
896
|
-
}
|
|
897
|
-
.uppercase
|
|
908
|
+
}
|
|
909
|
+
.uppercase{
|
|
898
910
|
text-transform: uppercase;
|
|
899
|
-
}
|
|
900
|
-
.lowercase
|
|
911
|
+
}
|
|
912
|
+
.lowercase{
|
|
901
913
|
text-transform: lowercase;
|
|
902
|
-
}
|
|
903
|
-
.italic
|
|
914
|
+
}
|
|
915
|
+
.italic{
|
|
904
916
|
font-style: italic;
|
|
905
|
-
}
|
|
906
|
-
.text-\[\#212533\]
|
|
917
|
+
}
|
|
918
|
+
.text-\[\#212533\]{
|
|
907
919
|
--tw-text-opacity: 1;
|
|
908
920
|
color: rgb(33 37 51 / var(--tw-text-opacity, 1));
|
|
909
|
-
}
|
|
910
|
-
.text-\[\#F5A319\]
|
|
921
|
+
}
|
|
922
|
+
.text-\[\#F5A319\]{
|
|
911
923
|
--tw-text-opacity: 1;
|
|
912
924
|
color: rgb(245 163 25 / var(--tw-text-opacity, 1));
|
|
913
|
-
}
|
|
914
|
-
.text-criticality-blue
|
|
925
|
+
}
|
|
926
|
+
.text-criticality-blue{
|
|
915
927
|
--tw-text-opacity: 1;
|
|
916
928
|
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
917
|
-
}
|
|
918
|
-
.text-grayscale-0
|
|
929
|
+
}
|
|
930
|
+
.text-grayscale-0{
|
|
919
931
|
--tw-text-opacity: 1;
|
|
920
932
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
921
|
-
}
|
|
922
|
-
.text-grayscale-
|
|
933
|
+
}
|
|
934
|
+
.text-grayscale-100{
|
|
935
|
+
--tw-text-opacity: 1;
|
|
936
|
+
color: rgb(14 17 25 / var(--tw-text-opacity, 1));
|
|
937
|
+
}
|
|
938
|
+
.text-grayscale-30{
|
|
923
939
|
--tw-text-opacity: 1;
|
|
924
940
|
color: rgb(193 193 204 / var(--tw-text-opacity, 1));
|
|
925
|
-
}
|
|
926
|
-
.text-grayscale-60
|
|
941
|
+
}
|
|
942
|
+
.text-grayscale-60{
|
|
927
943
|
--tw-text-opacity: 1;
|
|
928
944
|
color: rgb(110 114 128 / var(--tw-text-opacity, 1));
|
|
929
|
-
}
|
|
930
|
-
.text-grayscale-90
|
|
945
|
+
}
|
|
946
|
+
.text-grayscale-90{
|
|
931
947
|
--tw-text-opacity: 1;
|
|
932
948
|
color: rgb(33 37 51 / var(--tw-text-opacity, 1));
|
|
933
|
-
}
|
|
934
|
-
.
|
|
949
|
+
}
|
|
950
|
+
.text-primary{
|
|
951
|
+
--tw-text-opacity: 1;
|
|
952
|
+
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
953
|
+
}
|
|
954
|
+
.opacity-50{
|
|
935
955
|
opacity: 0.5;
|
|
936
|
-
}
|
|
937
|
-
.shadow-md
|
|
956
|
+
}
|
|
957
|
+
.shadow-md{
|
|
938
958
|
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
939
959
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
940
960
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
941
|
-
}
|
|
942
|
-
.outline-none
|
|
961
|
+
}
|
|
962
|
+
.outline-none{
|
|
943
963
|
outline: 2px solid transparent;
|
|
944
964
|
outline-offset: 2px;
|
|
945
|
-
}
|
|
946
|
-
.outline
|
|
965
|
+
}
|
|
966
|
+
.outline{
|
|
947
967
|
outline-style: solid;
|
|
948
|
-
}
|
|
949
|
-
.outline-1
|
|
968
|
+
}
|
|
969
|
+
.outline-1{
|
|
950
970
|
outline-width: 1px;
|
|
951
|
-
}
|
|
952
|
-
.outline-primary
|
|
971
|
+
}
|
|
972
|
+
.outline-primary{
|
|
953
973
|
outline-color: #428BCA;
|
|
954
|
-
}
|
|
955
|
-
.blur
|
|
974
|
+
}
|
|
975
|
+
.blur{
|
|
956
976
|
--tw-blur: blur(8px);
|
|
957
977
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
958
|
-
}
|
|
959
|
-
.filter
|
|
978
|
+
}
|
|
979
|
+
.filter{
|
|
960
980
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
961
|
-
}
|
|
962
|
-
.transition
|
|
963
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
981
|
+
}
|
|
982
|
+
.transition{
|
|
964
983
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
965
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
966
984
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
967
985
|
transition-duration: 150ms;
|
|
968
|
-
}
|
|
969
|
-
.transition-all
|
|
986
|
+
}
|
|
987
|
+
.transition-all{
|
|
970
988
|
transition-property: all;
|
|
971
989
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
972
990
|
transition-duration: 150ms;
|
|
973
|
-
}
|
|
974
|
-
.duration-200
|
|
991
|
+
}
|
|
992
|
+
.duration-200{
|
|
975
993
|
transition-duration: 200ms;
|
|
976
|
-
}
|
|
977
|
-
.ease-in
|
|
994
|
+
}
|
|
995
|
+
.ease-in{
|
|
978
996
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
979
|
-
}
|
|
980
|
-
.ease-in-out
|
|
997
|
+
}
|
|
998
|
+
.ease-in-out{
|
|
981
999
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
982
|
-
}
|
|
983
|
-
.ease-out
|
|
1000
|
+
}
|
|
1001
|
+
.ease-out{
|
|
984
1002
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
985
|
-
}
|
|
986
|
-
.
|
|
1003
|
+
}
|
|
1004
|
+
.focus-within\:\!border-primary:focus-within{
|
|
1005
|
+
--tw-border-opacity: 1 !important;
|
|
1006
|
+
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1)) !important;
|
|
1007
|
+
}
|
|
1008
|
+
.hover\:border-\[1px\]:hover{
|
|
1009
|
+
border-width: 1px;
|
|
1010
|
+
}
|
|
1011
|
+
.hover\:border-b-4:hover{
|
|
1012
|
+
border-bottom-width: 4px;
|
|
1013
|
+
}
|
|
1014
|
+
.hover\:border-r-4:hover{
|
|
1015
|
+
border-right-width: 4px;
|
|
1016
|
+
}
|
|
1017
|
+
.hover\:border-\[\#063951\]:hover{
|
|
1018
|
+
--tw-border-opacity: 1;
|
|
1019
|
+
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
1020
|
+
}
|
|
1021
|
+
.hover\:border-grayscale-50:hover{
|
|
987
1022
|
--tw-border-opacity: 1;
|
|
988
1023
|
border-color: rgb(136 139 153 / var(--tw-border-opacity, 1));
|
|
989
|
-
}
|
|
990
|
-
.hover\:border-tarawera-500:hover
|
|
1024
|
+
}
|
|
1025
|
+
.hover\:border-tarawera-500:hover{
|
|
991
1026
|
--tw-border-opacity: 1;
|
|
992
1027
|
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
993
|
-
}
|
|
994
|
-
.hover\:bg-grayscale-10:hover
|
|
1028
|
+
}
|
|
1029
|
+
.hover\:bg-grayscale-10:hover{
|
|
995
1030
|
--tw-bg-opacity: 1;
|
|
996
1031
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
997
|
-
}
|
|
998
|
-
.hover\:bg-grayscale-20:hover
|
|
1032
|
+
}
|
|
1033
|
+
.hover\:bg-grayscale-20:hover{
|
|
999
1034
|
--tw-bg-opacity: 1;
|
|
1000
1035
|
background-color: rgb(222 220 229 / var(--tw-bg-opacity, 1));
|
|
1001
|
-
}
|
|
1002
|
-
.hover\:bg-tarawera-500:hover
|
|
1036
|
+
}
|
|
1037
|
+
.hover\:bg-tarawera-500:hover{
|
|
1003
1038
|
--tw-bg-opacity: 1;
|
|
1004
1039
|
background-color: rgb(6 57 81 / var(--tw-bg-opacity, 1));
|
|
1005
|
-
}
|
|
1006
|
-
.hover\:text-grayscale-100:hover
|
|
1040
|
+
}
|
|
1041
|
+
.hover\:text-grayscale-100:hover{
|
|
1007
1042
|
--tw-text-opacity: 1;
|
|
1008
1043
|
color: rgb(14 17 25 / var(--tw-text-opacity, 1));
|
|
1009
|
-
}
|
|
1010
|
-
.
|
|
1044
|
+
}
|
|
1045
|
+
.hover\:transition-all:hover{
|
|
1046
|
+
transition-property: all;
|
|
1047
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1048
|
+
transition-duration: 150ms;
|
|
1049
|
+
}
|
|
1050
|
+
.focus\:border-2:focus{
|
|
1011
1051
|
border-width: 2px;
|
|
1012
|
-
}
|
|
1013
|
-
.focus\:border-primary:focus
|
|
1052
|
+
}
|
|
1053
|
+
.focus\:border-primary:focus{
|
|
1014
1054
|
--tw-border-opacity: 1;
|
|
1015
1055
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
1016
|
-
}
|
|
1017
|
-
.focus\:outline:focus
|
|
1056
|
+
}
|
|
1057
|
+
.focus\:outline:focus{
|
|
1018
1058
|
outline-style: solid;
|
|
1019
|
-
}
|
|
1020
|
-
.disabled\:
|
|
1059
|
+
}
|
|
1060
|
+
.disabled\:border-grayscale-30:disabled{
|
|
1061
|
+
--tw-border-opacity: 1;
|
|
1062
|
+
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
1063
|
+
}
|
|
1064
|
+
.disabled\:text-grayscale-30:disabled{
|
|
1065
|
+
--tw-text-opacity: 1;
|
|
1066
|
+
color: rgb(193 193 204 / var(--tw-text-opacity, 1));
|
|
1067
|
+
}
|
|
1068
|
+
.disabled\:opacity-50:disabled{
|
|
1069
|
+
opacity: 0.5;
|
|
1070
|
+
}
|
|
1071
|
+
.disabled\:hover\:bg-\[transparent\]:hover:disabled{
|
|
1021
1072
|
background-color: transparent;
|
|
1022
|
-
}
|
|
1023
|
-
.disabled\:hover\:text-criticality-blue:hover:disabled
|
|
1073
|
+
}
|
|
1074
|
+
.disabled\:hover\:text-criticality-blue:hover:disabled{
|
|
1024
1075
|
--tw-text-opacity: 1;
|
|
1025
1076
|
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
1026
|
-
}
|
|
1027
|
-
.group:hover .group-hover\:bg-grayscale-10
|
|
1077
|
+
}
|
|
1078
|
+
.group:hover .group-hover\:bg-grayscale-10{
|
|
1028
1079
|
--tw-bg-opacity: 1;
|
|
1029
1080
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
1030
|
-
}
|
|
1031
|
-
.group:focus .group-focus\:border-primary
|
|
1081
|
+
}
|
|
1082
|
+
.group:focus .group-focus\:border-primary{
|
|
1032
1083
|
--tw-border-opacity: 1;
|
|
1033
1084
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
1034
|
-
}
|
|
1035
|
-
.group:disabled .group-disabled\:opacity-50
|
|
1085
|
+
}
|
|
1086
|
+
.group:disabled .group-disabled\:opacity-50{
|
|
1036
1087
|
opacity: 0.5;
|
|
1037
|
-
}
|
|
1038
|
-
@media not all and (min-width: 640px) {
|
|
1039
|
-
|
|
1040
|
-
.max-sm\:h-screen {
|
|
1041
|
-
height: 100vh;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
.max-sm\:w-screen {
|
|
1045
|
-
width: 100vw;
|
|
1046
|
-
}
|
|
1047
|
-
}
|
|
1088
|
+
}
|