@skedulo/breeze-ui 0.10.0 → 0.10.2

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.
@@ -176,6 +176,97 @@
176
176
  }
177
177
  ]
178
178
  },
179
+ {
180
+ "kind": "javascript-module",
181
+ "path": "src/helpers/css-helpers.ts",
182
+ "declarations": [
183
+ {
184
+ "kind": "function",
185
+ "name": "getFocusStyles",
186
+ "parameters": [
187
+ {
188
+ "name": "selector",
189
+ "type": {
190
+ "text": "string"
191
+ },
192
+ "description": "A CSS selector targeting an interactive element."
193
+ },
194
+ {
195
+ "name": "extraRules",
196
+ "default": "css``",
197
+ "description": "Optional rules to append. Useful for overrides."
198
+ }
199
+ ],
200
+ "description": "Returns a CSSResult applying focus outline styles to a given interactive\nelement. Reduces repetition throughout multiple components.\n\nTargets modern `:focus-visible` by default and includes a `:focus` fallback\nfor older browsers."
201
+ },
202
+ {
203
+ "kind": "variable",
204
+ "name": "invisibleButtonRules",
205
+ "default": "css`\n background: none;\n border: 0;\n border-radius: var(--brz-border-radius-default);\n color: var(--brz-color-neutral-750);\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n margin: 0;\n padding: 0;\n`",
206
+ "description": "CSS rules to apply invisible styles to buttons. Use within a CSS declaration\nblock."
207
+ },
208
+ {
209
+ "kind": "function",
210
+ "name": "getInvisibleButtonStyles",
211
+ "parameters": [
212
+ {
213
+ "name": "selector",
214
+ "type": {
215
+ "text": "string"
216
+ },
217
+ "description": "A CSS selector targeting a button"
218
+ },
219
+ {
220
+ "name": "extraRules",
221
+ "default": "css``",
222
+ "description": "Optional rules to append. Useful for overrides."
223
+ }
224
+ ],
225
+ "description": "Returns a CSSResult applying invisible styles to a button matching the given\nselector. Invisible buttons are a common pattern for icon-only close buttons.\n\nSince this applies to buttons, default focus styles are also automatically\nincluded for the selector. If you don't need them, or need to customise them,\nuse `invisibleButtonStyles` and `getFocusStyles()` separately instead."
226
+ }
227
+ ],
228
+ "exports": [
229
+ {
230
+ "kind": "js",
231
+ "name": "getFocusStyles",
232
+ "declaration": {
233
+ "name": "getFocusStyles",
234
+ "module": "src/helpers/css-helpers.ts"
235
+ }
236
+ },
237
+ {
238
+ "kind": "js",
239
+ "name": "invisibleButtonRules",
240
+ "declaration": {
241
+ "name": "invisibleButtonRules",
242
+ "module": "src/helpers/css-helpers.ts"
243
+ }
244
+ },
245
+ {
246
+ "kind": "js",
247
+ "name": "getInvisibleButtonStyles",
248
+ "declaration": {
249
+ "name": "getInvisibleButtonStyles",
250
+ "module": "src/helpers/css-helpers.ts"
251
+ }
252
+ }
253
+ ]
254
+ },
255
+ {
256
+ "kind": "javascript-module",
257
+ "path": "src/helpers/index.ts",
258
+ "declarations": [],
259
+ "exports": [
260
+ {
261
+ "kind": "js",
262
+ "name": "*",
263
+ "declaration": {
264
+ "name": "*",
265
+ "package": "./css-helpers"
266
+ }
267
+ }
268
+ ]
269
+ },
179
270
  {
180
271
  "kind": "javascript-module",
181
272
  "path": "src/components/alert.ts",
@@ -916,11 +1007,6 @@
916
1007
  }
917
1008
  ]
918
1009
  },
919
- {
920
- "kind": "field",
921
- "name": "classes",
922
- "privacy": "private"
923
- },
924
1010
  {
925
1011
  "kind": "method",
926
1012
  "name": "handleClick",
@@ -2049,15 +2135,6 @@
2049
2135
  "module": "src/components/buttons.ts"
2050
2136
  }
2051
2137
  },
2052
- {
2053
- "kind": "field",
2054
- "name": "classes",
2055
- "privacy": "private",
2056
- "inheritedFrom": {
2057
- "name": "Button",
2058
- "module": "src/components/buttons.ts"
2059
- }
2060
- },
2061
2138
  {
2062
2139
  "kind": "method",
2063
2140
  "name": "handleClick",
@@ -3369,15 +3446,6 @@
3369
3446
  "module": "src/components/buttons.ts"
3370
3447
  }
3371
3448
  },
3372
- {
3373
- "kind": "field",
3374
- "name": "classes",
3375
- "privacy": "private",
3376
- "inheritedFrom": {
3377
- "name": "Button",
3378
- "module": "src/components/buttons.ts"
3379
- }
3380
- },
3381
3449
  {
3382
3450
  "kind": "method",
3383
3451
  "name": "handleClick",
@@ -6944,6 +7012,7 @@
6944
7012
  "text": "'top' | 'middle' | 'bottom'"
6945
7013
  },
6946
7014
  "default": "'top'",
7015
+ "description": "Sets the vertical alignment of the content in the row",
6947
7016
  "fieldName": "verticalAlign",
6948
7017
  "inheritedFrom": {
6949
7018
  "name": "SplitRow",
@@ -6956,6 +7025,7 @@
6956
7025
  "text": "boolean"
6957
7026
  },
6958
7027
  "default": "false",
7028
+ "description": "Expands the left slot to fill the remaining space",
6959
7029
  "fieldName": "leftExpand",
6960
7030
  "inheritedFrom": {
6961
7031
  "name": "SplitRow",
@@ -6968,6 +7038,7 @@
6968
7038
  "text": "boolean"
6969
7039
  },
6970
7040
  "default": "false",
7041
+ "description": "Expands the right slot to fill the remaining space",
6971
7042
  "fieldName": "rightExpand",
6972
7043
  "inheritedFrom": {
6973
7044
  "name": "SplitRow",
@@ -6980,6 +7051,7 @@
6980
7051
  "text": "boolean"
6981
7052
  },
6982
7053
  "default": "false",
7054
+ "description": "Removes the spacing between the left and right slots",
6983
7055
  "fieldName": "noGap",
6984
7056
  "inheritedFrom": {
6985
7057
  "name": "SplitRow",
@@ -6992,6 +7064,7 @@
6992
7064
  "text": "boolean"
6993
7065
  },
6994
7066
  "default": "false",
7067
+ "description": "Expands the row vertically to fill in its parent's height",
6995
7068
  "fieldName": "expandY",
6996
7069
  "inheritedFrom": {
6997
7070
  "name": "SplitRow",
@@ -7007,6 +7080,7 @@
7007
7080
  "text": "'top' | 'middle' | 'bottom'"
7008
7081
  },
7009
7082
  "default": "'top'",
7083
+ "description": "Sets the vertical alignment of the content in the row",
7010
7084
  "attribute": "vertical-align",
7011
7085
  "reflects": true,
7012
7086
  "inheritedFrom": {
@@ -7021,6 +7095,7 @@
7021
7095
  "text": "boolean"
7022
7096
  },
7023
7097
  "default": "false",
7098
+ "description": "Expands the left slot to fill the remaining space",
7024
7099
  "attribute": "left-expand",
7025
7100
  "reflects": true,
7026
7101
  "inheritedFrom": {
@@ -7035,6 +7110,7 @@
7035
7110
  "text": "boolean"
7036
7111
  },
7037
7112
  "default": "false",
7113
+ "description": "Expands the right slot to fill the remaining space",
7038
7114
  "attribute": "right-expand",
7039
7115
  "reflects": true,
7040
7116
  "inheritedFrom": {
@@ -7049,6 +7125,7 @@
7049
7125
  "text": "boolean"
7050
7126
  },
7051
7127
  "default": "false",
7128
+ "description": "Removes the spacing between the left and right slots",
7052
7129
  "attribute": "no-gap",
7053
7130
  "reflects": true,
7054
7131
  "inheritedFrom": {
@@ -7063,6 +7140,7 @@
7063
7140
  "text": "boolean"
7064
7141
  },
7065
7142
  "default": "false",
7143
+ "description": "Expands the row vertically to fill in its parent's height",
7066
7144
  "attribute": "expand-y",
7067
7145
  "inheritedFrom": {
7068
7146
  "name": "SplitRow",
@@ -7088,6 +7166,7 @@
7088
7166
  "text": "boolean"
7089
7167
  },
7090
7168
  "default": "false",
7169
+ "description": "Removes the border (e.g. if you have an element below that has a border)",
7091
7170
  "fieldName": "noBorder",
7092
7171
  "inheritedFrom": {
7093
7172
  "name": "ActionBar",
@@ -7100,6 +7179,7 @@
7100
7179
  "text": "boolean"
7101
7180
  },
7102
7181
  "default": "false",
7182
+ "description": "Expands the left slot to fill the remaining space",
7103
7183
  "fieldName": "leftExpand",
7104
7184
  "inheritedFrom": {
7105
7185
  "name": "ActionBar",
@@ -7112,6 +7192,7 @@
7112
7192
  "text": "boolean"
7113
7193
  },
7114
7194
  "default": "false",
7195
+ "description": "Expands the right slot to fill the remaining space",
7115
7196
  "fieldName": "rightExpand",
7116
7197
  "inheritedFrom": {
7117
7198
  "name": "ActionBar",
@@ -7127,6 +7208,7 @@
7127
7208
  "text": "boolean"
7128
7209
  },
7129
7210
  "default": "false",
7211
+ "description": "Removes the border (e.g. if you have an element below that has a border)",
7130
7212
  "attribute": "no-border",
7131
7213
  "reflects": true,
7132
7214
  "inheritedFrom": {
@@ -7141,6 +7223,7 @@
7141
7223
  "text": "boolean"
7142
7224
  },
7143
7225
  "default": "false",
7226
+ "description": "Expands the left slot to fill the remaining space",
7144
7227
  "attribute": "left-expand",
7145
7228
  "reflects": true,
7146
7229
  "inheritedFrom": {
@@ -7155,6 +7238,7 @@
7155
7238
  "text": "boolean"
7156
7239
  },
7157
7240
  "default": "false",
7241
+ "description": "Expands the right slot to fill the remaining space",
7158
7242
  "attribute": "right-expand",
7159
7243
  "reflects": true,
7160
7244
  "inheritedFrom": {
@@ -18189,41 +18273,6 @@
18189
18273
  "kind": "class",
18190
18274
  "description": "Record row component",
18191
18275
  "name": "RecordRow",
18192
- "superclass": {
18193
- "name": "RecordField",
18194
- "module": "/src/components/record-field"
18195
- },
18196
- "deprecated": "Use brz-record-field",
18197
- "tagName": "brz-record-row",
18198
- "customElement": true,
18199
- "attributes": [
18200
- {
18201
- "name": "label-position",
18202
- "type": {
18203
- "text": "LabelPosition"
18204
- },
18205
- "default": "'top'",
18206
- "description": "The position of the supplied label",
18207
- "fieldName": "labelPosition",
18208
- "inheritedFrom": {
18209
- "name": "RecordField",
18210
- "module": "src/components/record-field/record-field.ts"
18211
- }
18212
- },
18213
- {
18214
- "name": "size",
18215
- "type": {
18216
- "text": "InputSizes"
18217
- },
18218
- "default": "'medium'",
18219
- "description": "The size of the input",
18220
- "fieldName": "size",
18221
- "inheritedFrom": {
18222
- "name": "RecordField",
18223
- "module": "src/components/record-field/record-field.ts"
18224
- }
18225
- }
18226
- ],
18227
18276
  "members": [
18228
18277
  {
18229
18278
  "kind": "field",
@@ -18274,6 +18323,41 @@
18274
18323
  "module": "src/components/record-field/record-field.ts"
18275
18324
  }
18276
18325
  }
18326
+ ],
18327
+ "superclass": {
18328
+ "name": "RecordField",
18329
+ "module": "/src/components/record-field"
18330
+ },
18331
+ "deprecated": "Use brz-record-field",
18332
+ "tagName": "brz-record-row",
18333
+ "customElement": true,
18334
+ "attributes": [
18335
+ {
18336
+ "name": "label-position",
18337
+ "type": {
18338
+ "text": "LabelPosition"
18339
+ },
18340
+ "default": "'top'",
18341
+ "description": "The position of the supplied label",
18342
+ "fieldName": "labelPosition",
18343
+ "inheritedFrom": {
18344
+ "name": "RecordField",
18345
+ "module": "src/components/record-field/record-field.ts"
18346
+ }
18347
+ },
18348
+ {
18349
+ "name": "size",
18350
+ "type": {
18351
+ "text": "InputSizes"
18352
+ },
18353
+ "default": "'medium'",
18354
+ "description": "The size of the input",
18355
+ "fieldName": "size",
18356
+ "inheritedFrom": {
18357
+ "name": "RecordField",
18358
+ "module": "src/components/record-field/record-field.ts"
18359
+ }
18360
+ }
18277
18361
  ]
18278
18362
  },
18279
18363
  {
@@ -19255,6 +19339,16 @@
19255
19339
  "kind": "class",
19256
19340
  "description": "Split row layout.",
19257
19341
  "name": "SplitRow",
19342
+ "slots": [
19343
+ {
19344
+ "description": "Content to populate the left side",
19345
+ "name": "left"
19346
+ },
19347
+ {
19348
+ "description": "Content to populate the right side",
19349
+ "name": "right"
19350
+ }
19351
+ ],
19258
19352
  "members": [
19259
19353
  {
19260
19354
  "kind": "field",
@@ -19263,6 +19357,7 @@
19263
19357
  "text": "'top' | 'middle' | 'bottom'"
19264
19358
  },
19265
19359
  "default": "'top'",
19360
+ "description": "Sets the vertical alignment of the content in the row",
19266
19361
  "attribute": "vertical-align",
19267
19362
  "reflects": true
19268
19363
  },
@@ -19273,6 +19368,7 @@
19273
19368
  "text": "boolean"
19274
19369
  },
19275
19370
  "default": "false",
19371
+ "description": "Expands the left slot to fill the remaining space",
19276
19372
  "attribute": "left-expand",
19277
19373
  "reflects": true
19278
19374
  },
@@ -19283,6 +19379,7 @@
19283
19379
  "text": "boolean"
19284
19380
  },
19285
19381
  "default": "false",
19382
+ "description": "Expands the right slot to fill the remaining space",
19286
19383
  "attribute": "right-expand",
19287
19384
  "reflects": true
19288
19385
  },
@@ -19293,6 +19390,7 @@
19293
19390
  "text": "boolean"
19294
19391
  },
19295
19392
  "default": "false",
19393
+ "description": "Removes the spacing between the left and right slots",
19296
19394
  "attribute": "no-gap",
19297
19395
  "reflects": true
19298
19396
  },
@@ -19303,6 +19401,7 @@
19303
19401
  "text": "boolean"
19304
19402
  },
19305
19403
  "default": "false",
19404
+ "description": "Expands the row vertically to fill in its parent's height",
19306
19405
  "attribute": "expand-y"
19307
19406
  }
19308
19407
  ],
@@ -19313,6 +19412,7 @@
19313
19412
  "text": "'top' | 'middle' | 'bottom'"
19314
19413
  },
19315
19414
  "default": "'top'",
19415
+ "description": "Sets the vertical alignment of the content in the row",
19316
19416
  "fieldName": "verticalAlign"
19317
19417
  },
19318
19418
  {
@@ -19321,6 +19421,7 @@
19321
19421
  "text": "boolean"
19322
19422
  },
19323
19423
  "default": "false",
19424
+ "description": "Expands the left slot to fill the remaining space",
19324
19425
  "fieldName": "leftExpand"
19325
19426
  },
19326
19427
  {
@@ -19329,6 +19430,7 @@
19329
19430
  "text": "boolean"
19330
19431
  },
19331
19432
  "default": "false",
19433
+ "description": "Expands the right slot to fill the remaining space",
19332
19434
  "fieldName": "rightExpand"
19333
19435
  },
19334
19436
  {
@@ -19337,6 +19439,7 @@
19337
19439
  "text": "boolean"
19338
19440
  },
19339
19441
  "default": "false",
19442
+ "description": "Removes the spacing between the left and right slots",
19340
19443
  "fieldName": "noGap"
19341
19444
  },
19342
19445
  {
@@ -19345,6 +19448,7 @@
19345
19448
  "text": "boolean"
19346
19449
  },
19347
19450
  "default": "false",
19451
+ "description": "Expands the row vertically to fill in its parent's height",
19348
19452
  "fieldName": "expandY"
19349
19453
  }
19350
19454
  ],
@@ -19359,6 +19463,16 @@
19359
19463
  "kind": "class",
19360
19464
  "description": "Action bar layout.",
19361
19465
  "name": "ActionBar",
19466
+ "slots": [
19467
+ {
19468
+ "description": "Content to populate the left side",
19469
+ "name": "left"
19470
+ },
19471
+ {
19472
+ "description": "Content to populate the right side",
19473
+ "name": "right"
19474
+ }
19475
+ ],
19362
19476
  "members": [
19363
19477
  {
19364
19478
  "kind": "field",
@@ -19367,6 +19481,7 @@
19367
19481
  "text": "boolean"
19368
19482
  },
19369
19483
  "default": "false",
19484
+ "description": "Removes the border (e.g. if you have an element below that has a border)",
19370
19485
  "attribute": "no-border",
19371
19486
  "reflects": true
19372
19487
  },
@@ -19377,6 +19492,7 @@
19377
19492
  "text": "boolean"
19378
19493
  },
19379
19494
  "default": "false",
19495
+ "description": "Expands the left slot to fill the remaining space",
19380
19496
  "attribute": "left-expand",
19381
19497
  "reflects": true
19382
19498
  },
@@ -19387,6 +19503,7 @@
19387
19503
  "text": "boolean"
19388
19504
  },
19389
19505
  "default": "false",
19506
+ "description": "Expands the right slot to fill the remaining space",
19390
19507
  "attribute": "right-expand",
19391
19508
  "reflects": true
19392
19509
  }
@@ -19398,6 +19515,7 @@
19398
19515
  "text": "boolean"
19399
19516
  },
19400
19517
  "default": "false",
19518
+ "description": "Removes the border (e.g. if you have an element below that has a border)",
19401
19519
  "fieldName": "noBorder"
19402
19520
  },
19403
19521
  {
@@ -19406,6 +19524,7 @@
19406
19524
  "text": "boolean"
19407
19525
  },
19408
19526
  "default": "false",
19527
+ "description": "Expands the left slot to fill the remaining space",
19409
19528
  "fieldName": "leftExpand"
19410
19529
  },
19411
19530
  {
@@ -19414,6 +19533,7 @@
19414
19533
  "text": "boolean"
19415
19534
  },
19416
19535
  "default": "false",
19536
+ "description": "Expands the right slot to fill the remaining space",
19417
19537
  "fieldName": "rightExpand"
19418
19538
  }
19419
19539
  ],
@@ -19476,91 +19596,121 @@
19476
19596
  },
19477
19597
  {
19478
19598
  "kind": "javascript-module",
19479
- "path": "src/helpers/css-helpers.ts",
19599
+ "path": "src/storybook/colors.stories.ts",
19480
19600
  "declarations": [
19481
19601
  {
19482
- "kind": "function",
19483
- "name": "getFocusStyles",
19484
- "parameters": [
19602
+ "kind": "class",
19603
+ "description": "Story component to render a colour swatch.\nWill extract the hex code from a supplied color var and use it as the background.",
19604
+ "name": "ColorSwatch",
19605
+ "members": [
19485
19606
  {
19486
- "name": "selector",
19607
+ "kind": "field",
19608
+ "name": "colorVar",
19487
19609
  "type": {
19488
19610
  "text": "string"
19489
19611
  },
19490
- "description": "A CSS selector targeting an interactive element."
19612
+ "default": "''",
19613
+ "attribute": "colorVar"
19491
19614
  },
19492
19615
  {
19493
- "name": "extraRules",
19494
- "default": "css``",
19495
- "description": "Optional rules to append. Useful for overrides."
19616
+ "kind": "field",
19617
+ "name": "lightText",
19618
+ "type": {
19619
+ "text": "boolean"
19620
+ },
19621
+ "default": "false",
19622
+ "attribute": "light-text"
19496
19623
  }
19497
19624
  ],
19498
- "description": "Returns a CSSResult applying focus outline styles to a given interactive\nelement. Reduces repetition throughout multiple components.\n\nTargets modern `:focus-visible` by default and includes a `:focus` fallback\nfor older browsers."
19499
- },
19500
- {
19501
- "kind": "variable",
19502
- "name": "invisibleButtonRules",
19503
- "default": "css`\n background: none;\n border: 0;\n border-radius: var(--brz-border-radius-default);\n color: var(--brz-color-neutral-750);\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n margin: 0;\n padding: 0;\n`",
19504
- "description": "CSS rules to apply invisible styles to buttons. Use within a CSS declaration\nblock."
19505
- },
19506
- {
19507
- "kind": "function",
19508
- "name": "getInvisibleButtonStyles",
19509
- "parameters": [
19625
+ "attributes": [
19510
19626
  {
19511
- "name": "selector",
19627
+ "name": "colorVar",
19512
19628
  "type": {
19513
19629
  "text": "string"
19514
19630
  },
19515
- "description": "A CSS selector targeting a button"
19631
+ "default": "''",
19632
+ "fieldName": "colorVar"
19516
19633
  },
19517
19634
  {
19518
- "name": "extraRules",
19519
- "default": "css``",
19520
- "description": "Optional rules to append. Useful for overrides."
19635
+ "name": "light-text",
19636
+ "type": {
19637
+ "text": "boolean"
19638
+ },
19639
+ "default": "false",
19640
+ "fieldName": "lightText"
19521
19641
  }
19522
19642
  ],
19523
- "description": "Returns a CSSResult applying invisible styles to a button matching the given\nselector. Invisible buttons are a common pattern for icon-only close buttons.\n\nSince this applies to buttons, default focus styles are also automatically\nincluded for the selector. If you don't need them, or need to customise them,\nuse `invisibleButtonStyles` and `getFocusStyles()` separately instead."
19643
+ "superclass": {
19644
+ "name": "LitElement",
19645
+ "package": "lit"
19646
+ },
19647
+ "tagName": "brz-sb-color-swatch",
19648
+ "customElement": true
19649
+ },
19650
+ {
19651
+ "kind": "class",
19652
+ "description": "Story component for laying out a group of swatches",
19653
+ "name": "ColorSwatchGroup",
19654
+ "members": [
19655
+ {
19656
+ "kind": "field",
19657
+ "name": "stacked",
19658
+ "type": {
19659
+ "text": "boolean"
19660
+ },
19661
+ "default": "false",
19662
+ "attribute": "stacked"
19663
+ }
19664
+ ],
19665
+ "attributes": [
19666
+ {
19667
+ "name": "stacked",
19668
+ "type": {
19669
+ "text": "boolean"
19670
+ },
19671
+ "default": "false",
19672
+ "fieldName": "stacked"
19673
+ }
19674
+ ],
19675
+ "superclass": {
19676
+ "name": "LitElement",
19677
+ "package": "lit"
19678
+ },
19679
+ "tagName": "brz-sb-color-swatch-group",
19680
+ "customElement": true
19524
19681
  }
19525
19682
  ],
19526
19683
  "exports": [
19527
19684
  {
19528
19685
  "kind": "js",
19529
- "name": "getFocusStyles",
19686
+ "name": "ColorSwatch",
19530
19687
  "declaration": {
19531
- "name": "getFocusStyles",
19532
- "module": "src/helpers/css-helpers.ts"
19688
+ "name": "ColorSwatch",
19689
+ "module": "src/storybook/colors.stories.ts"
19533
19690
  }
19534
19691
  },
19535
19692
  {
19536
- "kind": "js",
19537
- "name": "invisibleButtonRules",
19693
+ "kind": "custom-element-definition",
19694
+ "name": "brz-sb-color-swatch",
19538
19695
  "declaration": {
19539
- "name": "invisibleButtonRules",
19540
- "module": "src/helpers/css-helpers.ts"
19696
+ "name": "ColorSwatch",
19697
+ "module": "src/storybook/colors.stories.ts"
19541
19698
  }
19542
19699
  },
19543
19700
  {
19544
19701
  "kind": "js",
19545
- "name": "getInvisibleButtonStyles",
19702
+ "name": "ColorSwatchGroup",
19546
19703
  "declaration": {
19547
- "name": "getInvisibleButtonStyles",
19548
- "module": "src/helpers/css-helpers.ts"
19704
+ "name": "ColorSwatchGroup",
19705
+ "module": "src/storybook/colors.stories.ts"
19549
19706
  }
19550
- }
19551
- ]
19552
- },
19553
- {
19554
- "kind": "javascript-module",
19555
- "path": "src/helpers/index.ts",
19556
- "declarations": [],
19557
- "exports": [
19707
+ },
19558
19708
  {
19559
- "kind": "js",
19560
- "name": "*",
19709
+ "kind": "custom-element-definition",
19710
+ "name": "brz-sb-color-swatch-group",
19561
19711
  "declaration": {
19562
- "name": "*",
19563
- "package": "./css-helpers"
19712
+ "name": "ColorSwatchGroup",
19713
+ "module": "src/storybook/colors.stories.ts"
19564
19714
  }
19565
19715
  }
19566
19716
  ]
@@ -19702,127 +19852,6 @@
19702
19852
  }
19703
19853
  ]
19704
19854
  },
19705
- {
19706
- "kind": "javascript-module",
19707
- "path": "src/storybook/colors.stories.ts",
19708
- "declarations": [
19709
- {
19710
- "kind": "class",
19711
- "description": "Story component to render a colour swatch.\nWill extract the hex code from a supplied color var and use it as the background.",
19712
- "name": "ColorSwatch",
19713
- "members": [
19714
- {
19715
- "kind": "field",
19716
- "name": "colorVar",
19717
- "type": {
19718
- "text": "string"
19719
- },
19720
- "default": "''",
19721
- "attribute": "colorVar"
19722
- },
19723
- {
19724
- "kind": "field",
19725
- "name": "lightText",
19726
- "type": {
19727
- "text": "boolean"
19728
- },
19729
- "default": "false",
19730
- "attribute": "light-text"
19731
- }
19732
- ],
19733
- "attributes": [
19734
- {
19735
- "name": "colorVar",
19736
- "type": {
19737
- "text": "string"
19738
- },
19739
- "default": "''",
19740
- "fieldName": "colorVar"
19741
- },
19742
- {
19743
- "name": "light-text",
19744
- "type": {
19745
- "text": "boolean"
19746
- },
19747
- "default": "false",
19748
- "fieldName": "lightText"
19749
- }
19750
- ],
19751
- "superclass": {
19752
- "name": "LitElement",
19753
- "package": "lit"
19754
- },
19755
- "tagName": "brz-sb-color-swatch",
19756
- "customElement": true
19757
- },
19758
- {
19759
- "kind": "class",
19760
- "description": "Story component for laying out a group of swatches",
19761
- "name": "ColorSwatchGroup",
19762
- "members": [
19763
- {
19764
- "kind": "field",
19765
- "name": "stacked",
19766
- "type": {
19767
- "text": "boolean"
19768
- },
19769
- "default": "false",
19770
- "attribute": "stacked"
19771
- }
19772
- ],
19773
- "attributes": [
19774
- {
19775
- "name": "stacked",
19776
- "type": {
19777
- "text": "boolean"
19778
- },
19779
- "default": "false",
19780
- "fieldName": "stacked"
19781
- }
19782
- ],
19783
- "superclass": {
19784
- "name": "LitElement",
19785
- "package": "lit"
19786
- },
19787
- "tagName": "brz-sb-color-swatch-group",
19788
- "customElement": true
19789
- }
19790
- ],
19791
- "exports": [
19792
- {
19793
- "kind": "js",
19794
- "name": "ColorSwatch",
19795
- "declaration": {
19796
- "name": "ColorSwatch",
19797
- "module": "src/storybook/colors.stories.ts"
19798
- }
19799
- },
19800
- {
19801
- "kind": "custom-element-definition",
19802
- "name": "brz-sb-color-swatch",
19803
- "declaration": {
19804
- "name": "ColorSwatch",
19805
- "module": "src/storybook/colors.stories.ts"
19806
- }
19807
- },
19808
- {
19809
- "kind": "js",
19810
- "name": "ColorSwatchGroup",
19811
- "declaration": {
19812
- "name": "ColorSwatchGroup",
19813
- "module": "src/storybook/colors.stories.ts"
19814
- }
19815
- },
19816
- {
19817
- "kind": "custom-element-definition",
19818
- "name": "brz-sb-color-swatch-group",
19819
- "declaration": {
19820
- "name": "ColorSwatchGroup",
19821
- "module": "src/storybook/colors.stories.ts"
19822
- }
19823
- }
19824
- ]
19825
- },
19826
19855
  {
19827
19856
  "kind": "javascript-module",
19828
19857
  "path": "src/styles/borders.ts",
@@ -19904,7 +19933,7 @@
19904
19933
  {
19905
19934
  "kind": "variable",
19906
19935
  "name": "colors",
19907
- "default": "css`\n :host {\n --brz-color-neutral-900: #1b263a;\n --brz-color-neutral-850: #223049;\n --brz-color-neutral-800: #364359;\n --brz-color-neutral-750: #4a556a;\n --brz-color-neutral-700: #5e687a;\n --brz-color-neutral-650: #697282;\n --brz-color-neutral-600: #7a8291;\n --brz-color-neutral-550: #8d95a5;\n --brz-color-neutral-500: #9aa2b2;\n --brz-color-neutral-450: #b3bac8;\n --brz-color-neutral-400: #cacfd9;\n --brz-color-neutral-350: #dadee6;\n --brz-color-neutral-300: #e4e7ed;\n --brz-color-neutral-250: #eceef3;\n --brz-color-neutral-200: #f3f5f9;\n --brz-color-neutral-0: #ffffff;\n\n --brz-color-white: var(--brz-color-neutral-0);\n\n --brz-color-blue-900: #0062b3;\n --brz-color-blue-800: #0070cc;\n --brz-color-blue-700: #007ee6;\n --brz-color-blue-600: #008cff;\n --brz-color-blue-500: #33a3ff;\n --brz-color-blue-400: #66baff;\n --brz-color-blue-300: #99d1ff;\n --brz-color-blue-200: #cce8ff;\n --brz-color-blue-100: #e6f4ff;\n\n --brz-color-green-900: #3d7b4b;\n --brz-color-green-800: #3d854e;\n --brz-color-green-700: #3b8f4f;\n --brz-color-green-600: #469b58;\n --brz-color-green-500: #6ebf81;\n --brz-color-green-400: #9bd3a8;\n --brz-color-green-300: #bde2c5;\n --brz-color-green-200: #def0e2;\n --brz-color-green-100: #ebf6ed;\n\n --brz-color-orange-900: #9f5314;\n --brz-color-orange-800: #b65e16;\n --brz-color-orange-700: #cc6a19;\n --brz-color-orange-600: #e3761c;\n --brz-color-orange-500: #e99149;\n --brz-color-orange-400: #eead77;\n --brz-color-orange-300: #f4c8a4;\n --brz-color-orange-200: #f9e4d2;\n --brz-color-orange-100: #fcf1e8;\n\n --brz-color-red-900: #952a22;\n --brz-color-red-800: #aa3026;\n --brz-color-red-700: #c0362b;\n --brz-color-red-600: #d53c30;\n --brz-color-red-500: #dd6359;\n --brz-color-red-400: #e68a83;\n --brz-color-red-300: #eeb1ac;\n --brz-color-red-200: #f7d8d6;\n --brz-color-red-100: #fbecea;\n\n --brz-color-purple-900: #514192;\n --brz-color-purple-800: #5c4aa6;\n --brz-color-purple-700: #6854bb;\n --brz-color-purple-600: #735dd0;\n --brz-color-purple-500: #8f7dd9;\n --brz-color-purple-400: #ab9ee3;\n --brz-color-purple-300: #c7beec;\n --brz-color-purple-200: #e3dff6;\n --brz-color-purple-100: #f1effa;\n\n --brz-color-cyan-900: #3aa9ca;\n --brz-color-cyan-800: #3aa9ca;\n --brz-color-cyan-700: #3aa9ca;\n --brz-color-cyan-600: #3aa9ca;\n --brz-color-cyan-500: #3aa9ca;\n --brz-color-cyan-400: #3aa9ca;\n --brz-color-cyan-300: #3aa9ca;\n --brz-color-cyan-200: #3aa9ca;\n --brz-color-cyan-100: #ebf6fa;\n\n --brz-color-yellow-900: #a1850b;\n --brz-color-yellow-800: #b8980c;\n --brz-color-yellow-700: #cfab0e;\n --brz-color-yellow-600: #e6be0f;\n --brz-color-yellow-500: #ebcb3f;\n --brz-color-yellow-400: #f0d86f;\n --brz-color-yellow-300: #f5e59f;\n --brz-color-yellow-200: #faf2cf;\n --brz-color-yellow-100: #fdf9e7;\n\n --brz-color-teal-900: #19675f;\n --brz-color-teal-800: #1d766c;\n --brz-color-teal-700: #20847a;\n --brz-color-teal-600: #249387;\n --brz-color-teal-500: #50a99f;\n --brz-color-teal-400: #7cbeb7;\n --brz-color-teal-300: #a7d4cf;\n --brz-color-teal-200: #d3e9e7;\n --brz-color-teal-100: #e9f4f3;\n\n --brz-color-pink-900: #832358;\n --brz-color-pink-800: #962864;\n --brz-color-pink-700: #a82d71;\n --brz-color-pink-600: #bb327d;\n --brz-color-pink-500: #c95b97;\n --brz-color-pink-400: #d684b1;\n --brz-color-pink-300: #e4adcb;\n --brz-color-pink-200: #f1d6e5;\n --brz-color-pink-100: #f8ebf2;\n\n --brz-color-sapphire-900: #3e6682;\n --brz-color-sapphire-800: #467495;\n --brz-color-sapphire-700: #4f83a7;\n --brz-color-sapphire-600: #5891ba;\n --brz-color-sapphire-500: #79a7c8;\n --brz-color-sapphire-400: #9bbdd6;\n --brz-color-sapphire-300: #bcd3e3;\n --brz-color-sapphire-200: #dee9f1;\n --brz-color-sapphire-100: #eef4f8;\n\n --brz-color-lime-900: #577d2e;\n --brz-color-lime-800: #638f35;\n --brz-color-lime-700: #70a13b;\n --brz-color-lime-600: #7cb342;\n --brz-color-lime-500: #96c268;\n --brz-color-lime-400: #b0d18e;\n --brz-color-lime-300: #cbe1b3;\n --brz-color-lime-200: #e5f0d9;\n --brz-color-lime-100: #f2f7ec;\n\n --brz-color-indigo-900: #2f3976;\n --brz-color-indigo-800: #364286;\n --brz-color-indigo-700: #3c4a97;\n --brz-color-indigo-600: #4352a8;\n --brz-color-indigo-500: #6975b9;\n --brz-color-indigo-400: #8e97cb;\n --brz-color-indigo-300: #b4badc;\n --brz-color-indigo-200: #d9dcee;\n --brz-color-indigo-100: #eceef6;\n\n --brz-color-brown-900: #7f4133;\n --brz-color-brown-800: #924a3a;\n --brz-color-brown-700: #a45442;\n --brz-color-brown-600: #b65d49;\n --brz-color-brown-500: #c57d6d;\n --brz-color-brown-400: #d39e92;\n --brz-color-brown-300: #e2beb6;\n --brz-color-brown-200: #f0dfdb;\n --brz-color-brown-100: #f8efed;\n\n --brz-color-maroon-900: #4f2b3f;\n --brz-color-maroon-800: #5a3248;\n --brz-color-maroon-700: #663851;\n --brz-color-maroon-600: #713e5a;\n --brz-color-maroon-500: #8d657b;\n --brz-color-maroon-400: #aa8b9c;\n --brz-color-maroon-300: #c6b2bd;\n --brz-color-maroon-200: #e3d8de;\n --brz-color-maroon-100: #f1ecef;\n\n --brz-color-rose-900: #89374a;\n --brz-color-rose-800: #9d3f55;\n --brz-color-rose-700: #b0475f;\n --brz-color-rose-600: #c44f6a;\n --brz-color-rose-500: #d07288;\n --brz-color-rose-400: #dc95a6;\n --brz-color-rose-300: #e7b9c3;\n --brz-color-rose-200: #f3dce1;\n --brz-color-rose-100: #f9edf0;\n\n --brz-color-overlay: #22304933;\n --brz-color-shadow-150: #22304926;\n --brz-color-shadow-100: #2230491a;\n\n --brz-color-primary-900: var(--brz-color-blue-900);\n --brz-color-primary-800: var(--brz-color-blue-800);\n --brz-color-primary-700: var(--brz-color-blue-700);\n --brz-color-primary-600: var(--brz-color-blue-600);\n --brz-color-primary-500: var(--brz-color-blue-500);\n --brz-color-primary-400: var(--brz-color-blue-400);\n --brz-color-primary-300: var(--brz-color-blue-300);\n --brz-color-primary-200: var(--brz-color-blue-200);\n --brz-color-primary-100: var(--brz-color-blue-100);\n\n --brz-color-error: var(--brz-color-red-600);\n --brz-color-label-text: var(--brz-color-neutral-750);\n\n --brz-color-text-on-color: var(--brz-color-white);\n }\n`"
19936
+ "default": "css`\n :host {\n --brz-color-neutral-900: #1b263a;\n --brz-color-neutral-850: #223049;\n --brz-color-neutral-800: #364359;\n --brz-color-neutral-750: #4a556a;\n --brz-color-neutral-700: #5e687a;\n --brz-color-neutral-650: #697282;\n --brz-color-neutral-600: #7a8291;\n --brz-color-neutral-550: #8d95a5;\n --brz-color-neutral-500: #9aa2b2;\n --brz-color-neutral-450: #b3bac8;\n --brz-color-neutral-400: #cacfd9;\n --brz-color-neutral-350: #dadee6;\n --brz-color-neutral-300: #e4e7ed;\n --brz-color-neutral-250: #eceef3;\n --brz-color-neutral-200: #f3f5f9;\n --brz-color-neutral-0: #ffffff;\n\n --brz-color-white: var(--brz-color-neutral-0);\n\n --brz-color-blue-900: #0062b3;\n --brz-color-blue-800: #0070cc;\n --brz-color-blue-700: #007ee6;\n --brz-color-blue-600: #008cff;\n --brz-color-blue-500: #33a3ff;\n --brz-color-blue-400: #66baff;\n --brz-color-blue-300: #99d1ff;\n --brz-color-blue-200: #cce8ff;\n --brz-color-blue-100: #e6f4ff;\n\n --brz-color-green-900: #3d7b4b;\n --brz-color-green-800: #3d854e;\n --brz-color-green-700: #3b8f4f;\n --brz-color-green-600: #469b58;\n --brz-color-green-500: #6ebf81;\n --brz-color-green-400: #9bd3a8;\n --brz-color-green-300: #bde2c5;\n --brz-color-green-200: #def0e2;\n --brz-color-green-100: #ebf6ed;\n\n --brz-color-orange-900: #9f5314;\n --brz-color-orange-800: #b65e16;\n --brz-color-orange-700: #cc6a19;\n --brz-color-orange-600: #e3761c;\n --brz-color-orange-500: #e99149;\n --brz-color-orange-400: #eead77;\n --brz-color-orange-300: #f4c8a4;\n --brz-color-orange-200: #f9e4d2;\n --brz-color-orange-100: #fcf1e8;\n\n --brz-color-red-900: #952a22;\n --brz-color-red-800: #aa3026;\n --brz-color-red-700: #c0362b;\n --brz-color-red-600: #d53c30;\n --brz-color-red-500: #dd6359;\n --brz-color-red-400: #e68a83;\n --brz-color-red-300: #eeb1ac;\n --brz-color-red-200: #f7d8d6;\n --brz-color-red-100: #fbecea;\n\n --brz-color-purple-900: #514192;\n --brz-color-purple-800: #5c4aa6;\n --brz-color-purple-700: #6854bb;\n --brz-color-purple-600: #735dd0;\n --brz-color-purple-500: #8f7dd9;\n --brz-color-purple-400: #ab9ee3;\n --brz-color-purple-300: #c7beec;\n --brz-color-purple-200: #e3dff6;\n --brz-color-purple-100: #f1effa;\n\n --brz-color-cyan-900: #3aa9ca;\n --brz-color-cyan-800: #3aa9ca;\n --brz-color-cyan-700: #3aa9ca;\n --brz-color-cyan-600: #3aa9ca;\n --brz-color-cyan-500: #3aa9ca;\n --brz-color-cyan-400: #3aa9ca;\n --brz-color-cyan-300: #3aa9ca;\n --brz-color-cyan-200: #3aa9ca;\n --brz-color-cyan-100: #ebf6fa;\n\n --brz-color-yellow-900: #a1850b;\n --brz-color-yellow-800: #b8980c;\n --brz-color-yellow-700: #cfab0e;\n --brz-color-yellow-600: #e6be0f;\n --brz-color-yellow-500: #ebcb3f;\n --brz-color-yellow-400: #f0d86f;\n --brz-color-yellow-300: #f5e59f;\n --brz-color-yellow-200: #faf2cf;\n --brz-color-yellow-100: #fdf9e7;\n\n --brz-color-teal-900: #19675f;\n --brz-color-teal-800: #1d766c;\n --brz-color-teal-700: #20847a;\n --brz-color-teal-600: #249387;\n --brz-color-teal-500: #50a99f;\n --brz-color-teal-400: #7cbeb7;\n --brz-color-teal-300: #a7d4cf;\n --brz-color-teal-200: #d3e9e7;\n --brz-color-teal-100: #e9f4f3;\n\n --brz-color-pink-900: #832358;\n --brz-color-pink-800: #962864;\n --brz-color-pink-700: #a82d71;\n --brz-color-pink-600: #bb327d;\n --brz-color-pink-500: #c95b97;\n --brz-color-pink-400: #d684b1;\n --brz-color-pink-300: #e4adcb;\n --brz-color-pink-200: #f1d6e5;\n --brz-color-pink-100: #f8ebf2;\n\n --brz-color-sapphire-900: #3e6682;\n --brz-color-sapphire-800: #467495;\n --brz-color-sapphire-700: #4f83a7;\n --brz-color-sapphire-600: #5891ba;\n --brz-color-sapphire-500: #79a7c8;\n --brz-color-sapphire-400: #9bbdd6;\n --brz-color-sapphire-300: #bcd3e3;\n --brz-color-sapphire-200: #dee9f1;\n --brz-color-sapphire-100: #eef4f8;\n\n --brz-color-lime-900: #577d2e;\n --brz-color-lime-800: #638f35;\n --brz-color-lime-700: #70a13b;\n --brz-color-lime-600: #7cb342;\n --brz-color-lime-500: #96c268;\n --brz-color-lime-400: #b0d18e;\n --brz-color-lime-300: #cbe1b3;\n --brz-color-lime-200: #e5f0d9;\n --brz-color-lime-100: #f2f7ec;\n\n --brz-color-indigo-900: #2f3976;\n --brz-color-indigo-800: #364286;\n --brz-color-indigo-700: #3c4a97;\n --brz-color-indigo-600: #4352a8;\n --brz-color-indigo-500: #6975b9;\n --brz-color-indigo-400: #8e97cb;\n --brz-color-indigo-300: #b4badc;\n --brz-color-indigo-200: #d9dcee;\n --brz-color-indigo-100: #eceef6;\n\n --brz-color-brown-900: #7f4133;\n --brz-color-brown-800: #924a3a;\n --brz-color-brown-700: #a45442;\n --brz-color-brown-600: #b65d49;\n --brz-color-brown-500: #c57d6d;\n --brz-color-brown-400: #d39e92;\n --brz-color-brown-300: #e2beb6;\n --brz-color-brown-200: #f0dfdb;\n --brz-color-brown-100: #f8efed;\n\n --brz-color-maroon-900: #4f2b3f;\n --brz-color-maroon-800: #5a3248;\n --brz-color-maroon-700: #663851;\n --brz-color-maroon-600: #713e5a;\n --brz-color-maroon-500: #8d657b;\n --brz-color-maroon-400: #aa8b9c;\n --brz-color-maroon-300: #c6b2bd;\n --brz-color-maroon-200: #e3d8de;\n --brz-color-maroon-100: #f1ecef;\n\n --brz-color-rose-900: #89374a;\n --brz-color-rose-800: #9d3f55;\n --brz-color-rose-700: #b0475f;\n --brz-color-rose-600: #c44f6a;\n --brz-color-rose-500: #d07288;\n --brz-color-rose-400: #dc95a6;\n --brz-color-rose-300: #e7b9c3;\n --brz-color-rose-200: #f3dce1;\n --brz-color-rose-100: #f9edf0;\n\n --brz-color-overlay: #22304933;\n --brz-color-shadow-150: #22304926;\n --brz-color-shadow-100: #2230491a;\n\n --brz-color-primary-900: var(--brz-color-blue-900);\n --brz-color-primary-800: var(--brz-color-blue-800);\n --brz-color-primary-700: var(--brz-color-blue-700);\n --brz-color-primary-600: var(--brz-color-blue-600);\n --brz-color-primary-500: var(--brz-color-blue-500);\n --brz-color-primary-400: var(--brz-color-blue-400);\n --brz-color-primary-300: var(--brz-color-blue-300);\n --brz-color-primary-200: var(--brz-color-blue-200);\n --brz-color-primary-100: var(--brz-color-blue-100);\n\n --brz-color-primary: var(--brz-color-primary-800);\n --brz-color-primary-hover: var(--brz-color-primary-900);\n\n --brz-color-error: var(--brz-color-red-600);\n --brz-color-label-text: var(--brz-color-neutral-750);\n\n --brz-color-text-on-color: var(--brz-color-white);\n }\n`"
19908
19937
  }
19909
19938
  ],
19910
19939
  "exports": [
@@ -29869,6 +29898,12 @@
29869
29898
  "kind": "class",
29870
29899
  "description": "Wraps multiple InlineEditField components.\n\nCan optionally be made a `controller` group so that all registered fields are\ntoggled at once.",
29871
29900
  "name": "InlineEditGroup",
29901
+ "cssParts": [
29902
+ {
29903
+ "description": "Apply style overrides to the group container element",
29904
+ "name": "container"
29905
+ }
29906
+ ],
29872
29907
  "slots": [
29873
29908
  {
29874
29909
  "description": "One or more InlineEditField components, which can be wrapped in a more complex layout where necessary",
@@ -30399,12 +30434,12 @@
30399
30434
  {
30400
30435
  "kind": "variable",
30401
30436
  "name": "inlineEditFieldStyles",
30402
- "default": "css`\n :host {\n display: block;\n }\n\n :host(:nth-of-type(n + 2)) {\n margin-top: var(--brz-spacing-4);\n }\n\n .button {\n --brz-button-color: var(--brz-color-neutral-850);\n --brz-button-icon-color: var(--brz-color-neutral-600);\n --brz-button-font-weight: var(--brz-font-weight-normal);\n }\n\n .button.offset {\n margin-left: calc(0px - var(--brz-spacing-2));\n margin-top: calc(0px - var(--brz-spacing-1));\n }\n\n :host(:not([locked])) .button {\n width: 100%;\n }\n\n .button[disabled]::part(button) {\n --brz-button-color: inherit !important;\n }\n\n .button::part(button) {\n height: auto;\n min-height: var(--brz-button-height);\n width: 100%;\n }\n\n .button:hover:not([disabled])::part(button) {\n --brz-button-background-color: var(--brz-color-neutral-250);\n }\n\n .button::part(contents) {\n justify-content: space-between;\n width: 100%;\n }\n\n .button::part(icon-right) {\n display: none;\n }\n\n .button:hover::part(button) {\n transition: background-color 100ms ease-in-out;\n }\n\n .button:hover::part(icon-right),\n .button:focus::part(icon-right) {\n display: block;\n }\n\n .button.overflowing:hover::part(icon-right),\n .button.overflowing:focus::part(icon-right) {\n align-self: flex-start;\n margin-top: var(--brz-spacing-2);\n }\n\n .edit-mode {\n display: inline-block;\n }\n\n .edit-mode.block {\n display: block;\n }\n\n .value {\n max-width: calc(100% - var(--brz-spacing-5));\n text-align: left;\n }\n\n .value.overflowing {\n padding: calc(var(--brz-spacing-2) - var(--brz-spacing-px)) 0;\n }\n\n :host([locked]) .button:not(:hover) .value {\n padding-right: var(--brz-spacing-5);\n }\n\n .value.truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n brz-inline-edit-controls {\n --brz-inline-edit-controls-spacing: var(--brz-spacing-2);\n\n margin-top: var(--brz-inline-edit-controls-spacing);\n }\n`"
30437
+ "default": "css`\n :host {\n display: block;\n }\n\n .button {\n --brz-button-color: var(--brz-color-neutral-850);\n --brz-button-icon-color: var(--brz-color-neutral-600);\n --brz-button-font-weight: var(--brz-font-weight-normal);\n }\n\n .button.offset {\n margin-left: calc(0px - var(--brz-spacing-2));\n margin-top: calc(0px - var(--brz-spacing-1));\n }\n\n :host(:not([locked])) .button {\n width: 100%;\n }\n\n .button[disabled]::part(button) {\n --brz-button-color: inherit !important;\n }\n\n .button::part(button) {\n height: auto;\n min-height: var(--brz-button-height);\n width: 100%;\n }\n\n .button:hover:not([disabled])::part(button) {\n --brz-button-background-color: var(--brz-color-neutral-250);\n }\n\n .button::part(contents) {\n justify-content: space-between;\n width: 100%;\n }\n\n .button::part(icon-right) {\n display: none;\n }\n\n .button:hover::part(button) {\n transition: background-color 100ms ease-in-out;\n }\n\n .button:hover::part(icon-right),\n .button:focus::part(icon-right) {\n display: block;\n }\n\n .button.overflowing:hover::part(icon-right),\n .button.overflowing:focus::part(icon-right) {\n align-self: flex-start;\n margin-top: var(--brz-spacing-2);\n }\n\n .edit-mode {\n display: inline-block;\n }\n\n .edit-mode.block {\n display: block;\n }\n\n .value {\n max-width: calc(100% - var(--brz-spacing-5));\n text-align: left;\n }\n\n .value.overflowing {\n padding: calc(var(--brz-spacing-2) - var(--brz-spacing-px)) 0;\n }\n\n :host([locked]) .button:not(:hover) .value {\n padding-right: var(--brz-spacing-5);\n }\n\n .value.truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n brz-inline-edit-controls {\n --brz-inline-edit-controls-spacing: var(--brz-spacing-2);\n\n margin-top: var(--brz-inline-edit-controls-spacing);\n }\n`"
30403
30438
  },
30404
30439
  {
30405
30440
  "kind": "variable",
30406
30441
  "name": "inlineEditGroupStyles",
30407
- "default": "css`\n .inline-edit-group {\n display: inline-block;\n margin: 0;\n }\n\n brz-inline-edit-controls {\n margin-top: var(--brz-inline-edit-controls-spacing);\n }\n`"
30442
+ "default": "css`\n .inline-edit-group {\n display: inline-flex;\n flex-direction: column;\n gap: var(--brz-spacing-4);\n margin: 0;\n }\n\n brz-inline-edit-controls {\n margin-top: var(--brz-inline-edit-controls-spacing);\n }\n`"
30408
30443
  },
30409
30444
  {
30410
30445
  "kind": "variable",
@@ -32005,7 +32040,7 @@
32005
32040
  {
32006
32041
  "kind": "variable",
32007
32042
  "name": "recordFieldStyles",
32008
- "default": "css`\n :host {\n display: block;\n }\n\n :host(:nth-of-type(n + 2)) {\n margin-top: var(--brz-spacing-4);\n }\n\n :host([label-position='top']) .container {\n flex-direction: column;\n }\n\n :host([label-position='top']) .label {\n margin-bottom: var(--brz-spacing-1);\n }\n\n :host([label-position='side']) .label {\n align-items: flex-start;\n }\n\n ::slotted([slot='label']) {\n font-weight: var(--brz-font-weight-medium);\n }\n\n :host([label-position='side']) ::slotted([slot='label']) {\n align-items: center;\n display: inline-flex;\n min-height: var(--brz-spacing-9);\n width: 10.25rem;\n }\n\n :host([label-position='side']) ::slotted([slot='label'][hidden]) {\n display: block !important;\n }\n\n .label.hidden {\n display: none;\n }\n\n .label-right-row {\n margin-bottom: var(--brz-spacing-1);\n }\n\n .label-right-row:not(.size-full) {\n margin-left: 11.25rem;\n }\n\n .container {\n display: flex;\n min-height: var(--brz-spacing-9);\n }\n\n .value {\n align-items: center;\n display: flex;\n }\n\n :host([label-position='side']) .value.multiline {\n margin: var(--brz-spacing-2) 0;\n }\n\n .value ::slotted(*) {\n flex-basis: 100%;\n max-width: 100%;\n }\n\n .value ::slotted(dd) {\n margin: 0;\n }\n\n :host([label-position='side']) .value {\n min-height: var(--brz-spacing-9);\n }\n\n :host([label-position='side']) .value.size-auto {\n flex-grow: 1;\n }\n`"
32043
+ "default": "css`\n :host {\n display: block;\n }\n\n :host([label-position='top']) .container {\n flex-direction: column;\n }\n\n :host([label-position='top']) .label {\n margin-bottom: var(--brz-spacing-1);\n }\n\n :host([label-position='side']) .label {\n align-items: flex-start;\n }\n\n ::slotted([slot='label']) {\n font-weight: var(--brz-font-weight-medium);\n }\n\n :host([label-position='side']) ::slotted([slot='label']) {\n align-items: center;\n display: inline-flex;\n min-height: var(--brz-spacing-9);\n width: 10.25rem;\n }\n\n :host([label-position='side']) ::slotted([slot='label'][hidden]) {\n display: block !important;\n }\n\n .label.hidden {\n display: none;\n }\n\n .label-right-row {\n margin-bottom: var(--brz-spacing-1);\n }\n\n .label-right-row:not(.size-full) {\n margin-left: 11.25rem;\n }\n\n .container {\n display: flex;\n min-height: var(--brz-spacing-9);\n }\n\n .value {\n align-items: center;\n display: flex;\n }\n\n :host([label-position='side']) .value.multiline {\n margin: var(--brz-spacing-2) 0;\n }\n\n .value ::slotted(*) {\n flex-basis: 100%;\n max-width: 100%;\n }\n\n .value ::slotted(dd) {\n margin: 0;\n }\n\n :host([label-position='side']) .value {\n min-height: var(--brz-spacing-9);\n }\n\n :host([label-position='side']) .value.size-auto {\n flex-grow: 1;\n }\n`"
32009
32044
  },
32010
32045
  {
32011
32046
  "kind": "variable",