Skip to content

Commit

Permalink
Remove @public-ui/themes and @public-ui/designer packages (#7249)
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio authored Feb 5, 2025
2 parents 9725a28 + af9dddd commit 674006c
Show file tree
Hide file tree
Showing 221 changed files with 35 additions and 147,861 deletions.
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/components@2.0.3/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

0 comments on commit 674006c

Please sign in to comment.