Skip to content

Commit

Permalink
feat(FE:FSADT1-772): updating form and components to carbon
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulo Gomes da Cruz Junior committed Jun 2, 2023
1 parent 8588294 commit 4556260
Show file tree
Hide file tree
Showing 49 changed files with 3,323 additions and 631 deletions.
1 change: 1 addition & 0 deletions frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module.exports = {
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"prettier",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier"
],
Expand Down
1 change: 1 addition & 0 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
17 changes: 10 additions & 7 deletions frontend/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,25 @@ export {}

declare module '@vue/runtime-core' {
export interface GlobalComponents {
AddressGroupComponent: typeof import('./src/components/grouping/AddressGroupComponent.vue')['default']
AutoCompleteInputComponent: typeof import('./src/components/forms/AutoCompleteInputComponent.vue')['default']
BButton: typeof import('bootstrap-vue-3')['BButton']
BCard: typeof import('bootstrap-vue-3')['BCard']
BCardBody: typeof import('bootstrap-vue-3')['BCardBody']
BCardHeader: typeof import('bootstrap-vue-3')['BCardHeader']
BCol: typeof import('bootstrap-vue-3')['BCol']
BCollapse: typeof import('bootstrap-vue-3')['BCollapse']
BDropdown: typeof import('bootstrap-vue-3')['BDropdown']
BDropdownDivider: typeof import('bootstrap-vue-3')['BDropdownDivider']
BDropdownItem: typeof import('bootstrap-vue-3')['BDropdownItem']
BFormGroup: typeof import('bootstrap-vue-3')['BFormGroup']
BFormInput: typeof import('bootstrap-vue-3')['BFormInput']
BFormRadio: typeof import('bootstrap-vue-3')['BFormRadio']
BFormSelect: typeof import('bootstrap-vue-3')['BFormSelect']
BPopover: typeof import('bootstrap-vue-3')['BPopover']
BRow: typeof import('bootstrap-vue-3')['BRow']
BTab: typeof import('bootstrap-vue-3')['BTab']
BTabs: typeof import('bootstrap-vue-3')['BTabs']
ContactGroupComponent: typeof import('./src/components/grouping/ContactGroupComponent.vue')['default']
DataFetcher: typeof import('./src/components/DataFetcher.vue')['default']
DropdownInputComponent: typeof import('./src/components/forms/DropdownInputComponent.vue')['default']
MultiselectInputComponent: typeof import('./src/components/forms/MultiselectInputComponent.vue')['default']
RadioInputComponent: typeof import('./src/components/forms/RadioInputComponent.vue')['default']
TextInputComponent: typeof import('./src/components/forms/TextInputComponent.vue')['default']
WizardTabComponent: typeof import('./src/components/wizard/WizardTabComponent.vue')['default']
WizardWrapperComponent: typeof import('./src/components/wizard/WizardWrapperComponent.vue')['default']
}
}
30 changes: 16 additions & 14 deletions frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="/data/config.js"></script>
<link
rel="stylesheet"
href="https://1.www.s81c.com/common/carbon-for-ibm-dotcom/tag/v1/latest/plex.css"
/>
<title>Forest Client</title>
</head>

<head>
<meta charset="UTF-8" />
<link rel="icon" href="/img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="/data/config.js"></script>
<title>Forest Client</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 4556260

Please sign in to comment.