@randstad-uca/design-system 1.0.107 → 1.0.108
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/postulation.svg +4 -0
- package/dist/assets/icons/search-white.svg +10 -0
- package/dist/components/Navbar.d.ts +24 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +196 -37
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Navbar.stories.d.ts +21 -0
- package/package.json +1 -1
- package/dist/components/__tests__/Accordion.test.d.ts +0 -1
- package/dist/components/__tests__/Bubble.test.d.ts +0 -1
- package/dist/components/__tests__/Button.test.d.ts +0 -1
- package/dist/components/__tests__/Checkbox.test.d.ts +0 -1
- package/dist/components/__tests__/Icon.test.d.ts +0 -1
- package/dist/components/__tests__/MfaModal.test.d.ts +0 -1
- package/dist/components/__tests__/Modal.test.d.ts +0 -1
- package/dist/components/__tests__/Notice.test.d.ts +0 -1
- package/dist/components/__tests__/Popup.test.d.ts +0 -1
- package/dist/components/__tests__/ProgressCircle.test.d.ts +0 -1
- package/dist/components/__tests__/Radio.test.d.ts +0 -1
- package/dist/components/__tests__/Snackbar.test.d.ts +0 -1
- package/dist/components/__tests__/Stepper.test.d.ts +0 -1
- package/dist/components/__tests__/Tabs.test.d.ts +0 -1
- package/dist/components/__tests__/setup.d.ts +0 -5
package/dist/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
2
|
+
import type { NavItem } from '../components/Navbar';
|
|
3
|
+
import '../components/Navbar';
|
|
4
|
+
import '../components/Icon';
|
|
5
|
+
interface NavbarArgs {
|
|
6
|
+
items: NavItem[];
|
|
7
|
+
centerIcon: string;
|
|
8
|
+
centerLabel: string;
|
|
9
|
+
hidden: boolean;
|
|
10
|
+
desktop: boolean;
|
|
11
|
+
selectedIndex: number;
|
|
12
|
+
}
|
|
13
|
+
declare const meta: Meta<NavbarArgs>;
|
|
14
|
+
export default meta;
|
|
15
|
+
type Story = StoryObj<NavbarArgs>;
|
|
16
|
+
export declare const Default: Story;
|
|
17
|
+
export declare const DesktopEnabled: Story;
|
|
18
|
+
export declare const SelectedItem: Story;
|
|
19
|
+
export declare const WithCenterLabel: Story;
|
|
20
|
+
export declare const CustomItems: Story;
|
|
21
|
+
export declare const Hidden: Story;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export declare function fixture<T extends HTMLElement>(tag: string, props?: Record<string, unknown>): Promise<T>;
|
|
2
|
-
/** Get shadow root of element and query inside it */
|
|
3
|
-
export declare function query(el: HTMLElement, selector: string): Element | null;
|
|
4
|
-
/** Get all matching elements inside shadow root */
|
|
5
|
-
export declare function queryAll(el: HTMLElement, selector: string): Element[];
|