@appquality/unguess-design-system 3.1.1-nav-beta → 3.1.2-beta.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.
Files changed (73) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/build/index.d.ts +1 -1
  3. package/build/index.js +457 -453
  4. package/build/stories/alerts/index.d.ts +1 -1
  5. package/build/stories/breadcrumbs/index.stories.d.ts +2 -2
  6. package/build/stories/buttons/anchor/index.d.ts +2 -2
  7. package/build/stories/buttons/anchor/index.stories.d.ts +5 -5
  8. package/build/stories/buttons/button/_types.d.ts +2 -29
  9. package/build/stories/buttons/button/index.d.ts +1 -1
  10. package/build/stories/buttons/button/index.stories.d.ts +5 -1216
  11. package/build/stories/buttons/button-group/index.d.ts +2 -2
  12. package/build/stories/buttons/button-group/index.stories.d.ts +10 -11
  13. package/build/stories/buttons/icon-button/_types.d.ts +2 -16
  14. package/build/stories/buttons/icon-button/index.stories.d.ts +2 -2
  15. package/build/stories/buttons/utils.d.ts +12 -0
  16. package/build/stories/cards/index.d.ts +6 -0
  17. package/build/stories/charts/ChartContainer.d.ts +1 -1
  18. package/build/stories/dropdowns/field/index.d.ts +1 -1
  19. package/build/stories/dropdowns/select/index.d.ts +1 -1
  20. package/build/stories/editor/editorStyle.d.ts +1 -1
  21. package/build/stories/forms/input/index.d.ts +1 -1
  22. package/build/stories/forms/input-toggle/index.d.ts +1 -1
  23. package/build/stories/label/index.d.ts +1 -1
  24. package/build/stories/lightbox/parts/body.d.ts +3 -3
  25. package/build/stories/lightbox/parts/footer.d.ts +1 -1
  26. package/build/stories/modals/fullscreen/index.d.ts +4 -4
  27. package/build/stories/modals/index.d.ts +1 -1
  28. package/build/stories/navigation/header/header-item/brandItem.d.ts +1 -1
  29. package/build/stories/navigation/nav/nav-item/accordionItem.d.ts +3 -3
  30. package/build/stories/navigation/nav/nav-item/index.d.ts +2 -1
  31. package/build/stories/navigation/nav/nav-item/navItemProject.d.ts +1 -1
  32. package/build/stories/navigation/page-header/index.d.ts +8 -4
  33. package/build/stories/navigation/page-header/styled/main.d.ts +9 -4
  34. package/build/stories/navigation/sidebar/index.stories.d.ts +0 -4
  35. package/build/stories/player/parts/container.d.ts +1 -1
  36. package/build/stories/player/parts/controls.d.ts +2 -2
  37. package/build/stories/player/parts/floatingControls.d.ts +1 -1
  38. package/build/stories/player/parts/video.d.ts +1 -1
  39. package/build/stories/profile-modal/menuItem.d.ts +1 -1
  40. package/build/stories/profile-modal/menuItemIcon.d.ts +1 -1
  41. package/build/stories/slider/index.d.ts +2 -0
  42. package/build/stories/slider/parts/container.d.ts +1 -1
  43. package/build/stories/slider/parts/slickSlider.d.ts +1 -1
  44. package/build/stories/special-cards/index.d.ts +12 -5
  45. package/build/stories/special-cards/styled/header.d.ts +10 -3
  46. package/build/stories/special-cards/styled/meta.d.ts +1 -1
  47. package/build/stories/special-cards/styled/thumbnail.d.ts +1 -1
  48. package/build/stories/stepper/index.d.ts +3 -3
  49. package/build/stories/tags/index.d.ts +3 -3
  50. package/build/stories/theme/charts.d.ts +1 -17
  51. package/build/stories/theme/colors.d.ts +5 -10
  52. package/build/stories/theme/components.d.ts +112 -43
  53. package/build/stories/theme/gradients.d.ts +0 -1
  54. package/build/stories/theme/index.d.ts +137 -85
  55. package/build/stories/theme/mixins.d.ts +2 -2
  56. package/build/stories/theme/palette.d.ts +35 -36
  57. package/build/stories/theme/palette.stories.d.ts +19 -5
  58. package/build/stories/theme/utils.d.ts +6 -2
  59. package/build/stories/timeline/index.d.ts +2 -2
  60. package/build/stories/tooltip/index.d.ts +1 -1
  61. package/build/stories/tooltip/index.stories.d.ts +1 -1
  62. package/build/stories/typography/paragraph/index.d.ts +2 -2
  63. package/build/stories/typography/paragraph/index.stories.d.ts +3 -3
  64. package/build/stories/typography/typescale/anchortag/index.stories.d.ts +11 -1
  65. package/build/stories/typography/typescale/index.d.ts +26 -8
  66. package/build/stories/typography/typescale/index.stories.d.ts +11 -1
  67. package/package.json +3 -2
  68. package/yarn-error.log +10059 -6023
  69. package/build/stories/buttons/anchor/_types.d.ts +0 -11
  70. package/build/stories/buttons/button-group/_types.d.ts +0 -5
  71. package/build/stories/buttons/utils/useButtonVariant.d.ts +0 -5
  72. package/build/stories/typography/paragraph/_types.d.ts +0 -5
  73. package/build/stories/typography/typescale/_types.d.ts +0 -43
@@ -1,11 +0,0 @@
1
- import { IAnchorProps } from "@zendeskgarden/react-buttons";
2
- export interface AnchorArgs extends IAnchorProps {
3
- /** Applies danger styling */
4
- isDanger?: boolean;
5
- /**
6
- * Attaches `target="_blank"` and `rel="noopener noreferrer"` to an anchor that
7
- * navigates to an external resource. This ensures that the anchor is a
8
- * safe [cross-origin destination link](https://web.dev/external-anchors-use-rel-noopener/).
9
- **/
10
- isExternal?: boolean;
11
- }
@@ -1,5 +0,0 @@
1
- import { IButtonGroupProps } from "@zendeskgarden/react-buttons";
2
- export interface ButtonGroupArgs extends IButtonGroupProps {
3
- /** Defines the currently selected button in the group */
4
- selectedItem?: any;
5
- }
@@ -1,5 +0,0 @@
1
- import { ButtonArgs } from "../button/_types";
2
- declare const getButtonVariant: (args: ButtonArgs) => {
3
- isBasic?: boolean | undefined;
4
- };
5
- export { getButtonVariant };
@@ -1,5 +0,0 @@
1
- import { IParagraphProps } from "@zendeskgarden/react-typography";
2
- export interface ParagraphArgs extends IParagraphProps {
3
- /** Controls the spacing between sibling paragraphs */
4
- size?: "small" | "medium" | "large";
5
- }
@@ -1,43 +0,0 @@
1
- import { ISMProps, IMDProps, ILGProps, IXLProps, IXXLProps, IXXXLProps } from "@zendeskgarden/react-typography";
2
- export interface SMArgs extends ISMProps {
3
- /** Updates the element's HTML tag */
4
- tag?: any;
5
- /** Applies bold font style */
6
- isBold?: boolean;
7
- /** Renders with monospace font */
8
- isMonospace?: boolean;
9
- }
10
- export interface MDArgs extends IMDProps {
11
- /** Updates the element's HTML tag */
12
- tag?: any;
13
- /** Applies bold font style */
14
- isBold?: boolean;
15
- /** Renders with monospace font */
16
- isMonospace?: boolean;
17
- }
18
- export interface LGArgs extends ILGProps {
19
- /** Updates the element's HTML tag */
20
- tag?: any;
21
- /** Applies bold font style */
22
- isBold?: boolean;
23
- /** Renders with monospace font */
24
- isMonospace?: boolean;
25
- }
26
- export interface XLArgs extends IXLProps {
27
- /** Updates the element's HTML tag */
28
- tag?: any;
29
- /** Applies bold font style */
30
- isBold?: boolean;
31
- }
32
- export interface XXLArgs extends IXXLProps {
33
- /** Updates the element's HTML tag */
34
- tag?: any;
35
- /** Applies bold font style */
36
- isBold?: boolean;
37
- }
38
- export interface XXXLArgs extends IXXXLProps {
39
- /** Updates the element's HTML tag */
40
- tag?: any;
41
- /** Applies bold font style */
42
- isBold?: boolean;
43
- }