├── .browserslistrc ├── .editorconfig ├── .eslintrc.cjs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── component-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── azure-static-web-apps-witty-plant-07a086e03.yml ├── .gitignore ├── .ncurc.json ├── .prettierrc.json ├── .storybook ├── components │ ├── Codesandbox.tsx │ ├── Customization.tsx │ ├── customization.css │ └── index.ts ├── helpers │ ├── codesandbox │ │ ├── codesandbox-angular.helper.ts │ │ ├── codesandbox-preact.helper.ts │ │ ├── codesandbox-qwik.helper.ts │ │ ├── codesandbox-react.helper.ts │ │ ├── codesandbox-solid.helper.ts │ │ ├── codesandbox-svelte.helper.ts │ │ ├── codesandbox-vue.helper.ts │ │ ├── codesandbox-web.helper.ts │ │ ├── codesandbox.helper.ts │ │ └── index.ts │ └── index.ts ├── initialize.js ├── main.cjs ├── manager.js ├── preview.js ├── storybook.css └── theme.js ├── .stylelintrc ├── AGENTS.md ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SPONSORS.md ├── compiler ├── base.compiler.js ├── compiler.tasks.js ├── dev.tasks.js ├── index.js ├── platforms │ ├── angular.js │ ├── preact.js │ ├── qwik.js │ ├── react.js │ ├── solid.js │ ├── svelte.js │ ├── vue.js │ └── webcomponents.js └── themes.tasks.js ├── docs ├── _introduction.stories.mdx ├── customization.stories.mdx ├── elements.stories.mdx └── resources │ ├── favicon.ico │ ├── logo-github.svg │ ├── logo-text.svg │ └── logo.svg ├── hooks ├── post-install.hook.js └── post-package.hook.js ├── lerna.json ├── package.json ├── packages ├── angular │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── rollup.config.js ├── preact │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ └── yarn.lock ├── qwik │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── tsconfig.json │ ├── vite.config.ts │ └── yarn.lock ├── react │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ └── yarn.lock ├── solid │ ├── CHANGELOG.md │ ├── README.md │ ├── copy-css.js │ ├── package.json │ ├── rollup.config.js │ └── solid-index.tsx ├── svelte │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── svelte.config.js │ └── tsconfig.json ├── vue │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ └── typings │ │ └── vue.d.ts └── webcomponents │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── rollup.config.js ├── postcss.config.cjs ├── rollup.config.js ├── rollup.themes.config.js ├── sponsors └── logos │ └── helpdev.png ├── src ├── elements │ ├── components │ │ ├── avatar │ │ │ ├── avatar.css │ │ │ ├── avatar.lite.tsx │ │ │ ├── avatar.model.ts │ │ │ ├── avatar.service.ts │ │ │ ├── avatar.stories.mdx │ │ │ └── index.ts │ │ ├── breadcrumb │ │ │ ├── breadcrumb.css │ │ │ ├── breadcrumb.lite.tsx │ │ │ ├── breadcrumb.model.ts │ │ │ ├── breadcrumb.service.ts │ │ │ ├── breadcrumb.stories.mdx │ │ │ └── index.ts │ │ ├── button │ │ │ ├── button.css │ │ │ ├── button.lite.tsx │ │ │ ├── button.model.ts │ │ │ ├── button.service.ts │ │ │ ├── button.stories.mdx │ │ │ └── index.ts │ │ ├── code │ │ │ ├── code.css │ │ │ ├── code.lite.tsx │ │ │ ├── code.model.ts │ │ │ ├── code.service.ts │ │ │ ├── code.stories.mdx │ │ │ └── index.ts │ │ ├── pill │ │ │ ├── index.ts │ │ │ ├── pill.css │ │ │ ├── pill.lite.tsx │ │ │ ├── pill.model.ts │ │ │ ├── pill.service.ts │ │ │ └── pill.stories.mdx │ │ └── spinner │ │ │ ├── index.ts │ │ │ ├── spinner.css │ │ │ ├── spinner.lite.tsx │ │ │ ├── spinner.model.ts │ │ │ ├── spinner.service.ts │ │ │ └── spinner.stories.mdx │ ├── enterprise │ │ └── itchio │ │ │ ├── index.ts │ │ │ ├── itchio.css │ │ │ ├── itchio.lite.tsx │ │ │ ├── itchio.model.ts │ │ │ ├── itchio.service.ts │ │ │ └── itchio.stories.mdx │ ├── extensions │ │ ├── toast │ │ │ ├── index.ts │ │ │ ├── toast.bus.ts │ │ │ ├── toast.css │ │ │ ├── toast.hook.ts │ │ │ ├── toast.lite.tsx │ │ │ ├── toast.model.ts │ │ │ ├── toast.service.ts │ │ │ └── toast.stories.mdx │ │ └── tooltip │ │ │ ├── index.ts │ │ │ ├── tooltip.css │ │ │ ├── tooltip.hook.ts │ │ │ └── tooltip.stories.mdx │ └── layout │ │ ├── column │ │ ├── column.css │ │ ├── column.lite.tsx │ │ ├── column.model.ts │ │ ├── column.service.ts │ │ ├── column.stories.mdx │ │ ├── grid.stories.mdx │ │ └── index.ts │ │ ├── container │ │ ├── container.css │ │ ├── container.lite.tsx │ │ ├── container.model.ts │ │ ├── container.service.ts │ │ ├── container.stories.mdx │ │ └── index.ts │ │ └── row │ │ ├── index.ts │ │ ├── row.css │ │ ├── row.lite.tsx │ │ ├── row.model.ts │ │ ├── row.service.ts │ │ └── row.stories.mdx ├── helpers │ ├── arg-type.helper.ts │ ├── breakpoint.helper.ts │ ├── classes.helper.ts │ ├── code.helper.ts │ ├── codejar.helper.ts │ ├── color.helper.ts │ ├── debug.helper.ts │ ├── element.helper.ts │ ├── index.ts │ ├── inject-script.helper.ts │ ├── itchio.helper.ts │ ├── object.helper.ts │ ├── platform.helper.ts │ ├── version.helper.ts │ └── wait.helper.ts ├── index.ts ├── models │ ├── breakpoint.model.ts │ ├── component.model.ts │ ├── dynamic.model.ts │ ├── external-library.model.ts │ ├── index.ts │ ├── intent.model.ts │ └── variant.model.ts ├── styles │ ├── base │ │ └── reset.css │ ├── build.css │ ├── mixins │ │ ├── background-opacity.css │ │ ├── breakpoint-modifier.css │ │ └── shared.css │ ├── themes │ │ ├── papanasi │ │ │ ├── avatar.css │ │ │ ├── button.css │ │ │ ├── code.css │ │ │ ├── column.css │ │ │ ├── container.css │ │ │ ├── index.css │ │ │ ├── itchio.css │ │ │ ├── pill.css │ │ │ ├── row.css │ │ │ ├── spinner.css │ │ │ ├── tooltip.css │ │ │ └── variables.css │ │ └── sketch │ │ │ ├── avatar.css │ │ │ ├── button.css │ │ │ ├── code.css │ │ │ ├── column.css │ │ │ ├── container.css │ │ │ ├── index.css │ │ │ ├── itchio.css │ │ │ ├── pill.css │ │ │ ├── row.css │ │ │ ├── spinner.css │ │ │ ├── tooltip.css │ │ │ └── variables.css │ └── variables.css └── typings │ └── styles.d.ts ├── tsconfig.json └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | last 2 versions 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ckgrafico, BuilderIO] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/component-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.github/ISSUE_TEMPLATE/component-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-witty-plant-07a086e03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.github/workflows/azure-static-web-apps-witty-plant-07a086e03.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.gitignore -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.ncurc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.storybook/components/Codesandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/components/Codesandbox.tsx -------------------------------------------------------------------------------- /.storybook/components/Customization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/components/Customization.tsx -------------------------------------------------------------------------------- /.storybook/components/customization.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/components/customization.css -------------------------------------------------------------------------------- /.storybook/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/components/index.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-angular.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-angular.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-preact.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-preact.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-qwik.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-qwik.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-react.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-react.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-solid.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-solid.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-svelte.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-svelte.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-vue.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-vue.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox-web.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox-web.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/codesandbox.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/codesandbox.helper.ts -------------------------------------------------------------------------------- /.storybook/helpers/codesandbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/helpers/codesandbox/index.ts -------------------------------------------------------------------------------- /.storybook/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './codesandbox'; 2 | -------------------------------------------------------------------------------- /.storybook/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/initialize.js -------------------------------------------------------------------------------- /.storybook/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/main.cjs -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/manager.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.storybook/storybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/storybook.css -------------------------------------------------------------------------------- /.storybook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.storybook/theme.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/.stylelintrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/README.md -------------------------------------------------------------------------------- /SPONSORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/SPONSORS.md -------------------------------------------------------------------------------- /compiler/base.compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/base.compiler.js -------------------------------------------------------------------------------- /compiler/compiler.tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/compiler.tasks.js -------------------------------------------------------------------------------- /compiler/dev.tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/dev.tasks.js -------------------------------------------------------------------------------- /compiler/index.js: -------------------------------------------------------------------------------- 1 | import './compiler.tasks.js'; 2 | -------------------------------------------------------------------------------- /compiler/platforms/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/angular.js -------------------------------------------------------------------------------- /compiler/platforms/preact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/preact.js -------------------------------------------------------------------------------- /compiler/platforms/qwik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/qwik.js -------------------------------------------------------------------------------- /compiler/platforms/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/react.js -------------------------------------------------------------------------------- /compiler/platforms/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/solid.js -------------------------------------------------------------------------------- /compiler/platforms/svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/svelte.js -------------------------------------------------------------------------------- /compiler/platforms/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/vue.js -------------------------------------------------------------------------------- /compiler/platforms/webcomponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/platforms/webcomponents.js -------------------------------------------------------------------------------- /compiler/themes.tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/compiler/themes.tasks.js -------------------------------------------------------------------------------- /docs/_introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/_introduction.stories.mdx -------------------------------------------------------------------------------- /docs/customization.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/customization.stories.mdx -------------------------------------------------------------------------------- /docs/elements.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/elements.stories.mdx -------------------------------------------------------------------------------- /docs/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/resources/favicon.ico -------------------------------------------------------------------------------- /docs/resources/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/resources/logo-github.svg -------------------------------------------------------------------------------- /docs/resources/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/resources/logo-text.svg -------------------------------------------------------------------------------- /docs/resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/docs/resources/logo.svg -------------------------------------------------------------------------------- /hooks/post-install.hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/hooks/post-install.hook.js -------------------------------------------------------------------------------- /hooks/post-package.hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/hooks/post-package.hook.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/package.json -------------------------------------------------------------------------------- /packages/angular/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/angular/CHANGELOG.md -------------------------------------------------------------------------------- /packages/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/angular/README.md -------------------------------------------------------------------------------- /packages/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/angular/package.json -------------------------------------------------------------------------------- /packages/angular/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/angular/rollup.config.js -------------------------------------------------------------------------------- /packages/preact/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/preact/CHANGELOG.md -------------------------------------------------------------------------------- /packages/preact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/preact/README.md -------------------------------------------------------------------------------- /packages/preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/preact/package.json -------------------------------------------------------------------------------- /packages/preact/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/preact/rollup.config.js -------------------------------------------------------------------------------- /packages/preact/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/preact/yarn.lock -------------------------------------------------------------------------------- /packages/qwik/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/CHANGELOG.md -------------------------------------------------------------------------------- /packages/qwik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/README.md -------------------------------------------------------------------------------- /packages/qwik/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/package.json -------------------------------------------------------------------------------- /packages/qwik/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/tsconfig.json -------------------------------------------------------------------------------- /packages/qwik/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/vite.config.ts -------------------------------------------------------------------------------- /packages/qwik/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/qwik/yarn.lock -------------------------------------------------------------------------------- /packages/react/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/react/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/react/rollup.config.js -------------------------------------------------------------------------------- /packages/react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/react/yarn.lock -------------------------------------------------------------------------------- /packages/solid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/solid/CHANGELOG.md -------------------------------------------------------------------------------- /packages/solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/solid/README.md -------------------------------------------------------------------------------- /packages/solid/copy-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/solid/copy-css.js -------------------------------------------------------------------------------- /packages/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/solid/package.json -------------------------------------------------------------------------------- /packages/solid/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/solid/rollup.config.js -------------------------------------------------------------------------------- /packages/solid/solid-index.tsx: -------------------------------------------------------------------------------- 1 | export * from './src/index.ts'; 2 | -------------------------------------------------------------------------------- /packages/svelte/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/svelte/CHANGELOG.md -------------------------------------------------------------------------------- /packages/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/svelte/README.md -------------------------------------------------------------------------------- /packages/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/svelte/package.json -------------------------------------------------------------------------------- /packages/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/svelte/svelte.config.js -------------------------------------------------------------------------------- /packages/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/svelte/tsconfig.json -------------------------------------------------------------------------------- /packages/vue/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/vue/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/vue/README.md -------------------------------------------------------------------------------- /packages/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/vue/package.json -------------------------------------------------------------------------------- /packages/vue/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/vue/rollup.config.js -------------------------------------------------------------------------------- /packages/vue/typings/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/vue/typings/vue.d.ts -------------------------------------------------------------------------------- /packages/webcomponents/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/webcomponents/CHANGELOG.md -------------------------------------------------------------------------------- /packages/webcomponents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/webcomponents/README.md -------------------------------------------------------------------------------- /packages/webcomponents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/webcomponents/package.json -------------------------------------------------------------------------------- /packages/webcomponents/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/packages/webcomponents/rollup.config.js -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/rollup.config.js -------------------------------------------------------------------------------- /rollup.themes.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/rollup.themes.config.js -------------------------------------------------------------------------------- /sponsors/logos/helpdev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/sponsors/logos/helpdev.png -------------------------------------------------------------------------------- /src/elements/components/avatar/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/avatar/avatar.css -------------------------------------------------------------------------------- /src/elements/components/avatar/avatar.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/avatar/avatar.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/avatar/avatar.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/avatar/avatar.model.ts -------------------------------------------------------------------------------- /src/elements/components/avatar/avatar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/avatar/avatar.service.ts -------------------------------------------------------------------------------- /src/elements/components/avatar/avatar.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/avatar/avatar.stories.mdx -------------------------------------------------------------------------------- /src/elements/components/avatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './avatar.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/breadcrumb/breadcrumb.css -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/breadcrumb.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/breadcrumb/breadcrumb.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/breadcrumb.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/breadcrumb/breadcrumb.model.ts -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/breadcrumb.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/breadcrumb/breadcrumb.service.ts -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/breadcrumb.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/breadcrumb/breadcrumb.stories.mdx -------------------------------------------------------------------------------- /src/elements/components/breadcrumb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './breadcrumb.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/button/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/button/button.css -------------------------------------------------------------------------------- /src/elements/components/button/button.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/button/button.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/button/button.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/button/button.model.ts -------------------------------------------------------------------------------- /src/elements/components/button/button.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/button/button.service.ts -------------------------------------------------------------------------------- /src/elements/components/button/button.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/button/button.stories.mdx -------------------------------------------------------------------------------- /src/elements/components/button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './button.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/code/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/code/code.css -------------------------------------------------------------------------------- /src/elements/components/code/code.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/code/code.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/code/code.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/code/code.model.ts -------------------------------------------------------------------------------- /src/elements/components/code/code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/code/code.service.ts -------------------------------------------------------------------------------- /src/elements/components/code/code.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/code/code.stories.mdx -------------------------------------------------------------------------------- /src/elements/components/code/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './code.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/pill/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './pill.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/pill/pill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/pill/pill.css -------------------------------------------------------------------------------- /src/elements/components/pill/pill.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/pill/pill.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/pill/pill.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/pill/pill.model.ts -------------------------------------------------------------------------------- /src/elements/components/pill/pill.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/pill/pill.service.ts -------------------------------------------------------------------------------- /src/elements/components/pill/pill.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/pill/pill.stories.mdx -------------------------------------------------------------------------------- /src/elements/components/spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './spinner.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/components/spinner/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/spinner/spinner.css -------------------------------------------------------------------------------- /src/elements/components/spinner/spinner.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/spinner/spinner.lite.tsx -------------------------------------------------------------------------------- /src/elements/components/spinner/spinner.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/spinner/spinner.model.ts -------------------------------------------------------------------------------- /src/elements/components/spinner/spinner.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/spinner/spinner.service.ts -------------------------------------------------------------------------------- /src/elements/components/spinner/spinner.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/components/spinner/spinner.stories.mdx -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './itchio.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/itchio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/enterprise/itchio/itchio.css -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/itchio.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/enterprise/itchio/itchio.lite.tsx -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/itchio.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/enterprise/itchio/itchio.model.ts -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/itchio.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/enterprise/itchio/itchio.service.ts -------------------------------------------------------------------------------- /src/elements/enterprise/itchio/itchio.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/enterprise/itchio/itchio.stories.mdx -------------------------------------------------------------------------------- /src/elements/extensions/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/index.ts -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.bus.ts -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.css: -------------------------------------------------------------------------------- 1 | @import '~/styles/build.css'; 2 | 3 | .pa-toast { 4 | } 5 | -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.hook.ts -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.lite.tsx -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.model.ts -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.service.ts -------------------------------------------------------------------------------- /src/elements/extensions/toast/toast.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/toast/toast.stories.mdx -------------------------------------------------------------------------------- /src/elements/extensions/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './tooltip.hook'; 2 | -------------------------------------------------------------------------------- /src/elements/extensions/tooltip/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/tooltip/tooltip.css -------------------------------------------------------------------------------- /src/elements/extensions/tooltip/tooltip.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/tooltip/tooltip.hook.ts -------------------------------------------------------------------------------- /src/elements/extensions/tooltip/tooltip.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/extensions/tooltip/tooltip.stories.mdx -------------------------------------------------------------------------------- /src/elements/layout/column/column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/column.css -------------------------------------------------------------------------------- /src/elements/layout/column/column.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/column.lite.tsx -------------------------------------------------------------------------------- /src/elements/layout/column/column.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/column.model.ts -------------------------------------------------------------------------------- /src/elements/layout/column/column.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/column.service.ts -------------------------------------------------------------------------------- /src/elements/layout/column/column.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/column.stories.mdx -------------------------------------------------------------------------------- /src/elements/layout/column/grid.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/column/grid.stories.mdx -------------------------------------------------------------------------------- /src/elements/layout/column/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './column.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/layout/container/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/container/container.css -------------------------------------------------------------------------------- /src/elements/layout/container/container.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/container/container.lite.tsx -------------------------------------------------------------------------------- /src/elements/layout/container/container.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/container/container.model.ts -------------------------------------------------------------------------------- /src/elements/layout/container/container.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/container/container.service.ts -------------------------------------------------------------------------------- /src/elements/layout/container/container.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/container/container.stories.mdx -------------------------------------------------------------------------------- /src/elements/layout/container/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './container.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/layout/row/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './row.lite'; 2 | -------------------------------------------------------------------------------- /src/elements/layout/row/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/row/row.css -------------------------------------------------------------------------------- /src/elements/layout/row/row.lite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/row/row.lite.tsx -------------------------------------------------------------------------------- /src/elements/layout/row/row.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/row/row.model.ts -------------------------------------------------------------------------------- /src/elements/layout/row/row.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/row/row.service.ts -------------------------------------------------------------------------------- /src/elements/layout/row/row.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/elements/layout/row/row.stories.mdx -------------------------------------------------------------------------------- /src/helpers/arg-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/arg-type.helper.ts -------------------------------------------------------------------------------- /src/helpers/breakpoint.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/breakpoint.helper.ts -------------------------------------------------------------------------------- /src/helpers/classes.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/classes.helper.ts -------------------------------------------------------------------------------- /src/helpers/code.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/code.helper.ts -------------------------------------------------------------------------------- /src/helpers/codejar.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/codejar.helper.ts -------------------------------------------------------------------------------- /src/helpers/color.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/color.helper.ts -------------------------------------------------------------------------------- /src/helpers/debug.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/debug.helper.ts -------------------------------------------------------------------------------- /src/helpers/element.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/element.helper.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/inject-script.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/inject-script.helper.ts -------------------------------------------------------------------------------- /src/helpers/itchio.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/itchio.helper.ts -------------------------------------------------------------------------------- /src/helpers/object.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/object.helper.ts -------------------------------------------------------------------------------- /src/helpers/platform.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/platform.helper.ts -------------------------------------------------------------------------------- /src/helpers/version.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/version.helper.ts -------------------------------------------------------------------------------- /src/helpers/wait.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/helpers/wait.helper.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/breakpoint.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/breakpoint.model.ts -------------------------------------------------------------------------------- /src/models/component.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/component.model.ts -------------------------------------------------------------------------------- /src/models/dynamic.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/dynamic.model.ts -------------------------------------------------------------------------------- /src/models/external-library.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/external-library.model.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/intent.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/intent.model.ts -------------------------------------------------------------------------------- /src/models/variant.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/models/variant.model.ts -------------------------------------------------------------------------------- /src/styles/base/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/base/reset.css -------------------------------------------------------------------------------- /src/styles/build.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/build.css -------------------------------------------------------------------------------- /src/styles/mixins/background-opacity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/mixins/background-opacity.css -------------------------------------------------------------------------------- /src/styles/mixins/breakpoint-modifier.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/mixins/breakpoint-modifier.css -------------------------------------------------------------------------------- /src/styles/mixins/shared.css: -------------------------------------------------------------------------------- 1 | @define-mixin shared-styles { 2 | } 3 | -------------------------------------------------------------------------------- /src/styles/themes/papanasi/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/avatar.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/button.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/code.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/column.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-column { 4 | @mixin shared-styles; 5 | } 6 | -------------------------------------------------------------------------------- /src/styles/themes/papanasi/container.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-container { 4 | } 5 | -------------------------------------------------------------------------------- /src/styles/themes/papanasi/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/index.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/itchio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/itchio.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/pill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/pill.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/row.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-row { 4 | @mixin shared-styles; 5 | } 6 | -------------------------------------------------------------------------------- /src/styles/themes/papanasi/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/spinner.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/tooltip.css -------------------------------------------------------------------------------- /src/styles/themes/papanasi/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/papanasi/variables.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/avatar.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/button.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/code.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/column.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-column { 4 | @mixin shared-styles; 5 | } 6 | -------------------------------------------------------------------------------- /src/styles/themes/sketch/container.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-container { 4 | } 5 | -------------------------------------------------------------------------------- /src/styles/themes/sketch/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/index.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/itchio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/itchio.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/pill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/pill.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/row.css: -------------------------------------------------------------------------------- 1 | @import '../../build.css'; 2 | 3 | .pa-row { 4 | @mixin shared-styles; 5 | } 6 | -------------------------------------------------------------------------------- /src/styles/themes/sketch/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/spinner.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/tooltip.css -------------------------------------------------------------------------------- /src/styles/themes/sketch/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/themes/sketch/variables.css -------------------------------------------------------------------------------- /src/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/src/styles/variables.css -------------------------------------------------------------------------------- /src/typings/styles.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css' {} 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKGrafico/papanasi/HEAD/yarn.lock --------------------------------------------------------------------------------