diff --git a/package.json b/package.json
index 24c887d..db7740e 100644
--- a/package.json
+++ b/package.json
@@ -52,7 +52,7 @@
"dependencies": {
"clipboard": "^1.7.1",
"croppie": "^2.5.0",
- "croud-date-parser": "git+https://github.com/CroudSupport/croud-date-parser.git",
+ "croud-date-parser": "git+https://github.com/CroudTech/croud-date-parser.git",
"pikaday": "^1.6.1",
"tool": "^6.0.0",
"vuetable-2": "^1.7.0"
diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue
index 2eb0ee4..f546099 100644
--- a/src/components/Navigation.vue
+++ b/src/components/Navigation.vue
@@ -23,7 +23,7 @@
@@ -65,25 +65,20 @@ export default {
font-size: $croud-font-size-small;
text-transform: capitalize;
- &.active {
-
- &:hover {
- color: $croud-colour-grey;
- }
+ &.active:hover {
+ color: $croud-colour-grey;
}
}
- .submenu {
-
- .item {
- padding-left: 2.5em;
- font-weight: 300;
- }
+ .submenu .item {
+ padding-left: 2.5em;
+ font-weight: 300;
}
.bottom-menu {
position: absolute;
bottom: 0;
+
.ui.button {
margin: .8rem;
}
diff --git a/src/components/shared/buttons/SaveButtonWithDropdown.vue b/src/components/shared/buttons/SaveButtonWithDropdown.vue
index 23242ea..1972982 100644
--- a/src/components/shared/buttons/SaveButtonWithDropdown.vue
+++ b/src/components/shared/buttons/SaveButtonWithDropdown.vue
@@ -8,8 +8,8 @@
*
* *This is a functional component which has no state so does not need to define any props*
* @see https://vuejs.org/v2/guide/render-function.html#Functional-Components
- * @see https://croudsupport.github.io/Croud-Style-Guide/technical/#!/croud-save-button
- * @see https://croudsupport.github.io/Croud-Style-Guide/technical/#!/croud-dropdown-button
+ * @see https://croudtech.github.io/Croud-Style-Guide/technical/#!/croud-save-button
+ * @see https://croudtech.github.io/Croud-Style-Guide/technical/#!/croud-dropdown-button
*
* @example ./croud-save-button-with-dropdown.md
*/
diff --git a/src/components/shared/forms/croud-forms.md b/src/components/shared/forms/croud-forms.md
index 722fd49..e76ad93 100644
--- a/src/components/shared/forms/croud-forms.md
+++ b/src/components/shared/forms/croud-forms.md
@@ -1,8 +1,8 @@
-We use [croud-forms](https://github.com/CroudSupport/croud-forms) for building our web forms.
+We use [croud-forms](https://github.com/croudtech/croud-forms) for building our web forms.
-Note, this component can also handle [validation](https://github.com/CroudSupport/croud-forms#vuelidate-integration), but it crashes in styleguidist 😢
+Note, this component can also handle [validation](https://github.com/croudtech/croud-forms#vuelidate-integration), but it crashes in styleguidist 😢
-See the [docs](https://github.com/CroudSupport/croud-forms#bringing-it-all-together) for more details.
+See the [docs](https://github.com/croudtech/croud-forms#bringing-it-all-together) for more details.
diff --git a/src/components/shared/forms/quill/quill.md b/src/components/shared/forms/quill/quill.md
index a29858d..f431aab 100644
--- a/src/components/shared/forms/quill/quill.md
+++ b/src/components/shared/forms/quill/quill.md
@@ -1,5 +1,5 @@
### vue-quill
-We use the [vue-quill](https://github.com/CroudSupport/vue-quill) package for wrapping quill for usage in Vue. Vue quill can output the contents in Quill deltas or straight html. For more config options and examples, view the [docs](https://github.com/CroudSupport/vue-quill)
+We use the [vue-quill](https://github.com/croudtech/vue-quill) package for wrapping quill for usage in Vue. Vue quill can output the contents in Quill deltas or straight html. For more config options and examples, view the [docs](https://github.com/croudtech/vue-quill)
### Croud Theme
We have created our own quill theme that can be imported with this bit of bootstrap.
diff --git a/src/components/shared/layout/fullcalendar.md b/src/components/shared/layout/fullcalendar.md
index a5267c3..9aa1271 100644
--- a/src/components/shared/layout/fullcalendar.md
+++ b/src/components/shared/layout/fullcalendar.md
@@ -1,5 +1,5 @@
## vue-full-calendar
-We use [vue-full-calendar](https://github.com/CroudSupport/vue-fullcalendar) for our calendar component. View this [repo](https://github.com/BrockReece/vue-fullcalendar-example) for a full webpack project using the vue-full-calendar.
+We use [vue-full-calendar](https://github.com/croudtech/vue-fullcalendar) for our calendar component. View this [repo](https://github.com/BrockReece/vue-fullcalendar-example) for a full webpack project using the vue-full-calendar.
**Installation**
@@ -12,7 +12,7 @@ Vue.use(VueFullCalendar)
**Events**
-See the [docs](https://github.com/CroudSupport/vue-fullcalendar#using-a-json-feed) for formatting an event array or loading from an API
+See the [docs](https://github.com/croudtech/vue-fullcalendar#using-a-json-feed) for formatting an event array or loading from an API
### Basic usage
diff --git a/src/components/shared/misc/croud-summarised-mutli-selector.md b/src/components/shared/misc/croud-summarised-mutli-selector.md
index c19230a..db3a6da 100644
--- a/src/components/shared/misc/croud-summarised-mutli-selector.md
+++ b/src/components/shared/misc/croud-summarised-mutli-selector.md
@@ -1,6 +1,6 @@
This is a custom iteration of our dropdown component, which shows a selected items summary popup on hover, and shows a single value (based on the summary field on the fields prop) if one option is selected and a count summary if more than one item is selected, it is ideal for use in a multi selection scenario.
-We use the semantic-form-dropdown component from the [croud-vue-semantic](https://github.com/CroudSupport/vue-semantic) library. Click [here](http://croudsupport.github.io/vue-semantic/#semantic-form-dropdown) for full component docs.
+We use the semantic-form-dropdown component from the [croud-vue-semantic](https://github.com/croudtech/vue-semantic) library. Click [here](http://croudtech.github.io/vue-semantic/#semantic-form-dropdown) for full component docs.
### Basic Usage
Simply provide the value prop, v-model and an options array to the selector for a basic setup
diff --git a/src/components/shared/semantic/semantic-checkbox.md b/src/components/shared/semantic/semantic-checkbox.md
index eeab11a..2462a88 100644
--- a/src/components/shared/semantic/semantic-checkbox.md
+++ b/src/components/shared/semantic/semantic-checkbox.md
@@ -1,5 +1,5 @@
### semantic-checkbox
-For our checkboxes, we use the semantic-checkbox component from the [croud-vue-semantic](https://github.com/CroudSupport/vue-semantic) library. Below are a few examples of semantic-checkbox in action. Click [here](http://croudsupport.github.io/vue-semantic/#semantic-checkbox) for full component docs.
+For our checkboxes, we use the semantic-checkbox component from the [croud-vue-semantic](https://github.com/croudtech/vue-semantic) library. Below are a few examples of semantic-checkbox in action. Click [here](http://croudtech.github.io/vue-semantic/#semantic-checkbox) for full component docs.
### Basic usage
diff --git a/src/components/shared/semantic/semantic-form-dropdown.md b/src/components/shared/semantic/semantic-form-dropdown.md
index 20f92c3..42eb780 100644
--- a/src/components/shared/semantic/semantic-form-dropdown.md
+++ b/src/components/shared/semantic/semantic-form-dropdown.md
@@ -1,5 +1,5 @@
### semantic-form-dropdown
-For our form dropdowns, we use the semantic-form-dropdown component from the [croud-vue-semantic](https://github.com/CroudSupport/vue-semantic) library. Below are a few examples of semantic-form-dropdown in action. Click [here](http://croudsupport.github.io/vue-semantic/#semantic-form-dropdown) for full component docs.
+For our form dropdowns, we use the semantic-form-dropdown component from the [croud-vue-semantic](https://github.com/croudtech/vue-semantic) library. Below are a few examples of semantic-form-dropdown in action. Click [here](http://croudtech.github.io/vue-semantic/#semantic-form-dropdown) for full component docs.
### Basic usage
diff --git a/src/components/shared/semantic/semantic-modal.md b/src/components/shared/semantic/semantic-modal.md
index 5de4e8d..a74c2fb 100644
--- a/src/components/shared/semantic/semantic-modal.md
+++ b/src/components/shared/semantic/semantic-modal.md
@@ -1,5 +1,5 @@
### semantic-modal
-For our modals, we use the semantic-modal component from the [croud-vue-semantic](https://github.com/CroudSupport/vue-semantic) library. Below are a few examples of semantic-modal in action. Click [here](http://croudsupport.github.io/vue-semantic/#semantic-modal) for full component docs.
+For our modals, we use the semantic-modal component from the [croud-vue-semantic](https://github.com/croudtech/vue-semantic) library. Below are a few examples of semantic-modal in action. Click [here](http://croudtech.github.io/vue-semantic/#semantic-modal) for full component docs.
### Basic usage
diff --git a/src/components/shared/semantic/semantic-radiobutton.md b/src/components/shared/semantic/semantic-radiobutton.md
index 6544fdb..77647f9 100644
--- a/src/components/shared/semantic/semantic-radiobutton.md
+++ b/src/components/shared/semantic/semantic-radiobutton.md
@@ -1,5 +1,5 @@
### semantic-radiobutton
-For our radio selectors, we use the semantic-radiobutton component from the [croud-vue-semantic](https://github.com/CroudSupport/vue-semantic) library. Below are a few examples of semantic-radiobutton in action. Click [here](http://croudsupport.github.io/vue-semantic/#semantic-radiobutton) for full component docs.
+For our radio selectors, we use the semantic-radiobutton component from the [croud-vue-semantic](https://github.com/croudtech/vue-semantic) library. Below are a few examples of semantic-radiobutton in action. Click [here](http://croudtech.github.io/vue-semantic/#semantic-radiobutton) for full component docs.
### Basic Usage
You can pass a form label in as the **default** slot
diff --git a/yarn.lock b/yarn.lock
index cc8bf97..cd56402 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3254,9 +3254,9 @@ cross-spawn@^3.0.0:
lru-cache "^4.0.1"
which "^1.2.9"
-"croud-date-parser@git+https://github.com/CroudSupport/croud-date-parser.git":
+"croud-date-parser@git+https://github.com/CroudTech/croud-date-parser.git":
version "0.0.4"
- resolved "git+https://github.com/CroudSupport/croud-date-parser.git#6bae710602c6c4b088644055126b9af2a8e6c4c4"
+ resolved "git+https://github.com/CroudTech/croud-date-parser.git#6bae710602c6c4b088644055126b9af2a8e6c4c4"
dependencies:
chrono-node "^1.1.6"