@a.nemreen/dga-ui 0.2.5 → 0.2.6

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.6",
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": {
@@ -809,7 +809,7 @@ declare class DgaDatePickerComponent implements ControlValueAccessor {
809
809
  readonly viewParts: _angular_core.WritableSignal<DgaCalendarParts>;
810
810
  readonly draftStart: _angular_core.WritableSignal<Date | null>;
811
811
  readonly draftEnd: _angular_core.WritableSignal<Date | null>;
812
- readonly rangePickPhase: _angular_core.WritableSignal<"start" | "end">;
812
+ readonly rangePickPhase: _angular_core.WritableSignal<"end" | "start">;
813
813
  readonly typedValue: _angular_core.WritableSignal<string | null>;
814
814
  readonly effectiveStatus: _angular_core.Signal<DgaFormStatus>;
815
815
  readonly panelMode: _angular_core.Signal<DgaDatePickerMode>;
@@ -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
  }
@@ -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;
@@ -2339,9 +2382,9 @@ declare class DgaNavRail {
2339
2382
  readonly smoothScroll: _angular_core.InputSignalWithTransform<boolean, unknown>;
2340
2383
  readonly select: _angular_core.OutputEmitterRef<DgaNavRailItem>;
2341
2384
  readonly expandChange: _angular_core.OutputEmitterRef<boolean>;
2342
- readonly edgeAttr: _angular_core.Signal<"start" | "end" | "right" | "left" | null>;
2385
+ readonly edgeAttr: _angular_core.Signal<"end" | "start" | "left" | "right" | null>;
2343
2386
  readonly offsetCss: _angular_core.Signal<string>;
2344
- readonly tooltipPlacement: _angular_core.Signal<"start" | "end">;
2387
+ readonly tooltipPlacement: _angular_core.Signal<"end" | "start">;
2345
2388
  readonly iconSize: _angular_core.Signal<"sm" | "md" | "lg">;
2346
2389
  readonly expandIcon: _angular_core.Signal<"chevronLeft" | "chevronRight">;
2347
2390
  readonly listGapClass: _angular_core.Signal<"gap-xs" | "gap-sm" | "gap-md">;
@@ -2387,11 +2430,8 @@ declare class DgaToolbar {
2387
2430
 
2388
2431
  type DgaScrollTopPosition = 'end' | 'start' | 'left' | 'right';
2389
2432
  /**
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.
2433
+ * Small “back to top” control. Shows after the page scrolls past `threshold`.
2434
+ * Shares the FAB dock with `dga-accessibility` / `dga-chatbot` via `stack`.
2395
2435
  */
2396
2436
  declare class DgaScrollTop {
2397
2437
  private readonly destroyRef;
@@ -2405,7 +2445,7 @@ declare class DgaScrollTop {
2405
2445
  readonly smooth: _angular_core.InputSignalWithTransform<boolean, unknown>;
2406
2446
  /**
2407
2447
  * 0-based slot in the shared FAB dock (bottom → top).
2408
- * Typical: a11y=0, scroll-top=1, chatbot=2.
2448
+ * Typical: a11y=0, chatbot=1, scroll-top=2.
2409
2449
  */
2410
2450
  readonly stack: _angular_core.InputSignalWithTransform<number, unknown>;
2411
2451
  /**
@@ -2413,6 +2453,10 @@ declare class DgaScrollTop {
2413
2453
  */
2414
2454
  readonly clearFab: _angular_core.InputSignalWithTransform<boolean, unknown>;
2415
2455
  readonly visible: _angular_core.WritableSignal<boolean>;
2456
+ /**
2457
+ * Same dock math as a11y/chatbot, plus a half-slot nudge so the smaller
2458
+ * control sits centered in the large FAB slot (avoids overlap).
2459
+ */
2416
2460
  readonly fabBottom: _angular_core.Signal<string>;
2417
2461
  private ticking;
2418
2462
  private readonly onScroll;
@@ -3924,5 +3968,5 @@ declare function dgaSaudiCityOptions(locale?: 'ar' | 'en', cities?: readonly Dga
3924
3968
  value: string;
3925
3969
  }[];
3926
3970
 
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 };
3971
+ 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 };
3972
+ 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 };