Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pink tests #257

Merged
merged 5 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7"
"@changesets/cli": "^2.27.12"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}
341 changes: 147 additions & 194 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions v2/legacy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "sass --style=compressed --load-path=../../node_modules src/_index.scss:dist/pink.css"
},
"author": "",
"license": "ISC",
"dependencies": {
"@appwrite.io/pink-icons": "1.0.0",
"normalize.css": "^8.0.1",
"the-new-css-reset": "^1.11.2"
},
"main": "dist/pink.css",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Diff not rendered.
Diff not rendered.
4 changes: 2 additions & 2 deletions v2/pink-sb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"format": "prettier --write .",
"sb:build": "svelte-kit sync && storybook build",
"sb:test": "test-storybook",
"test": "genauigkeit test",
"test:generate": "genauigkeit generate"
"test": "genauigkeit test -p '^(?!lab)'",
"test:generate": "genauigkeit generate -p '^(?!lab)'"
},
"exports": {
".": {
Expand Down
1 change: 0 additions & 1 deletion v2/pink-sb/src/lib/card/Media.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import Badge from '$lib/Badge.svelte';
import Image from '$lib/Image.svelte';
import { Layout, Typography } from '$lib/index.js';
import { size } from '@floating-ui/dom';
import type { BaseCardProps } from './Base.svelte';

type $$Props = BaseCardProps & {
Expand Down
4 changes: 2 additions & 2 deletions v2/pink-sb/src/lib/input/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import type { SelectProps, States } from './types.js';
import { createSelect } from '@melt-ui/svelte';
import { Icon, Badge } from '$lib/index.js';
import { createEventDispatcher } from 'svelte';
import { createEventDispatcher, SvelteComponent } from 'svelte';
import { IconChevronDown, IconChevronUp } from '@appwrite.io/pink-icons-svelte';

export let state: States = 'default';
Expand All @@ -24,7 +24,7 @@

const dispatch = createEventDispatcher();
let selectedLeadingHtml: undefined | string = undefined;
let selectedIcon: undefined | ComponentType = undefined;
let selectedIcon: undefined | SvelteComponent = undefined;

const {
elements: { trigger, menu, option },
Expand Down
1 change: 1 addition & 0 deletions v2/pink-sb/src/lib/table/Button.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script lang="ts">
import type { HTMLButtonAttributes } from 'svelte/elements';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
type $$Props = HTMLButtonAttributes;

function clickOnEnter(
Expand Down
4 changes: 0 additions & 4 deletions v2/pink-sb/src/stories/DirectoryPicker.stories.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,6 @@
};
</script>

<script>
import { IconGithub } from '@appwrite.io/pink-icons-svelte';
</script>

<div class="wrapper">
<Story name="Default" let:args>
<DirectoryPicker
Expand Down