├── .browserslistrc ├── .editorconfig ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── labeler.yml ├── labels.yml └── workflows │ ├── auto-assign.yml │ ├── check.yml │ ├── deploy.yml │ ├── label.yml │ ├── playwright.yml │ ├── publish.yml │ └── triage.yml ├── .gitignore ├── .markdownlint.json ├── .npmrc ├── .prettierrc ├── .putout.json ├── .release-it.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── dev ├── a11y.html ├── demo.html ├── grid.html ├── index.html ├── mark.html ├── measure.html ├── pin-align-parent.html ├── pin-on-click.html ├── pin-text.html ├── pin.html ├── spacing.html ├── themes.html └── typography.html ├── docs ├── .vitepress │ ├── config.ts │ ├── shiki │ │ ├── accessible-aa-dark-shiki.json │ │ └── accessible-aa-light-shiki.json │ └── theme │ │ ├── components │ │ ├── HeroBanner.vue │ │ ├── HomeBanner.vue │ │ ├── ToggleDarkMode.vue │ │ └── UsedBy.vue │ │ ├── custom.css │ │ └── index.ts ├── api │ ├── functions │ │ ├── a11y.md │ │ ├── removeSpeccerElement.md │ │ └── speccer.md │ ├── index.md │ ├── interfaces │ │ └── SpeccerOptionsInterface.md │ ├── type-aliases │ │ └── SpeccerFunctionType.md │ ├── typedoc-sidebar.json │ └── variables │ │ ├── grid.md │ │ ├── mark.md │ │ ├── measure.md │ │ ├── modes.md │ │ ├── pin.md │ │ ├── spacing.md │ │ └── typography.md ├── guide │ ├── development.md │ ├── features │ │ ├── a11y.md │ │ ├── grid.md │ │ ├── mark.md │ │ ├── measure.md │ │ ├── pin.md │ │ ├── spacing.md │ │ └── typography.md │ ├── introduction │ │ ├── index.md │ │ └── what.md │ ├── tutorials │ │ ├── add-pins-on-click.md │ │ ├── customization.md │ │ ├── lazy-loading.md │ │ └── storybook.md │ └── usage │ │ ├── import.md │ │ ├── react.md │ │ └── script.md ├── index.md ├── public │ ├── a11y-landmark.png │ ├── a11y-shortcut.png │ ├── a11y-tabstop.png │ ├── align-parent.png │ ├── anatomy.png │ ├── darkmode.png │ ├── grid.png │ ├── icons │ │ ├── a11y-light.svg │ │ ├── a11y.svg │ │ ├── customizable-light.svg │ │ ├── customizable.svg │ │ ├── dimensions-light.svg │ │ ├── dimensions.svg │ │ ├── docs-light.svg │ │ ├── docs.svg │ │ ├── easy-light.svg │ │ ├── easy.svg │ │ ├── highlight-light.svg │ │ ├── highlight.svg │ │ ├── inspect-light.svg │ │ ├── inspect.svg │ │ ├── open-source-light.svg │ │ ├── open-source.svg │ │ ├── spacing-light.svg │ │ ├── spacing.svg │ │ ├── typography-light.svg │ │ ├── typography.svg │ │ ├── zero-dependencies-light.svg │ │ └── zero-dependencies.svg │ ├── literals.png │ ├── logo-speccer-black.svg │ ├── logo-speccer-colored-dark.svg │ ├── logo-speccer-colored-light.svg │ ├── logo-speccer-colored-package.svg │ ├── logo-speccer-horizontal-colored-dark.svg │ ├── logo-speccer-horizontal-colored-package.svg │ ├── logo-speccer-symbol-yellow.svg │ ├── logo-speccer-symbol.svg │ ├── logo-speccer-white.svg │ ├── logo.svg │ ├── mark.png │ ├── measure.png │ ├── scribble.svg │ ├── spacing.png │ ├── speccer-a11y-autocomplete-light.png │ ├── speccer-a11y-headings-light.png │ ├── speccer-a11y-landmarks-light.png │ ├── speccer-a11y-shortcuts-light.png │ ├── speccer-a11y-tabstops-light.png │ ├── speccer-banner.png │ ├── speccer-grid-full-dark.png │ ├── speccer-grid-full-light.png │ ├── speccer-hero.png │ ├── speccer-measure-bottom-dark.png │ ├── speccer-measure-right-full-light.png │ ├── speccer-measure-right-light.png │ ├── speccer-measure-spacing-example-dark.png │ ├── speccer-pin-bracket-light.png │ ├── speccer-pin-curly-light.png │ ├── speccer-pin-default-light.png │ ├── speccer-pin-default-subtle-light.png │ ├── speccer-pin-enclose-light.png │ ├── speccer-pin-enclose-subtle-light.png │ ├── speccer-pin-mark-light.png │ ├── speccer-pin-measure-height-light.png │ ├── speccer-pin-parent-align-default-light.png │ ├── speccer-pin-parent-align-light.png │ ├── speccer-pin-subtle-light.png │ ├── speccer-pin-symbols-light.png │ ├── speccer-pin-text-light.png │ ├── speccer-spacing-bound.png │ ├── speccer-spacing-dark.png │ ├── speccer-spacing-light.png │ ├── speccer-typography-light.png │ ├── speccer-typography-syntax-light.png │ ├── speccer.png │ ├── storybook.png │ ├── subtle-measure.png │ ├── subtle.png │ ├── typography-syntax.png │ ├── typography.png │ ├── used-by-if.png │ └── used-by-tfso.png └── sponsor.md ├── eslint.config.mjs ├── package.json ├── playwright.config.mjs ├── postcss.config.cjs ├── rollup.config.js ├── src ├── config │ ├── __tests__ │ │ ├── dom.spec.ts │ │ └── manual.spec.ts │ └── browser.ts ├── features │ ├── a11y │ │ ├── constants │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── styles │ │ │ ├── autocomplete.styl │ │ │ ├── headings.styl │ │ │ ├── index.styl │ │ │ ├── landmark.styl │ │ │ ├── region.styl │ │ │ ├── shortcut-holder.styl │ │ │ └── tabstops.styl │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── get-role.spec.ts │ │ │ └── styles.spec.ts │ │ │ ├── add-a11y-element.ts │ │ │ ├── add-shortcut-element.ts │ │ │ ├── create-a11y-element.ts │ │ │ ├── get-role.ts │ │ │ └── styles.ts │ ├── grid │ │ ├── index.ts │ │ └── styles │ │ │ └── index.styl │ ├── mark │ │ ├── index.ts │ │ └── styles │ │ │ └── index.styl │ ├── measure │ │ ├── index.ts │ │ └── styles │ │ │ ├── height.styl │ │ │ ├── index.styl │ │ │ ├── slim.styl │ │ │ ├── subtle.styl │ │ │ └── width.styl │ ├── pin │ │ ├── index.ts │ │ ├── styles │ │ │ ├── bracket.styl │ │ │ ├── enclose.styl │ │ │ ├── index.styl │ │ │ ├── pin.styl │ │ │ └── subtle.styl │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── get-character-to-use.spec.ts │ │ │ ├── get-content-for-pin.spec.ts │ │ │ └── styles.spec.ts │ │ │ ├── create-pin-element.ts │ │ │ ├── get-character-to-use.ts │ │ │ ├── get-content-for-pin.ts │ │ │ ├── pin-element.ts │ │ │ └── styles.ts │ ├── spacing │ │ ├── index.ts │ │ ├── styles │ │ │ ├── bound.styl │ │ │ ├── index.styl │ │ │ ├── margin.styl │ │ │ └── padding.styl │ │ └── utils │ │ │ ├── __tests__ │ │ │ └── position.spec.ts │ │ │ └── position.ts │ └── typography │ │ ├── index.ts │ │ ├── styles │ │ ├── index.styl │ │ └── syntax.styl │ │ └── utils │ │ ├── __tests__ │ │ ├── position.spec.ts │ │ └── template.spec.ts │ │ ├── position.ts │ │ └── template.ts ├── main.ts ├── styles │ ├── global.styl │ ├── index.styl │ ├── svg.styl │ └── variables.styl ├── types │ ├── bezier.ts │ ├── css.ts │ ├── debounce.ts │ ├── enums │ │ └── area.ts │ ├── interfaces │ │ ├── attributes.ts │ │ ├── classnames.ts │ │ ├── global.ts │ │ └── position.ts │ ├── position.ts │ ├── speccer.ts │ ├── styles.ts │ ├── tests.ts │ └── xy.ts └── utils │ ├── __tests__ │ ├── angle.spec.ts │ ├── area.spec.ts │ ├── attributes.spec.ts │ ├── bezier.spec.ts │ ├── camel-case.spec.ts │ ├── cardinal.spec.ts │ ├── classnames.spec.ts │ ├── coords.spec.ts │ ├── css.spec.ts │ ├── debounce.spec.ts │ ├── direction-of-element.spec.ts │ ├── get-coords-pair-from-objects.spec.ts │ ├── get-max-document-height.spec.ts │ ├── id.spec.ts │ ├── intrinsic-coords.spec.ts │ ├── node.spec.ts │ ├── number.spec.ts │ ├── position.spec.ts │ ├── style-property.spec.ts │ ├── styles.spec.ts │ ├── wait.spec.ts │ └── xy.spec.ts │ ├── angle.ts │ ├── area.ts │ ├── attributes.ts │ ├── bezier.ts │ ├── camel-case.ts │ ├── cardinal.ts │ ├── classes │ ├── DrawCircle.ts │ ├── DrawSVGCurlyBracket.ts │ ├── DrawSVGLine.ts │ └── __tests__ │ │ ├── DrawCircle.test.spec.ts │ │ ├── DrawSVGCurlyBracket.test.spec.ts │ │ └── DrawSVGLine.test.spec.ts │ ├── classnames.ts │ ├── constants.ts │ ├── coords.ts │ ├── css.ts │ ├── debounce.ts │ ├── direction-of-element.ts │ ├── get-coords-pair-from-objects.ts │ ├── get-max-document-height.ts │ ├── get-options │ ├── __tests__ │ │ └── get-options.spec.ts │ ├── index.ts │ └── utils │ │ └── index.ts │ ├── id.ts │ ├── intrinsic-coords.ts │ ├── node.ts │ ├── number.ts │ ├── position.ts │ ├── remove-speccer-element.ts │ ├── resize.ts │ ├── style-property.ts │ ├── styles.ts │ ├── typeof │ ├── __tests__ │ │ └── typeof.spec.ts │ └── index.ts │ ├── wait.ts │ └── xy.ts ├── tests ├── e2e │ └── main.e2e.ts └── helpers.ts ├── tsconfig.json ├── tsconfig.test.json └── typedoc.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.prettierrc -------------------------------------------------------------------------------- /.putout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.putout.json -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/.release-it.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dev/a11y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/a11y.html -------------------------------------------------------------------------------- /dev/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/demo.html -------------------------------------------------------------------------------- /dev/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/grid.html -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/index.html -------------------------------------------------------------------------------- /dev/mark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/mark.html -------------------------------------------------------------------------------- /dev/measure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/measure.html -------------------------------------------------------------------------------- /dev/pin-align-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/pin-align-parent.html -------------------------------------------------------------------------------- /dev/pin-on-click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/pin-on-click.html -------------------------------------------------------------------------------- /dev/pin-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/pin-text.html -------------------------------------------------------------------------------- /dev/pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/pin.html -------------------------------------------------------------------------------- /dev/spacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/spacing.html -------------------------------------------------------------------------------- /dev/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/themes.html -------------------------------------------------------------------------------- /dev/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/dev/typography.html -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/shiki/accessible-aa-dark-shiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/shiki/accessible-aa-dark-shiki.json -------------------------------------------------------------------------------- /docs/.vitepress/shiki/accessible-aa-light-shiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/shiki/accessible-aa-light-shiki.json -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/HeroBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/components/HeroBanner.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/HomeBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/components/HomeBanner.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/ToggleDarkMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/components/ToggleDarkMode.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/UsedBy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/components/UsedBy.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/api/functions/a11y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/functions/a11y.md -------------------------------------------------------------------------------- /docs/api/functions/removeSpeccerElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/functions/removeSpeccerElement.md -------------------------------------------------------------------------------- /docs/api/functions/speccer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/functions/speccer.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/interfaces/SpeccerOptionsInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/interfaces/SpeccerOptionsInterface.md -------------------------------------------------------------------------------- /docs/api/type-aliases/SpeccerFunctionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/type-aliases/SpeccerFunctionType.md -------------------------------------------------------------------------------- /docs/api/typedoc-sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/typedoc-sidebar.json -------------------------------------------------------------------------------- /docs/api/variables/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/grid.md -------------------------------------------------------------------------------- /docs/api/variables/mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/mark.md -------------------------------------------------------------------------------- /docs/api/variables/measure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/measure.md -------------------------------------------------------------------------------- /docs/api/variables/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/modes.md -------------------------------------------------------------------------------- /docs/api/variables/pin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/pin.md -------------------------------------------------------------------------------- /docs/api/variables/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/spacing.md -------------------------------------------------------------------------------- /docs/api/variables/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/api/variables/typography.md -------------------------------------------------------------------------------- /docs/guide/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/development.md -------------------------------------------------------------------------------- /docs/guide/features/a11y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/a11y.md -------------------------------------------------------------------------------- /docs/guide/features/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/grid.md -------------------------------------------------------------------------------- /docs/guide/features/mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/mark.md -------------------------------------------------------------------------------- /docs/guide/features/measure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/measure.md -------------------------------------------------------------------------------- /docs/guide/features/pin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/pin.md -------------------------------------------------------------------------------- /docs/guide/features/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/spacing.md -------------------------------------------------------------------------------- /docs/guide/features/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/features/typography.md -------------------------------------------------------------------------------- /docs/guide/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/introduction/index.md -------------------------------------------------------------------------------- /docs/guide/introduction/what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/introduction/what.md -------------------------------------------------------------------------------- /docs/guide/tutorials/add-pins-on-click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/tutorials/add-pins-on-click.md -------------------------------------------------------------------------------- /docs/guide/tutorials/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/tutorials/customization.md -------------------------------------------------------------------------------- /docs/guide/tutorials/lazy-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/tutorials/lazy-loading.md -------------------------------------------------------------------------------- /docs/guide/tutorials/storybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/tutorials/storybook.md -------------------------------------------------------------------------------- /docs/guide/usage/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/usage/import.md -------------------------------------------------------------------------------- /docs/guide/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/usage/react.md -------------------------------------------------------------------------------- /docs/guide/usage/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/guide/usage/script.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/a11y-landmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/a11y-landmark.png -------------------------------------------------------------------------------- /docs/public/a11y-shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/a11y-shortcut.png -------------------------------------------------------------------------------- /docs/public/a11y-tabstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/a11y-tabstop.png -------------------------------------------------------------------------------- /docs/public/align-parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/align-parent.png -------------------------------------------------------------------------------- /docs/public/anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/anatomy.png -------------------------------------------------------------------------------- /docs/public/darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/darkmode.png -------------------------------------------------------------------------------- /docs/public/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/grid.png -------------------------------------------------------------------------------- /docs/public/icons/a11y-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/a11y-light.svg -------------------------------------------------------------------------------- /docs/public/icons/a11y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/a11y.svg -------------------------------------------------------------------------------- /docs/public/icons/customizable-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/customizable-light.svg -------------------------------------------------------------------------------- /docs/public/icons/customizable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/customizable.svg -------------------------------------------------------------------------------- /docs/public/icons/dimensions-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/dimensions-light.svg -------------------------------------------------------------------------------- /docs/public/icons/dimensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/dimensions.svg -------------------------------------------------------------------------------- /docs/public/icons/docs-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/docs-light.svg -------------------------------------------------------------------------------- /docs/public/icons/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/docs.svg -------------------------------------------------------------------------------- /docs/public/icons/easy-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/easy-light.svg -------------------------------------------------------------------------------- /docs/public/icons/easy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/easy.svg -------------------------------------------------------------------------------- /docs/public/icons/highlight-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/highlight-light.svg -------------------------------------------------------------------------------- /docs/public/icons/highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/highlight.svg -------------------------------------------------------------------------------- /docs/public/icons/inspect-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/inspect-light.svg -------------------------------------------------------------------------------- /docs/public/icons/inspect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/inspect.svg -------------------------------------------------------------------------------- /docs/public/icons/open-source-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/open-source-light.svg -------------------------------------------------------------------------------- /docs/public/icons/open-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/open-source.svg -------------------------------------------------------------------------------- /docs/public/icons/spacing-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/spacing-light.svg -------------------------------------------------------------------------------- /docs/public/icons/spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/spacing.svg -------------------------------------------------------------------------------- /docs/public/icons/typography-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/typography-light.svg -------------------------------------------------------------------------------- /docs/public/icons/typography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/typography.svg -------------------------------------------------------------------------------- /docs/public/icons/zero-dependencies-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/zero-dependencies-light.svg -------------------------------------------------------------------------------- /docs/public/icons/zero-dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/icons/zero-dependencies.svg -------------------------------------------------------------------------------- /docs/public/literals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/literals.png -------------------------------------------------------------------------------- /docs/public/logo-speccer-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-black.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-colored-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-colored-dark.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-colored-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-colored-light.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-colored-package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-colored-package.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-horizontal-colored-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-horizontal-colored-dark.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-horizontal-colored-package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-horizontal-colored-package.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-symbol-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-symbol-yellow.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-symbol.svg -------------------------------------------------------------------------------- /docs/public/logo-speccer-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo-speccer-white.svg -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/public/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/mark.png -------------------------------------------------------------------------------- /docs/public/measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/measure.png -------------------------------------------------------------------------------- /docs/public/scribble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/scribble.svg -------------------------------------------------------------------------------- /docs/public/spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/spacing.png -------------------------------------------------------------------------------- /docs/public/speccer-a11y-autocomplete-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-a11y-autocomplete-light.png -------------------------------------------------------------------------------- /docs/public/speccer-a11y-headings-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-a11y-headings-light.png -------------------------------------------------------------------------------- /docs/public/speccer-a11y-landmarks-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-a11y-landmarks-light.png -------------------------------------------------------------------------------- /docs/public/speccer-a11y-shortcuts-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-a11y-shortcuts-light.png -------------------------------------------------------------------------------- /docs/public/speccer-a11y-tabstops-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-a11y-tabstops-light.png -------------------------------------------------------------------------------- /docs/public/speccer-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-banner.png -------------------------------------------------------------------------------- /docs/public/speccer-grid-full-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-grid-full-dark.png -------------------------------------------------------------------------------- /docs/public/speccer-grid-full-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-grid-full-light.png -------------------------------------------------------------------------------- /docs/public/speccer-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-hero.png -------------------------------------------------------------------------------- /docs/public/speccer-measure-bottom-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-measure-bottom-dark.png -------------------------------------------------------------------------------- /docs/public/speccer-measure-right-full-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-measure-right-full-light.png -------------------------------------------------------------------------------- /docs/public/speccer-measure-right-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-measure-right-light.png -------------------------------------------------------------------------------- /docs/public/speccer-measure-spacing-example-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-measure-spacing-example-dark.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-bracket-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-bracket-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-curly-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-curly-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-default-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-default-subtle-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-default-subtle-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-enclose-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-enclose-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-enclose-subtle-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-enclose-subtle-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-mark-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-mark-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-measure-height-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-measure-height-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-parent-align-default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-parent-align-default-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-parent-align-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-parent-align-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-subtle-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-subtle-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-symbols-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-symbols-light.png -------------------------------------------------------------------------------- /docs/public/speccer-pin-text-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-pin-text-light.png -------------------------------------------------------------------------------- /docs/public/speccer-spacing-bound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-spacing-bound.png -------------------------------------------------------------------------------- /docs/public/speccer-spacing-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-spacing-dark.png -------------------------------------------------------------------------------- /docs/public/speccer-spacing-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-spacing-light.png -------------------------------------------------------------------------------- /docs/public/speccer-typography-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-typography-light.png -------------------------------------------------------------------------------- /docs/public/speccer-typography-syntax-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer-typography-syntax-light.png -------------------------------------------------------------------------------- /docs/public/speccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/speccer.png -------------------------------------------------------------------------------- /docs/public/storybook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/storybook.png -------------------------------------------------------------------------------- /docs/public/subtle-measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/subtle-measure.png -------------------------------------------------------------------------------- /docs/public/subtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/subtle.png -------------------------------------------------------------------------------- /docs/public/typography-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/typography-syntax.png -------------------------------------------------------------------------------- /docs/public/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/typography.png -------------------------------------------------------------------------------- /docs/public/used-by-if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/used-by-if.png -------------------------------------------------------------------------------- /docs/public/used-by-tfso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/public/used-by-tfso.png -------------------------------------------------------------------------------- /docs/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/docs/sponsor.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/playwright.config.mjs -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/config/__tests__/dom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/config/__tests__/dom.spec.ts -------------------------------------------------------------------------------- /src/config/__tests__/manual.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/config/__tests__/manual.spec.ts -------------------------------------------------------------------------------- /src/config/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/config/browser.ts -------------------------------------------------------------------------------- /src/features/a11y/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/constants/index.ts -------------------------------------------------------------------------------- /src/features/a11y/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/index.ts -------------------------------------------------------------------------------- /src/features/a11y/styles/autocomplete.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/autocomplete.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/headings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/headings.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/index.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/landmark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/landmark.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/region.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/region.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/shortcut-holder.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/shortcut-holder.styl -------------------------------------------------------------------------------- /src/features/a11y/styles/tabstops.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/styles/tabstops.styl -------------------------------------------------------------------------------- /src/features/a11y/utils/__tests__/get-role.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/__tests__/get-role.spec.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/__tests__/styles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/__tests__/styles.spec.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/add-a11y-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/add-a11y-element.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/add-shortcut-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/add-shortcut-element.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/create-a11y-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/create-a11y-element.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/get-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/get-role.ts -------------------------------------------------------------------------------- /src/features/a11y/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/a11y/utils/styles.ts -------------------------------------------------------------------------------- /src/features/grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/grid/index.ts -------------------------------------------------------------------------------- /src/features/grid/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/grid/styles/index.styl -------------------------------------------------------------------------------- /src/features/mark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/mark/index.ts -------------------------------------------------------------------------------- /src/features/mark/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/mark/styles/index.styl -------------------------------------------------------------------------------- /src/features/measure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/index.ts -------------------------------------------------------------------------------- /src/features/measure/styles/height.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/styles/height.styl -------------------------------------------------------------------------------- /src/features/measure/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/styles/index.styl -------------------------------------------------------------------------------- /src/features/measure/styles/slim.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/styles/slim.styl -------------------------------------------------------------------------------- /src/features/measure/styles/subtle.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/styles/subtle.styl -------------------------------------------------------------------------------- /src/features/measure/styles/width.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/measure/styles/width.styl -------------------------------------------------------------------------------- /src/features/pin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/index.ts -------------------------------------------------------------------------------- /src/features/pin/styles/bracket.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/styles/bracket.styl -------------------------------------------------------------------------------- /src/features/pin/styles/enclose.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/styles/enclose.styl -------------------------------------------------------------------------------- /src/features/pin/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/styles/index.styl -------------------------------------------------------------------------------- /src/features/pin/styles/pin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/styles/pin.styl -------------------------------------------------------------------------------- /src/features/pin/styles/subtle.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/styles/subtle.styl -------------------------------------------------------------------------------- /src/features/pin/utils/__tests__/get-character-to-use.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/__tests__/get-character-to-use.spec.ts -------------------------------------------------------------------------------- /src/features/pin/utils/__tests__/get-content-for-pin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/__tests__/get-content-for-pin.spec.ts -------------------------------------------------------------------------------- /src/features/pin/utils/__tests__/styles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/__tests__/styles.spec.ts -------------------------------------------------------------------------------- /src/features/pin/utils/create-pin-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/create-pin-element.ts -------------------------------------------------------------------------------- /src/features/pin/utils/get-character-to-use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/get-character-to-use.ts -------------------------------------------------------------------------------- /src/features/pin/utils/get-content-for-pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/get-content-for-pin.ts -------------------------------------------------------------------------------- /src/features/pin/utils/pin-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/pin-element.ts -------------------------------------------------------------------------------- /src/features/pin/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/pin/utils/styles.ts -------------------------------------------------------------------------------- /src/features/spacing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/index.ts -------------------------------------------------------------------------------- /src/features/spacing/styles/bound.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/styles/bound.styl -------------------------------------------------------------------------------- /src/features/spacing/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/styles/index.styl -------------------------------------------------------------------------------- /src/features/spacing/styles/margin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/styles/margin.styl -------------------------------------------------------------------------------- /src/features/spacing/styles/padding.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/styles/padding.styl -------------------------------------------------------------------------------- /src/features/spacing/utils/__tests__/position.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/utils/__tests__/position.spec.ts -------------------------------------------------------------------------------- /src/features/spacing/utils/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/spacing/utils/position.ts -------------------------------------------------------------------------------- /src/features/typography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/index.ts -------------------------------------------------------------------------------- /src/features/typography/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/styles/index.styl -------------------------------------------------------------------------------- /src/features/typography/styles/syntax.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/styles/syntax.styl -------------------------------------------------------------------------------- /src/features/typography/utils/__tests__/position.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/utils/__tests__/position.spec.ts -------------------------------------------------------------------------------- /src/features/typography/utils/__tests__/template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/utils/__tests__/template.spec.ts -------------------------------------------------------------------------------- /src/features/typography/utils/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/utils/position.ts -------------------------------------------------------------------------------- /src/features/typography/utils/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/features/typography/utils/template.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles/global.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/styles/global.styl -------------------------------------------------------------------------------- /src/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/styles/index.styl -------------------------------------------------------------------------------- /src/styles/svg.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/styles/svg.styl -------------------------------------------------------------------------------- /src/styles/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/styles/variables.styl -------------------------------------------------------------------------------- /src/types/bezier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/bezier.ts -------------------------------------------------------------------------------- /src/types/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/css.ts -------------------------------------------------------------------------------- /src/types/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/debounce.ts -------------------------------------------------------------------------------- /src/types/enums/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/enums/area.ts -------------------------------------------------------------------------------- /src/types/interfaces/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/interfaces/attributes.ts -------------------------------------------------------------------------------- /src/types/interfaces/classnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/interfaces/classnames.ts -------------------------------------------------------------------------------- /src/types/interfaces/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/interfaces/global.ts -------------------------------------------------------------------------------- /src/types/interfaces/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/interfaces/position.ts -------------------------------------------------------------------------------- /src/types/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/position.ts -------------------------------------------------------------------------------- /src/types/speccer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/speccer.ts -------------------------------------------------------------------------------- /src/types/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/styles.ts -------------------------------------------------------------------------------- /src/types/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/tests.ts -------------------------------------------------------------------------------- /src/types/xy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/types/xy.ts -------------------------------------------------------------------------------- /src/utils/__tests__/angle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/angle.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/area.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/area.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/attributes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/attributes.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/bezier.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/bezier.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/camel-case.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/camel-case.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/cardinal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/cardinal.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/classnames.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/classnames.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/coords.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/coords.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/css.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/css.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/debounce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/debounce.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/direction-of-element.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/direction-of-element.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/get-coords-pair-from-objects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/get-coords-pair-from-objects.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/get-max-document-height.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/get-max-document-height.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/id.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/intrinsic-coords.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/intrinsic-coords.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/node.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/node.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/number.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/number.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/position.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/position.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/style-property.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/style-property.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/styles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/styles.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/wait.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/wait.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/xy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/__tests__/xy.spec.ts -------------------------------------------------------------------------------- /src/utils/angle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/angle.ts -------------------------------------------------------------------------------- /src/utils/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/area.ts -------------------------------------------------------------------------------- /src/utils/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/attributes.ts -------------------------------------------------------------------------------- /src/utils/bezier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/bezier.ts -------------------------------------------------------------------------------- /src/utils/camel-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/camel-case.ts -------------------------------------------------------------------------------- /src/utils/cardinal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/cardinal.ts -------------------------------------------------------------------------------- /src/utils/classes/DrawCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/DrawCircle.ts -------------------------------------------------------------------------------- /src/utils/classes/DrawSVGCurlyBracket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/DrawSVGCurlyBracket.ts -------------------------------------------------------------------------------- /src/utils/classes/DrawSVGLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/DrawSVGLine.ts -------------------------------------------------------------------------------- /src/utils/classes/__tests__/DrawCircle.test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/__tests__/DrawCircle.test.spec.ts -------------------------------------------------------------------------------- /src/utils/classes/__tests__/DrawSVGCurlyBracket.test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/__tests__/DrawSVGCurlyBracket.test.spec.ts -------------------------------------------------------------------------------- /src/utils/classes/__tests__/DrawSVGLine.test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classes/__tests__/DrawSVGLine.test.spec.ts -------------------------------------------------------------------------------- /src/utils/classnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/classnames.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/coords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/coords.ts -------------------------------------------------------------------------------- /src/utils/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/css.ts -------------------------------------------------------------------------------- /src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/debounce.ts -------------------------------------------------------------------------------- /src/utils/direction-of-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/direction-of-element.ts -------------------------------------------------------------------------------- /src/utils/get-coords-pair-from-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/get-coords-pair-from-objects.ts -------------------------------------------------------------------------------- /src/utils/get-max-document-height.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/get-max-document-height.ts -------------------------------------------------------------------------------- /src/utils/get-options/__tests__/get-options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/get-options/__tests__/get-options.spec.ts -------------------------------------------------------------------------------- /src/utils/get-options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/get-options/index.ts -------------------------------------------------------------------------------- /src/utils/get-options/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/get-options/utils/index.ts -------------------------------------------------------------------------------- /src/utils/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/id.ts -------------------------------------------------------------------------------- /src/utils/intrinsic-coords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/intrinsic-coords.ts -------------------------------------------------------------------------------- /src/utils/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/node.ts -------------------------------------------------------------------------------- /src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/number.ts -------------------------------------------------------------------------------- /src/utils/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/position.ts -------------------------------------------------------------------------------- /src/utils/remove-speccer-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/remove-speccer-element.ts -------------------------------------------------------------------------------- /src/utils/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/resize.ts -------------------------------------------------------------------------------- /src/utils/style-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/style-property.ts -------------------------------------------------------------------------------- /src/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/styles.ts -------------------------------------------------------------------------------- /src/utils/typeof/__tests__/typeof.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/typeof/__tests__/typeof.spec.ts -------------------------------------------------------------------------------- /src/utils/typeof/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/typeof/index.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/xy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/src/utils/xy.ts -------------------------------------------------------------------------------- /tests/e2e/main.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/tests/e2e/main.e2e.ts -------------------------------------------------------------------------------- /tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/tests/helpers.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phun-ky/speccer/HEAD/typedoc.json --------------------------------------------------------------------------------