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

Remove @public-ui/themes and @public-ui/designer packages #7249

Merged
merged 11 commits into from
Feb 5, 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
12 changes: 0 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,6 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_GRANULAR_TOKEN}}
NPM_CONFIG_PROVENANCE: true
- name: Build and publish themes
run: pnpm publish --access ${{env.access}} --no-git-checks --tag ${{github.event.inputs.tag}}
working-directory: packages/themes
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_GRANULAR_TOKEN}}
NPM_CONFIG_PROVENANCE: true
- name: Build and publish sample react
run: pnpm publish --access ${{env.access}} --no-git-checks --tag ${{github.event.inputs.tag}}
working-directory: packages/samples/react
Expand All @@ -208,12 +202,6 @@ jobs:
node-version: 20
registry-url: '${{env.github-registry}}'

- name: Publish designer
run: npm publish --access restricted
working-directory: packages/designer
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish sample react
run: npm publish --access restricted
working-directory: packages/samples/react
Expand Down
2 changes: 0 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
"packages/adapters/solid",
"packages/adapters/vue",
"packages/components",
"packages/designer",
"packages/samples/react",
"packages/schema",
"packages/themes",
"packages/themes/default",
"packages/themes/ecl",
"packages/tools/kolibri-cli",
Expand Down
8 changes: 4 additions & 4 deletions packages/adapters/preact/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# KoliBri - Preact-Adapter

[![npm](https://img.shields.io/npm/v/@public-ui/react)](https://www.npmjs.com/package/@public-ui/components)
[![license](https://img.shields.io/npm/l/@public-ui/react)](https://github.com/public-ui/kolibri/blob/main/LICENSE)
[![downloads](https://img.shields.io/npm/dt/@public-ui/react)](https://www.npmjs.com/package/@public-ui/react)
[![npm](https://img.shields.io/npm/v/@public-ui/preact)](https://www.npmjs.com/package/@public-ui/preact)
[![license](https://img.shields.io/npm/l/@public-ui/preact)](https://github.com/public-ui/kolibri/blob/main/LICENSE)
[![downloads](https://img.shields.io/npm/dt/@public-ui/preact)](https://www.npmjs.com/package/@public-ui/preact)
[![issues](https://img.shields.io/github/issues/public-ui/kolibri)](https://github.com/public-ui/kolibri/issues)
[![pull requests](https://img.shields.io/github/issues-pr/public-ui/kolibri)](https://github.com/public-ui/kolibri/pulls)
[![size](https://img.shields.io/bundlephobia/min/@public-ui/react)](https://bundlephobia.com/result?p=@public-ui/themes)
[![size](https://img.shields.io/bundlephobia/min/@public-ui/preact)](https://bundlephobia.com/result?p=@public-ui/preact)
![contributors](https://img.shields.io/github/contributors/public-ui/kolibri)

The [Preact](https://github.com/preactjs/preact) adapter is a wrapper around the React adapter. Please refer to the [React adapter documentation](../react/README.md) for more information.
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/react-standalone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr

```ts
import { register } from 'https://unpkg.com/@public-ui/[email protected]/dist/esm/index.js';
import { DEFAULT } from 'https://unpkg.com/@public-ui/themes/dist/index.mjs';
import { DEFAULT } from 'https://unpkg.com/@public-ui/theme-default/dist/index.mjs';
register(DEFAULT, []).catch(console.warn);
```

Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr
```ts
import { defineCustomElements } from '@public-ui/components/dist/loader';
import { register } from '@public-ui/components';
import { DEFAULT } from '@public-ui/themes';
import { DEFAULT } from '@public-ui/theme-default';

register(DEFAULT, defineCustomElements)
.then(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr

```ts
import { createApp } from 'vue';
import { DEFAULT } from '@public-ui/themes';
import { DEFAULT } from '@public-ui/theme-default';
import { defineCustomElements } from '@public-ui/components/dist/loader';
import { register } from '@public-ui/components';

Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr
```ts
import { defineCustomElements } from '@public-ui/components/dist/loader';
import { register } from '@public-ui/components';
import { DEFAULT } from '@public-ui/themes';
import { DEFAULT } from '@public-ui/theme-default';

register(DEFAULT, defineCustomElements)
.then(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/modal/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
z-index: 1;
}
}
}
}
1 change: 0 additions & 1 deletion packages/designer/.eslintignore

This file was deleted.

31 changes: 0 additions & 31 deletions packages/designer/.eslintrc.js

This file was deleted.

45 changes: 0 additions & 45 deletions packages/designer/.gitignore

This file was deleted.

139 changes: 0 additions & 139 deletions packages/designer/.kolibri.config.json

This file was deleted.

1 change: 0 additions & 1 deletion packages/designer/.mocharc.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/designer/.npmrc

This file was deleted.

4 changes: 0 additions & 4 deletions packages/designer/.prettierignore

This file was deleted.

4 changes: 0 additions & 4 deletions packages/designer/.ts-prunerc.js

This file was deleted.

3 changes: 0 additions & 3 deletions packages/designer/.vscode/settings.json

This file was deleted.

26 changes: 0 additions & 26 deletions packages/designer/README.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/designer/babel.config.js

This file was deleted.

Loading
Loading