@vertexvis/ui 0.1.0-canary.2 → 0.1.0-canary.21
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/cjs/{color-circle-picker-13396ec4.js → color-circle-picker-a8f9a80a.js} +1 -1
- package/dist/cjs/color-picker-2a4820fa.js +46 -0
- package/dist/cjs/{color-circle-05be54bf.js → color-swatch-8aaf6c0b.js} +42 -17
- package/dist/cjs/components.cjs.js +1 -1
- package/dist/cjs/{dialog-88e2308a.js → dialog-34f1dd6e.js} +1 -1
- package/dist/cjs/dom-b6c5fbf4.js +13 -0
- package/dist/cjs/{icon-button-786427d6.js → icon-button-2256a63a.js} +1 -1
- package/dist/cjs/{icon-460fd0f5.js → icon-c3ab7a57.js} +1 -1
- package/dist/cjs/{icon-helper-ba408f49.js → icon-helper-35893713.js} +60 -0
- package/dist/cjs/index.cjs.js +20 -14
- package/dist/cjs/lib-1bd1e383.js +9 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{popover-d9ec8e10.js → popover-942209b8.js} +23 -1
- package/dist/cjs/{result-list-1e592c3c.js → result-list-241ffe8d.js} +46 -2
- package/dist/cjs/search-bar-2e7ee35a.js +527 -0
- package/dist/cjs/{select-0eb7203f.js → select-2b2bdb97.js} +27 -4
- package/dist/cjs/tab-4335cd8f.js +26 -0
- package/dist/cjs/tabs-ece62a01.js +111 -0
- package/dist/cjs/{text-field-0397fb34.js → text-field-bccbde1f.js} +1 -0
- package/dist/cjs/{tooltip-80a7b722.js → tooltip-9ac797a0.js} +59 -23
- package/dist/cjs/vertex-color-circle-picker.cjs.entry.js +1 -1
- package/dist/cjs/vertex-color-picker.cjs.entry.js +2 -1
- package/dist/cjs/vertex-color-swatch.cjs.entry.js +12 -0
- package/dist/cjs/vertex-dialog.cjs.entry.js +1 -1
- package/dist/cjs/vertex-icon-button.cjs.entry.js +2 -2
- package/dist/cjs/vertex-icon.cjs.entry.js +2 -2
- package/dist/cjs/vertex-popover.cjs.entry.js +1 -1
- package/dist/cjs/vertex-result-list.cjs.entry.js +1 -1
- package/dist/cjs/vertex-search-bar.cjs.entry.js +1 -1
- package/dist/cjs/vertex-select.cjs.entry.js +1 -1
- package/dist/cjs/{vertex-color-circle.cjs.entry.js → vertex-tab.cjs.entry.js} +3 -2
- package/dist/cjs/vertex-tabs.cjs.entry.js +12 -0
- package/dist/cjs/vertex-textfield.cjs.entry.js +1 -1
- package/dist/cjs/vertex-tooltip.cjs.entry.js +2 -1
- package/dist/collection/collection-manifest.json +5 -3
- package/dist/collection/components/color-circle-picker/color-circle-picker.js +7 -7
- package/dist/collection/components/color-picker/color-picker.css +95 -15
- package/dist/collection/components/color-picker/color-picker.js +57 -3
- package/dist/collection/components/color-swatch/color-swatch.css +43 -0
- package/dist/collection/components/{color-circle/color-circle.js → color-swatch/color-swatch.js} +96 -23
- package/dist/collection/components/color-swatch/lib.js +5 -0
- package/dist/collection/components/dialog/dialog.css +0 -1
- package/dist/collection/components/icon/icon-helper.js +33 -0
- package/dist/collection/components/icon/icon.js +1 -1
- package/dist/collection/components/icon/icons/caution.js +2 -0
- package/dist/collection/components/icon/icons/compare.js +2 -0
- package/dist/collection/components/icon/icons/compress.js +2 -0
- package/dist/collection/components/icon/icons/cube-stack.js +2 -0
- package/dist/collection/components/icon/icons/expand.js +2 -0
- package/dist/collection/components/icon/icons/pin-text-square.js +2 -0
- package/dist/collection/components/icon/icons/plus-with-arrow.js +2 -0
- package/dist/collection/components/icon/icons/pmi.js +2 -0
- package/dist/collection/components/icon/icons/square-dot-outline.js +2 -0
- package/dist/collection/components/icon/icons/update.js +2 -0
- package/dist/collection/components/icon/icons/views.js +2 -0
- package/dist/collection/components/icon-button/icon-button.js +1 -1
- package/dist/collection/components/index.js +3 -1
- package/dist/collection/components/menu/menu.js +1 -1
- package/dist/collection/components/popover/popover.js +51 -0
- package/dist/collection/components/result-list/result-list.js +52 -5
- package/dist/collection/components/result-list/types.js +1 -0
- package/dist/collection/components/search-bar/dom.js +29 -0
- package/dist/collection/components/search-bar/lib.js +76 -15
- package/dist/collection/components/search-bar/search-bar.css +0 -16
- package/dist/collection/components/search-bar/search-bar.js +429 -320
- package/dist/collection/components/select/select.css +24 -0
- package/dist/collection/components/select/select.js +49 -2
- package/dist/collection/components/tab/tab.css +16 -0
- package/dist/collection/components/tab/tab.js +85 -0
- package/dist/collection/components/tab/util.js +3 -0
- package/dist/collection/components/tabs/tabs.css +67 -0
- package/dist/collection/components/tabs/tabs.js +159 -0
- package/dist/collection/components/text-field/text-field.js +1 -0
- package/dist/collection/components/tooltip/tooltip.js +62 -18
- package/dist/collection/types/icon.js +11 -0
- package/dist/collection/util/templates/element-pool.js +19 -1
- package/dist/components/components.css +1 -1
- package/dist/components/components.esm.js +1 -1
- package/dist/components/index.esm.js +1 -1
- package/dist/components/p-036a0be0.js +1 -0
- package/dist/components/{p-165aed7d.js → p-0d4a0d61.js} +1 -1
- package/dist/components/{p-9374ef6c.js → p-1367d3af.js} +1 -1
- package/dist/components/{p-103249b4.js → p-1971ed0b.js} +1 -1
- package/dist/components/p-1d08dd79.entry.js +1 -0
- package/dist/components/p-2ae8175d.entry.js +1 -0
- package/dist/components/p-2b4aedaa.entry.js +1 -0
- package/dist/components/p-3438c441.js +1 -0
- package/dist/components/p-3dd7a75f.entry.js +1 -0
- package/dist/components/p-406e73da.entry.js +1 -0
- package/dist/components/p-4327deea.js +1 -0
- package/dist/components/p-43b1b3f9.js +1 -0
- package/dist/components/p-49db6547.entry.js +1 -0
- package/dist/components/p-606596de.entry.js +1 -0
- package/dist/components/{p-ca52a423.js → p-63b48634.js} +1 -1
- package/dist/components/p-655053df.js +1 -0
- package/dist/components/p-69496858.js +1 -0
- package/dist/components/p-6a49c365.entry.js +1 -0
- package/dist/components/p-6b6c2260.js +1 -0
- package/dist/components/p-6b862967.js +1 -0
- package/dist/components/p-76b961b8.js +1 -0
- package/dist/components/p-8bbc344d.entry.js +1 -0
- package/dist/components/p-96f55673.js +1 -0
- package/dist/components/p-a0eac69c.entry.js +1 -0
- package/dist/components/p-bc2fbd68.entry.js +1 -0
- package/dist/components/p-c2706288.js +1 -0
- package/dist/components/p-d3fd9ca3.entry.js +1 -0
- package/dist/components/p-d539f530.js +1 -0
- package/dist/components/p-e35057b5.entry.js +1 -0
- package/dist/components/p-ee496965.entry.js +1 -0
- package/dist/components/p-ff7c70b9.js +1 -0
- package/dist/esm/{color-circle-picker-998a7e9c.js → color-circle-picker-e2a2cfb5.js} +1 -1
- package/dist/esm/color-picker-1d67effe.js +44 -0
- package/dist/esm/{color-circle-842f3321.js → color-swatch-0e62d13d.js} +42 -17
- package/dist/esm/components.js +1 -1
- package/dist/esm/{dialog-e3f49527.js → dialog-1cef715c.js} +1 -1
- package/dist/esm/dom-613e2677.js +10 -0
- package/dist/esm/{icon-d37150b4.js → icon-55b22de7.js} +1 -1
- package/dist/esm/{icon-button-aad3c0e7.js → icon-button-e6c72aec.js} +1 -1
- package/dist/esm/{icon-helper-83f10f73.js → icon-helper-67de1067.js} +60 -0
- package/dist/esm/index.js +17 -13
- package/dist/esm/lib-73fbca8b.js +7 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{popover-67c88e4b.js → popover-6e806354.js} +23 -1
- package/dist/esm/{result-list-36cfb08a.js → result-list-16c6afbd.js} +46 -2
- package/dist/esm/search-bar-8d18626e.js +525 -0
- package/dist/esm/{select-75ed5653.js → select-78aeff96.js} +27 -4
- package/dist/esm/tab-c76332b0.js +24 -0
- package/dist/esm/tabs-8e5353ba.js +109 -0
- package/dist/esm/{text-field-e542da25.js → text-field-32ac877e.js} +1 -0
- package/dist/esm/{tooltip-97c1b3ec.js → tooltip-29278ea4.js} +58 -22
- package/dist/esm/vertex-color-circle-picker.entry.js +1 -1
- package/dist/esm/vertex-color-picker.entry.js +2 -1
- package/dist/esm/vertex-color-swatch.entry.js +4 -0
- package/dist/esm/vertex-dialog.entry.js +1 -1
- package/dist/esm/vertex-icon-button.entry.js +2 -2
- package/dist/esm/vertex-icon.entry.js +2 -2
- package/dist/esm/vertex-popover.entry.js +1 -1
- package/dist/esm/vertex-result-list.entry.js +1 -1
- package/dist/esm/vertex-search-bar.entry.js +1 -1
- package/dist/esm/vertex-select.entry.js +1 -1
- package/dist/esm/vertex-tab.entry.js +3 -0
- package/dist/esm/vertex-tabs.entry.js +4 -0
- package/dist/esm/vertex-textfield.entry.js +1 -1
- package/dist/esm/vertex-tooltip.entry.js +2 -1
- package/dist/types/components/color-circle-picker/color-circle-picker.d.ts +7 -7
- package/dist/types/components/color-picker/color-picker.d.ts +19 -0
- package/dist/types/components/{color-circle/color-circle.d.ts → color-swatch/color-swatch.d.ts} +23 -5
- package/dist/types/components/color-swatch/lib.d.ts +1 -0
- package/dist/types/components/icon/icons/caution.d.ts +3 -0
- package/dist/types/components/icon/icons/compare.d.ts +3 -0
- package/dist/types/components/icon/icons/compress.d.ts +3 -0
- package/dist/types/components/icon/icons/cube-stack.d.ts +3 -0
- package/dist/types/components/icon/icons/expand.d.ts +3 -0
- package/dist/types/components/icon/icons/pin-text-square.d.ts +3 -0
- package/dist/types/components/icon/icons/plus-with-arrow.d.ts +3 -0
- package/dist/types/components/icon/icons/pmi.d.ts +3 -0
- package/dist/types/components/icon/icons/square-dot-outline.d.ts +3 -0
- package/dist/types/components/icon/icons/update.d.ts +3 -0
- package/dist/types/components/icon/icons/views.d.ts +3 -0
- package/dist/types/components/index.d.ts +3 -1
- package/dist/types/components/popover/popover.d.ts +7 -0
- package/dist/types/components/result-list/result-list.d.ts +6 -1
- package/dist/types/components/result-list/types.d.ts +4 -0
- package/dist/types/components/search-bar/dom.d.ts +8 -0
- package/dist/types/components/search-bar/lib.d.ts +31 -6
- package/dist/types/components/search-bar/search-bar.d.ts +125 -42
- package/dist/types/components/select/select.d.ts +8 -0
- package/dist/types/components/tab/tab.d.ts +11 -0
- package/dist/types/components/tab/util.d.ts +1 -0
- package/dist/types/components/tabs/tabs.d.ts +23 -0
- package/dist/types/components/tooltip/tooltip.d.ts +7 -0
- package/dist/types/components.d.ts +254 -96
- package/dist/types/types/icon.d.ts +11 -0
- package/dist/types/util/templates/element-pool.d.ts +10 -1
- package/package.json +4 -3
- package/dist/cjs/color-picker-876ace00.js +0 -37
- package/dist/cjs/search-bar-bb40cfa7.js +0 -290
- package/dist/collection/components/color-circle/color-circle.css +0 -18
- package/dist/components/p-03dbb28c.js +0 -1
- package/dist/components/p-0f8b9ede.entry.js +0 -1
- package/dist/components/p-19318fee.entry.js +0 -1
- package/dist/components/p-1d6cb015.entry.js +0 -1
- package/dist/components/p-209db2ba.entry.js +0 -1
- package/dist/components/p-20a74d5d.entry.js +0 -1
- package/dist/components/p-35e7ab78.entry.js +0 -1
- package/dist/components/p-4224c2ad.js +0 -1
- package/dist/components/p-52739247.js +0 -1
- package/dist/components/p-552c128f.js +0 -1
- package/dist/components/p-6505cdb3.js +0 -1
- package/dist/components/p-7dba2574.entry.js +0 -1
- package/dist/components/p-7f64b251.entry.js +0 -1
- package/dist/components/p-8434602f.js +0 -1
- package/dist/components/p-ae6a3c46.entry.js +0 -1
- package/dist/components/p-bd11e7d1.js +0 -1
- package/dist/components/p-d9b9aebe.js +0 -1
- package/dist/components/p-e576818b.entry.js +0 -1
- package/dist/components/p-ebabee40.entry.js +0 -1
- package/dist/components/p-f49a7ffd.js +0 -1
- package/dist/components/p-f71fc166.entry.js +0 -1
- package/dist/esm/color-picker-2e3b51fa.js +0 -35
- package/dist/esm/search-bar-59cc151d.js +0 -288
- package/dist/esm/vertex-color-circle.entry.js +0 -2
|
@@ -12,6 +12,9 @@ import { CardMode } from "./components/card/card";
|
|
|
12
12
|
import { ChipColor, ChipVariant } from "./components/chip/chip";
|
|
13
13
|
import { InputChangeEventDetail, TextSize } from "./components/text-field/text-field";
|
|
14
14
|
import { SelectionChangedDetails } from "./components/color-circle-picker/color-circle-picker";
|
|
15
|
+
import { ColorSwatchSize } from "./components/color-swatch/color-swatch";
|
|
16
|
+
import { ColorPickerVariant } from "./components/color-picker/color-picker";
|
|
17
|
+
import { ColorSwatchSize as ColorSwatchSize1, ColorSwatchTheme, ColorSwatchVariant } from "./components/color-swatch/color-swatch";
|
|
15
18
|
import { Point } from "./types/point";
|
|
16
19
|
import { Popover, PopoverPlacement } from "./components/popover/popover";
|
|
17
20
|
import { VertexExpandableType } from "./components/expandable/expandable";
|
|
@@ -21,9 +24,8 @@ import { PopoverPlacement as PopoverPlacement1, PopoverResizeBehavior } from "./
|
|
|
21
24
|
import { DetectOverflowOptions, FlipOptions, OffsetOptions } from "@floating-ui/dom";
|
|
22
25
|
import { RadioChangeEventDetail } from "./components/radio/radio";
|
|
23
26
|
import { HorizontalDragDirection, ResizableBoundsUpdate, ResizeEventDetails, VerticalDragDirection } from "./components/resizable/resizable";
|
|
24
|
-
import { Result } from "./components/result-list/
|
|
27
|
+
import { Result } from "./components/result-list/types";
|
|
25
28
|
import { SearchBarVariant } from "./components/search-bar/search-bar";
|
|
26
|
-
import { Result as Result1 } from "./components/result-list/result-list";
|
|
27
29
|
import { LabelDisplay, SliderChangeEventDetails, SliderSize } from "./components/slider/slider";
|
|
28
30
|
import { SpinnerColor, SpinnerSize } from "./components/spinner/spinner";
|
|
29
31
|
import { InputChangeEventDetail as InputChangeEventDetail1, TextFieldAutocomplete, TextFieldType, TextFieldVariant, TextSize as TextSize1 } from "./components/text-field/text-field";
|
|
@@ -198,75 +200,91 @@ export namespace Components {
|
|
|
198
200
|
*/
|
|
199
201
|
"open": boolean;
|
|
200
202
|
}
|
|
201
|
-
interface
|
|
203
|
+
interface VertexColorCirclePicker {
|
|
202
204
|
/**
|
|
203
|
-
* The
|
|
205
|
+
* The colors to show in this `vertex-color-circle-picker`. These values will map to the `color` property of the underlying `vertex-color-swatch`.
|
|
204
206
|
*/
|
|
205
|
-
"
|
|
207
|
+
"colors": string[] | string;
|
|
206
208
|
/**
|
|
207
|
-
* The percentage darker color to use to compute the `darkened` color
|
|
209
|
+
* The percentage darker color to use to compute the `darkened` color for the underlying `vertex-color-swatch`. This will be used when the `theme` is set to `dark`.
|
|
208
210
|
*/
|
|
209
211
|
"darkenPercentage": number;
|
|
210
212
|
/**
|
|
211
|
-
* The
|
|
213
|
+
* The orientation of this color picker. Can be either `vertical` or `horizontal`, and defaults to `horizontal`.
|
|
212
214
|
*/
|
|
213
|
-
"
|
|
215
|
+
"direction": 'vertical' | 'horizontal';
|
|
214
216
|
/**
|
|
215
|
-
* The percentage lighter color to use to compute the `lightened` color
|
|
217
|
+
* The percentage lighter color to use to compute the `lightened` color for the underlying `vertex-color-swatch`. This will be used when the `theme` is set to `light`.
|
|
216
218
|
*/
|
|
217
219
|
"lightenPercentage": number;
|
|
218
220
|
/**
|
|
219
|
-
*
|
|
221
|
+
* An optional selected color. This will also be updated internally by the component when individual `vertex-color-swatch` elements are clicked.
|
|
220
222
|
*/
|
|
221
|
-
"
|
|
223
|
+
"selected"?: string;
|
|
222
224
|
/**
|
|
223
|
-
*
|
|
225
|
+
* Optional supplemental colors that will be provided to the underlying `vertex-color-swatch` elements for associated indices in the `colors` array.
|
|
224
226
|
*/
|
|
225
|
-
"
|
|
227
|
+
"supplementalColors": string[] | string;
|
|
226
228
|
/**
|
|
227
|
-
* The theme to use for this `vertex-color-circle`. Can be either `light` or `dark`, and defaults to `dark`. With the `dark` theme, the provided `
|
|
229
|
+
* The theme to use for this `vertex-color-circle-picker`. Can be either `light` or `dark`, and defaults to `dark`. With the `dark` theme, the provided `colors` will be used as the background-colors for `vertex-color-swatch` elements, and a `darkened` color will be used for the border-colors. With the `light` theme, the provided `colors` will be used as the background-colors for `vertex-color-swatch` elements, and a `lightened` color will be used for the border-colors.
|
|
228
230
|
*/
|
|
229
231
|
"theme": 'light' | 'dark';
|
|
230
232
|
}
|
|
231
|
-
interface
|
|
233
|
+
interface VertexColorPicker {
|
|
234
|
+
/**
|
|
235
|
+
* Whether this color picker is disabled.
|
|
236
|
+
*/
|
|
237
|
+
"disabled": boolean;
|
|
232
238
|
/**
|
|
233
|
-
* The
|
|
239
|
+
* The size of the swatch displayed for this color picker. Can be `sm`, `md`, `lg`, or `xl`, and defaults to `md`. If the `variant` is `full`, this value will also increase the size of the associated hexadecimal value.
|
|
234
240
|
*/
|
|
235
|
-
"
|
|
241
|
+
"size": ColorSwatchSize;
|
|
242
|
+
/**
|
|
243
|
+
* Optional value property to set the initial value of this input.
|
|
244
|
+
*/
|
|
245
|
+
"value"?: string;
|
|
246
|
+
/**
|
|
247
|
+
* The variant of this color picker. Can be `full` or `swatch`, and defaults to `full`. `full` will display both the visual color swatch and the hexadecimal representation of the color. `swatch` will display only the visual color swatch.
|
|
248
|
+
*/
|
|
249
|
+
"variant": ColorPickerVariant;
|
|
250
|
+
}
|
|
251
|
+
interface VertexColorSwatch {
|
|
252
|
+
/**
|
|
253
|
+
* The primary color of this `vertex-color-swatch` in hexadecimal format. For `dark` theme, this will be the background-color. For `light` theme, this will be the border-color.
|
|
254
|
+
*/
|
|
255
|
+
"color": string;
|
|
236
256
|
/**
|
|
237
|
-
* The percentage darker color to use to compute the `darkened` color
|
|
257
|
+
* The percentage darker color to use to compute the `darkened` color. This will be used when the `theme` is set to `dark`.
|
|
238
258
|
*/
|
|
239
259
|
"darkenPercentage": number;
|
|
240
260
|
/**
|
|
241
|
-
* The
|
|
261
|
+
* The computed darker color based on the provided `color` and `darkenPercentage`. This will be used when the `theme` is set to `dark`.
|
|
242
262
|
*/
|
|
243
|
-
"
|
|
263
|
+
"darkened": string;
|
|
244
264
|
/**
|
|
245
|
-
* The percentage lighter color to use to compute the `lightened` color
|
|
265
|
+
* The percentage lighter color to use to compute the `lightened` color. This will be used when the `theme` is set to `light`.
|
|
246
266
|
*/
|
|
247
267
|
"lightenPercentage": number;
|
|
248
268
|
/**
|
|
249
|
-
*
|
|
269
|
+
* The computed lighter color based on the provided `color` and `lightenPercentage`. This will be used when the `theme` is set to `light`.
|
|
250
270
|
*/
|
|
251
|
-
"
|
|
271
|
+
"lightened": string;
|
|
252
272
|
/**
|
|
253
|
-
*
|
|
273
|
+
* The size of this color swatch. Can be `sm`, `md`, or `lg`, and defaults to `md`.
|
|
254
274
|
*/
|
|
255
|
-
"
|
|
275
|
+
"size": ColorSwatchSize;
|
|
256
276
|
/**
|
|
257
|
-
*
|
|
277
|
+
* An optional supplemental color to be paired with the `color`. For `dark` theme, this will be the border-color. For `light` theme, this will be the background-color.
|
|
258
278
|
*/
|
|
259
|
-
"
|
|
260
|
-
}
|
|
261
|
-
interface VertexColorPicker {
|
|
279
|
+
"supplementalColor"?: string;
|
|
262
280
|
/**
|
|
263
|
-
*
|
|
281
|
+
* The theme to use for this `vertex-color-swatch`. Can be `none`, `light`, or `dark`, and defaults to `none`. With no theme (`none`), the provided `color` will be used as the background-color, and the border will be a neutral color. With the `dark` theme, the provided `color` will be used as the background-color, and the `darkened` color will be used for the border-color. With the `light` theme, the provided `color` will be used as the border-color, and the `lightened` color will be used for the background-color.
|
|
264
282
|
*/
|
|
265
|
-
"
|
|
283
|
+
"theme": ColorSwatchTheme;
|
|
266
284
|
/**
|
|
267
|
-
*
|
|
285
|
+
* The variant of this color swatch. Can be either `circle` or `square`, and defaults to `circle`.
|
|
268
286
|
*/
|
|
269
|
-
"
|
|
287
|
+
"variant": ColorSwatchVariant;
|
|
270
288
|
}
|
|
271
289
|
interface VertexContextMenu {
|
|
272
290
|
/**
|
|
@@ -470,6 +488,9 @@ export namespace Components {
|
|
|
470
488
|
* The behavior that this popover will have when the window is resized. Can be either 'dynamic' or 'fixed', and defaults to 'dynamic'. 'dynamic' will cause a position-based popover to adjust its position relative to the window resize to keep it in the same relative position. 'fixed' will keep the popover in the same position even if that means it would disappear off-screen.
|
|
471
489
|
*/
|
|
472
490
|
"resizeBehavior": PopoverResizeBehavior;
|
|
491
|
+
"resizeObserverFactory": (
|
|
492
|
+
cb: (entries: ResizeObserverEntry[]) => void
|
|
493
|
+
) => ResizeObserver;
|
|
473
494
|
/**
|
|
474
495
|
* Indicates if the position of the popover should be updated when the popover's content size changes.
|
|
475
496
|
*/
|
|
@@ -569,18 +590,46 @@ export namespace Components {
|
|
|
569
590
|
"viewportStartIndex": number;
|
|
570
591
|
}
|
|
571
592
|
interface VertexSearchBar {
|
|
593
|
+
/**
|
|
594
|
+
* Characters that should trigger a "break" of the search. If a value in this list is encountered when trying to parse back to the `triggerCharacter`, this will hide the result list.
|
|
595
|
+
*/
|
|
572
596
|
"breakCharacters": string[];
|
|
573
|
-
"debounce": number;
|
|
574
|
-
"getEditableContent": () => Promise<NodeListOf<ChildNode> | undefined>;
|
|
575
597
|
/**
|
|
576
|
-
*
|
|
598
|
+
* Whether this search bar is disabled.
|
|
599
|
+
*/
|
|
600
|
+
"disabled": boolean;
|
|
601
|
+
/**
|
|
602
|
+
* A placeholder to display when no text has been entered.
|
|
577
603
|
*/
|
|
578
604
|
"placeholder"?: string;
|
|
605
|
+
/**
|
|
606
|
+
* The placement of the result list for this search bar. Corresponds to the value for the underlying <vertex-popover> placement value.
|
|
607
|
+
* @see (PopoverPlacement)
|
|
608
|
+
*/
|
|
579
609
|
"placement": PopoverPlacement;
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
"
|
|
610
|
+
/**
|
|
611
|
+
* The URI type of the values to replace. When `replacements` are evaluated, this value will be used as the scheme portion of the URI to detect matches. Defaults to `user`, and will match URIs composed with the `user` scheme and a UUID. E.g. `user:00000000-0000-0000-0000-000000000000`
|
|
612
|
+
*/
|
|
613
|
+
"replacementUriType": string;
|
|
614
|
+
/**
|
|
615
|
+
* Replaced result values. This will be used in combination with the value of `value` to display existing replaced values. This value will be automatically updated as `Result`s are clicked within this search bar's `<vertex-result-list>`.
|
|
616
|
+
*/
|
|
617
|
+
"replacements": Result[];
|
|
618
|
+
/**
|
|
619
|
+
* The items to display in this search bar's `<vertex-result-list>`. This can be used alongside the `searchChanged` event to query for results to display.
|
|
620
|
+
*/
|
|
621
|
+
"resultItems"?: Result[];
|
|
622
|
+
/**
|
|
623
|
+
* The character indicating that we should trigger a search. When this character is encountered, the text following it (omitting `breakCharacters`) will be emitted as a `searchChanged` event.
|
|
624
|
+
*/
|
|
625
|
+
"triggerCharacter": string;
|
|
626
|
+
/**
|
|
627
|
+
* The initial value of this search bar. This will be used in combination with the value of `replacements` to display existing replaced values.
|
|
628
|
+
*/
|
|
629
|
+
"value"?: string;
|
|
630
|
+
/**
|
|
631
|
+
* The search bar variant to display. Possible options are: - 'standard' (default) - 'filled' - 'underlined' - 'blank
|
|
632
|
+
*/
|
|
584
633
|
"variant": SearchBarVariant;
|
|
585
634
|
}
|
|
586
635
|
interface VertexSelect {
|
|
@@ -592,6 +641,10 @@ export namespace Components {
|
|
|
592
641
|
* Whether this select is disabled.
|
|
593
642
|
*/
|
|
594
643
|
"disabled": boolean;
|
|
644
|
+
/**
|
|
645
|
+
* Whether this select will omit the currently selected value in the dropdown list.
|
|
646
|
+
*/
|
|
647
|
+
"hideSelected": boolean;
|
|
595
648
|
/**
|
|
596
649
|
* A placeholder to use when no option has been selected. Defaults to "Select an option...".
|
|
597
650
|
*/
|
|
@@ -641,6 +694,16 @@ export namespace Components {
|
|
|
641
694
|
*/
|
|
642
695
|
"size": SpinnerSize;
|
|
643
696
|
}
|
|
697
|
+
interface VertexTab {
|
|
698
|
+
"active": boolean;
|
|
699
|
+
/**
|
|
700
|
+
* The label to include in tab list.
|
|
701
|
+
*/
|
|
702
|
+
"label": string;
|
|
703
|
+
}
|
|
704
|
+
interface VertexTabs {
|
|
705
|
+
"active"?: string;
|
|
706
|
+
}
|
|
644
707
|
interface VertexTextfield {
|
|
645
708
|
/**
|
|
646
709
|
* Sets autoComplete attribute on <input>
|
|
@@ -849,6 +912,14 @@ export interface VertexSliderCustomEvent<T> extends CustomEvent<T> {
|
|
|
849
912
|
detail: T;
|
|
850
913
|
target: HTMLVertexSliderElement;
|
|
851
914
|
}
|
|
915
|
+
export interface VertexTabCustomEvent<T> extends CustomEvent<T> {
|
|
916
|
+
detail: T;
|
|
917
|
+
target: HTMLVertexTabElement;
|
|
918
|
+
}
|
|
919
|
+
export interface VertexTabsCustomEvent<T> extends CustomEvent<T> {
|
|
920
|
+
detail: T;
|
|
921
|
+
target: HTMLVertexTabsElement;
|
|
922
|
+
}
|
|
852
923
|
export interface VertexTextfieldCustomEvent<T> extends CustomEvent<T> {
|
|
853
924
|
detail: T;
|
|
854
925
|
target: HTMLVertexTextfieldElement;
|
|
@@ -922,12 +993,6 @@ declare global {
|
|
|
922
993
|
prototype: HTMLVertexCollapsibleElement;
|
|
923
994
|
new (): HTMLVertexCollapsibleElement;
|
|
924
995
|
};
|
|
925
|
-
interface HTMLVertexColorCircleElement extends Components.VertexColorCircle, HTMLStencilElement {
|
|
926
|
-
}
|
|
927
|
-
var HTMLVertexColorCircleElement: {
|
|
928
|
-
prototype: HTMLVertexColorCircleElement;
|
|
929
|
-
new (): HTMLVertexColorCircleElement;
|
|
930
|
-
};
|
|
931
996
|
interface HTMLVertexColorCirclePickerElement extends Components.VertexColorCirclePicker, HTMLStencilElement {
|
|
932
997
|
}
|
|
933
998
|
var HTMLVertexColorCirclePickerElement: {
|
|
@@ -940,6 +1005,12 @@ declare global {
|
|
|
940
1005
|
prototype: HTMLVertexColorPickerElement;
|
|
941
1006
|
new (): HTMLVertexColorPickerElement;
|
|
942
1007
|
};
|
|
1008
|
+
interface HTMLVertexColorSwatchElement extends Components.VertexColorSwatch, HTMLStencilElement {
|
|
1009
|
+
}
|
|
1010
|
+
var HTMLVertexColorSwatchElement: {
|
|
1011
|
+
prototype: HTMLVertexColorSwatchElement;
|
|
1012
|
+
new (): HTMLVertexColorSwatchElement;
|
|
1013
|
+
};
|
|
943
1014
|
interface HTMLVertexContextMenuElement extends Components.VertexContextMenu, HTMLStencilElement {
|
|
944
1015
|
}
|
|
945
1016
|
var HTMLVertexContextMenuElement: {
|
|
@@ -1066,6 +1137,18 @@ declare global {
|
|
|
1066
1137
|
prototype: HTMLVertexSpinnerElement;
|
|
1067
1138
|
new (): HTMLVertexSpinnerElement;
|
|
1068
1139
|
};
|
|
1140
|
+
interface HTMLVertexTabElement extends Components.VertexTab, HTMLStencilElement {
|
|
1141
|
+
}
|
|
1142
|
+
var HTMLVertexTabElement: {
|
|
1143
|
+
prototype: HTMLVertexTabElement;
|
|
1144
|
+
new (): HTMLVertexTabElement;
|
|
1145
|
+
};
|
|
1146
|
+
interface HTMLVertexTabsElement extends Components.VertexTabs, HTMLStencilElement {
|
|
1147
|
+
}
|
|
1148
|
+
var HTMLVertexTabsElement: {
|
|
1149
|
+
prototype: HTMLVertexTabsElement;
|
|
1150
|
+
new (): HTMLVertexTabsElement;
|
|
1151
|
+
};
|
|
1069
1152
|
interface HTMLVertexTextfieldElement extends Components.VertexTextfield, HTMLStencilElement {
|
|
1070
1153
|
}
|
|
1071
1154
|
var HTMLVertexTextfieldElement: {
|
|
@@ -1101,9 +1184,9 @@ declare global {
|
|
|
1101
1184
|
"vertex-chip": HTMLVertexChipElement;
|
|
1102
1185
|
"vertex-click-to-edit-textfield": HTMLVertexClickToEditTextfieldElement;
|
|
1103
1186
|
"vertex-collapsible": HTMLVertexCollapsibleElement;
|
|
1104
|
-
"vertex-color-circle": HTMLVertexColorCircleElement;
|
|
1105
1187
|
"vertex-color-circle-picker": HTMLVertexColorCirclePickerElement;
|
|
1106
1188
|
"vertex-color-picker": HTMLVertexColorPickerElement;
|
|
1189
|
+
"vertex-color-swatch": HTMLVertexColorSwatchElement;
|
|
1107
1190
|
"vertex-context-menu": HTMLVertexContextMenuElement;
|
|
1108
1191
|
"vertex-dialog": HTMLVertexDialogElement;
|
|
1109
1192
|
"vertex-draggable-popover": HTMLVertexDraggablePopoverElement;
|
|
@@ -1125,6 +1208,8 @@ declare global {
|
|
|
1125
1208
|
"vertex-select": HTMLVertexSelectElement;
|
|
1126
1209
|
"vertex-slider": HTMLVertexSliderElement;
|
|
1127
1210
|
"vertex-spinner": HTMLVertexSpinnerElement;
|
|
1211
|
+
"vertex-tab": HTMLVertexTabElement;
|
|
1212
|
+
"vertex-tabs": HTMLVertexTabsElement;
|
|
1128
1213
|
"vertex-textfield": HTMLVertexTextfieldElement;
|
|
1129
1214
|
"vertex-toast": HTMLVertexToastElement;
|
|
1130
1215
|
"vertex-toggle": HTMLVertexToggleElement;
|
|
@@ -1324,43 +1409,13 @@ declare namespace LocalJSX {
|
|
|
1324
1409
|
*/
|
|
1325
1410
|
"open"?: boolean;
|
|
1326
1411
|
}
|
|
1327
|
-
interface VertexColorCircle {
|
|
1328
|
-
/**
|
|
1329
|
-
* The primary color of this `vertex-color-circle`. For `dark` theme, this will be the background-color. For `light` theme, this will be the border-color.
|
|
1330
|
-
*/
|
|
1331
|
-
"color"?: string;
|
|
1332
|
-
/**
|
|
1333
|
-
* The percentage darker color to use to compute the `darkened` color. This will be used when the `theme` is set to `dark`.
|
|
1334
|
-
*/
|
|
1335
|
-
"darkenPercentage"?: number;
|
|
1336
|
-
/**
|
|
1337
|
-
* The computed darker color based on the provided `color` and `darkenPercentage`. This will be used when the `theme` is set to `dark`.
|
|
1338
|
-
*/
|
|
1339
|
-
"darkened"?: string;
|
|
1340
|
-
/**
|
|
1341
|
-
* The percentage lighter color to use to compute the `lightened` color. This will be used when the `theme` is set to `light`.
|
|
1342
|
-
*/
|
|
1343
|
-
"lightenPercentage"?: number;
|
|
1344
|
-
/**
|
|
1345
|
-
* The computed lighter color based on the provided `color` and `lightenPercentage`. This will be used when the `theme` is set to `light`.
|
|
1346
|
-
*/
|
|
1347
|
-
"lightened"?: string;
|
|
1348
|
-
/**
|
|
1349
|
-
* An optional supplemental color to be paired with the `color`. For `dark` theme, this will be the border-color. For `light` theme, this will be the background-color.
|
|
1350
|
-
*/
|
|
1351
|
-
"supplementalColor"?: string;
|
|
1352
|
-
/**
|
|
1353
|
-
* The theme to use for this `vertex-color-circle`. Can be either `light` or `dark`, and defaults to `dark`. With the `dark` theme, the provided `color` will be used as the background-color, and the `darkened` color will be used for the border-color. With the `light` theme, the provided `color` will be used as the border-color, and the `lightened` color will be used for the background-color.
|
|
1354
|
-
*/
|
|
1355
|
-
"theme"?: 'light' | 'dark';
|
|
1356
|
-
}
|
|
1357
1412
|
interface VertexColorCirclePicker {
|
|
1358
1413
|
/**
|
|
1359
|
-
* The colors to show in this `vertex-color-circle-picker`. These values will map to the `color` property of the underlying `vertex-color-
|
|
1414
|
+
* The colors to show in this `vertex-color-circle-picker`. These values will map to the `color` property of the underlying `vertex-color-swatch`.
|
|
1360
1415
|
*/
|
|
1361
1416
|
"colors"?: string[] | string;
|
|
1362
1417
|
/**
|
|
1363
|
-
* The percentage darker color to use to compute the `darkened` color for the underlying `vertex-color-
|
|
1418
|
+
* The percentage darker color to use to compute the `darkened` color for the underlying `vertex-color-swatch`. This will be used when the `theme` is set to `dark`.
|
|
1364
1419
|
*/
|
|
1365
1420
|
"darkenPercentage"?: number;
|
|
1366
1421
|
/**
|
|
@@ -1368,20 +1423,20 @@ declare namespace LocalJSX {
|
|
|
1368
1423
|
*/
|
|
1369
1424
|
"direction"?: 'vertical' | 'horizontal';
|
|
1370
1425
|
/**
|
|
1371
|
-
* The percentage lighter color to use to compute the `lightened` color for the underlying `vertex-color-
|
|
1426
|
+
* The percentage lighter color to use to compute the `lightened` color for the underlying `vertex-color-swatch`. This will be used when the `theme` is set to `light`.
|
|
1372
1427
|
*/
|
|
1373
1428
|
"lightenPercentage"?: number;
|
|
1374
1429
|
"onSelectionChanged"?: (event: VertexColorCirclePickerCustomEvent<SelectionChangedDetails>) => void;
|
|
1375
1430
|
/**
|
|
1376
|
-
* An optional selected color. This will also be updated internally by the component when individual `vertex-color-
|
|
1431
|
+
* An optional selected color. This will also be updated internally by the component when individual `vertex-color-swatch` elements are clicked.
|
|
1377
1432
|
*/
|
|
1378
1433
|
"selected"?: string;
|
|
1379
1434
|
/**
|
|
1380
|
-
* Optional supplemental colors that will be provided to the underlying `vertex-color-
|
|
1435
|
+
* Optional supplemental colors that will be provided to the underlying `vertex-color-swatch` elements for associated indices in the `colors` array.
|
|
1381
1436
|
*/
|
|
1382
1437
|
"supplementalColors"?: string[] | string;
|
|
1383
1438
|
/**
|
|
1384
|
-
* The theme to use for this `vertex-color-circle-picker`. Can be either `light` or `dark`, and defaults to `dark`. With the `dark` theme, the provided `colors` will be used as the background-colors for `vertex-color-
|
|
1439
|
+
* The theme to use for this `vertex-color-circle-picker`. Can be either `light` or `dark`, and defaults to `dark`. With the `dark` theme, the provided `colors` will be used as the background-colors for `vertex-color-swatch` elements, and a `darkened` color will be used for the border-colors. With the `light` theme, the provided `colors` will be used as the background-colors for `vertex-color-swatch` elements, and a `lightened` color will be used for the border-colors.
|
|
1385
1440
|
*/
|
|
1386
1441
|
"theme"?: 'light' | 'dark';
|
|
1387
1442
|
}
|
|
@@ -1398,10 +1453,56 @@ declare namespace LocalJSX {
|
|
|
1398
1453
|
* Emitted when a new value is input.
|
|
1399
1454
|
*/
|
|
1400
1455
|
"onValueInput"?: (event: VertexColorPickerCustomEvent<string>) => void;
|
|
1456
|
+
/**
|
|
1457
|
+
* The size of the swatch displayed for this color picker. Can be `sm`, `md`, `lg`, or `xl`, and defaults to `md`. If the `variant` is `full`, this value will also increase the size of the associated hexadecimal value.
|
|
1458
|
+
*/
|
|
1459
|
+
"size"?: ColorSwatchSize;
|
|
1401
1460
|
/**
|
|
1402
1461
|
* Optional value property to set the initial value of this input.
|
|
1403
1462
|
*/
|
|
1404
1463
|
"value"?: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* The variant of this color picker. Can be `full` or `swatch`, and defaults to `full`. `full` will display both the visual color swatch and the hexadecimal representation of the color. `swatch` will display only the visual color swatch.
|
|
1466
|
+
*/
|
|
1467
|
+
"variant"?: ColorPickerVariant;
|
|
1468
|
+
}
|
|
1469
|
+
interface VertexColorSwatch {
|
|
1470
|
+
/**
|
|
1471
|
+
* The primary color of this `vertex-color-swatch` in hexadecimal format. For `dark` theme, this will be the background-color. For `light` theme, this will be the border-color.
|
|
1472
|
+
*/
|
|
1473
|
+
"color"?: string;
|
|
1474
|
+
/**
|
|
1475
|
+
* The percentage darker color to use to compute the `darkened` color. This will be used when the `theme` is set to `dark`.
|
|
1476
|
+
*/
|
|
1477
|
+
"darkenPercentage"?: number;
|
|
1478
|
+
/**
|
|
1479
|
+
* The computed darker color based on the provided `color` and `darkenPercentage`. This will be used when the `theme` is set to `dark`.
|
|
1480
|
+
*/
|
|
1481
|
+
"darkened"?: string;
|
|
1482
|
+
/**
|
|
1483
|
+
* The percentage lighter color to use to compute the `lightened` color. This will be used when the `theme` is set to `light`.
|
|
1484
|
+
*/
|
|
1485
|
+
"lightenPercentage"?: number;
|
|
1486
|
+
/**
|
|
1487
|
+
* The computed lighter color based on the provided `color` and `lightenPercentage`. This will be used when the `theme` is set to `light`.
|
|
1488
|
+
*/
|
|
1489
|
+
"lightened"?: string;
|
|
1490
|
+
/**
|
|
1491
|
+
* The size of this color swatch. Can be `sm`, `md`, or `lg`, and defaults to `md`.
|
|
1492
|
+
*/
|
|
1493
|
+
"size"?: ColorSwatchSize;
|
|
1494
|
+
/**
|
|
1495
|
+
* An optional supplemental color to be paired with the `color`. For `dark` theme, this will be the border-color. For `light` theme, this will be the background-color.
|
|
1496
|
+
*/
|
|
1497
|
+
"supplementalColor"?: string;
|
|
1498
|
+
/**
|
|
1499
|
+
* The theme to use for this `vertex-color-swatch`. Can be `none`, `light`, or `dark`, and defaults to `none`. With no theme (`none`), the provided `color` will be used as the background-color, and the border will be a neutral color. With the `dark` theme, the provided `color` will be used as the background-color, and the `darkened` color will be used for the border-color. With the `light` theme, the provided `color` will be used as the border-color, and the `lightened` color will be used for the background-color.
|
|
1500
|
+
*/
|
|
1501
|
+
"theme"?: ColorSwatchTheme;
|
|
1502
|
+
/**
|
|
1503
|
+
* The variant of this color swatch. Can be either `circle` or `square`, and defaults to `circle`.
|
|
1504
|
+
*/
|
|
1505
|
+
"variant"?: ColorSwatchVariant;
|
|
1405
1506
|
}
|
|
1406
1507
|
interface VertexContextMenu {
|
|
1407
1508
|
/**
|
|
@@ -1760,6 +1861,7 @@ declare namespace LocalJSX {
|
|
|
1760
1861
|
"items"?: Result[];
|
|
1761
1862
|
"itemsJson"?: string;
|
|
1762
1863
|
"onEnterPressed"?: (event: VertexResultListCustomEvent<Result>) => void;
|
|
1864
|
+
"onResultClick"?: (event: VertexResultListCustomEvent<Result>) => void;
|
|
1763
1865
|
"open"?: boolean;
|
|
1764
1866
|
"overScanCount"?: number;
|
|
1765
1867
|
"placement"?: PopoverPlacement;
|
|
@@ -1769,33 +1871,66 @@ declare namespace LocalJSX {
|
|
|
1769
1871
|
"viewportStartIndex"?: number;
|
|
1770
1872
|
}
|
|
1771
1873
|
interface VertexSearchBar {
|
|
1874
|
+
/**
|
|
1875
|
+
* Characters that should trigger a "break" of the search. If a value in this list is encountered when trying to parse back to the `triggerCharacter`, this will hide the result list.
|
|
1876
|
+
*/
|
|
1772
1877
|
"breakCharacters"?: string[];
|
|
1773
|
-
"debounce"?: number;
|
|
1774
1878
|
/**
|
|
1775
|
-
*
|
|
1879
|
+
* Whether this search bar is disabled.
|
|
1880
|
+
*/
|
|
1881
|
+
"disabled"?: boolean;
|
|
1882
|
+
/**
|
|
1883
|
+
* Emitted when the input is blurred.
|
|
1776
1884
|
*/
|
|
1777
1885
|
"onInputBlur"?: (event: VertexSearchBarCustomEvent<FocusEvent>) => void;
|
|
1778
1886
|
/**
|
|
1779
|
-
* Emitted when input
|
|
1887
|
+
* Emitted when the value of the input has changed.
|
|
1888
|
+
*/
|
|
1889
|
+
"onInputChanged"?: (event: VertexSearchBarCustomEvent<string>) => void;
|
|
1890
|
+
/**
|
|
1891
|
+
* Emitted when the input is focused.
|
|
1780
1892
|
*/
|
|
1781
1893
|
"onInputFocus"?: (event: VertexSearchBarCustomEvent<FocusEvent>) => void;
|
|
1782
1894
|
/**
|
|
1783
|
-
* Emitted when
|
|
1895
|
+
* Emitted when a result has been selected to replace the trigger text. Includes the ID of the `Result` selected.
|
|
1784
1896
|
*/
|
|
1785
|
-
"
|
|
1786
|
-
"onTriggerCharacterPressed"?: (event: VertexSearchBarCustomEvent<string>) => void;
|
|
1897
|
+
"onResultReplaced"?: (event: VertexSearchBarCustomEvent<Result>) => void;
|
|
1787
1898
|
/**
|
|
1788
|
-
* Emitted when the value has changed.
|
|
1899
|
+
* Emitted when the value of the current search triggered by the specified `triggerCharacter` has changed.
|
|
1789
1900
|
*/
|
|
1790
|
-
"
|
|
1901
|
+
"onSearchChanged"?: (event: VertexSearchBarCustomEvent<string>) => void;
|
|
1791
1902
|
/**
|
|
1792
|
-
*
|
|
1903
|
+
* A placeholder to display when no text has been entered.
|
|
1793
1904
|
*/
|
|
1794
1905
|
"placeholder"?: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* The placement of the result list for this search bar. Corresponds to the value for the underlying <vertex-popover> placement value.
|
|
1908
|
+
* @see (PopoverPlacement)
|
|
1909
|
+
*/
|
|
1795
1910
|
"placement"?: PopoverPlacement;
|
|
1796
|
-
|
|
1911
|
+
/**
|
|
1912
|
+
* The URI type of the values to replace. When `replacements` are evaluated, this value will be used as the scheme portion of the URI to detect matches. Defaults to `user`, and will match URIs composed with the `user` scheme and a UUID. E.g. `user:00000000-0000-0000-0000-000000000000`
|
|
1913
|
+
*/
|
|
1914
|
+
"replacementUriType"?: string;
|
|
1915
|
+
/**
|
|
1916
|
+
* Replaced result values. This will be used in combination with the value of `value` to display existing replaced values. This value will be automatically updated as `Result`s are clicked within this search bar's `<vertex-result-list>`.
|
|
1917
|
+
*/
|
|
1918
|
+
"replacements"?: Result[];
|
|
1919
|
+
/**
|
|
1920
|
+
* The items to display in this search bar's `<vertex-result-list>`. This can be used alongside the `searchChanged` event to query for results to display.
|
|
1921
|
+
*/
|
|
1922
|
+
"resultItems"?: Result[];
|
|
1923
|
+
/**
|
|
1924
|
+
* The character indicating that we should trigger a search. When this character is encountered, the text following it (omitting `breakCharacters`) will be emitted as a `searchChanged` event.
|
|
1925
|
+
*/
|
|
1797
1926
|
"triggerCharacter"?: string;
|
|
1798
|
-
|
|
1927
|
+
/**
|
|
1928
|
+
* The initial value of this search bar. This will be used in combination with the value of `replacements` to display existing replaced values.
|
|
1929
|
+
*/
|
|
1930
|
+
"value"?: string;
|
|
1931
|
+
/**
|
|
1932
|
+
* The search bar variant to display. Possible options are: - 'standard' (default) - 'filled' - 'underlined' - 'blank
|
|
1933
|
+
*/
|
|
1799
1934
|
"variant"?: SearchBarVariant;
|
|
1800
1935
|
}
|
|
1801
1936
|
interface VertexSelect {
|
|
@@ -1807,6 +1942,10 @@ declare namespace LocalJSX {
|
|
|
1807
1942
|
* Whether this select is disabled.
|
|
1808
1943
|
*/
|
|
1809
1944
|
"disabled"?: boolean;
|
|
1945
|
+
/**
|
|
1946
|
+
* Whether this select will omit the currently selected value in the dropdown list.
|
|
1947
|
+
*/
|
|
1948
|
+
"hideSelected"?: boolean;
|
|
1810
1949
|
/**
|
|
1811
1950
|
* Emitted when the selected option of this element changes, and contains the value that it has been changed to.
|
|
1812
1951
|
*/
|
|
@@ -1865,6 +2004,21 @@ declare namespace LocalJSX {
|
|
|
1865
2004
|
*/
|
|
1866
2005
|
"size"?: SpinnerSize;
|
|
1867
2006
|
}
|
|
2007
|
+
interface VertexTab {
|
|
2008
|
+
"active"?: boolean;
|
|
2009
|
+
/**
|
|
2010
|
+
* The label to include in tab list.
|
|
2011
|
+
*/
|
|
2012
|
+
"label": string;
|
|
2013
|
+
"onTabClick"?: (event: VertexTabCustomEvent<string>) => void;
|
|
2014
|
+
}
|
|
2015
|
+
interface VertexTabs {
|
|
2016
|
+
"active"?: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* An event that is emitted whenever the selected tab changes and contains the label of the newly selected tab.
|
|
2019
|
+
*/
|
|
2020
|
+
"onSelectedTabChanged"?: (event: VertexTabsCustomEvent<string>) => void;
|
|
2021
|
+
}
|
|
1868
2022
|
interface VertexTextfield {
|
|
1869
2023
|
/**
|
|
1870
2024
|
* Sets autoComplete attribute on <input>
|
|
@@ -2022,9 +2176,9 @@ declare namespace LocalJSX {
|
|
|
2022
2176
|
"vertex-chip": VertexChip;
|
|
2023
2177
|
"vertex-click-to-edit-textfield": VertexClickToEditTextfield;
|
|
2024
2178
|
"vertex-collapsible": VertexCollapsible;
|
|
2025
|
-
"vertex-color-circle": VertexColorCircle;
|
|
2026
2179
|
"vertex-color-circle-picker": VertexColorCirclePicker;
|
|
2027
2180
|
"vertex-color-picker": VertexColorPicker;
|
|
2181
|
+
"vertex-color-swatch": VertexColorSwatch;
|
|
2028
2182
|
"vertex-context-menu": VertexContextMenu;
|
|
2029
2183
|
"vertex-dialog": VertexDialog;
|
|
2030
2184
|
"vertex-draggable-popover": VertexDraggablePopover;
|
|
@@ -2046,6 +2200,8 @@ declare namespace LocalJSX {
|
|
|
2046
2200
|
"vertex-select": VertexSelect;
|
|
2047
2201
|
"vertex-slider": VertexSlider;
|
|
2048
2202
|
"vertex-spinner": VertexSpinner;
|
|
2203
|
+
"vertex-tab": VertexTab;
|
|
2204
|
+
"vertex-tabs": VertexTabs;
|
|
2049
2205
|
"vertex-textfield": VertexTextfield;
|
|
2050
2206
|
"vertex-toast": VertexToast;
|
|
2051
2207
|
"vertex-toggle": VertexToggle;
|
|
@@ -2066,9 +2222,9 @@ declare module "@stencil/core" {
|
|
|
2066
2222
|
"vertex-chip": LocalJSX.VertexChip & JSXBase.HTMLAttributes<HTMLVertexChipElement>;
|
|
2067
2223
|
"vertex-click-to-edit-textfield": LocalJSX.VertexClickToEditTextfield & JSXBase.HTMLAttributes<HTMLVertexClickToEditTextfieldElement>;
|
|
2068
2224
|
"vertex-collapsible": LocalJSX.VertexCollapsible & JSXBase.HTMLAttributes<HTMLVertexCollapsibleElement>;
|
|
2069
|
-
"vertex-color-circle": LocalJSX.VertexColorCircle & JSXBase.HTMLAttributes<HTMLVertexColorCircleElement>;
|
|
2070
2225
|
"vertex-color-circle-picker": LocalJSX.VertexColorCirclePicker & JSXBase.HTMLAttributes<HTMLVertexColorCirclePickerElement>;
|
|
2071
2226
|
"vertex-color-picker": LocalJSX.VertexColorPicker & JSXBase.HTMLAttributes<HTMLVertexColorPickerElement>;
|
|
2227
|
+
"vertex-color-swatch": LocalJSX.VertexColorSwatch & JSXBase.HTMLAttributes<HTMLVertexColorSwatchElement>;
|
|
2072
2228
|
"vertex-context-menu": LocalJSX.VertexContextMenu & JSXBase.HTMLAttributes<HTMLVertexContextMenuElement>;
|
|
2073
2229
|
"vertex-dialog": LocalJSX.VertexDialog & JSXBase.HTMLAttributes<HTMLVertexDialogElement>;
|
|
2074
2230
|
"vertex-draggable-popover": LocalJSX.VertexDraggablePopover & JSXBase.HTMLAttributes<HTMLVertexDraggablePopoverElement>;
|
|
@@ -2090,6 +2246,8 @@ declare module "@stencil/core" {
|
|
|
2090
2246
|
"vertex-select": LocalJSX.VertexSelect & JSXBase.HTMLAttributes<HTMLVertexSelectElement>;
|
|
2091
2247
|
"vertex-slider": LocalJSX.VertexSlider & JSXBase.HTMLAttributes<HTMLVertexSliderElement>;
|
|
2092
2248
|
"vertex-spinner": LocalJSX.VertexSpinner & JSXBase.HTMLAttributes<HTMLVertexSpinnerElement>;
|
|
2249
|
+
"vertex-tab": LocalJSX.VertexTab & JSXBase.HTMLAttributes<HTMLVertexTabElement>;
|
|
2250
|
+
"vertex-tabs": LocalJSX.VertexTabs & JSXBase.HTMLAttributes<HTMLVertexTabsElement>;
|
|
2093
2251
|
"vertex-textfield": LocalJSX.VertexTextfield & JSXBase.HTMLAttributes<HTMLVertexTextfieldElement>;
|
|
2094
2252
|
"vertex-toast": LocalJSX.VertexToast & JSXBase.HTMLAttributes<HTMLVertexToastElement>;
|
|
2095
2253
|
"vertex-toggle": LocalJSX.VertexToggle & JSXBase.HTMLAttributes<HTMLVertexToggleElement>;
|