@genesislcap/rapid-design-system 14.246.2 → 14.247.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 +336 -1
- package/dist/dts/base-components.d.ts +11 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/scheduler-cron-builder/index.d.ts +4 -0
- package/dist/dts/scheduler-cron-builder/index.d.ts.map +1 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.d.ts +18 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.d.ts.map +1 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.styles.d.ts +3 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.styles.d.ts.map +1 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.template.d.ts +3 -0
- package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.template.d.ts.map +1 -0
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/scheduler-cron-builder/index.js +3 -0
- package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.js +10 -0
- package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.styles.js +9 -0
- package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.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 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 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}"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"exports": [
|
|
@@ -460,6 +460,14 @@
|
|
|
460
460
|
"package": "./radio-group"
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
|
+
{
|
|
464
|
+
"kind": "js",
|
|
465
|
+
"name": "*",
|
|
466
|
+
"declaration": {
|
|
467
|
+
"name": "*",
|
|
468
|
+
"package": "./scheduler-cron-builder"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
463
471
|
{
|
|
464
472
|
"kind": "js",
|
|
465
473
|
"name": "*",
|
|
@@ -20769,6 +20777,333 @@
|
|
|
20769
20777
|
}
|
|
20770
20778
|
]
|
|
20771
20779
|
},
|
|
20780
|
+
{
|
|
20781
|
+
"kind": "javascript-module",
|
|
20782
|
+
"path": "src/scheduler-cron-builder/index.ts",
|
|
20783
|
+
"declarations": [],
|
|
20784
|
+
"exports": [
|
|
20785
|
+
{
|
|
20786
|
+
"kind": "js",
|
|
20787
|
+
"name": "*",
|
|
20788
|
+
"declaration": {
|
|
20789
|
+
"name": "*",
|
|
20790
|
+
"package": "./scheduler-cron-builder"
|
|
20791
|
+
}
|
|
20792
|
+
},
|
|
20793
|
+
{
|
|
20794
|
+
"kind": "js",
|
|
20795
|
+
"name": "*",
|
|
20796
|
+
"declaration": {
|
|
20797
|
+
"name": "*",
|
|
20798
|
+
"package": "./scheduler-cron-builder.styles"
|
|
20799
|
+
}
|
|
20800
|
+
},
|
|
20801
|
+
{
|
|
20802
|
+
"kind": "js",
|
|
20803
|
+
"name": "*",
|
|
20804
|
+
"declaration": {
|
|
20805
|
+
"name": "*",
|
|
20806
|
+
"package": "./scheduler-cron-builder.template"
|
|
20807
|
+
}
|
|
20808
|
+
}
|
|
20809
|
+
]
|
|
20810
|
+
},
|
|
20811
|
+
{
|
|
20812
|
+
"kind": "javascript-module",
|
|
20813
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.styles.ts",
|
|
20814
|
+
"declarations": [
|
|
20815
|
+
{
|
|
20816
|
+
"kind": "variable",
|
|
20817
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
20818
|
+
"type": {
|
|
20819
|
+
"text": "ElementStyles"
|
|
20820
|
+
},
|
|
20821
|
+
"default": "css`\n ${schedulerCronBuilderStyles}\n\n :host {\n font-family: var(--body-font);\n }\n`"
|
|
20822
|
+
}
|
|
20823
|
+
],
|
|
20824
|
+
"exports": [
|
|
20825
|
+
{
|
|
20826
|
+
"kind": "js",
|
|
20827
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
20828
|
+
"declaration": {
|
|
20829
|
+
"name": "rapidSchedulerCronBuilderStyles",
|
|
20830
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.styles.ts"
|
|
20831
|
+
}
|
|
20832
|
+
}
|
|
20833
|
+
]
|
|
20834
|
+
},
|
|
20835
|
+
{
|
|
20836
|
+
"kind": "javascript-module",
|
|
20837
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.template.ts",
|
|
20838
|
+
"declarations": [
|
|
20839
|
+
{
|
|
20840
|
+
"kind": "variable",
|
|
20841
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
20842
|
+
"default": "html<SchedulerCronBuilder>`\n ${getPrefixedCronBuilder('rapid')}\n`"
|
|
20843
|
+
}
|
|
20844
|
+
],
|
|
20845
|
+
"exports": [
|
|
20846
|
+
{
|
|
20847
|
+
"kind": "js",
|
|
20848
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
20849
|
+
"declaration": {
|
|
20850
|
+
"name": "rapidSchedulerCronBuilderTemplate",
|
|
20851
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.template.ts"
|
|
20852
|
+
}
|
|
20853
|
+
}
|
|
20854
|
+
]
|
|
20855
|
+
},
|
|
20856
|
+
{
|
|
20857
|
+
"kind": "javascript-module",
|
|
20858
|
+
"path": "src/scheduler-cron-builder/scheduler-cron-builder.ts",
|
|
20859
|
+
"declarations": [
|
|
20860
|
+
{
|
|
20861
|
+
"kind": "class",
|
|
20862
|
+
"description": "",
|
|
20863
|
+
"name": "SchedulerCronBuilder",
|
|
20864
|
+
"superclass": {
|
|
20865
|
+
"name": "FoundationSchedulerCronBuilder",
|
|
20866
|
+
"package": "@genesislcap/foundation-ui"
|
|
20867
|
+
},
|
|
20868
|
+
"tagName": "%%prefix%%-scheduler-cron-builder",
|
|
20869
|
+
"customElement": true,
|
|
20870
|
+
"attributes": [
|
|
20871
|
+
{
|
|
20872
|
+
"name": "timezone",
|
|
20873
|
+
"type": {
|
|
20874
|
+
"text": "string"
|
|
20875
|
+
},
|
|
20876
|
+
"default": "''",
|
|
20877
|
+
"fieldName": "timezone",
|
|
20878
|
+
"inheritedFrom": {
|
|
20879
|
+
"name": "SchedulerCronBuilder",
|
|
20880
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20881
|
+
}
|
|
20882
|
+
}
|
|
20883
|
+
],
|
|
20884
|
+
"members": [
|
|
20885
|
+
{
|
|
20886
|
+
"kind": "field",
|
|
20887
|
+
"name": "getConfigs",
|
|
20888
|
+
"type": {
|
|
20889
|
+
"text": "GetConfigs"
|
|
20890
|
+
},
|
|
20891
|
+
"privacy": "private",
|
|
20892
|
+
"default": "{\n buildConfigForDailyRecurrence,\n buildConfigForWeeklyRecurrence,\n buildConfigForMonthlyRecurrence,\n buildConfigForYearlyRecurrence,\n }",
|
|
20893
|
+
"inheritedFrom": {
|
|
20894
|
+
"name": "SchedulerCronBuilder",
|
|
20895
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20896
|
+
}
|
|
20897
|
+
},
|
|
20898
|
+
{
|
|
20899
|
+
"kind": "field",
|
|
20900
|
+
"name": "cron",
|
|
20901
|
+
"type": {
|
|
20902
|
+
"text": "string"
|
|
20903
|
+
},
|
|
20904
|
+
"default": "''",
|
|
20905
|
+
"description": "used to store the cron string generated as result of selected input",
|
|
20906
|
+
"inheritedFrom": {
|
|
20907
|
+
"name": "SchedulerCronBuilder",
|
|
20908
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20909
|
+
}
|
|
20910
|
+
},
|
|
20911
|
+
{
|
|
20912
|
+
"kind": "method",
|
|
20913
|
+
"name": "cronChanged",
|
|
20914
|
+
"inheritedFrom": {
|
|
20915
|
+
"name": "SchedulerCronBuilder",
|
|
20916
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20917
|
+
}
|
|
20918
|
+
},
|
|
20919
|
+
{
|
|
20920
|
+
"kind": "field",
|
|
20921
|
+
"name": "frequencySuffix",
|
|
20922
|
+
"type": {
|
|
20923
|
+
"text": "string"
|
|
20924
|
+
},
|
|
20925
|
+
"description": "The suffix that appears with frequency field",
|
|
20926
|
+
"readonly": true,
|
|
20927
|
+
"inheritedFrom": {
|
|
20928
|
+
"name": "SchedulerCronBuilder",
|
|
20929
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20930
|
+
}
|
|
20931
|
+
},
|
|
20932
|
+
{
|
|
20933
|
+
"kind": "field",
|
|
20934
|
+
"name": "frequencyList",
|
|
20935
|
+
"type": {
|
|
20936
|
+
"text": "Array<Number>"
|
|
20937
|
+
},
|
|
20938
|
+
"description": "The frequency dropdown list",
|
|
20939
|
+
"readonly": true,
|
|
20940
|
+
"inheritedFrom": {
|
|
20941
|
+
"name": "SchedulerCronBuilder",
|
|
20942
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20943
|
+
}
|
|
20944
|
+
},
|
|
20945
|
+
{
|
|
20946
|
+
"kind": "field",
|
|
20947
|
+
"name": "timezone",
|
|
20948
|
+
"type": {
|
|
20949
|
+
"text": "string"
|
|
20950
|
+
},
|
|
20951
|
+
"default": "''",
|
|
20952
|
+
"inheritedFrom": {
|
|
20953
|
+
"name": "SchedulerCronBuilder",
|
|
20954
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20955
|
+
}
|
|
20956
|
+
},
|
|
20957
|
+
{
|
|
20958
|
+
"kind": "method",
|
|
20959
|
+
"name": "getBaseConfigFields",
|
|
20960
|
+
"return": {
|
|
20961
|
+
"type": {
|
|
20962
|
+
"text": "baseConfig"
|
|
20963
|
+
}
|
|
20964
|
+
},
|
|
20965
|
+
"inheritedFrom": {
|
|
20966
|
+
"name": "SchedulerCronBuilder",
|
|
20967
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
20968
|
+
}
|
|
20969
|
+
},
|
|
20970
|
+
{
|
|
20971
|
+
"kind": "field",
|
|
20972
|
+
"name": "_presentation",
|
|
20973
|
+
"type": {
|
|
20974
|
+
"text": "ComponentPresentation | null | undefined"
|
|
20975
|
+
},
|
|
20976
|
+
"privacy": "private",
|
|
20977
|
+
"default": "void 0",
|
|
20978
|
+
"inheritedFrom": {
|
|
20979
|
+
"name": "FoundationElement",
|
|
20980
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
20981
|
+
}
|
|
20982
|
+
},
|
|
20983
|
+
{
|
|
20984
|
+
"kind": "field",
|
|
20985
|
+
"name": "$presentation",
|
|
20986
|
+
"type": {
|
|
20987
|
+
"text": "ComponentPresentation | null"
|
|
20988
|
+
},
|
|
20989
|
+
"privacy": "public",
|
|
20990
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
20991
|
+
"inheritedFrom": {
|
|
20992
|
+
"name": "FoundationElement",
|
|
20993
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
20994
|
+
}
|
|
20995
|
+
},
|
|
20996
|
+
{
|
|
20997
|
+
"kind": "field",
|
|
20998
|
+
"name": "template",
|
|
20999
|
+
"type": {
|
|
21000
|
+
"text": "ElementViewTemplate | void | null"
|
|
21001
|
+
},
|
|
21002
|
+
"privacy": "public",
|
|
21003
|
+
"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.",
|
|
21004
|
+
"inheritedFrom": {
|
|
21005
|
+
"name": "FoundationElement",
|
|
21006
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21007
|
+
}
|
|
21008
|
+
},
|
|
21009
|
+
{
|
|
21010
|
+
"kind": "method",
|
|
21011
|
+
"name": "templateChanged",
|
|
21012
|
+
"privacy": "protected",
|
|
21013
|
+
"return": {
|
|
21014
|
+
"type": {
|
|
21015
|
+
"text": "void"
|
|
21016
|
+
}
|
|
21017
|
+
},
|
|
21018
|
+
"inheritedFrom": {
|
|
21019
|
+
"name": "FoundationElement",
|
|
21020
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21021
|
+
}
|
|
21022
|
+
},
|
|
21023
|
+
{
|
|
21024
|
+
"kind": "field",
|
|
21025
|
+
"name": "styles",
|
|
21026
|
+
"type": {
|
|
21027
|
+
"text": "ElementStyles | void | null"
|
|
21028
|
+
},
|
|
21029
|
+
"privacy": "public",
|
|
21030
|
+
"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.",
|
|
21031
|
+
"inheritedFrom": {
|
|
21032
|
+
"name": "FoundationElement",
|
|
21033
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21034
|
+
}
|
|
21035
|
+
},
|
|
21036
|
+
{
|
|
21037
|
+
"kind": "method",
|
|
21038
|
+
"name": "stylesChanged",
|
|
21039
|
+
"privacy": "protected",
|
|
21040
|
+
"return": {
|
|
21041
|
+
"type": {
|
|
21042
|
+
"text": "void"
|
|
21043
|
+
}
|
|
21044
|
+
},
|
|
21045
|
+
"inheritedFrom": {
|
|
21046
|
+
"name": "FoundationElement",
|
|
21047
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21048
|
+
}
|
|
21049
|
+
},
|
|
21050
|
+
{
|
|
21051
|
+
"kind": "method",
|
|
21052
|
+
"name": "compose",
|
|
21053
|
+
"privacy": "public",
|
|
21054
|
+
"static": true,
|
|
21055
|
+
"return": {
|
|
21056
|
+
"type": {
|
|
21057
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
21058
|
+
}
|
|
21059
|
+
},
|
|
21060
|
+
"parameters": [
|
|
21061
|
+
{
|
|
21062
|
+
"name": "this",
|
|
21063
|
+
"type": {
|
|
21064
|
+
"text": "K"
|
|
21065
|
+
}
|
|
21066
|
+
},
|
|
21067
|
+
{
|
|
21068
|
+
"name": "elementDefinition",
|
|
21069
|
+
"type": {
|
|
21070
|
+
"text": "T"
|
|
21071
|
+
},
|
|
21072
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
21073
|
+
}
|
|
21074
|
+
],
|
|
21075
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
21076
|
+
"inheritedFrom": {
|
|
21077
|
+
"name": "FoundationElement",
|
|
21078
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
21079
|
+
}
|
|
21080
|
+
}
|
|
21081
|
+
]
|
|
21082
|
+
},
|
|
21083
|
+
{
|
|
21084
|
+
"kind": "variable",
|
|
21085
|
+
"name": "rapidSchedulerCronBuilder"
|
|
21086
|
+
}
|
|
21087
|
+
],
|
|
21088
|
+
"exports": [
|
|
21089
|
+
{
|
|
21090
|
+
"kind": "js",
|
|
21091
|
+
"name": "SchedulerCronBuilder",
|
|
21092
|
+
"declaration": {
|
|
21093
|
+
"name": "SchedulerCronBuilder",
|
|
21094
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
21095
|
+
}
|
|
21096
|
+
},
|
|
21097
|
+
{
|
|
21098
|
+
"kind": "js",
|
|
21099
|
+
"name": "rapidSchedulerCronBuilder",
|
|
21100
|
+
"declaration": {
|
|
21101
|
+
"name": "rapidSchedulerCronBuilder",
|
|
21102
|
+
"module": "src/scheduler-cron-builder/scheduler-cron-builder.ts"
|
|
21103
|
+
}
|
|
21104
|
+
}
|
|
21105
|
+
]
|
|
21106
|
+
},
|
|
20772
21107
|
{
|
|
20773
21108
|
"kind": "javascript-module",
|
|
20774
21109
|
"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
|
+
rapidSchedulerCronBuilder: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
165
|
+
baseName: string;
|
|
166
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./scheduler-cron-builder").SchedulerCronBuilder, 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-cron-builder").SchedulerCronBuilder, any>;
|
|
172
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
173
|
+
shadowOptions: ShadowRootInit;
|
|
174
|
+
}, typeof import("./scheduler-cron-builder").SchedulerCronBuilder>;
|
|
164
175
|
rapidSearchBar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
165
176
|
baseName: string;
|
|
166
177
|
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;AAgF5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBA6EJ,SAAS,WAAW,GAAG,EAAE;CAe/C,CAAC"}
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export * from './progress';
|
|
|
52
52
|
export * from './progress-ring';
|
|
53
53
|
export * from './radio';
|
|
54
54
|
export * from './radio-group';
|
|
55
|
+
export * from './scheduler-cron-builder';
|
|
55
56
|
export * from './search-bar';
|
|
56
57
|
export * from './segmented-control';
|
|
57
58
|
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,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,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,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;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,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,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,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;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SchedulerCronBuilder as FoundationSchedulerCronBuilder } from '@genesislcap/foundation-ui';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-scheduler-cron-builder
|
|
4
|
+
*/
|
|
5
|
+
export declare class SchedulerCronBuilder extends FoundationSchedulerCronBuilder {
|
|
6
|
+
}
|
|
7
|
+
export declare const rapidSchedulerCronBuilder: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
8
|
+
baseName: string;
|
|
9
|
+
template: import("@microsoft/fast-element").ViewTemplate<SchedulerCronBuilder, 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<SchedulerCronBuilder, any>;
|
|
15
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
16
|
+
shadowOptions: ShadowRootInit;
|
|
17
|
+
}, typeof SchedulerCronBuilder>;
|
|
18
|
+
//# sourceMappingURL=scheduler-cron-builder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-cron-builder.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,oBAAoB,IAAI,8BAA8B,EACvD,MAAM,4BAA4B,CAAC;AAIpC;;GAEG;AACH,qBAAa,oBAAqB,SAAQ,8BAA8B;CAAG;AAE3E,eAAO,MAAM,yBAAyB;;;;;;;;;;+BAMpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-cron-builder.styles.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,+BAA+B,EAAE,aAM7C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduler-cron-builder.template.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAErE,eAAO,MAAM,iCAAiC,2EAE7C,CAAC"}
|
|
@@ -49,6 +49,7 @@ 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 { rapidSchedulerCronBuilder } from './scheduler-cron-builder';
|
|
52
53
|
import { rapidSearchBar, rapidSearchBarCombobox } from './search-bar';
|
|
53
54
|
import { rapidSegmentedControl } from './segmented-control';
|
|
54
55
|
import { rapidSegmentedItem } from './segmented-item';
|
|
@@ -123,6 +124,7 @@ export const baseComponents = {
|
|
|
123
124
|
rapidProgressRing,
|
|
124
125
|
rapidRadio,
|
|
125
126
|
rapidRadioGroup,
|
|
127
|
+
rapidSchedulerCronBuilder,
|
|
126
128
|
rapidSearchBar,
|
|
127
129
|
rapidSearchBarCombobox,
|
|
128
130
|
rapidSegmentedControl,
|
package/dist/esm/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export * from './progress';
|
|
|
52
52
|
export * from './progress-ring';
|
|
53
53
|
export * from './radio';
|
|
54
54
|
export * from './radio-group';
|
|
55
|
+
export * from './scheduler-cron-builder';
|
|
55
56
|
export * from './search-bar';
|
|
56
57
|
export * from './segmented-control';
|
|
57
58
|
export * from './segmented-item';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { defaultCronBuilderConfig, foundationSchedulerCronBuilderShadowOptions, SchedulerCronBuilder as FoundationSchedulerCronBuilder, } from '@genesislcap/foundation-ui';
|
|
2
|
+
import { rapidSchedulerCronBuilderStyles as styles } from './scheduler-cron-builder.styles';
|
|
3
|
+
import { rapidSchedulerCronBuilderTemplate as template } from './scheduler-cron-builder.template';
|
|
4
|
+
/**
|
|
5
|
+
* @tagname %%prefix%%-scheduler-cron-builder
|
|
6
|
+
*/
|
|
7
|
+
export class SchedulerCronBuilder extends FoundationSchedulerCronBuilder {
|
|
8
|
+
}
|
|
9
|
+
export const rapidSchedulerCronBuilder = SchedulerCronBuilder.compose(Object.assign({ baseName: 'scheduler-cron-builder', template,
|
|
10
|
+
styles, shadowOptions: foundationSchedulerCronBuilderShadowOptions }, defaultCronBuilderConfig));
|
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.247.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.247.0",
|
|
37
|
+
"@genesislcap/rollup-builder": "14.247.0",
|
|
38
|
+
"@genesislcap/ts-builder": "14.247.0",
|
|
39
|
+
"@genesislcap/uvu-playwright-builder": "14.247.0",
|
|
40
|
+
"@genesislcap/vite-builder": "14.247.0",
|
|
41
|
+
"@genesislcap/webpack-builder": "14.247.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.247.0",
|
|
46
|
+
"@genesislcap/foundation-ui": "14.247.0",
|
|
47
|
+
"@genesislcap/foundation-utils": "14.247.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": "9cd68112136258054e34caf77fe02117276dc87c"
|
|
66
66
|
}
|