@operato/data-grist 9.0.5 → 9.0.7
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/CHANGELOG.md +10 -0
- package/dist/src/editors/ox-grist-editor-color.js +14 -1
- package/dist/src/editors/ox-grist-editor-color.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/docs/USER_GUIDE.md +144 -0
- package/docs/configuration/README.md +68 -0
- package/docs/configuration/columns.md +391 -0
- package/docs/configuration/editors.md +53 -0
- package/docs/configuration/events.md +44 -0
- package/docs/configuration/i18n.md +40 -0
- package/docs/configuration/options.md +100 -0
- package/docs/configuration/theme.md +39 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
### [9.0.7](https://github.com/hatiolab/operato/compare/v9.0.6...v9.0.7) (2025-07-21)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* start data-grist manual ([afc5fa3](https://github.com/hatiolab/operato/commit/afc5fa303666f557f2ecb46fc0dac7eef49e503e))
|
12
|
+
* support change event for color editor for data-grist ([2b43423](https://github.com/hatiolab/operato/commit/2b4342326002dcf8062d155abe5427afc8640ece))
|
13
|
+
|
14
|
+
|
15
|
+
|
6
16
|
### [9.0.5](https://github.com/hatiolab/operato/compare/v9.0.4...v9.0.5) (2025-07-04)
|
7
17
|
|
8
18
|
**Note:** Version bump only for package @operato/data-grist
|
@@ -3,8 +3,21 @@ import { OxGristEditor } from './ox-grist-editor.js';
|
|
3
3
|
import { customElement } from 'lit/decorators.js';
|
4
4
|
import { html } from 'lit';
|
5
5
|
let OxGristEditorColor = class OxGristEditorColor extends OxGristEditor {
|
6
|
+
/*
|
7
|
+
* color input 인 경우에는, color picker에서 change 이벤트가 발생하지 않기 때문에, input 이벤트를 사용하여
|
8
|
+
* value가 변경되었음을 알림
|
9
|
+
*/
|
6
10
|
get editorTemplate() {
|
7
|
-
return html `
|
11
|
+
return html `
|
12
|
+
<input
|
13
|
+
type="color"
|
14
|
+
.value=${this.value}
|
15
|
+
@input=${(e) => e.currentTarget.dispatchEvent(new CustomEvent('change', {
|
16
|
+
bubbles: true,
|
17
|
+
composed: true
|
18
|
+
}))}
|
19
|
+
/>
|
20
|
+
`;
|
8
21
|
}
|
9
22
|
};
|
10
23
|
OxGristEditorColor = __decorate([
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-grist-editor-color.js","sourceRoot":"","sources":["../../../src/editors/ox-grist-editor-color.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAGnB,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,aAAa;IACnD,IAAI,cAAc;QAChB,OAAO,IAAI,CAAA
|
1
|
+
{"version":3,"file":"ox-grist-editor-color.js","sourceRoot":"","sources":["../../../src/editors/ox-grist-editor-color.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAGnB,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,aAAa;IACnD;;;OAGG;IACH,IAAI,cAAc;QAChB,OAAO,IAAI,CAAA;;;iBAGE,IAAI,CAAC,KAAK;iBACV,CAAC,CAAQ,EAAE,EAAE,CACnB,CAAC,CAAC,aAA6B,CAAC,aAAa,CAC5C,IAAI,WAAW,CAAC,QAAQ,EAAE;YACxB,OAAO,EAAE,IAAI;YACb,QAAQ,EAAE,IAAI;SACf,CAAC,CACH;;KAEN,CAAA;IACH,CAAC;CACF,CAAA;AApBY,kBAAkB;IAD9B,aAAa,CAAC,uBAAuB,CAAC;GAC1B,kBAAkB,CAoB9B","sourcesContent":["import { OxGristEditor } from './ox-grist-editor.js'\nimport { customElement } from 'lit/decorators.js'\nimport { html } from 'lit'\n\n@customElement('ox-grist-editor-color')\nexport class OxGristEditorColor extends OxGristEditor {\n /*\n * color input 인 경우에는, color picker에서 change 이벤트가 발생하지 않기 때문에, input 이벤트를 사용하여\n * value가 변경되었음을 알림\n */\n get editorTemplate() {\n return html`\n <input\n type=\"color\"\n .value=${this.value}\n @input=${(e: Event) =>\n (e.currentTarget as HTMLElement).dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n composed: true\n })\n )}\n />\n `\n }\n}\n"]}
|