@genesislcap/rapid-design-system 14.272.0 → 14.274.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.
- package/dist/custom-elements.json +796 -94
- package/dist/dts/base-components.d.ts +22 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +2 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/scheduler/index.d.ts +4 -0
- package/dist/dts/scheduler/index.d.ts.map +1 -0
- package/dist/dts/scheduler/scheduler.d.ts +18 -0
- package/dist/dts/scheduler/scheduler.d.ts.map +1 -0
- package/dist/dts/scheduler/scheduler.styles.d.ts +3 -0
- package/dist/dts/scheduler/scheduler.styles.d.ts.map +1 -0
- package/dist/dts/scheduler/scheduler.template.d.ts +3 -0
- package/dist/dts/scheduler/scheduler.template.d.ts.map +1 -0
- package/dist/dts/scheduler-timezone/index.d.ts +4 -0
- package/dist/dts/scheduler-timezone/index.d.ts.map +1 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.d.ts +18 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.d.ts.map +1 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.styles.d.ts +3 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.styles.d.ts.map +1 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.template.d.ts +3 -0
- package/dist/dts/scheduler-timezone/scheduler-timezone.template.d.ts.map +1 -0
- package/dist/esm/base-components.js +4 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/scheduler/index.js +3 -0
- package/dist/esm/scheduler/scheduler.js +10 -0
- package/dist/esm/scheduler/scheduler.styles.js +9 -0
- package/dist/esm/scheduler/scheduler.template.js +5 -0
- package/dist/esm/scheduler-timezone/index.js +3 -0
- package/dist/esm/scheduler-timezone/scheduler-timezone.js +10 -0
- package/dist/esm/scheduler-timezone/scheduler-timezone.styles.js +9 -0
- package/dist/esm/scheduler-timezone/scheduler-timezone.template.js +5 -0
- package/package.json +11 -11
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n designSystemProvider,\n rapidAccordion,\n rapidAccordionItem,\n rapidActionsMenu,\n rapidAnchor,\n rapidAnchoredRegion,\n rapidAvatar,\n rapidBadge,\n rapidBanner,\n rapidBreadcrumb,\n rapidBreadcrumbItem,\n rapidButton,\n rapidCalendar,\n rapidCard,\n rapidCategorizedMultiselect,\n rapidCheckbox,\n rapidCombobox,\n rapidConnectionIndicator,\n rapidDataGrid,\n rapidDataGridCell,\n rapidDataGridRow,\n rapidDatePicker,\n rapidDialog,\n rapidDisclosure,\n rapidDivider,\n rapidDropdownMenu,\n rapidErrorBoundary,\n rapidFileUpload,\n rapidFilter,\n rapidFilterBar,\n rapidFlexLayout,\n rapidFlipper,\n rapidFlyout,\n rapidGridLayout,\n rapidGridLayoutItem,\n rapidHorizontalScroll,\n rapidIcon,\n rapidListbox,\n rapidListboxOption,\n rapidMenu,\n rapidMenuItem,\n rapidModal,\n rapidMultiselect,\n rapidNotificationListener,\n rapidNumberField,\n rapidProgress,\n rapidProgressRing,\n rapidRadio,\n rapidRadioGroup,\n rapidSchedulerCronBuilder,\n rapidSearchBar,\n rapidSearchBarCombobox,\n rapidSegmentedControl,\n rapidSegmentedItem,\n rapidSelect,\n rapidSkeleton,\n rapidSlider,\n rapidSliderLabel,\n rapidSnackbar,\n rapidStackingIcons,\n rapidStepper,\n rapidStepperTab,\n rapidStepperTabPanel,\n rapidSwitch,\n rapidSystemHealthOverlay,\n rapidTab,\n rapidTabPanel,\n rapidTabs,\n rapidTextArea,\n rapidTextField,\n rapidToast,\n rapidToolbar,\n rapidTooltip,\n rapidTreeItem,\n rapidTreeView,\n rapidUrlInput,\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 designSystemProvider,\n rapidAccordion,\n rapidAccordionItem,\n rapidActionsMenu,\n rapidAnchor,\n rapidAnchoredRegion,\n rapidAvatar,\n rapidBadge,\n rapidBanner,\n rapidBreadcrumb,\n rapidBreadcrumbItem,\n rapidButton,\n rapidCalendar,\n rapidCard,\n rapidCategorizedMultiselect,\n rapidCheckbox,\n rapidCombobox,\n rapidConnectionIndicator,\n rapidDataGrid,\n rapidDataGridCell,\n rapidDataGridRow,\n rapidDatePicker,\n rapidDialog,\n rapidDisclosure,\n rapidDivider,\n rapidDropdownMenu,\n rapidErrorBoundary,\n rapidFileUpload,\n rapidFilter,\n rapidFilterBar,\n rapidFlexLayout,\n rapidFlipper,\n rapidFlyout,\n rapidGridLayout,\n rapidGridLayoutItem,\n rapidHorizontalScroll,\n rapidIcon,\n rapidListbox,\n rapidListboxOption,\n rapidMenu,\n rapidMenuItem,\n rapidModal,\n rapidMultiselect,\n rapidNotificationListener,\n rapidNumberField,\n rapidProgress,\n rapidProgressRing,\n rapidRadio,\n rapidRadioGroup,\n rapidScheduler,\n rapidSchedulerCronBuilder,\n rapidSchedulerTimezone,\n rapidSearchBar,\n rapidSearchBarCombobox,\n rapidSegmentedControl,\n rapidSegmentedItem,\n rapidSelect,\n rapidSkeleton,\n rapidSlider,\n rapidSliderLabel,\n rapidSnackbar,\n rapidStackingIcons,\n rapidStepper,\n rapidStepperTab,\n rapidStepperTabPanel,\n rapidSwitch,\n rapidSystemHealthOverlay,\n rapidTab,\n rapidTabPanel,\n rapidTabs,\n rapidTextArea,\n rapidTextField,\n rapidToast,\n rapidToolbar,\n rapidTooltip,\n rapidTreeItem,\n rapidTreeView,\n rapidUrlInput,\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": [
|
|
@@ -468,6 +468,14 @@
|
|
|
468
468
|
"package": "./radio-group"
|
|
469
469
|
}
|
|
470
470
|
},
|
|
471
|
+
{
|
|
472
|
+
"kind": "js",
|
|
473
|
+
"name": "*",
|
|
474
|
+
"declaration": {
|
|
475
|
+
"name": "*",
|
|
476
|
+
"package": "./scheduler"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
471
479
|
{
|
|
472
480
|
"kind": "js",
|
|
473
481
|
"name": "*",
|
|
@@ -476,6 +484,14 @@
|
|
|
476
484
|
"package": "./scheduler-cron-builder"
|
|
477
485
|
}
|
|
478
486
|
},
|
|
487
|
+
{
|
|
488
|
+
"kind": "js",
|
|
489
|
+
"name": "*",
|
|
490
|
+
"declaration": {
|
|
491
|
+
"name": "*",
|
|
492
|
+
"package": "./scheduler-timezone"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
479
495
|
{
|
|
480
496
|
"kind": "js",
|
|
481
497
|
"name": "*",
|
|
@@ -18068,6 +18084,30 @@
|
|
|
18068
18084
|
"module": "src/multiselect/multiselect.ts"
|
|
18069
18085
|
}
|
|
18070
18086
|
},
|
|
18087
|
+
{
|
|
18088
|
+
"name": "delimiterValues",
|
|
18089
|
+
"type": {
|
|
18090
|
+
"text": "string"
|
|
18091
|
+
},
|
|
18092
|
+
"default": "';'",
|
|
18093
|
+
"fieldName": "delimiterValues",
|
|
18094
|
+
"inheritedFrom": {
|
|
18095
|
+
"name": "Multiselect",
|
|
18096
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18097
|
+
}
|
|
18098
|
+
},
|
|
18099
|
+
{
|
|
18100
|
+
"name": "delimiterLabels",
|
|
18101
|
+
"type": {
|
|
18102
|
+
"text": "string"
|
|
18103
|
+
},
|
|
18104
|
+
"default": "','",
|
|
18105
|
+
"fieldName": "delimiterLabels",
|
|
18106
|
+
"inheritedFrom": {
|
|
18107
|
+
"name": "Multiselect",
|
|
18108
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18109
|
+
}
|
|
18110
|
+
},
|
|
18071
18111
|
{
|
|
18072
18112
|
"name": "filter-by-contains",
|
|
18073
18113
|
"type": {
|
|
@@ -18203,6 +18243,30 @@
|
|
|
18203
18243
|
"module": "src/multiselect/multiselect.ts"
|
|
18204
18244
|
}
|
|
18205
18245
|
},
|
|
18246
|
+
{
|
|
18247
|
+
"kind": "field",
|
|
18248
|
+
"name": "delimiterValues",
|
|
18249
|
+
"type": {
|
|
18250
|
+
"text": "string"
|
|
18251
|
+
},
|
|
18252
|
+
"default": "';'",
|
|
18253
|
+
"inheritedFrom": {
|
|
18254
|
+
"name": "Multiselect",
|
|
18255
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18256
|
+
}
|
|
18257
|
+
},
|
|
18258
|
+
{
|
|
18259
|
+
"kind": "field",
|
|
18260
|
+
"name": "delimiterLabels",
|
|
18261
|
+
"type": {
|
|
18262
|
+
"text": "string"
|
|
18263
|
+
},
|
|
18264
|
+
"default": "','",
|
|
18265
|
+
"inheritedFrom": {
|
|
18266
|
+
"name": "Multiselect",
|
|
18267
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18268
|
+
}
|
|
18269
|
+
},
|
|
18206
18270
|
{
|
|
18207
18271
|
"kind": "field",
|
|
18208
18272
|
"name": "filterByContains",
|
|
@@ -18409,6 +18473,17 @@
|
|
|
18409
18473
|
"module": "src/multiselect/multiselect.ts"
|
|
18410
18474
|
}
|
|
18411
18475
|
},
|
|
18476
|
+
{
|
|
18477
|
+
"kind": "field",
|
|
18478
|
+
"name": "itemRenderer",
|
|
18479
|
+
"type": {
|
|
18480
|
+
"text": "(\n option: MultiselectOption,\n parent: Multiselect,\n prefix: string,\n ) => ViewTemplate"
|
|
18481
|
+
},
|
|
18482
|
+
"inheritedFrom": {
|
|
18483
|
+
"name": "Multiselect",
|
|
18484
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18485
|
+
}
|
|
18486
|
+
},
|
|
18412
18487
|
{
|
|
18413
18488
|
"kind": "field",
|
|
18414
18489
|
"name": "initialisedOptions",
|
|
@@ -18435,7 +18510,7 @@
|
|
|
18435
18510
|
},
|
|
18436
18511
|
{
|
|
18437
18512
|
"kind": "field",
|
|
18438
|
-
"name": "
|
|
18513
|
+
"name": "multiselectDropdown",
|
|
18439
18514
|
"type": {
|
|
18440
18515
|
"text": "HTMLElement"
|
|
18441
18516
|
},
|
|
@@ -18444,6 +18519,33 @@
|
|
|
18444
18519
|
"module": "src/multiselect/multiselect.ts"
|
|
18445
18520
|
}
|
|
18446
18521
|
},
|
|
18522
|
+
{
|
|
18523
|
+
"kind": "method",
|
|
18524
|
+
"name": "defaultItemRenderer",
|
|
18525
|
+
"return": {
|
|
18526
|
+
"type": {
|
|
18527
|
+
"text": "ViewTemplate"
|
|
18528
|
+
}
|
|
18529
|
+
},
|
|
18530
|
+
"parameters": [
|
|
18531
|
+
{
|
|
18532
|
+
"name": "option",
|
|
18533
|
+
"type": {
|
|
18534
|
+
"text": "MultiselectOption"
|
|
18535
|
+
}
|
|
18536
|
+
},
|
|
18537
|
+
{
|
|
18538
|
+
"name": "parent",
|
|
18539
|
+
"type": {
|
|
18540
|
+
"text": "Multiselect"
|
|
18541
|
+
}
|
|
18542
|
+
}
|
|
18543
|
+
],
|
|
18544
|
+
"inheritedFrom": {
|
|
18545
|
+
"name": "Multiselect",
|
|
18546
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18547
|
+
}
|
|
18548
|
+
},
|
|
18447
18549
|
{
|
|
18448
18550
|
"kind": "method",
|
|
18449
18551
|
"name": "toggle",
|
|
@@ -18480,7 +18582,23 @@
|
|
|
18480
18582
|
},
|
|
18481
18583
|
{
|
|
18482
18584
|
"kind": "method",
|
|
18483
|
-
"name": "
|
|
18585
|
+
"name": "optionValueGetter",
|
|
18586
|
+
"parameters": [
|
|
18587
|
+
{
|
|
18588
|
+
"name": "option",
|
|
18589
|
+
"type": {
|
|
18590
|
+
"text": "MultiselectOption"
|
|
18591
|
+
}
|
|
18592
|
+
}
|
|
18593
|
+
],
|
|
18594
|
+
"inheritedFrom": {
|
|
18595
|
+
"name": "Multiselect",
|
|
18596
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18597
|
+
}
|
|
18598
|
+
},
|
|
18599
|
+
{
|
|
18600
|
+
"kind": "method",
|
|
18601
|
+
"name": "optionLabelGetter",
|
|
18484
18602
|
"parameters": [
|
|
18485
18603
|
{
|
|
18486
18604
|
"name": "option",
|
|
@@ -18731,6 +18849,17 @@
|
|
|
18731
18849
|
"module": "src/multiselect/multiselect.ts"
|
|
18732
18850
|
}
|
|
18733
18851
|
},
|
|
18852
|
+
{
|
|
18853
|
+
"kind": "field",
|
|
18854
|
+
"name": "optionsHeaderSlottedNodes",
|
|
18855
|
+
"type": {
|
|
18856
|
+
"text": "Node[]"
|
|
18857
|
+
},
|
|
18858
|
+
"inheritedFrom": {
|
|
18859
|
+
"name": "Multiselect",
|
|
18860
|
+
"module": "src/multiselect/multiselect.ts"
|
|
18861
|
+
}
|
|
18862
|
+
},
|
|
18734
18863
|
{
|
|
18735
18864
|
"kind": "field",
|
|
18736
18865
|
"name": "_presentation",
|
|
@@ -21532,7 +21661,7 @@
|
|
|
21532
21661
|
},
|
|
21533
21662
|
{
|
|
21534
21663
|
"kind": "javascript-module",
|
|
21535
|
-
"path": "src/scheduler
|
|
21664
|
+
"path": "src/scheduler/index.ts",
|
|
21536
21665
|
"declarations": [],
|
|
21537
21666
|
"exports": [
|
|
21538
21667
|
{
|
|
@@ -21540,7 +21669,7 @@
|
|
|
21540
21669
|
"name": "*",
|
|
21541
21670
|
"declaration": {
|
|
21542
21671
|
"name": "*",
|
|
21543
|
-
"package": "./scheduler
|
|
21672
|
+
"package": "./scheduler"
|
|
21544
21673
|
}
|
|
21545
21674
|
},
|
|
21546
21675
|
{
|
|
@@ -21548,7 +21677,7 @@
|
|
|
21548
21677
|
"name": "*",
|
|
21549
21678
|
"declaration": {
|
|
21550
21679
|
"name": "*",
|
|
21551
|
-
"package": "./scheduler
|
|
21680
|
+
"package": "./scheduler.styles"
|
|
21552
21681
|
}
|
|
21553
21682
|
},
|
|
21554
21683
|
{
|
|
@@ -21556,96 +21685,81 @@
|
|
|
21556
21685
|
"name": "*",
|
|
21557
21686
|
"declaration": {
|
|
21558
21687
|
"name": "*",
|
|
21559
|
-
"package": "./scheduler
|
|
21688
|
+
"package": "./scheduler.template"
|
|
21560
21689
|
}
|
|
21561
21690
|
}
|
|
21562
21691
|
]
|
|
21563
21692
|
},
|
|
21564
21693
|
{
|
|
21565
21694
|
"kind": "javascript-module",
|
|
21566
|
-
"path": "src/scheduler
|
|
21695
|
+
"path": "src/scheduler/scheduler.styles.ts",
|
|
21567
21696
|
"declarations": [
|
|
21568
21697
|
{
|
|
21569
21698
|
"kind": "variable",
|
|
21570
|
-
"name": "
|
|
21699
|
+
"name": "rapidSchedulerStyles",
|
|
21571
21700
|
"type": {
|
|
21572
21701
|
"text": "ElementStyles"
|
|
21573
21702
|
},
|
|
21574
|
-
"default": "css`\n ${
|
|
21703
|
+
"default": "css`\n ${schedulerStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
21575
21704
|
}
|
|
21576
21705
|
],
|
|
21577
21706
|
"exports": [
|
|
21578
21707
|
{
|
|
21579
21708
|
"kind": "js",
|
|
21580
|
-
"name": "
|
|
21709
|
+
"name": "rapidSchedulerStyles",
|
|
21581
21710
|
"declaration": {
|
|
21582
|
-
"name": "
|
|
21583
|
-
"module": "src/scheduler
|
|
21711
|
+
"name": "rapidSchedulerStyles",
|
|
21712
|
+
"module": "src/scheduler/scheduler.styles.ts"
|
|
21584
21713
|
}
|
|
21585
21714
|
}
|
|
21586
21715
|
]
|
|
21587
21716
|
},
|
|
21588
21717
|
{
|
|
21589
21718
|
"kind": "javascript-module",
|
|
21590
|
-
"path": "src/scheduler
|
|
21719
|
+
"path": "src/scheduler/scheduler.template.ts",
|
|
21591
21720
|
"declarations": [
|
|
21592
21721
|
{
|
|
21593
21722
|
"kind": "variable",
|
|
21594
|
-
"name": "
|
|
21595
|
-
"default": "html<
|
|
21723
|
+
"name": "rapidSchedulerTemplate",
|
|
21724
|
+
"default": "html<Scheduler>`\n ${getPrefixedScheduler('rapid')}\n`"
|
|
21596
21725
|
}
|
|
21597
21726
|
],
|
|
21598
21727
|
"exports": [
|
|
21599
21728
|
{
|
|
21600
21729
|
"kind": "js",
|
|
21601
|
-
"name": "
|
|
21730
|
+
"name": "rapidSchedulerTemplate",
|
|
21602
21731
|
"declaration": {
|
|
21603
|
-
"name": "
|
|
21604
|
-
"module": "src/scheduler
|
|
21732
|
+
"name": "rapidSchedulerTemplate",
|
|
21733
|
+
"module": "src/scheduler/scheduler.template.ts"
|
|
21605
21734
|
}
|
|
21606
21735
|
}
|
|
21607
21736
|
]
|
|
21608
21737
|
},
|
|
21609
21738
|
{
|
|
21610
21739
|
"kind": "javascript-module",
|
|
21611
|
-
"path": "src/scheduler
|
|
21740
|
+
"path": "src/scheduler/scheduler.ts",
|
|
21612
21741
|
"declarations": [
|
|
21613
21742
|
{
|
|
21614
21743
|
"kind": "class",
|
|
21615
21744
|
"description": "",
|
|
21616
|
-
"name": "
|
|
21745
|
+
"name": "Scheduler",
|
|
21617
21746
|
"superclass": {
|
|
21618
|
-
"name": "
|
|
21747
|
+
"name": "FoundationScheduler",
|
|
21619
21748
|
"package": "@genesislcap/foundation-ui"
|
|
21620
21749
|
},
|
|
21621
|
-
"tagName": "%%prefix%%-scheduler
|
|
21750
|
+
"tagName": "%%prefix%%-scheduler",
|
|
21622
21751
|
"customElement": true,
|
|
21623
|
-
"
|
|
21752
|
+
"members": [
|
|
21624
21753
|
{
|
|
21754
|
+
"kind": "field",
|
|
21625
21755
|
"name": "timezone",
|
|
21626
21756
|
"type": {
|
|
21627
21757
|
"text": "string"
|
|
21628
21758
|
},
|
|
21629
21759
|
"default": "''",
|
|
21630
|
-
"fieldName": "timezone",
|
|
21631
|
-
"inheritedFrom": {
|
|
21632
|
-
"name": "SchedulerCronBuilder",
|
|
21633
|
-
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
21634
|
-
}
|
|
21635
|
-
}
|
|
21636
|
-
],
|
|
21637
|
-
"members": [
|
|
21638
|
-
{
|
|
21639
|
-
"kind": "field",
|
|
21640
|
-
"name": "getConfigs",
|
|
21641
|
-
"type": {
|
|
21642
|
-
"text": "GetConfigs"
|
|
21643
|
-
},
|
|
21644
|
-
"privacy": "private",
|
|
21645
|
-
"default": "{\n buildConfigForHourlyRecurrence,\n buildConfigForDailyRecurrence,\n buildConfigForWeeklyRecurrence,\n buildConfigForMonthlyRecurrence,\n buildConfigForYearlyRecurrence,\n }",
|
|
21646
21760
|
"inheritedFrom": {
|
|
21647
|
-
"name": "
|
|
21648
|
-
"module": "src/scheduler
|
|
21761
|
+
"name": "Scheduler",
|
|
21762
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21649
21763
|
}
|
|
21650
21764
|
},
|
|
21651
21765
|
{
|
|
@@ -21655,69 +21769,50 @@
|
|
|
21655
21769
|
"text": "string"
|
|
21656
21770
|
},
|
|
21657
21771
|
"default": "''",
|
|
21658
|
-
"description": "used to store the cron string generated as result of selected input",
|
|
21659
|
-
"inheritedFrom": {
|
|
21660
|
-
"name": "SchedulerCronBuilder",
|
|
21661
|
-
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
21662
|
-
}
|
|
21663
|
-
},
|
|
21664
|
-
{
|
|
21665
|
-
"kind": "method",
|
|
21666
|
-
"name": "cronChanged",
|
|
21667
|
-
"inheritedFrom": {
|
|
21668
|
-
"name": "SchedulerCronBuilder",
|
|
21669
|
-
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
21670
|
-
}
|
|
21671
|
-
},
|
|
21672
|
-
{
|
|
21673
|
-
"kind": "field",
|
|
21674
|
-
"name": "frequencySuffix",
|
|
21675
|
-
"type": {
|
|
21676
|
-
"text": "string"
|
|
21677
|
-
},
|
|
21678
|
-
"description": "The suffix that appears with frequency field",
|
|
21679
|
-
"readonly": true,
|
|
21680
21772
|
"inheritedFrom": {
|
|
21681
|
-
"name": "
|
|
21682
|
-
"module": "src/scheduler
|
|
21773
|
+
"name": "Scheduler",
|
|
21774
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21683
21775
|
}
|
|
21684
21776
|
},
|
|
21685
21777
|
{
|
|
21686
21778
|
"kind": "field",
|
|
21687
|
-
"name": "
|
|
21779
|
+
"name": "cronConfig",
|
|
21688
21780
|
"type": {
|
|
21689
|
-
"text": "
|
|
21781
|
+
"text": "CronConfig"
|
|
21690
21782
|
},
|
|
21691
|
-
"description": "The frequency dropdown list",
|
|
21692
|
-
"readonly": true,
|
|
21693
21783
|
"inheritedFrom": {
|
|
21694
|
-
"name": "
|
|
21695
|
-
"module": "src/scheduler
|
|
21784
|
+
"name": "Scheduler",
|
|
21785
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21696
21786
|
}
|
|
21697
21787
|
},
|
|
21698
21788
|
{
|
|
21699
|
-
"kind": "
|
|
21700
|
-
"name": "
|
|
21701
|
-
"type": {
|
|
21702
|
-
"text": "string"
|
|
21703
|
-
},
|
|
21704
|
-
"default": "''",
|
|
21789
|
+
"kind": "method",
|
|
21790
|
+
"name": "cronConfigChanged",
|
|
21705
21791
|
"inheritedFrom": {
|
|
21706
|
-
"name": "
|
|
21707
|
-
"module": "src/scheduler
|
|
21792
|
+
"name": "Scheduler",
|
|
21793
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21708
21794
|
}
|
|
21709
21795
|
},
|
|
21710
21796
|
{
|
|
21711
21797
|
"kind": "method",
|
|
21712
|
-
"name": "
|
|
21713
|
-
"
|
|
21714
|
-
|
|
21715
|
-
"
|
|
21798
|
+
"name": "handleChange",
|
|
21799
|
+
"parameters": [
|
|
21800
|
+
{
|
|
21801
|
+
"name": "event",
|
|
21802
|
+
"type": {
|
|
21803
|
+
"text": "CustomEvent"
|
|
21804
|
+
}
|
|
21805
|
+
},
|
|
21806
|
+
{
|
|
21807
|
+
"name": "key",
|
|
21808
|
+
"type": {
|
|
21809
|
+
"text": "string"
|
|
21810
|
+
}
|
|
21716
21811
|
}
|
|
21717
|
-
|
|
21812
|
+
],
|
|
21718
21813
|
"inheritedFrom": {
|
|
21719
|
-
"name": "
|
|
21720
|
-
"module": "src/scheduler
|
|
21814
|
+
"name": "Scheduler",
|
|
21815
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21721
21816
|
}
|
|
21722
21817
|
},
|
|
21723
21818
|
{
|
|
@@ -21835,24 +21930,631 @@
|
|
|
21835
21930
|
},
|
|
21836
21931
|
{
|
|
21837
21932
|
"kind": "variable",
|
|
21838
|
-
"name": "
|
|
21933
|
+
"name": "rapidScheduler"
|
|
21839
21934
|
}
|
|
21840
21935
|
],
|
|
21841
21936
|
"exports": [
|
|
21842
21937
|
{
|
|
21843
21938
|
"kind": "js",
|
|
21844
|
-
"name": "
|
|
21939
|
+
"name": "Scheduler",
|
|
21845
21940
|
"declaration": {
|
|
21846
|
-
"name": "
|
|
21847
|
-
"module": "src/scheduler
|
|
21941
|
+
"name": "Scheduler",
|
|
21942
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21848
21943
|
}
|
|
21849
21944
|
},
|
|
21850
21945
|
{
|
|
21851
21946
|
"kind": "js",
|
|
21852
|
-
"name": "
|
|
21947
|
+
"name": "rapidScheduler",
|
|
21853
21948
|
"declaration": {
|
|
21854
|
-
"name": "
|
|
21855
|
-
"module": "src/scheduler
|
|
21949
|
+
"name": "rapidScheduler",
|
|
21950
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21951
|
+
}
|
|
21952
|
+
}
|
|
21953
|
+
]
|
|
21954
|
+
},
|
|
21955
|
+
{
|
|
21956
|
+
"kind": "javascript-module",
|
|
21957
|
+
"path": "src/scheduler-cron-builder/index.ts",
|
|
21958
|
+
"declarations": [],
|
|
21959
|
+
"exports": [
|
|
21960
|
+
{
|
|
21961
|
+
"kind": "js",
|
|
21962
|
+
"name": "*",
|
|
21963
|
+
"declaration": {
|
|
21964
|
+
"name": "*",
|
|
21965
|
+
"package": "./scheduler-cron-builder"
|
|
21966
|
+
}
|
|
21967
|
+
},
|
|
21968
|
+
{
|
|
21969
|
+
"kind": "js",
|
|
21970
|
+
"name": "*",
|
|
21971
|
+
"declaration": {
|
|
21972
|
+
"name": "*",
|
|
21973
|
+
"package": "./scheduler-cron-builder.styles"
|
|
21974
|
+
}
|
|
21975
|
+
},
|
|
21976
|
+
{
|
|
21977
|
+
"kind": "js",
|
|
21978
|
+
"name": "*",
|
|
21979
|
+
"declaration": {
|
|
21980
|
+
"name": "*",
|
|
21981
|
+
"package": "./scheduler-cron-builder.template"
|
|
21982
|
+
}
|
|
21983
|
+
}
|
|
21984
|
+
]
|
|
21985
|
+
},
|
|
21986
|
+
{
|
|
21987
|
+
"kind": "javascript-module",
|
|
21988
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.styles.ts",
|
|
21989
|
+
"declarations": [
|
|
21990
|
+
{
|
|
21991
|
+
"kind": "variable",
|
|
21992
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
21993
|
+
"type": {
|
|
21994
|
+
"text": "ElementStyles"
|
|
21995
|
+
},
|
|
21996
|
+
"default": "css`\n ${schedulerCronBuilderStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
21997
|
+
}
|
|
21998
|
+
],
|
|
21999
|
+
"exports": [
|
|
22000
|
+
{
|
|
22001
|
+
"kind": "js",
|
|
22002
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
22003
|
+
"declaration": {
|
|
22004
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
22005
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.styles.ts"
|
|
22006
|
+
}
|
|
22007
|
+
}
|
|
22008
|
+
]
|
|
22009
|
+
},
|
|
22010
|
+
{
|
|
22011
|
+
"kind": "javascript-module",
|
|
22012
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.template.ts",
|
|
22013
|
+
"declarations": [
|
|
22014
|
+
{
|
|
22015
|
+
"kind": "variable",
|
|
22016
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
22017
|
+
"default": "html<SchedulerCronBuilder>`\n ${getPrefixedCronBuilder('rapid')}\n`"
|
|
22018
|
+
}
|
|
22019
|
+
],
|
|
22020
|
+
"exports": [
|
|
22021
|
+
{
|
|
22022
|
+
"kind": "js",
|
|
22023
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
22024
|
+
"declaration": {
|
|
22025
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
22026
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.template.ts"
|
|
22027
|
+
}
|
|
22028
|
+
}
|
|
22029
|
+
]
|
|
22030
|
+
},
|
|
22031
|
+
{
|
|
22032
|
+
"kind": "javascript-module",
|
|
22033
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.ts",
|
|
22034
|
+
"declarations": [
|
|
22035
|
+
{
|
|
22036
|
+
"kind": "class",
|
|
22037
|
+
"description": "",
|
|
22038
|
+
"name": "SchedulerCronBuilder",
|
|
22039
|
+
"superclass": {
|
|
22040
|
+
"name": "FoundationSchedulerCronBuilder",
|
|
22041
|
+
"package": "@genesislcap/foundation-ui"
|
|
22042
|
+
},
|
|
22043
|
+
"tagName": "%%prefix%%-scheduler-cron-builder",
|
|
22044
|
+
"customElement": true,
|
|
22045
|
+
"attributes": [
|
|
22046
|
+
{
|
|
22047
|
+
"name": "timezone",
|
|
22048
|
+
"type": {
|
|
22049
|
+
"text": "string"
|
|
22050
|
+
},
|
|
22051
|
+
"default": "''",
|
|
22052
|
+
"fieldName": "timezone",
|
|
22053
|
+
"inheritedFrom": {
|
|
22054
|
+
"name": "SchedulerCronBuilder",
|
|
22055
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22056
|
+
}
|
|
22057
|
+
}
|
|
22058
|
+
],
|
|
22059
|
+
"members": [
|
|
22060
|
+
{
|
|
22061
|
+
"kind": "field",
|
|
22062
|
+
"name": "getConfigs",
|
|
22063
|
+
"type": {
|
|
22064
|
+
"text": "GetConfigs"
|
|
22065
|
+
},
|
|
22066
|
+
"privacy": "private",
|
|
22067
|
+
"default": "{\n buildConfigForHourlyRecurrence,\n buildConfigForDailyRecurrence,\n buildConfigForWeeklyRecurrence,\n buildConfigForMonthlyRecurrence,\n buildConfigForYearlyRecurrence,\n }",
|
|
22068
|
+
"inheritedFrom": {
|
|
22069
|
+
"name": "SchedulerCronBuilder",
|
|
22070
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22071
|
+
}
|
|
22072
|
+
},
|
|
22073
|
+
{
|
|
22074
|
+
"kind": "field",
|
|
22075
|
+
"name": "cron",
|
|
22076
|
+
"type": {
|
|
22077
|
+
"text": "string"
|
|
22078
|
+
},
|
|
22079
|
+
"default": "''",
|
|
22080
|
+
"description": "used to store the cron string generated as result of selected input",
|
|
22081
|
+
"inheritedFrom": {
|
|
22082
|
+
"name": "SchedulerCronBuilder",
|
|
22083
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22084
|
+
}
|
|
22085
|
+
},
|
|
22086
|
+
{
|
|
22087
|
+
"kind": "method",
|
|
22088
|
+
"name": "cronChanged",
|
|
22089
|
+
"inheritedFrom": {
|
|
22090
|
+
"name": "SchedulerCronBuilder",
|
|
22091
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22092
|
+
}
|
|
22093
|
+
},
|
|
22094
|
+
{
|
|
22095
|
+
"kind": "field",
|
|
22096
|
+
"name": "frequencySuffix",
|
|
22097
|
+
"type": {
|
|
22098
|
+
"text": "string"
|
|
22099
|
+
},
|
|
22100
|
+
"description": "The suffix that appears with frequency field",
|
|
22101
|
+
"readonly": true,
|
|
22102
|
+
"inheritedFrom": {
|
|
22103
|
+
"name": "SchedulerCronBuilder",
|
|
22104
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22105
|
+
}
|
|
22106
|
+
},
|
|
22107
|
+
{
|
|
22108
|
+
"kind": "field",
|
|
22109
|
+
"name": "frequencyList",
|
|
22110
|
+
"type": {
|
|
22111
|
+
"text": "Array<Number>"
|
|
22112
|
+
},
|
|
22113
|
+
"description": "The frequency dropdown list",
|
|
22114
|
+
"readonly": true,
|
|
22115
|
+
"inheritedFrom": {
|
|
22116
|
+
"name": "SchedulerCronBuilder",
|
|
22117
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22118
|
+
}
|
|
22119
|
+
},
|
|
22120
|
+
{
|
|
22121
|
+
"kind": "field",
|
|
22122
|
+
"name": "timezone",
|
|
22123
|
+
"type": {
|
|
22124
|
+
"text": "string"
|
|
22125
|
+
},
|
|
22126
|
+
"default": "''",
|
|
22127
|
+
"inheritedFrom": {
|
|
22128
|
+
"name": "SchedulerCronBuilder",
|
|
22129
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22130
|
+
}
|
|
22131
|
+
},
|
|
22132
|
+
{
|
|
22133
|
+
"kind": "method",
|
|
22134
|
+
"name": "getBaseConfigFields",
|
|
22135
|
+
"return": {
|
|
22136
|
+
"type": {
|
|
22137
|
+
"text": "baseConfig"
|
|
22138
|
+
}
|
|
22139
|
+
},
|
|
22140
|
+
"inheritedFrom": {
|
|
22141
|
+
"name": "SchedulerCronBuilder",
|
|
22142
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22143
|
+
}
|
|
22144
|
+
},
|
|
22145
|
+
{
|
|
22146
|
+
"kind": "field",
|
|
22147
|
+
"name": "_presentation",
|
|
22148
|
+
"type": {
|
|
22149
|
+
"text": "ComponentPresentation | null | undefined"
|
|
22150
|
+
},
|
|
22151
|
+
"privacy": "private",
|
|
22152
|
+
"default": "void 0",
|
|
22153
|
+
"inheritedFrom": {
|
|
22154
|
+
"name": "FoundationElement",
|
|
22155
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22156
|
+
}
|
|
22157
|
+
},
|
|
22158
|
+
{
|
|
22159
|
+
"kind": "field",
|
|
22160
|
+
"name": "$presentation",
|
|
22161
|
+
"type": {
|
|
22162
|
+
"text": "ComponentPresentation | null"
|
|
22163
|
+
},
|
|
22164
|
+
"privacy": "public",
|
|
22165
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22166
|
+
"inheritedFrom": {
|
|
22167
|
+
"name": "FoundationElement",
|
|
22168
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22169
|
+
}
|
|
22170
|
+
},
|
|
22171
|
+
{
|
|
22172
|
+
"kind": "field",
|
|
22173
|
+
"name": "template",
|
|
22174
|
+
"type": {
|
|
22175
|
+
"text": "ElementViewTemplate | void | null"
|
|
22176
|
+
},
|
|
22177
|
+
"privacy": "public",
|
|
22178
|
+
"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.",
|
|
22179
|
+
"inheritedFrom": {
|
|
22180
|
+
"name": "FoundationElement",
|
|
22181
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22182
|
+
}
|
|
22183
|
+
},
|
|
22184
|
+
{
|
|
22185
|
+
"kind": "method",
|
|
22186
|
+
"name": "templateChanged",
|
|
22187
|
+
"privacy": "protected",
|
|
22188
|
+
"return": {
|
|
22189
|
+
"type": {
|
|
22190
|
+
"text": "void"
|
|
22191
|
+
}
|
|
22192
|
+
},
|
|
22193
|
+
"inheritedFrom": {
|
|
22194
|
+
"name": "FoundationElement",
|
|
22195
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22196
|
+
}
|
|
22197
|
+
},
|
|
22198
|
+
{
|
|
22199
|
+
"kind": "field",
|
|
22200
|
+
"name": "styles",
|
|
22201
|
+
"type": {
|
|
22202
|
+
"text": "ElementStyles | void | null"
|
|
22203
|
+
},
|
|
22204
|
+
"privacy": "public",
|
|
22205
|
+
"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.",
|
|
22206
|
+
"inheritedFrom": {
|
|
22207
|
+
"name": "FoundationElement",
|
|
22208
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22209
|
+
}
|
|
22210
|
+
},
|
|
22211
|
+
{
|
|
22212
|
+
"kind": "method",
|
|
22213
|
+
"name": "stylesChanged",
|
|
22214
|
+
"privacy": "protected",
|
|
22215
|
+
"return": {
|
|
22216
|
+
"type": {
|
|
22217
|
+
"text": "void"
|
|
22218
|
+
}
|
|
22219
|
+
},
|
|
22220
|
+
"inheritedFrom": {
|
|
22221
|
+
"name": "FoundationElement",
|
|
22222
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22223
|
+
}
|
|
22224
|
+
},
|
|
22225
|
+
{
|
|
22226
|
+
"kind": "method",
|
|
22227
|
+
"name": "compose",
|
|
22228
|
+
"privacy": "public",
|
|
22229
|
+
"static": true,
|
|
22230
|
+
"return": {
|
|
22231
|
+
"type": {
|
|
22232
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
22233
|
+
}
|
|
22234
|
+
},
|
|
22235
|
+
"parameters": [
|
|
22236
|
+
{
|
|
22237
|
+
"name": "this",
|
|
22238
|
+
"type": {
|
|
22239
|
+
"text": "K"
|
|
22240
|
+
}
|
|
22241
|
+
},
|
|
22242
|
+
{
|
|
22243
|
+
"name": "elementDefinition",
|
|
22244
|
+
"type": {
|
|
22245
|
+
"text": "T"
|
|
22246
|
+
},
|
|
22247
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
22248
|
+
}
|
|
22249
|
+
],
|
|
22250
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
22251
|
+
"inheritedFrom": {
|
|
22252
|
+
"name": "FoundationElement",
|
|
22253
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22254
|
+
}
|
|
22255
|
+
}
|
|
22256
|
+
]
|
|
22257
|
+
},
|
|
22258
|
+
{
|
|
22259
|
+
"kind": "variable",
|
|
22260
|
+
"name": "rapidSchedulerCronBuilder"
|
|
22261
|
+
}
|
|
22262
|
+
],
|
|
22263
|
+
"exports": [
|
|
22264
|
+
{
|
|
22265
|
+
"kind": "js",
|
|
22266
|
+
"name": "SchedulerCronBuilder",
|
|
22267
|
+
"declaration": {
|
|
22268
|
+
"name": "SchedulerCronBuilder",
|
|
22269
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22270
|
+
}
|
|
22271
|
+
},
|
|
22272
|
+
{
|
|
22273
|
+
"kind": "js",
|
|
22274
|
+
"name": "rapidSchedulerCronBuilder",
|
|
22275
|
+
"declaration": {
|
|
22276
|
+
"name": "rapidSchedulerCronBuilder",
|
|
22277
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
22278
|
+
}
|
|
22279
|
+
}
|
|
22280
|
+
]
|
|
22281
|
+
},
|
|
22282
|
+
{
|
|
22283
|
+
"kind": "javascript-module",
|
|
22284
|
+
"path": "src/scheduler-timezone/index.ts",
|
|
22285
|
+
"declarations": [],
|
|
22286
|
+
"exports": [
|
|
22287
|
+
{
|
|
22288
|
+
"kind": "js",
|
|
22289
|
+
"name": "*",
|
|
22290
|
+
"declaration": {
|
|
22291
|
+
"name": "*",
|
|
22292
|
+
"package": "./scheduler-timezone"
|
|
22293
|
+
}
|
|
22294
|
+
},
|
|
22295
|
+
{
|
|
22296
|
+
"kind": "js",
|
|
22297
|
+
"name": "*",
|
|
22298
|
+
"declaration": {
|
|
22299
|
+
"name": "*",
|
|
22300
|
+
"package": "./scheduler-timezone.styles"
|
|
22301
|
+
}
|
|
22302
|
+
},
|
|
22303
|
+
{
|
|
22304
|
+
"kind": "js",
|
|
22305
|
+
"name": "*",
|
|
22306
|
+
"declaration": {
|
|
22307
|
+
"name": "*",
|
|
22308
|
+
"package": "./scheduler-timezone.template"
|
|
22309
|
+
}
|
|
22310
|
+
}
|
|
22311
|
+
]
|
|
22312
|
+
},
|
|
22313
|
+
{
|
|
22314
|
+
"kind": "javascript-module",
|
|
22315
|
+
"path": "src/scheduler-timezone/scheduler-timezone.styles.ts",
|
|
22316
|
+
"declarations": [
|
|
22317
|
+
{
|
|
22318
|
+
"kind": "variable",
|
|
22319
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22320
|
+
"type": {
|
|
22321
|
+
"text": "ElementStyles"
|
|
22322
|
+
},
|
|
22323
|
+
"default": "css`\n ${schedulerTimezoneStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
22324
|
+
}
|
|
22325
|
+
],
|
|
22326
|
+
"exports": [
|
|
22327
|
+
{
|
|
22328
|
+
"kind": "js",
|
|
22329
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22330
|
+
"declaration": {
|
|
22331
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22332
|
+
"module": "src/scheduler-timezone/scheduler-timezone.styles.ts"
|
|
22333
|
+
}
|
|
22334
|
+
}
|
|
22335
|
+
]
|
|
22336
|
+
},
|
|
22337
|
+
{
|
|
22338
|
+
"kind": "javascript-module",
|
|
22339
|
+
"path": "src/scheduler-timezone/scheduler-timezone.template.ts",
|
|
22340
|
+
"declarations": [
|
|
22341
|
+
{
|
|
22342
|
+
"kind": "variable",
|
|
22343
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22344
|
+
"default": "html<SchedulerTimezone>`\n ${getPrefixedSchedulerTimezone('rapid')}\n`"
|
|
22345
|
+
}
|
|
22346
|
+
],
|
|
22347
|
+
"exports": [
|
|
22348
|
+
{
|
|
22349
|
+
"kind": "js",
|
|
22350
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22351
|
+
"declaration": {
|
|
22352
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22353
|
+
"module": "src/scheduler-timezone/scheduler-timezone.template.ts"
|
|
22354
|
+
}
|
|
22355
|
+
}
|
|
22356
|
+
]
|
|
22357
|
+
},
|
|
22358
|
+
{
|
|
22359
|
+
"kind": "javascript-module",
|
|
22360
|
+
"path": "src/scheduler-timezone/scheduler-timezone.ts",
|
|
22361
|
+
"declarations": [
|
|
22362
|
+
{
|
|
22363
|
+
"kind": "class",
|
|
22364
|
+
"description": "",
|
|
22365
|
+
"name": "SchedulerTimezone",
|
|
22366
|
+
"superclass": {
|
|
22367
|
+
"name": "FoundationSchedulerTimezone",
|
|
22368
|
+
"package": "@genesislcap/foundation-ui"
|
|
22369
|
+
},
|
|
22370
|
+
"tagName": "%%prefix%%-scheduler-timezone",
|
|
22371
|
+
"customElement": true,
|
|
22372
|
+
"members": [
|
|
22373
|
+
{
|
|
22374
|
+
"kind": "field",
|
|
22375
|
+
"name": "timezone",
|
|
22376
|
+
"type": {
|
|
22377
|
+
"text": "string"
|
|
22378
|
+
},
|
|
22379
|
+
"default": "''",
|
|
22380
|
+
"inheritedFrom": {
|
|
22381
|
+
"name": "SchedulerTimezone",
|
|
22382
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22383
|
+
}
|
|
22384
|
+
},
|
|
22385
|
+
{
|
|
22386
|
+
"kind": "method",
|
|
22387
|
+
"name": "timezoneChanged",
|
|
22388
|
+
"inheritedFrom": {
|
|
22389
|
+
"name": "SchedulerTimezone",
|
|
22390
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22391
|
+
}
|
|
22392
|
+
},
|
|
22393
|
+
{
|
|
22394
|
+
"kind": "field",
|
|
22395
|
+
"name": "connect",
|
|
22396
|
+
"type": {
|
|
22397
|
+
"text": "Connect"
|
|
22398
|
+
},
|
|
22399
|
+
"inheritedFrom": {
|
|
22400
|
+
"name": "SchedulerTimezone",
|
|
22401
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22402
|
+
}
|
|
22403
|
+
},
|
|
22404
|
+
{
|
|
22405
|
+
"kind": "field",
|
|
22406
|
+
"name": "timeZones",
|
|
22407
|
+
"inheritedFrom": {
|
|
22408
|
+
"name": "SchedulerTimezone",
|
|
22409
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22410
|
+
}
|
|
22411
|
+
},
|
|
22412
|
+
{
|
|
22413
|
+
"kind": "method",
|
|
22414
|
+
"name": "getTimeZones",
|
|
22415
|
+
"return": {
|
|
22416
|
+
"type": {
|
|
22417
|
+
"text": "Promise<void>"
|
|
22418
|
+
}
|
|
22419
|
+
},
|
|
22420
|
+
"inheritedFrom": {
|
|
22421
|
+
"name": "SchedulerTimezone",
|
|
22422
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22423
|
+
}
|
|
22424
|
+
},
|
|
22425
|
+
{
|
|
22426
|
+
"kind": "field",
|
|
22427
|
+
"name": "_presentation",
|
|
22428
|
+
"type": {
|
|
22429
|
+
"text": "ComponentPresentation | null | undefined"
|
|
22430
|
+
},
|
|
22431
|
+
"privacy": "private",
|
|
22432
|
+
"default": "void 0",
|
|
22433
|
+
"inheritedFrom": {
|
|
22434
|
+
"name": "FoundationElement",
|
|
22435
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22436
|
+
}
|
|
22437
|
+
},
|
|
22438
|
+
{
|
|
22439
|
+
"kind": "field",
|
|
22440
|
+
"name": "$presentation",
|
|
22441
|
+
"type": {
|
|
22442
|
+
"text": "ComponentPresentation | null"
|
|
22443
|
+
},
|
|
22444
|
+
"privacy": "public",
|
|
22445
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22446
|
+
"inheritedFrom": {
|
|
22447
|
+
"name": "FoundationElement",
|
|
22448
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22449
|
+
}
|
|
22450
|
+
},
|
|
22451
|
+
{
|
|
22452
|
+
"kind": "field",
|
|
22453
|
+
"name": "template",
|
|
22454
|
+
"type": {
|
|
22455
|
+
"text": "ElementViewTemplate | void | null"
|
|
22456
|
+
},
|
|
22457
|
+
"privacy": "public",
|
|
22458
|
+
"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.",
|
|
22459
|
+
"inheritedFrom": {
|
|
22460
|
+
"name": "FoundationElement",
|
|
22461
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22462
|
+
}
|
|
22463
|
+
},
|
|
22464
|
+
{
|
|
22465
|
+
"kind": "method",
|
|
22466
|
+
"name": "templateChanged",
|
|
22467
|
+
"privacy": "protected",
|
|
22468
|
+
"return": {
|
|
22469
|
+
"type": {
|
|
22470
|
+
"text": "void"
|
|
22471
|
+
}
|
|
22472
|
+
},
|
|
22473
|
+
"inheritedFrom": {
|
|
22474
|
+
"name": "FoundationElement",
|
|
22475
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22476
|
+
}
|
|
22477
|
+
},
|
|
22478
|
+
{
|
|
22479
|
+
"kind": "field",
|
|
22480
|
+
"name": "styles",
|
|
22481
|
+
"type": {
|
|
22482
|
+
"text": "ElementStyles | void | null"
|
|
22483
|
+
},
|
|
22484
|
+
"privacy": "public",
|
|
22485
|
+
"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.",
|
|
22486
|
+
"inheritedFrom": {
|
|
22487
|
+
"name": "FoundationElement",
|
|
22488
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22489
|
+
}
|
|
22490
|
+
},
|
|
22491
|
+
{
|
|
22492
|
+
"kind": "method",
|
|
22493
|
+
"name": "stylesChanged",
|
|
22494
|
+
"privacy": "protected",
|
|
22495
|
+
"return": {
|
|
22496
|
+
"type": {
|
|
22497
|
+
"text": "void"
|
|
22498
|
+
}
|
|
22499
|
+
},
|
|
22500
|
+
"inheritedFrom": {
|
|
22501
|
+
"name": "FoundationElement",
|
|
22502
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22503
|
+
}
|
|
22504
|
+
},
|
|
22505
|
+
{
|
|
22506
|
+
"kind": "method",
|
|
22507
|
+
"name": "compose",
|
|
22508
|
+
"privacy": "public",
|
|
22509
|
+
"static": true,
|
|
22510
|
+
"return": {
|
|
22511
|
+
"type": {
|
|
22512
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
22513
|
+
}
|
|
22514
|
+
},
|
|
22515
|
+
"parameters": [
|
|
22516
|
+
{
|
|
22517
|
+
"name": "this",
|
|
22518
|
+
"type": {
|
|
22519
|
+
"text": "K"
|
|
22520
|
+
}
|
|
22521
|
+
},
|
|
22522
|
+
{
|
|
22523
|
+
"name": "elementDefinition",
|
|
22524
|
+
"type": {
|
|
22525
|
+
"text": "T"
|
|
22526
|
+
},
|
|
22527
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
22528
|
+
}
|
|
22529
|
+
],
|
|
22530
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
22531
|
+
"inheritedFrom": {
|
|
22532
|
+
"name": "FoundationElement",
|
|
22533
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22534
|
+
}
|
|
22535
|
+
}
|
|
22536
|
+
]
|
|
22537
|
+
},
|
|
22538
|
+
{
|
|
22539
|
+
"kind": "variable",
|
|
22540
|
+
"name": "rapidSchedulerTimezone"
|
|
22541
|
+
}
|
|
22542
|
+
],
|
|
22543
|
+
"exports": [
|
|
22544
|
+
{
|
|
22545
|
+
"kind": "js",
|
|
22546
|
+
"name": "SchedulerTimezone",
|
|
22547
|
+
"declaration": {
|
|
22548
|
+
"name": "SchedulerTimezone",
|
|
22549
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22550
|
+
}
|
|
22551
|
+
},
|
|
22552
|
+
{
|
|
22553
|
+
"kind": "js",
|
|
22554
|
+
"name": "rapidSchedulerTimezone",
|
|
22555
|
+
"declaration": {
|
|
22556
|
+
"name": "rapidSchedulerTimezone",
|
|
22557
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
21856
22558
|
}
|
|
21857
22559
|
}
|
|
21858
22560
|
]
|