@genesislcap/foundation-zero 14.252.0 → 14.252.1-alpha-ea46342.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.
@@ -12,7 +12,7 @@
12
12
  "type": {
13
13
  "text": "object"
14
14
  },
15
- "default": "{\n zeroAccordion,\n zeroAccordionItem,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNotificationListener,\n zeroNumberField,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroSystemHealthOverlay,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
15
+ "default": "{\n zeroAccordion,\n zeroAccordionItem,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDraggableModal,\n zeroDropdownMenu,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNotificationListener,\n zeroNumberField,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroSystemHealthOverlay,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
16
16
  }
17
17
  ],
18
18
  "exports": [
@@ -252,6 +252,14 @@
252
252
  "package": "./divider"
253
253
  }
254
254
  },
255
+ {
256
+ "kind": "js",
257
+ "name": "*",
258
+ "declaration": {
259
+ "name": "*",
260
+ "package": "./draggable-modal"
261
+ }
262
+ },
255
263
  {
256
264
  "kind": "js",
257
265
  "name": "*",
@@ -11917,6 +11925,643 @@
11917
11925
  }
11918
11926
  ]
11919
11927
  },
11928
+ {
11929
+ "kind": "javascript-module",
11930
+ "path": "src/draggable-modal/draggable-modal.styles.ts",
11931
+ "declarations": [
11932
+ {
11933
+ "kind": "variable",
11934
+ "name": "zeroDraggableModalStyles",
11935
+ "default": "css`\n ${zeroModalStyles}\n\n dialog .top {\n cursor: move;\n }\n`"
11936
+ }
11937
+ ],
11938
+ "exports": [
11939
+ {
11940
+ "kind": "js",
11941
+ "name": "zeroDraggableModalStyles",
11942
+ "declaration": {
11943
+ "name": "zeroDraggableModalStyles",
11944
+ "module": "src/draggable-modal/draggable-modal.styles.ts"
11945
+ }
11946
+ }
11947
+ ]
11948
+ },
11949
+ {
11950
+ "kind": "javascript-module",
11951
+ "path": "src/draggable-modal/draggable-modal.ts",
11952
+ "declarations": [
11953
+ {
11954
+ "kind": "variable",
11955
+ "name": "defaultDraggableModalConfig",
11956
+ "default": "foundationConfig"
11957
+ },
11958
+ {
11959
+ "kind": "variable",
11960
+ "name": "zeroDraggableModalTemplate",
11961
+ "default": "foundationDraggableModalTemplate"
11962
+ },
11963
+ {
11964
+ "kind": "variable",
11965
+ "name": "zeroDraggableModalShadowOptions",
11966
+ "default": "foundationDraggableModalShadowOptions"
11967
+ },
11968
+ {
11969
+ "kind": "class",
11970
+ "description": "",
11971
+ "name": "DraggableModal",
11972
+ "superclass": {
11973
+ "name": "FoundationDraggableModal",
11974
+ "package": "@genesislcap/foundation-ui"
11975
+ },
11976
+ "tagName": "%%prefix%%-draggable-modal",
11977
+ "customElement": true,
11978
+ "attributes": [
11979
+ {
11980
+ "name": "type",
11981
+ "type": {
11982
+ "text": "DialogType"
11983
+ },
11984
+ "default": "'default'",
11985
+ "fieldName": "type",
11986
+ "inheritedFrom": {
11987
+ "name": "DialogElement",
11988
+ "module": "src/dialog/dialog.ts"
11989
+ }
11990
+ },
11991
+ {
11992
+ "name": "position",
11993
+ "type": {
11994
+ "text": "DialogPosition"
11995
+ },
11996
+ "default": "'center'",
11997
+ "fieldName": "position",
11998
+ "inheritedFrom": {
11999
+ "name": "DialogElement",
12000
+ "module": "src/dialog/dialog.ts"
12001
+ }
12002
+ },
12003
+ {
12004
+ "name": "show-close-icon",
12005
+ "type": {
12006
+ "text": "boolean"
12007
+ },
12008
+ "default": "true",
12009
+ "description": "Whether or not to show the close icon",
12010
+ "fieldName": "showCloseIcon",
12011
+ "inheritedFrom": {
12012
+ "name": "DialogElement",
12013
+ "module": "src/dialog/dialog.ts"
12014
+ }
12015
+ }
12016
+ ],
12017
+ "members": [
12018
+ {
12019
+ "kind": "field",
12020
+ "name": "isDragging",
12021
+ "type": {
12022
+ "text": "boolean"
12023
+ },
12024
+ "privacy": "public",
12025
+ "default": "false",
12026
+ "inheritedFrom": {
12027
+ "name": "DraggableModal",
12028
+ "module": "src/draggable-modal/draggable-modal.ts"
12029
+ }
12030
+ },
12031
+ {
12032
+ "kind": "field",
12033
+ "name": "offsetX",
12034
+ "type": {
12035
+ "text": "number"
12036
+ },
12037
+ "privacy": "public",
12038
+ "default": "0",
12039
+ "inheritedFrom": {
12040
+ "name": "DraggableModal",
12041
+ "module": "src/draggable-modal/draggable-modal.ts"
12042
+ }
12043
+ },
12044
+ {
12045
+ "kind": "field",
12046
+ "name": "offsetY",
12047
+ "type": {
12048
+ "text": "number"
12049
+ },
12050
+ "privacy": "public",
12051
+ "default": "0",
12052
+ "inheritedFrom": {
12053
+ "name": "DraggableModal",
12054
+ "module": "src/draggable-modal/draggable-modal.ts"
12055
+ }
12056
+ },
12057
+ {
12058
+ "kind": "field",
12059
+ "name": "shadowHost",
12060
+ "type": {
12061
+ "text": "HTMLElement | null"
12062
+ },
12063
+ "privacy": "public",
12064
+ "default": "null",
12065
+ "inheritedFrom": {
12066
+ "name": "DraggableModal",
12067
+ "module": "src/draggable-modal/draggable-modal.ts"
12068
+ }
12069
+ },
12070
+ {
12071
+ "kind": "field",
12072
+ "name": "draggableTarget",
12073
+ "type": {
12074
+ "text": "HTMLElement | null"
12075
+ },
12076
+ "privacy": "public",
12077
+ "default": "null",
12078
+ "inheritedFrom": {
12079
+ "name": "DraggableModal",
12080
+ "module": "src/draggable-modal/draggable-modal.ts"
12081
+ }
12082
+ },
12083
+ {
12084
+ "kind": "field",
12085
+ "name": "onMouseMoveBound",
12086
+ "type": {
12087
+ "text": "(event: MouseEvent) => void"
12088
+ },
12089
+ "privacy": "private",
12090
+ "inheritedFrom": {
12091
+ "name": "DraggableModal",
12092
+ "module": "src/draggable-modal/draggable-modal.ts"
12093
+ }
12094
+ },
12095
+ {
12096
+ "kind": "field",
12097
+ "name": "onMouseUpBound",
12098
+ "type": {
12099
+ "text": "() => void"
12100
+ },
12101
+ "privacy": "private",
12102
+ "inheritedFrom": {
12103
+ "name": "DraggableModal",
12104
+ "module": "src/draggable-modal/draggable-modal.ts"
12105
+ }
12106
+ },
12107
+ {
12108
+ "kind": "field",
12109
+ "name": "onCloseCallback",
12110
+ "type": {
12111
+ "text": "() => void"
12112
+ },
12113
+ "description": "Callback to run *after* HTMLDialogElement is closed",
12114
+ "inheritedFrom": {
12115
+ "name": "DialogElement",
12116
+ "module": "src/dialog/dialog.ts"
12117
+ },
12118
+ "privacy": "public"
12119
+ },
12120
+ {
12121
+ "kind": "method",
12122
+ "name": "makeDraggable",
12123
+ "privacy": "private",
12124
+ "inheritedFrom": {
12125
+ "name": "DraggableModal",
12126
+ "module": "src/draggable-modal/draggable-modal.ts"
12127
+ }
12128
+ },
12129
+ {
12130
+ "kind": "method",
12131
+ "name": "isEventTargetInDraggableTarget",
12132
+ "privacy": "private",
12133
+ "return": {
12134
+ "type": {
12135
+ "text": "boolean"
12136
+ }
12137
+ },
12138
+ "parameters": [
12139
+ {
12140
+ "name": "event",
12141
+ "type": {
12142
+ "text": "MouseEvent"
12143
+ }
12144
+ }
12145
+ ],
12146
+ "inheritedFrom": {
12147
+ "name": "DraggableModal",
12148
+ "module": "src/draggable-modal/draggable-modal.ts"
12149
+ }
12150
+ },
12151
+ {
12152
+ "kind": "method",
12153
+ "name": "isInsideSlot",
12154
+ "privacy": "private",
12155
+ "return": {
12156
+ "type": {
12157
+ "text": "boolean"
12158
+ }
12159
+ },
12160
+ "parameters": [
12161
+ {
12162
+ "name": "target",
12163
+ "type": {
12164
+ "text": "Node"
12165
+ }
12166
+ }
12167
+ ],
12168
+ "inheritedFrom": {
12169
+ "name": "DraggableModal",
12170
+ "module": "src/draggable-modal/draggable-modal.ts"
12171
+ }
12172
+ },
12173
+ {
12174
+ "kind": "method",
12175
+ "name": "onMouseDown",
12176
+ "privacy": "private",
12177
+ "parameters": [
12178
+ {
12179
+ "name": "event",
12180
+ "type": {
12181
+ "text": "MouseEvent"
12182
+ }
12183
+ }
12184
+ ],
12185
+ "inheritedFrom": {
12186
+ "name": "DraggableModal",
12187
+ "module": "src/draggable-modal/draggable-modal.ts"
12188
+ }
12189
+ },
12190
+ {
12191
+ "kind": "method",
12192
+ "name": "onMouseMove",
12193
+ "privacy": "private",
12194
+ "parameters": [
12195
+ {
12196
+ "name": "event",
12197
+ "type": {
12198
+ "text": "MouseEvent"
12199
+ }
12200
+ }
12201
+ ],
12202
+ "inheritedFrom": {
12203
+ "name": "DraggableModal",
12204
+ "module": "src/draggable-modal/draggable-modal.ts"
12205
+ }
12206
+ },
12207
+ {
12208
+ "kind": "method",
12209
+ "name": "onMouseUp",
12210
+ "privacy": "private",
12211
+ "inheritedFrom": {
12212
+ "name": "DraggableModal",
12213
+ "module": "src/draggable-modal/draggable-modal.ts"
12214
+ }
12215
+ },
12216
+ {
12217
+ "kind": "method",
12218
+ "name": "removeEventListeners",
12219
+ "privacy": "private",
12220
+ "inheritedFrom": {
12221
+ "name": "DraggableModal",
12222
+ "module": "src/draggable-modal/draggable-modal.ts"
12223
+ }
12224
+ },
12225
+ {
12226
+ "kind": "method",
12227
+ "name": "show",
12228
+ "return": {
12229
+ "type": {
12230
+ "text": "void"
12231
+ }
12232
+ },
12233
+ "description": "Show the HTMLDialogElement and its contents",
12234
+ "inheritedFrom": {
12235
+ "name": "DialogElement",
12236
+ "module": "src/dialog/dialog.ts"
12237
+ }
12238
+ },
12239
+ {
12240
+ "kind": "field",
12241
+ "name": "mainElement",
12242
+ "type": {
12243
+ "text": "HTMLDialogElement"
12244
+ },
12245
+ "description": "A reference to the dialog element\nin the component Shadow DOM.",
12246
+ "inheritedFrom": {
12247
+ "name": "DialogElement",
12248
+ "module": "src/dialog/dialog.ts"
12249
+ }
12250
+ },
12251
+ {
12252
+ "kind": "field",
12253
+ "name": "notification",
12254
+ "type": {
12255
+ "text": "NotificationStructure"
12256
+ },
12257
+ "inheritedFrom": {
12258
+ "name": "DialogElement",
12259
+ "module": "src/dialog/dialog.ts"
12260
+ }
12261
+ },
12262
+ {
12263
+ "kind": "method",
12264
+ "name": "notificationChanged",
12265
+ "inheritedFrom": {
12266
+ "name": "DialogElement",
12267
+ "module": "src/dialog/dialog.ts"
12268
+ }
12269
+ },
12270
+ {
12271
+ "kind": "field",
12272
+ "name": "type",
12273
+ "type": {
12274
+ "text": "DialogType"
12275
+ },
12276
+ "default": "'default'",
12277
+ "inheritedFrom": {
12278
+ "name": "DialogElement",
12279
+ "module": "src/dialog/dialog.ts"
12280
+ }
12281
+ },
12282
+ {
12283
+ "kind": "field",
12284
+ "name": "position",
12285
+ "type": {
12286
+ "text": "DialogPosition"
12287
+ },
12288
+ "default": "'center'",
12289
+ "inheritedFrom": {
12290
+ "name": "DialogElement",
12291
+ "module": "src/dialog/dialog.ts"
12292
+ }
12293
+ },
12294
+ {
12295
+ "kind": "field",
12296
+ "name": "showCloseIcon",
12297
+ "type": {
12298
+ "text": "boolean"
12299
+ },
12300
+ "default": "true",
12301
+ "description": "Whether or not to show the close icon",
12302
+ "inheritedFrom": {
12303
+ "name": "DialogElement",
12304
+ "module": "src/dialog/dialog.ts"
12305
+ }
12306
+ },
12307
+ {
12308
+ "kind": "field",
12309
+ "name": "onShowCallback",
12310
+ "type": {
12311
+ "text": "() => void"
12312
+ },
12313
+ "description": "Callback to run *before* HTMLDialogElement is shown",
12314
+ "inheritedFrom": {
12315
+ "name": "DialogElement",
12316
+ "module": "src/dialog/dialog.ts"
12317
+ }
12318
+ },
12319
+ {
12320
+ "kind": "field",
12321
+ "name": "open",
12322
+ "type": {
12323
+ "text": "boolean"
12324
+ },
12325
+ "description": "Determine if the dialog is showing or closed.",
12326
+ "readonly": true,
12327
+ "inheritedFrom": {
12328
+ "name": "DialogElement",
12329
+ "module": "src/dialog/dialog.ts"
12330
+ }
12331
+ },
12332
+ {
12333
+ "kind": "method",
12334
+ "name": "close",
12335
+ "return": {
12336
+ "type": {
12337
+ "text": "void"
12338
+ }
12339
+ },
12340
+ "description": "Remove the HTMLDialogElement from display",
12341
+ "inheritedFrom": {
12342
+ "name": "DialogElement",
12343
+ "module": "src/dialog/dialog.ts"
12344
+ }
12345
+ },
12346
+ {
12347
+ "kind": "method",
12348
+ "name": "dismiss",
12349
+ "privacy": "public",
12350
+ "description": "Dismiss the Dialog from display and calls the dismissing action.",
12351
+ "inheritedFrom": {
12352
+ "name": "DialogElement",
12353
+ "module": "src/dialog/dialog.ts"
12354
+ }
12355
+ },
12356
+ {
12357
+ "kind": "method",
12358
+ "name": "closeDialog",
12359
+ "privacy": "public",
12360
+ "return": {
12361
+ "type": {
12362
+ "text": "void"
12363
+ }
12364
+ },
12365
+ "description": "Dismiss the Dialog from display.",
12366
+ "inheritedFrom": {
12367
+ "name": "DialogElement",
12368
+ "module": "src/dialog/dialog.ts"
12369
+ }
12370
+ },
12371
+ {
12372
+ "kind": "field",
12373
+ "name": "_presentation",
12374
+ "type": {
12375
+ "text": "ComponentPresentation | null | undefined"
12376
+ },
12377
+ "privacy": "private",
12378
+ "default": "void 0",
12379
+ "inheritedFrom": {
12380
+ "name": "FoundationElement",
12381
+ "module": "src/foundation-element/foundation-element.ts"
12382
+ }
12383
+ },
12384
+ {
12385
+ "kind": "field",
12386
+ "name": "$presentation",
12387
+ "type": {
12388
+ "text": "ComponentPresentation | null"
12389
+ },
12390
+ "privacy": "public",
12391
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
12392
+ "inheritedFrom": {
12393
+ "name": "FoundationElement",
12394
+ "module": "src/foundation-element/foundation-element.ts"
12395
+ }
12396
+ },
12397
+ {
12398
+ "kind": "field",
12399
+ "name": "template",
12400
+ "type": {
12401
+ "text": "ElementViewTemplate | void | null"
12402
+ },
12403
+ "privacy": "public",
12404
+ "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.",
12405
+ "inheritedFrom": {
12406
+ "name": "FoundationElement",
12407
+ "module": "src/foundation-element/foundation-element.ts"
12408
+ }
12409
+ },
12410
+ {
12411
+ "kind": "method",
12412
+ "name": "templateChanged",
12413
+ "privacy": "protected",
12414
+ "return": {
12415
+ "type": {
12416
+ "text": "void"
12417
+ }
12418
+ },
12419
+ "inheritedFrom": {
12420
+ "name": "FoundationElement",
12421
+ "module": "src/foundation-element/foundation-element.ts"
12422
+ }
12423
+ },
12424
+ {
12425
+ "kind": "field",
12426
+ "name": "styles",
12427
+ "type": {
12428
+ "text": "ElementStyles | void | null"
12429
+ },
12430
+ "privacy": "public",
12431
+ "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.",
12432
+ "inheritedFrom": {
12433
+ "name": "FoundationElement",
12434
+ "module": "src/foundation-element/foundation-element.ts"
12435
+ }
12436
+ },
12437
+ {
12438
+ "kind": "method",
12439
+ "name": "stylesChanged",
12440
+ "privacy": "protected",
12441
+ "return": {
12442
+ "type": {
12443
+ "text": "void"
12444
+ }
12445
+ },
12446
+ "inheritedFrom": {
12447
+ "name": "FoundationElement",
12448
+ "module": "src/foundation-element/foundation-element.ts"
12449
+ }
12450
+ },
12451
+ {
12452
+ "kind": "method",
12453
+ "name": "compose",
12454
+ "privacy": "public",
12455
+ "static": true,
12456
+ "return": {
12457
+ "type": {
12458
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
12459
+ }
12460
+ },
12461
+ "parameters": [
12462
+ {
12463
+ "name": "this",
12464
+ "type": {
12465
+ "text": "K"
12466
+ }
12467
+ },
12468
+ {
12469
+ "name": "elementDefinition",
12470
+ "type": {
12471
+ "text": "T"
12472
+ },
12473
+ "description": "The definition of the element to create the registry\nfunction for."
12474
+ }
12475
+ ],
12476
+ "description": "Defines an element registry function with a set of element definition defaults.",
12477
+ "inheritedFrom": {
12478
+ "name": "FoundationElement",
12479
+ "module": "src/foundation-element/foundation-element.ts"
12480
+ }
12481
+ }
12482
+ ]
12483
+ },
12484
+ {
12485
+ "kind": "variable",
12486
+ "name": "zeroDraggableModal",
12487
+ "description": "The Zero Draggable Modal",
12488
+ "privacy": "public"
12489
+ }
12490
+ ],
12491
+ "exports": [
12492
+ {
12493
+ "kind": "js",
12494
+ "name": "defaultDraggableModalConfig",
12495
+ "declaration": {
12496
+ "name": "defaultDraggableModalConfig",
12497
+ "module": "src/draggable-modal/draggable-modal.ts"
12498
+ }
12499
+ },
12500
+ {
12501
+ "kind": "js",
12502
+ "name": "zeroDraggableModalTemplate",
12503
+ "declaration": {
12504
+ "name": "zeroDraggableModalTemplate",
12505
+ "module": "src/draggable-modal/draggable-modal.ts"
12506
+ }
12507
+ },
12508
+ {
12509
+ "kind": "js",
12510
+ "name": "zeroDraggableModalShadowOptions",
12511
+ "declaration": {
12512
+ "name": "zeroDraggableModalShadowOptions",
12513
+ "module": "src/draggable-modal/draggable-modal.ts"
12514
+ }
12515
+ },
12516
+ {
12517
+ "kind": "js",
12518
+ "name": "DraggableModal",
12519
+ "declaration": {
12520
+ "name": "DraggableModal",
12521
+ "module": "src/draggable-modal/draggable-modal.ts"
12522
+ }
12523
+ },
12524
+ {
12525
+ "kind": "js",
12526
+ "name": "zeroDraggableModal",
12527
+ "declaration": {
12528
+ "name": "zeroDraggableModal",
12529
+ "module": "src/draggable-modal/draggable-modal.ts"
12530
+ }
12531
+ }
12532
+ ]
12533
+ },
12534
+ {
12535
+ "kind": "javascript-module",
12536
+ "path": "src/draggable-modal/index.ts",
12537
+ "declarations": [],
12538
+ "exports": [
12539
+ {
12540
+ "kind": "js",
12541
+ "name": "zeroDraggableModalTemplate",
12542
+ "declaration": {
12543
+ "name": "foundationDraggableModalTemplate",
12544
+ "package": "@genesislcap/foundation-ui"
12545
+ }
12546
+ },
12547
+ {
12548
+ "kind": "js",
12549
+ "name": "*",
12550
+ "declaration": {
12551
+ "name": "*",
12552
+ "package": "./draggable-modal"
12553
+ }
12554
+ },
12555
+ {
12556
+ "kind": "js",
12557
+ "name": "*",
12558
+ "declaration": {
12559
+ "name": "*",
12560
+ "package": "./draggable-modal.styles"
12561
+ }
12562
+ }
12563
+ ]
12564
+ },
11920
12565
  {
11921
12566
  "kind": "javascript-module",
11922
12567
  "path": "src/dropdown-menu/dropdown-menu.styles.ts",
@@ -71,6 +71,17 @@ export declare const baseComponents: {
71
71
  }, typeof import("./dialog").Dialog>;
72
72
  zeroDisclosure: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./disclosure").Disclosure>;
73
73
  zeroDivider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./divider").Divider>;
74
+ zeroDraggableModal: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
75
+ baseName: string;
76
+ shadowOptions: ShadowRootInit;
77
+ styles: import("@microsoft/fast-element").ElementStyles;
78
+ template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/foundation-ui").DraggableModal, any>;
79
+ }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
80
+ baseName: string;
81
+ shadowOptions: ShadowRootInit;
82
+ styles: import("@microsoft/fast-element").ElementStyles;
83
+ template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/foundation-ui").DraggableModal, any>;
84
+ }, typeof import("./draggable-modal").DraggableModal>;
74
85
  zeroDropdownMenu: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./dropdown-menu").DropdownMenu>;
75
86
  zeroErrorBanner: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
76
87
  baseName: string;
@@ -1 +1 @@
1
- {"version":3,"file":"base-components.d.ts","sourceRoot":"","sources":["../../src/base-components.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AA4E5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBA4EJ,SAAS,WAAW,GAAG,EAAE;CAe/C,CAAC"}
1
+ {"version":3,"file":"base-components.d.ts","sourceRoot":"","sources":["../../src/base-components.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AA6E5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBA6EJ,SAAS,WAAW,GAAG,EAAE;CAe/C,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { DraggableModal as FoundationDraggableModal } from '@genesislcap/foundation-ui';
2
+ export declare const defaultDraggableModalConfig: {};
3
+ export declare const zeroDraggableModalTemplate: import("@microsoft/fast-element").ViewTemplate<FoundationDraggableModal, any>;
4
+ export declare const zeroDraggableModalShadowOptions: ShadowRootInit;
5
+ /**
6
+ * @tagname %%prefix%%-draggable-modal
7
+ */
8
+ export declare class DraggableModal extends FoundationDraggableModal {
9
+ }
10
+ /**
11
+ * The Zero Draggable Modal
12
+ *
13
+ * @public
14
+ * @remarks
15
+ * HTML Element: \<zero-draggable-modal\>
16
+ */
17
+ export declare const zeroDraggableModal: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
18
+ baseName: string;
19
+ shadowOptions: ShadowRootInit;
20
+ styles: import("@microsoft/fast-element").ElementStyles;
21
+ template: import("@microsoft/fast-element").ViewTemplate<FoundationDraggableModal, any>;
22
+ }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
23
+ baseName: string;
24
+ shadowOptions: ShadowRootInit;
25
+ styles: import("@microsoft/fast-element").ElementStyles;
26
+ template: import("@microsoft/fast-element").ViewTemplate<FoundationDraggableModal, any>;
27
+ }, typeof DraggableModal>;
28
+ //# sourceMappingURL=draggable-modal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draggable-modal.d.ts","sourceRoot":"","sources":["../../../src/draggable-modal/draggable-modal.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,IAAI,wBAAwB,EAG3C,MAAM,4BAA4B,CAAC;AAGpC,eAAO,MAAM,2BAA2B,IAAmB,CAAC;AAE5D,eAAO,MAAM,0BAA0B,+EAAmC,CAAC;AAE3E,eAAO,MAAM,+BAA+B,gBAAwC,CAAC;AAErF;;GAEG;AACH,qBAAa,cAAe,SAAQ,wBAAwB;CAAG;AAE/D;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;yBAM7B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const zeroDraggableModalStyles: import("@microsoft/fast-element").ElementStyles;
2
+ //# sourceMappingURL=draggable-modal.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draggable-modal.styles.d.ts","sourceRoot":"","sources":["../../../src/draggable-modal/draggable-modal.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,wBAAwB,iDAMpC,CAAC"}
@@ -0,0 +1,4 @@
1
+ export { foundationDraggableModalTemplate as zeroDraggableModalTemplate } from '@genesislcap/foundation-ui';
2
+ export * from './draggable-modal';
3
+ export * from './draggable-modal.styles';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/draggable-modal/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,IAAI,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AAC5G,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC"}
@@ -26,6 +26,7 @@ export * from './design-system-provider';
26
26
  export * from './dialog';
27
27
  export * from './disclosure';
28
28
  export * from './divider';
29
+ export * from './draggable-modal';
29
30
  export * from './dropdown-menu';
30
31
  export * from './error-banner';
31
32
  export * from './error-boundary';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,CAAC;AAE/C,eAAO,MAAM,wBAAwB,yDAAuD,CAAC;AAE7F,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,CAAC;AAE/C,eAAO,MAAM,wBAAwB,yDAAuD,CAAC;AAE7F,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
@@ -22,6 +22,7 @@ import { zeroDesignSystemProvider } from './design-system-provider';
22
22
  import { zeroDialog } from './dialog';
23
23
  import { zeroDisclosure } from './disclosure';
24
24
  import { zeroDivider } from './divider';
25
+ import { zeroDraggableModal } from './draggable-modal';
25
26
  import { zeroDropdownMenu } from './dropdown-menu';
26
27
  import { zeroErrorBanner } from './error-banner';
27
28
  import { zeroErrorBoundary } from './error-boundary';
@@ -97,6 +98,7 @@ export const baseComponents = {
97
98
  zeroDialog,
98
99
  zeroDisclosure,
99
100
  zeroDivider,
101
+ zeroDraggableModal,
100
102
  zeroDropdownMenu,
101
103
  zeroErrorBanner,
102
104
  zeroErrorBoundary,
@@ -0,0 +1,18 @@
1
+ import { defaultDraggableModalConfig as foundationConfig, DraggableModal as FoundationDraggableModal, foundationDraggableModalShadowOptions, foundationDraggableModalTemplate, } from '@genesislcap/foundation-ui';
2
+ import { zeroDraggableModalStyles } from './draggable-modal.styles';
3
+ export const defaultDraggableModalConfig = foundationConfig;
4
+ export const zeroDraggableModalTemplate = foundationDraggableModalTemplate;
5
+ export const zeroDraggableModalShadowOptions = foundationDraggableModalShadowOptions;
6
+ /**
7
+ * @tagname %%prefix%%-draggable-modal
8
+ */
9
+ export class DraggableModal extends FoundationDraggableModal {
10
+ }
11
+ /**
12
+ * The Zero Draggable Modal
13
+ *
14
+ * @public
15
+ * @remarks
16
+ * HTML Element: \<zero-draggable-modal\>
17
+ */
18
+ export const zeroDraggableModal = DraggableModal.compose(Object.assign({ baseName: 'draggable-modal', shadowOptions: zeroDraggableModalShadowOptions, styles: zeroDraggableModalStyles, template: zeroDraggableModalTemplate }, defaultDraggableModalConfig));
@@ -0,0 +1,9 @@
1
+ import { css } from '@microsoft/fast-element';
2
+ import { zeroModalStyles } from '../modal/modal.styles';
3
+ export const zeroDraggableModalStyles = css `
4
+ ${zeroModalStyles}
5
+
6
+ dialog .top {
7
+ cursor: move;
8
+ }
9
+ `;
@@ -0,0 +1,3 @@
1
+ export { foundationDraggableModalTemplate as zeroDraggableModalTemplate } from '@genesislcap/foundation-ui';
2
+ export * from './draggable-modal';
3
+ export * from './draggable-modal.styles';
package/dist/esm/index.js CHANGED
@@ -26,6 +26,7 @@ export * from './design-system-provider';
26
26
  export * from './dialog';
27
27
  export * from './disclosure';
28
28
  export * from './divider';
29
+ export * from './draggable-modal';
29
30
  export * from './dropdown-menu';
30
31
  export * from './error-banner';
31
32
  export * from './error-boundary';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero",
3
3
  "description": "Genesis Foundation Zero Design System",
4
- "version": "14.252.0",
4
+ "version": "14.252.1-alpha-ea46342.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -71,19 +71,19 @@
71
71
  },
72
72
  "devDependencies": {
73
73
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
74
- "@genesislcap/genx": "14.252.0",
75
- "@genesislcap/rollup-builder": "14.252.0",
76
- "@genesislcap/ts-builder": "14.252.0",
77
- "@genesislcap/uvu-playwright-builder": "14.252.0",
78
- "@genesislcap/vite-builder": "14.252.0",
79
- "@genesislcap/webpack-builder": "14.252.0",
74
+ "@genesislcap/genx": "14.252.1-alpha-ea46342.0",
75
+ "@genesislcap/rollup-builder": "14.252.1-alpha-ea46342.0",
76
+ "@genesislcap/ts-builder": "14.252.1-alpha-ea46342.0",
77
+ "@genesislcap/uvu-playwright-builder": "14.252.1-alpha-ea46342.0",
78
+ "@genesislcap/vite-builder": "14.252.1-alpha-ea46342.0",
79
+ "@genesislcap/webpack-builder": "14.252.1-alpha-ea46342.0",
80
80
  "rimraf": "^5.0.0"
81
81
  },
82
82
  "dependencies": {
83
- "@genesislcap/foundation-comms": "14.252.0",
84
- "@genesislcap/foundation-logger": "14.252.0",
85
- "@genesislcap/foundation-ui": "14.252.0",
86
- "@genesislcap/foundation-utils": "14.252.0",
83
+ "@genesislcap/foundation-comms": "14.252.1-alpha-ea46342.0",
84
+ "@genesislcap/foundation-logger": "14.252.1-alpha-ea46342.0",
85
+ "@genesislcap/foundation-ui": "14.252.1-alpha-ea46342.0",
86
+ "@genesislcap/foundation-utils": "14.252.1-alpha-ea46342.0",
87
87
  "@microsoft/fast-colors": "5.3.1",
88
88
  "@microsoft/fast-components": "2.30.6",
89
89
  "@microsoft/fast-element": "1.14.0",
@@ -100,5 +100,5 @@
100
100
  "access": "public"
101
101
  },
102
102
  "customElements": "dist/custom-elements.json",
103
- "gitHead": "892ad62fbba0bcd170dc61bc12c08064775257f3"
103
+ "gitHead": "485b2409a4e213714ababadb49b8b87d3052c6cf"
104
104
  }