@genesislcap/foundation-zero 14.46.0 → 14.47.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.
@@ -753,7 +753,7 @@
753
753
  },
754
754
  {
755
755
  "kind": "javascript-module",
756
- "path": "src/anchor/anchor.stories.ts",
756
+ "path": "src/actions-menu/actions-menu.stories.ts",
757
757
  "declarations": [
758
758
  {
759
759
  "kind": "variable",
@@ -761,15 +761,23 @@
761
761
  "type": {
762
762
  "text": "Meta"
763
763
  },
764
- "default": "{\n title: 'Anchor',\n component: 'zero-anchor',\n}"
764
+ "default": "{\n title: 'Actions Menu',\n component: 'zero-actions-menu',\n}"
765
765
  },
766
766
  {
767
767
  "kind": "variable",
768
- "name": "All",
768
+ "name": "Horizontal",
769
769
  "type": {
770
770
  "text": "StoryObj"
771
771
  },
772
- "default": "{\n args: {\n anchorText: 'Rapid Anchor',\n appearances: ZeroAppearanceValues,\n },\n ...StylesMapperTemplate,\n}"
772
+ "default": "{\n args: {\n actions: zeroActions,\n actionsOpenerText: 'Horizontal Actions',\n },\n render: (args) =>\n html`\n <div style=\"${horizontalStyle}\">\n <zero-actions-menu\n name=\"${args.actionsOpenerText}\"\n .actions=${args.actions}\n ></zero-actions-menu>\n </div>\n `,\n}"
773
+ },
774
+ {
775
+ "kind": "variable",
776
+ "name": "Vertical",
777
+ "type": {
778
+ "text": "StoryObj"
779
+ },
780
+ "default": "{\n args: {\n actions: zeroActions,\n actionsOpenerText: 'Vertical Actions',\n },\n render: ({ actionsOpenerText, actions }) =>\n html`\n <div style=\"${verticalStyle}\">\n <zero-actions-menu\n name=\"${actionsOpenerText}\"\n .actions=${actions}\n is-vertical\n ></zero-actions-menu>\n </div>\n `,\n}"
773
781
  }
774
782
  ],
775
783
  "exports": [
@@ -778,68 +786,37 @@
778
786
  "name": "default",
779
787
  "declaration": {
780
788
  "name": "meta",
781
- "module": "src/anchor/anchor.stories.ts"
789
+ "module": "src/actions-menu/actions-menu.stories.ts"
782
790
  }
783
791
  },
784
792
  {
785
793
  "kind": "js",
786
- "name": "All",
794
+ "name": "Horizontal",
787
795
  "declaration": {
788
- "name": "All",
789
- "module": "src/anchor/anchor.stories.ts"
796
+ "name": "Horizontal",
797
+ "module": "src/actions-menu/actions-menu.stories.ts"
790
798
  }
791
- }
792
- ]
793
- },
794
- {
795
- "kind": "javascript-module",
796
- "path": "src/anchor/anchor.styles.ts",
797
- "declarations": [
798
- {
799
- "kind": "function",
800
- "name": "zeroAnchorStyles",
801
- "return": {
802
- "type": {
803
- "text": "ElementStyles"
804
- }
805
- },
806
- "parameters": [
807
- {
808
- "name": "context",
809
- "type": {
810
- "text": "ElementDefinitionContext"
811
- }
812
- },
813
- {
814
- "name": "definition",
815
- "type": {
816
- "text": "FoundationElementDefinition"
817
- }
818
- }
819
- ]
820
- }
821
- ],
822
- "exports": [
799
+ },
823
800
  {
824
801
  "kind": "js",
825
- "name": "zeroAnchorStyles",
802
+ "name": "Vertical",
826
803
  "declaration": {
827
- "name": "zeroAnchorStyles",
828
- "module": "src/anchor/anchor.styles.ts"
804
+ "name": "Vertical",
805
+ "module": "src/actions-menu/actions-menu.stories.ts"
829
806
  }
830
807
  }
831
808
  ]
832
809
  },
833
810
  {
834
811
  "kind": "javascript-module",
835
- "path": "src/anchor/anchor.template.ts",
812
+ "path": "src/actions-menu/actions-menu.styles.ts",
836
813
  "declarations": [
837
814
  {
838
815
  "kind": "function",
839
- "name": "zeroAnchorTemplate",
816
+ "name": "zeroActionsMenuStyles",
840
817
  "return": {
841
818
  "type": {
842
- "text": "ViewTemplate<Anchor>"
819
+ "text": "ElementStyles"
843
820
  }
844
821
  },
845
822
  "parameters": [
@@ -861,56 +838,58 @@
861
838
  "exports": [
862
839
  {
863
840
  "kind": "js",
864
- "name": "zeroAnchorTemplate",
841
+ "name": "zeroActionsMenuStyles",
865
842
  "declaration": {
866
- "name": "zeroAnchorTemplate",
867
- "module": "src/anchor/anchor.template.ts"
843
+ "name": "zeroActionsMenuStyles",
844
+ "module": "src/actions-menu/actions-menu.styles.ts"
868
845
  }
869
846
  }
870
847
  ]
871
848
  },
872
849
  {
873
850
  "kind": "javascript-module",
874
- "path": "src/anchor/anchor.ts",
851
+ "path": "src/actions-menu/actions-menu.ts",
875
852
  "declarations": [
876
853
  {
877
854
  "kind": "class",
878
855
  "description": "",
879
- "name": "Anchor",
856
+ "name": "ActionsMenu",
880
857
  "superclass": {
881
- "name": "FoundationAnchor",
858
+ "name": "FoundationActionsMenu",
882
859
  "package": "@genesislcap/foundation-ui"
883
860
  },
884
- "tagName": "%%prefix%%-anchor",
861
+ "tagName": "%%prefix%%-actions-menu",
885
862
  "customElement": true
886
863
  },
887
864
  {
888
865
  "kind": "variable",
889
- "name": "zeroAnchor"
866
+ "name": "zeroActionsMenu",
867
+ "description": "The Zero Actions Menu",
868
+ "privacy": "public"
890
869
  }
891
870
  ],
892
871
  "exports": [
893
872
  {
894
873
  "kind": "js",
895
- "name": "Anchor",
874
+ "name": "ActionsMenu",
896
875
  "declaration": {
897
- "name": "Anchor",
898
- "module": "src/anchor/anchor.ts"
876
+ "name": "ActionsMenu",
877
+ "module": "src/actions-menu/actions-menu.ts"
899
878
  }
900
879
  },
901
880
  {
902
881
  "kind": "js",
903
- "name": "zeroAnchor",
882
+ "name": "zeroActionsMenu",
904
883
  "declaration": {
905
- "name": "zeroAnchor",
906
- "module": "src/anchor/anchor.ts"
884
+ "name": "zeroActionsMenu",
885
+ "module": "src/actions-menu/actions-menu.ts"
907
886
  }
908
887
  }
909
888
  ]
910
889
  },
911
890
  {
912
891
  "kind": "javascript-module",
913
- "path": "src/anchor/index.ts",
892
+ "path": "src/actions-menu/index.ts",
914
893
  "declarations": [],
915
894
  "exports": [
916
895
  {
@@ -918,15 +897,7 @@
918
897
  "name": "*",
919
898
  "declaration": {
920
899
  "name": "*",
921
- "package": "./anchor"
922
- }
923
- },
924
- {
925
- "kind": "js",
926
- "name": "*",
927
- "declaration": {
928
- "name": "*",
929
- "package": "./anchor.styles"
900
+ "package": "./actions-menu"
930
901
  }
931
902
  },
932
903
  {
@@ -934,14 +905,14 @@
934
905
  "name": "*",
935
906
  "declaration": {
936
907
  "name": "*",
937
- "package": "./anchor.template"
908
+ "package": "./actions-menu.styles"
938
909
  }
939
910
  }
940
911
  ]
941
912
  },
942
913
  {
943
914
  "kind": "javascript-module",
944
- "path": "src/actions-menu/actions-menu.stories.ts",
915
+ "path": "src/anchor/anchor.stories.ts",
945
916
  "declarations": [
946
917
  {
947
918
  "kind": "variable",
@@ -949,23 +920,15 @@
949
920
  "type": {
950
921
  "text": "Meta"
951
922
  },
952
- "default": "{\n title: 'Actions Menu',\n component: 'zero-actions-menu',\n}"
953
- },
954
- {
955
- "kind": "variable",
956
- "name": "Horizontal",
957
- "type": {
958
- "text": "StoryObj"
959
- },
960
- "default": "{\n args: {\n actions: zeroActions,\n actionsOpenerText: 'Horizontal Actions',\n },\n render: (args) =>\n html`\n <div style=\"${horizontalStyle}\">\n <zero-actions-menu\n name=\"${args.actionsOpenerText}\"\n .actions=${args.actions}\n ></zero-actions-menu>\n </div>\n `,\n}"
923
+ "default": "{\n title: 'Anchor',\n component: 'zero-anchor',\n}"
961
924
  },
962
925
  {
963
926
  "kind": "variable",
964
- "name": "Vertical",
927
+ "name": "All",
965
928
  "type": {
966
929
  "text": "StoryObj"
967
930
  },
968
- "default": "{\n args: {\n actions: zeroActions,\n actionsOpenerText: 'Vertical Actions',\n },\n render: ({ actionsOpenerText, actions }) =>\n html`\n <div style=\"${verticalStyle}\">\n <zero-actions-menu\n name=\"${actionsOpenerText}\"\n .actions=${actions}\n is-vertical\n ></zero-actions-menu>\n </div>\n `,\n}"
931
+ "default": "{\n args: {\n anchorText: 'Rapid Anchor',\n appearances: ZeroAppearanceValues,\n },\n ...StylesMapperTemplate,\n}"
969
932
  }
970
933
  ],
971
934
  "exports": [
@@ -974,37 +937,68 @@
974
937
  "name": "default",
975
938
  "declaration": {
976
939
  "name": "meta",
977
- "module": "src/actions-menu/actions-menu.stories.ts"
940
+ "module": "src/anchor/anchor.stories.ts"
978
941
  }
979
942
  },
980
943
  {
981
944
  "kind": "js",
982
- "name": "Horizontal",
945
+ "name": "All",
983
946
  "declaration": {
984
- "name": "Horizontal",
985
- "module": "src/actions-menu/actions-menu.stories.ts"
947
+ "name": "All",
948
+ "module": "src/anchor/anchor.stories.ts"
986
949
  }
987
- },
950
+ }
951
+ ]
952
+ },
953
+ {
954
+ "kind": "javascript-module",
955
+ "path": "src/anchor/anchor.styles.ts",
956
+ "declarations": [
957
+ {
958
+ "kind": "function",
959
+ "name": "zeroAnchorStyles",
960
+ "return": {
961
+ "type": {
962
+ "text": "ElementStyles"
963
+ }
964
+ },
965
+ "parameters": [
966
+ {
967
+ "name": "context",
968
+ "type": {
969
+ "text": "ElementDefinitionContext"
970
+ }
971
+ },
972
+ {
973
+ "name": "definition",
974
+ "type": {
975
+ "text": "FoundationElementDefinition"
976
+ }
977
+ }
978
+ ]
979
+ }
980
+ ],
981
+ "exports": [
988
982
  {
989
983
  "kind": "js",
990
- "name": "Vertical",
984
+ "name": "zeroAnchorStyles",
991
985
  "declaration": {
992
- "name": "Vertical",
993
- "module": "src/actions-menu/actions-menu.stories.ts"
986
+ "name": "zeroAnchorStyles",
987
+ "module": "src/anchor/anchor.styles.ts"
994
988
  }
995
989
  }
996
990
  ]
997
991
  },
998
992
  {
999
993
  "kind": "javascript-module",
1000
- "path": "src/actions-menu/actions-menu.styles.ts",
994
+ "path": "src/anchor/anchor.template.ts",
1001
995
  "declarations": [
1002
996
  {
1003
997
  "kind": "function",
1004
- "name": "zeroActionsMenuStyles",
998
+ "name": "zeroAnchorTemplate",
1005
999
  "return": {
1006
1000
  "type": {
1007
- "text": "ElementStyles"
1001
+ "text": "ViewTemplate<Anchor>"
1008
1002
  }
1009
1003
  },
1010
1004
  "parameters": [
@@ -1026,58 +1020,56 @@
1026
1020
  "exports": [
1027
1021
  {
1028
1022
  "kind": "js",
1029
- "name": "zeroActionsMenuStyles",
1023
+ "name": "zeroAnchorTemplate",
1030
1024
  "declaration": {
1031
- "name": "zeroActionsMenuStyles",
1032
- "module": "src/actions-menu/actions-menu.styles.ts"
1025
+ "name": "zeroAnchorTemplate",
1026
+ "module": "src/anchor/anchor.template.ts"
1033
1027
  }
1034
1028
  }
1035
1029
  ]
1036
1030
  },
1037
1031
  {
1038
1032
  "kind": "javascript-module",
1039
- "path": "src/actions-menu/actions-menu.ts",
1033
+ "path": "src/anchor/anchor.ts",
1040
1034
  "declarations": [
1041
1035
  {
1042
1036
  "kind": "class",
1043
1037
  "description": "",
1044
- "name": "ActionsMenu",
1038
+ "name": "Anchor",
1045
1039
  "superclass": {
1046
- "name": "FoundationActionsMenu",
1040
+ "name": "FoundationAnchor",
1047
1041
  "package": "@genesislcap/foundation-ui"
1048
1042
  },
1049
- "tagName": "%%prefix%%-actions-menu",
1043
+ "tagName": "%%prefix%%-anchor",
1050
1044
  "customElement": true
1051
1045
  },
1052
1046
  {
1053
1047
  "kind": "variable",
1054
- "name": "zeroActionsMenu",
1055
- "description": "The Zero Actions Menu",
1056
- "privacy": "public"
1048
+ "name": "zeroAnchor"
1057
1049
  }
1058
1050
  ],
1059
1051
  "exports": [
1060
1052
  {
1061
1053
  "kind": "js",
1062
- "name": "ActionsMenu",
1054
+ "name": "Anchor",
1063
1055
  "declaration": {
1064
- "name": "ActionsMenu",
1065
- "module": "src/actions-menu/actions-menu.ts"
1056
+ "name": "Anchor",
1057
+ "module": "src/anchor/anchor.ts"
1066
1058
  }
1067
1059
  },
1068
1060
  {
1069
1061
  "kind": "js",
1070
- "name": "zeroActionsMenu",
1062
+ "name": "zeroAnchor",
1071
1063
  "declaration": {
1072
- "name": "zeroActionsMenu",
1073
- "module": "src/actions-menu/actions-menu.ts"
1064
+ "name": "zeroAnchor",
1065
+ "module": "src/anchor/anchor.ts"
1074
1066
  }
1075
1067
  }
1076
1068
  ]
1077
1069
  },
1078
1070
  {
1079
1071
  "kind": "javascript-module",
1080
- "path": "src/actions-menu/index.ts",
1072
+ "path": "src/anchor/index.ts",
1081
1073
  "declarations": [],
1082
1074
  "exports": [
1083
1075
  {
@@ -1085,7 +1077,7 @@
1085
1077
  "name": "*",
1086
1078
  "declaration": {
1087
1079
  "name": "*",
1088
- "package": "./actions-menu"
1080
+ "package": "./anchor"
1089
1081
  }
1090
1082
  },
1091
1083
  {
@@ -1093,7 +1085,15 @@
1093
1085
  "name": "*",
1094
1086
  "declaration": {
1095
1087
  "name": "*",
1096
- "package": "./actions-menu.styles"
1088
+ "package": "./anchor.styles"
1089
+ }
1090
+ },
1091
+ {
1092
+ "kind": "js",
1093
+ "name": "*",
1094
+ "declaration": {
1095
+ "name": "*",
1096
+ "package": "./anchor.template"
1097
1097
  }
1098
1098
  }
1099
1099
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero",
3
3
  "description": "Genesis Foundation Zero Design System",
4
- "version": "14.46.0",
4
+ "version": "14.47.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -62,7 +62,7 @@
62
62
  "storybook": "storybook dev -p 6006"
63
63
  },
64
64
  "devDependencies": {
65
- "@genesislcap/genx": "^14.46.0",
65
+ "@genesislcap/genx": "^14.47.0",
66
66
  "@storybook/addon-essentials": "^7.0.0",
67
67
  "@storybook/addon-links": "^7.0.0",
68
68
  "@storybook/addons": "^7.0.0",
@@ -75,9 +75,9 @@
75
75
  "storybook": "^7.0.0"
76
76
  },
77
77
  "dependencies": {
78
- "@genesislcap/foundation-comms": "^14.46.0",
79
- "@genesislcap/foundation-ui": "^14.46.0",
80
- "@genesislcap/foundation-utils": "^14.46.0",
78
+ "@genesislcap/foundation-comms": "^14.47.0",
79
+ "@genesislcap/foundation-ui": "^14.47.0",
80
+ "@genesislcap/foundation-utils": "^14.47.0",
81
81
  "@microsoft/fast-colors": "^5.1.4",
82
82
  "@microsoft/fast-components": "^2.21.3",
83
83
  "@microsoft/fast-element": "^1.7.0",
@@ -94,5 +94,5 @@
94
94
  "access": "public"
95
95
  },
96
96
  "customElements": "dist/custom-elements.json",
97
- "gitHead": "aaaf1e3338854f98d7a05fbf4f5bba0a015a8cd7"
97
+ "gitHead": "9bad5fe39b5b4dccad1d61226c0d767b0fce383c"
98
98
  }