@a.nemreen/dga-ui 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +400 -0
- package/fesm2022/a.nemreen-dga-ui.mjs +9855 -0
- package/index.d.ts +5 -0
- package/lib/content/code/dga-code.d.ts +8 -0
- package/lib/content/list/dga-description-list.d.ts +13 -0
- package/lib/content/list/dga-list.d.ts +7 -0
- package/lib/content/metric/dga-metric.d.ts +17 -0
- package/lib/content/number/dga-number.d.ts +36 -0
- package/lib/content/persona/dga-persona.d.ts +11 -0
- package/lib/content/quote/dga-quote.d.ts +7 -0
- package/lib/data/carousel/dga-carousel.d.ts +79 -0
- package/lib/data/chart/dga-chart.d.ts +153 -0
- package/lib/data/export/dga-export-toolbar.d.ts +19 -0
- package/lib/data/export/dga-export.d.ts +26 -0
- package/lib/data/table/dga-table.d.ts +50 -0
- package/lib/domain/saudi-cities/dga-saudi-cities.d.ts +16 -0
- package/lib/feedback/a11y/dga-skip-link.d.ts +11 -0
- package/lib/feedback/accessibility/dga-accessibility.d.ts +133 -0
- package/lib/feedback/accessibility/dga-accessibility.service.d.ts +78 -0
- package/lib/feedback/alert/dga-alert.d.ts +27 -0
- package/lib/feedback/cookies/dga-cookies.d.ts +64 -0
- package/lib/feedback/copy/dga-copy.d.ts +43 -0
- package/lib/feedback/empty/dga-empty.d.ts +11 -0
- package/lib/feedback/feedback/dga-feedback.d.ts +30 -0
- package/lib/feedback/page-feedback/dga-page-feedback.d.ts +72 -0
- package/lib/feedback/rating/dga-rating.d.ts +17 -0
- package/lib/feedback/share/dga-share.d.ts +39 -0
- package/lib/forms/autocomplete/dga-autocomplete.d.ts +19 -0
- package/lib/forms/checkbox/dga-checkbox.d.ts +9 -0
- package/lib/forms/chip-input/dga-chip-input.d.ts +20 -0
- package/lib/forms/date-picker/dga-date-calendar.d.ts +44 -0
- package/lib/forms/date-picker/dga-date-picker.d.ts +152 -0
- package/lib/forms/field/dga-field.d.ts +22 -0
- package/lib/forms/form/dga-form-control.d.ts +50 -0
- package/lib/forms/form/form-control.styles.d.ts +16 -0
- package/lib/forms/input/dga-input.d.ts +13 -0
- package/lib/forms/label/dga-label.d.ts +8 -0
- package/lib/forms/multiselect/dga-multiselect.d.ts +20 -0
- package/lib/forms/number-input/dga-number-input.d.ts +25 -0
- package/lib/forms/otp/dga-otp.d.ts +19 -0
- package/lib/forms/phone-input/dga-phone-input.d.ts +33 -0
- package/lib/forms/radio/dga-radio.d.ts +9 -0
- package/lib/forms/select/dga-native-select.d.ts +15 -0
- package/lib/forms/select/dga-select.d.ts +65 -0
- package/lib/forms/slider/dga-slider.d.ts +7 -0
- package/lib/forms/switch/dga-switch.d.ts +14 -0
- package/lib/forms/upload/dga-upload.d.ts +32 -0
- package/lib/layout/card/dga-card-media.d.ts +13 -0
- package/lib/layout/card/dga-card.d.ts +89 -0
- package/lib/layout/clamp/dga-clamp.d.ts +11 -0
- package/lib/layout/expandable/dga-expandable.d.ts +14 -0
- package/lib/layout/grid/dga-grid.d.ts +10 -0
- package/lib/layout/section/dga-section.d.ts +22 -0
- package/lib/navigation/accordion/dga-accordion-item.d.ts +12 -0
- package/lib/navigation/accordion/dga-accordion.d.ts +10 -0
- package/lib/navigation/breadcrumb/dga-breadcrumb.d.ts +13 -0
- package/lib/navigation/filter-bar/dga-filter-bar.d.ts +18 -0
- package/lib/navigation/pagination/dga-pagination.d.ts +14 -0
- package/lib/navigation/scroll-top/dga-scroll-top.d.ts +35 -0
- package/lib/navigation/side-nav/dga-side-nav.d.ts +21 -0
- package/lib/navigation/stepper/dga-stepper.d.ts +15 -0
- package/lib/navigation/tabs/dga-tab.d.ts +12 -0
- package/lib/navigation/tabs/dga-tabs.d.ts +14 -0
- package/lib/navigation/toc/dga-toc.d.ts +16 -0
- package/lib/navigation/toolbar/dga-toolbar.d.ts +7 -0
- package/lib/overlays/dialog/dga-dialog.d.ts +28 -0
- package/lib/overlays/drawer/dga-drawer.d.ts +28 -0
- package/lib/overlays/image-popup/dga-image-popup.d.ts +65 -0
- package/lib/overlays/menu/dga-menu.d.ts +50 -0
- package/lib/overlays/modal/dga-modal.d.ts +44 -0
- package/lib/overlays/toast/dga-toast-outlet.d.ts +11 -0
- package/lib/overlays/toast/dga-toast.d.ts +24 -0
- package/lib/overlays/toast/dga-toast.service.d.ts +39 -0
- package/lib/overlays/tooltip/dga-tooltip.d.ts +60 -0
- package/lib/primitives/avatar/dga-avatar.d.ts +13 -0
- package/lib/primitives/badge/dga-badge.d.ts +10 -0
- package/lib/primitives/button/dga-button.d.ts +20 -0
- package/lib/primitives/chip/dga-chip.d.ts +11 -0
- package/lib/primitives/divider/dga-divider.d.ts +10 -0
- package/lib/primitives/icon/dga-icon-badge.d.ts +14 -0
- package/lib/primitives/icon/dga-icon-font.service.d.ts +14 -0
- package/lib/primitives/icon/dga-icon-registry.d.ts +9 -0
- package/lib/primitives/icon/dga-icon.d.ts +40 -0
- package/lib/primitives/link/dga-link.d.ts +10 -0
- package/lib/primitives/progress/dga-progress.d.ts +25 -0
- package/lib/primitives/skeleton/dga-skeleton.d.ts +30 -0
- package/lib/primitives/spinner/dga-spinner.d.ts +12 -0
- package/lib/shell/footer/dga-footer.d.ts +60 -0
- package/lib/shell/header/dga-header.d.ts +343 -0
- package/lib/shell/hero/dga-hero.d.ts +128 -0
- package/lib/shell/logo-tile/dga-logo-tile.d.ts +11 -0
- package/lib/shell/preloader/dga-preloader.d.ts +55 -0
- package/lib/shell/side-info/dga-side-info.d.ts +19 -0
- package/lib/shell/top-bar/dga-top-bar.d.ts +63 -0
- package/lib/shell/top-bar/sa-flag.d.ts +2 -0
- package/lib/utils/cx.d.ts +2 -0
- package/lib/utils/locale.d.ts +2 -0
- package/package.json +61 -0
- package/public-api.d.ts +91 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const DGA_SA_FLAG_SVG = "<svg width=\"20\" height=\"14\" viewBox=\"0 0 20 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"20\" height=\"14\" fill=\"#006923\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.1 3C8.1 3 8.1 3 8.1 3C8 3.1 7.9 3.2 7.9 3.4C7.9 3.5 7.8 3.5 7.9 3.5C7.9 3.6 8 3.6 8.1 3.5C8.1 3.5 8.1 3.5 8.2 3.4C8.2 3.3 8 3.5 8 3.3C8 3.2 8.1 3.2 8.2 3.1C8.2 3 8.2 3 8.1 3V3ZM9.4 3C9.4 3 9.4 3 9.3 3.1C9.3 3.2 9.2 3.3 9.3 3.6C9.3 3.7 9.4 4 9.3 4.3C9.3 4.3 9.3 4.4 9.2 4.4C9.1 4.6 9 4.5 8.9 4.5C8.8 4.4 8.8 4.4 8.7 4.2C8.7 4 8.8 3.6 8.7 3.5C8.6 3.3 8.5 3.4 8.5 3.4C8.2 3.7 8.1 4 8.1 4.3C8 4.5 7.9 4.4 7.9 4.4C7.8 4.3 7.8 3.4 7.6 3.5C7.4 4.2 7.7 4.9 8 4.8C8.2 4.9 8.3 4.6 8.4 4.2C8.4 4.1 8.4 4.1 8.5 4.1C8.5 4.6 8.5 4.7 8.6 4.9C8.9 5.1 9.2 4.9 9.2 4.9L9.4 4.7C9.5 4.6 9.5 4.6 9.6 4.7C9.7 4.7 9.6 4.8 9.8 4.9C9.9 5 10.2 4.9 10.2 4.8C10.3 4.7 10.3 4.6 10.4 4.6C10.4 4.5 10.5 4.5 10.5 4.6C10.5 4.6 10.5 4.6 10.5 4.7C10.6 4.8 10.6 4.7 10.6 4.7C10.8 4.7 10.9 4.3 10.9 4.3C10.9 4.2 10.8 4.2 10.8 4.3C10.7 4.3 10.7 4.3 10.7 4.3C10.6 4.3 10.5 4.4 10.4 4.3C10.3 4.2 10.3 4 10.3 3.9C10.3 3.8 10.2 3.7 10.3 3.6C10.3 3.6 10.4 3.7 10.4 3.6C10.5 3.5 10.3 3.3 10.2 3.2C10.1 3.1 10 3.1 9.9 3.2C9.8 3.3 9.8 3.3 9.8 3.4C9.8 3.5 9.8 3.6 9.9 3.7C10 3.9 10.1 4.1 10.1 4.4C10.1 4.4 10 4.5 9.8 4.5C9.8 4.5 9.7 4.5 9.6 4.1C9.6 3.8 9.6 3.3 9.5 3.2C9.5 3.1 9.5 3 9.4 3L9.4 3ZM9 3C9 3 8.9 3.1 8.9 3.2C8.9 3.2 8.8 3.6 8.8 3.6C8.8 3.7 8.9 3.7 9 3.6C9.1 3.4 9.1 3.3 9.1 3.2C9.1 3.1 9 3 9 3ZM10.5 3.1C10.5 3.1 10.4 3.1 10.4 3.2C10.4 3.3 10.4 3.4 10.4 3.5C10.5 3.6 10.6 3.7 10.6 3.7C10.9 4.1 11.1 4.4 11.4 4.8C11.4 5.1 11.4 5.3 11.4 5.6C11.5 6.2 11.5 6.9 11.5 7.5C11.6 7.5 11.7 7.3 11.8 7.1C11.8 6.7 11.8 6 11.8 5.7L11.8 5.4C12.1 5.9 12.3 6.4 12.6 6.9C12.7 6.9 12.7 6.3 12.6 6.2C12.4 5.8 12.1 5.3 12 5.2C12 5.1 11.9 4.9 11.7 4.7C11.7 4.4 11.7 4.2 11.6 4.1C11.6 3.8 11.8 4.1 11.8 4C11.7 3.7 11.5 3.5 11.3 3.2C11.3 3.1 11.3 3.1 11.2 3.2C11.1 3.3 11.1 3.4 11.1 3.6C11.1 3.5 11.1 3.5 11 3.4L10.7 3.1C10.7 3.1 10.6 3.1 10.5 3.1ZM14.9 3.1C14.9 3.1 14.9 3.1 14.9 3.2C14.8 3.2 14.8 3.3 14.8 3.4C14.8 3.5 14.8 3.7 14.8 3.8L14.8 3.9C14.8 3.9 14.8 3.9 14.8 3.9C14.5 3.5 14.9 3.8 14.7 3.5C14.6 3.4 14.5 3.3 14.4 3.2C14.3 3.1 14.2 3 14.2 3.2C14.2 3.3 14.2 3.5 14.2 3.6C14.2 3.7 14.3 3.8 14.3 3.9C14.5 4.1 14.8 4.4 15 4.7C15 5.3 15 5.8 15.1 6.4C15.1 6.6 15 7 14.9 7C14.9 7 14.8 7.1 14.7 7C14.7 7 14.5 6.6 14.5 6.6C14.4 6.5 14.3 6.6 14.2 6.6C14 6.8 13.9 7.2 13.7 7.5C13.7 7.6 13.6 7.6 13.5 7.5C13.2 7.1 13.3 6.5 13.3 6.6C13 6.9 13.2 7.4 13.2 7.6C13.3 7.7 13.4 7.8 13.6 7.9C13.7 8 13.8 8 13.9 7.9C14.1 7.7 14.1 7.3 14.1 7.2C14.2 7.1 14.3 7.1 14.4 7.2C14.4 7.3 14.5 7.3 14.6 7.4C14.8 7.5 14.9 7.5 15.1 7.4C15.2 7.3 15.3 7.2 15.4 7.1C15.4 6.9 15.4 5.8 15.4 5.3L15.7 5.7C15.8 6.2 15.8 6.7 15.8 7.2C15.8 7.3 16.1 6.9 16.1 6.8C16.1 6.6 16.1 6.5 16.1 6.3C16.3 6.6 16.4 6.9 16.6 7.1C16.7 7.1 16.7 6.6 16.6 6.5C16.4 6.2 16.2 5.9 16.1 5.7C16 5.4 16 5.1 16 5C15.9 4.8 15.9 4.6 15.9 4.4C15.9 4.3 15.8 4.1 15.8 4.1C15.8 4 15.9 4.1 16 4C16 3.9 15.8 3.3 15.7 3.2C15.6 3.1 15.5 3.1 15.4 3.2C15.3 3.3 15.4 3.5 15.4 3.7C15.5 4.1 15.6 4.6 15.6 5.1C15.5 4.9 15.4 4.7 15.2 4.5L15.2 4.4C15.2 4.4 15.2 4 15.2 3.9C15.2 3.9 15.2 3.9 15.2 3.9C15.3 3.9 15.3 3.9 15.3 4C15.3 4 15.4 3.9 15.3 3.8L15 3.1C15 3.1 14.9 3.1 14.9 3.1L14.9 3.1ZM3.5 3.1C3.4 3.1 3.4 3.2 3.4 3.2C3.4 3.3 3.5 3.4 3.6 3.5C3.6 3.6 3.5 3.8 3.6 3.8C3.6 3.8 3.7 3.7 3.7 3.5C3.7 3.4 3.7 3.2 3.5 3.1C3.5 3.1 3.5 3.1 3.5 3.1L3.5 3.1ZM16.5 3.1C16.5 3.1 16.5 3.2 16.5 3.2C16.4 3.3 16.4 3.5 16.4 3.7C16.6 4.8 16.7 5.9 16.7 6.9C16.7 7 16.7 7.1 16.6 7.2C16.5 7.3 16.4 7.5 16.3 7.6C16.2 7.6 16 7.7 15.9 7.8C15.7 7.9 15.7 8.1 15.9 8.1C16.2 8 16.6 8 16.8 7.6C16.9 7.5 17 7.2 17 7C17 6 17 4.9 16.8 4.2C16.8 4.1 16.8 3.9 16.8 3.9C16.8 3.8 16.9 3.9 16.9 3.8C17 3.8 16.7 3.4 16.6 3.2C16.5 3.2 16.5 3.1 16.5 3.1L16.5 3.1ZM13.2 3.1C13.2 3.1 13.2 3.2 13.1 3.2C13 3.5 13 3.7 13.1 3.9C13.3 5.1 13.5 6.2 13.5 7.3C13.6 7.3 13.7 7.1 13.8 6.8C13.8 6.5 13.7 6.3 13.7 6.1C13.7 5.9 13.5 4.3 13.5 4.1C13.4 3.8 13.7 4.1 13.6 3.9C13.6 3.7 13.3 3.4 13.3 3.2C13.2 3.2 13.2 3.1 13.2 3.1L13.2 3.1ZM5.1 3.2C5.1 3.2 5.1 3.2 5.1 3.2C5.1 3.3 5.1 3.3 5.1 3.3C5.1 3.3 5 3.3 5 3.2C5 3.2 5 3.2 5 3.2C5 3.2 5 3.2 4.9 3.2C4.9 3.2 4.9 3.2 4.9 3.2C4.9 3.2 4.9 3.2 4.9 3.3C4.9 3.3 4.9 3.3 4.9 3.3C4.9 3.3 4.9 3.3 4.8 3.3C4.8 3.3 4.8 3.3 4.8 3.3C4.8 3.2 4.8 3.2 4.8 3.2C4.8 3.2 4.8 3.2 4.8 3.2C4.7 3.2 4.7 3.3 4.7 3.3C4.7 3.3 4.7 3.5 4.8 3.5C4.9 3.6 5.2 3.6 5.2 3.3C5.2 3.3 5.2 3.2 5.2 3.2C5.2 3.2 5.2 3.2 5.1 3.2L5.1 3.2ZM7.2 3.2C7.2 3.2 7.1 3.2 7.1 3.2C7 3.3 6.9 3.5 7 3.6C7.1 3.6 7.2 3.7 7.1 3.7C6.9 4 6.3 4.3 6.3 4.4V4.4H6.3V4.4C6.3 4.5 6.7 4.5 6.7 4.4H6.7C6.9 4.4 7.5 3.7 7.5 3.7C7.4 3.7 7.4 3.7 7.4 3.6C7.3 3.6 7.3 3.6 7.4 3.6C7.5 3.5 7.5 3.3 7.4 3.2C7.3 3.2 7.3 3.2 7.2 3.2V3.2ZM12.6 3.2C12.6 3.2 12.6 3.2 12.6 3.3C12.5 3.4 12.4 3.6 12.4 3.8C12.6 4.8 12.6 5.7 12.7 6.8C12.8 6.9 12.7 7 12.7 7.1C12.4 7.3 12.1 7.6 11.7 7.8C11.6 7.8 11.8 8 12 8C12.3 8 12.6 7.8 12.8 7.4C12.9 7.2 13 7 13 6.8C13 5.8 13 4.9 12.8 4.2C12.8 4.1 12.8 4 12.8 4C12.8 4 12.9 4 12.9 3.9C13 3.9 12.8 3.4 12.7 3.2C12.7 3.2 12.6 3.2 12.6 3.2ZM4.2 3.2C4.2 3.2 4.2 3.2 4.1 3.3C4.1 3.5 4.1 3.6 4.2 3.8C4.2 4 4.2 4.3 4.3 4.6C4.3 4.9 4.1 4.7 4.1 4.5C4.1 4.3 4.1 3.9 4.1 3.8C4 3.7 4 3.7 3.9 3.7C3.8 3.7 3.7 3.9 3.6 4.2C3.6 4.2 3.6 4.4 3.5 4.6C3.5 4.7 3.4 4.9 3.3 4.5C3.3 4.3 3.2 3.8 3.1 3.9C3.1 4.3 3 5.1 3.4 5.2C3.9 5.2 3.6 4.4 3.8 4.3C3.8 4.2 3.9 4.2 3.9 4.3V5C3.9 5.2 4 5.3 4.1 5.3C4.2 5.3 4.3 5.3 4.4 5.4L4.4 6.6C4.4 6.6 4.7 6.7 4.7 5.9C4.7 5.5 4.6 5.1 4.7 5C4.7 5 4.8 5 4.9 5C5 5.1 5 5.2 5.2 5.1C5.5 5.1 5.7 4.9 5.7 4.7C5.6 4.5 5.6 4.3 5.5 4.1C5.5 4.1 5.5 4 5.5 3.9C5.5 4 5.6 4 5.6 3.9C5.6 3.8 5.5 3.6 5.4 3.6C5.3 3.5 5.2 3.5 5.1 3.7C5.1 3.9 5.2 4.1 5.3 4.3C5.4 4.4 5.4 4.5 5.4 4.7C5.3 4.7 5.2 4.7 5.2 4.6C5.2 4.6 4.9 4.5 4.9 4.4C5 4 4.9 4 4.9 3.9C4.9 3.7 4.8 3.7 4.8 3.6C4.7 3.5 4.6 3.5 4.6 3.6C4.5 3.8 4.5 4.1 4.6 4.3C4.7 4.4 4.7 4.5 4.7 4.5C4.7 4.6 4.6 4.6 4.6 4.5C4.5 4.3 4.5 4 4.5 3.9C4.5 3.7 4.5 3.3 4.3 3.2C4.3 3.2 4.3 3.2 4.2 3.2L4.2 3.2ZM5.8 3.2C5.8 3.2 5.8 3.2 5.7 3.2C5.7 3.3 5.6 3.3 5.6 3.5C5.7 4.2 5.8 4.7 5.9 5.4C5.9 5.5 5.8 5.6 5.8 5.6C5.6 5.5 5.6 5.3 5.3 5.3C5.1 5.3 4.9 5.5 4.9 5.7C4.9 5.8 4.9 6 4.9 6.1C5 6.3 5.2 6.3 5.3 6.2C5.4 6.2 5.5 6.1 5.6 6.1C5.6 6.1 5.6 6.5 5 6.8C4.7 6.9 4.5 7 4.3 6.7C4.2 6.5 4.3 5.9 4.1 6.1C3.5 7.6 5.6 7.9 5.8 6.1C5.8 6.1 5.9 6 5.9 6C5.9 6 5.9 6.1 5.9 6.1C5.9 7.7 4.3 7.8 4.1 7.3C4 7.2 4 6.9 4 6.8C4 6.7 3.9 6.6 3.9 6.6C3.8 6.5 3.8 6.7 3.7 6.9C3.7 7 3.7 7.1 3.7 7.3C3.8 8.5 5.8 8 6.1 6.9C6.3 6.4 6.1 6 6.2 5.9L6.2 5.9H6.2L6.2 5.9C6.4 6.2 6.7 6 6.7 5.9C6.8 5.9 6.8 5.8 6.9 5.9C7 6 7.3 5.9 7.3 5.7C7.4 5.6 7.4 5.4 7.4 5.2C7.3 5.2 7.2 5.2 7.2 5.2C7.2 5.2 7.2 5.3 7.2 5.3L7.2 5.4C7.2 5.4 7.2 5.4 7.2 5.5C7.1 5.5 7.1 5.5 7.1 5.5C7.1 5.5 7 5.5 7 5.4C7 5.2 6.8 5.2 6.7 5.5C6.6 5.6 6.4 5.6 6.4 5.5C6.4 5.3 6.4 5.2 6.2 5.3L6 4C6.1 4 6.1 4.1 6.2 4C6.1 3.8 6 3.3 5.9 3.2H5.9L5.9 3.2C5.9 3.2 5.9 3.2 5.9 3.2L5.9 3.2C5.9 3.2 5.8 3.2 5.8 3.2C5.8 3.2 5.8 3.2 5.8 3.2ZM12 3.2C11.9 3.2 11.8 3.3 11.9 3.4C11.8 3.4 12 3.6 12.1 3.7C12.1 3.8 12 4 12.1 4C12.1 4 12.2 3.9 12.2 3.7C12.3 3.5 12.2 3.3 12 3.2L12 3.2V3.2ZM7.2 3.4C7.2 3.4 7.3 3.4 7.3 3.5C7.3 3.5 7.3 3.5 7.3 3.6C7.2 3.6 7.2 3.5 7.2 3.5C7.1 3.4 7.1 3.4 7.2 3.4H7.2V3.4ZM16.1 3.6C16 3.6 15.9 3.7 16 3.8C16 3.8 16.1 4 16.2 4.1C16.2 4.2 16.1 4.5 16.2 4.5C16.2 4.5 16.3 4.3 16.3 4.1C16.3 4 16.2 3.7 16.1 3.6C16.1 3.6 16.1 3.6 16.1 3.6L16.1 3.6ZM11.2 3.7C11.2 3.8 11.2 3.8 11.2 3.8C11.2 3.9 11.2 3.9 11.2 4C11.2 3.9 11.1 3.9 11.1 3.8C11 3.7 11.1 3.7 11.2 3.7ZM12.3 4.3C12.3 4.3 12.2 4.3 12.2 4.4C12.2 4.4 12.2 4.4 12.2 4.4C12.2 4.4 12.2 4.4 12.2 4.4C12.2 4.3 12.1 4.3 12.1 4.3C12.1 4.3 12.1 4.3 12.1 4.3C12.1 4.3 12.1 4.3 12.1 4.3C12.1 4.3 12.1 4.4 12.1 4.4C12.1 4.4 12 4.4 12 4.4C12 4.4 12 4.4 12 4.4C12 4.4 12 4.4 12 4.4C12 4.4 12 4.3 12 4.3C12 4.3 11.9 4.3 11.9 4.3C11.8 4.3 11.8 4.4 11.8 4.4C11.8 4.4 11.8 4.6 11.9 4.7C12.1 4.7 12.4 4.7 12.4 4.4C12.4 4.4 12.4 4.4 12.4 4.3C12.4 4.3 12.3 4.3 12.3 4.3L12.3 4.3ZM7.1 4.3C7.1 4.3 7.1 4.3 7 4.4C6.9 4.4 6.9 4.7 6.9 4.8C7 4.9 7.1 4.9 7.2 4.9C7.3 4.9 7.4 4.6 7.4 4.6C7.4 4.6 7.4 4.5 7.2 4.7C7.2 4.7 7.1 4.7 7.1 4.6C7.1 4.6 7.1 4.5 7.2 4.4C7.2 4.4 7.2 4.3 7.1 4.3V4.3ZM14.4 4.4C14.4 4.4 14.3 4.4 14.3 4.5C14.3 4.6 14.3 4.6 14.3 4.7C14.3 4.7 14.2 4.7 14.2 4.7C14.2 4.7 14.1 4.6 14.1 4.6C14.1 4.5 14 4.6 13.9 4.6C13.9 4.7 13.9 4.8 13.9 4.9C14 5 14.3 5.3 14.4 5.3C14.4 5.2 14.5 5 14.5 4.8C14.5 4.8 14.5 4.7 14.5 4.7C14.6 4.7 14.6 4.8 14.6 4.7C14.6 4.6 14.6 4.5 14.6 4.4C14.5 4.4 14.5 4.4 14.4 4.4H14.4ZM8.4 4.9L8.4 4.9C8.4 4.9 8.4 4.9 8.4 4.9C8.4 4.9 8.3 4.9 8.3 4.9C8.2 5 8.2 5.1 8.2 5.2C8.2 5.2 8.4 5.6 8.5 5.8C8.5 6.1 8.6 6.4 8.5 6.6C8.4 7 8 7.3 7.7 7.5C7.6 7.5 7.4 7.5 7.4 7.5C7.3 7.4 7.3 7.3 7.3 7.3V7.3C7.6 7.1 7.9 7 8.1 6.4C8.2 6.3 8.2 6.1 8.1 5.8C8.1 5.7 8.1 5.6 8 5.5H8C8 5.5 8.2 5.6 8.2 5.6C8.2 5.4 8.1 5.2 7.9 5.1C7.9 5 7.7 5 7.7 5.1C7.6 5.2 7.5 5.4 7.6 5.5C7.6 5.7 7.8 5.7 7.9 6C7.9 6 7.9 6.1 7.9 6.2C7.8 6.4 7.3 6.8 7.3 6.8L7.2 6.8L7.2 6.8H7.2H7.2V6.8C7.2 6.8 7.2 6.8 7.2 6.7C7.2 6.6 7.3 6.5 7.3 6.4V6.4C7.1 6.5 7 6.9 7 7C6.5 7.3 6 7.5 5.7 7.9C5.6 8.1 6.8 7.6 6.9 7.5L6.9 7.5C7 7.5 7 7.7 7.1 7.7C7.2 7.9 7.4 8 7.7 8C8.1 7.8 8.4 7.5 8.6 7.2C8.7 7.1 8.7 7.1 8.8 7.1C9 7.5 9.5 7.8 10.1 7.8C10.3 7.6 10.2 7.5 10.1 7.5C10.1 7.5 9.8 7.4 9.8 7.3C9.7 7.1 9.8 7 10 7C10.4 6.9 10.8 6.9 11.2 6.7C11.2 6.6 11.3 6.4 11.3 6.3C11.4 6.3 11.4 6.2 11.4 6.2V6.2H11.4V6.2V6.2L11.3 6.2L10 6.2C10 6.2 10 6.2 10 6.2L10 6.2C10 6.2 9.9 6.2 9.9 6.2C9.9 6.1 9.9 6.1 9.9 6.1V6.1V6.1V6.1L9.9 6.1C10 6.1 10 6.1 10 6.1C10.3 6.1 10.9 6 10.9 5.4C10.9 5.1 10.8 5 10.4 4.9C10.2 4.9 10 5.2 10 5.4C10 5.5 10.1 5.7 10 5.7C9.5 5.7 9 6 8.9 6.3H8.9H8.9H8.9C8.9 6.3 8.9 6.3 8.9 6.3H8.9H8.9H8.9C8.9 6.2 8.8 6.2 8.8 6.1C8.8 5.7 8.7 5.3 8.5 5C8.4 4.9 8.4 4.9 8.4 4.9H8.4H8.4H8.4ZM9.7 5.1C9.6 5.1 9.6 5.1 9.6 5.1C9.6 5.2 9.6 5.2 9.6 5.2C9.6 5.2 9.5 5.2 9.5 5.2C9.5 5.1 9.5 5.1 9.5 5.1C9.5 5.1 9.5 5.1 9.5 5.1C9.4 5.1 9.4 5.1 9.4 5.1C9.4 5.1 9.4 5.2 9.4 5.2C9.4 5.2 9.4 5.2 9.4 5.2C9.4 5.2 9.4 5.2 9.4 5.2C9.4 5.2 9.3 5.2 9.3 5.2C9.3 5.1 9.3 5.1 9.3 5.1C9.3 5.1 9.3 5.1 9.3 5.1C9.2 5.1 9.2 5.2 9.2 5.2C9.2 5.2 9.2 5.4 9.3 5.4C9.5 5.5 9.8 5.5 9.7 5.2C9.7 5.2 9.7 5.1 9.7 5.1C9.7 5.1 9.7 5.1 9.7 5.1L9.7 5.1ZM14.8 5.3H14.8C14.8 5.3 14.1 5.8 14.1 5.8C14 5.9 14.1 6.1 14.1 6.1C14.1 6.1 14.9 5.6 14.8 5.5C14.9 5.6 14.9 5.3 14.8 5.3L14.8 5.3ZM10.3 5.4C10.4 5.4 10.4 5.4 10.4 5.4C10.5 5.4 10.5 5.5 10.5 5.5V5.5C10.5 5.5 10.5 5.5 10.5 5.5V5.5C10.5 5.5 10.5 5.5 10.5 5.5C10.5 5.5 10.5 5.5 10.5 5.5C10.5 5.6 10.4 5.5 10.4 5.5C10.3 5.5 10.3 5.4 10.3 5.4V5.4L10.3 5.4C10.3 5.4 10.3 5.4 10.3 5.4L10.3 5.4C10.3 5.4 10.3 5.4 10.3 5.4V5.4ZM4.1 5.5C3.7 5.5 3.2 6 3.2 6.2L4.3 5.7C4.3 5.6 4.3 5.5 4.1 5.5ZM5.3 5.7C5.3 5.7 5.4 5.7 5.4 5.7C5.4 5.8 5.4 5.8 5.4 5.8V5.9C5.3 5.9 5.3 5.9 5.2 5.9C5.2 5.9 5.2 5.9 5.1 5.8C5.1 5.8 5.2 5.7 5.2 5.7L5.2 5.7C5.2 5.7 5.2 5.7 5.3 5.7L5.3 5.7L5.3 5.7ZM14.7 5.8C14.6 5.8 14.6 5.9 14.6 6C14.6 6 14.7 6.2 14.7 6.3C14.7 6.4 14.7 6.6 14.7 6.7C14.8 6.7 14.9 6.5 14.9 6.3C14.9 6.2 14.9 5.9 14.7 5.8C14.7 5.8 14.7 5.8 14.7 5.8ZM6.7 6.2C6.6 6.2 6.6 6.2 6.6 6.3C6.6 6.3 6.8 6.4 6.8 6.6C6.8 6.6 6.7 6.8 6.8 6.8C6.8 6.8 6.9 6.7 6.9 6.6C6.9 6.5 6.9 6.2 6.8 6.2C6.7 6.2 6.7 6.2 6.7 6.2L6.7 6.2ZM9.1 6.5H9.1C9.3 6.5 9.5 6.5 9.7 6.6C9.8 6.6 9.9 6.7 9.8 6.7C9.6 6.8 9.5 6.8 9.5 7C9.5 7.1 9.5 7.2 9.5 7.2C9.5 7.2 9.5 7.2 9.5 7.2C9.5 7.2 9.5 7.2 9.5 7.2V7.2H9.5L9.5 7.2H9.4C9.4 7.2 9.4 7.2 9.3 7.2C9.2 7.1 9 7 8.9 6.6C8.9 6.6 9 6.5 9.1 6.5L9.1 6.5ZM3.2 6.7C3.2 6.7 3.2 6.8 3.2 6.8C3 7.2 3 7.7 3.1 7.8C3.1 7.9 3.2 7.9 3.3 7.9C3.5 7.9 3.5 7.6 3.5 7.5C3.4 7.4 3.4 7.4 3.4 7.5C3.3 7.7 3.2 7.5 3.2 7.4C3.2 7.2 3.2 7 3.2 6.9C3.3 6.8 3.3 6.7 3.2 6.7L3.2 6.7ZM10.8 7.2C10.7 7.2 10.7 7.2 10.7 7.2C10.7 7.2 10.5 7.3 10.5 7.4C10.5 7.4 10.5 7.4 10.5 7.5C10.5 7.5 10.5 7.5 10.6 7.5C10.7 7.5 10.7 7.5 10.7 7.6C10.6 7.7 10.7 7.7 10.7 7.7C10.7 7.7 10.7 7.8 10.8 7.8C11 7.7 11.1 7.6 11.3 7.6C11.3 7.6 11.3 7.4 11.2 7.4C11.1 7.4 11 7.5 10.9 7.5C10.8 7.6 10.8 7.5 10.8 7.5C10.8 7.4 10.8 7.3 10.8 7.2C10.8 7.2 10.8 7.2 10.7 7.2L10.8 7.2ZM15.6 7.4L15.5 7.4C15.4 7.4 15.4 7.4 15.4 7.5C15.4 7.6 15.4 7.6 15.5 7.6C15.5 7.6 15.5 7.7 15.5 7.7C15.4 7.8 15.4 7.8 15.4 7.9C15.3 7.9 15.3 8 15.4 8C15.5 8 15.8 7.8 15.8 7.8C15.9 7.8 15.9 7.7 15.9 7.7C15.8 7.7 15.8 7.7 15.7 7.7C15.7 7.7 15.6 7.7 15.7 7.6C15.7 7.6 15.7 7.5 15.7 7.5C15.7 7.5 15.7 7.4 15.6 7.4C15.6 7.4 15.6 7.4 15.6 7.4H15.6Z\" fill=\"white\"/><path d=\"M15.5 9.9H15.3L14.2 9.9V9.6C14.2 9.5 14.1 9.4 14 9.4C13.9 9.4 13.8 9.5 13.8 9.6V9.9L3.9 9.9C4.3 10.4 5 10.6 5.6 10.6C6 10.6 11 10.6 13.8 10.6V11.1C13.8 11.3 13.9 11.4 14 11.4H15.5C15.8 11.4 16.1 11.1 16.1 10.6C16.1 10.2 15.8 9.9 15.5 9.9ZM15.5 10.9L14.2 10.9V10.6C15.1 10.6 15.7 10.6 15.7 10.6L15.7 10.5C15.7 10.5 15.7 10.6 15.7 10.6C15.7 10.8 15.6 10.9 15.5 10.9Z\" fill=\"white\"/></svg>";
|
|
2
|
+
export declare const DGA_SA_FLAG_SRC: string;
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@a.nemreen/dga-ui",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "DGA Angular UI component library — forms, overlays, navigation, shell, and layout primitives with RTL-first Tailwind styling",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Ahmed Nemreen",
|
|
8
|
+
"email": "a.nemreen@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/nemreen/dga-angular#readme",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/nemreen/dga-angular.git",
|
|
14
|
+
"directory": "projects/dga-ui"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/nemreen/dga-angular/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"angular",
|
|
21
|
+
"angular-components",
|
|
22
|
+
"ui-library",
|
|
23
|
+
"dga",
|
|
24
|
+
"design-system",
|
|
25
|
+
"tailwind",
|
|
26
|
+
"tailwindcss",
|
|
27
|
+
"rtl",
|
|
28
|
+
"arabic",
|
|
29
|
+
"saudi",
|
|
30
|
+
"government",
|
|
31
|
+
"accessibility",
|
|
32
|
+
"forms",
|
|
33
|
+
"standalone-components"
|
|
34
|
+
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@angular/common": "^19.0.0",
|
|
40
|
+
"@angular/core": "^19.0.0",
|
|
41
|
+
"@angular/platform-browser": "^19.0.0",
|
|
42
|
+
"@a.nemreen/dga-tokens": "^0.2.0",
|
|
43
|
+
"@platformscode/icons": "^0.0.11"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@platformscode/icons": "^0.0.11",
|
|
47
|
+
"tslib": "^2.3.0"
|
|
48
|
+
},
|
|
49
|
+
"sideEffects": false,
|
|
50
|
+
"module": "fesm2022/a.nemreen-dga-ui.mjs",
|
|
51
|
+
"typings": "index.d.ts",
|
|
52
|
+
"exports": {
|
|
53
|
+
"./package.json": {
|
|
54
|
+
"default": "./package.json"
|
|
55
|
+
},
|
|
56
|
+
".": {
|
|
57
|
+
"types": "./index.d.ts",
|
|
58
|
+
"default": "./fesm2022/a.nemreen-dga-ui.mjs"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
export { DgaButton, type DgaButtonSize, type DgaButtonVariant } from './lib/primitives/button/dga-button';
|
|
2
|
+
export { DgaBadge, type DgaBadgeSize, type DgaBadgeVariant } from './lib/primitives/badge/dga-badge';
|
|
3
|
+
export { DgaChip, type DgaChipVariant } from './lib/primitives/chip/dga-chip';
|
|
4
|
+
export { DgaDivider, type DgaDividerOrientation } from './lib/primitives/divider/dga-divider';
|
|
5
|
+
export { DgaLink, type DgaLinkVariant } from './lib/primitives/link/dga-link';
|
|
6
|
+
export { DgaSpinner, type DgaSpinnerSize, type DgaSpinnerTone } from './lib/primitives/spinner/dga-spinner';
|
|
7
|
+
export { DgaSkeleton, type DgaSkeletonAnimation, type DgaSkeletonRadius, type DgaSkeletonShape, type DgaSkeletonSize, } from './lib/primitives/skeleton/dga-skeleton';
|
|
8
|
+
export { DgaProgress, type DgaProgressSize, type DgaProgressTone, type DgaProgressAppearance, } from './lib/primitives/progress/dga-progress';
|
|
9
|
+
export { DgaAvatar, type DgaAvatarSize } from './lib/primitives/avatar/dga-avatar';
|
|
10
|
+
export { DgaIcon, type DgaIconName, type DgaIconSize, type DgaIconTone, } from './lib/primitives/icon/dga-icon';
|
|
11
|
+
export { DgaIconFontService } from './lib/primitives/icon/dga-icon-font.service';
|
|
12
|
+
export { DGA_ICON_NAMES, DGA_ICON_SVG, DGA_LOGICAL_ICON_NAMES, decodePlatformscodeSvg, } from './lib/primitives/icon/dga-icon-registry';
|
|
13
|
+
export { DgaIconBadge, type DgaIconBadgeAppearance, type DgaIconBadgeSize, } from './lib/primitives/icon/dga-icon-badge';
|
|
14
|
+
export { DgaInput, type DgaInputSize } from './lib/forms/input/dga-input';
|
|
15
|
+
export { DgaFormControl, DgaFormStart, DgaFormEnd, } from './lib/forms/form/dga-form-control';
|
|
16
|
+
export { type DgaFormControlSize, type DgaFormStatus, } from './lib/forms/form/form-control.styles';
|
|
17
|
+
export { DgaLabel } from './lib/forms/label/dga-label';
|
|
18
|
+
export { DgaCheckbox, type DgaCheckboxSize } from './lib/forms/checkbox/dga-checkbox';
|
|
19
|
+
export { DgaRadio, type DgaRadioSize } from './lib/forms/radio/dga-radio';
|
|
20
|
+
export { DgaNativeSelect, type DgaNativeSelectSize, } from './lib/forms/select/dga-native-select';
|
|
21
|
+
export { DgaSelect, type DgaSelectOpenMode, type DgaSelectOption, type DgaSelectSize, } from './lib/forms/select/dga-select';
|
|
22
|
+
export { DgaField } from './lib/forms/field/dga-field';
|
|
23
|
+
export { DgaSwitch, type DgaSwitchSize } from './lib/forms/switch/dga-switch';
|
|
24
|
+
export { DgaNumberInput } from './lib/forms/number-input/dga-number-input';
|
|
25
|
+
export { DgaSlider } from './lib/forms/slider/dga-slider';
|
|
26
|
+
export { DgaOtp } from './lib/forms/otp/dga-otp';
|
|
27
|
+
export { DgaChipInput } from './lib/forms/chip-input/dga-chip-input';
|
|
28
|
+
export { DgaUpload, type DgaUploadAppearance, type DgaUploadFile, } from './lib/forms/upload/dga-upload';
|
|
29
|
+
export { DgaPhoneInput, DGA_PHONE_COUNTRIES, type DgaPhoneCountry, } from './lib/forms/phone-input/dga-phone-input';
|
|
30
|
+
export { DgaAutocomplete, type DgaAutocompleteOption, } from './lib/forms/autocomplete/dga-autocomplete';
|
|
31
|
+
export { DgaMultiselect, type DgaMultiselectOption, } from './lib/forms/multiselect/dga-multiselect';
|
|
32
|
+
export { DgaDatePicker, type DgaDateCalendar, type DgaDatePickerMode, type DgaDateRangeValue, } from './lib/forms/date-picker/dga-date-picker';
|
|
33
|
+
export { DGA_GREGORIAN_MONTHS, DGA_HIJRI_MONTHS, DGA_WEEKDAYS, dgaAddMonths, dgaClampDate, dgaCompareDays, dgaCoerceDate, dgaDaysInMonth, dgaFormatDate, dgaGetCalendarParts, dgaModeFromFormat, dgaMonthNames, dgaMonthStartWeekday, dgaParseDate, dgaPartsToDate, dgaSameDay, dgaTodayUtc, type DgaCalendarParts, } from './lib/forms/date-picker/dga-date-calendar';
|
|
34
|
+
export { DgaDialog, type DgaDialogSize } from './lib/overlays/dialog/dga-dialog';
|
|
35
|
+
export { DgaModal, type DgaModalAnimation, type DgaModalSize, } from './lib/overlays/modal/dga-modal';
|
|
36
|
+
export { DgaToast, type DgaToastVariant } from './lib/overlays/toast/dga-toast';
|
|
37
|
+
export { DgaToastService, type DgaToastShowOptions, type DgaToastRequest, } from './lib/overlays/toast/dga-toast.service';
|
|
38
|
+
export { DgaToastOutlet } from './lib/overlays/toast/dga-toast-outlet';
|
|
39
|
+
export { DgaTooltip, type DgaTooltipPlacement, type DgaTooltipVariant } from './lib/overlays/tooltip/dga-tooltip';
|
|
40
|
+
export { DgaMenu, type DgaMenuItem } from './lib/overlays/menu/dga-menu';
|
|
41
|
+
export { DgaDrawer, type DgaDrawerSide } from './lib/overlays/drawer/dga-drawer';
|
|
42
|
+
export { DgaImagePopup, type DgaImagePopupAnimation, type DgaImagePopupImage, type DgaImagePopupImageTransition, type DgaImagePopupSource, } from './lib/overlays/image-popup/dga-image-popup';
|
|
43
|
+
export { DgaAlert, type DgaAlertDisplay, type DgaAlertVariant, } from './lib/feedback/alert/dga-alert';
|
|
44
|
+
export { DgaEmpty, type DgaEmptyAppearance } from './lib/feedback/empty/dga-empty';
|
|
45
|
+
export { DgaFeedback, type DgaFeedbackSubmit, } from './lib/feedback/feedback/dga-feedback';
|
|
46
|
+
export { DgaPageFeedback, type DgaPageFeedbackAnswer, type DgaPageFeedbackOption, type DgaPageFeedbackPhase, type DgaPageFeedbackSubmit, type DgaPageFeedbackAgreementLink, } from './lib/feedback/page-feedback/dga-page-feedback';
|
|
47
|
+
export { DgaCookies, type DgaCookieConsent } from './lib/feedback/cookies/dga-cookies';
|
|
48
|
+
export { DgaRating, type DgaRatingSize } from './lib/feedback/rating/dga-rating';
|
|
49
|
+
export { DgaCopy } from './lib/feedback/copy/dga-copy';
|
|
50
|
+
export { DgaShare, type DgaShareAppearance } from './lib/feedback/share/dga-share';
|
|
51
|
+
export { DgaAccessibility, type DgaAccessibilityPosition, } from './lib/feedback/accessibility/dga-accessibility';
|
|
52
|
+
export { DgaAccessibilityService, type DgaA11yBundle, type DgaA11yMode, type DgaA11yVisualFilter, } from './lib/feedback/accessibility/dga-accessibility.service';
|
|
53
|
+
export { DgaSkipLink } from './lib/feedback/a11y/dga-skip-link';
|
|
54
|
+
export { DgaAccordion } from './lib/navigation/accordion/dga-accordion';
|
|
55
|
+
export { DgaAccordionItem } from './lib/navigation/accordion/dga-accordion-item';
|
|
56
|
+
export { DgaBreadcrumb, type DgaBreadcrumbItem, type DgaBreadcrumbSeparator, } from './lib/navigation/breadcrumb/dga-breadcrumb';
|
|
57
|
+
export { DgaPagination } from './lib/navigation/pagination/dga-pagination';
|
|
58
|
+
export { DgaTabs } from './lib/navigation/tabs/dga-tabs';
|
|
59
|
+
export { DgaTab } from './lib/navigation/tabs/dga-tab';
|
|
60
|
+
export { DgaStepper, type DgaStep } from './lib/navigation/stepper/dga-stepper';
|
|
61
|
+
export { DgaToc, type DgaTocItem } from './lib/navigation/toc/dga-toc';
|
|
62
|
+
export { DgaSideNav, type DgaSideNavItem } from './lib/navigation/side-nav/dga-side-nav';
|
|
63
|
+
export { DgaFilterBar, type DgaFilterItem } from './lib/navigation/filter-bar/dga-filter-bar';
|
|
64
|
+
export { DgaToolbar } from './lib/navigation/toolbar/dga-toolbar';
|
|
65
|
+
export { DgaScrollTop, type DgaScrollTopPosition, } from './lib/navigation/scroll-top/dga-scroll-top';
|
|
66
|
+
export { DgaCard, type DgaCardActionsAlign, type DgaCardAppearance, type DgaCardBadge, type DgaCardBorder, type DgaCardPadding, type DgaCardShadow, } from './lib/layout/card/dga-card';
|
|
67
|
+
export { DgaCardMedia } from './lib/layout/card/dga-card-media';
|
|
68
|
+
export { DgaSection, type DgaSectionTone, type DgaSectionWidth, } from './lib/layout/section/dga-section';
|
|
69
|
+
export { DgaGrid, type DgaGridCols, type DgaGridGap, } from './lib/layout/grid/dga-grid';
|
|
70
|
+
export { DgaClamp } from './lib/layout/clamp/dga-clamp';
|
|
71
|
+
export { DgaExpandable } from './lib/layout/expandable/dga-expandable';
|
|
72
|
+
export { DgaHeader, type DgaHeaderAppearance, type DgaMobileNavMode, type DgaNavItem, type DgaNavLink, type DgaNavColumn, type DgaNavDropdown, type DgaNavDropdownVariant, type DgaNavDropdownLayout, type DgaNavFeatured, type DgaHeaderAction, type DgaHeaderSearchConfig, type DgaHeaderSearchSuggestion, type DgaHeaderNotificationsConfig, type DgaHeaderNotification, type DgaHeaderNotificationTone, type DgaHeaderNotificationAction, type DgaHeaderLoginConfig, type DgaHeaderUserConfig, type DgaHeaderUserMenuLink, } from './lib/shell/header/dga-header';
|
|
73
|
+
export { DgaTopBar, type DgaStampNotice, type DgaCalendar, type DgaTimeFormat, } from './lib/shell/top-bar/dga-top-bar';
|
|
74
|
+
export { DgaFooter, type DgaFooterAppearance, type DgaFooterLink, type DgaFooterColumn, type DgaFooterIconLink, type DgaFooterIconGroup, type DgaFooterLogo, } from './lib/shell/footer/dga-footer';
|
|
75
|
+
export { DgaHero, type DgaHeroAppearance, type DgaHeroSlide, type DgaHeroTransition, type DgaHeroOverlayTone, type DgaHeroImageMask, } from './lib/shell/hero/dga-hero';
|
|
76
|
+
export { DgaSideInfo, type DgaSideInfoItem, } from './lib/shell/side-info/dga-side-info';
|
|
77
|
+
export { DgaPreloader, type DgaPreloaderPersist, } from './lib/shell/preloader/dga-preloader';
|
|
78
|
+
export { DgaLogoTile } from './lib/shell/logo-tile/dga-logo-tile';
|
|
79
|
+
export { DgaPersona } from './lib/content/persona/dga-persona';
|
|
80
|
+
export { DgaQuote } from './lib/content/quote/dga-quote';
|
|
81
|
+
export { DgaCode } from './lib/content/code/dga-code';
|
|
82
|
+
export { DgaList } from './lib/content/list/dga-list';
|
|
83
|
+
export { DgaDescriptionList, type DgaDescriptionItem, type DgaDescriptionLayout, } from './lib/content/list/dga-description-list';
|
|
84
|
+
export { DgaNumber, type DgaCurrency } from './lib/content/number/dga-number';
|
|
85
|
+
export { DgaMetric, type DgaMetricAppearance, type DgaMetricTrend, } from './lib/content/metric/dga-metric';
|
|
86
|
+
export { DgaTable, type DgaTableColumn, type DgaSortDir, type DgaTableDensity, } from './lib/data/table/dga-table';
|
|
87
|
+
export { DgaExport, type DgaExportColumn, type DgaExportData, } from './lib/data/export/dga-export';
|
|
88
|
+
export { DgaExportToolbar, type DgaExportScope, } from './lib/data/export/dga-export-toolbar';
|
|
89
|
+
export { DgaCarousel, DgaCarouselSlideDirective, type DgaCarouselSlide, } from './lib/data/carousel/dga-carousel';
|
|
90
|
+
export { DgaChart, type DgaChartType, type DgaChartPoint, type DgaChartDataset, } from './lib/data/chart/dga-chart';
|
|
91
|
+
export { DGA_SAUDI_CITIES, dgaGroupSaudiCitiesByRegion, dgaSaudiCityOptions, type DgaSaudiCity, } from './lib/domain/saudi-cities/dga-saudi-cities';
|