@pingux/astro 2.88.0-alpha.3 → 2.89.0-alpha.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 (54) hide show
  1. package/lib/cjs/components/CodeView/CodeView.js +29 -4
  2. package/lib/cjs/components/CodeView/CodeView.test.js +10 -0
  3. package/lib/cjs/components/CopyText/CopyText.js +2 -2
  4. package/lib/cjs/components/NavigationHeader/HeaderAccountMenu.d.ts +9 -0
  5. package/lib/cjs/components/NavigationHeader/HeaderAccountMenu.js +75 -0
  6. package/lib/cjs/components/NavigationHeader/NavigationHeader.d.ts +9 -0
  7. package/lib/cjs/components/NavigationHeader/NavigationHeader.js +49 -0
  8. package/lib/cjs/components/NavigationHeader/NavigationHeader.mdx +31 -0
  9. package/lib/cjs/components/NavigationHeader/NavigationHeader.stories.d.ts +12 -0
  10. package/lib/cjs/components/NavigationHeader/NavigationHeader.stories.js +210 -0
  11. package/lib/cjs/components/NavigationHeader/NavigationHeader.test.d.ts +1 -0
  12. package/lib/cjs/components/NavigationHeader/NavigationHeader.test.js +361 -0
  13. package/lib/cjs/components/NavigationHeader/index.d.ts +1 -0
  14. package/lib/cjs/components/NavigationHeader/index.js +14 -0
  15. package/lib/cjs/hooks/useField/useField.d.ts +78 -78
  16. package/lib/cjs/index.d.ts +2 -0
  17. package/lib/cjs/index.js +55 -36
  18. package/lib/cjs/styles/themes/next-gen/codeView/codeView.d.ts +15 -1
  19. package/lib/cjs/styles/themes/next-gen/codeView/codeView.js +22 -6
  20. package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +1 -0
  21. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +4 -2
  22. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +261 -7
  23. package/lib/cjs/styles/themes/next-gen/next-gen.js +2 -0
  24. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +5 -0
  25. package/lib/cjs/styles/themes/next-gen/variants/button.js +6 -4
  26. package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.d.ts +140 -0
  27. package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.js +131 -0
  28. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +107 -6
  29. package/lib/cjs/styles/themes/next-gen/variants/variants.js +15 -9
  30. package/lib/cjs/types/codeView.d.ts +3 -2
  31. package/lib/cjs/types/copyText.d.ts +1 -1
  32. package/lib/cjs/types/index.d.ts +1 -0
  33. package/lib/cjs/types/index.js +65 -54
  34. package/lib/cjs/utils/devUtils/constants/images.d.ts +2 -0
  35. package/lib/cjs/utils/devUtils/constants/images.js +6 -2
  36. package/lib/components/CodeView/CodeView.js +30 -5
  37. package/lib/components/CodeView/CodeView.test.js +10 -0
  38. package/lib/components/CopyText/CopyText.js +2 -2
  39. package/lib/components/NavigationHeader/HeaderAccountMenu.js +66 -0
  40. package/lib/components/NavigationHeader/NavigationHeader.js +37 -0
  41. package/lib/components/NavigationHeader/NavigationHeader.mdx +31 -0
  42. package/lib/components/NavigationHeader/NavigationHeader.stories.js +195 -0
  43. package/lib/components/NavigationHeader/NavigationHeader.test.js +358 -0
  44. package/lib/components/NavigationHeader/index.js +1 -0
  45. package/lib/index.js +2 -0
  46. package/lib/styles/themes/next-gen/codeView/codeView.js +20 -5
  47. package/lib/styles/themes/next-gen/convertedComponentList.js +2 -1
  48. package/lib/styles/themes/next-gen/next-gen.js +2 -0
  49. package/lib/styles/themes/next-gen/variants/button.js +6 -4
  50. package/lib/styles/themes/next-gen/variants/navigationHeader.js +123 -0
  51. package/lib/styles/themes/next-gen/variants/variants.js +14 -8
  52. package/lib/types/index.js +1 -0
  53. package/lib/utils/devUtils/constants/images.js +3 -1
  54. package/package.json +1 -1
@@ -435,6 +435,9 @@ declare const _default: {
435
435
  separator: {
436
436
  base: {
437
437
  bg: string;
438
+ '&.is-vertical': {
439
+ m: string;
440
+ };
438
441
  };
439
442
  };
440
443
  menuItem: {
@@ -612,19 +615,117 @@ declare const _default: {
612
615
  };
613
616
  };
614
617
  codeView: {
618
+ theme: {
619
+ plain: {
620
+ color: string;
621
+ backgroundColor: string;
622
+ };
623
+ styles: ({
624
+ types: string[];
625
+ style: {
626
+ color: string;
627
+ background?: undefined;
628
+ fontWeight?: undefined;
629
+ cursor?: undefined;
630
+ };
631
+ } | {
632
+ types: string[];
633
+ style: {
634
+ color: string;
635
+ background: string;
636
+ fontWeight?: undefined;
637
+ cursor?: undefined;
638
+ };
639
+ } | {
640
+ types: string[];
641
+ style: {
642
+ fontWeight: string;
643
+ color?: undefined;
644
+ background?: undefined;
645
+ cursor?: undefined;
646
+ };
647
+ } | {
648
+ types: string[];
649
+ style: {
650
+ cursor: string;
651
+ color?: undefined;
652
+ background?: undefined;
653
+ fontWeight?: undefined;
654
+ };
655
+ })[];
656
+ };
615
657
  wrapper: {
616
658
  backgroundColor: string;
659
+ border: string;
660
+ borderColor: string;
617
661
  borderRadius: string;
618
- '> button >svg': {
619
- color: string;
620
- path: {
621
- fill: string;
662
+ width: number;
663
+ height: number;
664
+ my: string;
665
+ overflow: string;
666
+ alignItems: string;
667
+ '&.is-focused, &:focus': {
668
+ boxShadow: string;
669
+ outline: string;
670
+ };
671
+ pre: {
672
+ backgroundColor: string;
673
+ padding: string;
674
+ height: string;
675
+ width: string;
676
+ overflowX: string;
677
+ overflowY: string;
678
+ fontSize: string;
679
+ '& .token-line': {
680
+ display: string;
681
+ alignItems: string;
682
+ '& .token': {
683
+ whiteSpace: string;
684
+ wordBreak: string;
685
+ };
686
+ };
687
+ fontFamily: string;
688
+ lineHeight: string;
689
+ };
690
+ '&.has-no-copy-button': {
691
+ pre: {
692
+ p: string;
622
693
  };
623
694
  };
624
- '> pre': {
625
- p: string;
695
+ '&.has-line-numbers': {
696
+ pre: {
697
+ p: string;
698
+ overflow: string;
699
+ '& .token-line:first-of-type *': {
700
+ pt: string;
701
+ };
702
+ '& .token-line': {
703
+ display: string;
704
+ '& .token': {
705
+ whiteSpace: string;
706
+ };
707
+ };
708
+ };
626
709
  };
627
710
  };
711
+ lineNo: {
712
+ display: string;
713
+ userSelect: string;
714
+ px: string;
715
+ m: string;
716
+ bg: string;
717
+ minWidth: number;
718
+ color: string;
719
+ lineHeight: string;
720
+ };
721
+ header: {
722
+ color: string;
723
+ px: string;
724
+ width: string;
725
+ border: string;
726
+ borderColor: string;
727
+ lineHeight: string;
728
+ };
628
729
  };
629
730
  tabs: {
630
731
  gap: string;
@@ -14,6 +14,7 @@ _Object$defineProperty(exports, "__esModule", {
14
14
  });
15
15
  exports["default"] = exports.badges = exports.badgeDeleteButton = void 0;
16
16
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
17
+ var _codeView = _interopRequireDefault(require("../codeView/codeView"));
17
18
  var _button = _interopRequireDefault(require("./button"));
18
19
  function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
19
20
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
@@ -252,7 +253,10 @@ var menuItem = {
252
253
  };
253
254
  var separator = {
254
255
  base: {
255
- bg: 'gray-300'
256
+ bg: 'gray-300',
257
+ '&.is-vertical': {
258
+ m: '0'
259
+ }
256
260
  }
257
261
  };
258
262
  var avatar = {
@@ -501,21 +505,23 @@ var dataTable = {
501
505
  fontSize: 'md'
502
506
  }
503
507
  };
504
- var codeView = {
508
+
509
+ /* const codeView = {
505
510
  wrapper: {
506
511
  backgroundColor: 'gray-900',
507
512
  borderRadius: '4px',
508
513
  '> button >svg': {
509
514
  color: 'gray-300',
510
515
  path: {
511
- fill: 'gray-300'
512
- }
516
+ fill: 'gray-300',
517
+ },
513
518
  },
514
519
  '> pre': {
515
- p: 'md'
516
- }
517
- }
518
- };
520
+ p: 'md',
521
+ },
522
+ },
523
+ }; */
524
+
519
525
  var tabs = {
520
526
  gap: '0px'
521
527
  };
@@ -539,7 +545,7 @@ var _default = {
539
545
  progressBar: progressBar,
540
546
  listView: listView,
541
547
  dataTable: dataTable,
542
- codeView: codeView,
548
+ codeView: _codeView["default"],
543
549
  tabs: tabs,
544
550
  menu: menu
545
551
  };
@@ -2,10 +2,10 @@ import type { PrismTheme } from 'prism-react-renderer';
2
2
  import { Language, Prism as PrismRR } from 'prism-react-renderer';
3
3
  import Prism from 'prismjs';
4
4
  import { ThemeUICSSObject } from 'theme-ui';
5
- import { HoverProps } from './shared';
5
+ import { HoverProps, StyleProps } from './shared';
6
6
  export type PrismProps = typeof PrismRR & typeof Prism;
7
7
  export type PrismThemeProps = PrismTheme;
8
- export interface CodeViewProps extends HoverProps {
8
+ export interface CodeViewProps extends HoverProps, StyleProps {
9
9
  children?: string;
10
10
  className?: string;
11
11
  hasLineNumbers?: boolean;
@@ -14,4 +14,5 @@ export interface CodeViewProps extends HoverProps {
14
14
  Prism?: PrismProps;
15
15
  sx?: ThemeUICSSObject;
16
16
  stylesProp?: ThemeUICSSObject;
17
+ isNextGen?: boolean;
17
18
  }
@@ -15,7 +15,7 @@ export interface TooltipWrapperProps {
15
15
  }
16
16
  export interface CopyTextProps extends HoverProps, TestingAttributes {
17
17
  children?: React.ReactNode;
18
- mode?: 'text' | 'link' | 'nonClickableContent';
18
+ mode?: 'text' | 'link' | 'nonClickableContent' | 'rightText';
19
19
  textToCopy?: string;
20
20
  tooltipText?: string;
21
21
  tooltipProps?: TooltipTriggerProps;
@@ -1,4 +1,5 @@
1
1
  export * from './arrayField';
2
+ export * from './avatar';
2
3
  export * from './badge';
3
4
  export * from './box';
4
5
  export * from './bracket';