tharaday 0.5.7 → 0.5.9
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/components/Divider/Divider.d.ts +2 -0
- package/dist/components/Divider/Divider.stories.d.ts +15 -0
- package/dist/components/Divider/Divider.types.d.ts +10 -0
- package/dist/components/Header/Header.stories.d.ts +2 -0
- package/dist/ds.css +1 -1
- package/dist/ds.js +837 -795
- package/dist/ds.umd.cjs +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/layouts/AppLayout/AppLayout.stories.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Divider/Divider.module.css +23 -0
- package/src/components/Divider/Divider.stories.tsx +46 -0
- package/src/components/Divider/Divider.tsx +47 -0
- package/src/components/Divider/Divider.types.ts +12 -0
- package/src/components/Header/Header.module.css +42 -1
- package/src/components/Header/Header.stories.tsx +20 -0
- package/src/components/Header/Header.tsx +18 -17
- package/src/index.ts +2 -0
- package/src/layouts/AppLayout/AppLayout.stories.tsx +17 -0
|
@@ -122,3 +122,20 @@ export const LoggedOut: Story = {
|
|
|
122
122
|
activeNavId: 'home',
|
|
123
123
|
},
|
|
124
124
|
};
|
|
125
|
+
|
|
126
|
+
export const LoggedOutWithoutHeaderActions: Story = {
|
|
127
|
+
args: {
|
|
128
|
+
...LoggedOut.args,
|
|
129
|
+
onLogin: undefined,
|
|
130
|
+
onCreateAccount: undefined,
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
export const LongHeaderContent: Story = {
|
|
135
|
+
args: {
|
|
136
|
+
...Default.args,
|
|
137
|
+
headerTitle: 'Tharaday Design System Platform',
|
|
138
|
+
user: { name: 'Alexandria Catherine Montgomery' },
|
|
139
|
+
maxWidth: '48rem',
|
|
140
|
+
},
|
|
141
|
+
};
|