@vef-framework/components 1.0.121 → 1.0.123
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/cjs/index.cjs +194 -0
- package/cjs/internal/base.css.cjs +7 -0
- package/cjs/internal/chart.cjs +21 -0
- package/cjs/internal/index.cjs +10 -0
- package/cjs/internal/modern-normalize.css.cjs +7 -0
- package/cjs/internal/utils.cjs +9 -0
- package/cjs/vef-access-denied/access-denied-icon.cjs +933 -0
- package/cjs/vef-access-denied/index.cjs +68 -0
- package/cjs/vef-access-denied/props.cjs +4 -0
- package/cjs/vef-action-buttons/index.cjs +80 -0
- package/cjs/vef-action-buttons/props.cjs +4 -0
- package/cjs/vef-approval-flow-editor/components/edge.cjs +92 -0
- package/cjs/vef-approval-flow-editor/components/label-value.cjs +41 -0
- package/cjs/vef-approval-flow-editor/components/node-content.cjs +56 -0
- package/cjs/vef-approval-flow-editor/components/node-selector.cjs +46 -0
- package/cjs/vef-approval-flow-editor/components/node-toolbar.cjs +26 -0
- package/cjs/vef-approval-flow-editor/components/nodes/approval.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/condition.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/end.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/handle.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/index.cjs +20 -0
- package/cjs/vef-approval-flow-editor/components/nodes/submit.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/selector-content.cjs +68 -0
- package/cjs/vef-approval-flow-editor/components/source-handle.cjs +45 -0
- package/cjs/vef-approval-flow-editor/components/target-handle.cjs +14 -0
- package/cjs/vef-approval-flow-editor/constants.cjs +226 -0
- package/cjs/vef-approval-flow-editor/helper.cjs +89 -0
- package/cjs/vef-approval-flow-editor/hooks/use-edges-interaction.cjs +28 -0
- package/cjs/vef-approval-flow-editor/hooks/use-element-selection.cjs +27 -0
- package/cjs/vef-approval-flow-editor/hooks/use-nodes-interaction.cjs +54 -0
- package/cjs/vef-approval-flow-editor/index.cjs +80 -0
- package/cjs/vef-approval-flow-editor/models/edge-node.cjs +24 -0
- package/cjs/vef-approval-flow-editor/models/flow-node.cjs +113 -0
- package/cjs/vef-approval-flow-editor/props.cjs +4 -0
- package/cjs/vef-approval-flow-editor/store.cjs +21 -0
- package/cjs/vef-approval-flow-editor/styles.cjs +53 -0
- package/cjs/vef-approval-flow-editor/types.cjs +19 -0
- package/cjs/vef-area-chart/index.cjs +46 -0
- package/cjs/vef-area-chart/props.cjs +4 -0
- package/cjs/vef-auto-sizer/index.cjs +11 -0
- package/cjs/vef-auto-sizer/props.cjs +4 -0
- package/cjs/vef-avatar/index.cjs +25 -0
- package/cjs/vef-avatar/props.cjs +4 -0
- package/cjs/vef-avatar-group/index.cjs +30 -0
- package/cjs/vef-avatar-group/props.cjs +4 -0
- package/cjs/vef-badge/index.cjs +52 -0
- package/cjs/vef-badge/props.cjs +4 -0
- package/cjs/vef-bar-chart/index.cjs +46 -0
- package/cjs/vef-bar-chart/props.cjs +4 -0
- package/cjs/vef-bool/hooks/use-bool-instance.cjs +37 -0
- package/cjs/vef-bool/index.cjs +65 -0
- package/cjs/vef-bool/props.cjs +4 -0
- package/cjs/vef-breadcrumb/index.cjs +53 -0
- package/cjs/vef-breadcrumb/props.cjs +4 -0
- package/cjs/vef-button/components/base-button.cjs +78 -0
- package/cjs/vef-button/index.cjs +156 -0
- package/cjs/vef-button/props.cjs +4 -0
- package/cjs/vef-card/index.cjs +30 -0
- package/cjs/vef-card/props.cjs +4 -0
- package/cjs/vef-card-meta/index.cjs +17 -0
- package/cjs/vef-card-meta/props.cjs +4 -0
- package/cjs/vef-chart-container/hooks/use-chart-container-context.cjs +17 -0
- package/cjs/vef-chart-container/index.cjs +128 -0
- package/cjs/vef-chart-container/props.cjs +4 -0
- package/cjs/vef-chart-legend-content/index.cjs +55 -0
- package/cjs/vef-chart-legend-content/props.cjs +4 -0
- package/cjs/vef-chart-tooltip-content/index.cjs +110 -0
- package/cjs/vef-chart-tooltip-content/props.cjs +4 -0
- package/cjs/vef-checkbox/hooks/use-checkbox-instance.cjs +23 -0
- package/cjs/vef-checkbox/hooks/use-data-options.cjs +43 -0
- package/cjs/vef-checkbox/index.cjs +93 -0
- package/cjs/vef-checkbox/props.cjs +4 -0
- package/cjs/vef-code-editor/hooks/use-change-handler.cjs +13 -0
- package/cjs/vef-code-editor/hooks/use-config-extensions.cjs +51 -0
- package/cjs/vef-code-editor/hooks/use-height-props.cjs +23 -0
- package/cjs/vef-code-editor/hooks/use-language-extensions.cjs +120 -0
- package/cjs/vef-code-editor/hooks/use-setup-options.cjs +40 -0
- package/cjs/vef-code-editor/index.cjs +62 -0
- package/cjs/vef-code-editor/props.cjs +4 -0
- package/cjs/vef-code-editor/styles.cjs +146 -0
- package/cjs/vef-col/index.cjs +16 -0
- package/cjs/vef-col/props.cjs +4 -0
- package/cjs/vef-color-picker/index.cjs +51 -0
- package/cjs/vef-color-picker/props.cjs +4 -0
- package/cjs/vef-compact/index.cjs +20 -0
- package/cjs/vef-compact/props.cjs +4 -0
- package/cjs/vef-config-provider/global-style.cjs +185 -0
- package/cjs/vef-config-provider/hooks/use-ui-config.cjs +129 -0
- package/cjs/vef-config-provider/index.cjs +128 -0
- package/cjs/vef-config-provider/props.cjs +4 -0
- package/cjs/vef-config-provider/store.cjs +26 -0
- package/cjs/vef-container/index.cjs +23 -0
- package/cjs/vef-container/props.cjs +4 -0
- package/cjs/vef-crud-page/components/crud-actions.cjs +37 -0
- package/cjs/vef-crud-page/components/crud-filter.cjs +59 -0
- package/cjs/vef-crud-page/components/crud-footer.cjs +125 -0
- package/cjs/vef-crud-page/components/crud-form-modal.cjs +58 -0
- package/cjs/vef-crud-page/components/crud-header.cjs +34 -0
- package/cjs/vef-crud-page/components/crud-table.cjs +81 -0
- package/cjs/vef-crud-page/hooks/use-action-buttons.cjs +40 -0
- package/cjs/vef-crud-page/hooks/use-crud-context.cjs +23 -0
- package/cjs/vef-crud-page/hooks/use-crud-schema.cjs +119 -0
- package/cjs/vef-crud-page/hooks/use-operation-buttons.cjs +63 -0
- package/cjs/vef-crud-page/index.cjs +155 -0
- package/cjs/vef-crud-page/props.cjs +4 -0
- package/cjs/vef-crud-page/store.cjs +147 -0
- package/cjs/vef-crud-page/types.cjs +4 -0
- package/cjs/vef-data-grid/index.cjs +90 -0
- package/cjs/vef-data-grid/props.cjs +4 -0
- package/cjs/vef-data-table/index.cjs +14 -0
- package/cjs/vef-data-table/props.cjs +4 -0
- package/cjs/vef-divider/index.cjs +29 -0
- package/cjs/vef-divider/props.cjs +4 -0
- package/cjs/vef-drawer/components/action-button-wrapper.cjs +54 -0
- package/cjs/vef-drawer/components/button-props.cjs +4 -0
- package/cjs/vef-drawer/components/cancel-action-button.cjs +26 -0
- package/cjs/vef-drawer/components/ok-action-button.cjs +25 -0
- package/cjs/vef-drawer/context.cjs +20 -0
- package/cjs/vef-drawer/index.cjs +165 -0
- package/cjs/vef-drawer/props.cjs +4 -0
- package/cjs/vef-dropdown/index.cjs +97 -0
- package/cjs/vef-dropdown/props.cjs +4 -0
- package/cjs/vef-dynamic-icon/index.cjs +51 -0
- package/cjs/vef-dynamic-icon/props.cjs +9 -0
- package/cjs/vef-empty/index.cjs +42 -0
- package/cjs/vef-empty/props.cjs +4 -0
- package/cjs/vef-empty-placeholder/index.cjs +25 -0
- package/cjs/vef-empty-placeholder/props.cjs +4 -0
- package/cjs/vef-error/error-icon.cjs +762 -0
- package/cjs/vef-error/index.cjs +72 -0
- package/cjs/vef-error/props.cjs +4 -0
- package/cjs/vef-filter/components/action-buttons.cjs +140 -0
- package/cjs/vef-filter/components/advanced-filter.cjs +77 -0
- package/cjs/vef-filter/components/basic-filter.cjs +55 -0
- package/cjs/vef-filter/components/fields/index.cjs +22 -0
- package/cjs/vef-filter/components/fields/input-number.cjs +95 -0
- package/cjs/vef-filter/components/fields/input.cjs +72 -0
- package/cjs/vef-filter/components/fields/props.cjs +4 -0
- package/cjs/vef-filter/components/fields/radio.cjs +114 -0
- package/cjs/vef-filter/components/fields/select.cjs +145 -0
- package/cjs/vef-filter/components/fields/tree-select.cjs +141 -0
- package/cjs/vef-filter/components/filter-field.cjs +24 -0
- package/cjs/vef-filter/components/filter-item.cjs +117 -0
- package/cjs/vef-filter/event.cjs +47 -0
- package/cjs/vef-filter/helper.cjs +18 -0
- package/cjs/vef-filter/hooks/use-action-handlers.cjs +73 -0
- package/cjs/vef-filter/hooks/use-computed-values.cjs +58 -0
- package/cjs/vef-filter/hooks/use-filter-context.cjs +23 -0
- package/cjs/vef-filter/hooks/use-filter-initialization.cjs +40 -0
- package/cjs/vef-filter/hooks/use-filter-instance.cjs +29 -0
- package/cjs/vef-filter/hooks/use-filter-items.cjs +26 -0
- package/cjs/vef-filter/hooks/use-filter-values-change.cjs +33 -0
- package/cjs/vef-filter/hooks/use-label-config.cjs +30 -0
- package/cjs/vef-filter/index.cjs +152 -0
- package/cjs/vef-filter/props.cjs +4 -0
- package/cjs/vef-filter/store.cjs +76 -0
- package/cjs/vef-filter/types.cjs +4 -0
- package/cjs/vef-flex/index.cjs +36 -0
- package/cjs/vef-flex/props.cjs +4 -0
- package/cjs/vef-float-button/index.cjs +54 -0
- package/cjs/vef-float-button/props.cjs +4 -0
- package/cjs/vef-float-button-group/index.cjs +25 -0
- package/cjs/vef-float-button-group/props.cjs +4 -0
- package/cjs/vef-form/components/fields/icon-select.cjs +70 -0
- package/cjs/vef-form/components/fields/index.cjs +28 -0
- package/cjs/vef-form/components/fields/input-number.cjs +128 -0
- package/cjs/vef-form/components/fields/input.cjs +137 -0
- package/cjs/vef-form/components/fields/password.cjs +120 -0
- package/cjs/vef-form/components/fields/props.cjs +4 -0
- package/cjs/vef-form/components/fields/radio.cjs +111 -0
- package/cjs/vef-form/components/fields/select.cjs +243 -0
- package/cjs/vef-form/components/fields/textarea.cjs +114 -0
- package/cjs/vef-form/components/fields/tree-select.cjs +239 -0
- package/cjs/vef-form/components/form-actions.cjs +63 -0
- package/cjs/vef-form/components/form-content.cjs +151 -0
- package/cjs/vef-form/components/form-field.cjs +27 -0
- package/cjs/vef-form/components/form-group.cjs +77 -0
- package/cjs/vef-form/components/form-hidden-item.cjs +41 -0
- package/cjs/vef-form/components/form-item.cjs +84 -0
- package/cjs/vef-form/components/form-row.cjs +103 -0
- package/cjs/vef-form/event.cjs +47 -0
- package/cjs/vef-form/helper.cjs +18 -0
- package/cjs/vef-form/hooks/use-action-handlers.cjs +133 -0
- package/cjs/vef-form/hooks/use-columns-layout.cjs +125 -0
- package/cjs/vef-form/hooks/use-computed-values.cjs +58 -0
- package/cjs/vef-form/hooks/use-form-context.cjs +19 -0
- package/cjs/vef-form/hooks/use-form-initialization.cjs +48 -0
- package/cjs/vef-form/hooks/use-form-instance.cjs +29 -0
- package/cjs/vef-form/hooks/use-form-values-change.cjs +33 -0
- package/cjs/vef-form/hooks/use-label-width.cjs +21 -0
- package/cjs/vef-form/index.cjs +179 -0
- package/cjs/vef-form/props.cjs +4 -0
- package/cjs/vef-form/store.cjs +70 -0
- package/cjs/vef-form/types.cjs +4 -0
- package/cjs/vef-form/validation-rules.cjs +311 -0
- package/cjs/vef-form-drawer/index.cjs +103 -0
- package/cjs/vef-form-drawer/props.cjs +4 -0
- package/cjs/vef-form-modal/index.cjs +100 -0
- package/cjs/vef-form-modal/props.cjs +4 -0
- package/cjs/vef-generic-select/index.cjs +86 -0
- package/cjs/vef-generic-select/props.cjs +4 -0
- package/cjs/vef-grid/index.cjs +94 -0
- package/cjs/vef-grid/props.cjs +7 -0
- package/cjs/vef-grid-item/index.cjs +57 -0
- package/cjs/vef-grid-item/props.cjs +4 -0
- package/cjs/vef-icon/index.cjs +55 -0
- package/cjs/vef-icon/props.cjs +4 -0
- package/cjs/vef-icon-select/index.cjs +180 -0
- package/cjs/vef-icon-select/props.cjs +4 -0
- package/cjs/vef-input/hooks/use-input-instance.cjs +18 -0
- package/cjs/vef-input/index.cjs +69 -0
- package/cjs/vef-input/props.cjs +4 -0
- package/cjs/vef-input-number/hooks/use-input-number-instance.cjs +16 -0
- package/cjs/vef-input-number/index.cjs +153 -0
- package/cjs/vef-input-number/props.cjs +4 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-change-handler.cjs +13 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-editor-options.cjs +34 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-path.cjs +33 -0
- package/cjs/vef-intellisense-code-editor/index.cjs +47 -0
- package/cjs/vef-intellisense-code-editor/loader.cjs +142 -0
- package/cjs/vef-intellisense-code-editor/props.cjs +4 -0
- package/cjs/vef-intellisense-code-editor/styles.cjs +29 -0
- package/cjs/vef-intellisense-code-editor/themes/github-light.json.cjs +7 -0
- package/cjs/vef-json-viewer/index.cjs +41 -0
- package/cjs/vef-json-viewer/props.cjs +4 -0
- package/cjs/vef-layout/common-styles.cjs +13 -0
- package/cjs/vef-layout/components/content.cjs +18 -0
- package/cjs/vef-layout/components/font-size.cjs +73 -0
- package/cjs/vef-layout/components/fullscreen.cjs +28 -0
- package/cjs/vef-layout/components/header-action-icons.cjs +43 -0
- package/cjs/vef-layout/components/header-content.cjs +24 -0
- package/cjs/vef-layout/components/header.cjs +80 -0
- package/cjs/vef-layout/components/icon-boy.cjs +74 -0
- package/cjs/vef-layout/components/icon-girl.cjs +81 -0
- package/cjs/vef-layout/components/icon-menu-fold-left.cjs +28 -0
- package/cjs/vef-layout/components/icon-menu-unfold-left.cjs +28 -0
- package/cjs/vef-layout/components/menu-groups.cjs +145 -0
- package/cjs/vef-layout/components/message.cjs +16 -0
- package/cjs/vef-layout/components/search.cjs +16 -0
- package/cjs/vef-layout/components/sider.cjs +103 -0
- package/cjs/vef-layout/components/title.cjs +86 -0
- package/cjs/vef-layout/components/user-avatar.cjs +92 -0
- package/cjs/vef-layout/hooks/use-layout-context.cjs +15 -0
- package/cjs/vef-layout/index.cjs +41 -0
- package/cjs/vef-layout/logo.svg.cjs +7 -0
- package/cjs/vef-layout/props.cjs +4 -0
- package/cjs/vef-layout/store.cjs +21 -0
- package/cjs/vef-line-chart/index.cjs +43 -0
- package/cjs/vef-line-chart/props.cjs +4 -0
- package/cjs/vef-loading-placeholder/index.cjs +49 -0
- package/cjs/vef-loading-placeholder/props.cjs +4 -0
- package/cjs/vef-login/index.cjs +190 -0
- package/cjs/vef-login/login-icon.cjs +673 -0
- package/cjs/vef-login/props.cjs +4 -0
- package/cjs/vef-menu/index.cjs +84 -0
- package/cjs/vef-menu/props.cjs +4 -0
- package/cjs/vef-modal/components/action-button-wrapper.cjs +54 -0
- package/cjs/vef-modal/components/button-props.cjs +4 -0
- package/cjs/vef-modal/components/cancel-action-button.cjs +23 -0
- package/cjs/vef-modal/components/ok-action-button.cjs +25 -0
- package/cjs/vef-modal/context.cjs +20 -0
- package/cjs/vef-modal/index.cjs +247 -0
- package/cjs/vef-modal/props.cjs +4 -0
- package/cjs/vef-not-found/index.cjs +69 -0
- package/cjs/vef-not-found/not-found-icon.cjs +849 -0
- package/cjs/vef-not-found/props.cjs +4 -0
- package/cjs/vef-page/index.cjs +140 -0
- package/cjs/vef-page/props.cjs +4 -0
- package/cjs/vef-pagination/index.cjs +62 -0
- package/cjs/vef-pagination/props.cjs +16 -0
- package/cjs/vef-paragraph/index.cjs +94 -0
- package/cjs/vef-paragraph/props.cjs +4 -0
- package/cjs/vef-password/hooks/use-password-instance.cjs +16 -0
- package/cjs/vef-password/index.cjs +72 -0
- package/cjs/vef-password/props.cjs +4 -0
- package/cjs/vef-pie-chart/index.cjs +75 -0
- package/cjs/vef-pie-chart/props.cjs +4 -0
- package/cjs/vef-popconfirm/index.cjs +61 -0
- package/cjs/vef-popconfirm/props.cjs +4 -0
- package/cjs/vef-popover/index.cjs +39 -0
- package/cjs/vef-popover/props.cjs +4 -0
- package/cjs/vef-radio/hooks/use-data-options.cjs +43 -0
- package/cjs/vef-radio/hooks/use-radio-instance.cjs +23 -0
- package/cjs/vef-radio/index.cjs +93 -0
- package/cjs/vef-radio/props.cjs +4 -0
- package/cjs/vef-rate/hooks/use-rate-instance.cjs +16 -0
- package/cjs/vef-rate/index.cjs +35 -0
- package/cjs/vef-rate/props.cjs +4 -0
- package/cjs/vef-responsive-container/index.cjs +62 -0
- package/cjs/vef-responsive-container/props.cjs +4 -0
- package/cjs/vef-responsive-item/index.cjs +29 -0
- package/cjs/vef-responsive-item/props.cjs +4 -0
- package/cjs/vef-ribbon/index.cjs +43 -0
- package/cjs/vef-ribbon/props.cjs +4 -0
- package/cjs/vef-row/index.cjs +17 -0
- package/cjs/vef-row/props.cjs +4 -0
- package/cjs/vef-scroll-area/components/scrollbar.cjs +64 -0
- package/cjs/vef-scroll-area/index.cjs +82 -0
- package/cjs/vef-scroll-area/props.cjs +4 -0
- package/cjs/vef-segment/index.cjs +41 -0
- package/cjs/vef-segment/props.cjs +4 -0
- package/cjs/vef-select/components/option.cjs +34 -0
- package/cjs/vef-select/hooks/use-data-options.cjs +50 -0
- package/cjs/vef-select/hooks/use-field-names.cjs +24 -0
- package/cjs/vef-select/hooks/use-render-label.cjs +32 -0
- package/cjs/vef-select/hooks/use-render-option.cjs +22 -0
- package/cjs/vef-select/hooks/use-select-instance.cjs +23 -0
- package/cjs/vef-select/index.cjs +105 -0
- package/cjs/vef-select/props.cjs +4 -0
- package/cjs/vef-slider/hooks/use-slider-instance.cjs +16 -0
- package/cjs/vef-slider/index.cjs +39 -0
- package/cjs/vef-slider/props.cjs +4 -0
- package/cjs/vef-sortable-list/components/overlay-item.cjs +39 -0
- package/cjs/vef-sortable-list/components/sortable-item.cjs +83 -0
- package/cjs/vef-sortable-list/hooks/use-merged-items.cjs +24 -0
- package/cjs/vef-sortable-list/index.cjs +119 -0
- package/cjs/vef-sortable-list/props.cjs +4 -0
- package/cjs/vef-space/index.cjs +30 -0
- package/cjs/vef-space/props.cjs +4 -0
- package/cjs/vef-spin/index.cjs +17 -0
- package/cjs/vef-spin/props.cjs +4 -0
- package/cjs/vef-splitter/index.cjs +25 -0
- package/cjs/vef-splitter/props.cjs +4 -0
- package/cjs/vef-splitter-panel/index.cjs +17 -0
- package/cjs/vef-splitter-panel/props.cjs +4 -0
- package/cjs/vef-status/index.cjs +42 -0
- package/cjs/vef-status/props.cjs +4 -0
- package/cjs/vef-table/components/columns/bool.cjs +96 -0
- package/cjs/vef-table/components/columns/code.cjs +15 -0
- package/cjs/vef-table/components/columns/data-dictionary.cjs +97 -0
- package/cjs/vef-table/components/columns/enum.cjs +106 -0
- package/cjs/vef-table/components/columns/file.cjs +15 -0
- package/cjs/vef-table/components/columns/icon.cjs +15 -0
- package/cjs/vef-table/components/columns/id.cjs +87 -0
- package/cjs/vef-table/components/columns/image.cjs +16 -0
- package/cjs/vef-table/components/columns/index.cjs +36 -0
- package/cjs/vef-table/components/columns/markdown.cjs +15 -0
- package/cjs/vef-table/components/columns/number.cjs +88 -0
- package/cjs/vef-table/components/columns/props.cjs +4 -0
- package/cjs/vef-table/components/columns/render.cjs +33 -0
- package/cjs/vef-table/components/columns/rich-text.cjs +15 -0
- package/cjs/vef-table/components/columns/text.cjs +93 -0
- package/cjs/vef-table/components/columns-settings.cjs +242 -0
- package/cjs/vef-table/components/operation-buttons.cjs +243 -0
- package/cjs/vef-table/components/settings-icon.cjs +24 -0
- package/cjs/vef-table/components/table-footer.cjs +121 -0
- package/cjs/vef-table/helper.cjs +18 -0
- package/cjs/vef-table/hooks/use-computed-batch-buttons.cjs +36 -0
- package/cjs/vef-table/hooks/use-computed-columns.cjs +23 -0
- package/cjs/vef-table/hooks/use-computed-values.cjs +41 -0
- package/cjs/vef-table/hooks/use-data.cjs +60 -0
- package/cjs/vef-table/hooks/use-default-column-configs.cjs +30 -0
- package/cjs/vef-table/hooks/use-display-value.cjs +39 -0
- package/cjs/vef-table/hooks/use-helper-columns.cjs +70 -0
- package/cjs/vef-table/hooks/use-operation-column-width.cjs +53 -0
- package/cjs/vef-table/hooks/use-pagination-props.cjs +47 -0
- package/cjs/vef-table/hooks/use-row-props.cjs +42 -0
- package/cjs/vef-table/hooks/use-row-selection-config.cjs +115 -0
- package/cjs/vef-table/hooks/use-selected-rows.cjs +29 -0
- package/cjs/vef-table/hooks/use-table-columns.cjs +59 -0
- package/cjs/vef-table/hooks/use-table-context.cjs +26 -0
- package/cjs/vef-table/hooks/use-table-instance.cjs +18 -0
- package/cjs/vef-table/hooks/use-table-summary.cjs +45 -0
- package/cjs/vef-table/hooks/use-table-width.cjs +16 -0
- package/cjs/vef-table/index.cjs +281 -0
- package/cjs/vef-table/props.cjs +4 -0
- package/cjs/vef-table/store.cjs +22 -0
- package/cjs/vef-table/types.cjs +4 -0
- package/cjs/vef-tabs/index.cjs +30 -0
- package/cjs/vef-tabs/props.cjs +4 -0
- package/cjs/vef-tag/index.cjs +33 -0
- package/cjs/vef-tag/props.cjs +4 -0
- package/cjs/vef-temporal-picker/helper.cjs +60 -0
- package/cjs/vef-temporal-picker/hooks/use-dayjs-value.cjs +21 -0
- package/cjs/vef-temporal-picker/hooks/use-temporal-limit.cjs +37 -0
- package/cjs/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +22 -0
- package/cjs/vef-temporal-picker/index.cjs +130 -0
- package/cjs/vef-temporal-picker/props.cjs +4 -0
- package/cjs/vef-temporal-range-picker/helper.cjs +60 -0
- package/cjs/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +26 -0
- package/cjs/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +37 -0
- package/cjs/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +22 -0
- package/cjs/vef-temporal-range-picker/index.cjs +133 -0
- package/cjs/vef-temporal-range-picker/props.cjs +7 -0
- package/cjs/vef-text/index.cjs +85 -0
- package/cjs/vef-text/props.cjs +4 -0
- package/cjs/vef-textarea/hooks/use-textarea-instance.cjs +16 -0
- package/cjs/vef-textarea/index.cjs +72 -0
- package/cjs/vef-textarea/props.cjs +4 -0
- package/cjs/vef-title/index.cjs +101 -0
- package/cjs/vef-title/props.cjs +4 -0
- package/cjs/vef-tooltip/index.cjs +40 -0
- package/cjs/vef-tooltip/props.cjs +4 -0
- package/cjs/vef-tree-select/hooks/use-change-handler.cjs +36 -0
- package/cjs/vef-tree-select/hooks/use-data-options.cjs +48 -0
- package/cjs/vef-tree-select/hooks/use-tree-select-instance.cjs +23 -0
- package/cjs/vef-tree-select/index.cjs +94 -0
- package/cjs/vef-tree-select/props.cjs +4 -0
- package/cjs/vef-virtual-grid/index.cjs +121 -0
- package/cjs/vef-virtual-grid/props.cjs +4 -0
- package/cjs/vef-virtual-list/index.cjs +234 -0
- package/cjs/vef-virtual-list/props.cjs +4 -0
- package/esm/index.js +97 -0
- package/esm/internal/base.css.js +3 -0
- package/esm/internal/chart.js +19 -0
- package/esm/internal/index.js +5 -0
- package/esm/internal/modern-normalize.css.js +3 -0
- package/esm/internal/utils.js +7 -0
- package/esm/vef-access-denied/access-denied-icon.js +929 -0
- package/esm/vef-access-denied/index.js +64 -0
- package/esm/vef-access-denied/props.js +2 -0
- package/esm/vef-action-buttons/index.js +76 -0
- package/esm/vef-action-buttons/props.js +2 -0
- package/esm/vef-approval-flow-editor/components/edge.js +88 -0
- package/esm/vef-approval-flow-editor/components/label-value.js +37 -0
- package/esm/vef-approval-flow-editor/components/node-content.js +52 -0
- package/esm/vef-approval-flow-editor/components/node-selector.js +42 -0
- package/esm/vef-approval-flow-editor/components/node-toolbar.js +22 -0
- package/esm/vef-approval-flow-editor/components/nodes/approval.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/condition.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/end.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/handle.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/index.js +18 -0
- package/esm/vef-approval-flow-editor/components/nodes/submit.js +25 -0
- package/esm/vef-approval-flow-editor/components/selector-content.js +64 -0
- package/esm/vef-approval-flow-editor/components/source-handle.js +41 -0
- package/esm/vef-approval-flow-editor/components/target-handle.js +10 -0
- package/esm/vef-approval-flow-editor/constants.js +219 -0
- package/esm/vef-approval-flow-editor/helper.js +84 -0
- package/esm/vef-approval-flow-editor/hooks/use-edges-interaction.js +26 -0
- package/esm/vef-approval-flow-editor/hooks/use-element-selection.js +25 -0
- package/esm/vef-approval-flow-editor/hooks/use-nodes-interaction.js +52 -0
- package/esm/vef-approval-flow-editor/index.js +76 -0
- package/esm/vef-approval-flow-editor/models/edge-node.js +21 -0
- package/esm/vef-approval-flow-editor/models/flow-node.js +106 -0
- package/esm/vef-approval-flow-editor/props.js +2 -0
- package/esm/vef-approval-flow-editor/store.js +17 -0
- package/esm/vef-approval-flow-editor/styles.js +50 -0
- package/esm/vef-approval-flow-editor/types.js +16 -0
- package/esm/vef-area-chart/index.js +42 -0
- package/esm/vef-area-chart/props.js +2 -0
- package/esm/vef-auto-sizer/index.js +7 -0
- package/esm/vef-auto-sizer/props.js +2 -0
- package/esm/vef-avatar/index.js +21 -0
- package/esm/vef-avatar/props.js +2 -0
- package/esm/vef-avatar-group/index.js +26 -0
- package/esm/vef-avatar-group/props.js +2 -0
- package/esm/vef-badge/index.js +48 -0
- package/esm/vef-badge/props.js +2 -0
- package/esm/vef-bar-chart/index.js +42 -0
- package/esm/vef-bar-chart/props.js +2 -0
- package/esm/vef-bool/hooks/use-bool-instance.js +35 -0
- package/esm/vef-bool/index.js +61 -0
- package/esm/vef-bool/props.js +2 -0
- package/esm/vef-breadcrumb/index.js +49 -0
- package/esm/vef-breadcrumb/props.js +2 -0
- package/esm/vef-button/components/base-button.js +74 -0
- package/esm/vef-button/index.js +152 -0
- package/esm/vef-button/props.js +2 -0
- package/esm/vef-card/index.js +26 -0
- package/esm/vef-card/props.js +2 -0
- package/esm/vef-card-meta/index.js +13 -0
- package/esm/vef-card-meta/props.js +2 -0
- package/esm/vef-chart-container/hooks/use-chart-container-context.js +13 -0
- package/esm/vef-chart-container/index.js +124 -0
- package/esm/vef-chart-container/props.js +2 -0
- package/esm/vef-chart-legend-content/index.js +50 -0
- package/esm/vef-chart-legend-content/props.js +2 -0
- package/esm/vef-chart-tooltip-content/index.js +106 -0
- package/esm/vef-chart-tooltip-content/props.js +2 -0
- package/esm/vef-checkbox/hooks/use-checkbox-instance.js +21 -0
- package/esm/vef-checkbox/hooks/use-data-options.js +41 -0
- package/esm/vef-checkbox/index.js +89 -0
- package/esm/vef-checkbox/props.js +2 -0
- package/esm/vef-code-editor/hooks/use-change-handler.js +11 -0
- package/esm/vef-code-editor/hooks/use-config-extensions.js +49 -0
- package/esm/vef-code-editor/hooks/use-height-props.js +21 -0
- package/esm/vef-code-editor/hooks/use-language-extensions.js +118 -0
- package/esm/vef-code-editor/hooks/use-setup-options.js +38 -0
- package/esm/vef-code-editor/index.js +58 -0
- package/esm/vef-code-editor/props.js +2 -0
- package/esm/vef-code-editor/styles.js +144 -0
- package/esm/vef-col/index.js +12 -0
- package/esm/vef-col/props.js +2 -0
- package/esm/vef-color-picker/index.js +47 -0
- package/esm/vef-color-picker/props.js +2 -0
- package/esm/vef-compact/index.js +16 -0
- package/esm/vef-compact/props.js +2 -0
- package/esm/vef-config-provider/global-style.js +182 -0
- package/esm/vef-config-provider/hooks/use-ui-config.js +127 -0
- package/esm/vef-config-provider/index.js +124 -0
- package/esm/vef-config-provider/props.js +2 -0
- package/esm/vef-config-provider/store.js +22 -0
- package/esm/vef-container/index.js +19 -0
- package/esm/vef-container/props.js +2 -0
- package/esm/vef-crud-page/components/crud-actions.js +33 -0
- package/esm/vef-crud-page/components/crud-filter.js +55 -0
- package/esm/vef-crud-page/components/crud-footer.js +121 -0
- package/esm/vef-crud-page/components/crud-form-modal.js +54 -0
- package/esm/vef-crud-page/components/crud-header.js +30 -0
- package/esm/vef-crud-page/components/crud-table.js +77 -0
- package/esm/vef-crud-page/hooks/use-action-buttons.js +38 -0
- package/esm/vef-crud-page/hooks/use-crud-context.js +21 -0
- package/esm/vef-crud-page/hooks/use-crud-schema.js +117 -0
- package/esm/vef-crud-page/hooks/use-operation-buttons.js +61 -0
- package/esm/vef-crud-page/index.js +151 -0
- package/esm/vef-crud-page/props.js +2 -0
- package/esm/vef-crud-page/store.js +143 -0
- package/esm/vef-crud-page/types.js +2 -0
- package/esm/vef-data-grid/index.js +86 -0
- package/esm/vef-data-grid/props.js +2 -0
- package/esm/vef-data-table/index.js +10 -0
- package/esm/vef-data-table/props.js +2 -0
- package/esm/vef-divider/index.js +25 -0
- package/esm/vef-divider/props.js +2 -0
- package/esm/vef-drawer/components/action-button-wrapper.js +50 -0
- package/esm/vef-drawer/components/button-props.js +2 -0
- package/esm/vef-drawer/components/cancel-action-button.js +22 -0
- package/esm/vef-drawer/components/ok-action-button.js +21 -0
- package/esm/vef-drawer/context.js +16 -0
- package/esm/vef-drawer/index.js +160 -0
- package/esm/vef-drawer/props.js +2 -0
- package/esm/vef-dropdown/index.js +93 -0
- package/esm/vef-dropdown/props.js +2 -0
- package/esm/vef-dynamic-icon/index.js +47 -0
- package/esm/vef-dynamic-icon/props.js +7 -0
- package/esm/vef-empty/index.js +38 -0
- package/esm/vef-empty/props.js +2 -0
- package/esm/vef-empty-placeholder/index.js +21 -0
- package/esm/vef-empty-placeholder/props.js +2 -0
- package/esm/vef-error/error-icon.js +758 -0
- package/esm/vef-error/index.js +68 -0
- package/esm/vef-error/props.js +2 -0
- package/esm/vef-filter/components/action-buttons.js +136 -0
- package/esm/vef-filter/components/advanced-filter.js +73 -0
- package/esm/vef-filter/components/basic-filter.js +51 -0
- package/esm/vef-filter/components/fields/index.js +20 -0
- package/esm/vef-filter/components/fields/input-number.js +91 -0
- package/esm/vef-filter/components/fields/input.js +68 -0
- package/esm/vef-filter/components/fields/props.js +2 -0
- package/esm/vef-filter/components/fields/radio.js +110 -0
- package/esm/vef-filter/components/fields/select.js +141 -0
- package/esm/vef-filter/components/fields/tree-select.js +137 -0
- package/esm/vef-filter/components/filter-field.js +20 -0
- package/esm/vef-filter/components/filter-item.js +113 -0
- package/esm/vef-filter/event.js +45 -0
- package/esm/vef-filter/helper.js +16 -0
- package/esm/vef-filter/hooks/use-action-handlers.js +71 -0
- package/esm/vef-filter/hooks/use-computed-values.js +56 -0
- package/esm/vef-filter/hooks/use-filter-context.js +19 -0
- package/esm/vef-filter/hooks/use-filter-initialization.js +38 -0
- package/esm/vef-filter/hooks/use-filter-instance.js +27 -0
- package/esm/vef-filter/hooks/use-filter-items.js +24 -0
- package/esm/vef-filter/hooks/use-filter-values-change.js +31 -0
- package/esm/vef-filter/hooks/use-label-config.js +28 -0
- package/esm/vef-filter/index.js +148 -0
- package/esm/vef-filter/props.js +2 -0
- package/esm/vef-filter/store.js +72 -0
- package/esm/vef-filter/types.js +2 -0
- package/esm/vef-flex/index.js +32 -0
- package/esm/vef-flex/props.js +2 -0
- package/esm/vef-float-button/index.js +50 -0
- package/esm/vef-float-button/props.js +2 -0
- package/esm/vef-float-button-group/index.js +21 -0
- package/esm/vef-float-button-group/props.js +2 -0
- package/esm/vef-form/components/fields/icon-select.js +66 -0
- package/esm/vef-form/components/fields/index.js +26 -0
- package/esm/vef-form/components/fields/input-number.js +124 -0
- package/esm/vef-form/components/fields/input.js +133 -0
- package/esm/vef-form/components/fields/password.js +116 -0
- package/esm/vef-form/components/fields/props.js +2 -0
- package/esm/vef-form/components/fields/radio.js +107 -0
- package/esm/vef-form/components/fields/select.js +239 -0
- package/esm/vef-form/components/fields/textarea.js +110 -0
- package/esm/vef-form/components/fields/tree-select.js +235 -0
- package/esm/vef-form/components/form-actions.js +59 -0
- package/esm/vef-form/components/form-content.js +147 -0
- package/esm/vef-form/components/form-field.js +23 -0
- package/esm/vef-form/components/form-group.js +73 -0
- package/esm/vef-form/components/form-hidden-item.js +37 -0
- package/esm/vef-form/components/form-item.js +80 -0
- package/esm/vef-form/components/form-row.js +99 -0
- package/esm/vef-form/event.js +45 -0
- package/esm/vef-form/helper.js +16 -0
- package/esm/vef-form/hooks/use-action-handlers.js +131 -0
- package/esm/vef-form/hooks/use-columns-layout.js +123 -0
- package/esm/vef-form/hooks/use-computed-values.js +56 -0
- package/esm/vef-form/hooks/use-form-context.js +15 -0
- package/esm/vef-form/hooks/use-form-initialization.js +46 -0
- package/esm/vef-form/hooks/use-form-instance.js +27 -0
- package/esm/vef-form/hooks/use-form-values-change.js +31 -0
- package/esm/vef-form/hooks/use-label-width.js +19 -0
- package/esm/vef-form/index.js +175 -0
- package/esm/vef-form/props.js +2 -0
- package/esm/vef-form/store.js +66 -0
- package/esm/vef-form/types.js +2 -0
- package/esm/vef-form/validation-rules.js +287 -0
- package/esm/vef-form-drawer/index.js +99 -0
- package/esm/vef-form-drawer/props.js +2 -0
- package/esm/vef-form-modal/index.js +96 -0
- package/esm/vef-form-modal/props.js +2 -0
- package/esm/vef-generic-select/index.js +82 -0
- package/esm/vef-generic-select/props.js +2 -0
- package/esm/vef-grid/index.js +90 -0
- package/esm/vef-grid/props.js +5 -0
- package/esm/vef-grid-item/index.js +53 -0
- package/esm/vef-grid-item/props.js +2 -0
- package/esm/vef-icon/index.js +51 -0
- package/esm/vef-icon/props.js +2 -0
- package/esm/vef-icon-select/index.js +176 -0
- package/esm/vef-icon-select/props.js +2 -0
- package/esm/vef-input/hooks/use-input-instance.js +16 -0
- package/esm/vef-input/index.js +65 -0
- package/esm/vef-input/props.js +2 -0
- package/esm/vef-input-number/hooks/use-input-number-instance.js +14 -0
- package/esm/vef-input-number/index.js +149 -0
- package/esm/vef-input-number/props.js +2 -0
- package/esm/vef-intellisense-code-editor/hooks/use-change-handler.js +11 -0
- package/esm/vef-intellisense-code-editor/hooks/use-editor-options.js +32 -0
- package/esm/vef-intellisense-code-editor/hooks/use-path.js +31 -0
- package/esm/vef-intellisense-code-editor/index.js +43 -0
- package/esm/vef-intellisense-code-editor/loader.js +121 -0
- package/esm/vef-intellisense-code-editor/props.js +2 -0
- package/esm/vef-intellisense-code-editor/styles.js +27 -0
- package/esm/vef-intellisense-code-editor/themes/github-light.json.js +3 -0
- package/esm/vef-json-viewer/index.js +37 -0
- package/esm/vef-json-viewer/props.js +2 -0
- package/esm/vef-layout/common-styles.js +11 -0
- package/esm/vef-layout/components/content.js +14 -0
- package/esm/vef-layout/components/font-size.js +69 -0
- package/esm/vef-layout/components/fullscreen.js +24 -0
- package/esm/vef-layout/components/header-action-icons.js +39 -0
- package/esm/vef-layout/components/header-content.js +20 -0
- package/esm/vef-layout/components/header.js +76 -0
- package/esm/vef-layout/components/icon-boy.js +70 -0
- package/esm/vef-layout/components/icon-girl.js +77 -0
- package/esm/vef-layout/components/icon-menu-fold-left.js +24 -0
- package/esm/vef-layout/components/icon-menu-unfold-left.js +24 -0
- package/esm/vef-layout/components/menu-groups.js +141 -0
- package/esm/vef-layout/components/message.js +12 -0
- package/esm/vef-layout/components/search.js +12 -0
- package/esm/vef-layout/components/sider.js +99 -0
- package/esm/vef-layout/components/title.js +82 -0
- package/esm/vef-layout/components/user-avatar.js +88 -0
- package/esm/vef-layout/hooks/use-layout-context.js +11 -0
- package/esm/vef-layout/index.js +37 -0
- package/esm/vef-layout/logo.svg.js +3 -0
- package/esm/vef-layout/props.js +2 -0
- package/esm/vef-layout/store.js +17 -0
- package/esm/vef-line-chart/index.js +39 -0
- package/esm/vef-line-chart/props.js +2 -0
- package/esm/vef-loading-placeholder/index.js +45 -0
- package/esm/vef-loading-placeholder/props.js +2 -0
- package/esm/vef-login/index.js +186 -0
- package/esm/vef-login/login-icon.js +669 -0
- package/esm/vef-login/props.js +2 -0
- package/esm/vef-menu/index.js +80 -0
- package/esm/vef-menu/props.js +2 -0
- package/esm/vef-modal/components/action-button-wrapper.js +50 -0
- package/esm/vef-modal/components/button-props.js +2 -0
- package/esm/vef-modal/components/cancel-action-button.js +19 -0
- package/esm/vef-modal/components/ok-action-button.js +21 -0
- package/esm/vef-modal/context.js +16 -0
- package/esm/vef-modal/index.js +242 -0
- package/esm/vef-modal/props.js +2 -0
- package/esm/vef-not-found/index.js +65 -0
- package/esm/vef-not-found/not-found-icon.js +845 -0
- package/esm/vef-not-found/props.js +2 -0
- package/esm/vef-page/index.js +136 -0
- package/esm/vef-page/props.js +2 -0
- package/esm/vef-pagination/index.js +58 -0
- package/esm/vef-pagination/props.js +14 -0
- package/esm/vef-paragraph/index.js +90 -0
- package/esm/vef-paragraph/props.js +2 -0
- package/esm/vef-password/hooks/use-password-instance.js +14 -0
- package/esm/vef-password/index.js +68 -0
- package/esm/vef-password/props.js +2 -0
- package/esm/vef-pie-chart/index.js +71 -0
- package/esm/vef-pie-chart/props.js +2 -0
- package/esm/vef-popconfirm/index.js +57 -0
- package/esm/vef-popconfirm/props.js +2 -0
- package/esm/vef-popover/index.js +35 -0
- package/esm/vef-popover/props.js +2 -0
- package/esm/vef-radio/hooks/use-data-options.js +41 -0
- package/esm/vef-radio/hooks/use-radio-instance.js +21 -0
- package/esm/vef-radio/index.js +89 -0
- package/esm/vef-radio/props.js +2 -0
- package/esm/vef-rate/hooks/use-rate-instance.js +14 -0
- package/esm/vef-rate/index.js +31 -0
- package/esm/vef-rate/props.js +2 -0
- package/esm/vef-responsive-container/index.js +58 -0
- package/esm/vef-responsive-container/props.js +2 -0
- package/esm/vef-responsive-item/index.js +25 -0
- package/esm/vef-responsive-item/props.js +2 -0
- package/esm/vef-ribbon/index.js +39 -0
- package/esm/vef-ribbon/props.js +2 -0
- package/esm/vef-row/index.js +13 -0
- package/esm/vef-row/props.js +2 -0
- package/esm/vef-scroll-area/components/scrollbar.js +60 -0
- package/esm/vef-scroll-area/index.js +78 -0
- package/esm/vef-scroll-area/props.js +2 -0
- package/esm/vef-segment/index.js +37 -0
- package/esm/vef-segment/props.js +2 -0
- package/esm/vef-select/components/option.js +30 -0
- package/esm/vef-select/hooks/use-data-options.js +48 -0
- package/esm/vef-select/hooks/use-field-names.js +22 -0
- package/esm/vef-select/hooks/use-render-label.js +30 -0
- package/esm/vef-select/hooks/use-render-option.js +20 -0
- package/esm/vef-select/hooks/use-select-instance.js +21 -0
- package/esm/vef-select/index.js +101 -0
- package/esm/vef-select/props.js +2 -0
- package/esm/vef-slider/hooks/use-slider-instance.js +14 -0
- package/esm/vef-slider/index.js +35 -0
- package/esm/vef-slider/props.js +2 -0
- package/esm/vef-sortable-list/components/overlay-item.js +35 -0
- package/esm/vef-sortable-list/components/sortable-item.js +79 -0
- package/esm/vef-sortable-list/hooks/use-merged-items.js +22 -0
- package/esm/vef-sortable-list/index.js +115 -0
- package/esm/vef-sortable-list/props.js +2 -0
- package/esm/vef-space/index.js +26 -0
- package/esm/vef-space/props.js +2 -0
- package/esm/vef-spin/index.js +13 -0
- package/esm/vef-spin/props.js +2 -0
- package/esm/vef-splitter/index.js +21 -0
- package/esm/vef-splitter/props.js +2 -0
- package/esm/vef-splitter-panel/index.js +13 -0
- package/esm/vef-splitter-panel/props.js +2 -0
- package/esm/vef-status/index.js +38 -0
- package/esm/vef-status/props.js +2 -0
- package/esm/vef-table/components/columns/bool.js +92 -0
- package/esm/vef-table/components/columns/code.js +11 -0
- package/esm/vef-table/components/columns/data-dictionary.js +93 -0
- package/esm/vef-table/components/columns/enum.js +102 -0
- package/esm/vef-table/components/columns/file.js +11 -0
- package/esm/vef-table/components/columns/icon.js +11 -0
- package/esm/vef-table/components/columns/id.js +83 -0
- package/esm/vef-table/components/columns/image.js +12 -0
- package/esm/vef-table/components/columns/index.js +34 -0
- package/esm/vef-table/components/columns/markdown.js +11 -0
- package/esm/vef-table/components/columns/number.js +84 -0
- package/esm/vef-table/components/columns/props.js +2 -0
- package/esm/vef-table/components/columns/render.js +29 -0
- package/esm/vef-table/components/columns/rich-text.js +11 -0
- package/esm/vef-table/components/columns/text.js +89 -0
- package/esm/vef-table/components/columns-settings.js +238 -0
- package/esm/vef-table/components/operation-buttons.js +239 -0
- package/esm/vef-table/components/settings-icon.js +20 -0
- package/esm/vef-table/components/table-footer.js +117 -0
- package/esm/vef-table/helper.js +16 -0
- package/esm/vef-table/hooks/use-computed-batch-buttons.js +34 -0
- package/esm/vef-table/hooks/use-computed-columns.js +21 -0
- package/esm/vef-table/hooks/use-computed-values.js +39 -0
- package/esm/vef-table/hooks/use-data.js +58 -0
- package/esm/vef-table/hooks/use-default-column-configs.js +28 -0
- package/esm/vef-table/hooks/use-display-value.js +37 -0
- package/esm/vef-table/hooks/use-helper-columns.js +68 -0
- package/esm/vef-table/hooks/use-operation-column-width.js +51 -0
- package/esm/vef-table/hooks/use-pagination-props.js +45 -0
- package/esm/vef-table/hooks/use-row-props.js +40 -0
- package/esm/vef-table/hooks/use-row-selection-config.js +113 -0
- package/esm/vef-table/hooks/use-selected-rows.js +27 -0
- package/esm/vef-table/hooks/use-table-columns.js +57 -0
- package/esm/vef-table/hooks/use-table-context.js +22 -0
- package/esm/vef-table/hooks/use-table-instance.js +16 -0
- package/esm/vef-table/hooks/use-table-summary.js +43 -0
- package/esm/vef-table/hooks/use-table-width.js +14 -0
- package/esm/vef-table/index.js +277 -0
- package/esm/vef-table/props.js +2 -0
- package/esm/vef-table/store.js +18 -0
- package/esm/vef-table/types.js +2 -0
- package/esm/vef-tabs/index.js +26 -0
- package/esm/vef-tabs/props.js +2 -0
- package/esm/vef-tag/index.js +29 -0
- package/esm/vef-tag/props.js +2 -0
- package/esm/vef-temporal-picker/helper.js +58 -0
- package/esm/vef-temporal-picker/hooks/use-dayjs-value.js +19 -0
- package/esm/vef-temporal-picker/hooks/use-temporal-limit.js +35 -0
- package/esm/vef-temporal-picker/hooks/use-temporal-picker-instance.js +20 -0
- package/esm/vef-temporal-picker/index.js +126 -0
- package/esm/vef-temporal-picker/props.js +2 -0
- package/esm/vef-temporal-range-picker/helper.js +58 -0
- package/esm/vef-temporal-range-picker/hooks/use-dayjs-values.js +24 -0
- package/esm/vef-temporal-range-picker/hooks/use-temporal-limit.js +35 -0
- package/esm/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +20 -0
- package/esm/vef-temporal-range-picker/index.js +129 -0
- package/esm/vef-temporal-range-picker/props.js +5 -0
- package/esm/vef-text/index.js +81 -0
- package/esm/vef-text/props.js +2 -0
- package/esm/vef-textarea/hooks/use-textarea-instance.js +14 -0
- package/esm/vef-textarea/index.js +68 -0
- package/esm/vef-textarea/props.js +2 -0
- package/esm/vef-title/index.js +97 -0
- package/esm/vef-title/props.js +2 -0
- package/esm/vef-tooltip/index.js +36 -0
- package/esm/vef-tooltip/props.js +2 -0
- package/esm/vef-tree-select/hooks/use-change-handler.js +34 -0
- package/esm/vef-tree-select/hooks/use-data-options.js +46 -0
- package/esm/vef-tree-select/hooks/use-tree-select-instance.js +21 -0
- package/esm/vef-tree-select/index.js +90 -0
- package/esm/vef-tree-select/props.js +2 -0
- package/esm/vef-virtual-grid/index.js +117 -0
- package/esm/vef-virtual-grid/props.js +2 -0
- package/esm/vef-virtual-list/index.js +230 -0
- package/esm/vef-virtual-list/props.js +2 -0
- package/package.json +14 -13
- package/types/vef-dynamic-icon/props.d.ts +1 -1
- package/es/index.js +0 -1
- package/es/internal/base.css.js +0 -491
- package/es/internal/chart.js +0 -1
- package/es/internal/index.js +0 -1
- package/es/internal/modern-normalize.css.js +0 -214
- package/es/internal/utils.js +0 -1
- package/es/vef-access-denied/access-denied-icon.js +0 -1
- package/es/vef-access-denied/index.js +0 -27
- package/es/vef-action-buttons/index.js +0 -1
- package/es/vef-approval-flow-editor/components/edge.js +0 -6
- package/es/vef-approval-flow-editor/components/label-value.js +0 -17
- package/es/vef-approval-flow-editor/components/node-content.js +0 -16
- package/es/vef-approval-flow-editor/components/node-selector.js +0 -12
- package/es/vef-approval-flow-editor/components/node-toolbar.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/approval.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/condition.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/end.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/handle.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/index.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/submit.js +0 -1
- package/es/vef-approval-flow-editor/components/selector-content.js +0 -24
- package/es/vef-approval-flow-editor/components/source-handle.js +0 -1
- package/es/vef-approval-flow-editor/components/target-handle.js +0 -1
- package/es/vef-approval-flow-editor/constants.js +0 -1
- package/es/vef-approval-flow-editor/helper.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-edges-interaction.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-element-selection.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-nodes-interaction.js +0 -1
- package/es/vef-approval-flow-editor/index.js +0 -1
- package/es/vef-approval-flow-editor/models/edge-node.js +0 -1
- package/es/vef-approval-flow-editor/models/flow-node.js +0 -1
- package/es/vef-approval-flow-editor/store.js +0 -1
- package/es/vef-approval-flow-editor/styles.js +0 -41
- package/es/vef-approval-flow-editor/types.js +0 -1
- package/es/vef-area-chart/index.js +0 -1
- package/es/vef-auto-sizer/index.js +0 -1
- package/es/vef-avatar/index.js +0 -1
- package/es/vef-avatar-group/index.js +0 -1
- package/es/vef-badge/index.js +0 -1
- package/es/vef-bar-chart/index.js +0 -1
- package/es/vef-bool/hooks/use-bool-instance.js +0 -1
- package/es/vef-bool/index.js +0 -1
- package/es/vef-breadcrumb/index.js +0 -1
- package/es/vef-button/components/base-button.js +0 -1
- package/es/vef-button/index.js +0 -1
- package/es/vef-card/index.js +0 -1
- package/es/vef-card-meta/index.js +0 -1
- package/es/vef-chart-container/hooks/use-chart-container-context.js +0 -1
- package/es/vef-chart-container/index.js +0 -57
- package/es/vef-chart-legend-content/index.js +0 -16
- package/es/vef-chart-tooltip-content/index.js +0 -42
- package/es/vef-checkbox/hooks/use-checkbox-instance.js +0 -1
- package/es/vef-checkbox/hooks/use-data-options.js +0 -1
- package/es/vef-checkbox/index.js +0 -3
- package/es/vef-code-editor/hooks/use-change-handler.js +0 -1
- package/es/vef-code-editor/hooks/use-config-extensions.js +0 -1
- package/es/vef-code-editor/hooks/use-height-props.js +0 -1
- package/es/vef-code-editor/hooks/use-language-extensions.js +0 -1
- package/es/vef-code-editor/hooks/use-setup-options.js +0 -1
- package/es/vef-code-editor/index.js +0 -1
- package/es/vef-code-editor/styles.js +0 -137
- package/es/vef-col/index.js +0 -1
- package/es/vef-color-picker/index.js +0 -1
- package/es/vef-compact/index.js +0 -1
- package/es/vef-config-provider/global-style.js +0 -173
- package/es/vef-config-provider/hooks/use-ui-config.js +0 -1
- package/es/vef-config-provider/index.js +0 -5
- package/es/vef-config-provider/store.js +0 -1
- package/es/vef-container/index.js +0 -1
- package/es/vef-crud-page/components/crud-actions.js +0 -1
- package/es/vef-crud-page/components/crud-filter.js +0 -1
- package/es/vef-crud-page/components/crud-footer.js +0 -7
- package/es/vef-crud-page/components/crud-form-modal.js +0 -1
- package/es/vef-crud-page/components/crud-header.js +0 -1
- package/es/vef-crud-page/components/crud-table.js +0 -1
- package/es/vef-crud-page/hooks/use-action-buttons.js +0 -1
- package/es/vef-crud-page/hooks/use-crud-context.js +0 -1
- package/es/vef-crud-page/hooks/use-crud-schema.js +0 -1
- package/es/vef-crud-page/hooks/use-operation-buttons.js +0 -1
- package/es/vef-crud-page/index.js +0 -1
- package/es/vef-crud-page/store.js +0 -1
- package/es/vef-data-grid/index.js +0 -1
- package/es/vef-data-table/index.js +0 -1
- package/es/vef-divider/index.js +0 -1
- package/es/vef-drawer/components/action-button-wrapper.js +0 -1
- package/es/vef-drawer/components/button-props.js +0 -1
- package/es/vef-drawer/components/cancel-action-button.js +0 -1
- package/es/vef-drawer/components/ok-action-button.js +0 -1
- package/es/vef-drawer/context.js +0 -1
- package/es/vef-drawer/index.js +0 -8
- package/es/vef-dropdown/index.js +0 -1
- package/es/vef-dynamic-icon/index.js +0 -1
- package/es/vef-dynamic-icon/props.js +0 -1
- package/es/vef-empty/index.js +0 -1
- package/es/vef-empty-placeholder/index.js +0 -5
- package/es/vef-error/error-icon.js +0 -1
- package/es/vef-error/index.js +0 -28
- package/es/vef-filter/components/action-buttons.js +0 -19
- package/es/vef-filter/components/advanced-filter.js +0 -9
- package/es/vef-filter/components/basic-filter.js +0 -19
- package/es/vef-filter/components/fields/index.js +0 -1
- package/es/vef-filter/components/fields/input-number.js +0 -1
- package/es/vef-filter/components/fields/input.js +0 -1
- package/es/vef-filter/components/fields/radio.js +0 -1
- package/es/vef-filter/components/fields/select.js +0 -1
- package/es/vef-filter/components/fields/tree-select.js +0 -1
- package/es/vef-filter/components/filter-field.js +0 -1
- package/es/vef-filter/components/filter-item.js +0 -1
- package/es/vef-filter/event.js +0 -1
- package/es/vef-filter/helper.js +0 -1
- package/es/vef-filter/hooks/use-action-handlers.js +0 -1
- package/es/vef-filter/hooks/use-computed-values.js +0 -1
- package/es/vef-filter/hooks/use-filter-context.js +0 -1
- package/es/vef-filter/hooks/use-filter-initialization.js +0 -1
- package/es/vef-filter/hooks/use-filter-instance.js +0 -1
- package/es/vef-filter/hooks/use-filter-items.js +0 -1
- package/es/vef-filter/hooks/use-filter-values-change.js +0 -1
- package/es/vef-filter/hooks/use-label-config.js +0 -1
- package/es/vef-filter/index.js +0 -8
- package/es/vef-filter/store.js +0 -1
- package/es/vef-flex/index.js +0 -1
- package/es/vef-float-button/index.js +0 -1
- package/es/vef-float-button-group/index.js +0 -1
- package/es/vef-form/components/fields/icon-select.js +0 -1
- package/es/vef-form/components/fields/index.js +0 -1
- package/es/vef-form/components/fields/input-number.js +0 -1
- package/es/vef-form/components/fields/input.js +0 -1
- package/es/vef-form/components/fields/password.js +0 -1
- package/es/vef-form/components/fields/radio.js +0 -1
- package/es/vef-form/components/fields/select.js +0 -1
- package/es/vef-form/components/fields/textarea.js +0 -1
- package/es/vef-form/components/fields/tree-select.js +0 -1
- package/es/vef-form/components/form-actions.js +0 -3
- package/es/vef-form/components/form-content.js +0 -4
- package/es/vef-form/components/form-field.js +0 -1
- package/es/vef-form/components/form-group.js +0 -11
- package/es/vef-form/components/form-hidden-item.js +0 -1
- package/es/vef-form/components/form-item.js +0 -1
- package/es/vef-form/components/form-row.js +0 -1
- package/es/vef-form/event.js +0 -1
- package/es/vef-form/helper.js +0 -1
- package/es/vef-form/hooks/use-action-handlers.js +0 -1
- package/es/vef-form/hooks/use-columns-layout.js +0 -1
- package/es/vef-form/hooks/use-computed-values.js +0 -1
- package/es/vef-form/hooks/use-form-context.js +0 -1
- package/es/vef-form/hooks/use-form-initialization.js +0 -1
- package/es/vef-form/hooks/use-form-instance.js +0 -1
- package/es/vef-form/hooks/use-form-values-change.js +0 -1
- package/es/vef-form/hooks/use-label-width.js +0 -1
- package/es/vef-form/index.js +0 -3
- package/es/vef-form/store.js +0 -1
- package/es/vef-form/validation-rules.js +0 -1
- package/es/vef-form-drawer/index.js +0 -1
- package/es/vef-form-modal/index.js +0 -1
- package/es/vef-generic-select/index.js +0 -1
- package/es/vef-grid/index.js +0 -24
- package/es/vef-grid/props.js +0 -1
- package/es/vef-grid-item/index.js +0 -1
- package/es/vef-icon/index.js +0 -1
- package/es/vef-icon-select/index.js +0 -40
- package/es/vef-input/hooks/use-input-instance.js +0 -1
- package/es/vef-input/index.js +0 -1
- package/es/vef-input-number/hooks/use-input-number-instance.js +0 -1
- package/es/vef-input-number/index.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-change-handler.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-editor-options.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-path.js +0 -1
- package/es/vef-intellisense-code-editor/index.js +0 -1
- package/es/vef-intellisense-code-editor/loader.js +0 -1
- package/es/vef-intellisense-code-editor/styles.js +0 -20
- package/es/vef-intellisense-code-editor/themes/github-light.json.js +0 -349
- package/es/vef-json-viewer/index.js +0 -1
- package/es/vef-layout/common-styles.js +0 -4
- package/es/vef-layout/components/content.js +0 -1
- package/es/vef-layout/components/font-size.js +0 -1
- package/es/vef-layout/components/fullscreen.js +0 -1
- package/es/vef-layout/components/header-action-icons.js +0 -15
- package/es/vef-layout/components/header-content.js +0 -1
- package/es/vef-layout/components/header.js +0 -12
- package/es/vef-layout/components/icon-boy.js +0 -1
- package/es/vef-layout/components/icon-girl.js +0 -1
- package/es/vef-layout/components/icon-menu-fold-left.js +0 -1
- package/es/vef-layout/components/icon-menu-unfold-left.js +0 -1
- package/es/vef-layout/components/menu-groups.js +0 -32
- package/es/vef-layout/components/message.js +0 -1
- package/es/vef-layout/components/search.js +0 -1
- package/es/vef-layout/components/sider.js +0 -49
- package/es/vef-layout/components/title.js +0 -36
- package/es/vef-layout/components/user-avatar.js +0 -16
- package/es/vef-layout/hooks/use-layout-context.js +0 -1
- package/es/vef-layout/index.js +0 -5
- package/es/vef-layout/logo.svg.js +0 -1
- package/es/vef-layout/store.js +0 -1
- package/es/vef-line-chart/index.js +0 -1
- package/es/vef-loading-placeholder/index.js +0 -7
- package/es/vef-login/index.js +0 -54
- package/es/vef-login/login-icon.js +0 -1
- package/es/vef-menu/index.js +0 -6
- package/es/vef-modal/components/action-button-wrapper.js +0 -1
- package/es/vef-modal/components/button-props.js +0 -1
- package/es/vef-modal/components/cancel-action-button.js +0 -1
- package/es/vef-modal/components/ok-action-button.js +0 -1
- package/es/vef-modal/context.js +0 -1
- package/es/vef-modal/index.js +0 -4
- package/es/vef-not-found/index.js +0 -28
- package/es/vef-not-found/not-found-icon.js +0 -1
- package/es/vef-page/index.js +0 -58
- package/es/vef-pagination/index.js +0 -1
- package/es/vef-pagination/props.js +0 -1
- package/es/vef-paragraph/index.js +0 -1
- package/es/vef-password/hooks/use-password-instance.js +0 -1
- package/es/vef-password/index.js +0 -1
- package/es/vef-pie-chart/index.js +0 -8
- package/es/vef-popconfirm/index.js +0 -1
- package/es/vef-popover/index.js +0 -1
- package/es/vef-radio/hooks/use-data-options.js +0 -1
- package/es/vef-radio/hooks/use-radio-instance.js +0 -1
- package/es/vef-radio/index.js +0 -3
- package/es/vef-rate/hooks/use-rate-instance.js +0 -1
- package/es/vef-rate/index.js +0 -1
- package/es/vef-responsive-container/index.js +0 -5
- package/es/vef-responsive-item/index.js +0 -3
- package/es/vef-ribbon/index.js +0 -1
- package/es/vef-row/index.js +0 -1
- package/es/vef-scroll-area/components/scrollbar.js +0 -32
- package/es/vef-scroll-area/index.js +0 -11
- package/es/vef-segment/index.js +0 -1
- package/es/vef-select/components/option.js +0 -9
- package/es/vef-select/hooks/use-data-options.js +0 -1
- package/es/vef-select/hooks/use-field-names.js +0 -1
- package/es/vef-select/hooks/use-render-label.js +0 -8
- package/es/vef-select/hooks/use-render-option.js +0 -1
- package/es/vef-select/hooks/use-select-instance.js +0 -1
- package/es/vef-select/index.js +0 -1
- package/es/vef-slider/hooks/use-slider-instance.js +0 -1
- package/es/vef-slider/index.js +0 -1
- package/es/vef-sortable-list/components/overlay-item.js +0 -5
- package/es/vef-sortable-list/components/sortable-item.js +0 -5
- package/es/vef-sortable-list/hooks/use-merged-items.js +0 -1
- package/es/vef-sortable-list/index.js +0 -1
- package/es/vef-space/index.js +0 -1
- package/es/vef-spin/index.js +0 -1
- package/es/vef-splitter/index.js +0 -1
- package/es/vef-splitter-panel/index.js +0 -1
- package/es/vef-status/index.js +0 -1
- package/es/vef-table/components/columns/bool.js +0 -1
- package/es/vef-table/components/columns/code.js +0 -1
- package/es/vef-table/components/columns/data-dictionary.js +0 -1
- package/es/vef-table/components/columns/enum.js +0 -1
- package/es/vef-table/components/columns/file.js +0 -1
- package/es/vef-table/components/columns/icon.js +0 -1
- package/es/vef-table/components/columns/id.js +0 -1
- package/es/vef-table/components/columns/image.js +0 -1
- package/es/vef-table/components/columns/index.js +0 -1
- package/es/vef-table/components/columns/markdown.js +0 -1
- package/es/vef-table/components/columns/number.js +0 -1
- package/es/vef-table/components/columns/render.js +0 -1
- package/es/vef-table/components/columns/rich-text.js +0 -1
- package/es/vef-table/components/columns/text.js +0 -1
- package/es/vef-table/components/columns-settings.js +0 -52
- package/es/vef-table/components/operation-buttons.js +0 -10
- package/es/vef-table/components/settings-icon.js +0 -3
- package/es/vef-table/components/table-footer.js +0 -17
- package/es/vef-table/helper.js +0 -1
- package/es/vef-table/hooks/use-computed-batch-buttons.js +0 -1
- package/es/vef-table/hooks/use-computed-columns.js +0 -1
- package/es/vef-table/hooks/use-computed-values.js +0 -1
- package/es/vef-table/hooks/use-data.js +0 -1
- package/es/vef-table/hooks/use-default-column-configs.js +0 -1
- package/es/vef-table/hooks/use-display-value.js +0 -1
- package/es/vef-table/hooks/use-helper-columns.js +0 -1
- package/es/vef-table/hooks/use-operation-column-width.js +0 -1
- package/es/vef-table/hooks/use-pagination-props.js +0 -1
- package/es/vef-table/hooks/use-row-props.js +0 -1
- package/es/vef-table/hooks/use-row-selection-config.js +0 -1
- package/es/vef-table/hooks/use-selected-rows.js +0 -1
- package/es/vef-table/hooks/use-table-columns.js +0 -1
- package/es/vef-table/hooks/use-table-context.js +0 -1
- package/es/vef-table/hooks/use-table-instance.js +0 -1
- package/es/vef-table/hooks/use-table-summary.js +0 -1
- package/es/vef-table/hooks/use-table-width.js +0 -1
- package/es/vef-table/index.js +0 -54
- package/es/vef-table/store.js +0 -1
- package/es/vef-tabs/index.js +0 -1
- package/es/vef-tag/index.js +0 -1
- package/es/vef-temporal-picker/helper.js +0 -1
- package/es/vef-temporal-picker/hooks/use-dayjs-value.js +0 -1
- package/es/vef-temporal-picker/hooks/use-temporal-limit.js +0 -1
- package/es/vef-temporal-picker/hooks/use-temporal-picker-instance.js +0 -1
- package/es/vef-temporal-picker/index.js +0 -1
- package/es/vef-temporal-range-picker/helper.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-dayjs-values.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-temporal-limit.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +0 -1
- package/es/vef-temporal-range-picker/index.js +0 -1
- package/es/vef-temporal-range-picker/props.js +0 -1
- package/es/vef-text/index.js +0 -1
- package/es/vef-textarea/hooks/use-textarea-instance.js +0 -1
- package/es/vef-textarea/index.js +0 -1
- package/es/vef-title/index.js +0 -13
- package/es/vef-tooltip/index.js +0 -1
- package/es/vef-tree-select/hooks/use-change-handler.js +0 -1
- package/es/vef-tree-select/hooks/use-data-options.js +0 -1
- package/es/vef-tree-select/hooks/use-tree-select-instance.js +0 -1
- package/es/vef-tree-select/index.js +0 -1
- package/es/vef-virtual-grid/index.js +0 -12
- package/es/vef-virtual-list/index.js +0 -18
- package/lib/index.cjs +0 -1
- package/lib/internal/base.css.cjs +0 -491
- package/lib/internal/chart.cjs +0 -1
- package/lib/internal/index.cjs +0 -1
- package/lib/internal/modern-normalize.css.cjs +0 -214
- package/lib/internal/utils.cjs +0 -1
- package/lib/vef-access-denied/access-denied-icon.cjs +0 -1
- package/lib/vef-access-denied/index.cjs +0 -27
- package/lib/vef-access-denied/props.cjs +0 -1
- package/lib/vef-action-buttons/index.cjs +0 -1
- package/lib/vef-action-buttons/props.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/edge.cjs +0 -6
- package/lib/vef-approval-flow-editor/components/label-value.cjs +0 -17
- package/lib/vef-approval-flow-editor/components/node-content.cjs +0 -16
- package/lib/vef-approval-flow-editor/components/node-selector.cjs +0 -12
- package/lib/vef-approval-flow-editor/components/node-toolbar.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/approval.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/condition.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/end.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/index.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/submit.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/selector-content.cjs +0 -24
- package/lib/vef-approval-flow-editor/components/source-handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/target-handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/constants.cjs +0 -1
- package/lib/vef-approval-flow-editor/helper.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-edges-interaction.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-element-selection.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-nodes-interaction.cjs +0 -1
- package/lib/vef-approval-flow-editor/index.cjs +0 -1
- package/lib/vef-approval-flow-editor/models/edge-node.cjs +0 -1
- package/lib/vef-approval-flow-editor/models/flow-node.cjs +0 -1
- package/lib/vef-approval-flow-editor/props.cjs +0 -1
- package/lib/vef-approval-flow-editor/store.cjs +0 -1
- package/lib/vef-approval-flow-editor/styles.cjs +0 -41
- package/lib/vef-approval-flow-editor/types.cjs +0 -1
- package/lib/vef-area-chart/index.cjs +0 -1
- package/lib/vef-area-chart/props.cjs +0 -1
- package/lib/vef-auto-sizer/index.cjs +0 -1
- package/lib/vef-auto-sizer/props.cjs +0 -1
- package/lib/vef-avatar/index.cjs +0 -1
- package/lib/vef-avatar/props.cjs +0 -1
- package/lib/vef-avatar-group/index.cjs +0 -1
- package/lib/vef-avatar-group/props.cjs +0 -1
- package/lib/vef-badge/index.cjs +0 -1
- package/lib/vef-badge/props.cjs +0 -1
- package/lib/vef-bar-chart/index.cjs +0 -1
- package/lib/vef-bar-chart/props.cjs +0 -1
- package/lib/vef-bool/hooks/use-bool-instance.cjs +0 -1
- package/lib/vef-bool/index.cjs +0 -1
- package/lib/vef-bool/props.cjs +0 -1
- package/lib/vef-breadcrumb/index.cjs +0 -1
- package/lib/vef-breadcrumb/props.cjs +0 -1
- package/lib/vef-button/components/base-button.cjs +0 -1
- package/lib/vef-button/index.cjs +0 -1
- package/lib/vef-button/props.cjs +0 -1
- package/lib/vef-card/index.cjs +0 -1
- package/lib/vef-card/props.cjs +0 -1
- package/lib/vef-card-meta/index.cjs +0 -1
- package/lib/vef-card-meta/props.cjs +0 -1
- package/lib/vef-chart-container/hooks/use-chart-container-context.cjs +0 -1
- package/lib/vef-chart-container/index.cjs +0 -57
- package/lib/vef-chart-container/props.cjs +0 -1
- package/lib/vef-chart-legend-content/index.cjs +0 -16
- package/lib/vef-chart-legend-content/props.cjs +0 -1
- package/lib/vef-chart-tooltip-content/index.cjs +0 -42
- package/lib/vef-chart-tooltip-content/props.cjs +0 -1
- package/lib/vef-checkbox/hooks/use-checkbox-instance.cjs +0 -1
- package/lib/vef-checkbox/hooks/use-data-options.cjs +0 -1
- package/lib/vef-checkbox/index.cjs +0 -3
- package/lib/vef-checkbox/props.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-config-extensions.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-height-props.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-language-extensions.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-setup-options.cjs +0 -1
- package/lib/vef-code-editor/index.cjs +0 -1
- package/lib/vef-code-editor/props.cjs +0 -1
- package/lib/vef-code-editor/styles.cjs +0 -137
- package/lib/vef-col/index.cjs +0 -1
- package/lib/vef-col/props.cjs +0 -1
- package/lib/vef-color-picker/index.cjs +0 -1
- package/lib/vef-color-picker/props.cjs +0 -1
- package/lib/vef-compact/index.cjs +0 -1
- package/lib/vef-compact/props.cjs +0 -1
- package/lib/vef-config-provider/global-style.cjs +0 -173
- package/lib/vef-config-provider/hooks/use-ui-config.cjs +0 -1
- package/lib/vef-config-provider/index.cjs +0 -5
- package/lib/vef-config-provider/props.cjs +0 -1
- package/lib/vef-config-provider/store.cjs +0 -1
- package/lib/vef-container/index.cjs +0 -1
- package/lib/vef-container/props.cjs +0 -1
- package/lib/vef-crud-page/components/crud-actions.cjs +0 -1
- package/lib/vef-crud-page/components/crud-filter.cjs +0 -1
- package/lib/vef-crud-page/components/crud-footer.cjs +0 -7
- package/lib/vef-crud-page/components/crud-form-modal.cjs +0 -1
- package/lib/vef-crud-page/components/crud-header.cjs +0 -1
- package/lib/vef-crud-page/components/crud-table.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-action-buttons.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-crud-context.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-crud-schema.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-operation-buttons.cjs +0 -1
- package/lib/vef-crud-page/index.cjs +0 -1
- package/lib/vef-crud-page/props.cjs +0 -1
- package/lib/vef-crud-page/store.cjs +0 -1
- package/lib/vef-crud-page/types.cjs +0 -1
- package/lib/vef-data-grid/index.cjs +0 -1
- package/lib/vef-data-grid/props.cjs +0 -1
- package/lib/vef-data-table/index.cjs +0 -1
- package/lib/vef-data-table/props.cjs +0 -1
- package/lib/vef-divider/index.cjs +0 -1
- package/lib/vef-divider/props.cjs +0 -1
- package/lib/vef-drawer/components/action-button-wrapper.cjs +0 -1
- package/lib/vef-drawer/components/button-props.cjs +0 -1
- package/lib/vef-drawer/components/cancel-action-button.cjs +0 -1
- package/lib/vef-drawer/components/ok-action-button.cjs +0 -1
- package/lib/vef-drawer/context.cjs +0 -1
- package/lib/vef-drawer/index.cjs +0 -8
- package/lib/vef-drawer/props.cjs +0 -1
- package/lib/vef-dropdown/index.cjs +0 -1
- package/lib/vef-dropdown/props.cjs +0 -1
- package/lib/vef-dynamic-icon/index.cjs +0 -1
- package/lib/vef-dynamic-icon/props.cjs +0 -1
- package/lib/vef-empty/index.cjs +0 -1
- package/lib/vef-empty/props.cjs +0 -1
- package/lib/vef-empty-placeholder/index.cjs +0 -5
- package/lib/vef-empty-placeholder/props.cjs +0 -1
- package/lib/vef-error/error-icon.cjs +0 -1
- package/lib/vef-error/index.cjs +0 -28
- package/lib/vef-error/props.cjs +0 -1
- package/lib/vef-filter/components/action-buttons.cjs +0 -19
- package/lib/vef-filter/components/advanced-filter.cjs +0 -9
- package/lib/vef-filter/components/basic-filter.cjs +0 -19
- package/lib/vef-filter/components/fields/index.cjs +0 -1
- package/lib/vef-filter/components/fields/input-number.cjs +0 -1
- package/lib/vef-filter/components/fields/input.cjs +0 -1
- package/lib/vef-filter/components/fields/props.cjs +0 -1
- package/lib/vef-filter/components/fields/radio.cjs +0 -1
- package/lib/vef-filter/components/fields/select.cjs +0 -1
- package/lib/vef-filter/components/fields/tree-select.cjs +0 -1
- package/lib/vef-filter/components/filter-field.cjs +0 -1
- package/lib/vef-filter/components/filter-item.cjs +0 -1
- package/lib/vef-filter/event.cjs +0 -1
- package/lib/vef-filter/helper.cjs +0 -1
- package/lib/vef-filter/hooks/use-action-handlers.cjs +0 -1
- package/lib/vef-filter/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-context.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-initialization.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-instance.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-items.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-values-change.cjs +0 -1
- package/lib/vef-filter/hooks/use-label-config.cjs +0 -1
- package/lib/vef-filter/index.cjs +0 -8
- package/lib/vef-filter/props.cjs +0 -1
- package/lib/vef-filter/store.cjs +0 -1
- package/lib/vef-filter/types.cjs +0 -1
- package/lib/vef-flex/index.cjs +0 -1
- package/lib/vef-flex/props.cjs +0 -1
- package/lib/vef-float-button/index.cjs +0 -1
- package/lib/vef-float-button/props.cjs +0 -1
- package/lib/vef-float-button-group/index.cjs +0 -1
- package/lib/vef-float-button-group/props.cjs +0 -1
- package/lib/vef-form/components/fields/icon-select.cjs +0 -1
- package/lib/vef-form/components/fields/index.cjs +0 -1
- package/lib/vef-form/components/fields/input-number.cjs +0 -1
- package/lib/vef-form/components/fields/input.cjs +0 -1
- package/lib/vef-form/components/fields/password.cjs +0 -1
- package/lib/vef-form/components/fields/props.cjs +0 -1
- package/lib/vef-form/components/fields/radio.cjs +0 -1
- package/lib/vef-form/components/fields/select.cjs +0 -1
- package/lib/vef-form/components/fields/textarea.cjs +0 -1
- package/lib/vef-form/components/fields/tree-select.cjs +0 -1
- package/lib/vef-form/components/form-actions.cjs +0 -3
- package/lib/vef-form/components/form-content.cjs +0 -4
- package/lib/vef-form/components/form-field.cjs +0 -1
- package/lib/vef-form/components/form-group.cjs +0 -11
- package/lib/vef-form/components/form-hidden-item.cjs +0 -1
- package/lib/vef-form/components/form-item.cjs +0 -1
- package/lib/vef-form/components/form-row.cjs +0 -1
- package/lib/vef-form/event.cjs +0 -1
- package/lib/vef-form/helper.cjs +0 -1
- package/lib/vef-form/hooks/use-action-handlers.cjs +0 -1
- package/lib/vef-form/hooks/use-columns-layout.cjs +0 -1
- package/lib/vef-form/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-form/hooks/use-form-context.cjs +0 -1
- package/lib/vef-form/hooks/use-form-initialization.cjs +0 -1
- package/lib/vef-form/hooks/use-form-instance.cjs +0 -1
- package/lib/vef-form/hooks/use-form-values-change.cjs +0 -1
- package/lib/vef-form/hooks/use-label-width.cjs +0 -1
- package/lib/vef-form/index.cjs +0 -3
- package/lib/vef-form/props.cjs +0 -1
- package/lib/vef-form/store.cjs +0 -1
- package/lib/vef-form/types.cjs +0 -1
- package/lib/vef-form/validation-rules.cjs +0 -1
- package/lib/vef-form-drawer/index.cjs +0 -1
- package/lib/vef-form-drawer/props.cjs +0 -1
- package/lib/vef-form-modal/index.cjs +0 -1
- package/lib/vef-form-modal/props.cjs +0 -1
- package/lib/vef-generic-select/index.cjs +0 -1
- package/lib/vef-generic-select/props.cjs +0 -1
- package/lib/vef-grid/index.cjs +0 -24
- package/lib/vef-grid/props.cjs +0 -1
- package/lib/vef-grid-item/index.cjs +0 -1
- package/lib/vef-grid-item/props.cjs +0 -1
- package/lib/vef-icon/index.cjs +0 -1
- package/lib/vef-icon/props.cjs +0 -1
- package/lib/vef-icon-select/index.cjs +0 -40
- package/lib/vef-icon-select/props.cjs +0 -1
- package/lib/vef-input/hooks/use-input-instance.cjs +0 -1
- package/lib/vef-input/index.cjs +0 -1
- package/lib/vef-input/props.cjs +0 -1
- package/lib/vef-input-number/hooks/use-input-number-instance.cjs +0 -1
- package/lib/vef-input-number/index.cjs +0 -1
- package/lib/vef-input-number/props.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-editor-options.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-path.cjs +0 -1
- package/lib/vef-intellisense-code-editor/index.cjs +0 -1
- package/lib/vef-intellisense-code-editor/loader.cjs +0 -1
- package/lib/vef-intellisense-code-editor/props.cjs +0 -1
- package/lib/vef-intellisense-code-editor/styles.cjs +0 -20
- package/lib/vef-intellisense-code-editor/themes/github-light.json.cjs +0 -349
- package/lib/vef-json-viewer/index.cjs +0 -1
- package/lib/vef-json-viewer/props.cjs +0 -1
- package/lib/vef-layout/common-styles.cjs +0 -4
- package/lib/vef-layout/components/content.cjs +0 -1
- package/lib/vef-layout/components/font-size.cjs +0 -1
- package/lib/vef-layout/components/fullscreen.cjs +0 -1
- package/lib/vef-layout/components/header-action-icons.cjs +0 -15
- package/lib/vef-layout/components/header-content.cjs +0 -1
- package/lib/vef-layout/components/header.cjs +0 -12
- package/lib/vef-layout/components/icon-boy.cjs +0 -1
- package/lib/vef-layout/components/icon-girl.cjs +0 -1
- package/lib/vef-layout/components/icon-menu-fold-left.cjs +0 -1
- package/lib/vef-layout/components/icon-menu-unfold-left.cjs +0 -1
- package/lib/vef-layout/components/menu-groups.cjs +0 -32
- package/lib/vef-layout/components/message.cjs +0 -1
- package/lib/vef-layout/components/search.cjs +0 -1
- package/lib/vef-layout/components/sider.cjs +0 -49
- package/lib/vef-layout/components/title.cjs +0 -36
- package/lib/vef-layout/components/user-avatar.cjs +0 -16
- package/lib/vef-layout/hooks/use-layout-context.cjs +0 -1
- package/lib/vef-layout/index.cjs +0 -5
- package/lib/vef-layout/logo.svg.cjs +0 -1
- package/lib/vef-layout/props.cjs +0 -1
- package/lib/vef-layout/store.cjs +0 -1
- package/lib/vef-line-chart/index.cjs +0 -1
- package/lib/vef-line-chart/props.cjs +0 -1
- package/lib/vef-loading-placeholder/index.cjs +0 -7
- package/lib/vef-loading-placeholder/props.cjs +0 -1
- package/lib/vef-login/index.cjs +0 -54
- package/lib/vef-login/login-icon.cjs +0 -1
- package/lib/vef-login/props.cjs +0 -1
- package/lib/vef-menu/index.cjs +0 -6
- package/lib/vef-menu/props.cjs +0 -1
- package/lib/vef-modal/components/action-button-wrapper.cjs +0 -1
- package/lib/vef-modal/components/button-props.cjs +0 -1
- package/lib/vef-modal/components/cancel-action-button.cjs +0 -1
- package/lib/vef-modal/components/ok-action-button.cjs +0 -1
- package/lib/vef-modal/context.cjs +0 -1
- package/lib/vef-modal/index.cjs +0 -4
- package/lib/vef-modal/props.cjs +0 -1
- package/lib/vef-not-found/index.cjs +0 -28
- package/lib/vef-not-found/not-found-icon.cjs +0 -1
- package/lib/vef-not-found/props.cjs +0 -1
- package/lib/vef-page/index.cjs +0 -58
- package/lib/vef-page/props.cjs +0 -1
- package/lib/vef-pagination/index.cjs +0 -1
- package/lib/vef-pagination/props.cjs +0 -1
- package/lib/vef-paragraph/index.cjs +0 -1
- package/lib/vef-paragraph/props.cjs +0 -1
- package/lib/vef-password/hooks/use-password-instance.cjs +0 -1
- package/lib/vef-password/index.cjs +0 -1
- package/lib/vef-password/props.cjs +0 -1
- package/lib/vef-pie-chart/index.cjs +0 -8
- package/lib/vef-pie-chart/props.cjs +0 -1
- package/lib/vef-popconfirm/index.cjs +0 -1
- package/lib/vef-popconfirm/props.cjs +0 -1
- package/lib/vef-popover/index.cjs +0 -1
- package/lib/vef-popover/props.cjs +0 -1
- package/lib/vef-radio/hooks/use-data-options.cjs +0 -1
- package/lib/vef-radio/hooks/use-radio-instance.cjs +0 -1
- package/lib/vef-radio/index.cjs +0 -3
- package/lib/vef-radio/props.cjs +0 -1
- package/lib/vef-rate/hooks/use-rate-instance.cjs +0 -1
- package/lib/vef-rate/index.cjs +0 -1
- package/lib/vef-rate/props.cjs +0 -1
- package/lib/vef-responsive-container/index.cjs +0 -5
- package/lib/vef-responsive-container/props.cjs +0 -1
- package/lib/vef-responsive-item/index.cjs +0 -3
- package/lib/vef-responsive-item/props.cjs +0 -1
- package/lib/vef-ribbon/index.cjs +0 -1
- package/lib/vef-ribbon/props.cjs +0 -1
- package/lib/vef-row/index.cjs +0 -1
- package/lib/vef-row/props.cjs +0 -1
- package/lib/vef-scroll-area/components/scrollbar.cjs +0 -32
- package/lib/vef-scroll-area/index.cjs +0 -11
- package/lib/vef-scroll-area/props.cjs +0 -1
- package/lib/vef-segment/index.cjs +0 -1
- package/lib/vef-segment/props.cjs +0 -1
- package/lib/vef-select/components/option.cjs +0 -9
- package/lib/vef-select/hooks/use-data-options.cjs +0 -1
- package/lib/vef-select/hooks/use-field-names.cjs +0 -1
- package/lib/vef-select/hooks/use-render-label.cjs +0 -8
- package/lib/vef-select/hooks/use-render-option.cjs +0 -1
- package/lib/vef-select/hooks/use-select-instance.cjs +0 -1
- package/lib/vef-select/index.cjs +0 -1
- package/lib/vef-select/props.cjs +0 -1
- package/lib/vef-slider/hooks/use-slider-instance.cjs +0 -1
- package/lib/vef-slider/index.cjs +0 -1
- package/lib/vef-slider/props.cjs +0 -1
- package/lib/vef-sortable-list/components/overlay-item.cjs +0 -5
- package/lib/vef-sortable-list/components/sortable-item.cjs +0 -5
- package/lib/vef-sortable-list/hooks/use-merged-items.cjs +0 -1
- package/lib/vef-sortable-list/index.cjs +0 -1
- package/lib/vef-sortable-list/props.cjs +0 -1
- package/lib/vef-space/index.cjs +0 -1
- package/lib/vef-space/props.cjs +0 -1
- package/lib/vef-spin/index.cjs +0 -1
- package/lib/vef-spin/props.cjs +0 -1
- package/lib/vef-splitter/index.cjs +0 -1
- package/lib/vef-splitter/props.cjs +0 -1
- package/lib/vef-splitter-panel/index.cjs +0 -1
- package/lib/vef-splitter-panel/props.cjs +0 -1
- package/lib/vef-status/index.cjs +0 -1
- package/lib/vef-status/props.cjs +0 -1
- package/lib/vef-table/components/columns/bool.cjs +0 -1
- package/lib/vef-table/components/columns/code.cjs +0 -1
- package/lib/vef-table/components/columns/data-dictionary.cjs +0 -1
- package/lib/vef-table/components/columns/enum.cjs +0 -1
- package/lib/vef-table/components/columns/file.cjs +0 -1
- package/lib/vef-table/components/columns/icon.cjs +0 -1
- package/lib/vef-table/components/columns/id.cjs +0 -1
- package/lib/vef-table/components/columns/image.cjs +0 -1
- package/lib/vef-table/components/columns/index.cjs +0 -1
- package/lib/vef-table/components/columns/markdown.cjs +0 -1
- package/lib/vef-table/components/columns/number.cjs +0 -1
- package/lib/vef-table/components/columns/props.cjs +0 -1
- package/lib/vef-table/components/columns/render.cjs +0 -1
- package/lib/vef-table/components/columns/rich-text.cjs +0 -1
- package/lib/vef-table/components/columns/text.cjs +0 -1
- package/lib/vef-table/components/columns-settings.cjs +0 -52
- package/lib/vef-table/components/operation-buttons.cjs +0 -10
- package/lib/vef-table/components/settings-icon.cjs +0 -3
- package/lib/vef-table/components/table-footer.cjs +0 -17
- package/lib/vef-table/helper.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-batch-buttons.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-table/hooks/use-data.cjs +0 -1
- package/lib/vef-table/hooks/use-default-column-configs.cjs +0 -1
- package/lib/vef-table/hooks/use-display-value.cjs +0 -1
- package/lib/vef-table/hooks/use-helper-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-operation-column-width.cjs +0 -1
- package/lib/vef-table/hooks/use-pagination-props.cjs +0 -1
- package/lib/vef-table/hooks/use-row-props.cjs +0 -1
- package/lib/vef-table/hooks/use-row-selection-config.cjs +0 -1
- package/lib/vef-table/hooks/use-selected-rows.cjs +0 -1
- package/lib/vef-table/hooks/use-table-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-table-context.cjs +0 -1
- package/lib/vef-table/hooks/use-table-instance.cjs +0 -1
- package/lib/vef-table/hooks/use-table-summary.cjs +0 -1
- package/lib/vef-table/hooks/use-table-width.cjs +0 -1
- package/lib/vef-table/index.cjs +0 -54
- package/lib/vef-table/props.cjs +0 -1
- package/lib/vef-table/store.cjs +0 -1
- package/lib/vef-table/types.cjs +0 -1
- package/lib/vef-tabs/index.cjs +0 -1
- package/lib/vef-tabs/props.cjs +0 -1
- package/lib/vef-tag/index.cjs +0 -1
- package/lib/vef-tag/props.cjs +0 -1
- package/lib/vef-temporal-picker/helper.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-dayjs-value.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-temporal-limit.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +0 -1
- package/lib/vef-temporal-picker/index.cjs +0 -1
- package/lib/vef-temporal-picker/props.cjs +0 -1
- package/lib/vef-temporal-range-picker/helper.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +0 -1
- package/lib/vef-temporal-range-picker/index.cjs +0 -1
- package/lib/vef-temporal-range-picker/props.cjs +0 -1
- package/lib/vef-text/index.cjs +0 -1
- package/lib/vef-text/props.cjs +0 -1
- package/lib/vef-textarea/hooks/use-textarea-instance.cjs +0 -1
- package/lib/vef-textarea/index.cjs +0 -1
- package/lib/vef-textarea/props.cjs +0 -1
- package/lib/vef-title/index.cjs +0 -13
- package/lib/vef-title/props.cjs +0 -1
- package/lib/vef-tooltip/index.cjs +0 -1
- package/lib/vef-tooltip/props.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-data-options.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-tree-select-instance.cjs +0 -1
- package/lib/vef-tree-select/index.cjs +0 -1
- package/lib/vef-tree-select/props.cjs +0 -1
- package/lib/vef-virtual-grid/index.cjs +0 -12
- package/lib/vef-virtual-grid/props.cjs +0 -1
- package/lib/vef-virtual-list/index.cjs +0 -18
- package/lib/vef-virtual-list/props.cjs +0 -1
|
@@ -0,0 +1,929 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
import { jsxs, jsx } from '@emotion/react/jsx-runtime';
|
|
3
|
+
import { memo } from 'react';
|
|
4
|
+
|
|
5
|
+
"use strict";
|
|
6
|
+
function SvgAccessDeniedIcon(props) {
|
|
7
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 1024 1024", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
8
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
9
|
+
/* @__PURE__ */ jsxs(
|
|
10
|
+
"linearGradient",
|
|
11
|
+
{
|
|
12
|
+
gradientUnits: "objectBoundingBox",
|
|
13
|
+
id: "access-denied-icon_svg__a",
|
|
14
|
+
spreadMethod: "pad",
|
|
15
|
+
x1: -0.136,
|
|
16
|
+
x2: 0.5,
|
|
17
|
+
y1: 0.5,
|
|
18
|
+
y2: 0.472,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
21
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsxs(
|
|
26
|
+
"linearGradient",
|
|
27
|
+
{
|
|
28
|
+
gradientUnits: "objectBoundingBox",
|
|
29
|
+
id: "access-denied-icon_svg__b",
|
|
30
|
+
spreadMethod: "pad",
|
|
31
|
+
x1: -0.136,
|
|
32
|
+
x2: 0.5,
|
|
33
|
+
y1: 0.5,
|
|
34
|
+
y2: 0.472,
|
|
35
|
+
children: [
|
|
36
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
37
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
),
|
|
41
|
+
/* @__PURE__ */ jsxs(
|
|
42
|
+
"linearGradient",
|
|
43
|
+
{
|
|
44
|
+
gradientUnits: "objectBoundingBox",
|
|
45
|
+
id: "access-denied-icon_svg__c",
|
|
46
|
+
spreadMethod: "pad",
|
|
47
|
+
x1: 0,
|
|
48
|
+
x2: 1,
|
|
49
|
+
y1: -0.031,
|
|
50
|
+
y2: -0.031,
|
|
51
|
+
children: [
|
|
52
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#fff5de" }),
|
|
53
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#fbd2ac" })
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
),
|
|
57
|
+
/* @__PURE__ */ jsxs(
|
|
58
|
+
"linearGradient",
|
|
59
|
+
{
|
|
60
|
+
gradientUnits: "objectBoundingBox",
|
|
61
|
+
id: "access-denied-icon_svg__d",
|
|
62
|
+
spreadMethod: "pad",
|
|
63
|
+
x1: -0.136,
|
|
64
|
+
x2: 0.5,
|
|
65
|
+
y1: 0.5,
|
|
66
|
+
y2: 0.476,
|
|
67
|
+
children: [
|
|
68
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
69
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
),
|
|
73
|
+
/* @__PURE__ */ jsxs(
|
|
74
|
+
"linearGradient",
|
|
75
|
+
{
|
|
76
|
+
gradientUnits: "objectBoundingBox",
|
|
77
|
+
id: "access-denied-icon_svg__e",
|
|
78
|
+
spreadMethod: "pad",
|
|
79
|
+
x1: -0.136,
|
|
80
|
+
x2: 0.5,
|
|
81
|
+
y1: 0.5,
|
|
82
|
+
y2: 0.476,
|
|
83
|
+
children: [
|
|
84
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
85
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
86
|
+
]
|
|
87
|
+
}
|
|
88
|
+
),
|
|
89
|
+
/* @__PURE__ */ jsxs(
|
|
90
|
+
"linearGradient",
|
|
91
|
+
{
|
|
92
|
+
gradientUnits: "objectBoundingBox",
|
|
93
|
+
id: "access-denied-icon_svg__f",
|
|
94
|
+
spreadMethod: "pad",
|
|
95
|
+
x1: -0.136,
|
|
96
|
+
x2: 0.5,
|
|
97
|
+
y1: 0.5,
|
|
98
|
+
y2: 0.476,
|
|
99
|
+
children: [
|
|
100
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
101
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
),
|
|
105
|
+
/* @__PURE__ */ jsxs(
|
|
106
|
+
"linearGradient",
|
|
107
|
+
{
|
|
108
|
+
gradientUnits: "objectBoundingBox",
|
|
109
|
+
id: "access-denied-icon_svg__g",
|
|
110
|
+
spreadMethod: "pad",
|
|
111
|
+
x1: -0.136,
|
|
112
|
+
x2: 0.5,
|
|
113
|
+
y1: 0.5,
|
|
114
|
+
y2: 0.476,
|
|
115
|
+
children: [
|
|
116
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
117
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
),
|
|
121
|
+
/* @__PURE__ */ jsxs(
|
|
122
|
+
"linearGradient",
|
|
123
|
+
{
|
|
124
|
+
gradientUnits: "objectBoundingBox",
|
|
125
|
+
id: "access-denied-icon_svg__h",
|
|
126
|
+
spreadMethod: "pad",
|
|
127
|
+
x1: 0.111,
|
|
128
|
+
x2: 0.5,
|
|
129
|
+
y1: 0.87,
|
|
130
|
+
y2: 0.305,
|
|
131
|
+
children: [
|
|
132
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
133
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
),
|
|
137
|
+
/* @__PURE__ */ jsxs(
|
|
138
|
+
"linearGradient",
|
|
139
|
+
{
|
|
140
|
+
gradientUnits: "objectBoundingBox",
|
|
141
|
+
id: "access-denied-icon_svg__i",
|
|
142
|
+
spreadMethod: "pad",
|
|
143
|
+
x1: 0.119,
|
|
144
|
+
x2: 0.5,
|
|
145
|
+
y1: 0.87,
|
|
146
|
+
y2: 0.305,
|
|
147
|
+
children: [
|
|
148
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
149
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
),
|
|
153
|
+
/* @__PURE__ */ jsxs(
|
|
154
|
+
"linearGradient",
|
|
155
|
+
{
|
|
156
|
+
gradientUnits: "objectBoundingBox",
|
|
157
|
+
id: "access-denied-icon_svg__j",
|
|
158
|
+
spreadMethod: "pad",
|
|
159
|
+
x1: 1.541,
|
|
160
|
+
x2: 0.5,
|
|
161
|
+
y1: 0.87,
|
|
162
|
+
y2: 0.305,
|
|
163
|
+
children: [
|
|
164
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
165
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
),
|
|
169
|
+
/* @__PURE__ */ jsxs(
|
|
170
|
+
"linearGradient",
|
|
171
|
+
{
|
|
172
|
+
gradientUnits: "objectBoundingBox",
|
|
173
|
+
id: "access-denied-icon_svg__k",
|
|
174
|
+
spreadMethod: "pad",
|
|
175
|
+
x1: 1,
|
|
176
|
+
x2: 0,
|
|
177
|
+
y1: -0.118,
|
|
178
|
+
y2: -0.118,
|
|
179
|
+
children: [
|
|
180
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#f5dda7" }),
|
|
181
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#fa9a41" })
|
|
182
|
+
]
|
|
183
|
+
}
|
|
184
|
+
),
|
|
185
|
+
/* @__PURE__ */ jsxs(
|
|
186
|
+
"linearGradient",
|
|
187
|
+
{
|
|
188
|
+
gradientUnits: "objectBoundingBox",
|
|
189
|
+
id: "access-denied-icon_svg__l",
|
|
190
|
+
spreadMethod: "pad",
|
|
191
|
+
x1: 0.224,
|
|
192
|
+
x2: 0.5,
|
|
193
|
+
y1: -0.089,
|
|
194
|
+
y2: 0.774,
|
|
195
|
+
children: [
|
|
196
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
197
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
),
|
|
201
|
+
/* @__PURE__ */ jsxs(
|
|
202
|
+
"linearGradient",
|
|
203
|
+
{
|
|
204
|
+
gradientUnits: "objectBoundingBox",
|
|
205
|
+
id: "access-denied-icon_svg__m",
|
|
206
|
+
spreadMethod: "pad",
|
|
207
|
+
x1: 0.454,
|
|
208
|
+
x2: 0.5,
|
|
209
|
+
y1: -0.115,
|
|
210
|
+
y2: 0.786,
|
|
211
|
+
children: [
|
|
212
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
213
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
),
|
|
217
|
+
/* @__PURE__ */ jsxs(
|
|
218
|
+
"linearGradient",
|
|
219
|
+
{
|
|
220
|
+
gradientUnits: "objectBoundingBox",
|
|
221
|
+
id: "access-denied-icon_svg__n",
|
|
222
|
+
spreadMethod: "pad",
|
|
223
|
+
x1: 0.477,
|
|
224
|
+
x2: 0.5,
|
|
225
|
+
y1: -0.115,
|
|
226
|
+
y2: 0.786,
|
|
227
|
+
children: [
|
|
228
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
229
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
),
|
|
233
|
+
/* @__PURE__ */ jsxs(
|
|
234
|
+
"linearGradient",
|
|
235
|
+
{
|
|
236
|
+
gradientUnits: "objectBoundingBox",
|
|
237
|
+
id: "access-denied-icon_svg__o",
|
|
238
|
+
spreadMethod: "pad",
|
|
239
|
+
x1: 0.439,
|
|
240
|
+
x2: 0.5,
|
|
241
|
+
y1: -0.115,
|
|
242
|
+
y2: 0.786,
|
|
243
|
+
children: [
|
|
244
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
245
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
),
|
|
249
|
+
/* @__PURE__ */ jsxs(
|
|
250
|
+
"linearGradient",
|
|
251
|
+
{
|
|
252
|
+
gradientUnits: "objectBoundingBox",
|
|
253
|
+
id: "access-denied-icon_svg__p",
|
|
254
|
+
spreadMethod: "pad",
|
|
255
|
+
x1: 0,
|
|
256
|
+
x2: 1.132,
|
|
257
|
+
y1: 0.776,
|
|
258
|
+
y2: 0.776,
|
|
259
|
+
children: [
|
|
260
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
261
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
262
|
+
]
|
|
263
|
+
}
|
|
264
|
+
),
|
|
265
|
+
/* @__PURE__ */ jsxs(
|
|
266
|
+
"linearGradient",
|
|
267
|
+
{
|
|
268
|
+
gradientUnits: "objectBoundingBox",
|
|
269
|
+
id: "access-denied-icon_svg__q",
|
|
270
|
+
spreadMethod: "pad",
|
|
271
|
+
x1: 0.14,
|
|
272
|
+
x2: 0.875,
|
|
273
|
+
y1: 0.075,
|
|
274
|
+
y2: 1.075,
|
|
275
|
+
children: [
|
|
276
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#ffb859" }),
|
|
277
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#f97b61" })
|
|
278
|
+
]
|
|
279
|
+
}
|
|
280
|
+
),
|
|
281
|
+
/* @__PURE__ */ jsxs(
|
|
282
|
+
"linearGradient",
|
|
283
|
+
{
|
|
284
|
+
gradientUnits: "objectBoundingBox",
|
|
285
|
+
id: "access-denied-icon_svg__r",
|
|
286
|
+
spreadMethod: "pad",
|
|
287
|
+
x1: 0.021,
|
|
288
|
+
x2: 0.5,
|
|
289
|
+
y1: 0.87,
|
|
290
|
+
y2: 0.305,
|
|
291
|
+
children: [
|
|
292
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
293
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
294
|
+
]
|
|
295
|
+
}
|
|
296
|
+
),
|
|
297
|
+
/* @__PURE__ */ jsxs(
|
|
298
|
+
"linearGradient",
|
|
299
|
+
{
|
|
300
|
+
gradientUnits: "objectBoundingBox",
|
|
301
|
+
id: "access-denied-icon_svg__s",
|
|
302
|
+
spreadMethod: "pad",
|
|
303
|
+
x1: 1,
|
|
304
|
+
x2: 6e-3,
|
|
305
|
+
y1: -0.03,
|
|
306
|
+
y2: -0.03,
|
|
307
|
+
children: [
|
|
308
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#f97b61" }),
|
|
309
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#ffb859" })
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
),
|
|
313
|
+
/* @__PURE__ */ jsxs(
|
|
314
|
+
"linearGradient",
|
|
315
|
+
{
|
|
316
|
+
gradientUnits: "objectBoundingBox",
|
|
317
|
+
id: "access-denied-icon_svg__t",
|
|
318
|
+
spreadMethod: "pad",
|
|
319
|
+
x1: 1,
|
|
320
|
+
x2: 6e-3,
|
|
321
|
+
y1: -0.03,
|
|
322
|
+
y2: -0.03,
|
|
323
|
+
children: [
|
|
324
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#f97b61" }),
|
|
325
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#ffb859" })
|
|
326
|
+
]
|
|
327
|
+
}
|
|
328
|
+
),
|
|
329
|
+
/* @__PURE__ */ jsxs(
|
|
330
|
+
"linearGradient",
|
|
331
|
+
{
|
|
332
|
+
gradientUnits: "objectBoundingBox",
|
|
333
|
+
id: "access-denied-icon_svg__u",
|
|
334
|
+
spreadMethod: "pad",
|
|
335
|
+
x1: 0,
|
|
336
|
+
x2: 0.994,
|
|
337
|
+
y1: -0.03,
|
|
338
|
+
y2: -0.03,
|
|
339
|
+
children: [
|
|
340
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#ffb859" }),
|
|
341
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#f97b61" })
|
|
342
|
+
]
|
|
343
|
+
}
|
|
344
|
+
),
|
|
345
|
+
/* @__PURE__ */ jsxs(
|
|
346
|
+
"linearGradient",
|
|
347
|
+
{
|
|
348
|
+
gradientUnits: "objectBoundingBox",
|
|
349
|
+
id: "access-denied-icon_svg__v",
|
|
350
|
+
spreadMethod: "pad",
|
|
351
|
+
x1: 0,
|
|
352
|
+
x2: 0.994,
|
|
353
|
+
y1: -0.03,
|
|
354
|
+
y2: -0.03,
|
|
355
|
+
children: [
|
|
356
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#ffb859" }),
|
|
357
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#f97b61" })
|
|
358
|
+
]
|
|
359
|
+
}
|
|
360
|
+
),
|
|
361
|
+
/* @__PURE__ */ jsxs(
|
|
362
|
+
"linearGradient",
|
|
363
|
+
{
|
|
364
|
+
gradientUnits: "objectBoundingBox",
|
|
365
|
+
id: "access-denied-icon_svg__w",
|
|
366
|
+
spreadMethod: "pad",
|
|
367
|
+
x1: 0.863,
|
|
368
|
+
x2: 0,
|
|
369
|
+
y1: -0.028,
|
|
370
|
+
y2: -0.028,
|
|
371
|
+
children: [
|
|
372
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#1d181c" }),
|
|
373
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.3, stopColor: "#2c2422" }),
|
|
374
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.5, stopColor: "#42352c" }),
|
|
375
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.7, stopColor: "#57352c" }),
|
|
376
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#923629" })
|
|
377
|
+
]
|
|
378
|
+
}
|
|
379
|
+
),
|
|
380
|
+
/* @__PURE__ */ jsxs(
|
|
381
|
+
"linearGradient",
|
|
382
|
+
{
|
|
383
|
+
gradientUnits: "objectBoundingBox",
|
|
384
|
+
id: "access-denied-icon_svg__x",
|
|
385
|
+
spreadMethod: "pad",
|
|
386
|
+
x1: 0.099,
|
|
387
|
+
x2: 0.5,
|
|
388
|
+
y1: 0.87,
|
|
389
|
+
y2: 0.305,
|
|
390
|
+
children: [
|
|
391
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
392
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
393
|
+
]
|
|
394
|
+
}
|
|
395
|
+
),
|
|
396
|
+
/* @__PURE__ */ jsxs(
|
|
397
|
+
"linearGradient",
|
|
398
|
+
{
|
|
399
|
+
gradientUnits: "objectBoundingBox",
|
|
400
|
+
id: "access-denied-icon_svg__y",
|
|
401
|
+
spreadMethod: "pad",
|
|
402
|
+
x1: 0.101,
|
|
403
|
+
x2: 0.5,
|
|
404
|
+
y1: 0.87,
|
|
405
|
+
y2: 0.305,
|
|
406
|
+
children: [
|
|
407
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
408
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
409
|
+
]
|
|
410
|
+
}
|
|
411
|
+
),
|
|
412
|
+
/* @__PURE__ */ jsxs(
|
|
413
|
+
"linearGradient",
|
|
414
|
+
{
|
|
415
|
+
gradientUnits: "objectBoundingBox",
|
|
416
|
+
id: "access-denied-icon_svg__z",
|
|
417
|
+
spreadMethod: "pad",
|
|
418
|
+
x1: -0.136,
|
|
419
|
+
x2: 0.5,
|
|
420
|
+
y1: 0.5,
|
|
421
|
+
y2: 0.434,
|
|
422
|
+
children: [
|
|
423
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
424
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
425
|
+
]
|
|
426
|
+
}
|
|
427
|
+
),
|
|
428
|
+
/* @__PURE__ */ jsxs(
|
|
429
|
+
"linearGradient",
|
|
430
|
+
{
|
|
431
|
+
gradientUnits: "objectBoundingBox",
|
|
432
|
+
id: "access-denied-icon_svg__A",
|
|
433
|
+
spreadMethod: "pad",
|
|
434
|
+
x1: 0.431,
|
|
435
|
+
x2: 0.603,
|
|
436
|
+
y1: -0.065,
|
|
437
|
+
y2: 0,
|
|
438
|
+
children: [
|
|
439
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.032, stopColor: "#afdef9" }),
|
|
440
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#7cc9f9" })
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
),
|
|
444
|
+
/* @__PURE__ */ jsxs(
|
|
445
|
+
"linearGradient",
|
|
446
|
+
{
|
|
447
|
+
gradientUnits: "objectBoundingBox",
|
|
448
|
+
id: "access-denied-icon_svg__B",
|
|
449
|
+
spreadMethod: "pad",
|
|
450
|
+
x1: 0.059,
|
|
451
|
+
x2: 0.6,
|
|
452
|
+
y1: 0.609,
|
|
453
|
+
y2: 0.371,
|
|
454
|
+
children: [
|
|
455
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
456
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
457
|
+
]
|
|
458
|
+
}
|
|
459
|
+
),
|
|
460
|
+
/* @__PURE__ */ jsxs(
|
|
461
|
+
"linearGradient",
|
|
462
|
+
{
|
|
463
|
+
gradientUnits: "objectBoundingBox",
|
|
464
|
+
id: "access-denied-icon_svg__C",
|
|
465
|
+
spreadMethod: "pad",
|
|
466
|
+
x1: 0.445,
|
|
467
|
+
x2: 0.583,
|
|
468
|
+
y1: -0.065,
|
|
469
|
+
y2: 0,
|
|
470
|
+
children: [
|
|
471
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.032, stopColor: "#afdef9" }),
|
|
472
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#7cc9f9" })
|
|
473
|
+
]
|
|
474
|
+
}
|
|
475
|
+
),
|
|
476
|
+
/* @__PURE__ */ jsxs(
|
|
477
|
+
"linearGradient",
|
|
478
|
+
{
|
|
479
|
+
gradientUnits: "objectBoundingBox",
|
|
480
|
+
id: "access-denied-icon_svg__D",
|
|
481
|
+
spreadMethod: "pad",
|
|
482
|
+
x1: 0.284,
|
|
483
|
+
x2: 0.5,
|
|
484
|
+
y1: 0.87,
|
|
485
|
+
y2: 0.305,
|
|
486
|
+
children: [
|
|
487
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
488
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
489
|
+
]
|
|
490
|
+
}
|
|
491
|
+
),
|
|
492
|
+
/* @__PURE__ */ jsxs(
|
|
493
|
+
"linearGradient",
|
|
494
|
+
{
|
|
495
|
+
gradientUnits: "objectBoundingBox",
|
|
496
|
+
id: "access-denied-icon_svg__E",
|
|
497
|
+
spreadMethod: "pad",
|
|
498
|
+
x1: 0.431,
|
|
499
|
+
x2: 0.603,
|
|
500
|
+
y1: -0.065,
|
|
501
|
+
y2: 0,
|
|
502
|
+
children: [
|
|
503
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.032, stopColor: "#afdef9" }),
|
|
504
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#7cc9f9" })
|
|
505
|
+
]
|
|
506
|
+
}
|
|
507
|
+
),
|
|
508
|
+
/* @__PURE__ */ jsxs(
|
|
509
|
+
"linearGradient",
|
|
510
|
+
{
|
|
511
|
+
gradientUnits: "objectBoundingBox",
|
|
512
|
+
id: "access-denied-icon_svg__F",
|
|
513
|
+
spreadMethod: "pad",
|
|
514
|
+
x1: 0.802,
|
|
515
|
+
x2: 0.402,
|
|
516
|
+
y1: 0.781,
|
|
517
|
+
y2: 0.012,
|
|
518
|
+
children: [
|
|
519
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
520
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
521
|
+
]
|
|
522
|
+
}
|
|
523
|
+
),
|
|
524
|
+
/* @__PURE__ */ jsxs(
|
|
525
|
+
"linearGradient",
|
|
526
|
+
{
|
|
527
|
+
gradientUnits: "objectBoundingBox",
|
|
528
|
+
id: "access-denied-icon_svg__G",
|
|
529
|
+
spreadMethod: "pad",
|
|
530
|
+
x1: 0.17,
|
|
531
|
+
x2: 0.731,
|
|
532
|
+
y1: 0.776,
|
|
533
|
+
y2: 0.273,
|
|
534
|
+
children: [
|
|
535
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
536
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
537
|
+
]
|
|
538
|
+
}
|
|
539
|
+
),
|
|
540
|
+
/* @__PURE__ */ jsxs(
|
|
541
|
+
"linearGradient",
|
|
542
|
+
{
|
|
543
|
+
gradientUnits: "objectBoundingBox",
|
|
544
|
+
id: "access-denied-icon_svg__H",
|
|
545
|
+
spreadMethod: "pad",
|
|
546
|
+
x1: 0,
|
|
547
|
+
x2: 0.85,
|
|
548
|
+
y1: 0.669,
|
|
549
|
+
y2: 0.361,
|
|
550
|
+
children: [
|
|
551
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
552
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
),
|
|
556
|
+
/* @__PURE__ */ jsxs(
|
|
557
|
+
"linearGradient",
|
|
558
|
+
{
|
|
559
|
+
gradientUnits: "objectBoundingBox",
|
|
560
|
+
id: "access-denied-icon_svg__I",
|
|
561
|
+
spreadMethod: "pad",
|
|
562
|
+
x1: 0,
|
|
563
|
+
x2: 0.85,
|
|
564
|
+
y1: 0.644,
|
|
565
|
+
y2: 0.382,
|
|
566
|
+
children: [
|
|
567
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
568
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
569
|
+
]
|
|
570
|
+
}
|
|
571
|
+
),
|
|
572
|
+
/* @__PURE__ */ jsxs(
|
|
573
|
+
"linearGradient",
|
|
574
|
+
{
|
|
575
|
+
gradientUnits: "objectBoundingBox",
|
|
576
|
+
id: "access-denied-icon_svg__J",
|
|
577
|
+
spreadMethod: "pad",
|
|
578
|
+
x1: 0,
|
|
579
|
+
x2: 0.85,
|
|
580
|
+
y1: 0.639,
|
|
581
|
+
y2: 0.385,
|
|
582
|
+
children: [
|
|
583
|
+
/* @__PURE__ */ jsx("stop", { offset: 0, stopColor: "#98d6fa" }),
|
|
584
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#47b0f1" })
|
|
585
|
+
]
|
|
586
|
+
}
|
|
587
|
+
)
|
|
588
|
+
] }),
|
|
589
|
+
/* @__PURE__ */ jsx("path", { d: "M0 0h1024v1024H0Z", fill: "none" }),
|
|
590
|
+
/* @__PURE__ */ jsx(
|
|
591
|
+
"path",
|
|
592
|
+
{
|
|
593
|
+
d: "M76.8 581.8 72 559.4l-4.2-23.8-3.6-28.8-1.9-26.5-.2-22.1.3-11.2.8-11.2 1.2-11.2 1.7-11.2 2.1-10.9 2.7-10.6 2.5-7.9 2.8-7.7 3.1-7.4 3.5-7.1 3.9-7 4.3-6.6 4.7-6.3 5.2-6 5.6-5.6 6.1-5.2 6.6-4.8 7.2-4.4 5.9-3 6.4-2.8 6.7-2.5 7.3-2.2 7.7-1.9 17.7-3.4 16.8-2.8 15.8-2.2 16-1.8 29.3-2.5 21.2-1.1 56.2-2.4 22.6-1.8 10.4-1.2 10.3-1.6 9.9-2.2 9.4-2.5 6.9-2.3 6.8-2.7 6.6-3 6.5-3.5 6.1-3.8 6.2-4.3 6-4.9 22.9-21.2 14.4-11.9 12.4-8.6 6.1-3.6 5.6-2.8 5.2-2.2 5.3-1.8 5.2-1.3 10-1.4 10.5-.2 8.1.5 28.8 2.6 7.3.3 7.4-.4 7.5-.9 7.4-1.4 7.5-1.8 7.5-2.2 14.5-5.4 17.6-8.2 9.8-5.2 17.9-10.6 28.7-18.8 12.7-6.2 8.9-3.6 13.3-4.4 15.5-4 17.2-2.7 8.8-.8 9.2-.3 9.5.3 14.3 1.6 14.6 3.3 7.2 2.2 7.1 2.8 7.3 3.4 7.2 3.9 6.9 4.4 6.9 5 6.9 5.8 6.8 6.5 5.1 5.4 10 12.5 9.8 14.9 8.6 16.1 4.2 9.1 4.1 9.9 7.4 21.1 6.4 23.3 3 13 2.8 14 1.5 23.4 2.4 47.1.8 38.6-.5 29.5-.7 14.5-1.2 13.9-3 23.3-1.7 9.5-4.2 17.5-2.7 8.6-3 8-3.2 7.5-3.6 6.9-3.2 5.5-3.5 5-3.6 4.7-3.9 4.3-9.5 9-4.4 4.8-3.4 4.6-2.7 4.3-2.3 4.8-1.6 4.5-1 4.3-.4 4.1.1 4.3.5 4 1 4 1.5 3.8 4 7.2 5.4 6.7 4.2 4 4.6 3.7 5 3.4 5.2 3 5.4 2.6 5.4 2.2 5.6 1.8 5.4 1.4 8.4 1.5 2.5.9 2 1.2 1.5 1.5 1.2 1.7.9 2.5.4 2.8-.2 3.4-.8 4.1-3.1 7.9-2.4 4.6-3.2 5.1-4.5 6.3-5.5 6.8-6.5 7.2-7 6.9-7.8 7-8.7 7.2-9 6.8-9.8 6.6-10.5 6.5-8 4.5-17 8.3-14.3 6-7.4 2.6-9.9 3.1-15.6 4.3-20.1 5-21.6 4.8-25.3 5.1-26.5 4.9-29.4 4.8-30.4 4.4-32.6 4.1-22 2.4-46 4-47 2.8-24 .8-24 .4-23.9-.1-24-.5-23.9-1.1-23.6-1.6-23.3-2.2-17.5-2-17.1-2.4-16.7-2.8-16.4-3.1-16.4-3.6-15.9-4-15.3-4.4L213 802l-8.6-4-8.2-4.4-7.8-4.7-7.4-5.2-7.2-5.5-6.8-5.8-6.5-6.1-6.1-6.4-7.8-8.9-7.2-9.2-6.6-9.5-6.2-9.8-5.8-9.9-5.2-10-4.9-10.2-8.5-19.9-5.4-14.9-4.6-14-4-13.7-6-23.8z",
|
|
594
|
+
fill: "#47b0f1",
|
|
595
|
+
fillOpacity: 0.05
|
|
596
|
+
}
|
|
597
|
+
),
|
|
598
|
+
/* @__PURE__ */ jsx(
|
|
599
|
+
"path",
|
|
600
|
+
{
|
|
601
|
+
d: "m158 329 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H109l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H106l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H155l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",
|
|
602
|
+
fill: "url(#access-denied-icon_svg__a)",
|
|
603
|
+
fillOpacity: 0.1
|
|
604
|
+
}
|
|
605
|
+
),
|
|
606
|
+
/* @__PURE__ */ jsx(
|
|
607
|
+
"path",
|
|
608
|
+
{
|
|
609
|
+
d: "m858 159 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H809l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H806l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H855l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",
|
|
610
|
+
fill: "url(#access-denied-icon_svg__b)",
|
|
611
|
+
fillOpacity: 0.1
|
|
612
|
+
}
|
|
613
|
+
),
|
|
614
|
+
/* @__PURE__ */ jsx(
|
|
615
|
+
"path",
|
|
616
|
+
{
|
|
617
|
+
d: "m514.5 712 32.9.2 31.8.7 30.9 1.1 30.8 1.5 29.5 1.8 28.2 2.2 28.2 2.7 26.5 3 24.8 3.2 24.8 3.7 22.7 3.9 20.7 4 13.5.3 12.9.8 12.4 1.1 12.4 1.6 11.6 1.9 10.9 2.2 10.8 2.6 9.8 2.9 8.8 3.1 8.8 3.6 7.5 3.7 6.5 3.8 4.7 3.2 3.9 3.3 3.3 3.2 2.7 3.3 2.3 3.6 1.6 3.6 1 3.6.3 3.6-.3 3.5-.9 3.5-1.5 3.5-2.2 3.5-2.5 3.2-3.1 3.1-3.8 3.2-4.4 3.2-6.1 3.7-7.2 3.7-8.2 3.5-8.5 3.1-9.3 2.8-10.2 2.7-10.3 2.3-11.1 2-11.8 1.6-27.4 7.1-15.7 3.5.5 6.3-.3 4.4-.8 4.3-1.3 4.3-1.8 4.3-2.5 4.3-5.9 7.8-8.1 8-4.9 3.9-6.2 4.5-7 4.4-7.8 4.3-8.8 4.3-8.6 3.8-19.5 7.3-21.7 6.5-23.3 5.6-12.7 2.4-16.8 2.8-17.6 2.4-18.6 1.9-18.6 1.4-19.3.8-19.9.3-31-.7-14.8-.8-29.1-2.7-14-1.8-26.4-4.4-13.1-2.7-24-6-22.1-7.1-10.2-3.8-9.4-4-8.6-4.1-8.7-4.7-7.6-4.7-6.8-4.7-5.8-4.7-4.6-4.3-4-4.2-3.3-4.3-2.7-4.2-2.2-4.2-28-2.4-26.4-2.6-24.9-2.9-24.9-3.3-23-3.6-21.2-3.7-21.2-4.2-19-4.4-17-4.4-12.9-3.8-11.4-3.7-10-3.8-8.9-3.6-7.4-3.5-6.3-3.5-5.3-3.3-8.3-6.3-3.1-3.2-2.4-3.1-1.8-2.9-1.2-2.9-.7-2.9-.3-2.9.2-2.8.8-2.9 1.1-2.8 1.8-2.9 2.3-3 3-3.1 3.6-3.1 9.5-6.5 6.1-3.3 15.7-7.1 9.7-3.7 11-3.7 12.4-3.7 16.4-4.4 18.4-4.3 20.5-4.2 20.5-3.7 22.3-3.6 24.1-3.3 24.1-3 25.6-2.6 27.2-2.5 55.4-3.7 29.6-1.3 59.9-1.6z",
|
|
618
|
+
fill: "url(#access-denied-icon_svg__c)"
|
|
619
|
+
}
|
|
620
|
+
),
|
|
621
|
+
/* @__PURE__ */ jsx(
|
|
622
|
+
"path",
|
|
623
|
+
{
|
|
624
|
+
d: "m686.6 226.6-1.6-3.7-2-3.2-2.4-2.9-2.8-2.6-3-2.2-3.4-1.9-7.1-2.6-3.8-.8-3.8-.4-7.5.3 5.9-2.9 3.3-1.1 3.5-.8 6.9-.7 3.5.2 3.3.5 3.1 1 3 1.4 2.6 1.9 2.3 2.4 2.3-2.3 2.7-1.9 2.9-1.4 3.1-.9 3.3-.6 3.5-.2 7 .7 3.4.8 6.4 2.4 2.8 1.6-7.4-.3-7.6 1.2-7.2 2.7-3.3 1.9-3.1 2.2-2.8 2.5-2.4 2.9-2 3.2z",
|
|
625
|
+
fill: "url(#access-denied-icon_svg__d)"
|
|
626
|
+
}
|
|
627
|
+
),
|
|
628
|
+
/* @__PURE__ */ jsx(
|
|
629
|
+
"path",
|
|
630
|
+
{
|
|
631
|
+
d: "m770 214.1-1.1-2.6-3-4.2-2-1.8-2.9-2-3.1-1.6-3.4-1.1-3.5-.6-3.5-.2-3.4.2 3-1.5 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.6-1.7 3.9-2.2 4.5-1.1 2.4-.1 3.6.2 3.6.8 3.4 1.2 3 1.6-3.5-.3-3.4.3-3.6.6-3.4 1.2-3.1 1.5-2.9 2-2.5 2.4-2 2.8z",
|
|
632
|
+
fill: "url(#access-denied-icon_svg__e)"
|
|
633
|
+
}
|
|
634
|
+
),
|
|
635
|
+
/* @__PURE__ */ jsx(
|
|
636
|
+
"path",
|
|
637
|
+
{
|
|
638
|
+
d: "m735.2 179.6-1.1-2.6-3-4.2-2-1.8-2.8-2-3.2-1.5-3.4-1.2-3.5-.6-3.4-.2-3.5.3 3-1.6 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.7-1.6 3.8-2.3 4.5-1.1 2.4-.1 3.6.3 3.6.7 3.4 1.2 3 1.6-3.5-.2-3.4.2-3.6.7-3.3 1.1-3.2 1.5-2.9 2-2.5 2.4-2 2.9z",
|
|
639
|
+
fill: "url(#access-denied-icon_svg__f)"
|
|
640
|
+
}
|
|
641
|
+
),
|
|
642
|
+
/* @__PURE__ */ jsx(
|
|
643
|
+
"path",
|
|
644
|
+
{
|
|
645
|
+
d: "m840.7 220.1-1.1-2.4-1.4-1.9-3.7-3.1-4.5-1.8-2.5-.5h-4.8l2.9-1.4 3.2-.9 2.3-.3 4.3.3 2 .7 1.8 1.1 1.5 1.5 1.6-1.5 1.7-1 4.2-1 4.4.3 3.3.9 2.8 1.4h-4.8l-2.4.4-4.5 1.9-3.8 3-1.4 2z",
|
|
646
|
+
fill: "url(#access-denied-icon_svg__g)"
|
|
647
|
+
}
|
|
648
|
+
),
|
|
649
|
+
/* @__PURE__ */ jsx(
|
|
650
|
+
"path",
|
|
651
|
+
{
|
|
652
|
+
d: "M344.6 778.1v-81.9h27.3v-42.3h-27.3v-203h-44.8v203h-62.6l-3.7-.2-3.2-.7-2.8-1.2-2.5-1.5-2.3-2.2-1.7-2.3-1.2-2.4-.8-2.5-.2-2.6 1.1-10.1 27-177.3h-44.4l-30 192.5-.6 8.6.2 5.8.7 5.2 1.2 4.5 1.5 4 1.9 3.5 3.3 4.6 3.5 4 3.6 3.4 3.7 2.8 4 2.3 4.2 1.8 4.3 1.2 4.7.8 5 .3h86.1v81.9z",
|
|
653
|
+
fill: "url(#access-denied-icon_svg__h)"
|
|
654
|
+
}
|
|
655
|
+
),
|
|
656
|
+
/* @__PURE__ */ jsx(
|
|
657
|
+
"path",
|
|
658
|
+
{
|
|
659
|
+
d: "M667.9 711.5h42.9l1.4 3.8 1.7 3.1 2 2.5 2.3 2.1 2.5 1.6 2.9 1.1 3.2.8 3.7.2h70.6l5.2-.3 4.2-.7 3.4-1.1 2.7-1.5 2.1-1.7 1.7-2.1 1.2-2.4.7-2.9.3-3.3v-72l-.3-4.2-.8-3.5-1.3-3-1.6-2.4-2.2-2-2.6-1.6-3.2-1.3-3.9-.8-4.7-.2h-91.4V577h89l5.6-.3 4.4-.8 3.6-1.1 2.9-1.5 2.2-1.8 1.8-2.1 1.2-2.4.8-2.9.3-3.4v-57.8l-.3-4.4-.7-3.7-1.1-3.1-1.4-2.6-1.8-2.2-2.2-1.8-2.6-1.4-3.1-1.1-3.7-.7-4.4-.3h-69.3l-3.7.3-3.3.8-2.8 1.3-2.5 1.8-2.3 2.4-1.9 3-1.7 3.7-1.3 4.5h-43.4l-.4-8.7.3-5.1.8-4.9 1.3-4.8 1.9-4.7 2.5-4.6 3.1-4.6 3.7-4.5 4.4-4.5 3.8-3.2 4.2-2.8 4.4-2.4 4.7-2 5.1-1.5 5.4-1.2 5.9-.7 6.4-.3h81.2l7.6.3 7 .8 6.3 1.3 5.7 1.7 5.2 2.2 4.8 2.5 4.3 3 4 3.4 3.5 3.8 3 4 2.6 4.3 2.1 4.6 1.7 4.9 1.2 5.3.8 5.6.2 6.1v74.1l-.2 4.8-.7 4.9-1.3 5.1-1.8 5.2-2.4 5.4-3.1 5.6 3.3 6 2.5 5.4 1.8 5 1.2 4.6.7 4.2.3 3.8v89.1l-.3 5.7-.7 5.4-1.2 5.1-1.6 4.7-2.1 4.4-2.5 4.1-2.9 3.9-3.5 3.7-4.5 4.1-4.6 3.4-4.5 2.8-4.6 2.3-4.6 1.7-4.6 1.2-4.6.7-4.8.3h-86.9l-7.1-.3-6.6-.7-6-1.2-5.5-1.7-5.1-2.1-4.8-2.4-4.3-2.9-4-3.3-3.7-3.8-3.3-4.2-3.1-4.7-2-3.7-1.8-4.3-1.5-4.7-1.2-5.3-1-5.9z",
|
|
660
|
+
fill: "url(#access-denied-icon_svg__i)"
|
|
661
|
+
}
|
|
662
|
+
),
|
|
663
|
+
/* @__PURE__ */ jsx(
|
|
664
|
+
"path",
|
|
665
|
+
{
|
|
666
|
+
d: "M614.8 562H503.2l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.3 1.3 1.8 1 2.3.7 2.9.2h111.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7zM614.8 613h-81.6l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.4 1.3 1.7 1 2.3.7 2.9.2h81.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7z",
|
|
667
|
+
fill: "#fff"
|
|
668
|
+
}
|
|
669
|
+
),
|
|
670
|
+
/* @__PURE__ */ jsx(
|
|
671
|
+
"path",
|
|
672
|
+
{
|
|
673
|
+
d: "m383 602.5.2 8 .7 7.8 1 7.6 1.4 7.4 1.8 7.3 2.8 9.1 3.4 8.7 3.9 8.4 4.4 8.1 4.9 7.9 5.4 7.4 5.8 7.1 6.3 6.7 6.7 6.3 7.1 5.8 7.4 5.4 7.9 4.9 8.1 4.4 8.4 3.9 8.7 3.4 9.1 2.8 7.3 1.8 7.4 1.4 7.6 1 7.8.7 8 .2 8-.2 7.8-.7 7.6-1 7.4-1.4 7.3-1.8 9.1-2.8 8.7-3.4 8.4-3.9 8.1-4.4 7.9-4.9 7.4-5.4 7.1-5.8 6.7-6.3 6.3-6.7 5.8-7.1 5.4-7.4 4.9-7.9 4.4-8.1 3.9-8.4 3.4-8.7 2.8-9.1 1.8-7.3 1.4-7.4 1-7.6.7-7.8.2-8-.2-8-.7-7.8-1-7.6-1.4-7.4-1.8-7.3-2.8-9.1-3.4-8.7-3.9-8.4-4.4-8.1-4.9-7.9-5.4-7.4-5.8-7.1-6.3-6.7-6.7-6.3-7.1-5.8-7.4-5.4-7.9-4.9-8.1-4.4-8.4-3.9-8.7-3.4-9.1-2.8-7.3-1.8-7.4-1.4-7.6-1-7.8-.7-8-.2-8 .2-7.8.7-7.6 1-7.4 1.4-7.3 1.8-9.1 2.8-8.7 3.4-8.4 3.9-8.1 4.4-7.9 4.9-7.4 5.4-7.1 5.8-6.7 6.3-6.3 6.7-5.8 7.1-5.4 7.4-4.9 7.9-4.4 8.1-3.9 8.4-3.4 8.7-2.8 9.1-1.8 7.3-1.4 7.4-1 7.6-.7 7.8z",
|
|
674
|
+
fill: "url(#access-denied-icon_svg__j)"
|
|
675
|
+
}
|
|
676
|
+
),
|
|
677
|
+
/* @__PURE__ */ jsx(
|
|
678
|
+
"path",
|
|
679
|
+
{
|
|
680
|
+
d: "m422.6 552.8.9 1.9 1.3 1.6 1.8 1.5 4.6 2.1 2.9.7 6.4.5 3.6-.1 7.4-1.2 4-1 7.4-2.9 3.3-1.7 5.8-3.9 4.3-4.2 1.5-2.2 1.1-2.1.7-2.3.1-2.1-.3-2-.9-1.9-1.3-1.7-1.8-1.5-4.6-2.1-6-1.1h-6.9l-7.4 1.2-4 1.1-3.9 1.3-6.8 3.2-3.1 1.9-4.9 4-2.1 2.3-2.6 4.3-.7 2.2-.1 2.1z",
|
|
681
|
+
fill: "#b6dcf2"
|
|
682
|
+
}
|
|
683
|
+
),
|
|
684
|
+
/* @__PURE__ */ jsx(
|
|
685
|
+
"path",
|
|
686
|
+
{
|
|
687
|
+
d: "m523 607.5.3 4.3.8 4.1 1.4 3.9 1.8 3.6 2.3 3.3 2.6 3.1 3.1 2.6 3.3 2.3 3.6 1.8 3.9 1.4 4.1.8 4.3.3 4.3-.3 4.1-.8 3.9-1.4 3.6-1.8 3.3-2.3 3.1-2.6 2.6-3.1 2.3-3.3 1.8-3.6 1.4-3.9.8-4.1.3-4.3-.3-4.3-.8-4.1-1.4-3.9-1.8-3.6-2.3-3.3-2.6-3.1-3.1-2.6-3.3-2.3-3.6-1.8-3.9-1.4-4.1-.8-4.3-.3-4.3.3-4.1.8-3.9 1.4-3.6 1.8-3.3 2.3-3.1 2.6-2.6 3.1-2.3 3.3-1.8 3.6-1.4 3.9-.8 4.1z",
|
|
688
|
+
fill: "#47b0f1"
|
|
689
|
+
}
|
|
690
|
+
),
|
|
691
|
+
/* @__PURE__ */ jsx(
|
|
692
|
+
"path",
|
|
693
|
+
{
|
|
694
|
+
d: "m610.1 528.8-1.3 2.2-.2 1.4.1 2.3.8 2.5 1.3 2.4 1.9 2.4 2.4 2 2.3 1.4 2.5.9 2.2.3 2.6-.7 1.1-.7 1.3-2.2.3-1.5-.2-2.2-.8-2.5-1.3-2.4-1.9-2.4-2.3-2-2.4-1.4-2.5-.9-2.2-.3-1.4.2zM405 637.5l.3 3.2.8 2.9 1.3 2.7 1.7 2.5 2.1 2.1 2.5 1.7 2.7 1.3 2.9.8 3.2.3 3.2-.3 2.9-.8 2.7-1.3 2.5-1.7 2.1-2.1 1.7-2.5 1.3-2.7.8-2.9.3-3.2-.3-3.2-.8-2.9-1.3-2.7-1.7-2.5-2.1-2.1-2.5-1.7-2.7-1.3-2.9-.8-3.2-.3-3.2.3-2.9.8-2.7 1.3-2.5 1.7-2.1 2.1-1.7 2.5-1.3 2.7-.8 2.9zM520 679l.7 3.8 1.9 3.3 2.8 2.4 1.8.8 3.8.7 3.8-.7 3.3-1.9 2.4-2.8 1.3-3.6v-4l-.5-1.8-1.9-3.3-2.8-2.4-1.8-.8-3.8-.7-3.8.7-3.3 1.9-2.4 2.8-.8 1.8z",
|
|
695
|
+
fill: "#b6dcf2"
|
|
696
|
+
}
|
|
697
|
+
),
|
|
698
|
+
/* @__PURE__ */ jsx(
|
|
699
|
+
"path",
|
|
700
|
+
{
|
|
701
|
+
d: "m428.1 793.5 6.2 2.2 3.7 1.7 3.4 2.4.9 1.9-.7 1.9-1.2 1.3-9.6 6-2.2 1.8-1.3 1.6-1 1.8-.3 1.7.1 1.6.5 1.7 2.2 3.2 2.2 2.4 4.4 3.7 8.5 3.9 5.2 1.9 14.6 4 17.2 3.6 20.7 2.8 11.1 1 12.1.6 12.1.2 12.6-.3 13.3-.8 20-2.3 20.8-3.8 9.8-2.4 8.5-2.4 13.4-4.8 6.3-2.9 5.2-2.8 4.2-2.7 3.3-2.6 3.3-3.1 2.5-2.9 1.8-2.8 1.2-2.8.8-2.9.3-2.9v-2.8l-.5-2.7-1.3-3.5-1.7-3.4-2.3-3.3-2.7-3-6.2-5.3-4.7-2.8-7.6-3.8-8.8-3.6-11.3-4.1-12.2-3.8-14.4-3.8-9.9-2.2-22.1-3.9-11.4-1.6-12-1.2-12.6-.8-12.6-.4-13 .2-13.4.6-12 1-19.1 2.3-15.9 3-5.9 1.5-10.2 3.5-3.4 1.6-3.1 1.9-2 1.7-2.7 4.1-2 5-.4 2.4.1 2.4.7 2.3 1.2 2.1 2.1 2.3 3 2.3 3.4 1.9 4.6 2z",
|
|
702
|
+
fill: "url(#access-denied-icon_svg__k)",
|
|
703
|
+
fillOpacity: 0.4
|
|
704
|
+
}
|
|
705
|
+
),
|
|
706
|
+
/* @__PURE__ */ jsx(
|
|
707
|
+
"path",
|
|
708
|
+
{
|
|
709
|
+
d: "m846.9 766.6-1.1-3.6-1.6-3.2-2.1-2.8-2.7-2.5-3.2-2.1-11.6-4.9-2.9-2.3-.5-.9.1-.8.6-1 1.7-1 5.7-.5 2.4.3 2.4.8 2.6 1.5 1.6 1.3 3.6 4.5 3.3 6.2 1.7 4.5.4 2.2z",
|
|
710
|
+
fill: "url(#access-denied-icon_svg__l)"
|
|
711
|
+
}
|
|
712
|
+
),
|
|
713
|
+
/* @__PURE__ */ jsx(
|
|
714
|
+
"path",
|
|
715
|
+
{
|
|
716
|
+
d: "m847.3 767.8-2.8-9.8-2.9-8.3-2.8-7.1-2.7-5.9-2.8-4.8-4-6.1-1-2-.6-2.2-.3-4.1 1.1-3.4.9-1.2 1.3-.8 3-.1 1.6.4 3.2 2 2.7 3.5 1.9 3.6 2.1 5.5 1.9 6.4 1.9 8.9 1.1 9.2.1 7-.4 3.6-.8 3.2-.7 1.5z",
|
|
717
|
+
fill: "url(#access-denied-icon_svg__m)"
|
|
718
|
+
}
|
|
719
|
+
),
|
|
720
|
+
/* @__PURE__ */ jsx(
|
|
721
|
+
"path",
|
|
722
|
+
{
|
|
723
|
+
d: "m848.4 763.7 1-4.7.5-5.4-.1-6.3-.7-7.2-1.5-8.3-5-15.6-.7-3.6-.1-3 .3-1.9.6-1.5 1-1.3 1.2-.9 1.9-.7 2.5-.3 2 .5 2.1 1.2 1.2 1.2 2.3 4 .9 2.5 1.2 7.8.1 10.1-.4 7-.9 5.4-3.3 12.9-2.6 8.1-2.1.4z",
|
|
724
|
+
fill: "url(#access-denied-icon_svg__n)"
|
|
725
|
+
}
|
|
726
|
+
),
|
|
727
|
+
/* @__PURE__ */ jsx(
|
|
728
|
+
"path",
|
|
729
|
+
{
|
|
730
|
+
d: "m851 766.9-.1-8.5.4-7.5.8-6.8 1.2-5.9 1.5-5.3 1.8-4.7 2.1-4.2 2.4-3.6 3.8-4.4 1.8-1.1 1.9-.7 2.1-.2 1.3.2 2.3 1.5.7 1.2.5 1.7.3 2.6-1.7 6.3-1.7 4.1-2.8 5.5-5.4 8-3.9 5-3.6 5.9-2.3 5.6-1.2 4.4-.7.6z",
|
|
731
|
+
fill: "url(#access-denied-icon_svg__o)"
|
|
732
|
+
}
|
|
733
|
+
),
|
|
734
|
+
/* @__PURE__ */ jsx(
|
|
735
|
+
"path",
|
|
736
|
+
{
|
|
737
|
+
d: "m803 769.9 12.3-2.8 2.2-.9 3.7-2.8 2.5-1.3 3.1-1.2 3.3-.8 3.5-.1 2.3.3 2.1.9 2.1 1.3 1.1-1 1.7-.8 1.8-.5 2.1.1 2.5 1.1 1.2 1.1.8-2.2 1.4-1.9 4-3.2 4.4-1.8 2-.4h3.5l2.7.2 2.8.5 3 1.3 1.9 1.2 1.7 1.6 1.7 2.2 1.1 2.5 1 3.2.5 4.2z",
|
|
738
|
+
fill: "url(#access-denied-icon_svg__p)"
|
|
739
|
+
}
|
|
740
|
+
),
|
|
741
|
+
/* @__PURE__ */ jsx(
|
|
742
|
+
"path",
|
|
743
|
+
{
|
|
744
|
+
d: "m610 489.6-.3 1.9-.7 2-1.3 1.9-2 2.1-3 2.2-4 2.3-5.1 2.3-11.3 3.7-14.2 3.1-16.2 2.2-17.5 1.1-9.4.2-9.4-.2-17.5-1.1-16.2-2.2-14.2-3.1-11.3-3.7-5.1-2.3-4-2.3-3-2.2-2-2.1-1.3-1.9-.7-2-.3-1.9.3-2 .7-1.9 1.3-2 2-2 3-2.3 4-2.3 5.1-2.3 5.2-1.9 13.2-3.5 14.9-2.6 16.9-1.7 18.4-.5 9.4.1 17.5 1.1 16.2 2.2 14.2 3.1 11.3 3.7 5.1 2.3 4 2.3 3 2.3 2 2 1.3 2 .7 1.9z",
|
|
745
|
+
fill: "#b6dcf2",
|
|
746
|
+
fillOpacity: 0.2,
|
|
747
|
+
fillRule: "evenodd"
|
|
748
|
+
}
|
|
749
|
+
),
|
|
750
|
+
/* @__PURE__ */ jsx(
|
|
751
|
+
"path",
|
|
752
|
+
{
|
|
753
|
+
d: "m525.7 290 2.8.4 5.2 1.9 4.5 3.1 2 2 2.9 4.4-.1-.7 1.4 1.2 1 3.4.1 3 1.6.2 1.6 1.9.9 3.5-.1 1.9-.6 1.8-1.1 1.5-2.4 1.2-1.8.3-1.1 2.2-3.8 5.5-2.2 2.7-2.5 2.2v9.6l-19 .3.1-11.3-2.1-2-1.8-2.5-1.9-3.3-1.5-3.4h.4l-2.2-.1-1.6-.4-2.2-1.7-1.1-2.4-.2-2.1.3-2 .7-1.7 1-1.3 1.7-.6.9.2.6-4.6 1-3 1.4-2.8 1.9-2.6 2.1-2 2.3-1.6 2.6-1.3 2.7-.8 2.7-.3zm17.8 14 .5 2.3Zm-.4-2.2.4 2.2z",
|
|
754
|
+
fill: "#ebb0b0"
|
|
755
|
+
}
|
|
756
|
+
),
|
|
757
|
+
/* @__PURE__ */ jsx(
|
|
758
|
+
"path",
|
|
759
|
+
{
|
|
760
|
+
d: "m545.7 310.6 2.3-3.1 1-2.2 1.2-3.5.7-3.9.2-4-.4-4-.6-2.6-2.1-4.6-1.6-2-1.8-1.6-3.6-2.3-1.9-.7-5.1-.5-4.7.8-4.6-3-1.9-.8-2.6-.6-3.2.1-4.3 1-4 1.5-1.7.9-2.9 2.6-2.1 2.5-2 3-1.7 3.5-1.4 3.9-.9 4.3-.2 3 .7 4.7 1.3 3.2 5.5 9.2 1.5-1.3 1.3-1.7 4-7.7 2.8-2.9 3.1-2.5 3.3-2.2 3.6-1.8 5.1-.6 3.8-.1 2.4.3 2.1.7 1.9 1.1 1.7 1.4 1.7 2.2 1.7 3.1z",
|
|
761
|
+
fill: "#131322"
|
|
762
|
+
}
|
|
763
|
+
),
|
|
764
|
+
/* @__PURE__ */ jsx(
|
|
765
|
+
"path",
|
|
766
|
+
{
|
|
767
|
+
d: "m515.5 335.5 6.5 4.2 3.4.9 1.3-.2 1.5-.7 5.4-4.2 9.1 1.3 5.3 1.3 5.9 2 5.9 2.4 6.3 3 6.1 3.6 6 4.2-.3 20.4-.5 8.6-1.4 13.6-3 16.3-5.4 22.4-9.1 16.2-8.7 13.6-2.7 3-4.3 1.9-4 1.4-3.7.9-7.8.7-10-.5-6.8-.8-3-1.6-4.8-3.6-9.9-8.4-2.6-2.4-1.7-2.7-8.2-17.6-3.8-10.3-2.6-10.4-1.3-29.6-.7-29.5 2.5-3.3 2.6-2.7 2.7-2.3 5.9-3.6 7.7-2.9z",
|
|
768
|
+
fill: "url(#access-denied-icon_svg__q)"
|
|
769
|
+
}
|
|
770
|
+
),
|
|
771
|
+
/* @__PURE__ */ jsx(
|
|
772
|
+
"path",
|
|
773
|
+
{
|
|
774
|
+
d: "M512 346.1h23.1l1.6.3 1.2.9.9 1.2.3 1.6v37.8l-.3 1.6-.9 1.3-1.2.8-1.6.3H512l-1.6-.3-1.2-.8-.9-1.3-.3-1.6v-37.8l.3-1.6.9-1.2 1.2-.9z",
|
|
775
|
+
fill: "url(#access-denied-icon_svg__r)"
|
|
776
|
+
}
|
|
777
|
+
),
|
|
778
|
+
/* @__PURE__ */ jsx(
|
|
779
|
+
"path",
|
|
780
|
+
{
|
|
781
|
+
d: "m498.4 386.8 1.8-4.6 1.9-3.9 2.1-3.4 2.3-2.8 2.3-1 .4.2.1.4-.9 1.4 4.3-.7 2.1.4 2.6 1.5 2.3 3.1 1.7 5.6-2 4.3-1.5 2.4-4 4.4-4.3 2.7-4.1 1.1-2.2-.4-1.7-.9-1.4-1.3-1-2-.6-2.7z",
|
|
782
|
+
fill: "#efba9e"
|
|
783
|
+
}
|
|
784
|
+
),
|
|
785
|
+
/* @__PURE__ */ jsx(
|
|
786
|
+
"path",
|
|
787
|
+
{
|
|
788
|
+
d: "m468.7 355.3 2.7-2.9 2.6-2.1 2.3-1.3 2.2-.7 2.2-.2 2.1.3 2.2.8 2.3 1.5 2.4 2.1 1 1.4 1 2.2.9 3.2.9 5.1.6 6.8.2 7.1-.4 16.5-1.3 17.6-2.9 24.5-2.2 2.3-4 2.9-1.9.8-2.8.6h-2.6l-2.6-.6-2.4-1.1-2.2-1.4-2-1.9-1.8-2.1-2.4-5-2.2-10.6-1.5-9.8-.7-9.1-.1-8.3.5-7.8 1-7.1 1.5-6.6 2-6.1 2.5-5.7z",
|
|
789
|
+
fill: "url(#access-denied-icon_svg__s)"
|
|
790
|
+
}
|
|
791
|
+
),
|
|
792
|
+
/* @__PURE__ */ jsx(
|
|
793
|
+
"path",
|
|
794
|
+
{
|
|
795
|
+
d: "m470.7 426.7 1.4-5 1.8-5 2.4-4.8 2.9-4.8 3.6-4.8 4.1-4.8 4.9-4.8 5.6-4.7 1.8-.5 3.5-.1 3.3 1.1 1.4 1.1 1.1 1.4 1 1.8.7 2.4-.1 4.5-1.6 8-1.3 4.8-4 10.5-2.7 5.2-3 4.9-3.4 4.3-2.6 2.6-2.7 2.1-2.9 1.7-4.1.6h-3.2l-2.5-.5-2-.9-1.6-1.3-1.2-1.7-.8-2.2-.5-2.9.1-3.6z",
|
|
796
|
+
fill: "url(#access-denied-icon_svg__t)"
|
|
797
|
+
}
|
|
798
|
+
),
|
|
799
|
+
/* @__PURE__ */ jsx(
|
|
800
|
+
"path",
|
|
801
|
+
{
|
|
802
|
+
d: "m550.1 386.8-1.7-4.6-2-3.9-2.1-3.4-2.2-2.8-2.3-1-.5.2v.4l.9 1.4-4.4-.7-2 .4-2.6 1.5-2.3 3.1-1.7 5.6 1.9 4.3 1.5 2.4 4.1 4.4 4.3 2.7 4 1.1 2.3-.4 1.7-.9 1.3-1.3 1-2 .7-2.7z",
|
|
803
|
+
fill: "#efba9e"
|
|
804
|
+
}
|
|
805
|
+
),
|
|
806
|
+
/* @__PURE__ */ jsx(
|
|
807
|
+
"path",
|
|
808
|
+
{
|
|
809
|
+
d: "m579.9 355.3-2.8-2.9-2.5-2.1-2.4-1.3-2.2-.7-2.1-.2-2.2.3-2.2.8-2.2 1.5-2.4 2.1-1.1 1.4-1 2.2-.9 3.2-.8 5.1-.6 6.8-.2 7.1.4 16.5 1.2 17.6 3 24.5 2.1 2.3 4.1 2.9 1.9.8 2.8.6h2.6l2.5-.6 2.4-1.1 2.2-1.4 2.1-1.9 1.7-2.1 2.5-5 2.2-10.6 1.4-9.8.8-9.1.1-8.3-.5-7.8-1-7.1-1.5-6.6-2-6.1-2.5-5.7z",
|
|
810
|
+
fill: "url(#access-denied-icon_svg__u)"
|
|
811
|
+
}
|
|
812
|
+
),
|
|
813
|
+
/* @__PURE__ */ jsx(
|
|
814
|
+
"path",
|
|
815
|
+
{
|
|
816
|
+
d: "m577.8 426.7-1.3-5-1.9-5-2.3-4.8-3-4.8-3.5-4.8-4.2-4.8-4.8-4.8-5.6-4.7-1.9-.5-3.5-.1-3.2 1.1-1.4 1.1-1.2 1.4-.9 1.8-.7 2.4v4.5l1.6 8 1.4 4.8 4 10.5 2.6 5.2 3.1 4.9 3.4 4.3 2.6 2.6 2.7 2.1 2.8 1.7 4.1.6h3.2l2.6-.5 2-.9 1.5-1.3 1.2-1.7.9-2.2.4-2.9v-3.6z",
|
|
817
|
+
fill: "url(#access-denied-icon_svg__v)"
|
|
818
|
+
}
|
|
819
|
+
),
|
|
820
|
+
/* @__PURE__ */ jsx(
|
|
821
|
+
"path",
|
|
822
|
+
{
|
|
823
|
+
d: "m579.2 440.7 4.6-1.3 3.3-.6 3.4-.1 3.8.5 2.4.7 2.4 1.1 2.3 1.7 1.9 2 1.7 2.8 1.6 3.6.8 3.5.2 2.8-.3 2.4-1.6 4.3-1.3 1.6-2.2 2.1-2.3 1.5-2.4 1.2-3.6 1.2-13.7 2.5-6 19-48.4-8.9-48.5 8.9-6-19-15.4-3-4.2-1.8-2.3-1.6-2.2-2.1-2.2-3.6-.7-2.3-.3-2.4.3-2.8.8-3.4 1.5-3.7 1.7-2.8 2-2 2.3-1.7 2.3-1.1 2.4-.7 3.8-.5 3.4.2 3.3.5 57.9 15.6z",
|
|
824
|
+
fill: "url(#access-denied-icon_svg__w)"
|
|
825
|
+
}
|
|
826
|
+
),
|
|
827
|
+
/* @__PURE__ */ jsx(
|
|
828
|
+
"path",
|
|
829
|
+
{
|
|
830
|
+
d: "m472.7 479-5.9.4-13.7-.2-2.6.1-4 1-.7.6-.9 1.6-.8 3.8.2 5 .4 2.1 1.5 3 .8.8 1.6.6 1.6-.1 19.7-4.3 7-1.9zm106.1 0 5.9.4 13.8-.2 2.6.1 4 1 .8.7.8 1.5.8 3.8-.1 5-.5 2.2-1.5 3-.7.8-1.7.6-1.6-.1-19.8-4.3-7.1-1.9z",
|
|
831
|
+
fill: "#333"
|
|
832
|
+
}
|
|
833
|
+
),
|
|
834
|
+
/* @__PURE__ */ jsx(
|
|
835
|
+
"path",
|
|
836
|
+
{
|
|
837
|
+
d: "m610.8 308.8 7.2-.9.8 5.5.7 1.8 2.3 2.9 3 2 3.7.8 2-.1 5.6-.8 1.8-.7 2.9-2.2 2-3.1.6-1.7.2-4-1.1-3.7-2.3-2.9-3-2-3.7-.8-5.6.5-.9-7.1 7-.6 3.1.4 2.9 1 2.8 1.4 2.4 1.9 2 2.3 1.7 2.6 1.2 2.9.7 3.3.1 3.3-.5 3.1-.9 2.9-1.5 2.8-1.9 2.3-2.3 2.1-2.6 1.7-2.9 1.1-3.3.7-6.5.6-2.7-.3-2.6-.7-2.5-1.1-4.3-3.2-1.8-2.1-1.5-2.3-1.1-2.5-7.6.9-.8-7.2zm-10.8 1.3.9 7.1-7.2.9-.9-7.1z",
|
|
838
|
+
fill: "url(#access-denied-icon_svg__x)"
|
|
839
|
+
}
|
|
840
|
+
),
|
|
841
|
+
/* @__PURE__ */ jsx(
|
|
842
|
+
"path",
|
|
843
|
+
{
|
|
844
|
+
d: "m578.8 271.1 3.7-3.7 3.6 3.2 1.8.7 2 .3 2-.3 1.8-.8 1.7-1.3 3.2-3.6.8-1.9.3-1.9-.3-2-.7-1.8-1.3-1.7-1.8-1.4-1.8-.7-2-.3-1.9.3-1.9.8-3.6 3.2-3.7-3.7 3.8-3.4 1.9-1.2 2.2-.7 4.3-.4 4.3 1.1 2 1.1 1.9 1.5 1.5 1.9 1.1 2 .8 2.1.4 4.4-1.2 4.3-1.2 1.9-3.4 3.8-3.3 2.4-3.7 1.2-3.9.1-1.9-.4-3.6-1.6-3.9 3.9-3.7-3.7zm-5.6 5.6 3.7 3.7-3.7 3.7-3.7-3.7z",
|
|
845
|
+
fill: "url(#access-denied-icon_svg__y)"
|
|
846
|
+
}
|
|
847
|
+
),
|
|
848
|
+
/* @__PURE__ */ jsx(
|
|
849
|
+
"path",
|
|
850
|
+
{
|
|
851
|
+
d: "m54.2 676.4-7.9-3.2-6.7-2.2-5.6-1.4-4.8-.5h-4l-3.3.5-2.9 1-2.4 1.4-2 1.8-1.7 2.3-1.4 2.8-1 3.5-.7 4.3-.1 5.1.4 6.2 1.3 4.8 1.4 3.8 1.7 3 1.8 2.4 2 1.7 2.1 1.3 6 7.6 4.7 6.8 3.6 5.9 2.6 5.2 1.8 4.6 1.1 4 1.2 7.7 1.2 4.3 2.8 5.2 1.8 2.4 2.2 2.1 2.5 1.9 3 1.5 3.1 1.1 3.6.7 4.2.3 4.2-.3 4.8-.9 10.1-2.7 4.1-.5 3.7.1 3.5.7 3.2 1.3 3.1 1.8 3 2.5 2.8 3.2 2.7 4.1 2.6 5 2.4 6.2 2.2 7.5 4.4 5.2 4.7 4.8 5.2 4.4 5.6 4 6.1 3.5 6.6 3.1 7.1 2.8 7.7 2.2 8.4 1.8 9 1.4 9.8.8 10.6.2 11.5-.3 12.5-1.1 9.1-1.2 7.3-1.6 5.8-1.7 4.5-2 3.5-2.1 2.5-2.1 1.9-2.3 1.2-2.4.7-2.6.1-2.9-.5-3.1-1.2-3.6-2-4-3.1-4.7-4.4-5.4-5.9-6.1-7.6-7-9.8-8-12.1-9.1-12.6-4.8-10-3.4-16.3-4.2-2-1.1-1.9-1.5-1.6-2.1-1.5-2.6-1.2-3.4-1-4.3-.6-5.3-.4-9.8-.7-2.9-1.3-2.9-1.7-2.6-2.3-2.5-2.9-2.5-3.7-2.3-4.6-2.1-11-4.1-4.4-2.2-3.4-2.3-2.5-2.4-1.9-2.5-1.2-2.6-.7-2.8-.1-3 .5-3.3-3.1-4.1-3.1-3.2-3-2.4-3-1.7-3-1.1-3.1-.5h-3.2l-3.3.6-3.6 1.3-3.8 1.9-8.8 6.1L81 679l-4 1.7-3.8 1-3.5.5-3.3-.1-3.2-.6-3-1.2-3.1-1.6z",
|
|
852
|
+
fill: "url(#access-denied-icon_svg__z)"
|
|
853
|
+
}
|
|
854
|
+
),
|
|
855
|
+
/* @__PURE__ */ jsx(
|
|
856
|
+
"path",
|
|
857
|
+
{
|
|
858
|
+
d: "m52.6 691.5 48.3 32.2-2.1-9.9-2.2-8.4-2.2-7.1-3.3-8.6 4.4 9.7 3.4 8.8 2.8 9.1.9 4.3.3 3.4 40.2 26.9.5-20.5-.4-6.9-.7-5.2-.8-3.8 1.6 4.6.7 3.5 1.7 13.9.4 9.1-.5 7 37.1 24.7-.4-.4.8-8.1.1-7-.7-6.4 1.2 3.6.8 6.4.4 7.3-.1 6.1 30.6 20.3-3.9 3.9-31.5-22.3-6 2.7-8.1 2-4.5.5h-7.3l6.6-.8 5.5-1.2 4.4-1.5 3.6-1.7 2.8-1.9 2.5 1.5-88.8-62.8.6.6-6.8.8-6.4.2-6-.2-5.7-.6-5.4-1.1-5.2-1.4 1.2-.3 8.8 1.5 4.6.5 5.7.3 8.2-.7 4.6-.9zM94 768.4l4-.2 4.5-.8 5-1.5 5.7-2.3 6.5-3.4 7.2-4.4 8.2-5.7 2.3 2.2-5.5 4-5.4 3.4-5.2 2.7-5.4 2.4-5 1.7-4.7 1.2-4.7.7-4.1.2z",
|
|
859
|
+
fill: "url(#access-denied-icon_svg__A)"
|
|
860
|
+
}
|
|
861
|
+
),
|
|
862
|
+
/* @__PURE__ */ jsx(
|
|
863
|
+
"path",
|
|
864
|
+
{
|
|
865
|
+
d: "m89.6 607.3-7.5-4.8-6.3-3.5-5.4-2.4-4.6-1.5-3.9-.8-3.2-.1-2.8.3-2.4.8-2.1 1.2-1.9 1.7-1.5 2.3-1.4 2.8-1 3.6-.7 4.5-.3 5.5.2 6.9 5.3 21.2 1.9 9.3 1.2 8.1.3 5.3v5.1l-.8 7.7.2 7 1.5 7.6 3 8.1 2.1 4 2.7 4 3 3.7 3.7 3.7 4.3 3.5 7.2 4.5 4.4 2 10.9 4.3 4.8 2.4 3.8 2.4 2.8 2.4 2.1 2.5 1.5 2.4.9 2.4.4 2.6-.2 2.7-.7 2.9-1.3 3.2-2.1 3.5-.5 3.4v3.3l.6 3.1 1.2 3.1 1.7 3 2.3 3 3.2 3 4 3 5 3.1 6.1 3 7.5 3 9 3 10.7 2.9 12.6 2.8 14.8 2.7 12.2 1.7 10.1 1.1 8.1.4 11.6-.3 7.7-1.2 3.6-1.2 2.7-1.4 2.1-1.5 1.6-1.6 1.2-1.9.8-2.1.5-2.3v-2.6l-.5-3.4-1-3.9-1.6-4.2-3.1-6.4-3.9-7-9-14.4-5.5-5.9-4-5-2.3-3.4-3.2-5.9-1.5-4.5-.9-4.2-.5-4.3.1-7.6 1.6-10.9.1-3.8-.3-3.8-1.5-4.8-1.4-2.4-1.8-2.2-2.3-2.1-3.2-2.1-3.4-1.8-4.3-1.6-9-2.7-3.2-1.5-2.9-2-2.6-2.5-2.4-3-2.2-3.5-1.9-4.3-1.6-5.1-1.3-5.9-1-7-.4-8.1-.8-3-1.3-2.6-1.6-2.1-2.1-1.8-2.6-1.5-3.3-1.1-3.9-.7-4.9-.3-5.9.4-7.1 1-8.5 1.9-3.6.4h-3.5l-3.6-.6-3.7-1.1-3.7-1.6-3.9-2.3-4-3-4.2-3.7z",
|
|
866
|
+
fill: "url(#access-denied-icon_svg__B)"
|
|
867
|
+
}
|
|
868
|
+
),
|
|
869
|
+
/* @__PURE__ */ jsx(
|
|
870
|
+
"path",
|
|
871
|
+
{
|
|
872
|
+
d: "m74.9 624.7 35.5 45.1 1.7-4.9 1.2-4.7.6-4.7.2-4.7-.4-4.7-1-5.1 2.8 9 .6 3.6.1 3.8-.5 4.5-.7 2.9-2.9 7.2 30 38.2 2.8-4.5 2.2-4.7 1.8-5.2 1.3-5.8.8-6.4.3-7.1.7 5.7-.1 4.2-.4 5.2-1 5.3-1.4 5.6-1.4 3.6-3.6 6.6 26.7 33.9 2.2-4.1 2.5-6.3.8-3.7.3-4.1.5 6.2-.3 3.4-1.5 6.1-2.6 5L212 799h-6.2l-38-50.6-8.7 3.2-8.9 1.6-4.3.2-3.9-.3-3.1-.7-4.9-1.7 4.2.8 4.2.3 4.4-.2 4.4-.7 4.7-1.1 4.8-1.8 5-2.3-28.8-38.5.5.9-7.3 2.3-7.1 1.7-7.1 1.1-6.5.6-6.3.1-5.4-.5-3.4-.6-5.3-1.9 3.3 1 3.8.6 4.5.2 5.2-.2 6-.7 6.9-1.4 8.1-2.1 9.2-3-.5.2-32.1-42.9.2.5-5.4.1-5-.5-4.6-.9-4.3-1.5-4-1.9-3.7-2.4-3.6-2.9-3.3-3.4.5-.1 1.3.8 6.5 4.5 3.5 1.8 3.9 1.6 8.3 2 8.2.3z",
|
|
873
|
+
fill: "url(#access-denied-icon_svg__C)"
|
|
874
|
+
}
|
|
875
|
+
),
|
|
876
|
+
/* @__PURE__ */ jsx(
|
|
877
|
+
"path",
|
|
878
|
+
{
|
|
879
|
+
d: "m199.2 608.8 3.6-4.5 3.2-3.2 2.9-2.1 2.7-1.3 2.6-.6h2.4l2.4.6 2.5 1.3 2.5 2.1 2.7 3 2.9 4.2 3 5.7 1.1 5.3 2 15.9 1.7 4.8 1.4 2.1 1.8 2 2.5 2.1 2.8 1.7 3.7 1.8 8.9 3.4 3.2 1.8 2.5 1.9 1.9 2.1 1.4 2.2.9 2.5.4 2.6v3l-.7 3.3-1.3 3.8-2 4.4-3 5-1.4 3.8-.6 3.2v2.8l.6 2.4 1.1 2.2 1.6 1.9 2.2 1.7 3.1 1.6 6.7 2.2 2 1.3 1.5 1.5 1 1.8.6 2.2.1 2.6-.5 3.3-1.3 4.1-2.2 5-3.4 6.1-4.8 7.4-2.2 5.7-1.2 4.6-.4 3.7.2 3.1.8 2.4 1.1 2 4.1 3.7 4.4 5.1 3.2 5.8 1.2 3.3 1 3.7.6 4.3.1 4.3-.4 4.8-1 5.6-1.5 5.4-2.4 6.1-3.3 7-2.1 3.5-4.6 5.5-2.4 2.1-3.5 2.3-3.7 1.6-3.7 1-3.9.5h-4l-4-.5-3.9-.9-7.7-2.8-5.5-2.8-5-3.3-4.5-3.7-3.6-3.6-2.1-2.7-2.6-4.6-1-3.3-.7-3.4-.2-3.5.3-5.4 3.2-21.1.2-4.6-.2-2.9-.6-2.5-1-2.3-3.1-3.4-2.3-1.7-13-7.5-7.4-5.2-4.9-5.3-1.9-3-1.4-3.4-1-3.9-.3-2.9.7-7 1-4.2 7.6-10.4 3.4-5.1 1.7-4.5.3-5.3-1.2-6.4-1.5-3.9-4.9-9.9-6.5-11.3-.4-1.6v-1.7l.7-2 3.2-5.4 5.8-8.9 3.3-3.8 3.5-5 3.8-6.4 4.1-8.1z",
|
|
880
|
+
fill: "url(#access-denied-icon_svg__D)"
|
|
881
|
+
}
|
|
882
|
+
),
|
|
883
|
+
/* @__PURE__ */ jsx(
|
|
884
|
+
"path",
|
|
885
|
+
{
|
|
886
|
+
d: "m216.1 638.5 11.4 56.9 5.5-8.5 4.4-7.5 3.4-6.6 3.8-8.3-3.8 9.9-3.8 8.6-4.5 8.4-2.4 3.7-2.2 2.7 9.5 47.4 14.8-14.2 4.6-5.1 3.2-4.1 2.1-3.3-2.1 4.3-2 3-8.6 11-6.2 6.8-5.2 4.6 8.7 43.6v-.5l6.2-5.2 5.1-4.8 4.1-5-1.8 3.3-3.9 5.1-4.9 5.5-4.3 4.2 7.2 36h-5.5l-6.5-38.1-6.2-2.3-7.1-4.3-3.5-2.8-5.2-5.1 5.3 4 4.6 3 4.2 2.1 3.8 1.3 3.4.7.6 2.9L224 684.5l-.1.9-5.3-4.3-4.7-4.3-4.1-4.4-3.6-4.5-3.1-4.6-2.6-4.7 1 .6 5.2 7.4 2.9 3.6 3.9 4.2 6.2 5.3 3.9 2.6zM191 722.1l2.9 2.7 3.8 2.6 4.6 2.5 5.7 2.4 6.9 2.2 8.3 2 9.8 1.8v3.1l-6.7-1-6.2-1.5-5.6-1.7-5.5-2.2-4.8-2.3-4.1-2.4-3.8-2.8-3-2.8z",
|
|
887
|
+
fill: "url(#access-denied-icon_svg__E)"
|
|
888
|
+
}
|
|
889
|
+
),
|
|
890
|
+
/* @__PURE__ */ jsx(
|
|
891
|
+
"path",
|
|
892
|
+
{
|
|
893
|
+
d: "m938.4 787.5.5-6.1v-5.3l-.5-4.6-.9-4-1.3-3.3-1.7-3-2-2.5-2.3-2.1-2.8-1.8-3.3-1.4-3.7-1.1-4.4-.7 5-.2 4.5.2 4.2.7 3.9 1 3.5 1.4 3.5 1.8 3.1 2.2 2.8 2.5 2.5 2.8 2.2 3.3 1.7 3.3 1.4 3.7 1.1 4 .7 4.4.3 4.8z",
|
|
894
|
+
fill: "url(#access-denied-icon_svg__F)"
|
|
895
|
+
}
|
|
896
|
+
),
|
|
897
|
+
/* @__PURE__ */ jsx(
|
|
898
|
+
"path",
|
|
899
|
+
{
|
|
900
|
+
d: "m950.1 787.6 1.1-6.4.5-6-.1-5.4-.6-5.1-1.2-4.6-1.6-4.4-2-4-2.6-3.8-3-3.5-3.7-3.3-4.2-3.1 5.2 1.7 9.3 4.2 4.2 2.5 4 3 3.6 3.4 4.8 6.1 2.1 3.7 3.6 8.4 2.8 10.4 1.1 6.2-14.1.4z",
|
|
901
|
+
fill: "url(#access-denied-icon_svg__G)"
|
|
902
|
+
}
|
|
903
|
+
),
|
|
904
|
+
/* @__PURE__ */ jsx(
|
|
905
|
+
"path",
|
|
906
|
+
{
|
|
907
|
+
d: "m977.1 788-.4-6.3.3-5.4.8-4.7 1.2-4.1 1.6-3.6 2.1-3.1 2.4-2.6 2.9-2.3 3.4-1.9 4-1.5 4.6-1.1h-9.8l-3.3.3-6.7 1.4-3.2 1.3-3.2 1.8-3.3 2.3-3 2.8-3 3.6-3.2 4.6-2.7 4.9-2.7 6.1-2.8 7.5 15.2-.3z",
|
|
908
|
+
fill: "url(#access-denied-icon_svg__H)"
|
|
909
|
+
}
|
|
910
|
+
),
|
|
911
|
+
/* @__PURE__ */ jsx(
|
|
912
|
+
"path",
|
|
913
|
+
{
|
|
914
|
+
d: "m927.4 802 15.3-.5 5.8-1.3 2.5-1.1 2.1-1.5 1.6-1.9 1-1.6 1.1-4.5.2-3-.3-3.9-.8-3.7-1.3-3.5-1.8-3.3-2.1-3.1-2.6-2.7-3-2.4-3.2-2.1-3.5-1.7-3.8-1.2-3.9-.7-4.2-.3-4.2.3-3.9.7-3.8 1.2-3.5 1.7-3.2 2.1-3 2.4-2.6 2.7-2.1 3.1-1.8 3.3-1.3 3.5-.8 3.7-.3 3.9.2 3 1.3 4.4 1 1.7 1.9 1.9 2.2 1.5 2.8 1.1 6.2 1.3z",
|
|
915
|
+
fill: "url(#access-denied-icon_svg__I)"
|
|
916
|
+
}
|
|
917
|
+
),
|
|
918
|
+
/* @__PURE__ */ jsx(
|
|
919
|
+
"path",
|
|
920
|
+
{
|
|
921
|
+
d: "m960.6 802 10.5-.4 4.2-1.4 2.3-2.1.7-1.4.7-4.1-.3-3.2-.9-3-1.4-2.7-1.9-2.5-2.2-2-2.7-1.8-2.9-1.3-3.2-.8-3.5-.3-3.5.3-3.2.8-2.9 1.3-2.7 1.8-2.2 2-1.9 2.5-1.4 2.7-.9 3-.3 3.2.2 2.3.6 1.8.8 1.4 2.5 2.1 4.6 1.4z",
|
|
922
|
+
fill: "url(#access-denied-icon_svg__J)"
|
|
923
|
+
}
|
|
924
|
+
)
|
|
925
|
+
] });
|
|
926
|
+
}
|
|
927
|
+
const Memo = memo(SvgAccessDeniedIcon);
|
|
928
|
+
|
|
929
|
+
export { Memo as default };
|