@esri/calcite-components-react 1.6.0-next.7 → 1.6.1-next.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/auto-define.d.ts +1 -0
- package/dist/auto-define.js +19 -0
- package/dist/components.js +101 -200
- package/package.json +5 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function autoDefine(component: string): () => Promise<void> | undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
const isBrowser = () => ![typeof window, typeof document, typeof location].includes("undefined") &&
|
|
11
|
+
[typeof process, typeof global].includes("undefined") &&
|
|
12
|
+
window.location === location &&
|
|
13
|
+
window.document === document;
|
|
14
|
+
export function autoDefine(component) {
|
|
15
|
+
if (isBrowser()) {
|
|
16
|
+
return () => __awaiter(this, void 0, void 0, function* () { return (yield import(`@esri/calcite-components/dist/components/${component}.js`)).defineCustomElement(); });
|
|
17
|
+
}
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
package/dist/components.js
CHANGED
|
@@ -2,203 +2,104 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated react proxies */
|
|
4
4
|
import { createReactComponent } from './react-component-lib';
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
export const
|
|
106
|
-
export const CalciteAccordionItem = /*@__PURE__*/ createReactComponent('calcite-accordion-item', undefined, undefined, defineCalciteAccordionItem);
|
|
107
|
-
export const CalciteAction = /*@__PURE__*/ createReactComponent('calcite-action', undefined, undefined, defineCalciteAction);
|
|
108
|
-
export const CalciteActionBar = /*@__PURE__*/ createReactComponent('calcite-action-bar', undefined, undefined, defineCalciteActionBar);
|
|
109
|
-
export const CalciteActionGroup = /*@__PURE__*/ createReactComponent('calcite-action-group', undefined, undefined, defineCalciteActionGroup);
|
|
110
|
-
export const CalciteActionMenu = /*@__PURE__*/ createReactComponent('calcite-action-menu', undefined, undefined, defineCalciteActionMenu);
|
|
111
|
-
export const CalciteActionPad = /*@__PURE__*/ createReactComponent('calcite-action-pad', undefined, undefined, defineCalciteActionPad);
|
|
112
|
-
export const CalciteAlert = /*@__PURE__*/ createReactComponent('calcite-alert', undefined, undefined, defineCalciteAlert);
|
|
113
|
-
export const CalciteAvatar = /*@__PURE__*/ createReactComponent('calcite-avatar', undefined, undefined, defineCalciteAvatar);
|
|
114
|
-
export const CalciteBlock = /*@__PURE__*/ createReactComponent('calcite-block', undefined, undefined, defineCalciteBlock);
|
|
115
|
-
export const CalciteBlockSection = /*@__PURE__*/ createReactComponent('calcite-block-section', undefined, undefined, defineCalciteBlockSection);
|
|
116
|
-
export const CalciteButton = /*@__PURE__*/ createReactComponent('calcite-button', undefined, undefined, defineCalciteButton);
|
|
117
|
-
export const CalciteCard = /*@__PURE__*/ createReactComponent('calcite-card', undefined, undefined, defineCalciteCard);
|
|
118
|
-
export const CalciteCheckbox = /*@__PURE__*/ createReactComponent('calcite-checkbox', undefined, undefined, defineCalciteCheckbox);
|
|
119
|
-
export const CalciteChip = /*@__PURE__*/ createReactComponent('calcite-chip', undefined, undefined, defineCalciteChip);
|
|
120
|
-
export const CalciteChipGroup = /*@__PURE__*/ createReactComponent('calcite-chip-group', undefined, undefined, defineCalciteChipGroup);
|
|
121
|
-
export const CalciteColorPicker = /*@__PURE__*/ createReactComponent('calcite-color-picker', undefined, undefined, defineCalciteColorPicker);
|
|
122
|
-
export const CalciteColorPickerHexInput = /*@__PURE__*/ createReactComponent('calcite-color-picker-hex-input', undefined, undefined, defineCalciteColorPickerHexInput);
|
|
123
|
-
export const CalciteColorPickerSwatch = /*@__PURE__*/ createReactComponent('calcite-color-picker-swatch', undefined, undefined, defineCalciteColorPickerSwatch);
|
|
124
|
-
export const CalciteCombobox = /*@__PURE__*/ createReactComponent('calcite-combobox', undefined, undefined, defineCalciteCombobox);
|
|
125
|
-
export const CalciteComboboxItem = /*@__PURE__*/ createReactComponent('calcite-combobox-item', undefined, undefined, defineCalciteComboboxItem);
|
|
126
|
-
export const CalciteComboboxItemGroup = /*@__PURE__*/ createReactComponent('calcite-combobox-item-group', undefined, undefined, defineCalciteComboboxItemGroup);
|
|
127
|
-
export const CalciteDatePicker = /*@__PURE__*/ createReactComponent('calcite-date-picker', undefined, undefined, defineCalciteDatePicker);
|
|
128
|
-
export const CalciteDatePickerDay = /*@__PURE__*/ createReactComponent('calcite-date-picker-day', undefined, undefined, defineCalciteDatePickerDay);
|
|
129
|
-
export const CalciteDatePickerMonth = /*@__PURE__*/ createReactComponent('calcite-date-picker-month', undefined, undefined, defineCalciteDatePickerMonth);
|
|
130
|
-
export const CalciteDatePickerMonthHeader = /*@__PURE__*/ createReactComponent('calcite-date-picker-month-header', undefined, undefined, defineCalciteDatePickerMonthHeader);
|
|
131
|
-
export const CalciteDropdown = /*@__PURE__*/ createReactComponent('calcite-dropdown', undefined, undefined, defineCalciteDropdown);
|
|
132
|
-
export const CalciteDropdownGroup = /*@__PURE__*/ createReactComponent('calcite-dropdown-group', undefined, undefined, defineCalciteDropdownGroup);
|
|
133
|
-
export const CalciteDropdownItem = /*@__PURE__*/ createReactComponent('calcite-dropdown-item', undefined, undefined, defineCalciteDropdownItem);
|
|
134
|
-
export const CalciteFab = /*@__PURE__*/ createReactComponent('calcite-fab', undefined, undefined, defineCalciteFab);
|
|
135
|
-
export const CalciteFilter = /*@__PURE__*/ createReactComponent('calcite-filter', undefined, undefined, defineCalciteFilter);
|
|
136
|
-
export const CalciteFlow = /*@__PURE__*/ createReactComponent('calcite-flow', undefined, undefined, defineCalciteFlow);
|
|
137
|
-
export const CalciteFlowItem = /*@__PURE__*/ createReactComponent('calcite-flow-item', undefined, undefined, defineCalciteFlowItem);
|
|
138
|
-
export const CalciteGraph = /*@__PURE__*/ createReactComponent('calcite-graph', undefined, undefined, defineCalciteGraph);
|
|
139
|
-
export const CalciteHandle = /*@__PURE__*/ createReactComponent('calcite-handle', undefined, undefined, defineCalciteHandle);
|
|
140
|
-
export const CalciteIcon = /*@__PURE__*/ createReactComponent('calcite-icon', undefined, undefined, defineCalciteIcon);
|
|
141
|
-
export const CalciteInlineEditable = /*@__PURE__*/ createReactComponent('calcite-inline-editable', undefined, undefined, defineCalciteInlineEditable);
|
|
142
|
-
export const CalciteInput = /*@__PURE__*/ createReactComponent('calcite-input', undefined, undefined, defineCalciteInput);
|
|
143
|
-
export const CalciteInputDatePicker = /*@__PURE__*/ createReactComponent('calcite-input-date-picker', undefined, undefined, defineCalciteInputDatePicker);
|
|
144
|
-
export const CalciteInputMessage = /*@__PURE__*/ createReactComponent('calcite-input-message', undefined, undefined, defineCalciteInputMessage);
|
|
145
|
-
export const CalciteInputNumber = /*@__PURE__*/ createReactComponent('calcite-input-number', undefined, undefined, defineCalciteInputNumber);
|
|
146
|
-
export const CalciteInputText = /*@__PURE__*/ createReactComponent('calcite-input-text', undefined, undefined, defineCalciteInputText);
|
|
147
|
-
export const CalciteInputTimePicker = /*@__PURE__*/ createReactComponent('calcite-input-time-picker', undefined, undefined, defineCalciteInputTimePicker);
|
|
148
|
-
export const CalciteInputTimeZone = /*@__PURE__*/ createReactComponent('calcite-input-time-zone', undefined, undefined, defineCalciteInputTimeZone);
|
|
149
|
-
export const CalciteLabel = /*@__PURE__*/ createReactComponent('calcite-label', undefined, undefined, defineCalciteLabel);
|
|
150
|
-
export const CalciteLink = /*@__PURE__*/ createReactComponent('calcite-link', undefined, undefined, defineCalciteLink);
|
|
151
|
-
export const CalciteList = /*@__PURE__*/ createReactComponent('calcite-list', undefined, undefined, defineCalciteList);
|
|
152
|
-
export const CalciteListItem = /*@__PURE__*/ createReactComponent('calcite-list-item', undefined, undefined, defineCalciteListItem);
|
|
153
|
-
export const CalciteListItemGroup = /*@__PURE__*/ createReactComponent('calcite-list-item-group', undefined, undefined, defineCalciteListItemGroup);
|
|
154
|
-
export const CalciteLoader = /*@__PURE__*/ createReactComponent('calcite-loader', undefined, undefined, defineCalciteLoader);
|
|
155
|
-
export const CalciteMenu = /*@__PURE__*/ createReactComponent('calcite-menu', undefined, undefined, defineCalciteMenu);
|
|
156
|
-
export const CalciteMenuItem = /*@__PURE__*/ createReactComponent('calcite-menu-item', undefined, undefined, defineCalciteMenuItem);
|
|
157
|
-
export const CalciteModal = /*@__PURE__*/ createReactComponent('calcite-modal', undefined, undefined, defineCalciteModal);
|
|
158
|
-
export const CalciteNavigation = /*@__PURE__*/ createReactComponent('calcite-navigation', undefined, undefined, defineCalciteNavigation);
|
|
159
|
-
export const CalciteNavigationLogo = /*@__PURE__*/ createReactComponent('calcite-navigation-logo', undefined, undefined, defineCalciteNavigationLogo);
|
|
160
|
-
export const CalciteNavigationUser = /*@__PURE__*/ createReactComponent('calcite-navigation-user', undefined, undefined, defineCalciteNavigationUser);
|
|
161
|
-
export const CalciteNotice = /*@__PURE__*/ createReactComponent('calcite-notice', undefined, undefined, defineCalciteNotice);
|
|
162
|
-
export const CalciteOption = /*@__PURE__*/ createReactComponent('calcite-option', undefined, undefined, defineCalciteOption);
|
|
163
|
-
export const CalciteOptionGroup = /*@__PURE__*/ createReactComponent('calcite-option-group', undefined, undefined, defineCalciteOptionGroup);
|
|
164
|
-
export const CalcitePagination = /*@__PURE__*/ createReactComponent('calcite-pagination', undefined, undefined, defineCalcitePagination);
|
|
165
|
-
export const CalcitePanel = /*@__PURE__*/ createReactComponent('calcite-panel', undefined, undefined, defineCalcitePanel);
|
|
166
|
-
export const CalcitePickList = /*@__PURE__*/ createReactComponent('calcite-pick-list', undefined, undefined, defineCalcitePickList);
|
|
167
|
-
export const CalcitePickListGroup = /*@__PURE__*/ createReactComponent('calcite-pick-list-group', undefined, undefined, defineCalcitePickListGroup);
|
|
168
|
-
export const CalcitePickListItem = /*@__PURE__*/ createReactComponent('calcite-pick-list-item', undefined, undefined, defineCalcitePickListItem);
|
|
169
|
-
export const CalcitePopover = /*@__PURE__*/ createReactComponent('calcite-popover', undefined, undefined, defineCalcitePopover);
|
|
170
|
-
export const CalciteProgress = /*@__PURE__*/ createReactComponent('calcite-progress', undefined, undefined, defineCalciteProgress);
|
|
171
|
-
export const CalciteRadioButton = /*@__PURE__*/ createReactComponent('calcite-radio-button', undefined, undefined, defineCalciteRadioButton);
|
|
172
|
-
export const CalciteRadioButtonGroup = /*@__PURE__*/ createReactComponent('calcite-radio-button-group', undefined, undefined, defineCalciteRadioButtonGroup);
|
|
173
|
-
export const CalciteRating = /*@__PURE__*/ createReactComponent('calcite-rating', undefined, undefined, defineCalciteRating);
|
|
174
|
-
export const CalciteScrim = /*@__PURE__*/ createReactComponent('calcite-scrim', undefined, undefined, defineCalciteScrim);
|
|
175
|
-
export const CalciteSegmentedControl = /*@__PURE__*/ createReactComponent('calcite-segmented-control', undefined, undefined, defineCalciteSegmentedControl);
|
|
176
|
-
export const CalciteSegmentedControlItem = /*@__PURE__*/ createReactComponent('calcite-segmented-control-item', undefined, undefined, defineCalciteSegmentedControlItem);
|
|
177
|
-
export const CalciteSelect = /*@__PURE__*/ createReactComponent('calcite-select', undefined, undefined, defineCalciteSelect);
|
|
178
|
-
export const CalciteShell = /*@__PURE__*/ createReactComponent('calcite-shell', undefined, undefined, defineCalciteShell);
|
|
179
|
-
export const CalciteShellCenterRow = /*@__PURE__*/ createReactComponent('calcite-shell-center-row', undefined, undefined, defineCalciteShellCenterRow);
|
|
180
|
-
export const CalciteShellPanel = /*@__PURE__*/ createReactComponent('calcite-shell-panel', undefined, undefined, defineCalciteShellPanel);
|
|
181
|
-
export const CalciteSlider = /*@__PURE__*/ createReactComponent('calcite-slider', undefined, undefined, defineCalciteSlider);
|
|
182
|
-
export const CalciteSortableList = /*@__PURE__*/ createReactComponent('calcite-sortable-list', undefined, undefined, defineCalciteSortableList);
|
|
183
|
-
export const CalciteSplitButton = /*@__PURE__*/ createReactComponent('calcite-split-button', undefined, undefined, defineCalciteSplitButton);
|
|
184
|
-
export const CalciteStack = /*@__PURE__*/ createReactComponent('calcite-stack', undefined, undefined, defineCalciteStack);
|
|
185
|
-
export const CalciteStepper = /*@__PURE__*/ createReactComponent('calcite-stepper', undefined, undefined, defineCalciteStepper);
|
|
186
|
-
export const CalciteStepperItem = /*@__PURE__*/ createReactComponent('calcite-stepper-item', undefined, undefined, defineCalciteStepperItem);
|
|
187
|
-
export const CalciteSwitch = /*@__PURE__*/ createReactComponent('calcite-switch', undefined, undefined, defineCalciteSwitch);
|
|
188
|
-
export const CalciteTab = /*@__PURE__*/ createReactComponent('calcite-tab', undefined, undefined, defineCalciteTab);
|
|
189
|
-
export const CalciteTabNav = /*@__PURE__*/ createReactComponent('calcite-tab-nav', undefined, undefined, defineCalciteTabNav);
|
|
190
|
-
export const CalciteTabTitle = /*@__PURE__*/ createReactComponent('calcite-tab-title', undefined, undefined, defineCalciteTabTitle);
|
|
191
|
-
export const CalciteTabs = /*@__PURE__*/ createReactComponent('calcite-tabs', undefined, undefined, defineCalciteTabs);
|
|
192
|
-
export const CalciteTextArea = /*@__PURE__*/ createReactComponent('calcite-text-area', undefined, undefined, defineCalciteTextArea);
|
|
193
|
-
export const CalciteTile = /*@__PURE__*/ createReactComponent('calcite-tile', undefined, undefined, defineCalciteTile);
|
|
194
|
-
export const CalciteTileSelect = /*@__PURE__*/ createReactComponent('calcite-tile-select', undefined, undefined, defineCalciteTileSelect);
|
|
195
|
-
export const CalciteTileSelectGroup = /*@__PURE__*/ createReactComponent('calcite-tile-select-group', undefined, undefined, defineCalciteTileSelectGroup);
|
|
196
|
-
export const CalciteTimePicker = /*@__PURE__*/ createReactComponent('calcite-time-picker', undefined, undefined, defineCalciteTimePicker);
|
|
197
|
-
export const CalciteTip = /*@__PURE__*/ createReactComponent('calcite-tip', undefined, undefined, defineCalciteTip);
|
|
198
|
-
export const CalciteTipGroup = /*@__PURE__*/ createReactComponent('calcite-tip-group', undefined, undefined, defineCalciteTipGroup);
|
|
199
|
-
export const CalciteTipManager = /*@__PURE__*/ createReactComponent('calcite-tip-manager', undefined, undefined, defineCalciteTipManager);
|
|
200
|
-
export const CalciteTooltip = /*@__PURE__*/ createReactComponent('calcite-tooltip', undefined, undefined, defineCalciteTooltip);
|
|
201
|
-
export const CalciteTree = /*@__PURE__*/ createReactComponent('calcite-tree', undefined, undefined, defineCalciteTree);
|
|
202
|
-
export const CalciteTreeItem = /*@__PURE__*/ createReactComponent('calcite-tree-item', undefined, undefined, defineCalciteTreeItem);
|
|
203
|
-
export const CalciteValueList = /*@__PURE__*/ createReactComponent('calcite-value-list', undefined, undefined, defineCalciteValueList);
|
|
204
|
-
export const CalciteValueListItem = /*@__PURE__*/ createReactComponent('calcite-value-list-item', undefined, undefined, defineCalciteValueListItem);
|
|
5
|
+
import { autoDefine } from './auto-define';
|
|
6
|
+
export const CalciteAccordion = /*@__PURE__*/ createReactComponent('calcite-accordion', undefined, undefined, autoDefine('calcite-accordion'));
|
|
7
|
+
export const CalciteAccordionItem = /*@__PURE__*/ createReactComponent('calcite-accordion-item', undefined, undefined, autoDefine('calcite-accordion-item'));
|
|
8
|
+
export const CalciteAction = /*@__PURE__*/ createReactComponent('calcite-action', undefined, undefined, autoDefine('calcite-action'));
|
|
9
|
+
export const CalciteActionBar = /*@__PURE__*/ createReactComponent('calcite-action-bar', undefined, undefined, autoDefine('calcite-action-bar'));
|
|
10
|
+
export const CalciteActionGroup = /*@__PURE__*/ createReactComponent('calcite-action-group', undefined, undefined, autoDefine('calcite-action-group'));
|
|
11
|
+
export const CalciteActionMenu = /*@__PURE__*/ createReactComponent('calcite-action-menu', undefined, undefined, autoDefine('calcite-action-menu'));
|
|
12
|
+
export const CalciteActionPad = /*@__PURE__*/ createReactComponent('calcite-action-pad', undefined, undefined, autoDefine('calcite-action-pad'));
|
|
13
|
+
export const CalciteAlert = /*@__PURE__*/ createReactComponent('calcite-alert', undefined, undefined, autoDefine('calcite-alert'));
|
|
14
|
+
export const CalciteAvatar = /*@__PURE__*/ createReactComponent('calcite-avatar', undefined, undefined, autoDefine('calcite-avatar'));
|
|
15
|
+
export const CalciteBlock = /*@__PURE__*/ createReactComponent('calcite-block', undefined, undefined, autoDefine('calcite-block'));
|
|
16
|
+
export const CalciteBlockSection = /*@__PURE__*/ createReactComponent('calcite-block-section', undefined, undefined, autoDefine('calcite-block-section'));
|
|
17
|
+
export const CalciteButton = /*@__PURE__*/ createReactComponent('calcite-button', undefined, undefined, autoDefine('calcite-button'));
|
|
18
|
+
export const CalciteCard = /*@__PURE__*/ createReactComponent('calcite-card', undefined, undefined, autoDefine('calcite-card'));
|
|
19
|
+
export const CalciteCheckbox = /*@__PURE__*/ createReactComponent('calcite-checkbox', undefined, undefined, autoDefine('calcite-checkbox'));
|
|
20
|
+
export const CalciteChip = /*@__PURE__*/ createReactComponent('calcite-chip', undefined, undefined, autoDefine('calcite-chip'));
|
|
21
|
+
export const CalciteChipGroup = /*@__PURE__*/ createReactComponent('calcite-chip-group', undefined, undefined, autoDefine('calcite-chip-group'));
|
|
22
|
+
export const CalciteColorPicker = /*@__PURE__*/ createReactComponent('calcite-color-picker', undefined, undefined, autoDefine('calcite-color-picker'));
|
|
23
|
+
export const CalciteColorPickerHexInput = /*@__PURE__*/ createReactComponent('calcite-color-picker-hex-input', undefined, undefined, autoDefine('calcite-color-picker-hex-input'));
|
|
24
|
+
export const CalciteColorPickerSwatch = /*@__PURE__*/ createReactComponent('calcite-color-picker-swatch', undefined, undefined, autoDefine('calcite-color-picker-swatch'));
|
|
25
|
+
export const CalciteCombobox = /*@__PURE__*/ createReactComponent('calcite-combobox', undefined, undefined, autoDefine('calcite-combobox'));
|
|
26
|
+
export const CalciteComboboxItem = /*@__PURE__*/ createReactComponent('calcite-combobox-item', undefined, undefined, autoDefine('calcite-combobox-item'));
|
|
27
|
+
export const CalciteComboboxItemGroup = /*@__PURE__*/ createReactComponent('calcite-combobox-item-group', undefined, undefined, autoDefine('calcite-combobox-item-group'));
|
|
28
|
+
export const CalciteDatePicker = /*@__PURE__*/ createReactComponent('calcite-date-picker', undefined, undefined, autoDefine('calcite-date-picker'));
|
|
29
|
+
export const CalciteDatePickerDay = /*@__PURE__*/ createReactComponent('calcite-date-picker-day', undefined, undefined, autoDefine('calcite-date-picker-day'));
|
|
30
|
+
export const CalciteDatePickerMonth = /*@__PURE__*/ createReactComponent('calcite-date-picker-month', undefined, undefined, autoDefine('calcite-date-picker-month'));
|
|
31
|
+
export const CalciteDatePickerMonthHeader = /*@__PURE__*/ createReactComponent('calcite-date-picker-month-header', undefined, undefined, autoDefine('calcite-date-picker-month-header'));
|
|
32
|
+
export const CalciteDropdown = /*@__PURE__*/ createReactComponent('calcite-dropdown', undefined, undefined, autoDefine('calcite-dropdown'));
|
|
33
|
+
export const CalciteDropdownGroup = /*@__PURE__*/ createReactComponent('calcite-dropdown-group', undefined, undefined, autoDefine('calcite-dropdown-group'));
|
|
34
|
+
export const CalciteDropdownItem = /*@__PURE__*/ createReactComponent('calcite-dropdown-item', undefined, undefined, autoDefine('calcite-dropdown-item'));
|
|
35
|
+
export const CalciteFab = /*@__PURE__*/ createReactComponent('calcite-fab', undefined, undefined, autoDefine('calcite-fab'));
|
|
36
|
+
export const CalciteFilter = /*@__PURE__*/ createReactComponent('calcite-filter', undefined, undefined, autoDefine('calcite-filter'));
|
|
37
|
+
export const CalciteFlow = /*@__PURE__*/ createReactComponent('calcite-flow', undefined, undefined, autoDefine('calcite-flow'));
|
|
38
|
+
export const CalciteFlowItem = /*@__PURE__*/ createReactComponent('calcite-flow-item', undefined, undefined, autoDefine('calcite-flow-item'));
|
|
39
|
+
export const CalciteGraph = /*@__PURE__*/ createReactComponent('calcite-graph', undefined, undefined, autoDefine('calcite-graph'));
|
|
40
|
+
export const CalciteHandle = /*@__PURE__*/ createReactComponent('calcite-handle', undefined, undefined, autoDefine('calcite-handle'));
|
|
41
|
+
export const CalciteIcon = /*@__PURE__*/ createReactComponent('calcite-icon', undefined, undefined, autoDefine('calcite-icon'));
|
|
42
|
+
export const CalciteInlineEditable = /*@__PURE__*/ createReactComponent('calcite-inline-editable', undefined, undefined, autoDefine('calcite-inline-editable'));
|
|
43
|
+
export const CalciteInput = /*@__PURE__*/ createReactComponent('calcite-input', undefined, undefined, autoDefine('calcite-input'));
|
|
44
|
+
export const CalciteInputDatePicker = /*@__PURE__*/ createReactComponent('calcite-input-date-picker', undefined, undefined, autoDefine('calcite-input-date-picker'));
|
|
45
|
+
export const CalciteInputMessage = /*@__PURE__*/ createReactComponent('calcite-input-message', undefined, undefined, autoDefine('calcite-input-message'));
|
|
46
|
+
export const CalciteInputNumber = /*@__PURE__*/ createReactComponent('calcite-input-number', undefined, undefined, autoDefine('calcite-input-number'));
|
|
47
|
+
export const CalciteInputText = /*@__PURE__*/ createReactComponent('calcite-input-text', undefined, undefined, autoDefine('calcite-input-text'));
|
|
48
|
+
export const CalciteInputTimePicker = /*@__PURE__*/ createReactComponent('calcite-input-time-picker', undefined, undefined, autoDefine('calcite-input-time-picker'));
|
|
49
|
+
export const CalciteInputTimeZone = /*@__PURE__*/ createReactComponent('calcite-input-time-zone', undefined, undefined, autoDefine('calcite-input-time-zone'));
|
|
50
|
+
export const CalciteLabel = /*@__PURE__*/ createReactComponent('calcite-label', undefined, undefined, autoDefine('calcite-label'));
|
|
51
|
+
export const CalciteLink = /*@__PURE__*/ createReactComponent('calcite-link', undefined, undefined, autoDefine('calcite-link'));
|
|
52
|
+
export const CalciteList = /*@__PURE__*/ createReactComponent('calcite-list', undefined, undefined, autoDefine('calcite-list'));
|
|
53
|
+
export const CalciteListItem = /*@__PURE__*/ createReactComponent('calcite-list-item', undefined, undefined, autoDefine('calcite-list-item'));
|
|
54
|
+
export const CalciteListItemGroup = /*@__PURE__*/ createReactComponent('calcite-list-item-group', undefined, undefined, autoDefine('calcite-list-item-group'));
|
|
55
|
+
export const CalciteLoader = /*@__PURE__*/ createReactComponent('calcite-loader', undefined, undefined, autoDefine('calcite-loader'));
|
|
56
|
+
export const CalciteMenu = /*@__PURE__*/ createReactComponent('calcite-menu', undefined, undefined, autoDefine('calcite-menu'));
|
|
57
|
+
export const CalciteMenuItem = /*@__PURE__*/ createReactComponent('calcite-menu-item', undefined, undefined, autoDefine('calcite-menu-item'));
|
|
58
|
+
export const CalciteModal = /*@__PURE__*/ createReactComponent('calcite-modal', undefined, undefined, autoDefine('calcite-modal'));
|
|
59
|
+
export const CalciteNavigation = /*@__PURE__*/ createReactComponent('calcite-navigation', undefined, undefined, autoDefine('calcite-navigation'));
|
|
60
|
+
export const CalciteNavigationLogo = /*@__PURE__*/ createReactComponent('calcite-navigation-logo', undefined, undefined, autoDefine('calcite-navigation-logo'));
|
|
61
|
+
export const CalciteNavigationUser = /*@__PURE__*/ createReactComponent('calcite-navigation-user', undefined, undefined, autoDefine('calcite-navigation-user'));
|
|
62
|
+
export const CalciteNotice = /*@__PURE__*/ createReactComponent('calcite-notice', undefined, undefined, autoDefine('calcite-notice'));
|
|
63
|
+
export const CalciteOption = /*@__PURE__*/ createReactComponent('calcite-option', undefined, undefined, autoDefine('calcite-option'));
|
|
64
|
+
export const CalciteOptionGroup = /*@__PURE__*/ createReactComponent('calcite-option-group', undefined, undefined, autoDefine('calcite-option-group'));
|
|
65
|
+
export const CalcitePagination = /*@__PURE__*/ createReactComponent('calcite-pagination', undefined, undefined, autoDefine('calcite-pagination'));
|
|
66
|
+
export const CalcitePanel = /*@__PURE__*/ createReactComponent('calcite-panel', undefined, undefined, autoDefine('calcite-panel'));
|
|
67
|
+
export const CalcitePickList = /*@__PURE__*/ createReactComponent('calcite-pick-list', undefined, undefined, autoDefine('calcite-pick-list'));
|
|
68
|
+
export const CalcitePickListGroup = /*@__PURE__*/ createReactComponent('calcite-pick-list-group', undefined, undefined, autoDefine('calcite-pick-list-group'));
|
|
69
|
+
export const CalcitePickListItem = /*@__PURE__*/ createReactComponent('calcite-pick-list-item', undefined, undefined, autoDefine('calcite-pick-list-item'));
|
|
70
|
+
export const CalcitePopover = /*@__PURE__*/ createReactComponent('calcite-popover', undefined, undefined, autoDefine('calcite-popover'));
|
|
71
|
+
export const CalciteProgress = /*@__PURE__*/ createReactComponent('calcite-progress', undefined, undefined, autoDefine('calcite-progress'));
|
|
72
|
+
export const CalciteRadioButton = /*@__PURE__*/ createReactComponent('calcite-radio-button', undefined, undefined, autoDefine('calcite-radio-button'));
|
|
73
|
+
export const CalciteRadioButtonGroup = /*@__PURE__*/ createReactComponent('calcite-radio-button-group', undefined, undefined, autoDefine('calcite-radio-button-group'));
|
|
74
|
+
export const CalciteRating = /*@__PURE__*/ createReactComponent('calcite-rating', undefined, undefined, autoDefine('calcite-rating'));
|
|
75
|
+
export const CalciteScrim = /*@__PURE__*/ createReactComponent('calcite-scrim', undefined, undefined, autoDefine('calcite-scrim'));
|
|
76
|
+
export const CalciteSegmentedControl = /*@__PURE__*/ createReactComponent('calcite-segmented-control', undefined, undefined, autoDefine('calcite-segmented-control'));
|
|
77
|
+
export const CalciteSegmentedControlItem = /*@__PURE__*/ createReactComponent('calcite-segmented-control-item', undefined, undefined, autoDefine('calcite-segmented-control-item'));
|
|
78
|
+
export const CalciteSelect = /*@__PURE__*/ createReactComponent('calcite-select', undefined, undefined, autoDefine('calcite-select'));
|
|
79
|
+
export const CalciteShell = /*@__PURE__*/ createReactComponent('calcite-shell', undefined, undefined, autoDefine('calcite-shell'));
|
|
80
|
+
export const CalciteShellCenterRow = /*@__PURE__*/ createReactComponent('calcite-shell-center-row', undefined, undefined, autoDefine('calcite-shell-center-row'));
|
|
81
|
+
export const CalciteShellPanel = /*@__PURE__*/ createReactComponent('calcite-shell-panel', undefined, undefined, autoDefine('calcite-shell-panel'));
|
|
82
|
+
export const CalciteSlider = /*@__PURE__*/ createReactComponent('calcite-slider', undefined, undefined, autoDefine('calcite-slider'));
|
|
83
|
+
export const CalciteSortableList = /*@__PURE__*/ createReactComponent('calcite-sortable-list', undefined, undefined, autoDefine('calcite-sortable-list'));
|
|
84
|
+
export const CalciteSplitButton = /*@__PURE__*/ createReactComponent('calcite-split-button', undefined, undefined, autoDefine('calcite-split-button'));
|
|
85
|
+
export const CalciteStack = /*@__PURE__*/ createReactComponent('calcite-stack', undefined, undefined, autoDefine('calcite-stack'));
|
|
86
|
+
export const CalciteStepper = /*@__PURE__*/ createReactComponent('calcite-stepper', undefined, undefined, autoDefine('calcite-stepper'));
|
|
87
|
+
export const CalciteStepperItem = /*@__PURE__*/ createReactComponent('calcite-stepper-item', undefined, undefined, autoDefine('calcite-stepper-item'));
|
|
88
|
+
export const CalciteSwitch = /*@__PURE__*/ createReactComponent('calcite-switch', undefined, undefined, autoDefine('calcite-switch'));
|
|
89
|
+
export const CalciteTab = /*@__PURE__*/ createReactComponent('calcite-tab', undefined, undefined, autoDefine('calcite-tab'));
|
|
90
|
+
export const CalciteTabNav = /*@__PURE__*/ createReactComponent('calcite-tab-nav', undefined, undefined, autoDefine('calcite-tab-nav'));
|
|
91
|
+
export const CalciteTabTitle = /*@__PURE__*/ createReactComponent('calcite-tab-title', undefined, undefined, autoDefine('calcite-tab-title'));
|
|
92
|
+
export const CalciteTabs = /*@__PURE__*/ createReactComponent('calcite-tabs', undefined, undefined, autoDefine('calcite-tabs'));
|
|
93
|
+
export const CalciteTextArea = /*@__PURE__*/ createReactComponent('calcite-text-area', undefined, undefined, autoDefine('calcite-text-area'));
|
|
94
|
+
export const CalciteTile = /*@__PURE__*/ createReactComponent('calcite-tile', undefined, undefined, autoDefine('calcite-tile'));
|
|
95
|
+
export const CalciteTileSelect = /*@__PURE__*/ createReactComponent('calcite-tile-select', undefined, undefined, autoDefine('calcite-tile-select'));
|
|
96
|
+
export const CalciteTileSelectGroup = /*@__PURE__*/ createReactComponent('calcite-tile-select-group', undefined, undefined, autoDefine('calcite-tile-select-group'));
|
|
97
|
+
export const CalciteTimePicker = /*@__PURE__*/ createReactComponent('calcite-time-picker', undefined, undefined, autoDefine('calcite-time-picker'));
|
|
98
|
+
export const CalciteTip = /*@__PURE__*/ createReactComponent('calcite-tip', undefined, undefined, autoDefine('calcite-tip'));
|
|
99
|
+
export const CalciteTipGroup = /*@__PURE__*/ createReactComponent('calcite-tip-group', undefined, undefined, autoDefine('calcite-tip-group'));
|
|
100
|
+
export const CalciteTipManager = /*@__PURE__*/ createReactComponent('calcite-tip-manager', undefined, undefined, autoDefine('calcite-tip-manager'));
|
|
101
|
+
export const CalciteTooltip = /*@__PURE__*/ createReactComponent('calcite-tooltip', undefined, undefined, autoDefine('calcite-tooltip'));
|
|
102
|
+
export const CalciteTree = /*@__PURE__*/ createReactComponent('calcite-tree', undefined, undefined, autoDefine('calcite-tree'));
|
|
103
|
+
export const CalciteTreeItem = /*@__PURE__*/ createReactComponent('calcite-tree-item', undefined, undefined, autoDefine('calcite-tree-item'));
|
|
104
|
+
export const CalciteValueList = /*@__PURE__*/ createReactComponent('calcite-value-list', undefined, undefined, autoDefine('calcite-value-list'));
|
|
105
|
+
export const CalciteValueListItem = /*@__PURE__*/ createReactComponent('calcite-value-list-item', undefined, undefined, autoDefine('calcite-value-list-item'));
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.1-next.0",
|
|
5
5
|
"description": "A set of React components that wrap calcite components",
|
|
6
6
|
"license": "SEE LICENSE.md",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "rimraf dist && npm run compile",
|
|
9
|
+
"prebuild": "npm run patch:ssr",
|
|
9
10
|
"clean": "rimraf dist node_modules .turbo",
|
|
10
11
|
"compile": "npm run tsc",
|
|
12
|
+
"patch:ssr": "ts-node support/patchSSR.ts",
|
|
11
13
|
"tsc": "tsc"
|
|
12
14
|
},
|
|
13
15
|
"main": "./dist/index.js",
|
|
@@ -17,7 +19,7 @@
|
|
|
17
19
|
"dist/"
|
|
18
20
|
],
|
|
19
21
|
"dependencies": {
|
|
20
|
-
"@esri/calcite-components": "^1.6.
|
|
22
|
+
"@esri/calcite-components": "^1.6.1-next.0"
|
|
21
23
|
},
|
|
22
24
|
"peerDependencies": {
|
|
23
25
|
"react": ">=16.7",
|
|
@@ -26,5 +28,5 @@
|
|
|
26
28
|
"volta": {
|
|
27
29
|
"extends": "../../package.json"
|
|
28
30
|
},
|
|
29
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "d829eda1b82cac7cfa62b9616d05072caead1ca5"
|
|
30
32
|
}
|