├── .codeclimate.yml ├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── plan-release.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .release-plan.json ├── .stylelintignore ├── .stylelintrc.js ├── .template-lintrc.js ├── .tool-versions ├── .watchmanconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── UPGRADING.md ├── addon ├── -private │ ├── ember-internals.js │ ├── ember-validator.js │ ├── internal-result-object.js │ ├── options.js │ ├── result.js │ └── symbols.js ├── index.js ├── utils │ ├── array.js │ ├── cycle-breaker.js │ ├── deep-set.js │ ├── get-with-default.js │ ├── lookup-validator.js │ ├── meta-data.js │ ├── should-call-super.js │ └── utils.js ├── validations │ ├── error.js │ ├── factory.js │ ├── result-collection.js │ ├── validator.js │ └── warning-result-collection.js └── validators │ ├── alias.js │ ├── base.js │ ├── belongs-to.js │ ├── collection.js │ ├── confirmation.js │ ├── date.js │ ├── dependent.js │ ├── ds-error.js │ ├── exclusion.js │ ├── format.js │ ├── has-many.js │ ├── inclusion.js │ ├── inline.js │ ├── length.js │ ├── messages.js │ ├── number.js │ └── presence.js ├── app ├── .gitkeep └── validators │ ├── alias.js │ ├── belongs-to.js │ ├── collection.js │ ├── confirmation.js │ ├── date.js │ ├── dependent.js │ ├── ds-error.js │ ├── exclusion.js │ ├── format.js │ ├── has-many.js │ ├── inclusion.js │ ├── inline.js │ ├── length.js │ ├── messages.js │ ├── number.js │ └── presence.js ├── blueprints ├── validator-test │ ├── index.js │ ├── mocha-files │ │ └── tests │ │ │ └── unit │ │ │ └── validators │ │ │ └── __name__-test.js │ └── qunit-files │ │ └── tests │ │ └── unit │ │ └── validators │ │ └── __name__-test.js └── validator │ ├── files │ └── __root__ │ │ └── validators │ │ └── __name__.js │ └── index.js ├── ember-cli-build.js ├── htmlbars-plugins └── v-get.js ├── index.js ├── jsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts └── write-snippets.mjs ├── stderr.log ├── testem.js ├── tests ├── acceptance │ └── dummy-index-test.js ├── dummy │ ├── app │ │ ├── adapters │ │ │ └── application.js │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── code-snippet.hbs │ │ │ ├── code-snippet.js │ │ │ ├── named-v-get.hbs │ │ │ ├── validated-input.hbs │ │ │ └── validated-input.js │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── index.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ ├── company.js │ │ │ ├── order-line.js │ │ │ ├── order-selection-question.js │ │ │ ├── order-selection.js │ │ │ ├── order.js │ │ │ ├── signup.js │ │ │ ├── user-detail.js │ │ │ └── user.js │ │ ├── router.js │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ └── index.js │ │ ├── styles │ │ │ ├── app.scss │ │ │ ├── code-snippet.scss │ │ │ ├── form.scss │ │ │ └── navbar.scss │ │ ├── templates │ │ │ ├── application.hbs │ │ │ └── index.hbs │ │ └── validators │ │ │ └── messages.js │ ├── config │ │ ├── ember-cli-update.json │ │ ├── ember-try.js │ │ ├── environment.js │ │ ├── icons.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ ├── images │ │ ├── ember-logo.png │ │ └── tomsterzilla.jpeg │ │ └── robots.txt ├── helpers │ ├── index.js │ └── setup-object.js ├── index.html ├── integration │ ├── helpers │ │ └── v-get-test.js │ ├── validations │ │ ├── factory-dependent-keys-test.js │ │ ├── factory-general-test.js │ │ └── model-relationships-test.js │ └── validators │ │ └── composable-test.js ├── test-helper.js └── unit │ ├── .gitkeep │ ├── utils │ ├── assign-test.js │ ├── flatten-test.js │ ├── get-with-default-test.js │ └── should-call-super-test.js │ ├── validations │ ├── ds-model-test.js │ ├── ember-proxy-test.js │ └── nested-model-relationship-test.js │ └── validators │ ├── base-test.js │ ├── collection-test.js │ ├── confirmation-test.js │ ├── date-test.js │ ├── dependent-test.js │ ├── ds-error-test.js │ ├── exclusion-test.js │ ├── format-test.js │ ├── inclusion-test.js │ ├── inline-test.js │ ├── length-test.js │ ├── messages-test.js │ ├── number-test.js │ └── presence-test.js └── yuidoc.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/plan-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.github/workflows/plan-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.release-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.release-plan.json -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | pnpm 10.7.1 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/RELEASE.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /addon/-private/ember-internals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/ember-internals.js -------------------------------------------------------------------------------- /addon/-private/ember-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/ember-validator.js -------------------------------------------------------------------------------- /addon/-private/internal-result-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/internal-result-object.js -------------------------------------------------------------------------------- /addon/-private/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/options.js -------------------------------------------------------------------------------- /addon/-private/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/result.js -------------------------------------------------------------------------------- /addon/-private/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/-private/symbols.js -------------------------------------------------------------------------------- /addon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/index.js -------------------------------------------------------------------------------- /addon/utils/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/array.js -------------------------------------------------------------------------------- /addon/utils/cycle-breaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/cycle-breaker.js -------------------------------------------------------------------------------- /addon/utils/deep-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/deep-set.js -------------------------------------------------------------------------------- /addon/utils/get-with-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/get-with-default.js -------------------------------------------------------------------------------- /addon/utils/lookup-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/lookup-validator.js -------------------------------------------------------------------------------- /addon/utils/meta-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/meta-data.js -------------------------------------------------------------------------------- /addon/utils/should-call-super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/should-call-super.js -------------------------------------------------------------------------------- /addon/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/utils/utils.js -------------------------------------------------------------------------------- /addon/validations/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validations/error.js -------------------------------------------------------------------------------- /addon/validations/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validations/factory.js -------------------------------------------------------------------------------- /addon/validations/result-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validations/result-collection.js -------------------------------------------------------------------------------- /addon/validations/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validations/validator.js -------------------------------------------------------------------------------- /addon/validations/warning-result-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validations/warning-result-collection.js -------------------------------------------------------------------------------- /addon/validators/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/alias.js -------------------------------------------------------------------------------- /addon/validators/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/base.js -------------------------------------------------------------------------------- /addon/validators/belongs-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/belongs-to.js -------------------------------------------------------------------------------- /addon/validators/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/collection.js -------------------------------------------------------------------------------- /addon/validators/confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/confirmation.js -------------------------------------------------------------------------------- /addon/validators/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/date.js -------------------------------------------------------------------------------- /addon/validators/dependent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/dependent.js -------------------------------------------------------------------------------- /addon/validators/ds-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/ds-error.js -------------------------------------------------------------------------------- /addon/validators/exclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/exclusion.js -------------------------------------------------------------------------------- /addon/validators/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/format.js -------------------------------------------------------------------------------- /addon/validators/has-many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/has-many.js -------------------------------------------------------------------------------- /addon/validators/inclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/inclusion.js -------------------------------------------------------------------------------- /addon/validators/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/inline.js -------------------------------------------------------------------------------- /addon/validators/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/length.js -------------------------------------------------------------------------------- /addon/validators/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/messages.js -------------------------------------------------------------------------------- /addon/validators/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/number.js -------------------------------------------------------------------------------- /addon/validators/presence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/addon/validators/presence.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/validators/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/alias.js -------------------------------------------------------------------------------- /app/validators/belongs-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/belongs-to.js -------------------------------------------------------------------------------- /app/validators/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/collection.js -------------------------------------------------------------------------------- /app/validators/confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/confirmation.js -------------------------------------------------------------------------------- /app/validators/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/date.js -------------------------------------------------------------------------------- /app/validators/dependent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/dependent.js -------------------------------------------------------------------------------- /app/validators/ds-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/ds-error.js -------------------------------------------------------------------------------- /app/validators/exclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/exclusion.js -------------------------------------------------------------------------------- /app/validators/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/format.js -------------------------------------------------------------------------------- /app/validators/has-many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/has-many.js -------------------------------------------------------------------------------- /app/validators/inclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/inclusion.js -------------------------------------------------------------------------------- /app/validators/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/inline.js -------------------------------------------------------------------------------- /app/validators/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/length.js -------------------------------------------------------------------------------- /app/validators/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/messages.js -------------------------------------------------------------------------------- /app/validators/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/number.js -------------------------------------------------------------------------------- /app/validators/presence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/app/validators/presence.js -------------------------------------------------------------------------------- /blueprints/validator-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/blueprints/validator-test/index.js -------------------------------------------------------------------------------- /blueprints/validator-test/mocha-files/tests/unit/validators/__name__-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/blueprints/validator-test/mocha-files/tests/unit/validators/__name__-test.js -------------------------------------------------------------------------------- /blueprints/validator-test/qunit-files/tests/unit/validators/__name__-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/blueprints/validator-test/qunit-files/tests/unit/validators/__name__-test.js -------------------------------------------------------------------------------- /blueprints/validator/files/__root__/validators/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/blueprints/validator/files/__root__/validators/__name__.js -------------------------------------------------------------------------------- /blueprints/validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/blueprints/validator/index.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /htmlbars-plugins/v-get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/htmlbars-plugins/v-get.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/write-snippets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/scripts/write-snippets.mjs -------------------------------------------------------------------------------- /stderr.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/testem.js -------------------------------------------------------------------------------- /tests/acceptance/dummy-index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/acceptance/dummy-index-test.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/adapters/application.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/code-snippet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/components/code-snippet.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/code-snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/components/code-snippet.js -------------------------------------------------------------------------------- /tests/dummy/app/components/named-v-get.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/components/named-v-get.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/validated-input.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/components/validated-input.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/validated-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/components/validated-input.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/controllers/index.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/company.js -------------------------------------------------------------------------------- /tests/dummy/app/models/order-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/order-line.js -------------------------------------------------------------------------------- /tests/dummy/app/models/order-selection-question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/order-selection-question.js -------------------------------------------------------------------------------- /tests/dummy/app/models/order-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/order-selection.js -------------------------------------------------------------------------------- /tests/dummy/app/models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/order.js -------------------------------------------------------------------------------- /tests/dummy/app/models/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/signup.js -------------------------------------------------------------------------------- /tests/dummy/app/models/user-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/user-detail.js -------------------------------------------------------------------------------- /tests/dummy/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/models/user.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/routes/index.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/styles/app.scss -------------------------------------------------------------------------------- /tests/dummy/app/styles/code-snippet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/styles/code-snippet.scss -------------------------------------------------------------------------------- /tests/dummy/app/styles/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/styles/form.scss -------------------------------------------------------------------------------- /tests/dummy/app/styles/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/styles/navbar.scss -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/templates/index.hbs -------------------------------------------------------------------------------- /tests/dummy/app/validators/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/app/validators/messages.js -------------------------------------------------------------------------------- /tests/dummy/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/ember-cli-update.json -------------------------------------------------------------------------------- /tests/dummy/config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/ember-try.js -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/icons.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/optional-features.json -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/images/ember-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/public/images/ember-logo.png -------------------------------------------------------------------------------- /tests/dummy/public/images/tomsterzilla.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/dummy/public/images/tomsterzilla.jpeg -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/helpers/index.js -------------------------------------------------------------------------------- /tests/helpers/setup-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/helpers/setup-object.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/helpers/v-get-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/integration/helpers/v-get-test.js -------------------------------------------------------------------------------- /tests/integration/validations/factory-dependent-keys-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/integration/validations/factory-dependent-keys-test.js -------------------------------------------------------------------------------- /tests/integration/validations/factory-general-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/integration/validations/factory-general-test.js -------------------------------------------------------------------------------- /tests/integration/validations/model-relationships-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/integration/validations/model-relationships-test.js -------------------------------------------------------------------------------- /tests/integration/validators/composable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/integration/validators/composable-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/assign-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/utils/assign-test.js -------------------------------------------------------------------------------- /tests/unit/utils/flatten-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/utils/flatten-test.js -------------------------------------------------------------------------------- /tests/unit/utils/get-with-default-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/utils/get-with-default-test.js -------------------------------------------------------------------------------- /tests/unit/utils/should-call-super-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/utils/should-call-super-test.js -------------------------------------------------------------------------------- /tests/unit/validations/ds-model-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validations/ds-model-test.js -------------------------------------------------------------------------------- /tests/unit/validations/ember-proxy-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validations/ember-proxy-test.js -------------------------------------------------------------------------------- /tests/unit/validations/nested-model-relationship-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validations/nested-model-relationship-test.js -------------------------------------------------------------------------------- /tests/unit/validators/base-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/base-test.js -------------------------------------------------------------------------------- /tests/unit/validators/collection-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/collection-test.js -------------------------------------------------------------------------------- /tests/unit/validators/confirmation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/confirmation-test.js -------------------------------------------------------------------------------- /tests/unit/validators/date-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/date-test.js -------------------------------------------------------------------------------- /tests/unit/validators/dependent-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/dependent-test.js -------------------------------------------------------------------------------- /tests/unit/validators/ds-error-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/ds-error-test.js -------------------------------------------------------------------------------- /tests/unit/validators/exclusion-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/exclusion-test.js -------------------------------------------------------------------------------- /tests/unit/validators/format-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/format-test.js -------------------------------------------------------------------------------- /tests/unit/validators/inclusion-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/inclusion-test.js -------------------------------------------------------------------------------- /tests/unit/validators/inline-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/inline-test.js -------------------------------------------------------------------------------- /tests/unit/validators/length-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/length-test.js -------------------------------------------------------------------------------- /tests/unit/validators/messages-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/messages-test.js -------------------------------------------------------------------------------- /tests/unit/validators/number-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/number-test.js -------------------------------------------------------------------------------- /tests/unit/validators/presence-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/tests/unit/validators/presence-test.js -------------------------------------------------------------------------------- /yuidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adopted-ember-addons/ember-cp-validations/HEAD/yuidoc.json --------------------------------------------------------------------------------