@randstad-uca/design-system 1.0.22 → 1.0.24
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/assets/icons/arrow_back.svg +10 -0
- package/dist/components/Button.d.ts +1 -1
- package/dist/components/Form.d.ts +1 -0
- package/dist/components/Select.d.ts +2 -0
- package/dist/index.js +112 -48
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -2
- package/dist/stories/Button.stories.d.ts +3 -1
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_3095_5899)">
|
|
3
|
+
<path d="M21.475 12.2H3.725L8.575 7.35C8.775 7.15 8.775 6.85 8.575 6.65C8.375 6.45 8.075 6.45 7.875 6.65L2.15 12.35C1.95 12.55 1.95 12.85 2.15 13.05L7.8 18.7C7.9 18.8 8.025 18.85 8.15 18.85C8.275 18.85 8.4 18.8 8.5 18.7C8.7 18.5 8.7 18.2 8.5 18L3.725 13.2H21.5C21.775 13.2 22 12.975 22 12.7C22 12.425 21.75 12.2 21.475 12.2Z" fill="#2175D9"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_3095_5899">
|
|
7
|
+
<rect width="24" height="24" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import '../styles/buttons.css';
|
|
3
3
|
export declare class RandstadButton extends LitElement {
|
|
4
|
-
variant: 'button-primary' | 'button-secondary' | 'button-tertiary' | 'button-round';
|
|
4
|
+
variant: 'button-primary' | 'button-secondary' | 'button-tertiary' | 'button-round' | 'button-card';
|
|
5
5
|
size: 'md' | 'lg';
|
|
6
6
|
label: string;
|
|
7
7
|
loader: boolean;
|
|
@@ -20,6 +20,7 @@ export declare class FilterableSelect extends LitElement {
|
|
|
20
20
|
filterValue: string;
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
mobileFilterValue: string;
|
|
23
|
+
private highlightedIndex;
|
|
23
24
|
private debounceTimeout;
|
|
24
25
|
static styles: import("lit").CSSResult;
|
|
25
26
|
constructor();
|
|
@@ -34,6 +35,7 @@ export declare class FilterableSelect extends LitElement {
|
|
|
34
35
|
handleSelect(option: any): void;
|
|
35
36
|
handleIconClick(): void;
|
|
36
37
|
handleClickOutside(e: Event): void;
|
|
38
|
+
handleKeyDown(e: KeyboardEvent): void;
|
|
37
39
|
render(): import("lit-html").TemplateResult<1>;
|
|
38
40
|
}
|
|
39
41
|
export {};
|