@a.nemreen/dga-ui 0.2.5 → 0.2.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a.nemreen/dga-ui",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "description": "DGA Angular UI library — standalone forms, overlays, navigation, and portal shell with RTL-first Tailwind styling",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -1038,7 +1038,7 @@ declare class DgaToast implements OnDestroy {
1038
1038
  private timer;
1039
1039
  readonly classes: _angular_core.Signal<string>;
1040
1040
  readonly iconName: _angular_core.Signal<DgaIconName>;
1041
- readonly iconTone: _angular_core.Signal<"success" | "warning" | "error" | "muted" | "current">;
1041
+ readonly iconTone: _angular_core.Signal<"warning" | "error" | "success" | "muted" | "current">;
1042
1042
  constructor();
1043
1043
  ngOnDestroy(): void;
1044
1044
  dismiss(): void;
@@ -1337,7 +1337,7 @@ declare class DgaAlert {
1337
1337
  readonly titleClasses: _angular_core.Signal<string>;
1338
1338
  readonly descriptionClasses: _angular_core.Signal<string>;
1339
1339
  readonly iconName: _angular_core.Signal<DgaIconName>;
1340
- readonly iconTone: _angular_core.Signal<"success" | "warning" | "error" | "muted" | "current">;
1340
+ readonly iconTone: _angular_core.Signal<"warning" | "error" | "success" | "muted" | "current">;
1341
1341
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DgaAlert, never>;
1342
1342
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaAlert, "dga-alert", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "display": { "alias": "display"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "closeLabel": { "alias": "closeLabel"; "required": false; "isSignal": true; }; }, { "dismissed": "dismissed"; }, never, ["*", "[dgaAlertActions]"], true, never>;
1343
1343
  }
@@ -1721,7 +1721,7 @@ declare class DgaShare {
1721
1721
  readonly shareTitle: _angular_core.InputSignal<string>;
1722
1722
  readonly triggerLabel: _angular_core.InputSignal<string>;
1723
1723
  readonly iconOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
1724
- readonly buttonVariant: _angular_core.InputSignal<"subtle" | "outline" | "ghost">;
1724
+ readonly buttonVariant: _angular_core.InputSignal<"outline" | "subtle" | "ghost">;
1725
1725
  readonly buttonSize: _angular_core.InputSignal<"sm" | "md">;
1726
1726
  readonly shared: _angular_core.OutputEmitterRef<string>;
1727
1727
  readonly linkCopied: _angular_core.OutputEmitterRef<void>;
@@ -1761,7 +1761,7 @@ interface DgaChatbotMessage {
1761
1761
  * (beside `dga-scroll-top` / `dga-accessibility`).
1762
1762
  *
1763
1763
  * Use `stack` so FABs share one vertical dock:
1764
- * a11y `0` → scroll-top `1` → chatbot `2`.
1764
+ * a11y `0` → chatbot `1` → scroll-top `2`.
1765
1765
  */
1766
1766
  declare class DgaChatbot {
1767
1767
  private readonly destroyRef;
@@ -1792,7 +1792,7 @@ declare class DgaChatbot {
1792
1792
  readonly hideFabWhenOpen: _angular_core.InputSignalWithTransform<boolean, unknown>;
1793
1793
  /**
1794
1794
  * 0-based slot in the shared FAB dock (bottom → top).
1795
- * Typical: a11y=0, scroll-top=1, chatbot=2.
1795
+ * Typical: a11y=0, chatbot=1, scroll-top=2.
1796
1796
  */
1797
1797
  readonly stack: _angular_core.InputSignalWithTransform<number, unknown>;
1798
1798
  /**
@@ -1931,7 +1931,7 @@ declare class DgaAccessibility {
1931
1931
  readonly position: _angular_core.InputSignal<DgaAccessibilityPosition>;
1932
1932
  /**
1933
1933
  * 0-based slot in the shared FAB dock (bottom → top).
1934
- * Typical: a11y=0, scroll-top=1, chatbot=2.
1934
+ * Typical: a11y=0, chatbot=1, scroll-top=2.
1935
1935
  */
1936
1936
  readonly stack: _angular_core.InputSignalWithTransform<number, unknown>;
1937
1937
  readonly panelId = "dga-accessibility-panel";
@@ -2176,6 +2176,49 @@ declare class DgaTabs {
2176
2176
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaTabs, "dga-tabs", never, { "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; }, ["tabs"], ["*"], true, never>;
2177
2177
  }
2178
2178
 
2179
+ declare class DgaContentSwitcherPanel {
2180
+ private readonly switcher;
2181
+ readonly value: _angular_core.InputSignal<string>;
2182
+ readonly label: _angular_core.InputSignal<string>;
2183
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2184
+ readonly seq: number;
2185
+ readonly tabId: string;
2186
+ readonly panelId: string;
2187
+ readonly active: _angular_core.Signal<boolean>;
2188
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DgaContentSwitcherPanel, never>;
2189
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaContentSwitcherPanel, "dga-content-switcher-panel", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2190
+ }
2191
+
2192
+ interface DgaContentSwitcherItem {
2193
+ value: string;
2194
+ label: string;
2195
+ disabled?: boolean;
2196
+ }
2197
+ /**
2198
+ * Segmented control for alternate views of related content
2199
+ * (e.g. All / Read / Unread, Grid / List).
2200
+ * Use `dga-tabs` for distinct page sections.
2201
+ */
2202
+ declare class DgaContentSwitcher {
2203
+ private readonly host;
2204
+ private readonly seq;
2205
+ readonly selected: _angular_core.ModelSignal<string>;
2206
+ readonly label: _angular_core.InputSignal<string>;
2207
+ readonly items: _angular_core.InputSignal<DgaContentSwitcherItem[]>;
2208
+ readonly panels: _angular_core.Signal<readonly DgaContentSwitcherPanel[]>;
2209
+ readonly headerItems: _angular_core.Signal<DgaContentSwitcherItem[]>;
2210
+ constructor();
2211
+ segmentClass(value: string, disabled: boolean): string;
2212
+ tabIdFor(value: string): string;
2213
+ panelIdFor(value: string): string;
2214
+ select(value: string): void;
2215
+ onKey(event: KeyboardEvent): void;
2216
+ private stepIndex;
2217
+ private lastEnabledIndex;
2218
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DgaContentSwitcher, never>;
2219
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaContentSwitcher, "dga-content-switcher", never, { "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; }, ["panels"], ["*"], true, never>;
2220
+ }
2221
+
2179
2222
  type DgaStepStatus = 'pending' | 'active' | 'completed' | 'error';
2180
2223
  interface DgaStep {
2181
2224
  label: string;
@@ -2234,8 +2277,8 @@ interface DgaSideNavGroup {
2234
2277
  }
2235
2278
  /**
2236
2279
  * Side navigation with optional groups and nested children.
2237
- * Below `lg`: horizontal scroll rail (top-level only).
2238
- * From `lg`: vertical sidebar (optional collapse to icons).
2280
+ * `layout="auto"` (default): horizontal scroll rail below `lg`, vertical sidebar from `lg`.
2281
+ * `layout="vertical"`: always vertical (drawers / overlays).
2239
2282
  */
2240
2283
  declare class DgaSideNav {
2241
2284
  /** Flat item list (backward compatible). Ignored when `groups` is set. */
@@ -2244,6 +2287,10 @@ declare class DgaSideNav {
2244
2287
  readonly groups: _angular_core.InputSignal<DgaSideNavGroup[]>;
2245
2288
  readonly active: _angular_core.ModelSignal<string>;
2246
2289
  readonly collapsible: _angular_core.InputSignalWithTransform<boolean, unknown>;
2290
+ /**
2291
+ * `auto` = horizontal chips below lg; `vertical` = always sidebar (use in drawers).
2292
+ */
2293
+ readonly layout: _angular_core.InputSignal<"auto" | "vertical">;
2247
2294
  readonly label: _angular_core.InputSignal<string>;
2248
2295
  readonly toggleLabel: _angular_core.InputSignal<string>;
2249
2296
  readonly select: _angular_core.OutputEmitterRef<DgaSideNavItem>;
@@ -2262,7 +2309,7 @@ declare class DgaSideNav {
2262
2309
  private childIsActive;
2263
2310
  private toggleExpanded;
2264
2311
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DgaSideNav, never>;
2265
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaSideNav, "dga-side-nav", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "toggleLabel": { "alias": "toggleLabel"; "required": false; "isSignal": true; }; "narrow": { "alias": "narrow"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; "select": "select"; "narrow": "narrowChange"; }, never, never, true, never>;
2312
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaSideNav, "dga-side-nav", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "toggleLabel": { "alias": "toggleLabel"; "required": false; "isSignal": true; }; "narrow": { "alias": "narrow"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; "select": "select"; "narrow": "narrowChange"; }, never, never, true, never>;
2266
2313
  }
2267
2314
 
2268
2315
  /** Category block inside a dual-nav secondary panel. */
@@ -2289,6 +2336,10 @@ declare class DgaDualNav {
2289
2336
  readonly active: _angular_core.ModelSignal<string>;
2290
2337
  readonly activeSectionId: _angular_core.ModelSignal<string>;
2291
2338
  readonly panelOpen: _angular_core.ModelSignal<boolean>;
2339
+ /**
2340
+ * `rail` = desktop dual columns; `stack` = section chips + panel below (drawers / mobile).
2341
+ */
2342
+ readonly layout: _angular_core.InputSignal<"rail" | "stack">;
2292
2343
  readonly railLabel: _angular_core.InputSignal<string>;
2293
2344
  readonly panelEyebrow: _angular_core.InputSignal<string>;
2294
2345
  readonly closePanelLabel: _angular_core.InputSignal<string>;
@@ -2299,7 +2350,7 @@ declare class DgaDualNav {
2299
2350
  onSelect(item: DgaSideNavItem): void;
2300
2351
  linkClasses(item: DgaSideNavItem, nested?: boolean): string;
2301
2352
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DgaDualNav, never>;
2302
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaDualNav, "dga-dual-nav", never, { "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "activeSectionId": { "alias": "activeSectionId"; "required": false; "isSignal": true; }; "panelOpen": { "alias": "panelOpen"; "required": false; "isSignal": true; }; "railLabel": { "alias": "railLabel"; "required": false; "isSignal": true; }; "panelEyebrow": { "alias": "panelEyebrow"; "required": false; "isSignal": true; }; "closePanelLabel": { "alias": "closePanelLabel"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; "activeSectionId": "activeSectionIdChange"; "panelOpen": "panelOpenChange"; "select": "select"; }, never, ["[dgaDualNavBrand]", "[dgaDualNavRailFoot]"], true, never>;
2353
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DgaDualNav, "dga-dual-nav", never, { "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "activeSectionId": { "alias": "activeSectionId"; "required": false; "isSignal": true; }; "panelOpen": { "alias": "panelOpen"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "railLabel": { "alias": "railLabel"; "required": false; "isSignal": true; }; "panelEyebrow": { "alias": "panelEyebrow"; "required": false; "isSignal": true; }; "closePanelLabel": { "alias": "closePanelLabel"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; "activeSectionId": "activeSectionIdChange"; "panelOpen": "panelOpenChange"; "select": "select"; }, never, ["[dgaDualNavBrand]", "[dgaDualNavRailFoot]"], true, never>;
2303
2354
  }
2304
2355
 
2305
2356
  type DgaNavRailPosition = 'static' | 'start' | 'end' | 'left' | 'right';
@@ -2387,11 +2438,8 @@ declare class DgaToolbar {
2387
2438
 
2388
2439
  type DgaScrollTopPosition = 'end' | 'start' | 'left' | 'right';
2389
2440
  /**
2390
- * Floating “back to top” control. Shows after the page scrolls past `threshold`,
2391
- * then smoothly scrolls the window (or a custom container) to the top.
2392
- *
2393
- * Place once near the app root. When used beside `dga-accessibility`, keep
2394
- * `clearFab` true (default) so this button sits above the a11y FAB.
2441
+ * Small “back to top” control. Shows after the page scrolls past `threshold`.
2442
+ * Shares the FAB dock with `dga-accessibility` / `dga-chatbot` via `stack`.
2395
2443
  */
2396
2444
  declare class DgaScrollTop {
2397
2445
  private readonly destroyRef;
@@ -2405,7 +2453,7 @@ declare class DgaScrollTop {
2405
2453
  readonly smooth: _angular_core.InputSignalWithTransform<boolean, unknown>;
2406
2454
  /**
2407
2455
  * 0-based slot in the shared FAB dock (bottom → top).
2408
- * Typical: a11y=0, scroll-top=1, chatbot=2.
2456
+ * Typical: a11y=0, chatbot=1, scroll-top=2.
2409
2457
  */
2410
2458
  readonly stack: _angular_core.InputSignalWithTransform<number, unknown>;
2411
2459
  /**
@@ -2413,6 +2461,10 @@ declare class DgaScrollTop {
2413
2461
  */
2414
2462
  readonly clearFab: _angular_core.InputSignalWithTransform<boolean, unknown>;
2415
2463
  readonly visible: _angular_core.WritableSignal<boolean>;
2464
+ /**
2465
+ * Same dock math as a11y/chatbot, plus a half-slot nudge so the smaller
2466
+ * control sits centered in the large FAB slot (avoids overlap).
2467
+ */
2416
2468
  readonly fabBottom: _angular_core.Signal<string>;
2417
2469
  private ticking;
2418
2470
  private readonly onScroll;
@@ -3924,5 +3976,5 @@ declare function dgaSaudiCityOptions(locale?: 'ar' | 'en', cities?: readonly Dga
3924
3976
  value: string;
3925
3977
  }[];
3926
3978
 
3927
- export { DGA_GREGORIAN_MONTHS, DGA_HIJRI_MONTHS, DGA_ICON_NAMES, DGA_ICON_SVG, DGA_LOGICAL_ICON_NAMES, DGA_PHONE_COUNTRIES, DGA_RIYAL_SVG_PATH, DGA_RIYAL_VIEWBOX, DGA_SAUDI_CITIES, DGA_WEEKDAYS, DgaAccessibility, DgaAccessibilityService, DgaAccordion, DgaAccordionItem, DgaAlert, DgaAnnouncementBar, DgaAppShell, DgaAuthCard, DgaAutocomplete, DgaAvatar, DgaBadge, DgaBreadcrumb, DgaButton, DgaCard, DgaCardMedia, DgaCarousel, DgaCarouselSlideDirective, DgaChart, DgaChatbot, DgaCheckbox, DgaChip, DgaChipInput, DgaClamp, DgaCode, DgaCookies, DgaCopy, DgaDatePickerComponent as DgaDatePicker, DgaDescriptionList, DgaDialog, DgaDivider, DgaDrawer, DgaDualNav, DgaEmpty, DgaExpandable, DgaExport, DgaExportToolbar, DgaFeedback, DgaField, DgaFilterBar, DgaFooter, DgaFormControl, DgaFormEnd, DgaFormStart, DgaGrid, DgaHeader, DgaHero, DgaIcon, DgaIconBadge, DgaIconFontService, DgaImagePopup, DgaInfoList, DgaInput, DgaLabel, DgaLink, DgaList, DgaLogoTile, DgaMenu, DgaMetric, DgaModal, DgaMultiselect, DgaNativeSelect, DgaNavRail, DgaNumber, DgaNumberInput, DgaOtp, DgaPageFeedback, DgaPageHero, DgaPagination, DgaPersona, DgaPhoneInput, DgaPreloader, DgaProgress, DgaQuote, DgaRadio, DgaRating, DgaRiyal, DgaScrollTop, DgaSection, DgaSelect, DgaShare, DgaSideInfo, DgaSideNav, DgaSkeleton, DgaSkipLink, DgaSlider, DgaSpinner, DgaStepper, DgaSwitch, DgaTab, DgaTable, DgaTabs, DgaTimePicker, DgaTimeline, DgaToast, DgaToastOutlet, DgaToastService, DgaToc, DgaToolbar, DgaTooltip, DgaTopBar, DgaUpload, decodePlatformscodeSvg, dgaAddMonths, dgaClampDate, dgaCoerceDate, dgaCompareDays, dgaDaysInMonth, dgaFormatDate, dgaGetCalendarParts, dgaGroupSaudiCitiesByRegion, dgaModeFromFormat, dgaMonthNames, dgaMonthStartWeekday, dgaNormalizeTime, dgaParseDate, dgaPartsToDate, dgaProvideValueAccessor, dgaSameDay, dgaSaudiCityOptions, dgaTodayUtc };
3928
- export type { DgaA11yBundle, DgaA11yMode, DgaA11yVisualFilter, DgaAccessibilityPosition, DgaAccordionSection, DgaAlertDisplay, DgaAlertVariant, DgaAnnouncementActionVariant, DgaAnnouncementAlign, DgaAnnouncementDensity, DgaAnnouncementElevation, DgaAnnouncementPersist, DgaAnnouncementTone, DgaAppShellAppearance, DgaAutocompleteOption, DgaAvatarSize, DgaBadgeSize, DgaBadgeVariant, DgaBreadcrumbItem, DgaBreadcrumbSeparator, DgaButtonSize, DgaButtonVariant, DgaCalendar, DgaCalendarParts, DgaCardActionsAlign, DgaCardAppearance, DgaCardBadge, DgaCardBorder, DgaCardPadding, DgaCardShadow, DgaCarouselSlide, DgaChartDataset, DgaChartPoint, DgaChartType, DgaChatbotAnimation, DgaChatbotFabTone, DgaChatbotMessage, DgaChatbotPosition, DgaChatbotSize, DgaCheckboxSize, DgaChipVariant, DgaCookieCategory, DgaCookieConsent, DgaCookieDecision, DgaCookiePreferences, DgaCookiesAlign, DgaCookiesPosition, DgaCurrency, DgaDateCalendar, DgaDatePickerMode, DgaDateRangeValue, DgaDescriptionItem, DgaDescriptionLayout, DgaDialogSize, DgaDividerOrientation, DgaDrawerSide, DgaDualNavCategory, DgaDualNavSection, DgaEmptyAppearance, DgaExportColumn, DgaExportData, DgaExportScope, DgaFeedbackSubmit, DgaFilterItem, DgaFooterAppearance, DgaFooterColumn, DgaFooterIconGroup, DgaFooterIconLink, DgaFooterLink, DgaFooterLogo, DgaFormControlSize, DgaFormStatus, DgaGridCols, DgaGridGap, DgaHeaderAction, DgaHeaderAppearance, DgaHeaderLoginConfig, DgaHeaderNotification, DgaHeaderNotificationAction, DgaHeaderNotificationTone, DgaHeaderNotificationsConfig, DgaHeaderSearchConfig, DgaHeaderSearchSuggestion, DgaHeaderUserConfig, DgaHeaderUserMenuLink, DgaHeroAppearance, DgaHeroImageMask, DgaHeroOverlayTone, DgaHeroSlide, DgaHeroTransition, DgaIconBadgeAppearance, DgaIconBadgeSize, DgaIconName, DgaIconSize, DgaIconTone, DgaImagePopupAnimation, DgaImagePopupImage, DgaImagePopupImageTransition, DgaImagePopupSource, DgaInfoListItem, DgaInputSize, DgaLinkVariant, DgaMenuItem, DgaMetricAppearance, DgaMetricTrend, DgaMobileNavMode, DgaModalAnimation, DgaModalSize, DgaMultiselectOption, DgaNativeSelectSize, DgaNavColumn, DgaNavDropdown, DgaNavDropdownLayout, DgaNavDropdownVariant, DgaNavFeatured, DgaNavItem, DgaNavLink, DgaNavRailActiveStyle, DgaNavRailAppearance, DgaNavRailItem, DgaNavRailPosition, DgaNavRailSize, DgaPageFeedbackAgreementLink, DgaPageFeedbackAnswer, DgaPageFeedbackOption, DgaPageFeedbackPhase, DgaPageFeedbackSubmit, DgaPageHeroTone, DgaPhoneCountry, DgaPreloaderPersist, DgaProgressAppearance, DgaProgressSize, DgaProgressTone, DgaRadioSize, DgaRatingSize, DgaRiyalAppearance, DgaRiyalSize, DgaRiyalTone, DgaSaudiCity, DgaScrollTopPosition, DgaSectionTone, DgaSectionWidth, DgaSelectOpenMode, DgaSelectOption, DgaSelectSize, DgaShareAppearance, DgaSideInfoItem, DgaSideNavGroup, DgaSideNavItem, DgaSkeletonAnimation, DgaSkeletonRadius, DgaSkeletonShape, DgaSkeletonSize, DgaSortDir, DgaSpinnerSize, DgaSpinnerTone, DgaStampNotice, DgaStep, DgaStepStatus, DgaSwitchSize, DgaTabItem, DgaTableColumn, DgaTableDensity, DgaTimeFormat, DgaTimePickerFormat, DgaTimePickerSize, DgaTimelineItem, DgaToastRequest, DgaToastShowOptions, DgaToastVariant, DgaTocItem, DgaTooltipPlacement, DgaTooltipVariant, DgaUploadAppearance, DgaUploadFile, DgaUploadRejectReason, DgaUploadRejection };
3979
+ export { DGA_GREGORIAN_MONTHS, DGA_HIJRI_MONTHS, DGA_ICON_NAMES, DGA_ICON_SVG, DGA_LOGICAL_ICON_NAMES, DGA_PHONE_COUNTRIES, DGA_RIYAL_SVG_PATH, DGA_RIYAL_VIEWBOX, DGA_SAUDI_CITIES, DGA_WEEKDAYS, DgaAccessibility, DgaAccessibilityService, DgaAccordion, DgaAccordionItem, DgaAlert, DgaAnnouncementBar, DgaAppShell, DgaAuthCard, DgaAutocomplete, DgaAvatar, DgaBadge, DgaBreadcrumb, DgaButton, DgaCard, DgaCardMedia, DgaCarousel, DgaCarouselSlideDirective, DgaChart, DgaChatbot, DgaCheckbox, DgaChip, DgaChipInput, DgaClamp, DgaCode, DgaContentSwitcher, DgaContentSwitcherPanel, DgaCookies, DgaCopy, DgaDatePickerComponent as DgaDatePicker, DgaDescriptionList, DgaDialog, DgaDivider, DgaDrawer, DgaDualNav, DgaEmpty, DgaExpandable, DgaExport, DgaExportToolbar, DgaFeedback, DgaField, DgaFilterBar, DgaFooter, DgaFormControl, DgaFormEnd, DgaFormStart, DgaGrid, DgaHeader, DgaHero, DgaIcon, DgaIconBadge, DgaIconFontService, DgaImagePopup, DgaInfoList, DgaInput, DgaLabel, DgaLink, DgaList, DgaLogoTile, DgaMenu, DgaMetric, DgaModal, DgaMultiselect, DgaNativeSelect, DgaNavRail, DgaNumber, DgaNumberInput, DgaOtp, DgaPageFeedback, DgaPageHero, DgaPagination, DgaPersona, DgaPhoneInput, DgaPreloader, DgaProgress, DgaQuote, DgaRadio, DgaRating, DgaRiyal, DgaScrollTop, DgaSection, DgaSelect, DgaShare, DgaSideInfo, DgaSideNav, DgaSkeleton, DgaSkipLink, DgaSlider, DgaSpinner, DgaStepper, DgaSwitch, DgaTab, DgaTable, DgaTabs, DgaTimePicker, DgaTimeline, DgaToast, DgaToastOutlet, DgaToastService, DgaToc, DgaToolbar, DgaTooltip, DgaTopBar, DgaUpload, decodePlatformscodeSvg, dgaAddMonths, dgaClampDate, dgaCoerceDate, dgaCompareDays, dgaDaysInMonth, dgaFormatDate, dgaGetCalendarParts, dgaGroupSaudiCitiesByRegion, dgaModeFromFormat, dgaMonthNames, dgaMonthStartWeekday, dgaNormalizeTime, dgaParseDate, dgaPartsToDate, dgaProvideValueAccessor, dgaSameDay, dgaSaudiCityOptions, dgaTodayUtc };
3980
+ export type { DgaA11yBundle, DgaA11yMode, DgaA11yVisualFilter, DgaAccessibilityPosition, DgaAccordionSection, DgaAlertDisplay, DgaAlertVariant, DgaAnnouncementActionVariant, DgaAnnouncementAlign, DgaAnnouncementDensity, DgaAnnouncementElevation, DgaAnnouncementPersist, DgaAnnouncementTone, DgaAppShellAppearance, DgaAutocompleteOption, DgaAvatarSize, DgaBadgeSize, DgaBadgeVariant, DgaBreadcrumbItem, DgaBreadcrumbSeparator, DgaButtonSize, DgaButtonVariant, DgaCalendar, DgaCalendarParts, DgaCardActionsAlign, DgaCardAppearance, DgaCardBadge, DgaCardBorder, DgaCardPadding, DgaCardShadow, DgaCarouselSlide, DgaChartDataset, DgaChartPoint, DgaChartType, DgaChatbotAnimation, DgaChatbotFabTone, DgaChatbotMessage, DgaChatbotPosition, DgaChatbotSize, DgaCheckboxSize, DgaChipVariant, DgaContentSwitcherItem, DgaCookieCategory, DgaCookieConsent, DgaCookieDecision, DgaCookiePreferences, DgaCookiesAlign, DgaCookiesPosition, DgaCurrency, DgaDateCalendar, DgaDatePickerMode, DgaDateRangeValue, DgaDescriptionItem, DgaDescriptionLayout, DgaDialogSize, DgaDividerOrientation, DgaDrawerSide, DgaDualNavCategory, DgaDualNavSection, DgaEmptyAppearance, DgaExportColumn, DgaExportData, DgaExportScope, DgaFeedbackSubmit, DgaFilterItem, DgaFooterAppearance, DgaFooterColumn, DgaFooterIconGroup, DgaFooterIconLink, DgaFooterLink, DgaFooterLogo, DgaFormControlSize, DgaFormStatus, DgaGridCols, DgaGridGap, DgaHeaderAction, DgaHeaderAppearance, DgaHeaderLoginConfig, DgaHeaderNotification, DgaHeaderNotificationAction, DgaHeaderNotificationTone, DgaHeaderNotificationsConfig, DgaHeaderSearchConfig, DgaHeaderSearchSuggestion, DgaHeaderUserConfig, DgaHeaderUserMenuLink, DgaHeroAppearance, DgaHeroImageMask, DgaHeroOverlayTone, DgaHeroSlide, DgaHeroTransition, DgaIconBadgeAppearance, DgaIconBadgeSize, DgaIconName, DgaIconSize, DgaIconTone, DgaImagePopupAnimation, DgaImagePopupImage, DgaImagePopupImageTransition, DgaImagePopupSource, DgaInfoListItem, DgaInputSize, DgaLinkVariant, DgaMenuItem, DgaMetricAppearance, DgaMetricTrend, DgaMobileNavMode, DgaModalAnimation, DgaModalSize, DgaMultiselectOption, DgaNativeSelectSize, DgaNavColumn, DgaNavDropdown, DgaNavDropdownLayout, DgaNavDropdownVariant, DgaNavFeatured, DgaNavItem, DgaNavLink, DgaNavRailActiveStyle, DgaNavRailAppearance, DgaNavRailItem, DgaNavRailPosition, DgaNavRailSize, DgaPageFeedbackAgreementLink, DgaPageFeedbackAnswer, DgaPageFeedbackOption, DgaPageFeedbackPhase, DgaPageFeedbackSubmit, DgaPageHeroTone, DgaPhoneCountry, DgaPreloaderPersist, DgaProgressAppearance, DgaProgressSize, DgaProgressTone, DgaRadioSize, DgaRatingSize, DgaRiyalAppearance, DgaRiyalSize, DgaRiyalTone, DgaSaudiCity, DgaScrollTopPosition, DgaSectionTone, DgaSectionWidth, DgaSelectOpenMode, DgaSelectOption, DgaSelectSize, DgaShareAppearance, DgaSideInfoItem, DgaSideNavGroup, DgaSideNavItem, DgaSkeletonAnimation, DgaSkeletonRadius, DgaSkeletonShape, DgaSkeletonSize, DgaSortDir, DgaSpinnerSize, DgaSpinnerTone, DgaStampNotice, DgaStep, DgaStepStatus, DgaSwitchSize, DgaTabItem, DgaTableColumn, DgaTableDensity, DgaTimeFormat, DgaTimePickerFormat, DgaTimePickerSize, DgaTimelineItem, DgaToastRequest, DgaToastShowOptions, DgaToastVariant, DgaTocItem, DgaTooltipPlacement, DgaTooltipVariant, DgaUploadAppearance, DgaUploadFile, DgaUploadRejectReason, DgaUploadRejection };