@univerjs/core 0.1.0-alpha.1
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/LICENSE +21 -0
- package/README.md +16 -0
- package/lib/cjs/index.js +15323 -0
- package/lib/esm/index.js +14601 -0
- package/lib/types/basics/index.d.ts +6 -0
- package/lib/types/basics/index.d.ts.map +1 -0
- package/lib/types/basics/registry.d.ts +27 -0
- package/lib/types/basics/registry.d.ts.map +1 -0
- package/lib/types/basics/univer-doc.d.ts +20 -0
- package/lib/types/basics/univer-doc.d.ts.map +1 -0
- package/lib/types/basics/univer-sheet.d.ts +31 -0
- package/lib/types/basics/univer-sheet.d.ts.map +1 -0
- package/lib/types/basics/univer-slide.d.ts +29 -0
- package/lib/types/basics/univer-slide.d.ts.map +1 -0
- package/lib/types/basics/univer.d.ts +41 -0
- package/lib/types/basics/univer.d.ts.map +1 -0
- package/lib/types/common/array.d.ts +15 -0
- package/lib/types/common/array.d.ts.map +1 -0
- package/lib/types/common/color/color-builder.d.ts +1 -0
- package/lib/types/common/color/color-builder.d.ts.map +1 -0
- package/lib/types/common/const.d.ts +4 -0
- package/lib/types/common/const.d.ts.map +1 -0
- package/lib/types/common/interceptor.d.ts +21 -0
- package/lib/types/common/interceptor.d.ts.map +1 -0
- package/lib/types/common/memory-cursor.d.ts +6 -0
- package/lib/types/common/memory-cursor.d.ts.map +1 -0
- package/lib/types/common/sequence.d.ts +18 -0
- package/lib/types/common/sequence.d.ts.map +1 -0
- package/lib/types/common/type-utils.d.ts +5 -0
- package/lib/types/common/type-utils.d.ts.map +1 -0
- package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts +2 -0
- package/lib/types/docs/data-model/__tests__/apply-utils.spec.d.ts.map +1 -0
- package/lib/types/docs/data-model/apply-utils/common.d.ts +30 -0
- package/lib/types/docs/data-model/apply-utils/common.d.ts.map +1 -0
- package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts +3 -0
- package/lib/types/docs/data-model/apply-utils/delete-apply.d.ts.map +1 -0
- package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts +3 -0
- package/lib/types/docs/data-model/apply-utils/insert-apply.d.ts.map +1 -0
- package/lib/types/docs/data-model/apply-utils/update-apply.d.ts +5 -0
- package/lib/types/docs/data-model/apply-utils/update-apply.d.ts.map +1 -0
- package/lib/types/docs/data-model/document-data-model.d.ts +57 -0
- package/lib/types/docs/data-model/document-data-model.d.ts.map +1 -0
- package/lib/types/docs/data-model/index.d.ts +3 -0
- package/lib/types/docs/data-model/index.d.ts.map +1 -0
- package/lib/types/docs/data-model/mutation-types.d.ts +33 -0
- package/lib/types/docs/data-model/mutation-types.d.ts.map +1 -0
- package/lib/types/docs/data-model/types.d.ts +27 -0
- package/lib/types/docs/data-model/types.d.ts.map +1 -0
- package/lib/types/docs/index.d.ts +2 -0
- package/lib/types/docs/index.d.ts.map +1 -0
- package/lib/types/index.d.ts +42 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/observer/index.d.ts +3 -0
- package/lib/types/observer/index.d.ts.map +1 -0
- package/lib/types/observer/observable-hooks.d.ts +19 -0
- package/lib/types/observer/observable-hooks.d.ts.map +1 -0
- package/lib/types/observer/observable.d.ts +170 -0
- package/lib/types/observer/observable.d.ts.map +1 -0
- package/lib/types/plugin/plugin.d.ts +49 -0
- package/lib/types/plugin/plugin.d.ts.map +1 -0
- package/lib/types/services/auth/auth.service.d.ts +3 -0
- package/lib/types/services/auth/auth.service.d.ts.map +1 -0
- package/lib/types/services/command/command.service.d.ts +117 -0
- package/lib/types/services/command/command.service.d.ts.map +1 -0
- package/lib/types/services/command/command.service.spec.d.ts +2 -0
- package/lib/types/services/command/command.service.spec.d.ts.map +1 -0
- package/lib/types/services/config/config.service.d.ts +18 -0
- package/lib/types/services/config/config.service.d.ts.map +1 -0
- package/lib/types/services/context/context.d.ts +8 -0
- package/lib/types/services/context/context.d.ts.map +1 -0
- package/lib/types/services/context/context.service.d.ts +17 -0
- package/lib/types/services/context/context.service.d.ts.map +1 -0
- package/lib/types/services/error/error.service.d.ts +11 -0
- package/lib/types/services/error/error.service.d.ts.map +1 -0
- package/lib/types/services/floating-object/floating-object-interfaces.d.ts +20 -0
- package/lib/types/services/floating-object/floating-object-interfaces.d.ts.map +1 -0
- package/lib/types/services/floating-object/floating-object-manager.service.d.ts +82 -0
- package/lib/types/services/floating-object/floating-object-manager.service.d.ts.map +1 -0
- package/lib/types/services/instance/instance.service.d.ts +113 -0
- package/lib/types/services/instance/instance.service.d.ts.map +1 -0
- package/lib/types/services/lifecycle/lifecycle.d.ts +36 -0
- package/lib/types/services/lifecycle/lifecycle.d.ts.map +1 -0
- package/lib/types/services/lifecycle/lifecycle.service.d.ts +23 -0
- package/lib/types/services/lifecycle/lifecycle.service.d.ts.map +1 -0
- package/lib/types/services/local-storage/local-storage.service.d.ts +12 -0
- package/lib/types/services/local-storage/local-storage.service.d.ts.map +1 -0
- package/lib/types/services/locale/locale.service.d.ts +26 -0
- package/lib/types/services/locale/locale.service.d.ts.map +1 -0
- package/lib/types/services/log/log.service.d.ts +18 -0
- package/lib/types/services/log/log.service.d.ts.map +1 -0
- package/lib/types/services/permission/index.d.ts +4 -0
- package/lib/types/services/permission/index.d.ts.map +1 -0
- package/lib/types/services/permission/permission-point.d.ts +9 -0
- package/lib/types/services/permission/permission-point.d.ts.map +1 -0
- package/lib/types/services/permission/permission.service.d.ts +31 -0
- package/lib/types/services/permission/permission.service.d.ts.map +1 -0
- package/lib/types/services/permission/univer.permission.service.d.ts +12 -0
- package/lib/types/services/permission/univer.permission.service.d.ts.map +1 -0
- package/lib/types/services/resource-manager/resource-manager.service.d.ts +25 -0
- package/lib/types/services/resource-manager/resource-manager.service.d.ts.map +1 -0
- package/lib/types/services/resource-manager/type.d.ts +23 -0
- package/lib/types/services/resource-manager/type.d.ts.map +1 -0
- package/lib/types/services/theme/theme.service.d.ts +14 -0
- package/lib/types/services/theme/theme.service.d.ts.map +1 -0
- package/lib/types/services/undoredo/undoredo.service.d.ts +79 -0
- package/lib/types/services/undoredo/undoredo.service.d.ts.map +1 -0
- package/lib/types/shared/__test__/object-matrix.spec.d.ts +2 -0
- package/lib/types/shared/__test__/object-matrix.spec.d.ts.map +1 -0
- package/lib/types/shared/__test__/ref-alias.spec.d.ts +2 -0
- package/lib/types/shared/__test__/ref-alias.spec.d.ts.map +1 -0
- package/lib/types/shared/array-search.d.ts +4 -0
- package/lib/types/shared/array-search.d.ts.map +1 -0
- package/lib/types/shared/color/color-builder.d.ts +21 -0
- package/lib/types/shared/color/color-builder.d.ts.map +1 -0
- package/lib/types/shared/color/color.d.ts +65 -0
- package/lib/types/shared/color/color.d.ts.map +1 -0
- package/lib/types/shared/color-builder.d.ts +1 -0
- package/lib/types/shared/color-builder.d.ts.map +1 -0
- package/lib/types/shared/command-enum.d.ts +6 -0
- package/lib/types/shared/command-enum.d.ts.map +1 -0
- package/lib/types/shared/common.d.ts +29 -0
- package/lib/types/shared/common.d.ts.map +1 -0
- package/lib/types/shared/compare.d.ts +8 -0
- package/lib/types/shared/compare.d.ts.map +1 -0
- package/lib/types/shared/date-time.d.ts +6 -0
- package/lib/types/shared/date-time.d.ts.map +1 -0
- package/lib/types/shared/doc-tool.d.ts +8 -0
- package/lib/types/shared/doc-tool.d.ts.map +1 -0
- package/lib/types/shared/drop-cell.d.ts +1 -0
- package/lib/types/shared/drop-cell.d.ts.map +1 -0
- package/lib/types/shared/excel-date-time.d.ts +6 -0
- package/lib/types/shared/excel-date-time.d.ts.map +1 -0
- package/lib/types/shared/gen-name.d.ts +9 -0
- package/lib/types/shared/gen-name.d.ts.map +1 -0
- package/lib/types/shared/generate.d.ts +7 -0
- package/lib/types/shared/generate.d.ts.map +1 -0
- package/lib/types/shared/group-model.d.ts +4 -0
- package/lib/types/shared/group-model.d.ts.map +1 -0
- package/lib/types/shared/hash-algorithm.d.ts +2 -0
- package/lib/types/shared/hash-algorithm.d.ts.map +1 -0
- package/lib/types/shared/index.d.ts +35 -0
- package/lib/types/shared/index.d.ts.map +1 -0
- package/lib/types/shared/io-http.d.ts +84 -0
- package/lib/types/shared/io-http.d.ts.map +1 -0
- package/lib/types/shared/io-socket.d.ts +48 -0
- package/lib/types/shared/io-socket.d.ts.map +1 -0
- package/lib/types/shared/lifecycle.d.ts +28 -0
- package/lib/types/shared/lifecycle.d.ts.map +1 -0
- package/lib/types/shared/locale.d.ts +10 -0
- package/lib/types/shared/locale.d.ts.map +1 -0
- package/lib/types/shared/logger.d.ts +12 -0
- package/lib/types/shared/logger.d.ts.map +1 -0
- package/lib/types/shared/lru/index.d.ts +3 -0
- package/lib/types/shared/lru/index.d.ts.map +1 -0
- package/lib/types/shared/lru/lru-helper.d.ts +8 -0
- package/lib/types/shared/lru/lru-helper.d.ts.map +1 -0
- package/lib/types/shared/lru/lru-map.d.ts +66 -0
- package/lib/types/shared/lru/lru-map.d.ts.map +1 -0
- package/lib/types/shared/migrate/border.d.ts +3 -0
- package/lib/types/shared/migrate/border.d.ts.map +1 -0
- package/lib/types/shared/migrate/index.d.ts +2 -0
- package/lib/types/shared/migrate/index.d.ts.map +1 -0
- package/lib/types/shared/migrate/migrate.d.ts +3 -0
- package/lib/types/shared/migrate/migrate.d.ts.map +1 -0
- package/lib/types/shared/object-array.d.ts +96 -0
- package/lib/types/shared/object-array.d.ts.map +1 -0
- package/lib/types/shared/object-matrix.d.ts +67 -0
- package/lib/types/shared/object-matrix.d.ts.map +1 -0
- package/lib/types/shared/permission/index.d.ts +13 -0
- package/lib/types/shared/permission/index.d.ts.map +1 -0
- package/lib/types/shared/props-from.d.ts +6 -0
- package/lib/types/shared/props-from.d.ts.map +1 -0
- package/lib/types/shared/random.d.ts +7 -0
- package/lib/types/shared/random.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/border-tree.d.ts +30 -0
- package/lib/types/shared/rect-tree/border-tree.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/es-rect-tree.d.ts +9 -0
- package/lib/types/shared/rect-tree/es-rect-tree.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/merge-tree.d.ts +1 -0
- package/lib/types/shared/rect-tree/merge-tree.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/quick-select.d.ts +3 -0
- package/lib/types/shared/rect-tree/quick-select.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/rect-tree.d.ts +60 -0
- package/lib/types/shared/rect-tree/rect-tree.d.ts.map +1 -0
- package/lib/types/shared/rect-tree/styles-tree.d.ts +1 -0
- package/lib/types/shared/rect-tree/styles-tree.d.ts.map +1 -0
- package/lib/types/shared/rectangle.d.ts +20 -0
- package/lib/types/shared/rectangle.d.ts.map +1 -0
- package/lib/types/shared/ref-alias.d.ts +26 -0
- package/lib/types/shared/ref-alias.d.ts.map +1 -0
- package/lib/types/shared/row-col-iter.d.ts +5 -0
- package/lib/types/shared/row-col-iter.d.ts.map +1 -0
- package/lib/types/shared/sequence.d.ts +27 -0
- package/lib/types/shared/sequence.d.ts.map +1 -0
- package/lib/types/shared/serialize/index.d.ts +5 -0
- package/lib/types/shared/serialize/index.d.ts.map +1 -0
- package/lib/types/shared/serialize/sequence.d.ts +4 -0
- package/lib/types/shared/serialize/sequence.d.ts.map +1 -0
- package/lib/types/shared/serialize/serialize-manager.d.ts +17 -0
- package/lib/types/shared/serialize/serialize-manager.d.ts.map +1 -0
- package/lib/types/shared/serialize/serialize.d.ts +8 -0
- package/lib/types/shared/serialize/serialize.d.ts.map +1 -0
- package/lib/types/shared/serialize/serializer.d.ts +14 -0
- package/lib/types/shared/serialize/serializer.d.ts.map +1 -0
- package/lib/types/shared/sort-rules.d.ts +10 -0
- package/lib/types/shared/sort-rules.d.ts.map +1 -0
- package/lib/types/shared/tools.d.ts +103 -0
- package/lib/types/shared/tools.d.ts.map +1 -0
- package/lib/types/shared/tuples.d.ts +12 -0
- package/lib/types/shared/tuples.d.ts.map +1 -0
- package/lib/types/shared/type-store.d.ts +10 -0
- package/lib/types/shared/type-store.d.ts.map +1 -0
- package/lib/types/shared/types.d.ts +30 -0
- package/lib/types/shared/types.d.ts.map +1 -0
- package/lib/types/sheets/__tests__/create-core-test-bed.d.ts +16 -0
- package/lib/types/sheets/__tests__/create-core-test-bed.d.ts.map +1 -0
- package/lib/types/sheets/__tests__/styles.spec.d.ts +2 -0
- package/lib/types/sheets/__tests__/styles.spec.d.ts.map +1 -0
- package/lib/types/sheets/column-manager.d.ts +51 -0
- package/lib/types/sheets/column-manager.d.ts.map +1 -0
- package/lib/types/sheets/range.d.ts +312 -0
- package/lib/types/sheets/range.d.ts.map +1 -0
- package/lib/types/sheets/reference.d.ts +46 -0
- package/lib/types/sheets/reference.d.ts.map +1 -0
- package/lib/types/sheets/row-manager.d.ts +41 -0
- package/lib/types/sheets/row-manager.d.ts.map +1 -0
- package/lib/types/sheets/styles.d.ts +23 -0
- package/lib/types/sheets/styles.d.ts.map +1 -0
- package/lib/types/sheets/view-model.d.ts +36 -0
- package/lib/types/sheets/view-model.d.ts.map +1 -0
- package/lib/types/sheets/workbook.d.ts +130 -0
- package/lib/types/sheets/workbook.d.ts.map +1 -0
- package/lib/types/sheets/worksheet.d.ts +180 -0
- package/lib/types/sheets/worksheet.d.ts.map +1 -0
- package/lib/types/slides/domain/index.d.ts +2 -0
- package/lib/types/slides/domain/index.d.ts.map +1 -0
- package/lib/types/slides/domain/slide-model.d.ts +20 -0
- package/lib/types/slides/domain/slide-model.d.ts.map +1 -0
- package/lib/types/types/const/action-names.d.ts +51 -0
- package/lib/types/types/const/action-names.d.ts.map +1 -0
- package/lib/types/types/const/const.d.ts +153 -0
- package/lib/types/types/const/const.d.ts.map +1 -0
- package/lib/types/types/const/doc-action-names.d.ts +7 -0
- package/lib/types/types/const/doc-action-names.d.ts.map +1 -0
- package/lib/types/types/const/extension-names.d.ts +8 -0
- package/lib/types/types/const/extension-names.d.ts.map +1 -0
- package/lib/types/types/const/index.d.ts +5 -0
- package/lib/types/types/const/index.d.ts.map +1 -0
- package/lib/types/types/const/theme-color-map.d.ts +8 -0
- package/lib/types/types/const/theme-color-map.d.ts.map +1 -0
- package/lib/types/types/enum/auto-fill-series.d.ts +19 -0
- package/lib/types/types/enum/auto-fill-series.d.ts.map +1 -0
- package/lib/types/types/enum/border-style-types.d.ts +32 -0
- package/lib/types/types/enum/border-style-types.d.ts.map +1 -0
- package/lib/types/types/enum/color-type.d.ts +10 -0
- package/lib/types/types/enum/color-type.d.ts.map +1 -0
- package/lib/types/types/enum/common-hide-types.d.ts +8 -0
- package/lib/types/types/enum/common-hide-types.d.ts.map +1 -0
- package/lib/types/types/enum/condition-type.d.ts +38 -0
- package/lib/types/types/enum/condition-type.d.ts.map +1 -0
- package/lib/types/types/enum/copy-paste-type.d.ts +17 -0
- package/lib/types/types/enum/copy-paste-type.d.ts.map +1 -0
- package/lib/types/types/enum/developer-metadata-visibility.d.ts +8 -0
- package/lib/types/types/enum/developer-metadata-visibility.d.ts.map +1 -0
- package/lib/types/types/enum/dimension.d.ts +16 -0
- package/lib/types/types/enum/dimension.d.ts.map +1 -0
- package/lib/types/types/enum/direction.d.ts +8 -0
- package/lib/types/types/enum/direction.d.ts.map +1 -0
- package/lib/types/types/enum/format-type.d.ts +15 -0
- package/lib/types/types/enum/format-type.d.ts.map +1 -0
- package/lib/types/types/enum/group-control-toggle-position.d.ts +8 -0
- package/lib/types/types/enum/group-control-toggle-position.d.ts.map +1 -0
- package/lib/types/types/enum/index.d.ts +19 -0
- package/lib/types/types/enum/index.d.ts.map +1 -0
- package/lib/types/types/enum/interpolation-point-type.d.ts +12 -0
- package/lib/types/types/enum/interpolation-point-type.d.ts.map +1 -0
- package/lib/types/types/enum/locale-type.d.ts +11 -0
- package/lib/types/types/enum/locale-type.d.ts.map +1 -0
- package/lib/types/types/enum/place-holder-type.d.ts +20 -0
- package/lib/types/types/enum/place-holder-type.d.ts.map +1 -0
- package/lib/types/types/enum/protection-type.d.ts +8 -0
- package/lib/types/types/enum/protection-type.d.ts.map +1 -0
- package/lib/types/types/enum/relative-date.d.ts +13 -0
- package/lib/types/types/enum/relative-date.d.ts.map +1 -0
- package/lib/types/types/enum/shape-type.d.ts +146 -0
- package/lib/types/types/enum/shape-type.d.ts.map +1 -0
- package/lib/types/types/enum/sheet-types.d.ts +9 -0
- package/lib/types/types/enum/sheet-types.d.ts.map +1 -0
- package/lib/types/types/enum/text-style.d.ts +119 -0
- package/lib/types/types/enum/text-style.d.ts.map +1 -0
- package/lib/types/types/enum/theme-color-type.d.ts +72 -0
- package/lib/types/types/enum/theme-color-type.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-cell-data.d.ts +33 -0
- package/lib/types/types/interfaces/i-cell-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-column-data.d.ts +15 -0
- package/lib/types/types/interfaces/i-column-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-document-data.d.ts +666 -0
- package/lib/types/types/interfaces/i-document-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-extra-model-data.d.ts +19 -0
- package/lib/types/types/interfaces/i-extra-model-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-freeze.d.ts +11 -0
- package/lib/types/types/interfaces/i-freeze.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-image-properties.d.ts +23 -0
- package/lib/types/types/interfaces/i-image-properties.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-placeholder.d.ts +7 -0
- package/lib/types/types/interfaces/i-placeholder.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-range.d.ts +161 -0
- package/lib/types/types/interfaces/i-range.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-row-data.d.ts +23 -0
- package/lib/types/types/interfaces/i-row-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-selection-data.d.ts +43 -0
- package/lib/types/types/interfaces/i-selection-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-service-data.d.ts +6 -0
- package/lib/types/types/interfaces/i-service-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-shape-properties.d.ts +16 -0
- package/lib/types/types/interfaces/i-shape-properties.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-slide-data.d.ts +149 -0
- package/lib/types/types/interfaces/i-slide-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-style-data.d.ts +150 -0
- package/lib/types/types/interfaces/i-style-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-univer-data.d.ts +23 -0
- package/lib/types/types/interfaces/i-univer-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-workbook-data.d.ts +30 -0
- package/lib/types/types/interfaces/i-workbook-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-worksheet-data.d.ts +62 -0
- package/lib/types/types/interfaces/i-worksheet-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/i-worksheet-order-data.d.ts +6 -0
- package/lib/types/types/interfaces/i-worksheet-order-data.d.ts.map +1 -0
- package/lib/types/types/interfaces/index.d.ts +18 -0
- package/lib/types/types/interfaces/index.d.ts.map +1 -0
- package/package.json +59 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"border-style-types.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/border-style-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,gBAAgB;IACxB,IAAI,IAAA;IACJ,IAAI,IAAA;IACJ,IAAI,IAAA;IACJ,MAAM,IAAA;IACN,MAAM,IAAA;IACN,QAAQ,IAAA;IACR,YAAY,IAAA;IACZ,MAAM,IAAA;IACN,MAAM,IAAA;IACN,aAAa,IAAA;IACb,eAAe,KAAA;IACf,mBAAmB,KAAA;IACnB,cAAc,KAAA;IACd,KAAK,KAAA;CACR;AAED,oBAAY,UAAU;IAClB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,QAAQ,aAAa;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"color-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/color-type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,SAAS;IACjB,WAAW,IAAA;IACX,GAAG,IAAA;IACH,GAAG,IAAA;IACH,KAAK,IAAA;CACR"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common-hide-types.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/common-hide-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,eAAe;IACvB,EAAE,IAAA;IACF,GAAG,IAAA;CACN"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The type of condition.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum ConditionType {
|
|
5
|
+
CONDITION_TYPE_UNSPECIFIED = 0,// The default value, do not use.
|
|
6
|
+
NUMNUMBER_BETWEENR_GREATER = 1,// The cell's value must be greater than the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue
|
|
7
|
+
NUMBER_GREATER_THAN_EQ = 2,// The cell's value must be greater than or equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue .
|
|
8
|
+
NUMBER_LESS = 3,// The cell's value must be less than the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue
|
|
9
|
+
NUMBER_LESS_THAN_EQ = 4,// The cell's value must be less than or equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue .
|
|
10
|
+
NUMBER_EQ = 5,// The cell's value must be equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.
|
|
11
|
+
NUMBER_NOT_EQ = 6,// The cell's value must be not equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.
|
|
12
|
+
NUMBER_BETWEEN = 7,// The cell's value must be between the two condition values. Supported by data validation, conditional formatting and filters. Requires exactly two ConditionValues .
|
|
13
|
+
NUMBER_NOT_BETWEEN = 8,// The cell's value must not be between the two condition values. Supported by data validation, conditional formatting and filters. Requires exactly two ConditionValues .
|
|
14
|
+
TEXT_CONTAINS = 9,// The cell's value must contain the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue .
|
|
15
|
+
TEXT_NOT_CONTAINS = 10,// The cell's value must not contain the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue
|
|
16
|
+
TEXT_STARTS_WITH = 11,// The cell's value must start with the condition's value. Supported by conditional formatting and filters. Requires a single ConditionValue .
|
|
17
|
+
TEXT_ENDS_WITH = 12,// The cell's value must end with the condition's value. Supported by conditional formatting and filters. Requires a single ConditionValue .
|
|
18
|
+
TEXT_EQ = 13,// The cell's value must be exactly the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.
|
|
19
|
+
TEXT_IS_EMAIL = 14,// The cell's value must be a valid email address. Supported by data validation. Requires no ConditionValues .
|
|
20
|
+
TEXT_IS_URL = 15,// The cell's value must be a valid URL. Supported by data validation. Requires no ConditionValues .
|
|
21
|
+
DATE_EQ = 16,// The cell's value must be the same date as the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.
|
|
22
|
+
DATE_BEFORE = 17,// The cell's value must be before the date of the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue that may be a relative date .
|
|
23
|
+
DATE_AFTER = 18,// The cell's value must be after the date of the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue that may be a relative date .
|
|
24
|
+
DATE_ON_OR_BEFORE = 19,// The cell's value must be on or before the date of the condition's value. Supported by data validation. Requires a single ConditionValue that may be a relative date .
|
|
25
|
+
DATE_ON_OR_AFTER = 20,// The cell's value must be on or after the date of the condition's value. Supported by data validation. Requires a single ConditionValue that may be a relative date .
|
|
26
|
+
DATE_BETWEEN = 21,// The cell's value must be between the dates of the two condition values. Supported by data validation. Requires exactly two ConditionValues .
|
|
27
|
+
DATE_NOT_BETWEEN = 22,// The cell's value must be outside the dates of the two condition values. Supported by data validation. Requires exactly two ConditionValues .
|
|
28
|
+
DATE_IS_VALID = 23,// The cell's value must be a date. Supported by data validation. Requires no ConditionValues .
|
|
29
|
+
ONE_OF_RANGE = 24,// The cell's value must be listed in the grid in condition value's range. Supported by data validation. Requires a single ConditionValue , and the value must be a valid range in A1 notation.
|
|
30
|
+
ONE_OF_LIST = 25,// The cell's value must be in the list of condition values. Supported by data validation. Supports any number of condition values , one per item in the list. Formulas are not supported in the values.
|
|
31
|
+
BLANK = 26,// The cell's value must be empty. Supported by conditional formatting and filters. Requires no ConditionValues .
|
|
32
|
+
NOT_BLANK = 27,// The cell's value must not be empty. Supported by conditional formatting and filters. Requires no ConditionValues .
|
|
33
|
+
CUSTOM_FORMULA = 28,// The condition's formula must evaluate to true. Supported by data validation, conditional formatting and filters. Not supported by data source sheet filters. Requires a single ConditionValue .
|
|
34
|
+
BOOLEAN = 29,// The cell's value must be TRUE/FALSE or in the list of condition values. Supported by data validation. Renders as a cell checkbox. Supports zero, one or two ConditionValues . No values indicates the cell must be TRUE or FALSE, where TRUE renders as checked and FALSE renders as unchecked. One value indicates the cell will render as checked when it contains that value and unchecked when it is blank. Two values indicate that the cell will render as checked when it contains the first value and unchecked when it contains the second value. For example, ["Yes","No"] indicates that the cell will render a checked box when it has the value "Yes" and an unchecked box when it has the value "No".
|
|
35
|
+
TEXT_NOT_EQ = 30,// The cell's value must be exactly not the condition's value. Supported by filters on data source objects. Requires at least one ConditionValue .
|
|
36
|
+
DATE_NOT_EQ = 31
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=condition-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"condition-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/condition-type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,aAAa;IACrB,0BAA0B,IAAA,CAAE,iCAAiC;IAC7D,0BAA0B,IAAA,CAAE,kKAAkK;IAC9L,sBAAsB,IAAA,CAAE,gLAAgL;IACxM,WAAW,IAAA,CAAE,+JAA+J;IAC5K,mBAAmB,IAAA,CAAE,6KAA6K;IAClM,SAAS,IAAA,CAAE,sTAAsT;IACjU,aAAa,IAAA,CAAE,0TAA0T;IACzU,cAAc,IAAA,CAAE,sKAAsK;IACtL,kBAAkB,IAAA,CAAE,0KAA0K;IAC9L,aAAa,IAAA,CAAE,4JAA4J;IAC3K,iBAAiB,KAAA,CAAE,8JAA8J;IACjL,gBAAgB,KAAA,CAAE,8IAA8I;IAChK,cAAc,KAAA,CAAE,4IAA4I;IAC5J,OAAO,KAAA,CAAE,qTAAqT;IAC9T,aAAa,KAAA,CAAE,8GAA8G;IAC7H,WAAW,KAAA,CAAE,oGAAoG;IACjH,OAAO,KAAA,CAAE,8TAA8T;IACvU,WAAW,KAAA,CAAE,sMAAsM;IACnN,UAAU,KAAA,CAAE,qMAAqM;IACjN,iBAAiB,KAAA,CAAE,wKAAwK;IAC3L,gBAAgB,KAAA,CAAE,uKAAuK;IACzL,YAAY,KAAA,CAAE,+IAA+I;IAC7J,gBAAgB,KAAA,CAAE,+IAA+I;IACjK,aAAa,KAAA,CAAE,+FAA+F;IAC9G,YAAY,KAAA,CAAE,+LAA+L;IAC7M,WAAW,KAAA,CAAE,wMAAwM;IACrN,KAAK,KAAA,CAAE,iHAAiH;IACxH,SAAS,KAAA,CAAE,qHAAqH;IAChI,cAAc,KAAA,CAAE,kMAAkM;IAClN,OAAO,KAAA,CAAE,srBAAsrB;IAC/rB,WAAW,KAAA,CAAE,kJAAkJ;IAC/J,WAAW,KAAA;CACd"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An enumeration of possible special paste types.
|
|
3
|
+
*
|
|
4
|
+
* @remarks
|
|
5
|
+
* Reference: https://developers.google.com/apps-script/reference/spreadsheet/copy-paste-type
|
|
6
|
+
*/
|
|
7
|
+
export declare enum CopyPasteType {
|
|
8
|
+
PASTE_NORMAL = 0,// Paste values, formulas, formats and merges.
|
|
9
|
+
PASTE_NO_BORDERS = 1,// Paste values, formulas, formats and merges but without borders.
|
|
10
|
+
PASTE_FORMAT = 2,// Paste the style
|
|
11
|
+
PASTE_FORMULA = 3,// Paste the formulas only.
|
|
12
|
+
PASTE_DATA_VALIDATION = 4,// Paste the data validation only.
|
|
13
|
+
PASTE_VALUES = 5,// Paste the values ONLY without formats, formulas or merges.
|
|
14
|
+
PASTE_CONDITIONAL_FORMATTING = 6,// Paste the color rules only.
|
|
15
|
+
PASTE_COLUMN_WIDTHS = 7
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=copy-paste-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-paste-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/copy-paste-type.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,oBAAY,aAAa;IACrB,YAAY,IAAA,CAAE,8CAA8C;IAC5D,gBAAgB,IAAA,CAAE,kEAAkE;IACpF,YAAY,IAAA,CAAE,kBAAkB;IAChC,aAAa,IAAA,CAAE,2BAA2B;IAC1C,qBAAqB,IAAA,CAAE,kCAAkC;IACzD,YAAY,IAAA,CAAE,6DAA6D;IAC3E,4BAA4B,IAAA,CAAE,8BAA8B;IAC5D,mBAAmB,IAAA;CACtB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An enumeration of the types of developer metadata visibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum DeveloperMetadataVisibility {
|
|
5
|
+
DOCUMENT = 0,// Document-visible metadata is accessible from any developer project with access to the document.
|
|
6
|
+
PROJECT = 1
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=developer-metadata-visibility.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developer-metadata-visibility.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/developer-metadata-visibility.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,2BAA2B;IACnC,QAAQ,IAAA,CAAE,kGAAkG;IAC5G,OAAO,IAAA;CACV"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* COLUMNS 0
|
|
3
|
+
*
|
|
4
|
+
* ROWS 1
|
|
5
|
+
*/
|
|
6
|
+
export declare enum Dimension {
|
|
7
|
+
/**
|
|
8
|
+
* The column (vertical) dimension. move left or right
|
|
9
|
+
*/
|
|
10
|
+
COLUMNS = 0,
|
|
11
|
+
/**
|
|
12
|
+
* The row (horizontal) dimension. move up or down
|
|
13
|
+
*/
|
|
14
|
+
ROWS = 1
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=dimension.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dimension.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/dimension.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,oBAAY,SAAS;IACjB;;OAEG;IACH,OAAO,IAAA;IACP;;OAEG;IACH,IAAI,IAAA;CACP"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"direction.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/direction.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACjB,EAAE,IAAA;IACF,KAAK,IAAA;IACL,IAAI,IAAA;IACJ,IAAI,IAAA;CACP;AAED,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,CAWnE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The number format of the cell.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum FormatType {
|
|
5
|
+
NUMBER_FORMAT_TYPE_UNSPECIFIED = 0,
|
|
6
|
+
TEXT = 1,
|
|
7
|
+
NUMBER = 2,
|
|
8
|
+
PERCENT = 3,
|
|
9
|
+
CURRENCY = 4,
|
|
10
|
+
DATE = 5,
|
|
11
|
+
TIME = 6,
|
|
12
|
+
DATE_TIME = 7,
|
|
13
|
+
SCIENTIFIC = 8
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=format-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/format-type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,UAAU;IAElB,8BAA8B,IAAA;IAE9B,IAAI,IAAA;IAEJ,MAAM,IAAA;IAEN,OAAO,IAAA;IAEP,QAAQ,IAAA;IAER,IAAI,IAAA;IAEJ,IAAI,IAAA;IAEJ,SAAS,IAAA;IAET,UAAU,IAAA;CACb"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group-control-toggle-position.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/group-control-toggle-position.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,0BAA0B;IAClC,MAAM,IAAA;IACN,KAAK,IAAA;CACR"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export * from './auto-fill-series';
|
|
2
|
+
export * from './border-style-types';
|
|
3
|
+
export * from './color-type';
|
|
4
|
+
export * from './common-hide-types';
|
|
5
|
+
export * from './condition-type';
|
|
6
|
+
export * from './copy-paste-type';
|
|
7
|
+
export * from './developer-metadata-visibility';
|
|
8
|
+
export * from './dimension';
|
|
9
|
+
export * from './direction';
|
|
10
|
+
export * from './format-type';
|
|
11
|
+
export * from './interpolation-point-type';
|
|
12
|
+
export * from './locale-type';
|
|
13
|
+
export * from './protection-type';
|
|
14
|
+
export * from './relative-date';
|
|
15
|
+
export * from './shape-type';
|
|
16
|
+
export * from './sheet-types';
|
|
17
|
+
export * from './text-style';
|
|
18
|
+
export * from './theme-color-type';
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iCAAiC,CAAC;AAChD,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An enumeration representing the interpolation options for calculating a value to be used in a GradientCondition in a ConditionalFormatRule.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum InterpolationPointType {
|
|
5
|
+
INTERPOLATION_POINT_TYPE_UNSPECIFIED = 0,// The default value, do not use.
|
|
6
|
+
MIN = 1,// The interpolation point uses the minimum value in the cells over the range of the conditional format.
|
|
7
|
+
MAX = 2,// The interpolation point uses the maximum value in the cells over the range of the conditional format.
|
|
8
|
+
NUMBER = 3,// The interpolation point uses exactly the value in InterpolationPoint.value
|
|
9
|
+
PERCENT = 4,// The interpolation point is the given percentage over all the cells in the range of the conditional format. This is equivalent to NUMBER if the value was: =(MAX(FLATTEN(range)) * (value / 100)) + (MIN(FLATTEN(range)) * (1 - (value / 100))) (where errors in the range are ignored when flattening).
|
|
10
|
+
PERCENTILE = 5
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=interpolation-point-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interpolation-point-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/interpolation-point-type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,sBAAsB;IAC9B,oCAAoC,IAAA,CAAE,iCAAiC;IACvE,GAAG,IAAA,CAAE,wGAAwG;IAC7G,GAAG,IAAA,CAAE,wGAAwG;IAC7G,MAAM,IAAA,CAAE,6EAA6E;IACrF,OAAO,IAAA,CAAE,0SAA0S;IACnT,UAAU,IAAA;CACb"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internationalized enumeration information.
|
|
3
|
+
*
|
|
4
|
+
* Refer to {@link https://github.com/ladjs/i18n-locales | i18n-locales}
|
|
5
|
+
*/
|
|
6
|
+
export declare enum LocaleType {
|
|
7
|
+
EN_US = "enUS",
|
|
8
|
+
ZH_CN = "zhCN"
|
|
9
|
+
}
|
|
10
|
+
export type LocaleTypes = `${LocaleType}`;
|
|
11
|
+
//# sourceMappingURL=locale-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locale-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/locale-type.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,oBAAY,UAAU;IAClB,KAAK,SAAS;IACd,KAAK,SAAS;CACjB;AAED,MAAM,MAAM,WAAW,GAAG,GAAG,UAAU,EAAE,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare enum PlaceholderType {
|
|
2
|
+
NONE = 0,//Default value, signifies it is not a placeholder.
|
|
3
|
+
BODY = 1,//Body text.
|
|
4
|
+
CHART = 2,//Chart or graph.
|
|
5
|
+
CLIP_ART = 3,//Clip art image.
|
|
6
|
+
CENTERED_TITLE = 4,//Title centered.
|
|
7
|
+
DIAGRAM = 5,//Diagram.
|
|
8
|
+
DATE_AND_TIME = 6,//Date and time.
|
|
9
|
+
FOOTER = 7,//Footer text.
|
|
10
|
+
HEADER = 8,//Header text.
|
|
11
|
+
MEDIA = 9,//Multimedia.
|
|
12
|
+
OBJECT = 10,//Any content type.
|
|
13
|
+
PICTURE = 11,//Picture.
|
|
14
|
+
SLIDE_NUMBER = 12,//Number of a slide.
|
|
15
|
+
SUBTITLE = 13,//Subtitle.
|
|
16
|
+
TABLE = 14,//Table.
|
|
17
|
+
TITLE = 15,//Slide title.
|
|
18
|
+
SLIDE_IMAGE = 16
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=place-holder-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"place-holder-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/place-holder-type.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACvB,IAAI,IAAA,CAAE,mDAAmD;IACzD,IAAI,IAAA,CAAE,YAAY;IAClB,KAAK,IAAA,CAAE,iBAAiB;IACxB,QAAQ,IAAA,CAAE,iBAAiB;IAC3B,cAAc,IAAA,CAAE,iBAAiB;IACjC,OAAO,IAAA,CAAE,UAAU;IACnB,aAAa,IAAA,CAAE,gBAAgB;IAC/B,MAAM,IAAA,CAAE,cAAc;IACtB,MAAM,IAAA,CAAE,cAAc;IACtB,KAAK,IAAA,CAAE,aAAa;IACpB,MAAM,KAAA,CAAE,mBAAmB;IAC3B,OAAO,KAAA,CAAE,UAAU;IACnB,YAAY,KAAA,CAAE,oBAAoB;IAClC,QAAQ,KAAA,CAAE,WAAW;IACrB,KAAK,KAAA,CAAE,QAAQ;IACf,KAAK,KAAA,CAAE,cAAc;IACrB,WAAW,KAAA;CACd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"protection-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/protection-type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,cAAc;IACtB,KAAK,IAAA;IACL,KAAK,IAAA;CACR"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An enumeration representing the relative date options for calculating a value to be used in date-based BooleanCriteria.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum RelativeDate {
|
|
5
|
+
RELATIVE_DATE_UNSPECIFIED = 0,// Default value, do not use.
|
|
6
|
+
PAST_YEAR = 1,
|
|
7
|
+
PAST_MONTH = 2,
|
|
8
|
+
PAST_WEEK = 3,
|
|
9
|
+
YESTERDAY = 4,
|
|
10
|
+
TODAY = 5,
|
|
11
|
+
TOMORROW = 6
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=relative-date.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"relative-date.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/relative-date.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,YAAY;IACpB,yBAAyB,IAAA,CAAE,6BAA6B;IACxD,SAAS,IAAA;IACT,UAAU,IAAA;IACV,SAAS,IAAA;IACT,SAAS,IAAA;IACT,KAAK,IAAA;IACL,QAAQ,IAAA;CACX"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export declare enum ShapeType {
|
|
2
|
+
TYPE_UNSPECIFIED = 0,//The shape type that is not predefined.
|
|
3
|
+
TEXT_BOX = 1,//Text box shape.
|
|
4
|
+
RECTANGLE = 2,//Rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'rect'.
|
|
5
|
+
ROUND_RECTANGLE = 3,//Round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'roundRect'
|
|
6
|
+
ELLIPSE = 4,//Ellipse shape. Corresponds to ECMA-376 ST_ShapeType 'ellipse'
|
|
7
|
+
ARC = 5,//Curved arc shape. Corresponds to ECMA-376 ST_ShapeType 'arc'
|
|
8
|
+
BENT_ARROW = 6,//Bent arrow shape. Corresponds to ECMA-376 ST_ShapeType 'bentArrow'
|
|
9
|
+
BENT_UP_ARROW = 7,//Bent up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'bentUpArrow'
|
|
10
|
+
BEVEL = 8,//Bevel shape. Corresponds to ECMA-376 ST_ShapeType 'bevel'
|
|
11
|
+
BLOCK_ARC = 9,//Block arc shape. Corresponds to ECMA-376 ST_ShapeType 'blockArc'
|
|
12
|
+
BRACE_PAIR = 10,//Brace pair shape. Corresponds to ECMA-376 ST_ShapeType 'bracePair'
|
|
13
|
+
BRACKET_PAIR = 11,//Bracket pair shape. Corresponds to ECMA-376 ST_ShapeType 'bracketPair'
|
|
14
|
+
CAN = 12,//Can shape. Corresponds to ECMA-376 ST_ShapeType 'can'
|
|
15
|
+
CHEVRON = 13,//Chevron shape. Corresponds to ECMA-376 ST_ShapeType 'chevron'
|
|
16
|
+
CHORD = 14,//Chord shape. Corresponds to ECMA-376 ST_ShapeType 'chord'
|
|
17
|
+
CLOUD = 15,//Cloud shape. Corresponds to ECMA-376 ST_ShapeType 'cloud'
|
|
18
|
+
CORNER = 16,//Corner shape. Corresponds to ECMA-376 ST_ShapeType 'corner'
|
|
19
|
+
CUBE = 17,//Cube shape. Corresponds to ECMA-376 ST_ShapeType 'cube'
|
|
20
|
+
CURVED_DOWN_ARROW = 18,//Curved down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedDownArrow'
|
|
21
|
+
CURVED_LEFT_ARROW = 19,//Curved left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedLeftArrow'
|
|
22
|
+
CURVED_RIGHT_ARROW = 20,//Curved right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedRightArrow'
|
|
23
|
+
CURVED_UP_ARROW = 21,//Curved up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedUpArrow'
|
|
24
|
+
DECAGON = 22,//Decagon shape. Corresponds to ECMA-376 ST_ShapeType 'decagon'
|
|
25
|
+
DIAGONAL_STRIPE = 23,//Diagonal stripe shape. Corresponds to ECMA-376 ST_ShapeType 'diagStripe'
|
|
26
|
+
DIAMOND = 24,//Diamond shape. Corresponds to ECMA-376 ST_ShapeType 'diamond'
|
|
27
|
+
DODECAGON = 25,//Dodecagon shape. Corresponds to ECMA-376 ST_ShapeType 'dodecagon'
|
|
28
|
+
DONUT = 26,//Donut shape. Corresponds to ECMA-376 ST_ShapeType 'donut'
|
|
29
|
+
DOUBLE_WAVE = 27,//Double wave shape. Corresponds to ECMA-376 ST_ShapeType 'doubleWave'
|
|
30
|
+
DOWN_ARROW = 28,//Down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'downArrow'
|
|
31
|
+
DOWN_ARROW_CALLOUT = 29,//Callout down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'downArrowCallout'
|
|
32
|
+
FOLDED_CORNER = 30,//Folded corner shape. Corresponds to ECMA-376 ST_ShapeType 'foldedCorner'
|
|
33
|
+
FRAME = 31,//Frame shape. Corresponds to ECMA-376 ST_ShapeType 'frame'
|
|
34
|
+
HALF_FRAME = 32,//Half frame shape. Corresponds to ECMA-376 ST_ShapeType 'halfFrame'
|
|
35
|
+
HEART = 33,//Heart shape. Corresponds to ECMA-376 ST_ShapeType 'heart'
|
|
36
|
+
HEPTAGON = 34,//Heptagon shape. Corresponds to ECMA-376 ST_ShapeType 'heptagon'
|
|
37
|
+
HEXAGON = 35,//Hexagon shape. Corresponds to ECMA-376 ST_ShapeType 'hexagon'
|
|
38
|
+
HOME_PLATE = 36,//Home plate shape. Corresponds to ECMA-376 ST_ShapeType 'homePlate'
|
|
39
|
+
HORIZONTAL_SCROLL = 37,//Horizontal scroll shape. Corresponds to ECMA-376 ST_ShapeType 'horizontalScroll'
|
|
40
|
+
IRREGULAR_SEAL_1 = 38,//Irregular seal 1 shape. Corresponds to ECMA-376 ST_ShapeType 'irregularSeal1'
|
|
41
|
+
IRREGULAR_SEAL_2 = 39,//Irregular seal 2 shape. Corresponds to ECMA-376 ST_ShapeType 'irregularSeal2'
|
|
42
|
+
LEFT_ARROW = 40,//Left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftArrow'
|
|
43
|
+
LEFT_ARROW_CALLOUT = 41,//Callout left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftArrowCallout'
|
|
44
|
+
LEFT_BRACE = 42,//Left brace shape. Corresponds to ECMA-376 ST_ShapeType 'leftBrace'
|
|
45
|
+
LEFT_BRACKET = 43,//Left bracket shape. Corresponds to ECMA-376 ST_ShapeType 'leftBracket'
|
|
46
|
+
LEFT_RIGHT_ARROW = 44,//Left right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightArrow'
|
|
47
|
+
LEFT_RIGHT_ARROW_CALLOUT = 45,//Callout left right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightArrowCallout'
|
|
48
|
+
LEFT_RIGHT_UP_ARROW = 46,//Left right up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightUpArrow'
|
|
49
|
+
LEFT_UP_ARROW = 47,//Left up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftUpArrow'
|
|
50
|
+
LIGHTNING_BOLT = 48,//Lightning bolt shape. Corresponds to ECMA-376 ST_ShapeType 'lightningBolt'
|
|
51
|
+
MATH_DIVIDE = 49,//Divide math shape. Corresponds to ECMA-376 ST_ShapeType 'mathDivide'
|
|
52
|
+
MATH_EQUAL = 50,//Equal math shape. Corresponds to ECMA-376 ST_ShapeType 'mathEqual'
|
|
53
|
+
MATH_MINUS = 51,//Minus math shape. Corresponds to ECMA-376 ST_ShapeType 'mathMinus'
|
|
54
|
+
MATH_MULTIPLY = 52,//Multiply math shape. Corresponds to ECMA-376 ST_ShapeType 'mathMultiply'
|
|
55
|
+
MATH_NOT_EQUAL = 53,//Not equal math shape. Corresponds to ECMA-376 ST_ShapeType 'mathNotEqual'
|
|
56
|
+
MATH_PLUS = 54,//Plus math shape. Corresponds to ECMA-376 ST_ShapeType 'mathPlus'
|
|
57
|
+
MOON = 55,//Moon shape. Corresponds to ECMA-376 ST_ShapeType 'moon'
|
|
58
|
+
NO_SMOKING = 56,//No smoking shape. Corresponds to ECMA-376 ST_ShapeType 'noSmoking'
|
|
59
|
+
NOTCHED_RIGHT_ARROW = 57,//Notched right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'notchedRightArrow'
|
|
60
|
+
OCTAGON = 58,//Octagon shape. Corresponds to ECMA-376 ST_ShapeType 'octagon'
|
|
61
|
+
PARALLELOGRAM = 59,//Parallelogram shape. Corresponds to ECMA-376 ST_ShapeType 'parallelogram'
|
|
62
|
+
PENTAGON = 60,//Pentagon shape. Corresponds to ECMA-376 ST_ShapeType 'pentagon'
|
|
63
|
+
PIE = 61,//Pie shape. Corresponds to ECMA-376 ST_ShapeType 'pie'
|
|
64
|
+
PLAQUE = 62,//Plaque shape. Corresponds to ECMA-376 ST_ShapeType 'plaque'
|
|
65
|
+
PLUS = 63,//Plus shape. Corresponds to ECMA-376 ST_ShapeType 'plus'
|
|
66
|
+
QUAD_ARROW = 64,//Quad-arrow shape. Corresponds to ECMA-376 ST_ShapeType 'quadArrow'
|
|
67
|
+
QUAD_ARROW_CALLOUT = 65,//Callout quad-arrow shape. Corresponds to ECMA-376 ST_ShapeType 'quadArrowCallout'
|
|
68
|
+
RIBBON = 66,//Ribbon shape. Corresponds to ECMA-376 ST_ShapeType 'ribbon'
|
|
69
|
+
RIBBON_2 = 67,//Ribbon 2 shape. Corresponds to ECMA-376 ST_ShapeType 'ribbon2'
|
|
70
|
+
RIGHT_ARROW = 68,//Right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'rightArrow'
|
|
71
|
+
RIGHT_ARROW_CALLOUT = 69,//Callout right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'rightArrowCallout'
|
|
72
|
+
RIGHT_BRACE = 70,//Right brace shape. Corresponds to ECMA-376 ST_ShapeType 'rightBrace'
|
|
73
|
+
RIGHT_BRACKET = 71,//Right bracket shape. Corresponds to ECMA-376 ST_ShapeType 'rightBracket'
|
|
74
|
+
ROUND_1_RECTANGLE = 72,//One round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round1Rect'
|
|
75
|
+
ROUND_2_DIAGONAL_RECTANGLE = 73,//Two diagonal round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round2DiagRect'
|
|
76
|
+
ROUND_2_SAME_RECTANGLE = 74,//Two same-side round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round2SameRect'
|
|
77
|
+
RIGHT_TRIANGLE = 75,//Right triangle shape. Corresponds to ECMA-376 ST_ShapeType 'rtTriangle'
|
|
78
|
+
SMILEY_FACE = 76,//Smiley face shape. Corresponds to ECMA-376 ST_ShapeType 'smileyFace'
|
|
79
|
+
SNIP_1_RECTANGLE = 77,//One snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip1Rect'
|
|
80
|
+
SNIP_2_DIAGONAL_RECTANGLE = 78,//Two diagonal snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip2DiagRect'
|
|
81
|
+
SNIP_2_SAME_RECTANGLE = 79,//Two same-side snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip2SameRect'
|
|
82
|
+
SNIP_ROUND_RECTANGLE = 80,//One snip one round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snipRoundRect'
|
|
83
|
+
STAR_10 = 81,//Ten pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star10'
|
|
84
|
+
STAR_12 = 82,//Twelve pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star12'
|
|
85
|
+
STAR_16 = 83,//Sixteen pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star16'
|
|
86
|
+
STAR_24 = 84,//Twenty four pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star24'
|
|
87
|
+
STAR_32 = 85,//Thirty two pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star32'
|
|
88
|
+
STAR_4 = 86,//Four pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star4'
|
|
89
|
+
STAR_5 = 87,//Five pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star5'
|
|
90
|
+
STAR_6 = 88,//Six pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star6'
|
|
91
|
+
STAR_7 = 89,//Seven pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star7'
|
|
92
|
+
STAR_8 = 90,//Eight pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star8'
|
|
93
|
+
STRIPED_RIGHT_ARROW = 91,//Striped right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'stripedRightArrow'
|
|
94
|
+
SUN = 92,//Sun shape. Corresponds to ECMA-376 ST_ShapeType 'sun'
|
|
95
|
+
TRAPEZOID = 93,//Trapezoid shape. Corresponds to ECMA-376 ST_ShapeType 'trapezoid'
|
|
96
|
+
TRIANGLE = 94,//Triangle shape. Corresponds to ECMA-376 ST_ShapeType 'triangle'
|
|
97
|
+
UP_ARROW = 95,//Up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upArrow'
|
|
98
|
+
UP_ARROW_CALLOUT = 96,//Callout up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upArrowCallout'
|
|
99
|
+
UP_DOWN_ARROW = 97,//Up down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upDownArrow'
|
|
100
|
+
UTURN_ARROW = 98,//U-turn arrow shape. Corresponds to ECMA-376 ST_ShapeType 'uturnArrow'
|
|
101
|
+
VERTICAL_SCROLL = 99,//Vertical scroll shape. Corresponds to ECMA-376 ST_ShapeType 'verticalScroll'
|
|
102
|
+
WAVE = 100,//Wave shape. Corresponds to ECMA-376 ST_ShapeType 'wave'
|
|
103
|
+
WEDGE_ELLIPSE_CALLOUT = 101,//Callout wedge ellipse shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeEllipseCallout'
|
|
104
|
+
WEDGE_RECTANGLE_CALLOUT = 102,//Callout wedge rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeRectCallout'
|
|
105
|
+
WEDGE_ROUND_RECTANGLE_CALLOUT = 103,//Callout wedge round rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeRoundRectCallout'
|
|
106
|
+
FLOW_CHART_ALTERNATE_PROCESS = 104,//Alternate process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartAlternateProcess'
|
|
107
|
+
FLOW_CHART_COLLATE = 105,//Collate flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartCollate'
|
|
108
|
+
FLOW_CHART_CONNECTOR = 106,//Connector flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartConnector'
|
|
109
|
+
FLOW_CHART_DECISION = 107,//Decision flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDecision'
|
|
110
|
+
FLOW_CHART_DELAY = 108,//Delay flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDelay'
|
|
111
|
+
FLOW_CHART_DISPLAY = 109,//Display flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDisplay'
|
|
112
|
+
FLOW_CHART_DOCUMENT = 110,//Document flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDocument'
|
|
113
|
+
FLOW_CHART_EXTRACT = 111,//Extract flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartExtract'
|
|
114
|
+
FLOW_CHART_INPUT_OUTPUT = 112,//Input output flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartInputOutput'
|
|
115
|
+
FLOW_CHART_INTERNAL_STORAGE = 113,//Internal storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartInternalStorage'
|
|
116
|
+
FLOW_CHART_MAGNETIC_DISK = 114,//Magnetic disk flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticDisk'
|
|
117
|
+
FLOW_CHART_MAGNETIC_DRUM = 115,//Magnetic drum flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticDrum'
|
|
118
|
+
FLOW_CHART_MAGNETIC_TAPE = 116,//Magnetic tape flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticTape'
|
|
119
|
+
FLOW_CHART_MANUAL_INPUT = 117,//Manual input flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartManualInput'
|
|
120
|
+
FLOW_CHART_MANUAL_OPERATION = 118,//Manual operation flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartManualOperation'
|
|
121
|
+
FLOW_CHART_MERGE = 119,//Merge flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMerge'
|
|
122
|
+
FLOW_CHART_MULTIDOCUMENT = 120,//Multi-document flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMultidocument'
|
|
123
|
+
FLOW_CHART_OFFLINE_STORAGE = 121,//Offline storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOfflineStorage'
|
|
124
|
+
FLOW_CHART_OFFPAGE_CONNECTOR = 122,//Off-page connector flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOffpageConnector'
|
|
125
|
+
FLOW_CHART_ONLINE_STORAGE = 123,//Online storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOnlineStorage'
|
|
126
|
+
FLOW_CHART_OR = 124,//Or flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOr'
|
|
127
|
+
FLOW_CHART_PREDEFINED_PROCESS = 125,//Predefined process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPredefinedProcess'
|
|
128
|
+
FLOW_CHART_PREPARATION = 126,//Preparation flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPreparation'
|
|
129
|
+
FLOW_CHART_PROCESS = 127,//Process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartProcess'
|
|
130
|
+
FLOW_CHART_PUNCHED_CARD = 128,//Punched card flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPunchedCard'
|
|
131
|
+
FLOW_CHART_PUNCHED_TAPE = 129,//Punched tape flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPunchedTape'
|
|
132
|
+
FLOW_CHART_SORT = 130,//Sort flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartSort'
|
|
133
|
+
FLOW_CHART_SUMMING_JUNCTION = 131,//Summing junction flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartSummingJunction'
|
|
134
|
+
FLOW_CHART_TERMINATOR = 132,//Terminator flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartTerminator'
|
|
135
|
+
ARROW_EAST = 133,//East arrow shape.
|
|
136
|
+
ARROW_NORTH_EAST = 134,//Northeast arrow shape.
|
|
137
|
+
ARROW_NORTH = 135,//North arrow shape.
|
|
138
|
+
SPEECH = 136,//Speech shape.
|
|
139
|
+
STARBURST = 137,//Star burst shape.
|
|
140
|
+
TEARDROP = 138,//Teardrop shape. Corresponds to ECMA-376 ST_ShapeType 'teardrop'
|
|
141
|
+
ELLIPSE_RIBBON = 139,//Ellipse ribbon shape. Corresponds to ECMA-376 ST_ShapeType 'ellipseRibbon'
|
|
142
|
+
ELLIPSE_RIBBON_2 = 140,//Ellipse ribbon 2 shape. Corresponds to ECMA-376 ST_ShapeType 'ellipseRibbon2'
|
|
143
|
+
CLOUD_CALLOUT = 141,//Callout cloud shape. Corresponds to ECMA-376 ST_ShapeType 'cloudCallout'
|
|
144
|
+
CUSTOM = 142
|
|
145
|
+
}
|
|
146
|
+
//# sourceMappingURL=shape-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shape-type.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/shape-type.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sheet-types.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/sheet-types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,UAAU;IAClB,IAAI,IAAA;IACJ,MAAM,IAAA;IACN,KAAK,IAAA;CACR"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Direction of text
|
|
3
|
+
*/
|
|
4
|
+
export declare enum TextDirection {
|
|
5
|
+
UNSPECIFIED = 0,
|
|
6
|
+
LEFT_TO_RIGHT = 1,
|
|
7
|
+
RIGHT_TO_LEFT = 2
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Types of text decoration
|
|
11
|
+
*/
|
|
12
|
+
export declare enum TextDecoration {
|
|
13
|
+
DASH = 0,
|
|
14
|
+
DASH_DOT_DOT_HEAVY = 1,
|
|
15
|
+
DASH_DOT_HEAVY = 2,
|
|
16
|
+
DASHED_HEAVY = 3,
|
|
17
|
+
DASH_LONG = 4,
|
|
18
|
+
DASH_LONG_HEAVY = 5,
|
|
19
|
+
DOT_DASH = 6,
|
|
20
|
+
DOT_DOT_DASH = 7,
|
|
21
|
+
DOTTED = 8,
|
|
22
|
+
DOTTED_HEAVY = 9,
|
|
23
|
+
DOUBLE = 10,
|
|
24
|
+
NONE = 11,
|
|
25
|
+
SINGLE = 12,
|
|
26
|
+
THICK = 13,
|
|
27
|
+
WAVE = 14,
|
|
28
|
+
WAVY_DOUBLE = 15,
|
|
29
|
+
WAVY_HEAVY = 16,
|
|
30
|
+
WORDS = 17
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* An enum that specifies the horizontal alignment of text.
|
|
34
|
+
*/
|
|
35
|
+
export declare enum HorizontalAlign {
|
|
36
|
+
UNSPECIFIED = 0,// The horizontal alignment is not specified. Do not use this.
|
|
37
|
+
LEFT = 1,// The text is explicitly aligned to the left of the cell.
|
|
38
|
+
CENTER = 2,// The text is explicitly aligned to the center of the cell.
|
|
39
|
+
RIGHT = 3,// The text is explicitly aligned to the right of the cell.
|
|
40
|
+
JUSTIFIED = 4
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* An enum that specifies the vertical alignment of text.
|
|
44
|
+
*/
|
|
45
|
+
export declare enum VerticalAlign {
|
|
46
|
+
UNSPECIFIED = 0,
|
|
47
|
+
TOP = 1,// The text is explicitly aligned to the top of the cell.
|
|
48
|
+
MIDDLE = 2,// The text is explicitly aligned to the middle of the cell.
|
|
49
|
+
BOTTOM = 3
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* An enumeration of the strategies used to handle cell text wrapping.
|
|
53
|
+
*/
|
|
54
|
+
export declare enum WrapStrategy {
|
|
55
|
+
UNSPECIFIED = 0,
|
|
56
|
+
/**
|
|
57
|
+
* Lines that are longer than the cell width will be written in the next cell over, so long as that cell is empty. If the next cell over is non-empty, this behaves the same as CLIP . The text will never wrap to the next line unless the user manually inserts a new line. Example:
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
| First sentence. |
|
|
61
|
+
| Manual newline that is very long. <- Text continues into next cell
|
|
62
|
+
| Next newline. |
|
|
63
|
+
*/
|
|
64
|
+
OVERFLOW = 1,
|
|
65
|
+
/**
|
|
66
|
+
* Lines that are longer than the cell width will be clipped. The text will never wrap to the next line unless the user manually inserts a new line. Example:
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
| First sentence. |
|
|
70
|
+
| Manual newline t| <- Text is clipped
|
|
71
|
+
| Next newline. |
|
|
72
|
+
*/
|
|
73
|
+
CLIP = 2,
|
|
74
|
+
/**
|
|
75
|
+
* Words that are longer than a line are wrapped at the character level rather than clipped. Example:
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
| Cell has a |
|
|
79
|
+
| loooooooooo| <- Word is broken.
|
|
80
|
+
| ong word. |
|
|
81
|
+
*/
|
|
82
|
+
WRAP = 3
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* FontItalic
|
|
86
|
+
*/
|
|
87
|
+
export declare enum FontItalic {
|
|
88
|
+
NORMAL = 0,
|
|
89
|
+
ITALIC = 1
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* FontWeight
|
|
93
|
+
*/
|
|
94
|
+
export declare enum FontWeight {
|
|
95
|
+
NORMAL = 0,
|
|
96
|
+
BOLD = 1
|
|
97
|
+
}
|
|
98
|
+
export declare enum BaselineOffset {
|
|
99
|
+
NORMAL = 0,
|
|
100
|
+
SUBSCRIPT = 1,
|
|
101
|
+
SUPERSCRIPT = 2
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* General Boolean Enum
|
|
105
|
+
*/
|
|
106
|
+
export declare enum BooleanNumber {
|
|
107
|
+
FALSE = 0,
|
|
108
|
+
TRUE = 1
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* General Boolean Enum
|
|
112
|
+
*/
|
|
113
|
+
export declare enum CellValueType {
|
|
114
|
+
STRING = 1,
|
|
115
|
+
NUMBER = 2,
|
|
116
|
+
BOOLEAN = 3,
|
|
117
|
+
FORCE_STRING = 4
|
|
118
|
+
}
|
|
119
|
+
//# sourceMappingURL=text-style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text-style.d.ts","sourceRoot":"","sources":["../../../../src/types/enum/text-style.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,aAAa;IACrB,WAAW,IAAA;IACX,aAAa,IAAA;IACb,aAAa,IAAA;CAChB;AAGD;;GAEG;AACH,oBAAY,cAAc;IACtB,IAAI,IAAA;IACJ,kBAAkB,IAAA;IAClB,cAAc,IAAA;IACd,YAAY,IAAA;IACZ,SAAS,IAAA;IACT,eAAe,IAAA;IACf,QAAQ,IAAA;IACR,YAAY,IAAA;IACZ,MAAM,IAAA;IACN,YAAY,IAAA;IACZ,MAAM,KAAA;IACN,IAAI,KAAA;IACJ,MAAM,KAAA;IACN,KAAK,KAAA;IACL,IAAI,KAAA;IACJ,WAAW,KAAA;IACX,UAAU,KAAA;IACV,KAAK,KAAA;CACR;AAED;;GAEG;AACH,oBAAY,eAAe;IACvB,WAAW,IAAA,CAAE,8DAA8D;IAC3E,IAAI,IAAA,CAAE,0DAA0D;IAChE,MAAM,IAAA,CAAE,4DAA4D;IACpE,KAAK,IAAA,CAAE,2DAA2D;IAClE,SAAS,IAAA;CACZ;AAED;;GAEG;AACH,oBAAY,aAAa;IACrB,WAAW,IAAA;IACX,GAAG,IAAA,CAAE,yDAAyD;IAC9D,MAAM,IAAA,CAAE,4DAA4D;IACpE,MAAM,IAAA;CACT;AAED;;GAEG;AACH,oBAAY,YAAY;IACpB,WAAW,IAAA;IACX;;;;;;;OAOG;IACH,QAAQ,IAAA;IACR;;;;;;;OAOG;IACH,IAAI,IAAA;IACJ;;;;;;;OAOG;IACH,IAAI,IAAA;CACP;AAED;;GAEG;AACH,oBAAY,UAAU;IAClB,MAAM,IAAA;IACN,MAAM,IAAA;CACT;AAED;;GAEG;AACH,oBAAY,UAAU;IAClB,MAAM,IAAA;IACN,IAAI,IAAA;CACP;AAED,oBAAY,cAAc;IACtB,MAAM,IAAA;IACN,SAAS,IAAA;IACT,WAAW,IAAA;CACd;AAED;;GAEG;AACH,oBAAY,aAAa;IACrB,KAAK,IAAA;IACL,IAAI,IAAA;CACP;AAED;;GAEG;AACH,oBAAY,aAAa;IACrB,MAAM,IAAI;IACV,MAAM,IAAA;IACN,OAAO,IAAA;IACP,YAAY,IAAA;CACf"}
|