@genesislcap/foundation-zero 14.20.0-bny.19 → 14.20.1-alpha-ea89a96.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 +708 -708
  2. package/package.json +10 -14
@@ -5297,6 +5297,215 @@
5297
5297
  }
5298
5298
  ]
5299
5299
  },
5300
+ {
5301
+ "kind": "javascript-module",
5302
+ "path": "src/error-dialog/error-dialog.stories.ts",
5303
+ "declarations": [
5304
+ {
5305
+ "kind": "variable",
5306
+ "name": "meta",
5307
+ "type": {
5308
+ "text": "Meta"
5309
+ },
5310
+ "default": "{\n title: 'Error Dialog',\n component: 'zero-error-dialog',\n}"
5311
+ },
5312
+ {
5313
+ "kind": "variable",
5314
+ "name": "Primary",
5315
+ "type": {
5316
+ "text": "StoryObj"
5317
+ },
5318
+ "default": "{\n args: {\n errorText:\n 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet',\n },\n render: ({ errorText }) => html`\n <zero-button @click=\"${() => showDialog(errorText)}\">Show Zero Dialog</zero-button>\n <div id=\"error-dialog-container\"></div>\n `,\n}"
5319
+ }
5320
+ ],
5321
+ "exports": [
5322
+ {
5323
+ "kind": "js",
5324
+ "name": "default",
5325
+ "declaration": {
5326
+ "name": "meta",
5327
+ "module": "src/error-dialog/error-dialog.stories.ts"
5328
+ }
5329
+ },
5330
+ {
5331
+ "kind": "js",
5332
+ "name": "Primary",
5333
+ "declaration": {
5334
+ "name": "Primary",
5335
+ "module": "src/error-dialog/error-dialog.stories.ts"
5336
+ }
5337
+ }
5338
+ ]
5339
+ },
5340
+ {
5341
+ "kind": "javascript-module",
5342
+ "path": "src/error-dialog/error-dialog.ts",
5343
+ "declarations": [
5344
+ {
5345
+ "kind": "class",
5346
+ "description": "",
5347
+ "name": "ErrorDialog",
5348
+ "superclass": {
5349
+ "name": "FoundationErrorDialog",
5350
+ "package": "@genesislcap/foundation-ui"
5351
+ },
5352
+ "tagName": "%%prefix%%-error-dialog",
5353
+ "customElement": true,
5354
+ "members": [
5355
+ {
5356
+ "kind": "field",
5357
+ "name": "_presentation",
5358
+ "type": {
5359
+ "text": "ComponentPresentation | null | undefined"
5360
+ },
5361
+ "privacy": "private",
5362
+ "default": "void 0",
5363
+ "inheritedFrom": {
5364
+ "name": "FoundationElement",
5365
+ "module": "src/foundation-element/foundation-element.ts"
5366
+ }
5367
+ },
5368
+ {
5369
+ "kind": "field",
5370
+ "name": "$presentation",
5371
+ "type": {
5372
+ "text": "ComponentPresentation | null"
5373
+ },
5374
+ "privacy": "public",
5375
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
5376
+ "inheritedFrom": {
5377
+ "name": "FoundationElement",
5378
+ "module": "src/foundation-element/foundation-element.ts"
5379
+ }
5380
+ },
5381
+ {
5382
+ "kind": "field",
5383
+ "name": "template",
5384
+ "type": {
5385
+ "text": "ElementViewTemplate | void | null"
5386
+ },
5387
+ "privacy": "public",
5388
+ "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.",
5389
+ "inheritedFrom": {
5390
+ "name": "FoundationElement",
5391
+ "module": "src/foundation-element/foundation-element.ts"
5392
+ }
5393
+ },
5394
+ {
5395
+ "kind": "method",
5396
+ "name": "templateChanged",
5397
+ "privacy": "protected",
5398
+ "return": {
5399
+ "type": {
5400
+ "text": "void"
5401
+ }
5402
+ },
5403
+ "inheritedFrom": {
5404
+ "name": "FoundationElement",
5405
+ "module": "src/foundation-element/foundation-element.ts"
5406
+ }
5407
+ },
5408
+ {
5409
+ "kind": "field",
5410
+ "name": "styles",
5411
+ "type": {
5412
+ "text": "ElementStyles | void | null"
5413
+ },
5414
+ "privacy": "public",
5415
+ "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.",
5416
+ "inheritedFrom": {
5417
+ "name": "FoundationElement",
5418
+ "module": "src/foundation-element/foundation-element.ts"
5419
+ }
5420
+ },
5421
+ {
5422
+ "kind": "method",
5423
+ "name": "stylesChanged",
5424
+ "privacy": "protected",
5425
+ "return": {
5426
+ "type": {
5427
+ "text": "void"
5428
+ }
5429
+ },
5430
+ "inheritedFrom": {
5431
+ "name": "FoundationElement",
5432
+ "module": "src/foundation-element/foundation-element.ts"
5433
+ }
5434
+ },
5435
+ {
5436
+ "kind": "method",
5437
+ "name": "compose",
5438
+ "privacy": "public",
5439
+ "static": true,
5440
+ "return": {
5441
+ "type": {
5442
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
5443
+ }
5444
+ },
5445
+ "parameters": [
5446
+ {
5447
+ "name": "this",
5448
+ "type": {
5449
+ "text": "K"
5450
+ }
5451
+ },
5452
+ {
5453
+ "name": "elementDefinition",
5454
+ "type": {
5455
+ "text": "T"
5456
+ },
5457
+ "description": "The definition of the element to create the registry\nfunction for."
5458
+ }
5459
+ ],
5460
+ "description": "Defines an element registry function with a set of element definition defaults.",
5461
+ "inheritedFrom": {
5462
+ "name": "FoundationElement",
5463
+ "module": "src/foundation-element/foundation-element.ts"
5464
+ }
5465
+ }
5466
+ ]
5467
+ },
5468
+ {
5469
+ "kind": "variable",
5470
+ "name": "zeroErrorDialog",
5471
+ "description": "The zero ErrorDialog",
5472
+ "privacy": "public"
5473
+ }
5474
+ ],
5475
+ "exports": [
5476
+ {
5477
+ "kind": "js",
5478
+ "name": "ErrorDialog",
5479
+ "declaration": {
5480
+ "name": "ErrorDialog",
5481
+ "module": "src/error-dialog/error-dialog.ts"
5482
+ }
5483
+ },
5484
+ {
5485
+ "kind": "js",
5486
+ "name": "zeroErrorDialog",
5487
+ "declaration": {
5488
+ "name": "zeroErrorDialog",
5489
+ "module": "src/error-dialog/error-dialog.ts"
5490
+ }
5491
+ }
5492
+ ]
5493
+ },
5494
+ {
5495
+ "kind": "javascript-module",
5496
+ "path": "src/error-dialog/index.ts",
5497
+ "declarations": [],
5498
+ "exports": [
5499
+ {
5500
+ "kind": "js",
5501
+ "name": "*",
5502
+ "declaration": {
5503
+ "name": "*",
5504
+ "package": "./error-dialog"
5505
+ }
5506
+ }
5507
+ ]
5508
+ },
5300
5509
  {
5301
5510
  "kind": "javascript-module",
5302
5511
  "path": "src/file-upload/file-upload.stories.ts",
@@ -5940,7 +6149,7 @@
5940
6149
  },
5941
6150
  {
5942
6151
  "kind": "javascript-module",
5943
- "path": "src/error-dialog/error-dialog.stories.ts",
6152
+ "path": "src/filter-bar/filter-bar.stories.ts",
5944
6153
  "declarations": [
5945
6154
  {
5946
6155
  "kind": "variable",
@@ -5948,7 +6157,7 @@
5948
6157
  "type": {
5949
6158
  "text": "Meta"
5950
6159
  },
5951
- "default": "{\n title: 'Error Dialog',\n component: 'zero-error-dialog',\n}"
6160
+ "default": "{\n title: 'Filter Bar',\n component: 'zero-filter-bar',\n}"
5952
6161
  },
5953
6162
  {
5954
6163
  "kind": "variable",
@@ -5956,7 +6165,7 @@
5956
6165
  "type": {
5957
6166
  "text": "StoryObj"
5958
6167
  },
5959
- "default": "{\n args: {\n errorText:\n 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet',\n },\n render: ({ errorText }) => html`\n <zero-button @click=\"${() => showDialog(errorText)}\">Show Zero Dialog</zero-button>\n <div id=\"error-dialog-container\"></div>\n `,\n}"
6168
+ "default": "{\n render: () =>\n html`\n <zero-filter-bar\n resource=\"ALL_PROCESSES_STATUS\"\n only=\"PROCESS_PORT, START_TIME, PROCESS_NAME, DATADUMP\"\n ></zero-filter-bar>\n `,\n}"
5960
6169
  }
5961
6170
  ],
5962
6171
  "exports": [
@@ -5965,7 +6174,7 @@
5965
6174
  "name": "default",
5966
6175
  "declaration": {
5967
6176
  "name": "meta",
5968
- "module": "src/error-dialog/error-dialog.stories.ts"
6177
+ "module": "src/filter-bar/filter-bar.stories.ts"
5969
6178
  }
5970
6179
  },
5971
6180
  {
@@ -5973,241 +6182,32 @@
5973
6182
  "name": "Primary",
5974
6183
  "declaration": {
5975
6184
  "name": "Primary",
5976
- "module": "src/error-dialog/error-dialog.stories.ts"
6185
+ "module": "src/filter-bar/filter-bar.stories.ts"
5977
6186
  }
5978
6187
  }
5979
6188
  ]
5980
6189
  },
5981
6190
  {
5982
6191
  "kind": "javascript-module",
5983
- "path": "src/error-dialog/error-dialog.ts",
6192
+ "path": "src/filter-bar/filter-bar.styles.ts",
5984
6193
  "declarations": [
5985
6194
  {
5986
- "kind": "class",
5987
- "description": "",
5988
- "name": "ErrorDialog",
5989
- "superclass": {
5990
- "name": "FoundationErrorDialog",
5991
- "package": "@genesislcap/foundation-ui"
6195
+ "kind": "function",
6196
+ "name": "zeroFilterBarStyles",
6197
+ "return": {
6198
+ "type": {
6199
+ "text": "ElementStyles"
6200
+ }
5992
6201
  },
5993
- "tagName": "%%prefix%%-error-dialog",
5994
- "customElement": true,
5995
- "members": [
6202
+ "parameters": [
5996
6203
  {
5997
- "kind": "field",
5998
- "name": "_presentation",
6204
+ "name": "context",
5999
6205
  "type": {
6000
- "text": "ComponentPresentation | null | undefined"
6001
- },
6002
- "privacy": "private",
6003
- "default": "void 0",
6004
- "inheritedFrom": {
6005
- "name": "FoundationElement",
6006
- "module": "src/foundation-element/foundation-element.ts"
6206
+ "text": "ElementDefinitionContext"
6007
6207
  }
6008
6208
  },
6009
6209
  {
6010
- "kind": "field",
6011
- "name": "$presentation",
6012
- "type": {
6013
- "text": "ComponentPresentation | null"
6014
- },
6015
- "privacy": "public",
6016
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
6017
- "inheritedFrom": {
6018
- "name": "FoundationElement",
6019
- "module": "src/foundation-element/foundation-element.ts"
6020
- }
6021
- },
6022
- {
6023
- "kind": "field",
6024
- "name": "template",
6025
- "type": {
6026
- "text": "ElementViewTemplate | void | null"
6027
- },
6028
- "privacy": "public",
6029
- "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.",
6030
- "inheritedFrom": {
6031
- "name": "FoundationElement",
6032
- "module": "src/foundation-element/foundation-element.ts"
6033
- }
6034
- },
6035
- {
6036
- "kind": "method",
6037
- "name": "templateChanged",
6038
- "privacy": "protected",
6039
- "return": {
6040
- "type": {
6041
- "text": "void"
6042
- }
6043
- },
6044
- "inheritedFrom": {
6045
- "name": "FoundationElement",
6046
- "module": "src/foundation-element/foundation-element.ts"
6047
- }
6048
- },
6049
- {
6050
- "kind": "field",
6051
- "name": "styles",
6052
- "type": {
6053
- "text": "ElementStyles | void | null"
6054
- },
6055
- "privacy": "public",
6056
- "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.",
6057
- "inheritedFrom": {
6058
- "name": "FoundationElement",
6059
- "module": "src/foundation-element/foundation-element.ts"
6060
- }
6061
- },
6062
- {
6063
- "kind": "method",
6064
- "name": "stylesChanged",
6065
- "privacy": "protected",
6066
- "return": {
6067
- "type": {
6068
- "text": "void"
6069
- }
6070
- },
6071
- "inheritedFrom": {
6072
- "name": "FoundationElement",
6073
- "module": "src/foundation-element/foundation-element.ts"
6074
- }
6075
- },
6076
- {
6077
- "kind": "method",
6078
- "name": "compose",
6079
- "privacy": "public",
6080
- "static": true,
6081
- "return": {
6082
- "type": {
6083
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
6084
- }
6085
- },
6086
- "parameters": [
6087
- {
6088
- "name": "this",
6089
- "type": {
6090
- "text": "K"
6091
- }
6092
- },
6093
- {
6094
- "name": "elementDefinition",
6095
- "type": {
6096
- "text": "T"
6097
- },
6098
- "description": "The definition of the element to create the registry\nfunction for."
6099
- }
6100
- ],
6101
- "description": "Defines an element registry function with a set of element definition defaults.",
6102
- "inheritedFrom": {
6103
- "name": "FoundationElement",
6104
- "module": "src/foundation-element/foundation-element.ts"
6105
- }
6106
- }
6107
- ]
6108
- },
6109
- {
6110
- "kind": "variable",
6111
- "name": "zeroErrorDialog",
6112
- "description": "The zero ErrorDialog",
6113
- "privacy": "public"
6114
- }
6115
- ],
6116
- "exports": [
6117
- {
6118
- "kind": "js",
6119
- "name": "ErrorDialog",
6120
- "declaration": {
6121
- "name": "ErrorDialog",
6122
- "module": "src/error-dialog/error-dialog.ts"
6123
- }
6124
- },
6125
- {
6126
- "kind": "js",
6127
- "name": "zeroErrorDialog",
6128
- "declaration": {
6129
- "name": "zeroErrorDialog",
6130
- "module": "src/error-dialog/error-dialog.ts"
6131
- }
6132
- }
6133
- ]
6134
- },
6135
- {
6136
- "kind": "javascript-module",
6137
- "path": "src/error-dialog/index.ts",
6138
- "declarations": [],
6139
- "exports": [
6140
- {
6141
- "kind": "js",
6142
- "name": "*",
6143
- "declaration": {
6144
- "name": "*",
6145
- "package": "./error-dialog"
6146
- }
6147
- }
6148
- ]
6149
- },
6150
- {
6151
- "kind": "javascript-module",
6152
- "path": "src/filter-bar/filter-bar.stories.ts",
6153
- "declarations": [
6154
- {
6155
- "kind": "variable",
6156
- "name": "meta",
6157
- "type": {
6158
- "text": "Meta"
6159
- },
6160
- "default": "{\n title: 'Filter Bar',\n component: 'zero-filter-bar',\n}"
6161
- },
6162
- {
6163
- "kind": "variable",
6164
- "name": "Primary",
6165
- "type": {
6166
- "text": "StoryObj"
6167
- },
6168
- "default": "{\n render: () =>\n html`\n <zero-filter-bar\n resource=\"ALL_PROCESSES_STATUS\"\n only=\"PROCESS_PORT, START_TIME, PROCESS_NAME, DATADUMP\"\n ></zero-filter-bar>\n `,\n}"
6169
- }
6170
- ],
6171
- "exports": [
6172
- {
6173
- "kind": "js",
6174
- "name": "default",
6175
- "declaration": {
6176
- "name": "meta",
6177
- "module": "src/filter-bar/filter-bar.stories.ts"
6178
- }
6179
- },
6180
- {
6181
- "kind": "js",
6182
- "name": "Primary",
6183
- "declaration": {
6184
- "name": "Primary",
6185
- "module": "src/filter-bar/filter-bar.stories.ts"
6186
- }
6187
- }
6188
- ]
6189
- },
6190
- {
6191
- "kind": "javascript-module",
6192
- "path": "src/filter-bar/filter-bar.styles.ts",
6193
- "declarations": [
6194
- {
6195
- "kind": "function",
6196
- "name": "zeroFilterBarStyles",
6197
- "return": {
6198
- "type": {
6199
- "text": "ElementStyles"
6200
- }
6201
- },
6202
- "parameters": [
6203
- {
6204
- "name": "context",
6205
- "type": {
6206
- "text": "ElementDefinitionContext"
6207
- }
6208
- },
6209
- {
6210
- "name": "definition",
6210
+ "name": "definition",
6211
6211
  "type": {
6212
6212
  "text": "FoundationElementDefinition"
6213
6213
  }
@@ -7407,112 +7407,17 @@
7407
7407
  },
7408
7408
  {
7409
7409
  "kind": "javascript-module",
7410
- "path": "src/icon/icon.stories.ts",
7410
+ "path": "src/grid-layout-item/grid-layout-item.ts",
7411
7411
  "declarations": [
7412
7412
  {
7413
- "kind": "variable",
7414
- "name": "meta",
7415
- "type": {
7416
- "text": "Meta"
7417
- },
7418
- "default": "{\n title: 'Icon',\n component: 'zero-icon',\n}"
7419
- },
7420
- {
7421
- "kind": "variable",
7422
- "name": "Multiple",
7423
- "type": {
7424
- "text": "StoryObj"
7425
- },
7426
- "default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n <zero-icon name=\"glasses\" size=\"1x\"></zero-icon>\n <zero-icon name=\"amazon\" size=\"2x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"amazon-pay\" size=\"3x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"apple\" size=\"4x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"chrome\" size=\"5x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"ambulance\" size=\"xs\"></zero-icon>\n <zero-icon name=\"angry\" size=\"1x\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"angry\" size=\"sm\"></zero-icon>\n <zero-icon name=\"address-book\" size=\"lg\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"address-book\" size=\"xl\"></zero-icon>\n <zero-icon name=\"bookmark\" size=\"2xl;\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"bookmark\" size=\"2xs\"></zero-icon>\n </div>\n `,\n}"
7427
- },
7428
- {
7429
- "kind": "variable",
7430
- "name": "Configurable",
7431
- "type": {
7432
- "text": "StoryObj"
7413
+ "kind": "class",
7414
+ "description": "",
7415
+ "name": "GridLayoutItem",
7416
+ "superclass": {
7417
+ "name": "FoundationGridLayoutItem",
7418
+ "package": "@genesislcap/foundation-ui"
7433
7419
  },
7434
- "default": "{\n argTypes: {\n size: {\n control: 'select',\n options: [\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n '1x',\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n ],\n },\n variant: {\n control: 'select',\n options: ['solid', 'regular', 'brand'],\n },\n },\n args: {\n name: 'glasses',\n size: 'lg',\n variant: 'solid',\n },\n render: ({ name, size, variant }) => html`\n <zero-icon name=\"${name}\" size=\"${size}\" variant=\"${variant}\"></zero-icon>\n `,\n}"
7435
- }
7436
- ],
7437
- "exports": [
7438
- {
7439
- "kind": "js",
7440
- "name": "default",
7441
- "declaration": {
7442
- "name": "meta",
7443
- "module": "src/icon/icon.stories.ts"
7444
- }
7445
- },
7446
- {
7447
- "kind": "js",
7448
- "name": "Multiple",
7449
- "declaration": {
7450
- "name": "Multiple",
7451
- "module": "src/icon/icon.stories.ts"
7452
- }
7453
- },
7454
- {
7455
- "kind": "js",
7456
- "name": "Configurable",
7457
- "declaration": {
7458
- "name": "Configurable",
7459
- "module": "src/icon/icon.stories.ts"
7460
- }
7461
- }
7462
- ]
7463
- },
7464
- {
7465
- "kind": "javascript-module",
7466
- "path": "src/icon/icon.styles.ts",
7467
- "declarations": [
7468
- {
7469
- "kind": "function",
7470
- "name": "zeroIconStyles",
7471
- "return": {
7472
- "type": {
7473
- "text": "ElementStyles"
7474
- }
7475
- },
7476
- "parameters": [
7477
- {
7478
- "name": "context",
7479
- "type": {
7480
- "text": "ElementDefinitionContext"
7481
- }
7482
- },
7483
- {
7484
- "name": "definition",
7485
- "type": {
7486
- "text": "FoundationElementDefinition"
7487
- }
7488
- }
7489
- ]
7490
- }
7491
- ],
7492
- "exports": [
7493
- {
7494
- "kind": "js",
7495
- "name": "zeroIconStyles",
7496
- "declaration": {
7497
- "name": "zeroIconStyles",
7498
- "module": "src/icon/icon.styles.ts"
7499
- }
7500
- }
7501
- ]
7502
- },
7503
- {
7504
- "kind": "javascript-module",
7505
- "path": "src/icon/icon.ts",
7506
- "declarations": [
7507
- {
7508
- "kind": "class",
7509
- "description": "",
7510
- "name": "Icon",
7511
- "superclass": {
7512
- "name": "FoundationIcon",
7513
- "package": "@genesislcap/foundation-ui"
7514
- },
7515
- "tagName": "%%prefix%%-icon",
7420
+ "tagName": "%%prefix%%-grid-layout-item",
7516
7421
  "customElement": true,
7517
7422
  "members": [
7518
7423
  {
@@ -7630,90 +7535,161 @@
7630
7535
  },
7631
7536
  {
7632
7537
  "kind": "variable",
7633
- "name": "defaultIconConfig",
7634
- "default": "foundationIconConfig"
7635
- },
7636
- {
7637
- "kind": "variable",
7638
- "name": "zeroIconShadowOptions",
7639
- "default": "foundationIconShadowOptions"
7640
- },
7641
- {
7642
- "kind": "variable",
7643
- "name": "zeroIcon"
7538
+ "name": "zeroGridLayoutItem",
7539
+ "description": "The Zero Grid Layout Item",
7540
+ "privacy": "public"
7644
7541
  }
7645
7542
  ],
7646
7543
  "exports": [
7647
7544
  {
7648
7545
  "kind": "js",
7649
- "name": "Icon",
7546
+ "name": "GridLayoutItem",
7650
7547
  "declaration": {
7651
- "name": "Icon",
7652
- "module": "src/icon/icon.ts"
7548
+ "name": "GridLayoutItem",
7549
+ "module": "src/grid-layout-item/grid-layout-item.ts"
7653
7550
  }
7654
7551
  },
7655
7552
  {
7656
7553
  "kind": "js",
7657
- "name": "defaultIconConfig",
7554
+ "name": "zeroGridLayoutItem",
7658
7555
  "declaration": {
7659
- "name": "defaultIconConfig",
7660
- "module": "src/icon/icon.ts"
7556
+ "name": "zeroGridLayoutItem",
7557
+ "module": "src/grid-layout-item/grid-layout-item.ts"
7661
7558
  }
7662
- },
7559
+ }
7560
+ ]
7561
+ },
7562
+ {
7563
+ "kind": "javascript-module",
7564
+ "path": "src/grid-layout-item/index.ts",
7565
+ "declarations": [],
7566
+ "exports": [
7663
7567
  {
7664
7568
  "kind": "js",
7665
- "name": "zeroIconShadowOptions",
7569
+ "name": "*",
7666
7570
  "declaration": {
7667
- "name": "zeroIconShadowOptions",
7668
- "module": "src/icon/icon.ts"
7571
+ "name": "*",
7572
+ "package": "./grid-layout-item"
7669
7573
  }
7670
7574
  },
7671
7575
  {
7672
7576
  "kind": "js",
7673
- "name": "zeroIcon",
7577
+ "name": "zeroGridLayoutItemTemplate",
7674
7578
  "declaration": {
7675
- "name": "zeroIcon",
7676
- "module": "src/icon/icon.ts"
7579
+ "name": "foundationGridLayoutItemTemplate",
7580
+ "package": "@genesislcap/foundation-ui"
7677
7581
  }
7678
7582
  }
7679
7583
  ]
7680
7584
  },
7681
7585
  {
7682
7586
  "kind": "javascript-module",
7683
- "path": "src/icon/index.ts",
7684
- "declarations": [],
7587
+ "path": "src/icon/icon.stories.ts",
7588
+ "declarations": [
7589
+ {
7590
+ "kind": "variable",
7591
+ "name": "meta",
7592
+ "type": {
7593
+ "text": "Meta"
7594
+ },
7595
+ "default": "{\n title: 'Icon',\n component: 'zero-icon',\n}"
7596
+ },
7597
+ {
7598
+ "kind": "variable",
7599
+ "name": "Multiple",
7600
+ "type": {
7601
+ "text": "StoryObj"
7602
+ },
7603
+ "default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n <zero-icon name=\"glasses\" size=\"1x\"></zero-icon>\n <zero-icon name=\"amazon\" size=\"2x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"amazon-pay\" size=\"3x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"apple\" size=\"4x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"chrome\" size=\"5x\" variant=\"brand\"></zero-icon>\n <zero-icon name=\"ambulance\" size=\"xs\"></zero-icon>\n <zero-icon name=\"angry\" size=\"1x\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"angry\" size=\"sm\"></zero-icon>\n <zero-icon name=\"address-book\" size=\"lg\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"address-book\" size=\"xl\"></zero-icon>\n <zero-icon name=\"bookmark\" size=\"2xl;\"></zero-icon>\n <zero-icon variant=\"regular\" name=\"bookmark\" size=\"2xs\"></zero-icon>\n </div>\n `,\n}"
7604
+ },
7605
+ {
7606
+ "kind": "variable",
7607
+ "name": "Configurable",
7608
+ "type": {
7609
+ "text": "StoryObj"
7610
+ },
7611
+ "default": "{\n argTypes: {\n size: {\n control: 'select',\n options: [\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n '1x',\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n ],\n },\n variant: {\n control: 'select',\n options: ['solid', 'regular', 'brand'],\n },\n },\n args: {\n name: 'glasses',\n size: 'lg',\n variant: 'solid',\n },\n render: ({ name, size, variant }) => html`\n <zero-icon name=\"${name}\" size=\"${size}\" variant=\"${variant}\"></zero-icon>\n `,\n}"
7612
+ }
7613
+ ],
7685
7614
  "exports": [
7686
7615
  {
7687
7616
  "kind": "js",
7688
- "name": "*",
7617
+ "name": "default",
7689
7618
  "declaration": {
7690
- "name": "*",
7691
- "package": "./icon"
7619
+ "name": "meta",
7620
+ "module": "src/icon/icon.stories.ts"
7692
7621
  }
7693
7622
  },
7694
7623
  {
7695
7624
  "kind": "js",
7696
- "name": "*",
7625
+ "name": "Multiple",
7697
7626
  "declaration": {
7698
- "name": "*",
7699
- "package": "./icon.styles"
7627
+ "name": "Multiple",
7628
+ "module": "src/icon/icon.stories.ts"
7629
+ }
7630
+ },
7631
+ {
7632
+ "kind": "js",
7633
+ "name": "Configurable",
7634
+ "declaration": {
7635
+ "name": "Configurable",
7636
+ "module": "src/icon/icon.stories.ts"
7700
7637
  }
7701
7638
  }
7702
7639
  ]
7703
7640
  },
7704
7641
  {
7705
7642
  "kind": "javascript-module",
7706
- "path": "src/grid-layout-item/grid-layout-item.ts",
7643
+ "path": "src/icon/icon.styles.ts",
7644
+ "declarations": [
7645
+ {
7646
+ "kind": "function",
7647
+ "name": "zeroIconStyles",
7648
+ "return": {
7649
+ "type": {
7650
+ "text": "ElementStyles"
7651
+ }
7652
+ },
7653
+ "parameters": [
7654
+ {
7655
+ "name": "context",
7656
+ "type": {
7657
+ "text": "ElementDefinitionContext"
7658
+ }
7659
+ },
7660
+ {
7661
+ "name": "definition",
7662
+ "type": {
7663
+ "text": "FoundationElementDefinition"
7664
+ }
7665
+ }
7666
+ ]
7667
+ }
7668
+ ],
7669
+ "exports": [
7670
+ {
7671
+ "kind": "js",
7672
+ "name": "zeroIconStyles",
7673
+ "declaration": {
7674
+ "name": "zeroIconStyles",
7675
+ "module": "src/icon/icon.styles.ts"
7676
+ }
7677
+ }
7678
+ ]
7679
+ },
7680
+ {
7681
+ "kind": "javascript-module",
7682
+ "path": "src/icon/icon.ts",
7707
7683
  "declarations": [
7708
7684
  {
7709
7685
  "kind": "class",
7710
7686
  "description": "",
7711
- "name": "GridLayoutItem",
7687
+ "name": "Icon",
7712
7688
  "superclass": {
7713
- "name": "FoundationGridLayoutItem",
7689
+ "name": "FoundationIcon",
7714
7690
  "package": "@genesislcap/foundation-ui"
7715
7691
  },
7716
- "tagName": "%%prefix%%-grid-layout-item",
7692
+ "tagName": "%%prefix%%-icon",
7717
7693
  "customElement": true,
7718
7694
  "members": [
7719
7695
  {
@@ -7831,33 +7807,57 @@
7831
7807
  },
7832
7808
  {
7833
7809
  "kind": "variable",
7834
- "name": "zeroGridLayoutItem",
7835
- "description": "The Zero Grid Layout Item",
7836
- "privacy": "public"
7810
+ "name": "defaultIconConfig",
7811
+ "default": "foundationIconConfig"
7812
+ },
7813
+ {
7814
+ "kind": "variable",
7815
+ "name": "zeroIconShadowOptions",
7816
+ "default": "foundationIconShadowOptions"
7817
+ },
7818
+ {
7819
+ "kind": "variable",
7820
+ "name": "zeroIcon"
7837
7821
  }
7838
7822
  ],
7839
7823
  "exports": [
7840
7824
  {
7841
7825
  "kind": "js",
7842
- "name": "GridLayoutItem",
7826
+ "name": "Icon",
7843
7827
  "declaration": {
7844
- "name": "GridLayoutItem",
7845
- "module": "src/grid-layout-item/grid-layout-item.ts"
7828
+ "name": "Icon",
7829
+ "module": "src/icon/icon.ts"
7846
7830
  }
7847
7831
  },
7848
7832
  {
7849
7833
  "kind": "js",
7850
- "name": "zeroGridLayoutItem",
7834
+ "name": "defaultIconConfig",
7851
7835
  "declaration": {
7852
- "name": "zeroGridLayoutItem",
7853
- "module": "src/grid-layout-item/grid-layout-item.ts"
7836
+ "name": "defaultIconConfig",
7837
+ "module": "src/icon/icon.ts"
7838
+ }
7839
+ },
7840
+ {
7841
+ "kind": "js",
7842
+ "name": "zeroIconShadowOptions",
7843
+ "declaration": {
7844
+ "name": "zeroIconShadowOptions",
7845
+ "module": "src/icon/icon.ts"
7846
+ }
7847
+ },
7848
+ {
7849
+ "kind": "js",
7850
+ "name": "zeroIcon",
7851
+ "declaration": {
7852
+ "name": "zeroIcon",
7853
+ "module": "src/icon/icon.ts"
7854
7854
  }
7855
7855
  }
7856
7856
  ]
7857
7857
  },
7858
7858
  {
7859
7859
  "kind": "javascript-module",
7860
- "path": "src/grid-layout-item/index.ts",
7860
+ "path": "src/icon/index.ts",
7861
7861
  "declarations": [],
7862
7862
  "exports": [
7863
7863
  {
@@ -7865,15 +7865,15 @@
7865
7865
  "name": "*",
7866
7866
  "declaration": {
7867
7867
  "name": "*",
7868
- "package": "./grid-layout-item"
7868
+ "package": "./icon"
7869
7869
  }
7870
7870
  },
7871
7871
  {
7872
7872
  "kind": "js",
7873
- "name": "zeroGridLayoutItemTemplate",
7873
+ "name": "*",
7874
7874
  "declaration": {
7875
- "name": "foundationGridLayoutItemTemplate",
7876
- "package": "@genesislcap/foundation-ui"
7875
+ "name": "*",
7876
+ "package": "./icon.styles"
7877
7877
  }
7878
7878
  }
7879
7879
  ]
@@ -10558,7 +10558,7 @@
10558
10558
  },
10559
10559
  {
10560
10560
  "kind": "javascript-module",
10561
- "path": "src/skeleton/index.ts",
10561
+ "path": "src/slider/index.ts",
10562
10562
  "declarations": [],
10563
10563
  "exports": [
10564
10564
  {
@@ -10566,7 +10566,7 @@
10566
10566
  "name": "*",
10567
10567
  "declaration": {
10568
10568
  "name": "*",
10569
- "package": "./skeleton"
10569
+ "package": "./slider"
10570
10570
  }
10571
10571
  },
10572
10572
  {
@@ -10574,7 +10574,7 @@
10574
10574
  "name": "*",
10575
10575
  "declaration": {
10576
10576
  "name": "*",
10577
- "package": "./skeleton.styles"
10577
+ "package": "./slider.styles"
10578
10578
  }
10579
10579
  },
10580
10580
  {
@@ -10582,14 +10582,14 @@
10582
10582
  "name": "*",
10583
10583
  "declaration": {
10584
10584
  "name": "*",
10585
- "package": "./skeleton.template"
10585
+ "package": "./slider.template"
10586
10586
  }
10587
10587
  }
10588
10588
  ]
10589
10589
  },
10590
10590
  {
10591
10591
  "kind": "javascript-module",
10592
- "path": "src/skeleton/skeleton.stories.ts",
10592
+ "path": "src/slider/slider.stories.ts",
10593
10593
  "declarations": [
10594
10594
  {
10595
10595
  "kind": "variable",
@@ -10597,195 +10597,7 @@
10597
10597
  "type": {
10598
10598
  "text": "Meta"
10599
10599
  },
10600
- "default": "{\n title: 'Skeleton',\n component: 'zero-skeleton',\n}"
10601
- },
10602
- {
10603
- "kind": "variable",
10604
- "name": "Primary",
10605
- "type": {
10606
- "text": "StoryObj"
10607
- },
10608
- "default": "{\n render: () => html`\n <div\n style=\"\n background-color: #fff;\n padding: 20px;\n width: 500px;\n border-radius: 4px;\"\n >\n <zero-skeleton style=\"width: 50px; height: 50px;\" shape=\"circle\"></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px;width: 75px;height: 30px;margin-top: 20px;margin-bottom: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n </div>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 20px;\"\n shape=\"rect\"\n ></zero-skeleton>\n `,\n}"
10609
- }
10610
- ],
10611
- "exports": [
10612
- {
10613
- "kind": "js",
10614
- "name": "default",
10615
- "declaration": {
10616
- "name": "meta",
10617
- "module": "src/skeleton/skeleton.stories.ts"
10618
- }
10619
- },
10620
- {
10621
- "kind": "js",
10622
- "name": "Primary",
10623
- "declaration": {
10624
- "name": "Primary",
10625
- "module": "src/skeleton/skeleton.stories.ts"
10626
- }
10627
- }
10628
- ]
10629
- },
10630
- {
10631
- "kind": "javascript-module",
10632
- "path": "src/skeleton/skeleton.styles.ts",
10633
- "declarations": [
10634
- {
10635
- "kind": "function",
10636
- "name": "zeroSkeletonStyles",
10637
- "return": {
10638
- "type": {
10639
- "text": "ElementStyles"
10640
- }
10641
- },
10642
- "parameters": [
10643
- {
10644
- "name": "context",
10645
- "type": {
10646
- "text": "ElementDefinitionContext"
10647
- }
10648
- },
10649
- {
10650
- "name": "definition",
10651
- "type": {
10652
- "text": "FoundationElementDefinition"
10653
- }
10654
- }
10655
- ]
10656
- }
10657
- ],
10658
- "exports": [
10659
- {
10660
- "kind": "js",
10661
- "name": "zeroSkeletonStyles",
10662
- "declaration": {
10663
- "name": "zeroSkeletonStyles",
10664
- "module": "src/skeleton/skeleton.styles.ts"
10665
- }
10666
- }
10667
- ]
10668
- },
10669
- {
10670
- "kind": "javascript-module",
10671
- "path": "src/skeleton/skeleton.template.ts",
10672
- "declarations": [
10673
- {
10674
- "kind": "function",
10675
- "name": "zeroSkeletonTemplate",
10676
- "return": {
10677
- "type": {
10678
- "text": "ViewTemplate<Skeleton>"
10679
- }
10680
- },
10681
- "parameters": [
10682
- {
10683
- "name": "context",
10684
- "type": {
10685
- "text": "ElementDefinitionContext"
10686
- }
10687
- },
10688
- {
10689
- "name": "definition",
10690
- "type": {
10691
- "text": "FoundationElementDefinition"
10692
- }
10693
- }
10694
- ]
10695
- }
10696
- ],
10697
- "exports": [
10698
- {
10699
- "kind": "js",
10700
- "name": "zeroSkeletonTemplate",
10701
- "declaration": {
10702
- "name": "zeroSkeletonTemplate",
10703
- "module": "src/skeleton/skeleton.template.ts"
10704
- }
10705
- }
10706
- ]
10707
- },
10708
- {
10709
- "kind": "javascript-module",
10710
- "path": "src/skeleton/skeleton.ts",
10711
- "declarations": [
10712
- {
10713
- "kind": "class",
10714
- "description": "",
10715
- "name": "Skeleton",
10716
- "superclass": {
10717
- "name": "FoundationSkeleton",
10718
- "package": "@genesislcap/foundation-ui"
10719
- },
10720
- "tagName": "%%prefix%%-skeleton",
10721
- "customElement": true
10722
- },
10723
- {
10724
- "kind": "variable",
10725
- "name": "zeroSkeleton"
10726
- }
10727
- ],
10728
- "exports": [
10729
- {
10730
- "kind": "js",
10731
- "name": "Skeleton",
10732
- "declaration": {
10733
- "name": "Skeleton",
10734
- "module": "src/skeleton/skeleton.ts"
10735
- }
10736
- },
10737
- {
10738
- "kind": "js",
10739
- "name": "zeroSkeleton",
10740
- "declaration": {
10741
- "name": "zeroSkeleton",
10742
- "module": "src/skeleton/skeleton.ts"
10743
- }
10744
- }
10745
- ]
10746
- },
10747
- {
10748
- "kind": "javascript-module",
10749
- "path": "src/slider/index.ts",
10750
- "declarations": [],
10751
- "exports": [
10752
- {
10753
- "kind": "js",
10754
- "name": "*",
10755
- "declaration": {
10756
- "name": "*",
10757
- "package": "./slider"
10758
- }
10759
- },
10760
- {
10761
- "kind": "js",
10762
- "name": "*",
10763
- "declaration": {
10764
- "name": "*",
10765
- "package": "./slider.styles"
10766
- }
10767
- },
10768
- {
10769
- "kind": "js",
10770
- "name": "*",
10771
- "declaration": {
10772
- "name": "*",
10773
- "package": "./slider.template"
10774
- }
10775
- }
10776
- ]
10777
- },
10778
- {
10779
- "kind": "javascript-module",
10780
- "path": "src/slider/slider.stories.ts",
10781
- "declarations": [
10782
- {
10783
- "kind": "variable",
10784
- "name": "meta",
10785
- "type": {
10786
- "text": "Meta"
10787
- },
10788
- "default": "{\n title: 'Slider',\n component: 'zero-slider',\n}"
10600
+ "default": "{\n title: 'Slider',\n component: 'zero-slider',\n}"
10789
10601
  },
10790
10602
  {
10791
10603
  "kind": "variable",
@@ -11114,95 +10926,283 @@
11114
10926
  }
11115
10927
  },
11116
10928
  {
11117
- "kind": "field",
11118
- "name": "styles",
10929
+ "kind": "field",
10930
+ "name": "styles",
10931
+ "type": {
10932
+ "text": "ElementStyles | void | null"
10933
+ },
10934
+ "privacy": "public",
10935
+ "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.",
10936
+ "inheritedFrom": {
10937
+ "name": "FoundationElement",
10938
+ "module": "src/foundation-element/foundation-element.ts"
10939
+ }
10940
+ },
10941
+ {
10942
+ "kind": "method",
10943
+ "name": "stylesChanged",
10944
+ "privacy": "protected",
10945
+ "return": {
10946
+ "type": {
10947
+ "text": "void"
10948
+ }
10949
+ },
10950
+ "inheritedFrom": {
10951
+ "name": "FoundationElement",
10952
+ "module": "src/foundation-element/foundation-element.ts"
10953
+ }
10954
+ },
10955
+ {
10956
+ "kind": "method",
10957
+ "name": "compose",
10958
+ "privacy": "public",
10959
+ "static": true,
10960
+ "return": {
10961
+ "type": {
10962
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
10963
+ }
10964
+ },
10965
+ "parameters": [
10966
+ {
10967
+ "name": "this",
10968
+ "type": {
10969
+ "text": "K"
10970
+ }
10971
+ },
10972
+ {
10973
+ "name": "elementDefinition",
10974
+ "type": {
10975
+ "text": "T"
10976
+ },
10977
+ "description": "The definition of the element to create the registry\nfunction for."
10978
+ }
10979
+ ],
10980
+ "description": "Defines an element registry function with a set of element definition defaults.",
10981
+ "inheritedFrom": {
10982
+ "name": "FoundationElement",
10983
+ "module": "src/foundation-element/foundation-element.ts"
10984
+ }
10985
+ }
10986
+ ]
10987
+ },
10988
+ {
10989
+ "kind": "variable",
10990
+ "name": "zeroSnackbar",
10991
+ "description": "The Zero Snackbar",
10992
+ "privacy": "public"
10993
+ }
10994
+ ],
10995
+ "exports": [
10996
+ {
10997
+ "kind": "js",
10998
+ "name": "zeroSnackbarShadowOptions",
10999
+ "declaration": {
11000
+ "name": "zeroSnackbarShadowOptions",
11001
+ "module": "src/snackbar/snackbar.ts"
11002
+ }
11003
+ },
11004
+ {
11005
+ "kind": "js",
11006
+ "name": "Snackbar",
11007
+ "declaration": {
11008
+ "name": "Snackbar",
11009
+ "module": "src/snackbar/snackbar.ts"
11010
+ }
11011
+ },
11012
+ {
11013
+ "kind": "js",
11014
+ "name": "zeroSnackbar",
11015
+ "declaration": {
11016
+ "name": "zeroSnackbar",
11017
+ "module": "src/snackbar/snackbar.ts"
11018
+ }
11019
+ }
11020
+ ]
11021
+ },
11022
+ {
11023
+ "kind": "javascript-module",
11024
+ "path": "src/skeleton/index.ts",
11025
+ "declarations": [],
11026
+ "exports": [
11027
+ {
11028
+ "kind": "js",
11029
+ "name": "*",
11030
+ "declaration": {
11031
+ "name": "*",
11032
+ "package": "./skeleton"
11033
+ }
11034
+ },
11035
+ {
11036
+ "kind": "js",
11037
+ "name": "*",
11038
+ "declaration": {
11039
+ "name": "*",
11040
+ "package": "./skeleton.styles"
11041
+ }
11042
+ },
11043
+ {
11044
+ "kind": "js",
11045
+ "name": "*",
11046
+ "declaration": {
11047
+ "name": "*",
11048
+ "package": "./skeleton.template"
11049
+ }
11050
+ }
11051
+ ]
11052
+ },
11053
+ {
11054
+ "kind": "javascript-module",
11055
+ "path": "src/skeleton/skeleton.stories.ts",
11056
+ "declarations": [
11057
+ {
11058
+ "kind": "variable",
11059
+ "name": "meta",
11060
+ "type": {
11061
+ "text": "Meta"
11062
+ },
11063
+ "default": "{\n title: 'Skeleton',\n component: 'zero-skeleton',\n}"
11064
+ },
11065
+ {
11066
+ "kind": "variable",
11067
+ "name": "Primary",
11068
+ "type": {
11069
+ "text": "StoryObj"
11070
+ },
11071
+ "default": "{\n render: () => html`\n <div\n style=\"\n background-color: #fff;\n padding: 20px;\n width: 500px;\n border-radius: 4px;\"\n >\n <zero-skeleton style=\"width: 50px; height: 50px;\" shape=\"circle\"></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n <zero-skeleton\n style=\"border-radius: 4px;width: 75px;height: 30px;margin-top: 20px;margin-bottom: 10px;\"\n shape=\"rect\"\n ></zero-skeleton>\n </div>\n <zero-skeleton\n style=\"border-radius: 4px; margin-top: 10px; height: 20px;\"\n shape=\"rect\"\n ></zero-skeleton>\n `,\n}"
11072
+ }
11073
+ ],
11074
+ "exports": [
11075
+ {
11076
+ "kind": "js",
11077
+ "name": "default",
11078
+ "declaration": {
11079
+ "name": "meta",
11080
+ "module": "src/skeleton/skeleton.stories.ts"
11081
+ }
11082
+ },
11083
+ {
11084
+ "kind": "js",
11085
+ "name": "Primary",
11086
+ "declaration": {
11087
+ "name": "Primary",
11088
+ "module": "src/skeleton/skeleton.stories.ts"
11089
+ }
11090
+ }
11091
+ ]
11092
+ },
11093
+ {
11094
+ "kind": "javascript-module",
11095
+ "path": "src/skeleton/skeleton.styles.ts",
11096
+ "declarations": [
11097
+ {
11098
+ "kind": "function",
11099
+ "name": "zeroSkeletonStyles",
11100
+ "return": {
11101
+ "type": {
11102
+ "text": "ElementStyles"
11103
+ }
11104
+ },
11105
+ "parameters": [
11106
+ {
11107
+ "name": "context",
11108
+ "type": {
11109
+ "text": "ElementDefinitionContext"
11110
+ }
11111
+ },
11112
+ {
11113
+ "name": "definition",
11114
+ "type": {
11115
+ "text": "FoundationElementDefinition"
11116
+ }
11117
+ }
11118
+ ]
11119
+ }
11120
+ ],
11121
+ "exports": [
11122
+ {
11123
+ "kind": "js",
11124
+ "name": "zeroSkeletonStyles",
11125
+ "declaration": {
11126
+ "name": "zeroSkeletonStyles",
11127
+ "module": "src/skeleton/skeleton.styles.ts"
11128
+ }
11129
+ }
11130
+ ]
11131
+ },
11132
+ {
11133
+ "kind": "javascript-module",
11134
+ "path": "src/skeleton/skeleton.template.ts",
11135
+ "declarations": [
11136
+ {
11137
+ "kind": "function",
11138
+ "name": "zeroSkeletonTemplate",
11139
+ "return": {
11140
+ "type": {
11141
+ "text": "ViewTemplate<Skeleton>"
11142
+ }
11143
+ },
11144
+ "parameters": [
11145
+ {
11146
+ "name": "context",
11119
11147
  "type": {
11120
- "text": "ElementStyles | void | null"
11121
- },
11122
- "privacy": "public",
11123
- "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.",
11124
- "inheritedFrom": {
11125
- "name": "FoundationElement",
11126
- "module": "src/foundation-element/foundation-element.ts"
11127
- }
11128
- },
11129
- {
11130
- "kind": "method",
11131
- "name": "stylesChanged",
11132
- "privacy": "protected",
11133
- "return": {
11134
- "type": {
11135
- "text": "void"
11136
- }
11137
- },
11138
- "inheritedFrom": {
11139
- "name": "FoundationElement",
11140
- "module": "src/foundation-element/foundation-element.ts"
11148
+ "text": "ElementDefinitionContext"
11141
11149
  }
11142
11150
  },
11143
11151
  {
11144
- "kind": "method",
11145
- "name": "compose",
11146
- "privacy": "public",
11147
- "static": true,
11148
- "return": {
11149
- "type": {
11150
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
11151
- }
11152
- },
11153
- "parameters": [
11154
- {
11155
- "name": "this",
11156
- "type": {
11157
- "text": "K"
11158
- }
11159
- },
11160
- {
11161
- "name": "elementDefinition",
11162
- "type": {
11163
- "text": "T"
11164
- },
11165
- "description": "The definition of the element to create the registry\nfunction for."
11166
- }
11167
- ],
11168
- "description": "Defines an element registry function with a set of element definition defaults.",
11169
- "inheritedFrom": {
11170
- "name": "FoundationElement",
11171
- "module": "src/foundation-element/foundation-element.ts"
11152
+ "name": "definition",
11153
+ "type": {
11154
+ "text": "FoundationElementDefinition"
11172
11155
  }
11173
11156
  }
11174
11157
  ]
11175
- },
11176
- {
11177
- "kind": "variable",
11178
- "name": "zeroSnackbar",
11179
- "description": "The Zero Snackbar",
11180
- "privacy": "public"
11181
11158
  }
11182
11159
  ],
11183
11160
  "exports": [
11184
11161
  {
11185
11162
  "kind": "js",
11186
- "name": "zeroSnackbarShadowOptions",
11163
+ "name": "zeroSkeletonTemplate",
11187
11164
  "declaration": {
11188
- "name": "zeroSnackbarShadowOptions",
11189
- "module": "src/snackbar/snackbar.ts"
11165
+ "name": "zeroSkeletonTemplate",
11166
+ "module": "src/skeleton/skeleton.template.ts"
11190
11167
  }
11168
+ }
11169
+ ]
11170
+ },
11171
+ {
11172
+ "kind": "javascript-module",
11173
+ "path": "src/skeleton/skeleton.ts",
11174
+ "declarations": [
11175
+ {
11176
+ "kind": "class",
11177
+ "description": "",
11178
+ "name": "Skeleton",
11179
+ "superclass": {
11180
+ "name": "FoundationSkeleton",
11181
+ "package": "@genesislcap/foundation-ui"
11182
+ },
11183
+ "tagName": "%%prefix%%-skeleton",
11184
+ "customElement": true
11191
11185
  },
11186
+ {
11187
+ "kind": "variable",
11188
+ "name": "zeroSkeleton"
11189
+ }
11190
+ ],
11191
+ "exports": [
11192
11192
  {
11193
11193
  "kind": "js",
11194
- "name": "Snackbar",
11194
+ "name": "Skeleton",
11195
11195
  "declaration": {
11196
- "name": "Snackbar",
11197
- "module": "src/snackbar/snackbar.ts"
11196
+ "name": "Skeleton",
11197
+ "module": "src/skeleton/skeleton.ts"
11198
11198
  }
11199
11199
  },
11200
11200
  {
11201
11201
  "kind": "js",
11202
- "name": "zeroSnackbar",
11202
+ "name": "zeroSkeleton",
11203
11203
  "declaration": {
11204
- "name": "zeroSnackbar",
11205
- "module": "src/snackbar/snackbar.ts"
11204
+ "name": "zeroSkeleton",
11205
+ "module": "src/skeleton/skeleton.ts"
11206
11206
  }
11207
11207
  }
11208
11208
  ]
@@ -14744,6 +14744,76 @@
14744
14744
  }
14745
14745
  ]
14746
14746
  },
14747
+ {
14748
+ "kind": "javascript-module",
14749
+ "path": "src/dialog/styles/colors.ts",
14750
+ "declarations": [
14751
+ {
14752
+ "kind": "variable",
14753
+ "name": "defaultDialogActiveBGColor"
14754
+ }
14755
+ ],
14756
+ "exports": [
14757
+ {
14758
+ "kind": "js",
14759
+ "name": "defaultDialogActiveBGColor",
14760
+ "declaration": {
14761
+ "name": "defaultDialogActiveBGColor",
14762
+ "module": "src/dialog/styles/colors.ts"
14763
+ }
14764
+ }
14765
+ ]
14766
+ },
14767
+ {
14768
+ "kind": "javascript-module",
14769
+ "path": "src/dialog/styles/index.ts",
14770
+ "declarations": [],
14771
+ "exports": [
14772
+ {
14773
+ "kind": "js",
14774
+ "name": "*",
14775
+ "declaration": {
14776
+ "name": "*",
14777
+ "package": "./colors"
14778
+ }
14779
+ }
14780
+ ]
14781
+ },
14782
+ {
14783
+ "kind": "javascript-module",
14784
+ "path": "src/listbox-option/style/colors.ts",
14785
+ "declarations": [
14786
+ {
14787
+ "kind": "variable",
14788
+ "name": "defaultSelectedListboxFillColor"
14789
+ }
14790
+ ],
14791
+ "exports": [
14792
+ {
14793
+ "kind": "js",
14794
+ "name": "defaultSelectedListboxFillColor",
14795
+ "declaration": {
14796
+ "name": "defaultSelectedListboxFillColor",
14797
+ "module": "src/listbox-option/style/colors.ts"
14798
+ }
14799
+ }
14800
+ ]
14801
+ },
14802
+ {
14803
+ "kind": "javascript-module",
14804
+ "path": "src/listbox-option/style/index.ts",
14805
+ "declarations": [],
14806
+ "exports": [
14807
+ {
14808
+ "kind": "js",
14809
+ "name": "*",
14810
+ "declaration": {
14811
+ "name": "*",
14812
+ "package": "./colors"
14813
+ }
14814
+ }
14815
+ ]
14816
+ },
14747
14817
  {
14748
14818
  "kind": "javascript-module",
14749
14819
  "path": "src/_config/values/color.ts",
@@ -14988,76 +15058,6 @@
14988
15058
  }
14989
15059
  ]
14990
15060
  },
14991
- {
14992
- "kind": "javascript-module",
14993
- "path": "src/dialog/styles/colors.ts",
14994
- "declarations": [
14995
- {
14996
- "kind": "variable",
14997
- "name": "defaultDialogActiveBGColor"
14998
- }
14999
- ],
15000
- "exports": [
15001
- {
15002
- "kind": "js",
15003
- "name": "defaultDialogActiveBGColor",
15004
- "declaration": {
15005
- "name": "defaultDialogActiveBGColor",
15006
- "module": "src/dialog/styles/colors.ts"
15007
- }
15008
- }
15009
- ]
15010
- },
15011
- {
15012
- "kind": "javascript-module",
15013
- "path": "src/dialog/styles/index.ts",
15014
- "declarations": [],
15015
- "exports": [
15016
- {
15017
- "kind": "js",
15018
- "name": "*",
15019
- "declaration": {
15020
- "name": "*",
15021
- "package": "./colors"
15022
- }
15023
- }
15024
- ]
15025
- },
15026
- {
15027
- "kind": "javascript-module",
15028
- "path": "src/listbox-option/style/colors.ts",
15029
- "declarations": [
15030
- {
15031
- "kind": "variable",
15032
- "name": "defaultSelectedListboxFillColor"
15033
- }
15034
- ],
15035
- "exports": [
15036
- {
15037
- "kind": "js",
15038
- "name": "defaultSelectedListboxFillColor",
15039
- "declaration": {
15040
- "name": "defaultSelectedListboxFillColor",
15041
- "module": "src/listbox-option/style/colors.ts"
15042
- }
15043
- }
15044
- ]
15045
- },
15046
- {
15047
- "kind": "javascript-module",
15048
- "path": "src/listbox-option/style/index.ts",
15049
- "declarations": [],
15050
- "exports": [
15051
- {
15052
- "kind": "js",
15053
- "name": "*",
15054
- "declaration": {
15055
- "name": "*",
15056
- "package": "./colors"
15057
- }
15058
- }
15059
- ]
15060
- },
15061
15061
  {
15062
15062
  "kind": "javascript-module",
15063
15063
  "path": "src/_config/styles/external/roboto-font/index.ts",