diff --git a/LICENSE.txt b/LICENSE.txt index aed227d..962a9f7 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Barry-Wehmiller Design Group +Copyright (c) 2024 Keith Gamble Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/build.gradle.kts b/build.gradle.kts index 8216aa5..8968031 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ ignitionModule { // Basic module metadata name.set("Example Component Library") // The human-readable name shown in the Gateway fileName.set("Example-Component-Library.modl") // The output file name - id.set("dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary") // Unique module identifier + id.set("dev.kgamble.perspective.examples.ExampleComponentLibrary") // Unique module identifier moduleVersion.set("${project.version}") // Version from allprojects block license.set("LICENSE.txt") // License file to include moduleDescription.set("A module that adds Example React components to Perspective.") @@ -44,8 +44,8 @@ ignitionModule { // Register the module hooks that initialize the module in each scope hooks.putAll( mapOf( - "dev.bwdesigngroup.perspective.examples.gateway.ExampleComponentLibraryGatewayHook" to "G", - "dev.bwdesigngroup.perspective.examples.designer.ExampleComponentLibraryDesignerHook" to "D" + "dev.kgamble.perspective.examples.gateway.ExampleComponentLibraryGatewayHook" to "G", + "dev.kgamble.perspective.examples.designer.ExampleComponentLibraryDesignerHook" to "D" ) ) diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/Constants.java b/common/src/main/java/dev/kgamble/perspective/examples/common/Constants.java similarity index 80% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/Constants.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/Constants.java index 79f0d84..0169cf6 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/Constants.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/Constants.java @@ -2,7 +2,7 @@ * Copyright 2022 Keith Gamble * [License information] */ -package dev.bwdesigngroup.perspective.examples.common; +package dev.kgamble.perspective.examples.common; /** * This class contains constant values used across the Example Component Library @@ -18,7 +18,7 @@ public class Constants { * This ID is used in various parts of the module sdk to recognize and * manage the module. */ - public static final String MODULE_ID = "dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary"; + public static final String MODULE_ID = "dev.kgamble.perspective.examples.ExampleComponentLibrary"; /** * The URL alias for this module's resources. diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/ExampleComponents.java b/common/src/main/java/dev/kgamble/perspective/examples/common/ExampleComponents.java similarity index 95% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/ExampleComponents.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/ExampleComponents.java index 1f42f3a..40467ba 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/ExampleComponents.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/ExampleComponents.java @@ -1,4 +1,4 @@ -package dev.bwdesigngroup.perspective.examples.common; +package dev.kgamble.perspective.examples.common; import java.util.Set; import com.inductiveautomation.perspective.common.api.BrowserResource; diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/components/input/Button.java b/common/src/main/java/dev/kgamble/perspective/examples/common/components/input/Button.java similarity index 87% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/components/input/Button.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/components/input/Button.java index 3761bff..acf4caa 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/components/input/Button.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/components/input/Button.java @@ -1,4 +1,4 @@ -package dev.bwdesigngroup.perspective.examples.common.components.input; +package dev.kgamble.perspective.examples.common.components.input; import java.util.List; import java.awt.image.BufferedImage; @@ -7,10 +7,10 @@ import com.inductiveautomation.perspective.common.api.ComponentDescriptorImpl; import com.inductiveautomation.perspective.common.api.ComponentEventDescriptor; -import dev.bwdesigngroup.perspective.examples.common.Constants; -import dev.bwdesigngroup.perspective.examples.common.ExampleComponents; -import dev.bwdesigngroup.perspective.examples.common.utilities.ComponentUtilities; -import dev.bwdesigngroup.perspective.examples.common.utilities.ImageUtilities; +import dev.kgamble.perspective.examples.common.Constants; +import dev.kgamble.perspective.examples.common.ExampleComponents; +import dev.kgamble.perspective.examples.common.utilities.ComponentUtilities; +import dev.kgamble.perspective.examples.common.utilities.ImageUtilities; /** * This class describes the Button component to the Java registry. diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ComponentUtilities.java b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ComponentUtilities.java similarity index 96% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ComponentUtilities.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ComponentUtilities.java index b57f334..621a20a 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ComponentUtilities.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ComponentUtilities.java @@ -2,7 +2,7 @@ * Copyright 2022 Keith Gamble * [License information] */ -package dev.bwdesigngroup.perspective.examples.common.utilities; +package dev.kgamble.perspective.examples.common.utilities; import com.inductiveautomation.ignition.common.jsonschema.JsonSchema; import com.inductiveautomation.perspective.common.api.ComponentEventDescriptor; diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/DelegatingComponentDescriptor.java b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/DelegatingComponentDescriptor.java similarity index 98% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/DelegatingComponentDescriptor.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/utilities/DelegatingComponentDescriptor.java index c8aa26d..a416004 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/DelegatingComponentDescriptor.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/DelegatingComponentDescriptor.java @@ -4,7 +4,7 @@ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -package dev.bwdesigngroup.perspective.examples.common.utilities; +package dev.kgamble.perspective.examples.common.utilities; import java.util.Collection; import java.util.Optional; diff --git a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ImageUtilities.java b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ImageUtilities.java similarity index 96% rename from common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ImageUtilities.java rename to common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ImageUtilities.java index fffd4bf..8938b58 100644 --- a/common/src/main/java/dev/bwdesigngroup/perspective/examples/common/utilities/ImageUtilities.java +++ b/common/src/main/java/dev/kgamble/perspective/examples/common/utilities/ImageUtilities.java @@ -2,7 +2,7 @@ * Copyright 2022 Keith Gamble * [License information] */ -package dev.bwdesigngroup.perspective.examples.common.utilities; +package dev.kgamble.perspective.examples.common.utilities; import java.awt.image.BufferedImage; import java.awt.Graphics2D; diff --git a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ComponentUtilities.java b/designer/src/main/java/dev/kgamble/perspective/examples/designer/ComponentUtilities.java similarity index 95% rename from designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ComponentUtilities.java rename to designer/src/main/java/dev/kgamble/perspective/examples/designer/ComponentUtilities.java index 91c7bd9..8d00c9b 100644 --- a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ComponentUtilities.java +++ b/designer/src/main/java/dev/kgamble/perspective/examples/designer/ComponentUtilities.java @@ -4,7 +4,7 @@ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -package dev.bwdesigngroup.perspective.examples.designer; +package dev.kgamble.perspective.examples.designer; import javax.swing.Icon; import java.util.Optional; @@ -14,7 +14,7 @@ import com.inductiveautomation.perspective.common.api.ComponentDescriptor; import com.inductiveautomation.perspective.designer.DesignerComponentRegistry; -import dev.bwdesigngroup.perspective.examples.common.utilities.DelegatingComponentDescriptor; +import dev.kgamble.perspective.examples.common.utilities.DelegatingComponentDescriptor; /** * Utility class for registering components with custom icons in the Ignition Designer. diff --git a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java b/designer/src/main/java/dev/kgamble/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java similarity index 93% rename from designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java rename to designer/src/main/java/dev/kgamble/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java index 8c247b8..d7161de 100644 --- a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java +++ b/designer/src/main/java/dev/kgamble/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java @@ -1,4 +1,4 @@ -package dev.bwdesigngroup.perspective.examples.designer; +package dev.kgamble.perspective.examples.designer; import com.inductiveautomation.ignition.common.licensing.LicenseState; import com.inductiveautomation.ignition.common.util.LoggerEx; @@ -7,7 +7,7 @@ import com.inductiveautomation.perspective.designer.DesignerComponentRegistry; import com.inductiveautomation.perspective.designer.api.PerspectiveDesignerInterface; -import dev.bwdesigngroup.perspective.examples.common.components.input.Button; +import dev.kgamble.perspective.examples.common.components.input.Button; /** * Designer module hook for the Example Component Library. diff --git a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/IconUtilities.java b/designer/src/main/java/dev/kgamble/perspective/examples/designer/IconUtilities.java similarity index 98% rename from designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/IconUtilities.java rename to designer/src/main/java/dev/kgamble/perspective/examples/designer/IconUtilities.java index e0b675d..e3433e6 100644 --- a/designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/IconUtilities.java +++ b/designer/src/main/java/dev/kgamble/perspective/examples/designer/IconUtilities.java @@ -4,7 +4,7 @@ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -package dev.bwdesigngroup.perspective.examples.designer; +package dev.kgamble.perspective.examples.designer; import javax.swing.Icon; import java.io.IOException; diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 6d1f285..96ccb0d 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -20,7 +20,7 @@ services: -- -Dia.developer.moduleupload=true -Dignition.allowunsignedmodules=true - -Dres.path.dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted + -Dres.path.dev.kgamble.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted # If a traefik proxy container is not being used, comment out everything below this line (https://github.com/design-group/traefik-proxy) networks: diff --git a/docs/archive/adding-components.md b/docs/archive/adding-components.md index f04361f..95e3248 100644 --- a/docs/archive/adding-components.md +++ b/docs/archive/adding-components.md @@ -150,16 +150,16 @@ If your component needs specific styles, add them to `web/src/css/styles.css`. ### 2.1 Create the Java Component Class -Create a new Java file in `common/src/main/java/dev/bwdesigngroup/perspective/examples/common/components/`. For example, `MyNewComponent.java`: +Create a new Java file in `common/src/main/java/dev/kgamble/perspective/examples/common/components/`. For example, `MyNewComponent.java`: ```java -package dev.bwdesigngroup.perspective.examples.common.components; +package dev.kgamble.perspective.examples.common.components; import java.util.List; import com.inductiveautomation.perspective.common.api.ComponentDescriptor; import com.inductiveautomation.perspective.common.api.ComponentDescriptorImpl; -import dev.bwdesigngroup.perspective.examples.common.Constants; -import dev.bwdesigngroup.perspective.examples.common.ExampleComponents; +import dev.kgamble.perspective.examples.common.Constants; +import dev.kgamble.perspective.examples.common.ExampleComponents; public class MyNewComponent { // This should match the ID used in the TypeScript component class @@ -200,10 +200,10 @@ Create a JSON schema file for your component's properties in `common/src/main/re ### 3.1 Update the Gateway Hook -Modify `gateway/src/main/java/dev/bwdesigngroup/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java` to register your new component: +Modify `gateway/src/main/java/dev/kgamble/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java` to register your new component: ```java -import dev.bwdesigngroup.perspective.examples.common.components.MyNewComponent; +import dev.kgamble.perspective.examples.common.components.MyNewComponent; public class ExampleComponentLibraryGatewayHook extends AbstractGatewayModuleHook { @Override @@ -232,10 +232,10 @@ public class ExampleComponentLibraryGatewayHook extends AbstractGatewayModuleHoo ### 4.1 Update the Designer Hook -Modify `designer/src/main/java/dev/bwdesigngroup/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java` to register your new component: +Modify `designer/src/main/java/dev/kgamble/perspective/examples/designer/ExampleComponentLibraryDesignerHook.java` to register your new component: ```java -import dev.bwdesigngroup.perspective.examples.common.components.MyNewComponent; +import dev.kgamble.perspective.examples.common.components.MyNewComponent; public class ExampleComponentLibraryDesignerHook extends AbstractDesignerModuleHook { private void init() { diff --git a/docs/archive/environment-setup.md b/docs/archive/environment-setup.md index 179f7bb..20d5bba 100644 --- a/docs/archive/environment-setup.md +++ b/docs/archive/environment-setup.md @@ -99,7 +99,7 @@ It is possible to map your built js files into the gateway, so that you dont nee commands: # ... other commands -- - -Dres.path.dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted + -Dres.path.dev.kgamble.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted ``` The reason that this is mounted at the `./web` level, instead of all the way down to the mounted content, is because when the webpack copy happens if you do a `clean` first it will delete the `build` directory inside of `./web` which will throw off permissions on the finally created content. This just makes it easier to ensure that you have consistent permissions the whole time. diff --git a/docs/archive/faq/groovy-vs-kotlin.md b/docs/archive/faq/groovy-vs-kotlin.md index 41436e9..e8f0524 100644 --- a/docs/archive/faq/groovy-vs-kotlin.md +++ b/docs/archive/faq/groovy-vs-kotlin.md @@ -82,7 +82,7 @@ allprojects { ignitionModule { name = "Example Component Library" fileName = "Example-Component-Library.modl" - id = "dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary" + id = "dev.kgamble.perspective.examples.ExampleComponentLibrary" moduleVersion = version license = "LICENSE.txt" moduleDescription = "A module that adds Example React components to Perspective." @@ -98,8 +98,8 @@ ignitionModule { moduleDependencies = [ "com.inductiveautomation.perspective": "GD" ] hooks = [ - "dev.bwdesigngroup.perspective.examples.gateway.ExampleComponentLibraryGatewayHook": "G", - "dev.bwdesigngroup.perspective.examples.designer.ExampleComponentLibraryDesignerHook": "D" + "dev.kgamble.perspective.examples.gateway.ExampleComponentLibraryGatewayHook": "G", + "dev.kgamble.perspective.examples.designer.ExampleComponentLibraryDesignerHook": "D" ] applyInductiveArtifactRepo = true diff --git a/docs/archive/module-build-system.md b/docs/archive/module-build-system.md index f288110..abee164 100644 --- a/docs/archive/module-build-system.md +++ b/docs/archive/module-build-system.md @@ -59,7 +59,7 @@ ignitionModule { // Basic module information name.set("Example Component Library") fileName.set("Example-Component-Library.modl") - id.set("dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary") + id.set("dev.kgamble.perspective.examples.ExampleComponentLibrary") moduleVersion.set("${project.version}") // Module requirements @@ -79,8 +79,8 @@ ignitionModule { moduleDependencies.put("com.inductiveautomation.perspective", "GD") hooks.putAll( mapOf( - "dev.bwdesigngroup.perspective.examples.gateway.ExampleComponentLibraryGatewayHook" to "G", - "dev.bwdesigngroup.perspective.examples.designer.ExampleComponentLibraryDesignerHook" to "D" + "dev.kgamble.perspective.examples.gateway.ExampleComponentLibraryGatewayHook" to "G", + "dev.kgamble.perspective.examples.designer.ExampleComponentLibraryDesignerHook" to "D" ) ) } diff --git a/docs/archive/naming-conventions.md b/docs/archive/naming-conventions.md index d77ab25..99615f3 100644 --- a/docs/archive/naming-conventions.md +++ b/docs/archive/naming-conventions.md @@ -20,14 +20,14 @@ The module ID follows a reverse domain name pattern and is defined in multiple l ```kotlin ignitionModule { - id.set("dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary") + id.set("dev.kgamble.perspective.examples.ExampleComponentLibrary") } ``` 2. **Constants** (`Constants.java`): ```java -public static final String MODULE_ID = "dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary"; +public static final String MODULE_ID = "dev.kgamble.perspective.examples.ExampleComponentLibrary"; ``` ### Module URL Alias @@ -107,7 +107,7 @@ public static final Set BROWSER_RESOURCES = Set.of( ## Package Structure ``` -dev.bwdesigngroup.perspective.examples +dev.kgamble.perspective.examples ├── common │ ├── Constants.java │ ├── components @@ -122,7 +122,7 @@ dev.bwdesigngroup.perspective.examples ### Naming Patterns -1. **Base Package**: `dev.bwdesigngroup.perspective.examples` +1. **Base Package**: `dev.kgamble.perspective.examples` 2. **Component Categories**: `components.{category}` 3. **Utility Classes**: `utilities` 4. **Hook Classes**: `{scope}.hooks` diff --git a/docs/docs/2-Development/1-docker-setup.md b/docs/docs/2-Development/1-docker-setup.md index e791535..cf439a9 100644 --- a/docs/docs/2-Development/1-docker-setup.md +++ b/docs/docs/2-Development/1-docker-setup.md @@ -59,7 +59,7 @@ services: GATEWAY_RESTORE_DISABLED: "false" command: > -- - -Dres.path.dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted + -Dres.path.dev.kgamble.perspective.examples.ExampleComponentLibrary=/web-resources/build/generated-resources/mounted ``` ## Usage diff --git a/docs/docs/4-Guides/2-build-system.md b/docs/docs/4-Guides/2-build-system.md index 3d5576d..1ecd350 100644 --- a/docs/docs/4-Guides/2-build-system.md +++ b/docs/docs/4-Guides/2-build-system.md @@ -55,7 +55,7 @@ ignitionModule { // Module definition name.set("Example Component Library") fileName.set("Example-Component-Library.modl") - id.set("dev.bwdesigngroup.perspective.examples") + id.set("dev.kgamble.perspective.examples") // Project scope mapping projectScopes.putAll( diff --git a/docs/docs/4-Guides/3-naming-conventions.md b/docs/docs/4-Guides/3-naming-conventions.md index 90d8a41..9f96a27 100644 --- a/docs/docs/4-Guides/3-naming-conventions.md +++ b/docs/docs/4-Guides/3-naming-conventions.md @@ -18,7 +18,7 @@ Consistent naming is crucial for maintainable code and proper module functionali Example: ```java -dev.bwdesigngroup.perspective.examples.ExampleComponentLibrary +dev.kgamble.perspective.examples.ExampleComponentLibrary ``` :::info Why This Pattern? diff --git a/gateway/src/main/java/dev/bwdesigngroup/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java b/gateway/src/main/java/dev/kgamble/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java similarity index 93% rename from gateway/src/main/java/dev/bwdesigngroup/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java rename to gateway/src/main/java/dev/kgamble/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java index 0c66cef..3b72aa8 100644 --- a/gateway/src/main/java/dev/bwdesigngroup/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java +++ b/gateway/src/main/java/dev/kgamble/perspective/examples/gateway/ExampleComponentLibraryGatewayHook.java @@ -1,4 +1,4 @@ -package dev.bwdesigngroup.perspective.examples.gateway; +package dev.kgamble.perspective.examples.gateway; import java.util.Optional; @@ -9,8 +9,8 @@ import com.inductiveautomation.perspective.common.api.ComponentRegistry; import com.inductiveautomation.perspective.gateway.api.PerspectiveContext; -import dev.bwdesigngroup.perspective.examples.common.Constants; -import dev.bwdesigngroup.perspective.examples.common.components.input.Button; +import dev.kgamble.perspective.examples.common.Constants; +import dev.kgamble.perspective.examples.common.components.input.Button; /** * Gateway module hook for the Example Component Library. diff --git a/web/package-lock.json b/web/package-lock.json index 5b446d1..d89e227 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@design-group/example-components", + "name": "@kgamble/example-components", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@design-group/example-components", + "name": "@kgamble/example-components", "version": "0.0.1", "dependencies": { "@fiverr/afterbuild-webpack-plugin": "^1.0.0", diff --git a/web/package.json b/web/package.json index 674403d..766c7a8 100644 --- a/web/package.json +++ b/web/package.json @@ -1,5 +1,5 @@ { - "name": "@design-group/example-components", + "name": "@kgamble/example-components", "version": "0.0.1", "description": "A collection of example React components", "main": "dist/index.js",