@moderneinc/neo-styled-components 2.2.1 → 2.3.0-next.4021a6
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/dist/MarketplaceCard/MarketplaceCard.d.ts +3 -3
- package/dist/index.d.ts +4 -4
- package/dist/index.esm.js +66 -32
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +66 -32
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -501,34 +501,52 @@ const NeoActivityIndicatorCell = ({ event = 'commit-job', secondaryEvent, scene
|
|
|
501
501
|
NeoActivityIndicatorCell.displayName = 'NeoActivityIndicatorCell';
|
|
502
502
|
|
|
503
503
|
/**
|
|
504
|
-
* @license lucide-react v0.
|
|
504
|
+
* @license lucide-react v0.563.0 - ISC
|
|
505
|
+
*
|
|
506
|
+
* This source code is licensed under the ISC license.
|
|
507
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
508
|
+
*/
|
|
509
|
+
|
|
510
|
+
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
511
|
+
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
512
|
+
}).join(" ").trim();
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* @license lucide-react v0.563.0 - ISC
|
|
505
516
|
*
|
|
506
517
|
* This source code is licensed under the ISC license.
|
|
507
518
|
* See the LICENSE file in the root directory of this source tree.
|
|
508
519
|
*/
|
|
509
520
|
|
|
510
521
|
const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* @license lucide-react v0.563.0 - ISC
|
|
525
|
+
*
|
|
526
|
+
* This source code is licensed under the ISC license.
|
|
527
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
528
|
+
*/
|
|
529
|
+
|
|
511
530
|
const toCamelCase = (string) => string.replace(
|
|
512
531
|
/^([A-Z])|[\s-_]+(\w)/g,
|
|
513
532
|
(match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase()
|
|
514
533
|
);
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* @license lucide-react v0.563.0 - ISC
|
|
537
|
+
*
|
|
538
|
+
* This source code is licensed under the ISC license.
|
|
539
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
540
|
+
*/
|
|
541
|
+
|
|
542
|
+
|
|
515
543
|
const toPascalCase = (string) => {
|
|
516
544
|
const camelCase = toCamelCase(string);
|
|
517
545
|
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
|
|
518
546
|
};
|
|
519
|
-
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
520
|
-
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
521
|
-
}).join(" ").trim();
|
|
522
|
-
const hasA11yProp = (props) => {
|
|
523
|
-
for (const prop in props) {
|
|
524
|
-
if (prop.startsWith("aria-") || prop === "role" || prop === "title") {
|
|
525
|
-
return true;
|
|
526
|
-
}
|
|
527
|
-
}
|
|
528
|
-
};
|
|
529
547
|
|
|
530
548
|
/**
|
|
531
|
-
* @license lucide-react v0.
|
|
549
|
+
* @license lucide-react v0.563.0 - ISC
|
|
532
550
|
*
|
|
533
551
|
* This source code is licensed under the ISC license.
|
|
534
552
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -547,7 +565,23 @@ var defaultAttributes = {
|
|
|
547
565
|
};
|
|
548
566
|
|
|
549
567
|
/**
|
|
550
|
-
* @license lucide-react v0.
|
|
568
|
+
* @license lucide-react v0.563.0 - ISC
|
|
569
|
+
*
|
|
570
|
+
* This source code is licensed under the ISC license.
|
|
571
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
572
|
+
*/
|
|
573
|
+
|
|
574
|
+
const hasA11yProp = (props) => {
|
|
575
|
+
for (const prop in props) {
|
|
576
|
+
if (prop.startsWith("aria-") || prop === "role" || prop === "title") {
|
|
577
|
+
return true;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
return false;
|
|
581
|
+
};
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* @license lucide-react v0.563.0 - ISC
|
|
551
585
|
*
|
|
552
586
|
* This source code is licensed under the ISC license.
|
|
553
587
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -585,7 +619,7 @@ const Icon = react.forwardRef(
|
|
|
585
619
|
);
|
|
586
620
|
|
|
587
621
|
/**
|
|
588
|
-
* @license lucide-react v0.
|
|
622
|
+
* @license lucide-react v0.563.0 - ISC
|
|
589
623
|
*
|
|
590
624
|
* This source code is licensed under the ISC license.
|
|
591
625
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -610,7 +644,7 @@ const createLucideIcon = (iconName, iconNode) => {
|
|
|
610
644
|
};
|
|
611
645
|
|
|
612
646
|
/**
|
|
613
|
-
* @license lucide-react v0.
|
|
647
|
+
* @license lucide-react v0.563.0 - ISC
|
|
614
648
|
*
|
|
615
649
|
* This source code is licensed under the ISC license.
|
|
616
650
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -624,7 +658,7 @@ const __iconNode$h = [
|
|
|
624
658
|
const ArrowDown = createLucideIcon("arrow-down", __iconNode$h);
|
|
625
659
|
|
|
626
660
|
/**
|
|
627
|
-
* @license lucide-react v0.
|
|
661
|
+
* @license lucide-react v0.563.0 - ISC
|
|
628
662
|
*
|
|
629
663
|
* This source code is licensed under the ISC license.
|
|
630
664
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -638,7 +672,7 @@ const __iconNode$g = [
|
|
|
638
672
|
const ArrowUp = createLucideIcon("arrow-up", __iconNode$g);
|
|
639
673
|
|
|
640
674
|
/**
|
|
641
|
-
* @license lucide-react v0.
|
|
675
|
+
* @license lucide-react v0.563.0 - ISC
|
|
642
676
|
*
|
|
643
677
|
* This source code is licensed under the ISC license.
|
|
644
678
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -660,7 +694,7 @@ const __iconNode$f = [
|
|
|
660
694
|
const CalendarDays = createLucideIcon("calendar-days", __iconNode$f);
|
|
661
695
|
|
|
662
696
|
/**
|
|
663
|
-
* @license lucide-react v0.
|
|
697
|
+
* @license lucide-react v0.563.0 - ISC
|
|
664
698
|
*
|
|
665
699
|
* This source code is licensed under the ISC license.
|
|
666
700
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -671,7 +705,7 @@ const __iconNode$e = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
|
|
|
671
705
|
const ChevronDown = createLucideIcon("chevron-down", __iconNode$e);
|
|
672
706
|
|
|
673
707
|
/**
|
|
674
|
-
* @license lucide-react v0.
|
|
708
|
+
* @license lucide-react v0.563.0 - ISC
|
|
675
709
|
*
|
|
676
710
|
* This source code is licensed under the ISC license.
|
|
677
711
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -682,7 +716,7 @@ const __iconNode$d = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]];
|
|
|
682
716
|
const ChevronLeft = createLucideIcon("chevron-left", __iconNode$d);
|
|
683
717
|
|
|
684
718
|
/**
|
|
685
|
-
* @license lucide-react v0.
|
|
719
|
+
* @license lucide-react v0.563.0 - ISC
|
|
686
720
|
*
|
|
687
721
|
* This source code is licensed under the ISC license.
|
|
688
722
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -693,7 +727,7 @@ const __iconNode$c = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
|
|
|
693
727
|
const ChevronRight = createLucideIcon("chevron-right", __iconNode$c);
|
|
694
728
|
|
|
695
729
|
/**
|
|
696
|
-
* @license lucide-react v0.
|
|
730
|
+
* @license lucide-react v0.563.0 - ISC
|
|
697
731
|
*
|
|
698
732
|
* This source code is licensed under the ISC license.
|
|
699
733
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -704,7 +738,7 @@ const __iconNode$b = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
|
704
738
|
const ChevronUp = createLucideIcon("chevron-up", __iconNode$b);
|
|
705
739
|
|
|
706
740
|
/**
|
|
707
|
-
* @license lucide-react v0.
|
|
741
|
+
* @license lucide-react v0.563.0 - ISC
|
|
708
742
|
*
|
|
709
743
|
* This source code is licensed under the ISC license.
|
|
710
744
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -718,7 +752,7 @@ const __iconNode$a = [
|
|
|
718
752
|
const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$a);
|
|
719
753
|
|
|
720
754
|
/**
|
|
721
|
-
* @license lucide-react v0.
|
|
755
|
+
* @license lucide-react v0.563.0 - ISC
|
|
722
756
|
*
|
|
723
757
|
* This source code is licensed under the ISC license.
|
|
724
758
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -733,7 +767,7 @@ const __iconNode$9 = [
|
|
|
733
767
|
const CircleAlert = createLucideIcon("circle-alert", __iconNode$9);
|
|
734
768
|
|
|
735
769
|
/**
|
|
736
|
-
* @license lucide-react v0.
|
|
770
|
+
* @license lucide-react v0.563.0 - ISC
|
|
737
771
|
*
|
|
738
772
|
* This source code is licensed under the ISC license.
|
|
739
773
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -747,7 +781,7 @@ const __iconNode$8 = [
|
|
|
747
781
|
const CircleCheck = createLucideIcon("circle-check", __iconNode$8);
|
|
748
782
|
|
|
749
783
|
/**
|
|
750
|
-
* @license lucide-react v0.
|
|
784
|
+
* @license lucide-react v0.563.0 - ISC
|
|
751
785
|
*
|
|
752
786
|
* This source code is licensed under the ISC license.
|
|
753
787
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -762,7 +796,7 @@ const __iconNode$7 = [
|
|
|
762
796
|
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$7);
|
|
763
797
|
|
|
764
798
|
/**
|
|
765
|
-
* @license lucide-react v0.
|
|
799
|
+
* @license lucide-react v0.563.0 - ISC
|
|
766
800
|
*
|
|
767
801
|
* This source code is licensed under the ISC license.
|
|
768
802
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -777,7 +811,7 @@ const __iconNode$6 = [
|
|
|
777
811
|
const Columns3 = createLucideIcon("columns-3", __iconNode$6);
|
|
778
812
|
|
|
779
813
|
/**
|
|
780
|
-
* @license lucide-react v0.
|
|
814
|
+
* @license lucide-react v0.563.0 - ISC
|
|
781
815
|
*
|
|
782
816
|
* This source code is licensed under the ISC license.
|
|
783
817
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -792,7 +826,7 @@ const __iconNode$5 = [
|
|
|
792
826
|
const ListFilter = createLucideIcon("list-filter", __iconNode$5);
|
|
793
827
|
|
|
794
828
|
/**
|
|
795
|
-
* @license lucide-react v0.
|
|
829
|
+
* @license lucide-react v0.563.0 - ISC
|
|
796
830
|
*
|
|
797
831
|
* This source code is licensed under the ISC license.
|
|
798
832
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -806,7 +840,7 @@ const __iconNode$4 = [
|
|
|
806
840
|
const Plus = createLucideIcon("plus", __iconNode$4);
|
|
807
841
|
|
|
808
842
|
/**
|
|
809
|
-
* @license lucide-react v0.
|
|
843
|
+
* @license lucide-react v0.563.0 - ISC
|
|
810
844
|
*
|
|
811
845
|
* This source code is licensed under the ISC license.
|
|
812
846
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -820,7 +854,7 @@ const __iconNode$3 = [
|
|
|
820
854
|
const Search = createLucideIcon("search", __iconNode$3);
|
|
821
855
|
|
|
822
856
|
/**
|
|
823
|
-
* @license lucide-react v0.
|
|
857
|
+
* @license lucide-react v0.563.0 - ISC
|
|
824
858
|
*
|
|
825
859
|
* This source code is licensed under the ISC license.
|
|
826
860
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -837,7 +871,7 @@ const __iconNode$2 = [
|
|
|
837
871
|
const Trash2 = createLucideIcon("trash-2", __iconNode$2);
|
|
838
872
|
|
|
839
873
|
/**
|
|
840
|
-
* @license lucide-react v0.
|
|
874
|
+
* @license lucide-react v0.563.0 - ISC
|
|
841
875
|
*
|
|
842
876
|
* This source code is licensed under the ISC license.
|
|
843
877
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -856,7 +890,7 @@ const __iconNode$1 = [
|
|
|
856
890
|
const WifiOff = createLucideIcon("wifi-off", __iconNode$1);
|
|
857
891
|
|
|
858
892
|
/**
|
|
859
|
-
* @license lucide-react v0.
|
|
893
|
+
* @license lucide-react v0.563.0 - ISC
|
|
860
894
|
*
|
|
861
895
|
* This source code is licensed under the ISC license.
|
|
862
896
|
* See the LICENSE file in the root directory of this source tree.
|