@atlasng/design-system 0.0.2

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.
Files changed (40) hide show
  1. package/README.md +39 -0
  2. package/fesm2022/atlasng-design-system-buttons-breadcrumbs.mjs +24 -0
  3. package/fesm2022/atlasng-design-system-buttons-breadcrumbs.mjs.map +1 -0
  4. package/fesm2022/atlasng-design-system-buttons-help.mjs +35 -0
  5. package/fesm2022/atlasng-design-system-buttons-help.mjs.map +1 -0
  6. package/fesm2022/atlasng-design-system-buttons-navigation-toggle.mjs +28 -0
  7. package/fesm2022/atlasng-design-system-buttons-navigation-toggle.mjs.map +1 -0
  8. package/fesm2022/atlasng-design-system-buttons-navigation.mjs +24 -0
  9. package/fesm2022/atlasng-design-system-buttons-navigation.mjs.map +1 -0
  10. package/fesm2022/atlasng-design-system-buttons-social-media.mjs +121 -0
  11. package/fesm2022/atlasng-design-system-buttons-social-media.mjs.map +1 -0
  12. package/fesm2022/atlasng-design-system-cookie-banner.mjs +274 -0
  13. package/fesm2022/atlasng-design-system-cookie-banner.mjs.map +1 -0
  14. package/fesm2022/atlasng-design-system-indicators-end-of-results.mjs +31 -0
  15. package/fesm2022/atlasng-design-system-indicators-end-of-results.mjs.map +1 -0
  16. package/fesm2022/atlasng-design-system-indicators-no-results.mjs +33 -0
  17. package/fesm2022/atlasng-design-system-indicators-no-results.mjs.map +1 -0
  18. package/fesm2022/atlasng-design-system-indicators-results.mjs +50 -0
  19. package/fesm2022/atlasng-design-system-indicators-results.mjs.map +1 -0
  20. package/fesm2022/atlasng-design-system-text-link.mjs +49 -0
  21. package/fesm2022/atlasng-design-system-text-link.mjs.map +1 -0
  22. package/fesm2022/atlasng-design-system.mjs +6 -0
  23. package/fesm2022/atlasng-design-system.mjs.map +1 -0
  24. package/package.json +70 -0
  25. package/sass/_index.scss +3 -0
  26. package/sass/_mat-defaults.scss +27 -0
  27. package/sass/internal/_breakpoints.scss +150 -0
  28. package/sass/internal/_sass-utils.scss +45 -0
  29. package/sass/internal/_token-utils.scss +59 -0
  30. package/types/atlasng-design-system-buttons-breadcrumbs.d.ts +20 -0
  31. package/types/atlasng-design-system-buttons-help.d.ts +17 -0
  32. package/types/atlasng-design-system-buttons-navigation-toggle.d.ts +10 -0
  33. package/types/atlasng-design-system-buttons-navigation.d.ts +11 -0
  34. package/types/atlasng-design-system-buttons-social-media.d.ts +54 -0
  35. package/types/atlasng-design-system-cookie-banner.d.ts +132 -0
  36. package/types/atlasng-design-system-indicators-end-of-results.d.ts +17 -0
  37. package/types/atlasng-design-system-indicators-no-results.d.ts +20 -0
  38. package/types/atlasng-design-system-indicators-results.d.ts +30 -0
  39. package/types/atlasng-design-system-text-link.d.ts +24 -0
  40. package/types/atlasng-design-system.d.ts +2 -0
@@ -0,0 +1,30 @@
1
+ import * as _angular_core from '@angular/core';
2
+
3
+ /**
4
+ * Displays a localized "value of total" style indicator.
5
+ *
6
+ * Example output: "Showing 5 of 120 results".
7
+ */
8
+ declare class ResultsIndicator {
9
+ /** Current value to display (for example, number of visible results). */
10
+ readonly value: _angular_core.InputSignal<number>;
11
+ /** Maximum or total value to display. */
12
+ readonly total: _angular_core.InputSignal<number>;
13
+ /** Word or separator symbol between value and total. Defaults to "of". */
14
+ readonly separator: _angular_core.InputSignal<string>;
15
+ /** Optional text shown before the numeric segment. */
16
+ readonly prefix: _angular_core.InputSignal<string>;
17
+ /** Optional text shown after the numeric segment. */
18
+ readonly suffix: _angular_core.InputSignal<string>;
19
+ /**
20
+ * Final display string composed from prefix/value/separator/total/suffix.
21
+ * Numeric values are localized using the active Angular locale.
22
+ */
23
+ protected readonly text: _angular_core.Signal<string>;
24
+ /** Locale used for number formatting, injected from Angular DI. */
25
+ private readonly locale;
26
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ResultsIndicator, never>;
27
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ResultsIndicator, "ang-results-indicator", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "total": { "alias": "total"; "required": true; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
28
+ }
29
+
30
+ export { ResultsIndicator };
@@ -0,0 +1,24 @@
1
+ import { FocusOrigin } from '@angular/cdk/a11y';
2
+ import * as i0 from '@angular/core';
3
+ import * as i1 from '@atlasng/analytics';
4
+
5
+ /**
6
+ * Styled anchor directive for AtlasNG text links.
7
+ */
8
+ declare class TextLink {
9
+ /** Focus manager. */
10
+ private readonly focusMonitor;
11
+ /** Native host anchor element. */
12
+ private readonly element;
13
+ /**
14
+ * Moves focus to the host anchor using the Angular CDK focus monitor.
15
+ *
16
+ * @param origin Focus origin to apply when moving focus.
17
+ * @param options Optional focus options passed to the underlying focus call.
18
+ */
19
+ focus(origin?: FocusOrigin, options?: FocusOptions): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextLink, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextLink, "a[angTextLink]", never, {}, {}, never, ["*", ".material-icons, mat-icon, [matButtonIcon]"], true, [{ directive: typeof i1.TrackClick; inputs: { "angTrackClick": "angTrackTextLink"; "angTrackClickOptions": "angTrackTextLinkOptions"; }; outputs: {}; }]>;
22
+ }
23
+
24
+ export { TextLink };
@@ -0,0 +1,2 @@
1
+
2
+ export { };