otimus-library 0.2.48 → 0.2.50
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/esm2022/lib/components/oc-accordion/oc-accordion.component.mjs +48 -0
- package/esm2022/lib/components/oc-accordion-item/oc-accordion-item.component.mjs +35 -0
- package/esm2022/lib/components/oc-autocomplete/oc-autocomplete.component.mjs +275 -0
- package/esm2022/lib/components/oc-badge/oc-badge.component.mjs +30 -0
- package/esm2022/lib/components/oc-checkbox/oc-checkbox.component.mjs +133 -0
- package/esm2022/lib/components/oc-chip/oc-chip.component.mjs +45 -0
- package/esm2022/lib/components/oc-filter/oc-filter.component.mjs +39 -0
- package/esm2022/lib/components/oc-input/oc-input.component.mjs +97 -0
- package/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +29 -0
- package/esm2022/lib/components/oc-log/oc-log.component.mjs +22 -0
- package/esm2022/lib/components/oc-menu/oc-menu.component.mjs +81 -0
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +85 -0
- package/esm2022/lib/components/oc-modal-footer/oc-modal-footer.component.mjs +23 -0
- package/esm2022/lib/components/oc-not-found/oc-not-found.component.mjs +11 -0
- package/esm2022/lib/components/oc-pagination/oc-pagination.component.mjs +49 -0
- package/esm2022/lib/components/oc-profile/oc-profile.component.mjs +38 -0
- package/esm2022/lib/components/oc-step/oc-step.component.mjs +49 -0
- package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +90 -0
- package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +20 -0
- package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +42 -0
- package/esm2022/lib/components/oc-toast/oc-toast.component.mjs +17 -0
- package/esm2022/lib/components/oc-toggle/oc-toggle.component.mjs +34 -0
- package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +117 -0
- package/esm2022/lib/interfaces/oc-autocomplete.mjs +2 -0
- package/esm2022/lib/interfaces/oc-menu.mjs +2 -0
- package/esm2022/lib/interfaces/oc-style-theme.mjs +2 -0
- package/esm2022/lib/interfaces/oc-toast.mjs +2 -0
- package/esm2022/lib/otimus-library.component.mjs +19 -0
- package/esm2022/lib/otimus-library.service.mjs +14 -0
- package/esm2022/lib/services/internationalization.service.mjs +68 -0
- package/esm2022/lib/services/oc-toast.service.mjs +81 -0
- package/esm2022/lib/services/style-theme.service.mjs +21 -0
- package/esm2022/otimus-library.mjs +5 -0
- package/esm2022/public-api.mjs +30 -0
- package/fesm2022/otimus-library.mjs +1513 -0
- package/fesm2022/otimus-library.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/oc-accordion/oc-accordion.component.d.ts +18 -0
- package/lib/components/oc-accordion-item/oc-accordion-item.component.d.ts +12 -0
- package/lib/components/oc-autocomplete/oc-autocomplete.component.d.ts +68 -0
- package/lib/components/oc-badge/oc-badge.component.d.ts +11 -0
- package/lib/components/oc-checkbox/oc-checkbox.component.d.ts +35 -0
- package/lib/components/oc-chip/oc-chip.component.d.ts +14 -0
- package/lib/components/oc-filter/oc-filter.component.d.ts +17 -0
- package/lib/components/oc-input/oc-input.component.d.ts +31 -0
- package/lib/components/oc-key-value/oc-key-value.component.d.ts +14 -0
- package/lib/components/oc-log/oc-log.component.d.ts +7 -0
- package/lib/components/oc-menu/oc-menu.component.d.ts +20 -0
- package/lib/components/oc-modal/oc-modal.component.d.ts +30 -0
- package/lib/components/oc-modal-footer/oc-modal-footer.component.d.ts +8 -0
- package/lib/components/oc-not-found/oc-not-found.component.d.ts +5 -0
- package/lib/components/oc-pagination/oc-pagination.component.d.ts +14 -0
- package/lib/components/oc-profile/oc-profile.component.d.ts +12 -0
- package/lib/components/oc-step/oc-step.component.d.ts +22 -0
- package/lib/components/oc-stepper/oc-stepper.component.d.ts +24 -0
- package/lib/components/oc-tab/oc-tab.component.d.ts +8 -0
- package/lib/components/oc-tabs/oc-tabs.component.d.ts +18 -0
- package/lib/components/oc-toast/oc-toast.component.d.ts +8 -0
- package/lib/components/oc-toggle/oc-toggle.component.d.ts +12 -0
- package/lib/directives/oc-tooltip/oc-tooltip.directive.d.ts +20 -0
- package/lib/interfaces/oc-autocomplete.d.ts +5 -0
- package/lib/interfaces/oc-menu.d.ts +9 -0
- package/lib/interfaces/oc-style-theme.d.ts +2 -0
- package/lib/interfaces/oc-toast.d.ts +8 -0
- package/lib/otimus-library.component.d.ts +5 -0
- package/lib/otimus-library.service.d.ts +6 -0
- package/lib/services/internationalization.service.d.ts +17 -0
- package/lib/services/oc-toast.service.d.ts +14 -0
- package/lib/services/style-theme.service.d.ts +8 -0
- package/package.json +13 -4
- package/public-api.d.ts +26 -0
- package/ng-package.json +0 -12
- package/src/assets/images/loading.svg +0 -0
- package/src/assets/images/not-found-bg.jpg +0 -0
- package/src/lib/components/oc-accordion/oc-accordion.component.html +0 -3
- package/src/lib/components/oc-accordion/oc-accordion.component.scss +0 -4
- package/src/lib/components/oc-accordion/oc-accordion.component.ts +0 -44
- package/src/lib/components/oc-accordion-item/oc-accordion-item.component.html +0 -19
- package/src/lib/components/oc-accordion-item/oc-accordion-item.component.scss +0 -86
- package/src/lib/components/oc-accordion-item/oc-accordion-item.component.ts +0 -27
- package/src/lib/components/oc-accordion-item/styles/oc-accordion-item.shui-component.scss +0 -41
- package/src/lib/components/oc-autocomplete/oc-autocomplete.component.html +0 -66
- package/src/lib/components/oc-autocomplete/oc-autocomplete.component.scss +0 -157
- package/src/lib/components/oc-autocomplete/oc-autocomplete.component.ts +0 -277
- package/src/lib/components/oc-badge/oc-badge.component.html +0 -7
- package/src/lib/components/oc-badge/oc-badge.component.scss +0 -125
- package/src/lib/components/oc-badge/oc-badge.component.ts +0 -22
- package/src/lib/components/oc-checkbox/oc-checkbox.component.html +0 -30
- package/src/lib/components/oc-checkbox/oc-checkbox.component.scss +0 -103
- package/src/lib/components/oc-checkbox/oc-checkbox.component.ts +0 -132
- package/src/lib/components/oc-checkbox/styles/oc-checkbox.shui-component.scss +0 -21
- package/src/lib/components/oc-chip/oc-chip.component.html +0 -20
- package/src/lib/components/oc-chip/oc-chip.component.scss +0 -102
- package/src/lib/components/oc-chip/oc-chip.component.ts +0 -32
- package/src/lib/components/oc-filter/oc-filter.component.html +0 -22
- package/src/lib/components/oc-filter/oc-filter.component.scss +0 -78
- package/src/lib/components/oc-filter/oc-filter.component.spec.ts +0 -23
- package/src/lib/components/oc-filter/oc-filter.component.ts +0 -30
- package/src/lib/components/oc-input/oc-input.component.html +0 -21
- package/src/lib/components/oc-input/oc-input.component.scss +0 -3
- package/src/lib/components/oc-input/oc-input.component.ts +0 -100
- package/src/lib/components/oc-key-value/oc-key-value.component.html +0 -12
- package/src/lib/components/oc-key-value/oc-key-value.component.scss +0 -26
- package/src/lib/components/oc-key-value/oc-key-value.component.ts +0 -23
- package/src/lib/components/oc-key-value/styles/oc-key-value.shui-component.scss +0 -26
- package/src/lib/components/oc-log/oc-log.component.html +0 -18
- package/src/lib/components/oc-log/oc-log.component.scss +0 -61
- package/src/lib/components/oc-log/oc-log.component.ts +0 -15
- package/src/lib/components/oc-menu/oc-menu.component.html +0 -31
- package/src/lib/components/oc-menu/oc-menu.component.scss +0 -101
- package/src/lib/components/oc-menu/oc-menu.component.ts +0 -84
- package/src/lib/components/oc-modal/oc-modal.component.html +0 -54
- package/src/lib/components/oc-modal/oc-modal.component.scss +0 -204
- package/src/lib/components/oc-modal/oc-modal.component.ts +0 -82
- package/src/lib/components/oc-modal/styles/oc-modal.shui-component.scss +0 -3
- package/src/lib/components/oc-modal-footer/oc-modal-footer.component.html +0 -11
- package/src/lib/components/oc-modal-footer/oc-modal-footer.component.scss +0 -27
- package/src/lib/components/oc-modal-footer/oc-modal-footer.component.ts +0 -15
- package/src/lib/components/oc-not-found/oc-not-found.component.html +0 -14
- package/src/lib/components/oc-not-found/oc-not-found.component.scss +0 -153
- package/src/lib/components/oc-not-found/oc-not-found.component.spec.ts +0 -23
- package/src/lib/components/oc-not-found/oc-not-found.component.ts +0 -12
- package/src/lib/components/oc-pagination/oc-pagination.component.html +0 -32
- package/src/lib/components/oc-pagination/oc-pagination.component.scss +0 -80
- package/src/lib/components/oc-pagination/oc-pagination.component.ts +0 -46
- package/src/lib/components/oc-profile/oc-profile.component.html +0 -17
- package/src/lib/components/oc-profile/oc-profile.component.scss +0 -80
- package/src/lib/components/oc-profile/oc-profile.component.ts +0 -38
- package/src/lib/components/oc-step/oc-step.component.html +0 -32
- package/src/lib/components/oc-step/oc-step.component.scss +0 -106
- package/src/lib/components/oc-step/oc-step.component.ts +0 -39
- package/src/lib/components/oc-step/styles/oc-step.shui-component.scss +0 -52
- package/src/lib/components/oc-stepper/oc-stepper.component.html +0 -3
- package/src/lib/components/oc-stepper/oc-stepper.component.scss +0 -9
- package/src/lib/components/oc-stepper/oc-stepper.component.ts +0 -86
- package/src/lib/components/oc-tab/oc-tab.component.html +0 -3
- package/src/lib/components/oc-tab/oc-tab.component.scss +0 -0
- package/src/lib/components/oc-tab/oc-tab.component.ts +0 -15
- package/src/lib/components/oc-table/oc-table.component.html +0 -62
- package/src/lib/components/oc-table/oc-table.component.scss +0 -2
- package/src/lib/components/oc-table/oc-table.component.ts +0 -51
- package/src/lib/components/oc-tabs/oc-tabs.component.html +0 -13
- package/src/lib/components/oc-tabs/oc-tabs.component.scss +0 -47
- package/src/lib/components/oc-tabs/oc-tabs.component.ts +0 -46
- package/src/lib/components/oc-tabs/styles/oc-tabs.shui-component.scss +0 -25
- package/src/lib/components/oc-toast/oc-toast.component.html +0 -46
- package/src/lib/components/oc-toast/oc-toast.component.scss +0 -133
- package/src/lib/components/oc-toast/oc-toast.component.ts +0 -15
- package/src/lib/components/oc-toggle/oc-toggle.component.html +0 -4
- package/src/lib/components/oc-toggle/oc-toggle.component.scss +0 -73
- package/src/lib/components/oc-toggle/oc-toggle.component.spec.ts +0 -23
- package/src/lib/components/oc-toggle/oc-toggle.component.ts +0 -32
- package/src/lib/directives/oc-tooltip/oc-tooltip.directive.ts +0 -108
- package/src/lib/interfaces/internal/languages.ts +0 -16
- package/src/lib/interfaces/oc-autocomplete.ts +0 -6
- package/src/lib/interfaces/oc-menu.ts +0 -10
- package/src/lib/interfaces/oc-style-theme.ts +0 -3
- package/src/lib/interfaces/oc-table.ts +0 -12
- package/src/lib/interfaces/oc-toast.ts +0 -8
- package/src/lib/otimus-library.component.ts +0 -16
- package/src/lib/otimus-library.service.ts +0 -9
- package/src/lib/services/internationalization.service.ts +0 -73
- package/src/lib/services/oc-toast.service.ts +0 -107
- package/src/lib/services/style-theme.service.ts +0 -19
- package/src/public-api.ts +0 -30
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -14
- /package/{src/assets → assets}/fonts/siemens/SH-Bree-Headline-Oblique.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SH-Bree-Headline-Oblique.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SH-Bree-Headline-Regular.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SH-Bree-Headline-Regular.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Black.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Black.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-BlackItalic.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-BlackItalic.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Bold.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Bold.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-BoldItalic.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-BoldItalic.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Italic.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Italic.woff2 +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Roman.woff +0 -0
- /package/{src/assets → assets}/fonts/siemens/SiemensSans-Roman.woff2 +0 -0
- /package/{src/styles → styles}/colors.scss +0 -0
- /package/{src/styles → styles}/components/buttons/buttons.scss +0 -0
- /package/{src/styles → styles}/components/buttons/buttons.shui.scss +0 -0
- /package/{src/styles → styles}/components/index.scss +0 -0
- /package/{src/styles → styles}/components/inputs/inputs.scss +0 -0
- /package/{src/styles → styles}/components/inputs/inputs.shui.scss +0 -0
- /package/{src/styles → styles}/components/table/table.scss +0 -0
- /package/{src/styles → styles}/components/table/table.shui.scss +0 -0
- /package/{src/styles → styles}/components/tooltip.scss +0 -0
- /package/{src/styles → styles}/grid.scss +0 -0
- /package/{src/styles → styles}/patterns/shui/colors.shui.scss +0 -0
- /package/{src/styles → styles}/patterns/shui/fonts.shui.scss +0 -0
- /package/{src/styles → styles}/patterns/shui/index.shui.scss +0 -0
- /package/{src/styles → styles}/patterns/shui/variables.shui.scss +0 -0
- /package/{src/styles → styles}/states.scss +0 -0
- /package/{src/styles → styles}/styles.scss +0 -0
- /package/{src/styles → styles}/variables.scss +0 -0
package/src/public-api.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of otimus-library
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export * from './lib/otimus-library.service'
|
|
6
|
-
export * from './lib/otimus-library.component'
|
|
7
|
-
export * from './lib/services/oc-toast.service'
|
|
8
|
-
export * from './lib/components/oc-badge/oc-badge.component'
|
|
9
|
-
export * from './lib/components/oc-filter/oc-filter.component'
|
|
10
|
-
export * from './lib/directives/oc-tooltip/oc-tooltip.directive'
|
|
11
|
-
export * from './lib/components/oc-input/oc-input.component'
|
|
12
|
-
export * from './lib/components/oc-modal/oc-modal.component'
|
|
13
|
-
export * from './lib/components/oc-key-value/oc-key-value.component'
|
|
14
|
-
export * from './lib/components/oc-chip/oc-chip.component'
|
|
15
|
-
export * from './lib/components/oc-modal-footer/oc-modal-footer.component'
|
|
16
|
-
export * from './lib/components/oc-autocomplete/oc-autocomplete.component'
|
|
17
|
-
export * from './lib/components/oc-profile/oc-profile.component'
|
|
18
|
-
export * from './lib/components/oc-log/oc-log.component'
|
|
19
|
-
export * from './lib/components/oc-pagination/oc-pagination.component'
|
|
20
|
-
export * from './lib/components/oc-not-found/oc-not-found.component'
|
|
21
|
-
export * from './lib/components/oc-menu/oc-menu.component'
|
|
22
|
-
export * from './lib/components/oc-toast/oc-toast.component'
|
|
23
|
-
export * from './lib/components/oc-checkbox/oc-checkbox.component'
|
|
24
|
-
export * from './lib/components/oc-toggle/oc-toggle.component'
|
|
25
|
-
export * from './lib/components/oc-stepper/oc-stepper.component'
|
|
26
|
-
export * from './lib/components/oc-step/oc-step.component'
|
|
27
|
-
export * from './lib/components/oc-tabs/oc-tabs.component'
|
|
28
|
-
export * from './lib/components/oc-tab/oc-tab.component'
|
|
29
|
-
export * from './lib/components/oc-accordion/oc-accordion.component'
|
|
30
|
-
export * from './lib/components/oc-accordion-item/oc-accordion-item.component'
|
package/tsconfig.lib.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"extends": "../../tsconfig.json",
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "../../out-tsc/lib",
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"declarationMap": true,
|
|
8
|
-
"inlineSources": true,
|
|
9
|
-
"types": []
|
|
10
|
-
},
|
|
11
|
-
"exclude": [
|
|
12
|
-
"**/*.spec.ts"
|
|
13
|
-
]
|
|
14
|
-
}
|
package/tsconfig.lib.prod.json
DELETED
package/tsconfig.spec.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"extends": "../../tsconfig.json",
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "../../out-tsc/spec",
|
|
6
|
-
"types": [
|
|
7
|
-
"jasmine"
|
|
8
|
-
]
|
|
9
|
-
},
|
|
10
|
-
"include": [
|
|
11
|
-
"**/*.spec.ts",
|
|
12
|
-
"**/*.d.ts"
|
|
13
|
-
]
|
|
14
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|