-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9e4647
commit cf3fdb7
Showing
72 changed files
with
679 additions
and
996 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
.DS_Store | ||
.env | ||
.env.* | ||
.eslintignore | ||
.eslintrc.cjs | ||
.github | ||
.gitignore | ||
.idea | ||
.npmrc | ||
.prettierignore | ||
.prettierrc | ||
.svelte-kit | ||
bin | ||
build | ||
coverage | ||
dist | ||
docs-src | ||
node_modules | ||
orbitale-svelte-admin-*.tgz | ||
package | ||
static | ||
svelte.config.js | ||
typedoc.json | ||
vite.config.js.timestamp-* | ||
vite.config.ts | ||
vite.config.ts.timestamp-* | ||
vite.lib.config.ts | ||
vite.webcomponents.config.ts | ||
yarn-error.log | ||
yarn.lock | ||
dist/app/ | ||
src/testApp/* | ||
src/app.html | ||
src/app.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,14 @@ | |
"author": "Alex \"Pierstoval\" Rock <[email protected]>", | ||
"license": "LGPL-3.0-or-later", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"build:library": "vite -c vite.lib.config.ts build", | ||
"build:webcomponents": "vite -c ./vite.webcomponents.config.ts build", | ||
"dev": "vite -c vite.config.ts dev", | ||
"build": "yarn build:app && yarn build:lib && yarn build:themes && yarn build:webcomponents && yarn typedoc", | ||
"build:app": "vite -c vite.config.ts build", | ||
"build:lib": "vite -c vite.lib.config.ts build", | ||
"build:themes": "vite -c vite.themes.config.ts build", | ||
"build:webcomponents": "vite -c vite.webcomponents.config.ts build", | ||
"create:field": "node bin/create_field.cjs", | ||
"preview": "vite preview", | ||
"package": "svelte-kit sync && svelte-package && publint", | ||
"prepublishOnly": "yarn run package", | ||
"preview": "vite -c vite.app.config.ts preview", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin=prettier-plugin-svelte . --check . && eslint src", | ||
|
@@ -22,20 +22,15 @@ | |
"typedoc": "typedoc --options typedoc.json --readme none" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"svelte": "./dist/index.js" | ||
}, | ||
"./dist/": "./dist/index.js", | ||
"./themes/carbon": { | ||
"types": "./dist/themes/carbon/index.d.ts", | ||
"svelte": "./dist/themes/carbon/index.js" | ||
} | ||
".": "./build/lib/index.js", | ||
"./themes": "./build/themes/index.js" | ||
}, | ||
"files": [ | ||
"dist", | ||
"!dist/**/*.test.*", | ||
"!dist/**/*.spec.*" | ||
"build/lib", | ||
"build/themes", | ||
"build/webcomponents", | ||
"src/lib", | ||
"src/themes" | ||
], | ||
"peerDependencies": { | ||
"carbon-components-svelte": "^0.80.0", | ||
|
@@ -48,24 +43,24 @@ | |
"luxon": "^3.4.4", | ||
"svelte": "^4.2.17", | ||
"svelte-i18n": "^4.0.0", | ||
"typedoc": "^0.25.13" | ||
"typedoc": "^0.26.3" | ||
}, | ||
"devDependencies": { | ||
"@faker-js/faker": "^8.4.1", | ||
"@sveltejs/adapter-auto": "^3.2.1", | ||
"@sveltejs/adapter-static": "^3.0.0", | ||
"@sveltejs/kit": "^2.5.10", | ||
"@sveltejs/package": "^2.3.1", | ||
"@sveltejs/vite-plugin-svelte": "^3.1.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.1.1", | ||
"@testing-library/jest-dom": "^6.4.5", | ||
"@testing-library/svelte": "^5.1.0", | ||
"@types/node": "^20.12.12", | ||
"@types/uuid": "^9.0.8", | ||
"@types/uuid": "^10.0.0", | ||
"@typescript-eslint/eslint-plugin": "^7.10.0", | ||
"@typescript-eslint/parser": "^7.10.0", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"axios": "^1.7.2", | ||
"eslint": "^8.57.0", | ||
"eslint": "^9.6.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-svelte": "^2.39.0", | ||
"intl-messageformat": "^10.5.14", | ||
|
@@ -81,8 +76,7 @@ | |
"vite": "^5.2.11", | ||
"vitest": "^1.6.0" | ||
}, | ||
"main": "./dist/index.js", | ||
"svelte": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"main": "./build/lib/index.js", | ||
"types": "./build/lib/index.d.ts", | ||
"type": "module" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...bon/FilterComponents/NumericFilter.svelte → ...bon/FilterComponents/NumericFilter.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...carbon/FilterComponents/TextFilter.svelte → ...carbon/FilterComponents/TextFilter.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.