@genesislcap/rapid-design-system 14.271.2 → 14.273.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 +590 -1
- 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": "*",
|
|
@@ -21530,6 +21546,299 @@
|
|
|
21530
21546
|
}
|
|
21531
21547
|
]
|
|
21532
21548
|
},
|
|
21549
|
+
{
|
|
21550
|
+
"kind": "javascript-module",
|
|
21551
|
+
"path": "src/scheduler/index.ts",
|
|
21552
|
+
"declarations": [],
|
|
21553
|
+
"exports": [
|
|
21554
|
+
{
|
|
21555
|
+
"kind": "js",
|
|
21556
|
+
"name": "*",
|
|
21557
|
+
"declaration": {
|
|
21558
|
+
"name": "*",
|
|
21559
|
+
"package": "./scheduler"
|
|
21560
|
+
}
|
|
21561
|
+
},
|
|
21562
|
+
{
|
|
21563
|
+
"kind": "js",
|
|
21564
|
+
"name": "*",
|
|
21565
|
+
"declaration": {
|
|
21566
|
+
"name": "*",
|
|
21567
|
+
"package": "./scheduler.styles"
|
|
21568
|
+
}
|
|
21569
|
+
},
|
|
21570
|
+
{
|
|
21571
|
+
"kind": "js",
|
|
21572
|
+
"name": "*",
|
|
21573
|
+
"declaration": {
|
|
21574
|
+
"name": "*",
|
|
21575
|
+
"package": "./scheduler.template"
|
|
21576
|
+
}
|
|
21577
|
+
}
|
|
21578
|
+
]
|
|
21579
|
+
},
|
|
21580
|
+
{
|
|
21581
|
+
"kind": "javascript-module",
|
|
21582
|
+
"path": "src/scheduler/scheduler.styles.ts",
|
|
21583
|
+
"declarations": [
|
|
21584
|
+
{
|
|
21585
|
+
"kind": "variable",
|
|
21586
|
+
"name": "rapidSchedulerStyles",
|
|
21587
|
+
"type": {
|
|
21588
|
+
"text": "ElementStyles"
|
|
21589
|
+
},
|
|
21590
|
+
"default": "css`\n ${schedulerStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
21591
|
+
}
|
|
21592
|
+
],
|
|
21593
|
+
"exports": [
|
|
21594
|
+
{
|
|
21595
|
+
"kind": "js",
|
|
21596
|
+
"name": "rapidSchedulerStyles",
|
|
21597
|
+
"declaration": {
|
|
21598
|
+
"name": "rapidSchedulerStyles",
|
|
21599
|
+
"module": "src/scheduler/scheduler.styles.ts"
|
|
21600
|
+
}
|
|
21601
|
+
}
|
|
21602
|
+
]
|
|
21603
|
+
},
|
|
21604
|
+
{
|
|
21605
|
+
"kind": "javascript-module",
|
|
21606
|
+
"path": "src/scheduler/scheduler.template.ts",
|
|
21607
|
+
"declarations": [
|
|
21608
|
+
{
|
|
21609
|
+
"kind": "variable",
|
|
21610
|
+
"name": "rapidSchedulerTemplate",
|
|
21611
|
+
"default": "html<Scheduler>`\n ${getPrefixedScheduler('rapid')}\n`"
|
|
21612
|
+
}
|
|
21613
|
+
],
|
|
21614
|
+
"exports": [
|
|
21615
|
+
{
|
|
21616
|
+
"kind": "js",
|
|
21617
|
+
"name": "rapidSchedulerTemplate",
|
|
21618
|
+
"declaration": {
|
|
21619
|
+
"name": "rapidSchedulerTemplate",
|
|
21620
|
+
"module": "src/scheduler/scheduler.template.ts"
|
|
21621
|
+
}
|
|
21622
|
+
}
|
|
21623
|
+
]
|
|
21624
|
+
},
|
|
21625
|
+
{
|
|
21626
|
+
"kind": "javascript-module",
|
|
21627
|
+
"path": "src/scheduler/scheduler.ts",
|
|
21628
|
+
"declarations": [
|
|
21629
|
+
{
|
|
21630
|
+
"kind": "class",
|
|
21631
|
+
"description": "",
|
|
21632
|
+
"name": "Scheduler",
|
|
21633
|
+
"superclass": {
|
|
21634
|
+
"name": "FoundationScheduler",
|
|
21635
|
+
"package": "@genesislcap/foundation-ui"
|
|
21636
|
+
},
|
|
21637
|
+
"tagName": "%%prefix%%-scheduler",
|
|
21638
|
+
"customElement": true,
|
|
21639
|
+
"members": [
|
|
21640
|
+
{
|
|
21641
|
+
"kind": "field",
|
|
21642
|
+
"name": "timezone",
|
|
21643
|
+
"type": {
|
|
21644
|
+
"text": "string"
|
|
21645
|
+
},
|
|
21646
|
+
"default": "''",
|
|
21647
|
+
"inheritedFrom": {
|
|
21648
|
+
"name": "Scheduler",
|
|
21649
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21650
|
+
}
|
|
21651
|
+
},
|
|
21652
|
+
{
|
|
21653
|
+
"kind": "field",
|
|
21654
|
+
"name": "cron",
|
|
21655
|
+
"type": {
|
|
21656
|
+
"text": "string"
|
|
21657
|
+
},
|
|
21658
|
+
"default": "''",
|
|
21659
|
+
"inheritedFrom": {
|
|
21660
|
+
"name": "Scheduler",
|
|
21661
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21662
|
+
}
|
|
21663
|
+
},
|
|
21664
|
+
{
|
|
21665
|
+
"kind": "field",
|
|
21666
|
+
"name": "cronConfig",
|
|
21667
|
+
"type": {
|
|
21668
|
+
"text": "CronConfig"
|
|
21669
|
+
},
|
|
21670
|
+
"inheritedFrom": {
|
|
21671
|
+
"name": "Scheduler",
|
|
21672
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21673
|
+
}
|
|
21674
|
+
},
|
|
21675
|
+
{
|
|
21676
|
+
"kind": "method",
|
|
21677
|
+
"name": "cronConfigChanged",
|
|
21678
|
+
"inheritedFrom": {
|
|
21679
|
+
"name": "Scheduler",
|
|
21680
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21681
|
+
}
|
|
21682
|
+
},
|
|
21683
|
+
{
|
|
21684
|
+
"kind": "method",
|
|
21685
|
+
"name": "handleChange",
|
|
21686
|
+
"parameters": [
|
|
21687
|
+
{
|
|
21688
|
+
"name": "event",
|
|
21689
|
+
"type": {
|
|
21690
|
+
"text": "CustomEvent"
|
|
21691
|
+
}
|
|
21692
|
+
},
|
|
21693
|
+
{
|
|
21694
|
+
"name": "key",
|
|
21695
|
+
"type": {
|
|
21696
|
+
"text": "string"
|
|
21697
|
+
}
|
|
21698
|
+
}
|
|
21699
|
+
],
|
|
21700
|
+
"inheritedFrom": {
|
|
21701
|
+
"name": "Scheduler",
|
|
21702
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21703
|
+
}
|
|
21704
|
+
},
|
|
21705
|
+
{
|
|
21706
|
+
"kind": "field",
|
|
21707
|
+
"name": "_presentation",
|
|
21708
|
+
"type": {
|
|
21709
|
+
"text": "ComponentPresentation | null | undefined"
|
|
21710
|
+
},
|
|
21711
|
+
"privacy": "private",
|
|
21712
|
+
"default": "void 0",
|
|
21713
|
+
"inheritedFrom": {
|
|
21714
|
+
"name": "FoundationElement",
|
|
21715
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21716
|
+
}
|
|
21717
|
+
},
|
|
21718
|
+
{
|
|
21719
|
+
"kind": "field",
|
|
21720
|
+
"name": "$presentation",
|
|
21721
|
+
"type": {
|
|
21722
|
+
"text": "ComponentPresentation | null"
|
|
21723
|
+
},
|
|
21724
|
+
"privacy": "public",
|
|
21725
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
21726
|
+
"inheritedFrom": {
|
|
21727
|
+
"name": "FoundationElement",
|
|
21728
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21729
|
+
}
|
|
21730
|
+
},
|
|
21731
|
+
{
|
|
21732
|
+
"kind": "field",
|
|
21733
|
+
"name": "template",
|
|
21734
|
+
"type": {
|
|
21735
|
+
"text": "ElementViewTemplate | void | null"
|
|
21736
|
+
},
|
|
21737
|
+
"privacy": "public",
|
|
21738
|
+
"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.",
|
|
21739
|
+
"inheritedFrom": {
|
|
21740
|
+
"name": "FoundationElement",
|
|
21741
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21742
|
+
}
|
|
21743
|
+
},
|
|
21744
|
+
{
|
|
21745
|
+
"kind": "method",
|
|
21746
|
+
"name": "templateChanged",
|
|
21747
|
+
"privacy": "protected",
|
|
21748
|
+
"return": {
|
|
21749
|
+
"type": {
|
|
21750
|
+
"text": "void"
|
|
21751
|
+
}
|
|
21752
|
+
},
|
|
21753
|
+
"inheritedFrom": {
|
|
21754
|
+
"name": "FoundationElement",
|
|
21755
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21756
|
+
}
|
|
21757
|
+
},
|
|
21758
|
+
{
|
|
21759
|
+
"kind": "field",
|
|
21760
|
+
"name": "styles",
|
|
21761
|
+
"type": {
|
|
21762
|
+
"text": "ElementStyles | void | null"
|
|
21763
|
+
},
|
|
21764
|
+
"privacy": "public",
|
|
21765
|
+
"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.",
|
|
21766
|
+
"inheritedFrom": {
|
|
21767
|
+
"name": "FoundationElement",
|
|
21768
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21769
|
+
}
|
|
21770
|
+
},
|
|
21771
|
+
{
|
|
21772
|
+
"kind": "method",
|
|
21773
|
+
"name": "stylesChanged",
|
|
21774
|
+
"privacy": "protected",
|
|
21775
|
+
"return": {
|
|
21776
|
+
"type": {
|
|
21777
|
+
"text": "void"
|
|
21778
|
+
}
|
|
21779
|
+
},
|
|
21780
|
+
"inheritedFrom": {
|
|
21781
|
+
"name": "FoundationElement",
|
|
21782
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21783
|
+
}
|
|
21784
|
+
},
|
|
21785
|
+
{
|
|
21786
|
+
"kind": "method",
|
|
21787
|
+
"name": "compose",
|
|
21788
|
+
"privacy": "public",
|
|
21789
|
+
"static": true,
|
|
21790
|
+
"return": {
|
|
21791
|
+
"type": {
|
|
21792
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
21793
|
+
}
|
|
21794
|
+
},
|
|
21795
|
+
"parameters": [
|
|
21796
|
+
{
|
|
21797
|
+
"name": "this",
|
|
21798
|
+
"type": {
|
|
21799
|
+
"text": "K"
|
|
21800
|
+
}
|
|
21801
|
+
},
|
|
21802
|
+
{
|
|
21803
|
+
"name": "elementDefinition",
|
|
21804
|
+
"type": {
|
|
21805
|
+
"text": "T"
|
|
21806
|
+
},
|
|
21807
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
21808
|
+
}
|
|
21809
|
+
],
|
|
21810
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
21811
|
+
"inheritedFrom": {
|
|
21812
|
+
"name": "FoundationElement",
|
|
21813
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21814
|
+
}
|
|
21815
|
+
}
|
|
21816
|
+
]
|
|
21817
|
+
},
|
|
21818
|
+
{
|
|
21819
|
+
"kind": "variable",
|
|
21820
|
+
"name": "rapidScheduler"
|
|
21821
|
+
}
|
|
21822
|
+
],
|
|
21823
|
+
"exports": [
|
|
21824
|
+
{
|
|
21825
|
+
"kind": "js",
|
|
21826
|
+
"name": "Scheduler",
|
|
21827
|
+
"declaration": {
|
|
21828
|
+
"name": "Scheduler",
|
|
21829
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21830
|
+
}
|
|
21831
|
+
},
|
|
21832
|
+
{
|
|
21833
|
+
"kind": "js",
|
|
21834
|
+
"name": "rapidScheduler",
|
|
21835
|
+
"declaration": {
|
|
21836
|
+
"name": "rapidScheduler",
|
|
21837
|
+
"module": "src/scheduler/scheduler.ts"
|
|
21838
|
+
}
|
|
21839
|
+
}
|
|
21840
|
+
]
|
|
21841
|
+
},
|
|
21533
21842
|
{
|
|
21534
21843
|
"kind": "javascript-module",
|
|
21535
21844
|
"path": "src/scheduler-cron-builder/index.ts",
|
|
@@ -21857,6 +22166,286 @@
|
|
|
21857
22166
|
}
|
|
21858
22167
|
]
|
|
21859
22168
|
},
|
|
22169
|
+
{
|
|
22170
|
+
"kind": "javascript-module",
|
|
22171
|
+
"path": "src/scheduler-timezone/index.ts",
|
|
22172
|
+
"declarations": [],
|
|
22173
|
+
"exports": [
|
|
22174
|
+
{
|
|
22175
|
+
"kind": "js",
|
|
22176
|
+
"name": "*",
|
|
22177
|
+
"declaration": {
|
|
22178
|
+
"name": "*",
|
|
22179
|
+
"package": "./scheduler-timezone"
|
|
22180
|
+
}
|
|
22181
|
+
},
|
|
22182
|
+
{
|
|
22183
|
+
"kind": "js",
|
|
22184
|
+
"name": "*",
|
|
22185
|
+
"declaration": {
|
|
22186
|
+
"name": "*",
|
|
22187
|
+
"package": "./scheduler-timezone.styles"
|
|
22188
|
+
}
|
|
22189
|
+
},
|
|
22190
|
+
{
|
|
22191
|
+
"kind": "js",
|
|
22192
|
+
"name": "*",
|
|
22193
|
+
"declaration": {
|
|
22194
|
+
"name": "*",
|
|
22195
|
+
"package": "./scheduler-timezone.template"
|
|
22196
|
+
}
|
|
22197
|
+
}
|
|
22198
|
+
]
|
|
22199
|
+
},
|
|
22200
|
+
{
|
|
22201
|
+
"kind": "javascript-module",
|
|
22202
|
+
"path": "src/scheduler-timezone/scheduler-timezone.styles.ts",
|
|
22203
|
+
"declarations": [
|
|
22204
|
+
{
|
|
22205
|
+
"kind": "variable",
|
|
22206
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22207
|
+
"type": {
|
|
22208
|
+
"text": "ElementStyles"
|
|
22209
|
+
},
|
|
22210
|
+
"default": "css`\n ${schedulerTimezoneStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
22211
|
+
}
|
|
22212
|
+
],
|
|
22213
|
+
"exports": [
|
|
22214
|
+
{
|
|
22215
|
+
"kind": "js",
|
|
22216
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22217
|
+
"declaration": {
|
|
22218
|
+
"name": "rapidSchedulerTimezoneStyles",
|
|
22219
|
+
"module": "src/scheduler-timezone/scheduler-timezone.styles.ts"
|
|
22220
|
+
}
|
|
22221
|
+
}
|
|
22222
|
+
]
|
|
22223
|
+
},
|
|
22224
|
+
{
|
|
22225
|
+
"kind": "javascript-module",
|
|
22226
|
+
"path": "src/scheduler-timezone/scheduler-timezone.template.ts",
|
|
22227
|
+
"declarations": [
|
|
22228
|
+
{
|
|
22229
|
+
"kind": "variable",
|
|
22230
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22231
|
+
"default": "html<SchedulerTimezone>`\n ${getPrefixedSchedulerTimezone('rapid')}\n`"
|
|
22232
|
+
}
|
|
22233
|
+
],
|
|
22234
|
+
"exports": [
|
|
22235
|
+
{
|
|
22236
|
+
"kind": "js",
|
|
22237
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22238
|
+
"declaration": {
|
|
22239
|
+
"name": "rapidSchedulerTimezoneTemplate",
|
|
22240
|
+
"module": "src/scheduler-timezone/scheduler-timezone.template.ts"
|
|
22241
|
+
}
|
|
22242
|
+
}
|
|
22243
|
+
]
|
|
22244
|
+
},
|
|
22245
|
+
{
|
|
22246
|
+
"kind": "javascript-module",
|
|
22247
|
+
"path": "src/scheduler-timezone/scheduler-timezone.ts",
|
|
22248
|
+
"declarations": [
|
|
22249
|
+
{
|
|
22250
|
+
"kind": "class",
|
|
22251
|
+
"description": "",
|
|
22252
|
+
"name": "SchedulerTimezone",
|
|
22253
|
+
"superclass": {
|
|
22254
|
+
"name": "FoundationSchedulerTimezone",
|
|
22255
|
+
"package": "@genesislcap/foundation-ui"
|
|
22256
|
+
},
|
|
22257
|
+
"tagName": "%%prefix%%-scheduler-timezone",
|
|
22258
|
+
"customElement": true,
|
|
22259
|
+
"members": [
|
|
22260
|
+
{
|
|
22261
|
+
"kind": "field",
|
|
22262
|
+
"name": "timezone",
|
|
22263
|
+
"type": {
|
|
22264
|
+
"text": "string"
|
|
22265
|
+
},
|
|
22266
|
+
"default": "''",
|
|
22267
|
+
"inheritedFrom": {
|
|
22268
|
+
"name": "SchedulerTimezone",
|
|
22269
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22270
|
+
}
|
|
22271
|
+
},
|
|
22272
|
+
{
|
|
22273
|
+
"kind": "method",
|
|
22274
|
+
"name": "timezoneChanged",
|
|
22275
|
+
"inheritedFrom": {
|
|
22276
|
+
"name": "SchedulerTimezone",
|
|
22277
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22278
|
+
}
|
|
22279
|
+
},
|
|
22280
|
+
{
|
|
22281
|
+
"kind": "field",
|
|
22282
|
+
"name": "connect",
|
|
22283
|
+
"type": {
|
|
22284
|
+
"text": "Connect"
|
|
22285
|
+
},
|
|
22286
|
+
"inheritedFrom": {
|
|
22287
|
+
"name": "SchedulerTimezone",
|
|
22288
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22289
|
+
}
|
|
22290
|
+
},
|
|
22291
|
+
{
|
|
22292
|
+
"kind": "field",
|
|
22293
|
+
"name": "timeZones",
|
|
22294
|
+
"inheritedFrom": {
|
|
22295
|
+
"name": "SchedulerTimezone",
|
|
22296
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22297
|
+
}
|
|
22298
|
+
},
|
|
22299
|
+
{
|
|
22300
|
+
"kind": "method",
|
|
22301
|
+
"name": "getTimeZones",
|
|
22302
|
+
"return": {
|
|
22303
|
+
"type": {
|
|
22304
|
+
"text": "Promise<void>"
|
|
22305
|
+
}
|
|
22306
|
+
},
|
|
22307
|
+
"inheritedFrom": {
|
|
22308
|
+
"name": "SchedulerTimezone",
|
|
22309
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22310
|
+
}
|
|
22311
|
+
},
|
|
22312
|
+
{
|
|
22313
|
+
"kind": "field",
|
|
22314
|
+
"name": "_presentation",
|
|
22315
|
+
"type": {
|
|
22316
|
+
"text": "ComponentPresentation | null | undefined"
|
|
22317
|
+
},
|
|
22318
|
+
"privacy": "private",
|
|
22319
|
+
"default": "void 0",
|
|
22320
|
+
"inheritedFrom": {
|
|
22321
|
+
"name": "FoundationElement",
|
|
22322
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22323
|
+
}
|
|
22324
|
+
},
|
|
22325
|
+
{
|
|
22326
|
+
"kind": "field",
|
|
22327
|
+
"name": "$presentation",
|
|
22328
|
+
"type": {
|
|
22329
|
+
"text": "ComponentPresentation | null"
|
|
22330
|
+
},
|
|
22331
|
+
"privacy": "public",
|
|
22332
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22333
|
+
"inheritedFrom": {
|
|
22334
|
+
"name": "FoundationElement",
|
|
22335
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22336
|
+
}
|
|
22337
|
+
},
|
|
22338
|
+
{
|
|
22339
|
+
"kind": "field",
|
|
22340
|
+
"name": "template",
|
|
22341
|
+
"type": {
|
|
22342
|
+
"text": "ElementViewTemplate | void | null"
|
|
22343
|
+
},
|
|
22344
|
+
"privacy": "public",
|
|
22345
|
+
"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.",
|
|
22346
|
+
"inheritedFrom": {
|
|
22347
|
+
"name": "FoundationElement",
|
|
22348
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22349
|
+
}
|
|
22350
|
+
},
|
|
22351
|
+
{
|
|
22352
|
+
"kind": "method",
|
|
22353
|
+
"name": "templateChanged",
|
|
22354
|
+
"privacy": "protected",
|
|
22355
|
+
"return": {
|
|
22356
|
+
"type": {
|
|
22357
|
+
"text": "void"
|
|
22358
|
+
}
|
|
22359
|
+
},
|
|
22360
|
+
"inheritedFrom": {
|
|
22361
|
+
"name": "FoundationElement",
|
|
22362
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22363
|
+
}
|
|
22364
|
+
},
|
|
22365
|
+
{
|
|
22366
|
+
"kind": "field",
|
|
22367
|
+
"name": "styles",
|
|
22368
|
+
"type": {
|
|
22369
|
+
"text": "ElementStyles | void | null"
|
|
22370
|
+
},
|
|
22371
|
+
"privacy": "public",
|
|
22372
|
+
"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.",
|
|
22373
|
+
"inheritedFrom": {
|
|
22374
|
+
"name": "FoundationElement",
|
|
22375
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22376
|
+
}
|
|
22377
|
+
},
|
|
22378
|
+
{
|
|
22379
|
+
"kind": "method",
|
|
22380
|
+
"name": "stylesChanged",
|
|
22381
|
+
"privacy": "protected",
|
|
22382
|
+
"return": {
|
|
22383
|
+
"type": {
|
|
22384
|
+
"text": "void"
|
|
22385
|
+
}
|
|
22386
|
+
},
|
|
22387
|
+
"inheritedFrom": {
|
|
22388
|
+
"name": "FoundationElement",
|
|
22389
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22390
|
+
}
|
|
22391
|
+
},
|
|
22392
|
+
{
|
|
22393
|
+
"kind": "method",
|
|
22394
|
+
"name": "compose",
|
|
22395
|
+
"privacy": "public",
|
|
22396
|
+
"static": true,
|
|
22397
|
+
"return": {
|
|
22398
|
+
"type": {
|
|
22399
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
22400
|
+
}
|
|
22401
|
+
},
|
|
22402
|
+
"parameters": [
|
|
22403
|
+
{
|
|
22404
|
+
"name": "this",
|
|
22405
|
+
"type": {
|
|
22406
|
+
"text": "K"
|
|
22407
|
+
}
|
|
22408
|
+
},
|
|
22409
|
+
{
|
|
22410
|
+
"name": "elementDefinition",
|
|
22411
|
+
"type": {
|
|
22412
|
+
"text": "T"
|
|
22413
|
+
},
|
|
22414
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
22415
|
+
}
|
|
22416
|
+
],
|
|
22417
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
22418
|
+
"inheritedFrom": {
|
|
22419
|
+
"name": "FoundationElement",
|
|
22420
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22421
|
+
}
|
|
22422
|
+
}
|
|
22423
|
+
]
|
|
22424
|
+
},
|
|
22425
|
+
{
|
|
22426
|
+
"kind": "variable",
|
|
22427
|
+
"name": "rapidSchedulerTimezone"
|
|
22428
|
+
}
|
|
22429
|
+
],
|
|
22430
|
+
"exports": [
|
|
22431
|
+
{
|
|
22432
|
+
"kind": "js",
|
|
22433
|
+
"name": "SchedulerTimezone",
|
|
22434
|
+
"declaration": {
|
|
22435
|
+
"name": "SchedulerTimezone",
|
|
22436
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22437
|
+
}
|
|
22438
|
+
},
|
|
22439
|
+
{
|
|
22440
|
+
"kind": "js",
|
|
22441
|
+
"name": "rapidSchedulerTimezone",
|
|
22442
|
+
"declaration": {
|
|
22443
|
+
"name": "rapidSchedulerTimezone",
|
|
22444
|
+
"module": "src/scheduler-timezone/scheduler-timezone.ts"
|
|
22445
|
+
}
|
|
22446
|
+
}
|
|
22447
|
+
]
|
|
22448
|
+
},
|
|
21860
22449
|
{
|
|
21861
22450
|
"kind": "javascript-module",
|
|
21862
22451
|
"path": "src/search-bar/index.ts",
|
|
@@ -161,6 +161,17 @@ export declare const baseComponents: {
|
|
|
161
161
|
rapidProgressRing: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").ProgressRingOptions>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").ProgressRingOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
162
162
|
rapidRadio: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./radio").Radio>;
|
|
163
163
|
rapidRadioGroup: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition>) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./radio-group").RadioGroup>;
|
|
164
|
+
rapidScheduler: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
165
|
+
baseName: string;
|
|
166
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler").Scheduler, any>;
|
|
167
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
168
|
+
shadowOptions: ShadowRootInit;
|
|
169
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
170
|
+
baseName: string;
|
|
171
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler").Scheduler, any>;
|
|
172
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
173
|
+
shadowOptions: ShadowRootInit;
|
|
174
|
+
}, typeof import("./scheduler").Scheduler>;
|
|
164
175
|
rapidSchedulerCronBuilder: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
165
176
|
baseName: string;
|
|
166
177
|
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler-cron-builder").SchedulerCronBuilder, any>;
|
|
@@ -172,6 +183,17 @@ export declare const baseComponents: {
|
|
|
172
183
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
173
184
|
shadowOptions: ShadowRootInit;
|
|
174
185
|
}, typeof import("./scheduler-cron-builder").SchedulerCronBuilder>;
|
|
186
|
+
rapidSchedulerTimezone: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
187
|
+
baseName: string;
|
|
188
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler-timezone").SchedulerTimezone, any>;
|
|
189
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
190
|
+
shadowOptions: ShadowRootInit;
|
|
191
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
192
|
+
baseName: string;
|
|
193
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler-timezone").SchedulerTimezone, any>;
|
|
194
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
195
|
+
shadowOptions: ShadowRootInit;
|
|
196
|
+
}, typeof import("./scheduler-timezone").SchedulerTimezone>;
|
|
175
197
|
rapidSearchBar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
176
198
|
baseName: string;
|
|
177
199
|
template: import("@microsoft/fast-element").ViewTemplate<import("./search-bar").SearchBar, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-components.d.ts","sourceRoot":"","sources":["../../src/base-components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"base-components.d.ts","sourceRoot":"","sources":["../../src/base-components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAkF5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBA+EJ,SAAS,WAAW,GAAG,EAAE;CAe/C,CAAC"}
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -53,7 +53,9 @@ export * from './progress';
|
|
|
53
53
|
export * from './progress-ring';
|
|
54
54
|
export * from './radio';
|
|
55
55
|
export * from './radio-group';
|
|
56
|
+
export * from './scheduler';
|
|
56
57
|
export * from './scheduler-cron-builder';
|
|
58
|
+
export * from './scheduler-timezone';
|
|
57
59
|
export * from './search-bar';
|
|
58
60
|
export * from './segmented-control';
|
|
59
61
|
export * from './segmented-item';
|
package/dist/dts/index.d.ts.map
CHANGED
|
@@ -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;AAC/C,eAAO,MAAM,yBAAyB,yDAAuD,CAAC;AAE9F,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,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,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,kBAAkB,CAAC;AACjC,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,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,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,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;AAC/C,eAAO,MAAM,yBAAyB,yDAAuD,CAAC;AAE9F,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,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,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,kBAAkB,CAAC;AACjC,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,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,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,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/scheduler/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Scheduler as FoundationScheduler } from '@genesislcap/foundation-ui';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-scheduler
|
|
4
|
+
*/
|
|
5
|
+
export declare class Scheduler extends FoundationScheduler {
|
|
6
|
+
}
|
|
7
|
+
export declare const rapidScheduler: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
8
|
+
baseName: string;
|
|
9
|
+
template: import("@microsoft/fast-element").ViewTemplate<Scheduler, any>;
|
|
10
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
11
|
+
shadowOptions: ShadowRootInit;
|
|
12
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
13
|
+
baseName: string;
|
|
14
|
+
template: import("@microsoft/fast-element").ViewTemplate<Scheduler, any>;
|
|
15
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
16
|
+
shadowOptions: ShadowRootInit;
|
|
17
|
+
}, typeof Scheduler>;
|
|
18
|
+
//# sourceMappingURL=scheduler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler.d.ts","sourceRoot":"","sources":["../../../src/scheduler/scheduler.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,SAAS,IAAI,mBAAmB,EACjC,MAAM,4BAA4B,CAAC;AAIpC;;GAEG;AACH,qBAAa,SAAU,SAAQ,mBAAmB;CAAG;AAErD,eAAO,MAAM,cAAc;;;;;;;;;;oBAMzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler.styles.d.ts","sourceRoot":"","sources":["../../../src/scheduler/scheduler.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,oBAAoB,EAAE,aAMlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler.template.d.ts","sourceRoot":"","sources":["../../../src/scheduler/scheduler.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C,eAAO,MAAM,sBAAsB,gEAElC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/scheduler-timezone/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SchedulerTimezone as FoundationSchedulerTimezone } from '@genesislcap/foundation-ui';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-scheduler-timezone
|
|
4
|
+
*/
|
|
5
|
+
export declare class SchedulerTimezone extends FoundationSchedulerTimezone {
|
|
6
|
+
}
|
|
7
|
+
export declare const rapidSchedulerTimezone: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
8
|
+
baseName: string;
|
|
9
|
+
template: import("@microsoft/fast-element").ViewTemplate<SchedulerTimezone, any>;
|
|
10
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
11
|
+
shadowOptions: ShadowRootInit;
|
|
12
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
13
|
+
baseName: string;
|
|
14
|
+
template: import("@microsoft/fast-element").ViewTemplate<SchedulerTimezone, any>;
|
|
15
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
16
|
+
shadowOptions: ShadowRootInit;
|
|
17
|
+
}, typeof SchedulerTimezone>;
|
|
18
|
+
//# sourceMappingURL=scheduler-timezone.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-timezone.d.ts","sourceRoot":"","sources":["../../../src/scheduler-timezone/scheduler-timezone.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,iBAAiB,IAAI,2BAA2B,EACjD,MAAM,4BAA4B,CAAC;AAIpC;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,2BAA2B;CAAG;AAErE,eAAO,MAAM,sBAAsB;;;;;;;;;;4BAMjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-timezone.styles.d.ts","sourceRoot":"","sources":["../../../src/scheduler-timezone/scheduler-timezone.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,4BAA4B,EAAE,aAM1C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-timezone.template.d.ts","sourceRoot":"","sources":["../../../src/scheduler-timezone/scheduler-timezone.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE9D,eAAO,MAAM,8BAA8B,wEAE1C,CAAC"}
|
|
@@ -49,7 +49,9 @@ import { rapidProgress } from './progress';
|
|
|
49
49
|
import { rapidProgressRing } from './progress-ring';
|
|
50
50
|
import { rapidRadio } from './radio';
|
|
51
51
|
import { rapidRadioGroup } from './radio-group';
|
|
52
|
+
import { rapidScheduler } from './scheduler';
|
|
52
53
|
import { rapidSchedulerCronBuilder } from './scheduler-cron-builder';
|
|
54
|
+
import { rapidSchedulerTimezone } from './scheduler-timezone';
|
|
53
55
|
import { rapidSearchBar, rapidSearchBarCombobox } from './search-bar';
|
|
54
56
|
import { rapidSegmentedControl } from './segmented-control';
|
|
55
57
|
import { rapidSegmentedItem } from './segmented-item';
|
|
@@ -124,7 +126,9 @@ export const baseComponents = {
|
|
|
124
126
|
rapidProgressRing,
|
|
125
127
|
rapidRadio,
|
|
126
128
|
rapidRadioGroup,
|
|
129
|
+
rapidScheduler,
|
|
127
130
|
rapidSchedulerCronBuilder,
|
|
131
|
+
rapidSchedulerTimezone,
|
|
128
132
|
rapidSearchBar,
|
|
129
133
|
rapidSearchBarCombobox,
|
|
130
134
|
rapidSegmentedControl,
|
package/dist/esm/index.js
CHANGED
|
@@ -53,7 +53,9 @@ export * from './progress';
|
|
|
53
53
|
export * from './progress-ring';
|
|
54
54
|
export * from './radio';
|
|
55
55
|
export * from './radio-group';
|
|
56
|
+
export * from './scheduler';
|
|
56
57
|
export * from './scheduler-cron-builder';
|
|
58
|
+
export * from './scheduler-timezone';
|
|
57
59
|
export * from './search-bar';
|
|
58
60
|
export * from './segmented-control';
|
|
59
61
|
export * from './segmented-item';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { defaultConfig, foundationSchedulerShadowOptions, Scheduler as FoundationScheduler, } from '@genesislcap/foundation-ui';
|
|
2
|
+
import { rapidSchedulerStyles as styles } from './scheduler.styles';
|
|
3
|
+
import { rapidSchedulerTemplate as template } from './scheduler.template';
|
|
4
|
+
/**
|
|
5
|
+
* @tagname %%prefix%%-scheduler
|
|
6
|
+
*/
|
|
7
|
+
export class Scheduler extends FoundationScheduler {
|
|
8
|
+
}
|
|
9
|
+
export const rapidScheduler = Scheduler.compose(Object.assign({ baseName: 'scheduler', template,
|
|
10
|
+
styles, shadowOptions: foundationSchedulerShadowOptions }, defaultConfig));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { defaultTimezoneConfig, foundationSchedulerTimezoneShadowOptions, SchedulerTimezone as FoundationSchedulerTimezone, } from '@genesislcap/foundation-ui';
|
|
2
|
+
import { rapidSchedulerTimezoneStyles as styles } from './scheduler-timezone.styles';
|
|
3
|
+
import { rapidSchedulerTimezoneTemplate as template } from './scheduler-timezone.template';
|
|
4
|
+
/**
|
|
5
|
+
* @tagname %%prefix%%-scheduler-timezone
|
|
6
|
+
*/
|
|
7
|
+
export class SchedulerTimezone extends FoundationSchedulerTimezone {
|
|
8
|
+
}
|
|
9
|
+
export const rapidSchedulerTimezone = SchedulerTimezone.compose(Object.assign({ baseName: 'scheduler-timezone', template,
|
|
10
|
+
styles, shadowOptions: foundationSchedulerTimezoneShadowOptions }, defaultTimezoneConfig));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/rapid-design-system",
|
|
3
3
|
"description": "Rapid Design System",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.273.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
36
|
-
"@genesislcap/genx": "14.
|
|
37
|
-
"@genesislcap/rollup-builder": "14.
|
|
38
|
-
"@genesislcap/ts-builder": "14.
|
|
39
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
40
|
-
"@genesislcap/vite-builder": "14.
|
|
41
|
-
"@genesislcap/webpack-builder": "14.
|
|
36
|
+
"@genesislcap/genx": "14.273.0",
|
|
37
|
+
"@genesislcap/rollup-builder": "14.273.0",
|
|
38
|
+
"@genesislcap/ts-builder": "14.273.0",
|
|
39
|
+
"@genesislcap/uvu-playwright-builder": "14.273.0",
|
|
40
|
+
"@genesislcap/vite-builder": "14.273.0",
|
|
41
|
+
"@genesislcap/webpack-builder": "14.273.0",
|
|
42
42
|
"rimraf": "^5.0.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@genesislcap/foundation-logger": "14.
|
|
46
|
-
"@genesislcap/foundation-ui": "14.
|
|
47
|
-
"@genesislcap/foundation-utils": "14.
|
|
45
|
+
"@genesislcap/foundation-logger": "14.273.0",
|
|
46
|
+
"@genesislcap/foundation-ui": "14.273.0",
|
|
47
|
+
"@genesislcap/foundation-utils": "14.273.0",
|
|
48
48
|
"@microsoft/fast-colors": "5.3.1",
|
|
49
49
|
"@microsoft/fast-components": "2.30.6",
|
|
50
50
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"customElements": "dist/custom-elements.json",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "06838df20d39cb79d0f9ab27c3ca2a9654441a66"
|
|
66
66
|
}
|