@adzen/doohbot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +17 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +26 -0
- package/.vscode/settings.json +13 -0
- package/.vscode/tasks.json +42 -0
- package/README.md +58 -0
- package/adzen-doohbot-0.0.1.tgz +0 -0
- package/adzen-doohbot-1.0.0.tgz +0 -0
- package/angular.json +119 -0
- package/package.json +57 -0
- package/projects/doohbot/README.md +63 -0
- package/projects/doohbot/ng-package.json +16 -0
- package/projects/doohbot/package.json +12 -0
- package/projects/doohbot/src/lib/directives/draggable/draggable-dialog.directive.ts +62 -0
- package/projects/doohbot/src/lib/directives/draggable/draggable-dialog.module.ts +9 -0
- package/projects/doohbot/src/lib/directives/resizable/resizable-dialog.directive.ts +163 -0
- package/projects/doohbot/src/lib/directives/resizable/resizable-dialog.module.ts +9 -0
- package/projects/doohbot/src/lib/doohbot.html +216 -0
- package/projects/doohbot/src/lib/doohbot.scss +568 -0
- package/projects/doohbot/src/lib/doohbot.spec.ts +21 -0
- package/projects/doohbot/src/lib/doohbot.ts +345 -0
- package/projects/doohbot/src/lib/elements/elements.ts +25 -0
- package/projects/doohbot/src/lib/helpers/predefined_messages.ts +2 -0
- package/projects/doohbot/src/lib/inputs/doohbot-input.ts +25 -0
- package/projects/doohbot/src/lib/model/doohbot.intents.ts +24 -0
- package/projects/doohbot/src/lib/model/message.ts +13 -0
- package/projects/doohbot/src/lib/model/token.ts +3 -0
- package/projects/doohbot/src/lib/services/messaging.service.ts +76 -0
- package/projects/doohbot/src/lib/shared/chips/chips.html +9 -0
- package/projects/doohbot/src/lib/shared/chips/chips.scss +27 -0
- package/projects/doohbot/src/lib/shared/chips/chips.spec.ts +23 -0
- package/projects/doohbot/src/lib/shared/chips/chips.ts +18 -0
- package/projects/doohbot/src/lib/shared/snackbar/snackbar.html +7 -0
- package/projects/doohbot/src/lib/shared/snackbar/snackbar.scss +73 -0
- package/projects/doohbot/src/lib/shared/snackbar/snackbar.spec.ts +21 -0
- package/projects/doohbot/src/lib/shared/snackbar/snackbar.ts +44 -0
- package/projects/doohbot/src/lib/utils/material-override.scss +312 -0
- package/projects/doohbot/src/lib/utils/utility.scss +536 -0
- package/projects/doohbot/src/public-api.ts +5 -0
- package/projects/doohbot/tsconfig.lib.json +19 -0
- package/projects/doohbot/tsconfig.lib.prod.json +11 -0
- package/projects/doohbot/tsconfig.spec.json +14 -0
- package/projects/doohbot-element/public/favicon.ico +0 -0
- package/projects/doohbot-element/src/app/app.config.ts +12 -0
- package/projects/doohbot-element/src/app/app.html +1 -0
- package/projects/doohbot-element/src/app/app.routes.ts +3 -0
- package/projects/doohbot-element/src/app/app.scss +0 -0
- package/projects/doohbot-element/src/app/app.spec.ts +23 -0
- package/projects/doohbot-element/src/app/app.ts +10 -0
- package/projects/doohbot-element/src/index.html +15 -0
- package/projects/doohbot-element/src/main.ts +6 -0
- package/projects/doohbot-element/src/styles.scss +15 -0
- package/projects/doohbot-element/tsconfig.app.json +15 -0
- package/projects/doohbot-element/tsconfig.spec.json +14 -0
- package/tsconfig.json +43 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "../../tsconfig.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"outDir": "../../out-tsc/spec",
|
|
7
|
+
"types": [
|
|
8
|
+
"jasmine"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"include": [
|
|
12
|
+
"src/**/*.ts"
|
|
13
|
+
]
|
|
14
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"compileOnSave": false,
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"paths": {
|
|
7
|
+
"doohbot": ["./dist/doohbot"]
|
|
8
|
+
},
|
|
9
|
+
"strict": true,
|
|
10
|
+
"noImplicitOverride": true,
|
|
11
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
12
|
+
"noImplicitReturns": true,
|
|
13
|
+
"noFallthroughCasesInSwitch": true,
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"isolatedModules": true,
|
|
16
|
+
"experimentalDecorators": true,
|
|
17
|
+
"importHelpers": true,
|
|
18
|
+
"target": "ES2022",
|
|
19
|
+
"module": "preserve"
|
|
20
|
+
},
|
|
21
|
+
"angularCompilerOptions": {
|
|
22
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
23
|
+
"strictInjectionParameters": true,
|
|
24
|
+
"strictInputAccessModifiers": true,
|
|
25
|
+
"typeCheckHostBindings": true,
|
|
26
|
+
"strictTemplates": true
|
|
27
|
+
},
|
|
28
|
+
"files": [],
|
|
29
|
+
"references": [
|
|
30
|
+
{
|
|
31
|
+
"path": "./projects/doohbot/tsconfig.lib.json"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"path": "./projects/doohbot/tsconfig.spec.json"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "./projects/doohbot-element/tsconfig.app.json"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "./projects/doohbot-element/tsconfig.spec.json"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|