@genesislcap/foundation-zero 14.162.5 → 14.163.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 (2) hide show
  1. package/dist/custom-elements.json +327 -327
  2. package/package.json +12 -12
@@ -863,6 +863,194 @@
863
863
  }
864
864
  ]
865
865
  },
866
+ {
867
+ "kind": "javascript-module",
868
+ "path": "src/accordion/accordion.stories.ts",
869
+ "declarations": [
870
+ {
871
+ "kind": "variable",
872
+ "name": "meta",
873
+ "type": {
874
+ "text": "Meta"
875
+ },
876
+ "default": "{\n title: 'Accordion',\n component: 'zero-accordion',\n}"
877
+ },
878
+ {
879
+ "kind": "variable",
880
+ "name": "Primary",
881
+ "type": {
882
+ "text": "StoryObj"
883
+ },
884
+ "default": "{\n render: () => html`\n <zero-accordion>\n <zero-accordion-item slot=\"item\" id=\"accordion-1\">\n Accordion one content\n <div slot=\"heading\">Accordion one</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-2\">\n Accordion two content\n <div slot=\"heading\">Accordion two</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-3\">\n Accordion three content\n <div slot=\"heading\">Accordion three</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-4\">\n Accordion four content\n <div slot=\"heading\">Accordion four</div>\n </zero-accordion-item>\n </zero-accordion>\n `,\n}"
885
+ }
886
+ ],
887
+ "exports": [
888
+ {
889
+ "kind": "js",
890
+ "name": "default",
891
+ "declaration": {
892
+ "name": "meta",
893
+ "module": "src/accordion/accordion.stories.ts"
894
+ }
895
+ },
896
+ {
897
+ "kind": "js",
898
+ "name": "Primary",
899
+ "declaration": {
900
+ "name": "Primary",
901
+ "module": "src/accordion/accordion.stories.ts"
902
+ }
903
+ }
904
+ ]
905
+ },
906
+ {
907
+ "kind": "javascript-module",
908
+ "path": "src/accordion/accordion.styles.ts",
909
+ "declarations": [
910
+ {
911
+ "kind": "function",
912
+ "name": "zeroAccordionStyles",
913
+ "return": {
914
+ "type": {
915
+ "text": "ElementStyles"
916
+ }
917
+ },
918
+ "parameters": [
919
+ {
920
+ "name": "context",
921
+ "type": {
922
+ "text": "ElementDefinitionContext"
923
+ }
924
+ },
925
+ {
926
+ "name": "definition",
927
+ "type": {
928
+ "text": "FoundationElementDefinition"
929
+ }
930
+ }
931
+ ]
932
+ }
933
+ ],
934
+ "exports": [
935
+ {
936
+ "kind": "js",
937
+ "name": "zeroAccordionStyles",
938
+ "declaration": {
939
+ "name": "zeroAccordionStyles",
940
+ "module": "src/accordion/accordion.styles.ts"
941
+ }
942
+ }
943
+ ]
944
+ },
945
+ {
946
+ "kind": "javascript-module",
947
+ "path": "src/accordion/accordion.template.ts",
948
+ "declarations": [
949
+ {
950
+ "kind": "function",
951
+ "name": "zeroAccordionTemplate",
952
+ "return": {
953
+ "type": {
954
+ "text": "ViewTemplate<Accordion>"
955
+ }
956
+ },
957
+ "parameters": [
958
+ {
959
+ "name": "context",
960
+ "type": {
961
+ "text": "ElementDefinitionContext"
962
+ }
963
+ },
964
+ {
965
+ "name": "definition",
966
+ "type": {
967
+ "text": "FoundationElementDefinition"
968
+ }
969
+ }
970
+ ]
971
+ }
972
+ ],
973
+ "exports": [
974
+ {
975
+ "kind": "js",
976
+ "name": "zeroAccordionTemplate",
977
+ "declaration": {
978
+ "name": "zeroAccordionTemplate",
979
+ "module": "src/accordion/accordion.template.ts"
980
+ }
981
+ }
982
+ ]
983
+ },
984
+ {
985
+ "kind": "javascript-module",
986
+ "path": "src/accordion/accordion.ts",
987
+ "declarations": [
988
+ {
989
+ "kind": "class",
990
+ "description": "",
991
+ "name": "Accordion",
992
+ "superclass": {
993
+ "name": "FoundationAccordion",
994
+ "package": "@genesislcap/foundation-ui"
995
+ },
996
+ "tagName": "%%prefix%%-card",
997
+ "customElement": true
998
+ },
999
+ {
1000
+ "kind": "variable",
1001
+ "name": "zeroAccordion"
1002
+ }
1003
+ ],
1004
+ "exports": [
1005
+ {
1006
+ "kind": "js",
1007
+ "name": "Accordion",
1008
+ "declaration": {
1009
+ "name": "Accordion",
1010
+ "module": "src/accordion/accordion.ts"
1011
+ }
1012
+ },
1013
+ {
1014
+ "kind": "js",
1015
+ "name": "zeroAccordion",
1016
+ "declaration": {
1017
+ "name": "zeroAccordion",
1018
+ "module": "src/accordion/accordion.ts"
1019
+ }
1020
+ }
1021
+ ]
1022
+ },
1023
+ {
1024
+ "kind": "javascript-module",
1025
+ "path": "src/accordion/index.ts",
1026
+ "declarations": [],
1027
+ "exports": [
1028
+ {
1029
+ "kind": "js",
1030
+ "name": "*",
1031
+ "declaration": {
1032
+ "name": "*",
1033
+ "package": "./accordion"
1034
+ }
1035
+ },
1036
+ {
1037
+ "kind": "js",
1038
+ "name": "*",
1039
+ "declaration": {
1040
+ "name": "*",
1041
+ "package": "./accordion.styles"
1042
+ }
1043
+ },
1044
+ {
1045
+ "kind": "js",
1046
+ "name": "*",
1047
+ "declaration": {
1048
+ "name": "*",
1049
+ "package": "./accordion.template"
1050
+ }
1051
+ }
1052
+ ]
1053
+ },
866
1054
  {
867
1055
  "kind": "javascript-module",
868
1056
  "path": "src/accordion-item/accordion-item.styles.ts",
@@ -1145,244 +1333,56 @@
1145
1333
  {
1146
1334
  "name": "elementDefinition",
1147
1335
  "type": {
1148
- "text": "T"
1149
- },
1150
- "description": "The definition of the element to create the registry\nfunction for."
1151
- }
1152
- ],
1153
- "description": "Defines an element registry function with a set of element definition defaults.",
1154
- "inheritedFrom": {
1155
- "name": "AccordionItem",
1156
- "module": "src/accordion-item/accordion-item.ts"
1157
- }
1158
- }
1159
- ],
1160
- "events": [
1161
- {
1162
- "description": "Fires a custom 'change' event when the button is invoked",
1163
- "name": "change",
1164
- "inheritedFrom": {
1165
- "name": "AccordionItem",
1166
- "module": "src/accordion-item/accordion-item.ts"
1167
- }
1168
- }
1169
- ]
1170
- },
1171
- {
1172
- "kind": "variable",
1173
- "name": "zeroAccordionItem"
1174
- }
1175
- ],
1176
- "exports": [
1177
- {
1178
- "kind": "js",
1179
- "name": "AccordionItem",
1180
- "declaration": {
1181
- "name": "AccordionItem",
1182
- "module": "src/accordion-item/accordion-item.ts"
1183
- }
1184
- },
1185
- {
1186
- "kind": "js",
1187
- "name": "zeroAccordionItem",
1188
- "declaration": {
1189
- "name": "zeroAccordionItem",
1190
- "module": "src/accordion-item/accordion-item.ts"
1191
- }
1192
- }
1193
- ]
1194
- },
1195
- {
1196
- "kind": "javascript-module",
1197
- "path": "src/accordion-item/index.ts",
1198
- "declarations": [],
1199
- "exports": [
1200
- {
1201
- "kind": "js",
1202
- "name": "*",
1203
- "declaration": {
1204
- "name": "*",
1205
- "package": "./accordion-item"
1206
- }
1207
- },
1208
- {
1209
- "kind": "js",
1210
- "name": "*",
1211
- "declaration": {
1212
- "name": "*",
1213
- "package": "./accordion-item.styles"
1214
- }
1215
- },
1216
- {
1217
- "kind": "js",
1218
- "name": "*",
1219
- "declaration": {
1220
- "name": "*",
1221
- "package": "./accordion-item.template"
1222
- }
1223
- }
1224
- ]
1225
- },
1226
- {
1227
- "kind": "javascript-module",
1228
- "path": "src/accordion/accordion.stories.ts",
1229
- "declarations": [
1230
- {
1231
- "kind": "variable",
1232
- "name": "meta",
1233
- "type": {
1234
- "text": "Meta"
1235
- },
1236
- "default": "{\n title: 'Accordion',\n component: 'zero-accordion',\n}"
1237
- },
1238
- {
1239
- "kind": "variable",
1240
- "name": "Primary",
1241
- "type": {
1242
- "text": "StoryObj"
1243
- },
1244
- "default": "{\n render: () => html`\n <zero-accordion>\n <zero-accordion-item slot=\"item\" id=\"accordion-1\">\n Accordion one content\n <div slot=\"heading\">Accordion one</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-2\">\n Accordion two content\n <div slot=\"heading\">Accordion two</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-3\">\n Accordion three content\n <div slot=\"heading\">Accordion three</div>\n </zero-accordion-item>\n <zero-accordion-item slot=\"item\" id=\"accordion-4\">\n Accordion four content\n <div slot=\"heading\">Accordion four</div>\n </zero-accordion-item>\n </zero-accordion>\n `,\n}"
1245
- }
1246
- ],
1247
- "exports": [
1248
- {
1249
- "kind": "js",
1250
- "name": "default",
1251
- "declaration": {
1252
- "name": "meta",
1253
- "module": "src/accordion/accordion.stories.ts"
1254
- }
1255
- },
1256
- {
1257
- "kind": "js",
1258
- "name": "Primary",
1259
- "declaration": {
1260
- "name": "Primary",
1261
- "module": "src/accordion/accordion.stories.ts"
1262
- }
1263
- }
1264
- ]
1265
- },
1266
- {
1267
- "kind": "javascript-module",
1268
- "path": "src/accordion/accordion.styles.ts",
1269
- "declarations": [
1270
- {
1271
- "kind": "function",
1272
- "name": "zeroAccordionStyles",
1273
- "return": {
1274
- "type": {
1275
- "text": "ElementStyles"
1276
- }
1277
- },
1278
- "parameters": [
1279
- {
1280
- "name": "context",
1281
- "type": {
1282
- "text": "ElementDefinitionContext"
1283
- }
1284
- },
1285
- {
1286
- "name": "definition",
1287
- "type": {
1288
- "text": "FoundationElementDefinition"
1289
- }
1290
- }
1291
- ]
1292
- }
1293
- ],
1294
- "exports": [
1295
- {
1296
- "kind": "js",
1297
- "name": "zeroAccordionStyles",
1298
- "declaration": {
1299
- "name": "zeroAccordionStyles",
1300
- "module": "src/accordion/accordion.styles.ts"
1301
- }
1302
- }
1303
- ]
1304
- },
1305
- {
1306
- "kind": "javascript-module",
1307
- "path": "src/accordion/accordion.template.ts",
1308
- "declarations": [
1309
- {
1310
- "kind": "function",
1311
- "name": "zeroAccordionTemplate",
1312
- "return": {
1313
- "type": {
1314
- "text": "ViewTemplate<Accordion>"
1315
- }
1316
- },
1317
- "parameters": [
1318
- {
1319
- "name": "context",
1320
- "type": {
1321
- "text": "ElementDefinitionContext"
1322
- }
1323
- },
1324
- {
1325
- "name": "definition",
1326
- "type": {
1327
- "text": "FoundationElementDefinition"
1328
- }
1329
- }
1330
- ]
1331
- }
1332
- ],
1333
- "exports": [
1334
- {
1335
- "kind": "js",
1336
- "name": "zeroAccordionTemplate",
1337
- "declaration": {
1338
- "name": "zeroAccordionTemplate",
1339
- "module": "src/accordion/accordion.template.ts"
1340
- }
1341
- }
1342
- ]
1343
- },
1344
- {
1345
- "kind": "javascript-module",
1346
- "path": "src/accordion/accordion.ts",
1347
- "declarations": [
1348
- {
1349
- "kind": "class",
1350
- "description": "",
1351
- "name": "Accordion",
1352
- "superclass": {
1353
- "name": "FoundationAccordion",
1354
- "package": "@genesislcap/foundation-ui"
1355
- },
1356
- "tagName": "%%prefix%%-card",
1357
- "customElement": true
1336
+ "text": "T"
1337
+ },
1338
+ "description": "The definition of the element to create the registry\nfunction for."
1339
+ }
1340
+ ],
1341
+ "description": "Defines an element registry function with a set of element definition defaults.",
1342
+ "inheritedFrom": {
1343
+ "name": "AccordionItem",
1344
+ "module": "src/accordion-item/accordion-item.ts"
1345
+ }
1346
+ }
1347
+ ],
1348
+ "events": [
1349
+ {
1350
+ "description": "Fires a custom 'change' event when the button is invoked",
1351
+ "name": "change",
1352
+ "inheritedFrom": {
1353
+ "name": "AccordionItem",
1354
+ "module": "src/accordion-item/accordion-item.ts"
1355
+ }
1356
+ }
1357
+ ]
1358
1358
  },
1359
1359
  {
1360
1360
  "kind": "variable",
1361
- "name": "zeroAccordion"
1361
+ "name": "zeroAccordionItem"
1362
1362
  }
1363
1363
  ],
1364
1364
  "exports": [
1365
1365
  {
1366
1366
  "kind": "js",
1367
- "name": "Accordion",
1367
+ "name": "AccordionItem",
1368
1368
  "declaration": {
1369
- "name": "Accordion",
1370
- "module": "src/accordion/accordion.ts"
1369
+ "name": "AccordionItem",
1370
+ "module": "src/accordion-item/accordion-item.ts"
1371
1371
  }
1372
1372
  },
1373
1373
  {
1374
1374
  "kind": "js",
1375
- "name": "zeroAccordion",
1375
+ "name": "zeroAccordionItem",
1376
1376
  "declaration": {
1377
- "name": "zeroAccordion",
1378
- "module": "src/accordion/accordion.ts"
1377
+ "name": "zeroAccordionItem",
1378
+ "module": "src/accordion-item/accordion-item.ts"
1379
1379
  }
1380
1380
  }
1381
1381
  ]
1382
1382
  },
1383
1383
  {
1384
1384
  "kind": "javascript-module",
1385
- "path": "src/accordion/index.ts",
1385
+ "path": "src/accordion-item/index.ts",
1386
1386
  "declarations": [],
1387
1387
  "exports": [
1388
1388
  {
@@ -1390,7 +1390,7 @@
1390
1390
  "name": "*",
1391
1391
  "declaration": {
1392
1392
  "name": "*",
1393
- "package": "./accordion"
1393
+ "package": "./accordion-item"
1394
1394
  }
1395
1395
  },
1396
1396
  {
@@ -1398,7 +1398,7 @@
1398
1398
  "name": "*",
1399
1399
  "declaration": {
1400
1400
  "name": "*",
1401
- "package": "./accordion.styles"
1401
+ "package": "./accordion-item.styles"
1402
1402
  }
1403
1403
  },
1404
1404
  {
@@ -1406,7 +1406,7 @@
1406
1406
  "name": "*",
1407
1407
  "declaration": {
1408
1408
  "name": "*",
1409
- "package": "./accordion.template"
1409
+ "package": "./accordion-item.template"
1410
1410
  }
1411
1411
  }
1412
1412
  ]
@@ -31919,7 +31919,7 @@
31919
31919
  },
31920
31920
  {
31921
31921
  "kind": "javascript-module",
31922
- "path": "src/tab-panel/index.ts",
31922
+ "path": "src/tab/index.ts",
31923
31923
  "declarations": [],
31924
31924
  "exports": [
31925
31925
  {
@@ -31927,7 +31927,7 @@
31927
31927
  "name": "*",
31928
31928
  "declaration": {
31929
31929
  "name": "*",
31930
- "package": "./tab-panel"
31930
+ "package": "./tab"
31931
31931
  }
31932
31932
  },
31933
31933
  {
@@ -31935,7 +31935,7 @@
31935
31935
  "name": "*",
31936
31936
  "declaration": {
31937
31937
  "name": "*",
31938
- "package": "./tab-panel.styles"
31938
+ "package": "./tab.styles"
31939
31939
  }
31940
31940
  },
31941
31941
  {
@@ -31943,18 +31943,18 @@
31943
31943
  "name": "*",
31944
31944
  "declaration": {
31945
31945
  "name": "*",
31946
- "package": "./tab-panel.template"
31946
+ "package": "./tab.template"
31947
31947
  }
31948
31948
  }
31949
31949
  ]
31950
31950
  },
31951
31951
  {
31952
31952
  "kind": "javascript-module",
31953
- "path": "src/tab-panel/tab-panel.styles.ts",
31953
+ "path": "src/tab/tab.styles.ts",
31954
31954
  "declarations": [
31955
31955
  {
31956
31956
  "kind": "function",
31957
- "name": "zeroTabPanelStyles",
31957
+ "name": "zeroTabStyles",
31958
31958
  "return": {
31959
31959
  "type": {
31960
31960
  "text": "ElementStyles"
@@ -31979,24 +31979,24 @@
31979
31979
  "exports": [
31980
31980
  {
31981
31981
  "kind": "js",
31982
- "name": "zeroTabPanelStyles",
31982
+ "name": "zeroTabStyles",
31983
31983
  "declaration": {
31984
- "name": "zeroTabPanelStyles",
31985
- "module": "src/tab-panel/tab-panel.styles.ts"
31984
+ "name": "zeroTabStyles",
31985
+ "module": "src/tab/tab.styles.ts"
31986
31986
  }
31987
31987
  }
31988
31988
  ]
31989
31989
  },
31990
31990
  {
31991
31991
  "kind": "javascript-module",
31992
- "path": "src/tab-panel/tab-panel.template.ts",
31992
+ "path": "src/tab/tab.template.ts",
31993
31993
  "declarations": [
31994
31994
  {
31995
31995
  "kind": "function",
31996
- "name": "zeroTabPanelTemplate",
31996
+ "name": "zeroTabTemplate",
31997
31997
  "return": {
31998
31998
  "type": {
31999
- "text": "ViewTemplate<TabPanel>"
31999
+ "text": "ViewTemplate<Tab>"
32000
32000
  }
32001
32001
  },
32002
32002
  "parameters": [
@@ -32018,29 +32018,55 @@
32018
32018
  "exports": [
32019
32019
  {
32020
32020
  "kind": "js",
32021
- "name": "zeroTabPanelTemplate",
32021
+ "name": "zeroTabTemplate",
32022
32022
  "declaration": {
32023
- "name": "zeroTabPanelTemplate",
32024
- "module": "src/tab-panel/tab-panel.template.ts"
32023
+ "name": "zeroTabTemplate",
32024
+ "module": "src/tab/tab.template.ts"
32025
32025
  }
32026
32026
  }
32027
32027
  ]
32028
32028
  },
32029
32029
  {
32030
32030
  "kind": "javascript-module",
32031
- "path": "src/tab-panel/tab-panel.ts",
32031
+ "path": "src/tab/tab.ts",
32032
32032
  "declarations": [
32033
32033
  {
32034
32034
  "kind": "class",
32035
32035
  "description": "",
32036
- "name": "TabPanel",
32036
+ "name": "Tab",
32037
32037
  "superclass": {
32038
- "name": "FoundationTabPanel",
32038
+ "name": "FoundationTab",
32039
32039
  "package": "@genesislcap/foundation-ui"
32040
32040
  },
32041
- "tagName": "%%prefix%%-tab-panel",
32041
+ "tagName": "%%prefix%%-tab",
32042
32042
  "customElement": true,
32043
+ "attributes": [
32044
+ {
32045
+ "type": {
32046
+ "text": "boolean"
32047
+ },
32048
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute for more information.",
32049
+ "fieldName": "disabled",
32050
+ "inheritedFrom": {
32051
+ "name": "Tab",
32052
+ "module": "src/tab/tab.ts"
32053
+ }
32054
+ }
32055
+ ],
32043
32056
  "members": [
32057
+ {
32058
+ "kind": "field",
32059
+ "name": "disabled",
32060
+ "type": {
32061
+ "text": "boolean"
32062
+ },
32063
+ "privacy": "public",
32064
+ "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute} for more information.",
32065
+ "inheritedFrom": {
32066
+ "name": "Tab",
32067
+ "module": "src/tab/tab.ts"
32068
+ }
32069
+ },
32044
32070
  {
32045
32071
  "kind": "field",
32046
32072
  "name": "_presentation",
@@ -32050,8 +32076,8 @@
32050
32076
  "privacy": "private",
32051
32077
  "default": "void 0",
32052
32078
  "inheritedFrom": {
32053
- "name": "TabPanel",
32054
- "module": "src/tab-panel/tab-panel.ts"
32079
+ "name": "Tab",
32080
+ "module": "src/tab/tab.ts"
32055
32081
  }
32056
32082
  },
32057
32083
  {
@@ -32063,8 +32089,8 @@
32063
32089
  "privacy": "public",
32064
32090
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
32065
32091
  "inheritedFrom": {
32066
- "name": "TabPanel",
32067
- "module": "src/tab-panel/tab-panel.ts"
32092
+ "name": "Tab",
32093
+ "module": "src/tab/tab.ts"
32068
32094
  }
32069
32095
  },
32070
32096
  {
@@ -32076,8 +32102,8 @@
32076
32102
  "privacy": "public",
32077
32103
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
32078
32104
  "inheritedFrom": {
32079
- "name": "TabPanel",
32080
- "module": "src/tab-panel/tab-panel.ts"
32105
+ "name": "Tab",
32106
+ "module": "src/tab/tab.ts"
32081
32107
  }
32082
32108
  },
32083
32109
  {
@@ -32090,8 +32116,8 @@
32090
32116
  }
32091
32117
  },
32092
32118
  "inheritedFrom": {
32093
- "name": "TabPanel",
32094
- "module": "src/tab-panel/tab-panel.ts"
32119
+ "name": "Tab",
32120
+ "module": "src/tab/tab.ts"
32095
32121
  }
32096
32122
  },
32097
32123
  {
@@ -32103,8 +32129,8 @@
32103
32129
  "privacy": "public",
32104
32130
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
32105
32131
  "inheritedFrom": {
32106
- "name": "TabPanel",
32107
- "module": "src/tab-panel/tab-panel.ts"
32132
+ "name": "Tab",
32133
+ "module": "src/tab/tab.ts"
32108
32134
  }
32109
32135
  },
32110
32136
  {
@@ -32117,8 +32143,8 @@
32117
32143
  }
32118
32144
  },
32119
32145
  "inheritedFrom": {
32120
- "name": "TabPanel",
32121
- "module": "src/tab-panel/tab-panel.ts"
32146
+ "name": "Tab",
32147
+ "module": "src/tab/tab.ts"
32122
32148
  }
32123
32149
  },
32124
32150
  {
@@ -32148,39 +32174,39 @@
32148
32174
  ],
32149
32175
  "description": "Defines an element registry function with a set of element definition defaults.",
32150
32176
  "inheritedFrom": {
32151
- "name": "TabPanel",
32152
- "module": "src/tab-panel/tab-panel.ts"
32177
+ "name": "Tab",
32178
+ "module": "src/tab/tab.ts"
32153
32179
  }
32154
32180
  }
32155
32181
  ]
32156
32182
  },
32157
32183
  {
32158
32184
  "kind": "variable",
32159
- "name": "zeroTabPanel"
32185
+ "name": "zeroTab"
32160
32186
  }
32161
32187
  ],
32162
32188
  "exports": [
32163
32189
  {
32164
32190
  "kind": "js",
32165
- "name": "TabPanel",
32191
+ "name": "Tab",
32166
32192
  "declaration": {
32167
- "name": "TabPanel",
32168
- "module": "src/tab-panel/tab-panel.ts"
32193
+ "name": "Tab",
32194
+ "module": "src/tab/tab.ts"
32169
32195
  }
32170
32196
  },
32171
32197
  {
32172
32198
  "kind": "js",
32173
- "name": "zeroTabPanel",
32199
+ "name": "zeroTab",
32174
32200
  "declaration": {
32175
- "name": "zeroTabPanel",
32176
- "module": "src/tab-panel/tab-panel.ts"
32201
+ "name": "zeroTab",
32202
+ "module": "src/tab/tab.ts"
32177
32203
  }
32178
32204
  }
32179
32205
  ]
32180
32206
  },
32181
32207
  {
32182
32208
  "kind": "javascript-module",
32183
- "path": "src/tab/index.ts",
32209
+ "path": "src/tab-panel/index.ts",
32184
32210
  "declarations": [],
32185
32211
  "exports": [
32186
32212
  {
@@ -32188,7 +32214,7 @@
32188
32214
  "name": "*",
32189
32215
  "declaration": {
32190
32216
  "name": "*",
32191
- "package": "./tab"
32217
+ "package": "./tab-panel"
32192
32218
  }
32193
32219
  },
32194
32220
  {
@@ -32196,7 +32222,7 @@
32196
32222
  "name": "*",
32197
32223
  "declaration": {
32198
32224
  "name": "*",
32199
- "package": "./tab.styles"
32225
+ "package": "./tab-panel.styles"
32200
32226
  }
32201
32227
  },
32202
32228
  {
@@ -32204,18 +32230,18 @@
32204
32230
  "name": "*",
32205
32231
  "declaration": {
32206
32232
  "name": "*",
32207
- "package": "./tab.template"
32233
+ "package": "./tab-panel.template"
32208
32234
  }
32209
32235
  }
32210
32236
  ]
32211
32237
  },
32212
32238
  {
32213
32239
  "kind": "javascript-module",
32214
- "path": "src/tab/tab.styles.ts",
32240
+ "path": "src/tab-panel/tab-panel.styles.ts",
32215
32241
  "declarations": [
32216
32242
  {
32217
32243
  "kind": "function",
32218
- "name": "zeroTabStyles",
32244
+ "name": "zeroTabPanelStyles",
32219
32245
  "return": {
32220
32246
  "type": {
32221
32247
  "text": "ElementStyles"
@@ -32240,24 +32266,24 @@
32240
32266
  "exports": [
32241
32267
  {
32242
32268
  "kind": "js",
32243
- "name": "zeroTabStyles",
32269
+ "name": "zeroTabPanelStyles",
32244
32270
  "declaration": {
32245
- "name": "zeroTabStyles",
32246
- "module": "src/tab/tab.styles.ts"
32271
+ "name": "zeroTabPanelStyles",
32272
+ "module": "src/tab-panel/tab-panel.styles.ts"
32247
32273
  }
32248
32274
  }
32249
32275
  ]
32250
32276
  },
32251
32277
  {
32252
32278
  "kind": "javascript-module",
32253
- "path": "src/tab/tab.template.ts",
32279
+ "path": "src/tab-panel/tab-panel.template.ts",
32254
32280
  "declarations": [
32255
32281
  {
32256
32282
  "kind": "function",
32257
- "name": "zeroTabTemplate",
32283
+ "name": "zeroTabPanelTemplate",
32258
32284
  "return": {
32259
32285
  "type": {
32260
- "text": "ViewTemplate<Tab>"
32286
+ "text": "ViewTemplate<TabPanel>"
32261
32287
  }
32262
32288
  },
32263
32289
  "parameters": [
@@ -32279,55 +32305,29 @@
32279
32305
  "exports": [
32280
32306
  {
32281
32307
  "kind": "js",
32282
- "name": "zeroTabTemplate",
32308
+ "name": "zeroTabPanelTemplate",
32283
32309
  "declaration": {
32284
- "name": "zeroTabTemplate",
32285
- "module": "src/tab/tab.template.ts"
32310
+ "name": "zeroTabPanelTemplate",
32311
+ "module": "src/tab-panel/tab-panel.template.ts"
32286
32312
  }
32287
32313
  }
32288
32314
  ]
32289
32315
  },
32290
32316
  {
32291
32317
  "kind": "javascript-module",
32292
- "path": "src/tab/tab.ts",
32318
+ "path": "src/tab-panel/tab-panel.ts",
32293
32319
  "declarations": [
32294
32320
  {
32295
32321
  "kind": "class",
32296
32322
  "description": "",
32297
- "name": "Tab",
32323
+ "name": "TabPanel",
32298
32324
  "superclass": {
32299
- "name": "FoundationTab",
32325
+ "name": "FoundationTabPanel",
32300
32326
  "package": "@genesislcap/foundation-ui"
32301
32327
  },
32302
- "tagName": "%%prefix%%-tab",
32328
+ "tagName": "%%prefix%%-tab-panel",
32303
32329
  "customElement": true,
32304
- "attributes": [
32305
- {
32306
- "type": {
32307
- "text": "boolean"
32308
- },
32309
- "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute for more information.",
32310
- "fieldName": "disabled",
32311
- "inheritedFrom": {
32312
- "name": "Tab",
32313
- "module": "src/tab/tab.ts"
32314
- }
32315
- }
32316
- ],
32317
32330
  "members": [
32318
- {
32319
- "kind": "field",
32320
- "name": "disabled",
32321
- "type": {
32322
- "text": "boolean"
32323
- },
32324
- "privacy": "public",
32325
- "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute} for more information.",
32326
- "inheritedFrom": {
32327
- "name": "Tab",
32328
- "module": "src/tab/tab.ts"
32329
- }
32330
- },
32331
32331
  {
32332
32332
  "kind": "field",
32333
32333
  "name": "_presentation",
@@ -32337,8 +32337,8 @@
32337
32337
  "privacy": "private",
32338
32338
  "default": "void 0",
32339
32339
  "inheritedFrom": {
32340
- "name": "Tab",
32341
- "module": "src/tab/tab.ts"
32340
+ "name": "TabPanel",
32341
+ "module": "src/tab-panel/tab-panel.ts"
32342
32342
  }
32343
32343
  },
32344
32344
  {
@@ -32350,8 +32350,8 @@
32350
32350
  "privacy": "public",
32351
32351
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
32352
32352
  "inheritedFrom": {
32353
- "name": "Tab",
32354
- "module": "src/tab/tab.ts"
32353
+ "name": "TabPanel",
32354
+ "module": "src/tab-panel/tab-panel.ts"
32355
32355
  }
32356
32356
  },
32357
32357
  {
@@ -32363,8 +32363,8 @@
32363
32363
  "privacy": "public",
32364
32364
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
32365
32365
  "inheritedFrom": {
32366
- "name": "Tab",
32367
- "module": "src/tab/tab.ts"
32366
+ "name": "TabPanel",
32367
+ "module": "src/tab-panel/tab-panel.ts"
32368
32368
  }
32369
32369
  },
32370
32370
  {
@@ -32377,8 +32377,8 @@
32377
32377
  }
32378
32378
  },
32379
32379
  "inheritedFrom": {
32380
- "name": "Tab",
32381
- "module": "src/tab/tab.ts"
32380
+ "name": "TabPanel",
32381
+ "module": "src/tab-panel/tab-panel.ts"
32382
32382
  }
32383
32383
  },
32384
32384
  {
@@ -32390,8 +32390,8 @@
32390
32390
  "privacy": "public",
32391
32391
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
32392
32392
  "inheritedFrom": {
32393
- "name": "Tab",
32394
- "module": "src/tab/tab.ts"
32393
+ "name": "TabPanel",
32394
+ "module": "src/tab-panel/tab-panel.ts"
32395
32395
  }
32396
32396
  },
32397
32397
  {
@@ -32404,8 +32404,8 @@
32404
32404
  }
32405
32405
  },
32406
32406
  "inheritedFrom": {
32407
- "name": "Tab",
32408
- "module": "src/tab/tab.ts"
32407
+ "name": "TabPanel",
32408
+ "module": "src/tab-panel/tab-panel.ts"
32409
32409
  }
32410
32410
  },
32411
32411
  {
@@ -32435,32 +32435,32 @@
32435
32435
  ],
32436
32436
  "description": "Defines an element registry function with a set of element definition defaults.",
32437
32437
  "inheritedFrom": {
32438
- "name": "Tab",
32439
- "module": "src/tab/tab.ts"
32438
+ "name": "TabPanel",
32439
+ "module": "src/tab-panel/tab-panel.ts"
32440
32440
  }
32441
32441
  }
32442
32442
  ]
32443
32443
  },
32444
32444
  {
32445
32445
  "kind": "variable",
32446
- "name": "zeroTab"
32446
+ "name": "zeroTabPanel"
32447
32447
  }
32448
32448
  ],
32449
32449
  "exports": [
32450
32450
  {
32451
32451
  "kind": "js",
32452
- "name": "Tab",
32452
+ "name": "TabPanel",
32453
32453
  "declaration": {
32454
- "name": "Tab",
32455
- "module": "src/tab/tab.ts"
32454
+ "name": "TabPanel",
32455
+ "module": "src/tab-panel/tab-panel.ts"
32456
32456
  }
32457
32457
  },
32458
32458
  {
32459
32459
  "kind": "js",
32460
- "name": "zeroTab",
32460
+ "name": "zeroTabPanel",
32461
32461
  "declaration": {
32462
- "name": "zeroTab",
32463
- "module": "src/tab/tab.ts"
32462
+ "name": "zeroTabPanel",
32463
+ "module": "src/tab-panel/tab-panel.ts"
32464
32464
  }
32465
32465
  }
32466
32466
  ]
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.162.5",
4
+ "version": "14.163.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -67,12 +67,12 @@
67
67
  },
68
68
  "devDependencies": {
69
69
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^4.0.0",
70
- "@genesislcap/genx": "14.162.5",
71
- "@genesislcap/rollup-builder": "14.162.5",
72
- "@genesislcap/ts-builder": "14.162.5",
73
- "@genesislcap/uvu-playwright-builder": "14.162.5",
74
- "@genesislcap/vite-builder": "14.162.5",
75
- "@genesislcap/webpack-builder": "14.162.5",
70
+ "@genesislcap/genx": "14.163.0",
71
+ "@genesislcap/rollup-builder": "14.163.0",
72
+ "@genesislcap/ts-builder": "14.163.0",
73
+ "@genesislcap/uvu-playwright-builder": "14.163.0",
74
+ "@genesislcap/vite-builder": "14.163.0",
75
+ "@genesislcap/webpack-builder": "14.163.0",
76
76
  "@storybook/addon-coverage": "^1.0.1",
77
77
  "@storybook/addon-essentials": "^8.0.0",
78
78
  "@storybook/addon-links": "^8.0.0",
@@ -89,10 +89,10 @@
89
89
  "storybook": "^8.0.0"
90
90
  },
91
91
  "dependencies": {
92
- "@genesislcap/foundation-comms": "14.162.5",
93
- "@genesislcap/foundation-logger": "14.162.5",
94
- "@genesislcap/foundation-ui": "14.162.5",
95
- "@genesislcap/foundation-utils": "14.162.5",
92
+ "@genesislcap/foundation-comms": "14.163.0",
93
+ "@genesislcap/foundation-logger": "14.163.0",
94
+ "@genesislcap/foundation-ui": "14.163.0",
95
+ "@genesislcap/foundation-utils": "14.163.0",
96
96
  "@microsoft/fast-colors": "^5.3.1",
97
97
  "@microsoft/fast-components": "^2.30.6",
98
98
  "@microsoft/fast-element": "^1.12.0",
@@ -109,5 +109,5 @@
109
109
  "access": "public"
110
110
  },
111
111
  "customElements": "dist/custom-elements.json",
112
- "gitHead": "47733285b6e2d7988941967021ea4a48e9613aba"
112
+ "gitHead": "e141f8ae65838f2eb2f88f47da9d738566c2eda7"
113
113
  }