Skip to content

Commit

Permalink
fix: update formkit package namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfalaska committed Jan 16, 2025
1 parent fadfe06 commit ee7ceba
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 19 deletions.
6 changes: 3 additions & 3 deletions components/combobox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
},
"dependencies": {
"@alaskaairux/icons": "^4.44.1",
"@auro-formkit/auro-dropdown": "*",
"@auro-formkit/auro-input": "*",
"@auro-formkit/auro-menu": "*",
"@aurodesignsystem/auro-dropdown": "*",
"@aurodesignsystem/auro-input": "*",
"@aurodesignsystem/auro-menu": "*",
"chalk": "^5.4.1",
"lit": "^3.2.1"
},
Expand Down
6 changes: 3 additions & 3 deletions components/combobox/src/auro-combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ import { AuroDependencyVersioning } from '@aurodesignsystem/auro-library/scripts
import AuroLibraryRuntimeUtils from '@aurodesignsystem/auro-library/scripts/utils/runtimeUtils.mjs';
import AuroFormValidation from '@auro-formkit/form-validation';

import { AuroDropdown } from '@auro-formkit/auro-dropdown';
import { AuroDropdown } from '@aurodesignsystem/auro-dropdown';
import dropdownVersion from './formkit/auro-dropdownVersion.js';

import { AuroInput } from '@auro-formkit/auro-input';
import { AuroInput } from '@aurodesignsystem/auro-input';
import inputVersion from './formkit/auro-inputVersion.js';

import {
arrayConverter,
arrayOrUndefinedHasChanged
} from '@auro-formkit/auro-menu';
} from '@aurodesignsystem/auro-menu';

// Import touch detection lib
import styleCss from "./styles/style-css.js";
Expand Down
4 changes: 2 additions & 2 deletions components/select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"url": "https://github.com/AlaskaAirlines/auro-select"
},
"dependencies": {
"@auro-formkit/auro-dropdown": "*",
"@auro-formkit/auro-menu": "*",
"@aurodesignsystem/auro-dropdown": "*",
"@aurodesignsystem/auro-menu": "*",
"chalk": "^5.3.0",
"lit-element": "^4.1.1",
"lit-html": "^3.2.1"
Expand Down
2 changes: 1 addition & 1 deletion components/select/src/auro-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import dropdownVersion from './formkit/auro-dropdownVersion.js';
import {
arrayConverter,
arrayOrUndefinedHasChanged
} from '@auro-formkit/auro-menu';
} from '@aurodesignsystem/auro-menu';

import styleCss from "./styles/style-css.js";
import colorCss from "./styles/color-css.js";
Expand Down
2 changes: 1 addition & 1 deletion docs/partials/readmeAddlInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The package's `package.json` will have every dependency that it needs. This is t
#### Internal Dependencies
- These are packages from within the `auro-formkit` monorepo
- Allow sharing code between different packages in your repository
- Example: The `@auro-formkit/combobox` package might depend on `@auro-formkit/input`
- Example: The `@aurodesignsystem/combobox` package might depend on `@auro-formkit/input`
- Must be declared in `package.json` just like external dependencies
- Use workspace protocols (e.g., `"workspace:*"` or `"workspace:^1.0.0"`)

Expand Down
14 changes: 5 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ee7ceba

Please sign in to comment.