@jobber/components 7.11.1 → 7.11.3
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/Autocomplete/index.mjs +1 -1
- package/dist/Menu/Menu.d.ts +21 -1
- package/dist/Menu/menuComposableShared.d.ts +1 -4
- package/dist/Menu-cjs.js +63 -50
- package/dist/Menu-es.js +66 -53
- package/dist/Modal/index.mjs +1 -1
- package/dist/docs/AnimatedPresence/AnimatedPresence.md +1 -1
- package/dist/docs/Autocomplete/AutocompleteV1.md +1 -1
- package/dist/docs/Autocomplete/AutocompleteV2.md +1 -1
- package/dist/docs/Banner/Banner.md +41 -41
- package/dist/docs/Box/Box.md +5 -5
- package/dist/docs/Button/Button.md +13 -13
- package/dist/docs/Checkbox/Checkbox.md +2 -2
- package/dist/docs/Chip/Chip.md +2 -2
- package/dist/docs/Cluster/Cluster.md +3 -3
- package/dist/docs/Combobox/Combobox.md +1 -1
- package/dist/docs/ConfirmationModal/ConfirmationModal.md +3 -3
- package/dist/docs/Content/Content.md +2 -2
- package/dist/docs/Countdown/Countdown.md +1 -1
- package/dist/docs/DataList/DataList.md +24 -24
- package/dist/docs/DataTable/DataTable.md +7 -7
- package/dist/docs/Divider/Divider.md +1 -1
- package/dist/docs/Flex/Flex.md +1 -1
- package/dist/docs/Form/Form.md +1 -1
- package/dist/docs/FormField/FormField.md +6 -6
- package/dist/docs/FormatDate/FormatDate.md +1 -1
- package/dist/docs/FormatFile/FormatFile.md +22 -22
- package/dist/docs/FormatRelativeDateTime/FormatRelativeDateTime.md +1 -1
- package/dist/docs/FormatTime/FormatTime.md +1 -1
- package/dist/docs/Gallery/Gallery.md +1 -1
- package/dist/docs/Glimmer/Glimmer.md +7 -7
- package/dist/docs/Grid/Grid.md +2 -2
- package/dist/docs/Heading/Heading.md +2 -2
- package/dist/docs/Icon/Icon.md +1 -1
- package/dist/docs/InlineLabel/InlineLabel.md +1 -1
- package/dist/docs/InputDate/InputDate.md +4 -4
- package/dist/docs/InputEmail/InputEmail.md +3 -3
- package/dist/docs/InputFile/InputFile.md +7 -7
- package/dist/docs/InputNumber/InputNumber.md +5 -5
- package/dist/docs/InputPassword/InputPassword.md +3 -3
- package/dist/docs/InputPhoneNumber/InputPhoneNumber.md +2 -2
- package/dist/docs/InputText/InputText.md +7 -7
- package/dist/docs/InputTime/InputTime.md +2 -2
- package/dist/docs/LightBox/LightBox.md +17 -17
- package/dist/docs/Menu/Menu.md +122 -0
- package/dist/docs/Modal/Modal.md +1 -1
- package/dist/docs/MultiSelect/MultiSelect.md +1 -1
- package/dist/docs/Page/Page.md +9 -9
- package/dist/docs/Popover/Popover.md +11 -11
- package/dist/docs/ProgressBar/ProgressBar.md +1 -1
- package/dist/docs/RadioGroup/RadioGroup.md +1 -1
- package/dist/docs/SegmentedControl/SegmentedControl.md +2 -2
- package/dist/docs/Select/Select.md +4 -4
- package/dist/docs/SideKick/SideKick.md +1 -1
- package/dist/docs/Spinner/Spinner.md +1 -1
- package/dist/docs/Text/Text.md +3 -3
- package/dist/docs/Toast/Toast.md +1 -1
- package/dist/floating-ui.react-es.js +1 -1
- package/dist/styles.css +16 -16
- package/dist/utils/mergeUnsafeProps.d.ts +8 -0
- package/package.json +2 -2
|
@@ -261,20 +261,10 @@ If you're using Popover with its composable subcomponents, you'll need to pass
|
|
|
261
261
|
| `children` | `ReactNode` | Yes | — | Popover content. |
|
|
262
262
|
| `open` | `boolean` | Yes | — | Control Popover visibility. |
|
|
263
263
|
| `onRequestClose` | `() => void` | No | — | Callback executed when the user wants to close/dismiss the Popover |
|
|
264
|
-
| `preferredPlacement` | `"auto" | "
|
|
264
|
+
| `preferredPlacement` | `"auto" | "bottom" | "left" | "right" | "top"` | No | `auto` | Describes the preferred placement of the Popover. |
|
|
265
265
|
| `UNSAFE_className` | `{ container?: string; dismissButtonContainer?: string; arrow?: string; }` | No | — | **Use at your own risk:** Custom class names for specific elements. This should only be used as a **last resort**. Us... |
|
|
266
266
|
| `UNSAFE_style` | `{ container?: CSSProperties; dismissButtonContainer?: CSSProperties; arrow?: CSSProperties; }` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
267
267
|
|
|
268
|
-
#### Popover.Provider
|
|
269
|
-
|
|
270
|
-
| Prop | Type | Required | Default | Description |
|
|
271
|
-
|------|------|----------|---------|-------------|
|
|
272
|
-
| `attachTo` | `Element | RefObject<Element>` | Yes | — | Element the Popover will attach to and point at. A `useRef` must be attached to an html element and passed as an atta... |
|
|
273
|
-
| `open` | `boolean` | Yes | — | Control Popover visibility. |
|
|
274
|
-
| `preferredPlacement` | `"auto" | "left" | "right" | "top" | "bottom"` | No | `auto` | Describes the preferred placement of the Popover. |
|
|
275
|
-
| `UNSAFE_className` | `{ container?: string; }` | No | — | **Use at your own risk:** Custom class names for specific elements. This should only be used as a **last resort**. Us... |
|
|
276
|
-
| `UNSAFE_style` | `{ container?: CSSProperties; }` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
277
|
-
|
|
278
268
|
#### Popover.Arrow
|
|
279
269
|
|
|
280
270
|
| Prop | Type | Required | Default | Description |
|
|
@@ -290,3 +280,13 @@ If you're using Popover with its composable subcomponents, you'll need to pass
|
|
|
290
280
|
| `onClick` | `(event: MouseEvent<HTMLAnchorElement | HTMLButtonElement, MouseEvent>) => void` | No | — | |
|
|
291
281
|
| `UNSAFE_className` | `{ dismissButtonContainer?: string; }` | No | — | **Use at your own risk:** Custom class names for specific elements. This should only be used as a **last resort**. Us... |
|
|
292
282
|
| `UNSAFE_style` | `{ dismissButtonContainer?: CSSProperties; }` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
283
|
+
|
|
284
|
+
#### Popover.Provider
|
|
285
|
+
|
|
286
|
+
| Prop | Type | Required | Default | Description |
|
|
287
|
+
|------|------|----------|---------|-------------|
|
|
288
|
+
| `attachTo` | `Element | RefObject<Element>` | Yes | — | Element the Popover will attach to and point at. A `useRef` must be attached to an html element and passed as an atta... |
|
|
289
|
+
| `open` | `boolean` | Yes | — | Control Popover visibility. |
|
|
290
|
+
| `preferredPlacement` | `"auto" | "bottom" | "left" | "right" | "top"` | No | `auto` | Describes the preferred placement of the Popover. |
|
|
291
|
+
| `UNSAFE_className` | `{ container?: string; }` | No | — | **Use at your own risk:** Custom class names for specific elements. This should only be used as a **last resort**. Us... |
|
|
292
|
+
| `UNSAFE_style` | `{ container?: CSSProperties; }` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
@@ -30,7 +30,7 @@ An example where you might be better served using a Spinner:
|
|
|
30
30
|
|------|------|----------|---------|-------------|
|
|
31
31
|
| `currentStep` | `number` | Yes | — | The current step that the progress bar is on. |
|
|
32
32
|
| `totalSteps` | `number` | Yes | — | The total steps to use. For percentages you can set this to 100. |
|
|
33
|
-
| `size` | `"
|
|
33
|
+
| `size` | `"base" | "small" | "smaller"` | No | `base` | Set the size of the progress bar |
|
|
34
34
|
| `UNSAFE_className` | `string` | No | — | **Use at your own risk:** Custom class names for specific elements. This should only be used as a **last resort**. Us... |
|
|
35
35
|
| `UNSAFE_style` | `CSSProperties` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
36
36
|
| `variation` | `"progress" | "stepped"` | No | `progress` | Set the variation of the progress bar |
|
|
@@ -25,6 +25,6 @@ do not contain text, an `aria-label` should be provided.
|
|
|
25
25
|
|------|------|----------|---------|-------------|
|
|
26
26
|
| `ariaLabel` | `string` | Yes | — | Defines the aria label that describes the radio group. |
|
|
27
27
|
| `onChange` | `(newValue: string | number) => void` | Yes | — | Change handler for the RadioGroup. @param newValue |
|
|
28
|
-
| `value` | `
|
|
28
|
+
| `value` | `number | string` | Yes | — | Defines the default value that will be pre-selected in the radio group. |
|
|
29
29
|
| `direction` | `"horizontal" | "vertical"` | No | `vertical` | Layout direction for the options. |
|
|
30
30
|
| `name` | `string` | No | `useId()` | The name of the radio group, that links the radio options back up to the group. |
|
|
@@ -175,11 +175,11 @@ browser handles this behaviour automatically.
|
|
|
175
175
|
| `name` | `string` | No | `useId()` | A unique name for the SegmentedControl, that links the group of options together. Can be a string or, if not set, wil... |
|
|
176
176
|
| `onSelectValue` | `(value: T) => void` | No | — | A callback function that is called whenever the selected option changes. Use this prop with `selectedValue` for a con... |
|
|
177
177
|
| `selectedValue` | `T` | No | — | The currently selected option. Use this prop with `onSelectValue` for a controlled component. |
|
|
178
|
-
| `size` | `"
|
|
178
|
+
| `size` | `"base" | "large" | "small"` | No | `base` | Adjusts the size of the SegmentedControl. The default size is "base". |
|
|
179
179
|
|
|
180
180
|
#### SegmentedControl.Option
|
|
181
181
|
|
|
182
182
|
| Prop | Type | Required | Default | Description |
|
|
183
183
|
|------|------|----------|---------|-------------|
|
|
184
|
-
| `value` | `
|
|
184
|
+
| `value` | `number | string` | Yes | — | The unique value associated with this option. This value is used to determine which option is selected and is passed ... |
|
|
185
185
|
| `ariaLabel` | `string` | No | — | An aria-label that describes the option. |
|
|
@@ -198,7 +198,7 @@ dropdown content is stylable; the closed value alignment is not.
|
|
|
198
198
|
|------|------|----------|---------|-------------|
|
|
199
199
|
| `align` | `"center" | "right"` | No | — | Determines the alignment of the text inside the input. |
|
|
200
200
|
| `aria-activedescendant` | `string` | No | — | ID of the currently active descendant element. Used for composite widgets like combobox or listbox. @see {@link https... |
|
|
201
|
-
| `aria-autocomplete` | `"
|
|
201
|
+
| `aria-autocomplete` | `"both" | "inline" | "list" | "none"` | No | — | Indicates the type of autocomplete interaction. @see {@link https://www.w3.org/TR/wai-aria-1.2/#aria-autocomplete} |
|
|
202
202
|
| `aria-controls` | `string` | No | — | Indicates the element that controls the current element. @see {@link https://www.w3.org/TR/wai-aria-1.2/#aria-controls} |
|
|
203
203
|
| `aria-describedby` | `string` | No | — | Identifies the element (or elements) that describes the object. @see {@link https://www.w3.org/TR/wai-aria-1.2/#aria-... |
|
|
204
204
|
| `aria-details` | `string` | No | — | Identifies the element (or elements) that provide a detailed, extended description. @see {@link https://www.w3.org/TR... |
|
|
@@ -214,7 +214,7 @@ dropdown content is stylable; the closed value alignment is not.
|
|
|
214
214
|
| `error` | `string` | No | — | Error message to display. This also highlights the field red. |
|
|
215
215
|
| `id` | `string` | No | — | The unique identifier for the input element. |
|
|
216
216
|
| `inline` | `boolean` | No | — | Adjusts the form field to go inline with content. |
|
|
217
|
-
| `inputMode` | `"
|
|
217
|
+
| `inputMode` | `"decimal" | "email" | "none" | "numeric" | "search" | "tel" | "text" | "url"` | No | — | Input mode hint for virtual keyboards. |
|
|
218
218
|
| `inputRef` | `Ref<HTMLSelectElement>` | No | — | |
|
|
219
219
|
| `invalid` | `boolean` | No | — | Highlights the field red to indicate an error. |
|
|
220
220
|
| `loading` | `boolean` | No | — | Show a spinner to indicate loading. |
|
|
@@ -228,11 +228,11 @@ dropdown content is stylable; the closed value alignment is not.
|
|
|
228
228
|
| `prefix` | `Affix` | No | — | Adds a prefix label and icon to the field |
|
|
229
229
|
| `required` | `boolean` | No | — | Whether the input is required before form submission. |
|
|
230
230
|
| `role` | `string` | No | — | Role attribute for accessibility. |
|
|
231
|
-
| `size` | `"
|
|
231
|
+
| `size` | `"large" | "small"` | No | — | Adjusts the interface to either have small or large spacing. |
|
|
232
232
|
| `suffix` | `{ onClick: () => void; readonly ariaLabel: string; readonly icon: IconNames; readonly label?: string; } | { onClick?: never; ariaLabel?: never; readonly label?: string; readonly icon?: IconNames; }` | No | — | Adds a suffix label and icon with an optional action to the field |
|
|
233
233
|
| `tabIndex` | `number` | No | — | Tab index for keyboard navigation. |
|
|
234
234
|
| `UNSAFE_experimentalStyles` | `boolean` | No | — | Opt-in to the customizable select UI (Chromium 123+). When true, the component will apply the custom select styles De... |
|
|
235
|
-
| `value` | `
|
|
235
|
+
| `value` | `number | string` | No | — | |
|
|
236
236
|
|
|
237
237
|
#### Select.Option
|
|
238
238
|
|
|
@@ -116,7 +116,7 @@ export function SideKickCustomWidthsExample() {
|
|
|
116
116
|
| `ariaAttributes` | `AriaAttributes` | No | — | Standard HTML aria attributes. Accepts all standard HTML aria attributes. |
|
|
117
117
|
| `as` | `CommonAllowedElements` | No | `div` | The HTML tag to render the container as. Defaults to `div`. |
|
|
118
118
|
| `autoWidth` | `boolean` | No | `false` | Whether to allow the sidekick to take the width of the content. Defaults to 100% |
|
|
119
|
-
| `collapseBelow` | `"
|
|
119
|
+
| `collapseBelow` | `"lg" | "md" | "sm" | "xl" | "xs"` | No | — | The breakpoint to collapse the sidekick at. |
|
|
120
120
|
| `collapsed` | `boolean` | No | — | Force the sidekick to collapse. Use this when our breakpoints are not enough control. |
|
|
121
121
|
| `contentMinWidth` | `string` | No | `50%` | The minimum width of the content. |
|
|
122
122
|
| `dataAttributes` | `{ [key: `data-${string}`]: string; }` | No | — | Standard HTML data attributes. Accepts anything in a {{"data-key":"value"}} format. |
|
|
@@ -42,4 +42,4 @@ To indicate loading content in mobile applications, refer to
|
|
|
42
42
|
| Prop | Type | Required | Default | Description |
|
|
43
43
|
|------|------|----------|---------|-------------|
|
|
44
44
|
| `inline` | `boolean` | No | — | Spinner becomes an inline element when true, otherwise it is a block element |
|
|
45
|
-
| `size` | `"
|
|
45
|
+
| `size` | `"base" | "small"` | No | `base` | Specifies the size of the spinner |
|
package/dist/docs/Text/Text.md
CHANGED
|
@@ -351,8 +351,8 @@ under the [Typography](../Typography/Typography.md) documentation.
|
|
|
351
351
|
|------|------|----------|---------|-------------|
|
|
352
352
|
| `align` | `"center" | "end" | "start"` | No | `start` | |
|
|
353
353
|
| `element` | `TextElement` | No | `p` | The HTML element to render the text as. |
|
|
354
|
-
| `maxLines` | `"
|
|
355
|
-
| `size` | `"
|
|
354
|
+
| `maxLines` | `"base" | "large" | "larger" | "single" | "small" | "unlimited"` | No | `unlimited` | |
|
|
355
|
+
| `size` | `"base" | "large" | "small"` | No | `base` | |
|
|
356
356
|
| `UNSAFE_className` | `{ textStyle?: string; }` | No | — | **Use at your own risk:** Custom classNames for specific elements. This should only be used as a **last resort**. Usi... |
|
|
357
357
|
| `UNSAFE_style` | `{ textStyle?: CSSProperties; }` | No | — | **Use at your own risk:** Custom style for specific elements. This should only be used as a **last resort**. Using th... |
|
|
358
|
-
| `variation` | `"
|
|
358
|
+
| `variation` | `"default" | "disabled" | "error" | "info" | "subdued" | "success" | "warn"` | No | `default` | |
|
package/dist/docs/Toast/Toast.md
CHANGED
|
@@ -71,4 +71,4 @@ overloading too much detail for the user to parse at a quick glance.
|
|
|
71
71
|
| `message` | `string` | Yes | — | |
|
|
72
72
|
| `action` | `() => void` | No | — | **Deprecated**: action will be removed in the next major version @deprecated |
|
|
73
73
|
| `actionLabel` | `string` | No | — | **Deprecated**: actionLabel will be removed in the next major version @deprecated |
|
|
74
|
-
| `variation` | `"
|
|
74
|
+
| `variation` | `"error" | "info" | "success"` | No | `success` | |
|
|
@@ -3233,4 +3233,4 @@ function useTransitionStyles(context, props) {
|
|
|
3233
3233
|
};
|
|
3234
3234
|
}
|
|
3235
3235
|
|
|
3236
|
-
export { FloatingPortal as F, useFloatingParentNodeId as a, useFloatingNodeId as b, useDismiss as c, useInteractions as d, FloatingTree as e, FloatingNode as f,
|
|
3236
|
+
export { FloatingPortal as F, useFloatingParentNodeId as a, useFloatingNodeId as b, useDismiss as c, useInteractions as d, FloatingTree as e, FloatingNode as f, useRole as g, FloatingFocusManager as h, FloatingOverlay as i, useListNavigation as j, useClick as k, useTransitionStyles as l, FloatingArrow as m, useFloating as u };
|
package/dist/styles.css
CHANGED
|
@@ -3501,7 +3501,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3501
3501
|
outline: none;
|
|
3502
3502
|
}
|
|
3503
3503
|
|
|
3504
|
-
.
|
|
3504
|
+
.atokGnmWVls- {
|
|
3505
3505
|
display: grid;
|
|
3506
3506
|
max-height: inherit;
|
|
3507
3507
|
grid-template-columns: auto 1fr auto;
|
|
@@ -3521,7 +3521,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3521
3521
|
padding-bottom: var(--menu-space);
|
|
3522
3522
|
}
|
|
3523
3523
|
|
|
3524
|
-
.
|
|
3524
|
+
.zSMkwrZodBk- {
|
|
3525
3525
|
display: grid;
|
|
3526
3526
|
grid-template-columns: subgrid;
|
|
3527
3527
|
grid-column: 1 / -1;
|
|
@@ -3532,8 +3532,8 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3532
3532
|
gap: var(--menu-item-gap);
|
|
3533
3533
|
}
|
|
3534
3534
|
|
|
3535
|
-
.
|
|
3536
|
-
.
|
|
3535
|
+
.zSMkwrZodBk- > [data-menu-slot="icon"],
|
|
3536
|
+
.zSMkwrZodBk- > [data-menu-slot="prefix"] {
|
|
3537
3537
|
display: -ms-inline-flexbox;
|
|
3538
3538
|
display: inline-flex;
|
|
3539
3539
|
-ms-flex-align: center;
|
|
@@ -3543,18 +3543,18 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3543
3543
|
grid-row-start: 1;
|
|
3544
3544
|
}
|
|
3545
3545
|
|
|
3546
|
-
.
|
|
3546
|
+
.zSMkwrZodBk- > [data-menu-slot="label"] {
|
|
3547
3547
|
grid-column-start: 2;
|
|
3548
3548
|
width: 100%;
|
|
3549
3549
|
min-width: 0;
|
|
3550
3550
|
justify-self: start;
|
|
3551
3551
|
}
|
|
3552
3552
|
|
|
3553
|
-
.
|
|
3553
|
+
.qbDWOwkPouM- > [data-menu-slot="label"] {
|
|
3554
3554
|
grid-column: 1 / 3;
|
|
3555
3555
|
}
|
|
3556
3556
|
|
|
3557
|
-
.
|
|
3557
|
+
.zSMkwrZodBk- > [data-menu-slot="suffix"] {
|
|
3558
3558
|
display: -ms-inline-flexbox;
|
|
3559
3559
|
display: inline-flex;
|
|
3560
3560
|
-ms-flex-align: center;
|
|
@@ -3568,11 +3568,11 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3568
3568
|
min-width: calc(var(--base-unit) * 1.5);
|
|
3569
3569
|
}
|
|
3570
3570
|
|
|
3571
|
-
.
|
|
3571
|
+
.zSMkwrZodBk- > [data-menu-slot="suffix"][data-unchecked] {
|
|
3572
3572
|
visibility: hidden;
|
|
3573
3573
|
}
|
|
3574
3574
|
|
|
3575
|
-
.
|
|
3575
|
+
._353OIWGazfE-,
|
|
3576
3576
|
.Q0ssxff-Qo4- {
|
|
3577
3577
|
display: grid;
|
|
3578
3578
|
grid-template-columns: subgrid;
|
|
@@ -3580,25 +3580,25 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3580
3580
|
grid-column-start: 1;
|
|
3581
3581
|
}
|
|
3582
3582
|
|
|
3583
|
-
.
|
|
3583
|
+
._2VyPM45lQBE- {
|
|
3584
3584
|
display: grid;
|
|
3585
3585
|
grid-template-columns: subgrid;
|
|
3586
3586
|
grid-column: 1 / -1;
|
|
3587
3587
|
grid-column-start: 1;
|
|
3588
3588
|
}
|
|
3589
3589
|
|
|
3590
|
-
.
|
|
3591
|
-
.
|
|
3590
|
+
.atokGnmWVls- ._353OIWGazfE-:not(:first-child),
|
|
3591
|
+
.atokGnmWVls- .Q0ssxff-Qo4-:not(:first-child) {
|
|
3592
3592
|
margin-top: 8px;
|
|
3593
3593
|
margin-top: var(--space-small);
|
|
3594
3594
|
}
|
|
3595
3595
|
|
|
3596
|
-
.
|
|
3597
|
-
.
|
|
3596
|
+
.atokGnmWVls- .jnggqK3YTIU- + ._353OIWGazfE-,
|
|
3597
|
+
.atokGnmWVls- .jnggqK3YTIU- + .Q0ssxff-Qo4- {
|
|
3598
3598
|
margin-top: 0;
|
|
3599
3599
|
}
|
|
3600
3600
|
|
|
3601
|
-
.
|
|
3601
|
+
.efA-ozx9w0w-,
|
|
3602
3602
|
.BklkzNPbJ5Q- {
|
|
3603
3603
|
grid-column: 1 / -1;
|
|
3604
3604
|
grid-column-start: 1;
|
|
@@ -3668,7 +3668,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3668
3668
|
-webkit-tap-highlight-color: transparent;
|
|
3669
3669
|
}
|
|
3670
3670
|
|
|
3671
|
-
.
|
|
3671
|
+
.qbDWOwkPouM- {
|
|
3672
3672
|
--menu-item-padding-right: var(--space-smaller);
|
|
3673
3673
|
}
|
|
3674
3674
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { CSSProperties } from "react";
|
|
2
|
+
export interface UnsafeProps {
|
|
3
|
+
readonly className?: string;
|
|
4
|
+
readonly style?: CSSProperties;
|
|
5
|
+
readonly UNSAFE_className?: string;
|
|
6
|
+
readonly UNSAFE_style?: CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
export declare function mergeUnsafeProps(props: UnsafeProps): Pick<UnsafeProps, "className" | "style">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "7.11.
|
|
3
|
+
"version": "7.11.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -583,5 +583,5 @@
|
|
|
583
583
|
"> 1%",
|
|
584
584
|
"IE 10"
|
|
585
585
|
],
|
|
586
|
-
"gitHead": "
|
|
586
|
+
"gitHead": "1adc75fc6e71cd2166f7c5b497dad8d0c095f35b"
|
|
587
587
|
}
|